From 4ee07682fd31355611de1b226a63fd6998dd41ce Mon Sep 17 00:00:00 2001 From: Matthias Neeracher Date: Sat, 11 Feb 2017 19:00:13 +0100 Subject: [PATCH] Adding exercise 2 --- NNML2/README.txt | 125 + NNML2/data.mat | Bin 0 -> 7468024 bytes NNML2/display_nearest_words.m | 28 + NNML2/fprop.m | 86 + NNML2/load_data.m | 27 + NNML2/predict_next_word.m | 37 + NNML2/raw_sentences.txt | 97162 ++++++++++++++++++++++++++++++++ NNML2/train.m | 244 + NNML2/word_distance.m | 25 + 9 files changed, 97734 insertions(+) create mode 100755 NNML2/README.txt create mode 100644 NNML2/data.mat create mode 100644 NNML2/display_nearest_words.m create mode 100644 NNML2/fprop.m create mode 100644 NNML2/load_data.m create mode 100644 NNML2/predict_next_word.m create mode 100755 NNML2/raw_sentences.txt create mode 100644 NNML2/train.m create mode 100644 NNML2/word_distance.m diff --git a/NNML2/README.txt b/NNML2/README.txt new file mode 100755 index 0000000..554706e --- /dev/null +++ b/NNML2/README.txt @@ -0,0 +1,125 @@ +####################################### +Neural Networks for Machine Learning +Programming Assignment 2 +Learning word representations. +####################################### + +In this assignment, you will design a neural net language model that will +learn to predict the next word, given previous three words. + +The data set consists of 4-grams (A 4-gram is a sequence of 4 adjacent words +in a sentence). These 4-grams were extracted from a large collection of text. +The 4-grams are chosen so that all the words involved come +from a small vocabulary of 250 words. Note that for the purposes of this +assignment special characters such as commas, full-stops, parentheses etc +are also considered words. The training set consists of 372,550 4-grams. The +validation and test sets have 46,568 4-grams each. + +### GETTING STARTED. ### +Look at the file raw_sentences.txt. It contains the raw sentences from which +these 4-grams were extracted. Take a look at the kind of sentences we are +dealing with here. They are fairly simple ones. + +To load the data set, go to an octave terminal and cd to the directory where the +downloaded data is located. Type + +> load data.mat + +This will load a struct called 'data' with 4 fields in it. +You can see them by typing + +> fieldnames(data) + +'data.vocab' contains the vocabulary of 250 words. Training, validation and +test sets are in 'data.trainData', 'data.validData' and 'data.testData' respectively. +To see the list of words in the vocabulary, type - + +> data.vocab + +'data.trainData' is a matrix of 372550 X 4. This means there are 372550 +training cases and 4 words per training case. Each entry is an integer that is +the index of a word in the vocabulary. So each row represents a sequence of 4 +words. 'data.validData' and 'data.testData' are also similar. They contain +46,568 4-grams each. All three need to be separated into inputs and targets +and the training set needs to be split into mini-batches. The file load_data.m +provides code for doing that. To run it type: + +>[train_x, train_t, valid_x, valid_t, test_x, test_t, vocab] = load_data(100); + +This will load the data, separate it into inputs and target, and make +mini-batches of size 100 for the training set. + +train.m implements the function that trains a neural net language model. +To run the training, execute the following - + +> model = train(1); + +This will train the model for one epoch (one pass through the training set). +Currently, the training is not implemented and the cross entropy will not +decrease. You have to fill in parts of the code in fprop.m and train.m. +Once the code is correctly filled-in, you will see that the cross entropy +starts decreasing. At this point, try changing the hyperparameters (number +of epochs, number of hidden units, learning rates, momentum, etc) and see +what effect that has on the training and validation cross entropy. The +questions in the assignment will ask you try out specific values of these. + +The training method will output a 'model' (a struct containing weights, biases +and a list of words). Now it's time to play around with the learned model +and answer the questions in the assignment. + +### DESCRIPTION OF THE NETWORK. ### +The network consists of an input layer, embedding layer, hidden layer and output +layer. The input layer consists of three word indices. The same +'word_embedding_weights' are used to map each index to a distributed feature +representation. These mapped features constitute the embedding layer. This layer +is connected to the hidden layer, which in turn is connected to the output +layer. The output layer is a softmax over the 250 words. + +### THINGS YOU SEE WHEN THE MODEL IS TRAINING. ### +As the model trains it prints out some numbers that tell you how well the +training is going. +(1) The model shows the average per-case cross entropy (CE) obtained +on the training set. The average CE is computed every 100 mini-batches. The +average CE over the entire training set is reported at the end of every epoch. + +(2) After every 1000 mini-batches of training, the model is run on the +validation set. Recall, that the validation set consists of data that is not +used for training. It is used to see how well the model does on unseen data. The +cross entropy on validation set is reported. + +(3) At the end of training, the model is run both on the validation set and on +the test set and the cross entropy on both is reported. + +You are welcome to change these numbers (100 and 1000) to see the CE's more +frequently if you want to. + + +### SOME USEFUL FUNCTIONS. ### +These functions are meant to be used for analyzing the model after the training +is done. + display_nearest_words.m : This method will display the words closest to a + given word in the word representation space. + word_distance.m : This method will compute the distance between two given + words. + predict_next_word.m : This method will produce some predictions for the next + word given 3 previous words. +Take a look at the documentation inside these functions to see how to use them. + + +### THINGS TO TRY. ### +Choose some words from the vocabulary and make a list. Find the words that +the model thinks are close to words in this list (for example, find the words +closest to 'companies', 'president', 'day', 'could', etc). Do the outputs make +sense ? + +Pick three words from the vocabulary that go well together (for example, +'government of united', 'city of new', 'life in the', 'he is the' etc). Use +the model to predict the next word. Does the model give sensible predictions? + +Which words would you expect to be closer together than others ? For example, +'he' should be closer to 'she' than to 'federal', or 'companies' should be +closer to 'business' than 'political'. Find the distances using the model. +Do the distances that the model predicts make sense ? + +You are welcome to try other things with this model and post any interesting +observations on the forums! diff --git a/NNML2/data.mat b/NNML2/data.mat new file mode 100644 index 0000000000000000000000000000000000000000..515aa839fa43175a3e4ad02f29d701e1a2725bc8 GIT binary patch literal 7468024 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%0DvlsVA_K>-EHsA8Gvn5k}U{r^P&G1?qy|DovF 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

lf2MnFsL8r`YT6w3ig#*!JgoEYk~kF3 zZk+$F>sKvw(tl@o??ydq8r$#LeViY1@$RhfeqR*kyn9cC{It!2-&chg`gaO_HF`__ zp>MJA%HZ)7_FNI}*7>_*=yD(Wi5~yn)o1Ss>$^g(g*ZKq1V7J+KZrNPaxHR*@2-cR zL*J(6c*mc|!+Fonzdpp`v%KS(7qq?@JX#88=otHXO}o6igXiw%&x0RBi@Cp!^|3na z=e>ASTpvG*S-s_dN2P+W2RKX0iTt$W7;$W4tHlH`YV;II}Z`rf)aq9c||1bq8+_ zI_cMY_L%qYbNTe@?*~0+hxLQ=XMTay#gN}UOtClYH^=wy zh8TQ0Blu?TNulnAuqNI!VK3i!bSPdI;{7!2AfU)W52Ugs8_7`RU#h^m*P8;@dygY0`t9PYd2$7F%Oz;rnAD*Y1$Z zKE1^QKH39yxIgj4=8w2Mu$OlWp|9*4-qK({{ci~IPsB%Kdx$s1y&(>LuZ>rQy;sGE zcSYl4@nne4vui`2sX=b%_44v}^mxyYhP*r*^{L^MaL##m>ieP=cXu%4F-MEuqgNd~ z5$~S3Cgd9)J=@s1wW0ps4Syr}>v!aHR%~~m|1S^v)k`lwc{5cP57#X&PSd zoj?2C9QsL*ogc%?9gX>XEcE;LLL7U%Q?%Jb8x4Ddj^U|3R>Si5fhIAm@jzV9&b>F( zwkAFkuMO*Z;DV56bMRpy)K4>w?!?)lot|;Ode#0L!oRzwpi5k5Zi_dC*y3CnymA-5 z0gukd;(aQ97@r6|tH;g{`>Y=gbH5Pc@keahi4#idh!x+mJ63cYFnHDR9^o@b#}8u{?L`7cdVxEr-S8{SQ^^|X6BEA$P0 zcZOWncsS0_8oNjJiQ~-cgGcg<{{QqMzuq*YgyfuZUGa@3Y~4%zNKxm_kgRh~Z97 z4}0XG>1e3ow756uHn%xe#3ezCUVkXmRd!<9=>w%v0|iA0Laih5bVt&F99(pkaMDuYUQ()04azP)q4urn?s~F!K zdi5h6e-b0Mecy>yu`@0RdS@|W@m3ypC=Orb*cI-^{!hnJIAhEM-;hs+`{w&XjQh6l zz2WyYA?7{7hqb}aBSGI%=m$OXnYby&`=oC7Ar8-`aQ1ugL~IE9^s#k4b9MMu&~MIt zJMVqIF8Dw0;i|?T3^7*)oqQI9R^O{fV~U~K`iu2$tTZ}VeeEaN|XKSeAtT+*O#_EvYy8M3i!KERd zcg?!EJXMSD?26Dc^i4sZp5!I}mV!^`h40ZdF@;#}^cREo`g&D3BlpJm?{Q|xHN3NT zeb_^%cT8VC6KdHLa`Iw$WiJgM32W+cH%CHTXYIWt#2@RtRJUjKsYx83@=pz7^TV&_ z1L01^TN&n^cg}a||BD+!9{Tms?pUtferw)YF`o(^kNcy^dH1sr_K$etI47?dqn=}p z)$rx8#@i`I4jTCQLfjO4uzTI}~8I=eM|Z=Q`;hqyb!o{e#S+!?g54SpCqI}7XX zdQYZlYjk`u#8;zzeiuV5`!0*)VXtoi4F}@XxGugB<9_s?HSd8tT?%=NBobNcXY@mO3HAB?vLZO+i*j=Uo$2mQ;n zc&2?8fUyb?#93!z7r?^WBT zn1vc>S|7Z14}Q%rhCZR^FXP8?JUolH{2s>m59aIg)5a72jQzCGua?ipEO@7H>D?3J zTmQFVPEW3j;koyWpFFucXyw7^Pc_Id@6a=R_YJnjC+liG7tv*zvX{xh&{z!p+56pi`60DqhXC!&&G0`A8!u+xZ_zk>z9_@ z!P7^A*3*L~e)GWGv6w>r))vCN^W)c8Z_~~n`Q0a<Wj@G zu3Ya9HM}F-nVP;oAG^;HV_)NY*c-b-eA=x4PWZ0Qf-YXWv)_x~41TNM zud_dmAJ3n?&+4-OuR}aO(k9mBF$;CSGpvvA^jVEpggVvt`gmWszuyY_-W~j(!n5=I z;OQ(p^FsZ+@eTP%*khhoyyp!KJkdj+4{@EpH5TK!u!o*wp-ZM$B4*tq9Jd$6n>N6+r8^WD@ zVLq1Yp7>CBXTmTot`@S*cms_s?cmB)|`Q;q<@SVng5L?4NSeNspxGo+F>*mCB zAL>>QPe$+1>$GX;JBS8NGByF2TLLkwO` zLF>>dzC664-`Mv>Oy2K^n}dGZs3N_I*-f7RHkG3^FJDh!gh<$MWD?WYR zQD^0}zA}b4Ya3q~{INEL`*SDqsD<{sL%k!0y#GG z+#ctI{mZ}C>w7*BeDZ7U6S3S6=g*4Uf?hrLxwt9#;l9lA!(Gv`KTeKWsO{0Xem)*| zaj0kUc&Q#e^eb_G@LRlp2>#14{GByk2sQ1CDfIWyq<(XBi@zc63N`6{y{iWfhIRUe z2cD;JhxYkfyeeqZAJ*wJUW(Q6Z$jPty(h$?`SREsQ;eQaCw+9NM{IlLc{aq?&ku&X zabB;uS9{g;zEIE5ZJkeV4L-ajtoc12$6|OwyW0Or*z4R=@h9PoF+J{@=bPux&Mkzz zw}krD?ESQMe^}EG!@Hf0>6PQM;LX+;eXPHowMXBLdacjmKwKAeeLCJ1&OaUU@bA>{ z4U+ScxFB8|dY>LWsP||Pe<>DY3VFr#t7i4=nUCqxA9AZzF7dt7Ka5$}Z)}}kXNUXK zD_@Sou{nM<)G~av|E}P_952V?abY+wr~OyXpEvcZC!Djcmbb<%)&w1Y5zeg*y+r3M zJkwy$e~J;GCp0XDJ+yr${YRQ{=BkZz5Ss$6ucT5^@e%x+Ny9~Z13is z^XG+rNB{3=OvjdRhx*8Ok>69en-P1Q`K9I##5+R#hlA(d*B4^+gV={dE!W4;@BB6K z`uW`V`!&Z0p7TzO^Fpn=;?x+uNT=Gq6dQv6eQ|Qob9d0ErK zH%;e+`2RAN$D{A|*t2Y&Hu3myLwt1pJkIG0x~GuS{qbC{yPL;@r~Lel;PcY__uc&- z3Gbbp=EZfEAEO8K%mtxG=zm-A!~Kcp-n_TGvri1Zx^H){ZfB>UO?xp z9tih+aoDeReXFm<)f4XM(x7=wsO^(+Qm934YX`%9&@l^|tvho=h(GE$)OZ#|jTgZvxkW4ZZ1g&giq4aR!=Cm|N^M=g57Juc1X zXnlJ;6!(ODG`OFO!kyale0WDL3bFMF9lY5a^wIWIsE3AMiO1*9>T@rbhr2!zzZ>$= zX>JPVz7y_-ZuMC|Exr-7c|Y9Ws7XH<>j!o5!M?>1e+qFg33~o>&@+W~wJguSx@Ym! z%`f@XwL8@5nI`e4P}9zkQ#|j2KJt8e@Qy}%^p?K3J@&=spoM2&3O!}-v!VW7G3vJO z$)HPaXTBa=!kl~gLby*ctUI$R)`dN^?2P+EjegZdhj)#BUdcJm9%?)b{Y#e^YW#fI zFV}Cx4fAK~3$ffIy-SB)mf!iyg7+(e7JD|vJ7d%!{`RnL@5-=7343e|2n&HR0aWC$_s>8S1<{X!dQO zYhx_LnPH!N&UjxphyA}78)8-bi{OJEr-#lThWE~Ua&yq(9kssv-J*ehKFjmVL94uU z+yB9sh1xt@mybr@Ub@x)>*34;aUiCU_h^{2CWdF;kNQ0G?CenA&UiEyLOwOB!8-pu zTl-KrODjF&US{(-YtHlTlF(}x#6xjYc-O2?@##>D__To@PAeLUF}G=4PP%gUhLoIBPB`d!`hj&B=J#a~{Z zbM{SfH0W2?#`##jO<|87AD+${%k5qt4*t^Td2M*7^p<=t#V-Y&r^I<-{rcePRk1U~ zp!eOeE$DIHuh{xhPT#emM?PLp!8bnM9lV>u+}@DiS#gISXEnYp)O0A`8uGaZ`|0EZ z#Qp8CJ_~vOXE?h#UK`HPO3#t`*#7s&EIuCgEX{w{_REJK&7alpj?}jpBaZy;#9bT? zF@`6`YP=%85q$Y@(Boc=`7vtY!E$ft9A5I^{uptl#_gSL?WIdQP3s@j+bAyW&XLe=x@VKG;~i;q4C_|KA~w{pQaJJvR0%HCB^4)U-GB z&GH(Ioq1L8e-`Uwyt5ZJ&U(G)X4|+(RyZxXML=x>E__Wx8kkgK51JU z-WPlQy|_OvkA<+GM~6c$nw{gTvvPbpoaK>w*%a38T^V=9#UVCNrnoosoxOaV=8TvR z^*s7TKR+5`UKVN__j6I>4I#EX_K3-gPsc3Ae)De+x~7nep2avnW?`?I|2*Ct`(pIV z8IAue#PxlZ!~NUuj#h;n;@>hKztAr~XQ9W$dRvV9n;IXD^&#Fh!87|tJ-qik{Fl?S zbGu?&oCqGsVZYk=vLh~@KdaOFb@7GR9~;Bni#L36kM5W^n8Sk{1!;i6_-qV5~PsP~(<;LnC z-+9`6YyQ>z*IxS6eJEZxf98+crjSd$zO(kcKh(E7^zE(Td$}(@6mqQ#ev088vp$q>Tc}4IXVlJH zF*XE!V$v!<|9PNh=V?6=dqN!fXjv8GJbliLynf#j-WB`32cs4mnrEam-M?L z_)DMq=z2}i|M&5mu_Z>Y+UuKT{kOwCIA?w2QS%)!`jbBO>B;wpdib>_=o)?Po$?;uqp~)RuSn5W0K`FPgv6XD#>u!kmhbaT+bD>)ww^$dTGG#=j2{DasKBj={Z zJm5J!z6oM~IaY+aekOQqU925(@%&jIe}mm0y>HdaS#TS^Q;uD!vvggMPiR zHvTl0*EjV0?#fU5V)$F=9_(Fyr+VVo;#)zRTFwe}d^MKuT{VC9D;B-ud&&F#u`Zk$ zI^e(seRP%e|)nPwPi*ZJ%>3iWmcZYR-&Ht~3z3Px#4Ps9rJ{@9jjMs#<^TXP> z3;xZ*{PpoCp;xwt{cA)0zJs)m+W2Q(Zd$$*i$U)PL(O8+YyRq(VrS60X8t>y|Ju(p z=bc*_djI8^!WsGW{la`Kx7tpQE#aJR?CCM`-P`z0u_B%bccupOyrWMoYWQ^Uc+}(F zw7xkGhIi$mpu@X2e(AREna=T^ic8}x%)3LqWqcyej?agjyJC3j9={&f$8$mVo}fb= z?!kBGK)4t8BlZ;5?hZB3Z+&6@?0vmB=ydkVP#+&=u`@iM7dv9q#oMFtQdoZ^ej4t| zyxd2^e*W)`<@f1%7H5QWwClme5N};PA2jnsJtLlPh`sLFx)|2vRR^tmVrl;Dj_6ok z7EbdFNKeh(jy=2Sd)$SN8MIx57779v-a;HH`D; zH~wyXD3<5h((_%xOZ)c)Eo;M_slmJPZ$cl9_>rxt;g?$Vr+Cg{W+8qOw3_GFJA#kDA3qHF{QY}xd_2UzCd5;_XL{t@7w*VA_`&$C zu&zcL9t=7!4qD91kJpDe_vHIC^r~Th+!u6@e7v)NTig-Xh4tfcG}N~y=szvw(C5y* zasF%F-t{qh!9I*NzPuQ>gc`jUYIry<4|@1O^EIIkdjD(CEWRGJ=fm-pI2^R|`CDO+ ze%KOnjM}HhhvK1lZ7hT{G>9X{6z)xJ_NwDo!n^*y`R~p1U;E9Ed-i))@J*d`xJzE@ ziGLcej#;=Xp1u<5cE)!>{cj8Bc|e=7*jLWS_ByLZ`sJC$iFkjEI?Rjbc~$I;8)C%M zo7UeNbow_1AKVw;zZ_zCrenl)p8x7HUKt+?y2Kmt>GeGPSlig#$>BU7x5klBtGVs5 zH#Ww<;%ngjoub-3cclh@_bsH6o+G5Y>!7m+~-3NAB_9LH(Nh=UI@O5WAA}*r+VSMpl3_S zH8ield~rCZPQIKUPX^8OEPwyM*|UAL@#9$VdkS%v*TXw{^%jk^{2<)J6ynSEmN*`> z5PN8Mzq>+A-=2lo8~V$?g~U7~ZVY?$mG7H;p9uO!pYhByPi8^O--bID_mr?c#Y1sf zc&1Se_Uw$$2Yq_PcuR=o{&&oO`Te1|Gps!wvv^&s4u1K2u_EYpUt-Jktr)$zsqu0z z=y6|i(PT~kPVt%G$t~gEYhulUCp_2|Zwk2|j8_H!-X8AF8Qxnz63)x_a>!$TF%E}# zV_p3`b!KZ^9dgn~=Te*%yb_{Vzru_7*x z5$~zSBffr-gGT-2Jy8GUVgILMLrlSkKZ@}!dZh8baCR|xq(1kfUOr&lrTX3bKg8%C zwRyfV_&vqZ_;!eODCm>R?~CCc>84K)$RW4C8T{bie~MoXzUVi5ydz?)4YfM2zgC4f z>d-H8-4%LeS8R*hL#;Gj95fz|#c+2Y3tGh(XLxvayes6jwmOc5yuKUqsbv=8|9bqh z82ja!#fkWQh`BwSdoJ|ds@N1X>#I}3`L)4Y8iwzDmRk?<#CQsK%fs&moo^4ht&1<7 z@%b_CmVauN<7=@s#GGPh(6cT!2H&h3>mO$>4838GoU;(m@0lT%cb{L@cLg1zM}1@D zFvpMmAJjWLUF$ERX*Yzp=N zG-knr!@+0$x;|EiUQ*}qO#SZ(@5U77%{><4i95yUgZmp_9>W8@B<3@*Cl*2vFUAxj zu08rqoK>+ij?PgtopOt-#wk{YbM_w$I*siScX>Q>a*ClBXnZ*25PwbRspap(f9-iw z9E*{2u_L6zcG+-pIaC9yw-Pc-p{*YtQE`M=*-Ui0$( zDD3;2`Sb8wuD1qn?REdoofS0E?fl)rBQ^8hyQ$ahwJx?jV$5PO_;G4n9OfU0Cquve zemFCFU!VQQa84f2G`d6D#y(?l`LMh`cOuW|FS_|9FaLJOzYFKr2CvLr81#>CjsI6{ zi1){d*b_^kC)~}7pnD2FxMN!RDBg=9hyAlyh^s=M>S3DDc7K<^3^YX*KD}z39Hih+B z@O!x*_PZlB$~(@_8tX~*IP<39%@ksNFWi;*>h~^R8s=7oy*CCA_;_cG*spJ_N99zH zybJNm!4LN^di4v9owINBu-YGwrMNC=JSo)s5Ak>5T{Fg$%btf1=Qqcf(VsM26T9Qw za91niTl3$O`@K2rquqTvyDc_{dzIg};z&6Eb76ke?N0b(&-k9`+0n!Leoy$m`rR7t zK#kkuzMz}8Y8Q9){FhJit4Ym&8e4*oLl3R$SA#fW+yAcE82>%=+(j|sjdyX>u-Mvj zu_EMK6=JB%{rGP1X?xJWCgjv7PsB|jmi;^!=Vy(5U+#{(Lad>Ympj6_(Hq`(`*>=e zC$kvq-l?C4x_DrZ-r|jZ9zK{q5aOsuPWAmD^w2^$vlP4@cP0Nru|3v@wc$U#Q;eL8 zjnyi@IJ0;q>_0E2ppn<^#QAMu-Prv85Kld051pfavE@;}dt4c`KODTVcNSL!?e?4; z?(S&3Biz^M7jut?yA7HpDev7**E)VPO_u4oRw3z4T^RY9Yh_k~T&O%;3 zJICV{A-?_Y#J+Pv4%+m`W6Q>T<jNL)k-_L)?d75V7JY9Ow9nhktb)jD4oiTKuXzcs>!8kW~JL-2I z$6|OW?%tTi$w7yEp@Cm=S*PKQxHV=mzTM*4qgUm3P947$bQ}-s&b>PRI5q^`bn%N< z^wTJw7*ja6ChVPJQ_!(7_;6-e8~XM8<`~`%zsGqsi_fob$MX9bvGk~Kz@eB0P4v(> z`oVph=iNujIoTZ2yr!h1-MUgNuXpAP#MV+!l`Keg;vetTAi z9OEueYb=KErak<7F2r9OTf*Eof+v>*o$mSkcrny!Zd-VN=^b_7(^!3{$NeF#tfpZU1CU(XTJ)pj*GYzv1yh<5}DuzZ?A1$II`0#8)TZc|GQ)#poc|GYJsQ`~$Ml=ykA3#rOSf8QA^xdh-`cRI*R}+YY2O)-$5K2Kw}$=i z4SINUJjDNQ>udSH94F$^csS0ESsaM1;Ty3O&d?#Zm^|?g>7mtO{`K+oxGCNr<~N43r^T;?J5$?( zLEq4?C-%kYfAM`+HpS^-AH6i(5c-OaT|xJ_Z~EU8`q;VsabLJs`Rr92J+p9!C&l5g zP8-eQYzT49je4iX&a8?L1wAL?!f<|yHE}R_^6PPD%wkWN8(w~~@u6@(`e=9jL!2=m zi>F5KBhBu4eTcC(u8c1QFP)=#OYrKM*c$3R7HU`wXT^F)h%eq!=<_Lt|K2GvhtK0X za7}ac?3}N!?DwHiV{)@-!q20Mt!ms@_@yi+acr-p2?~Hq6Mesu}Z4dE`og4RXQDc2z z@BP7RHMkSC(M!AW&xc(6qhD+uc_;k-%dq#igO*v`HUH(2{4d7?u_3OF=VQd+g}D0Z zZ-Xvl=lUk>qq zHpE^R`u5aV5s${>u@oc5YZ~hX8sr{++}&8Oxl8wRXZQx_P5Bn$P&^YnzIXmh*R4Sh z4_3yTLOiv)n<=c*=yx&HDc+w4&uDoi%&S>lyW&XP7LNo^-xyECf%txiPoKXb#%jMj zoOkCZLeIQAw#D9%j~{aWX*lnU+~#;f!z|W??-11I9TLa-nepMcAn07K;Rii$h$-B? z^Ty6?jae)NKlCe2-eG#>|JR{L_oV)j*B%

k;F>nm>DIKN-j4wV|Ge;-=u8JZ}hh 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

y&l~gqh@MhCd}#-=Lfqd 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

Rr*=d1stg`=vpjo~h}%a9_PU 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≀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 z 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%0AW&cAl3+MSeHRN_{u;;AYz26IC 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%0DfC9KUk<)6548~gCo#qFtyez|G1&ih*z?_&AOC!f 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

5L*w}+NYh^yF+e| z#O-l^@NMSh<9rt13g5Zhem~U7kKY1%(~{=uyFC1kxUVi}7tG(?aaWG+neh*X@AGp( zQ~PVfy$$oHS&*X|cE;!no3SU}sF@!%>#2NJhZ)dsF@G2j2S0K#JMP~Qd*ie)Hz&pW zf}Qvu51Q!1CE>fF$rPLCtm`=o{^-0ZPK|A$zj8EB>}T`!RXy1+#;9Rx&0Zbqzc<#0 z+SDYkXM%n!!+pK{di;3)E`K$@9A=5m`sn@?&eVA@elOI?hxzlnc4g4+O|clxPYZVz zLw$0z&-Xdu%=*c&e@B=D`P~>V#T8*+ts@ub)@H@NJ{*eg#h$P?h569)<+E)L&4PT! z?C_&c3$Zi!SIf8J>G=1dH_nd_znw=y&b#7hj6B}n+WlA0_teQoAD@X=#mN7p)>H5^ z@)Fm%UdrFQIeJA5n^moyKN9~Oe2Txk&b_@~I^S2v(tLeqPdTaA{UeGZyI2{Q$C&?x*0j7Q+~uDh=F!>so%^fS|1GB2AG0_ocE+0E^J5|Z z6T)wdeK|OLTda(2@k}iL{>_ja)Tkczo5Jsp{pIm)@7;HFM~r?PX)SLv=>EDeQ{%qb z+7n{B=f1q zkS|}uM&F-`Yr@QI3w>A_!;bD|P@Qzx6YBrV*cozSdtV$0ex{JuB_UVyvl#O8TPprp zaWwck7#o70&%}y&PpIj(*bzSt_vm|5(0B^*#WZ(fTCWbh;QOs%fBa42HF1i=QVM5OhJq1 z=TGtQ?-btUxhmBC8}YsQ zdV5dj&fF1Sz2;i{;X@DQD7Rf9&QT5w$+O3cMabAdLPi|{N>?!!8ofz9=G32Kg zQ;54dMt@$>`kL?^jTybPwV8Ytn6e=bT=9;;-lLU+H;&xc_spD~^WxUK6ACx3;F|y0|o)?+$v69`Hj0 z`zHoXfImo@|=acJAtKIEIQwL%b8DEB!!Zl>d9ryr*gPB0#i(B`YLdfMK_i+h#?agOi6LJzbu3Pg z-w3lw?}hl~aCd#29dtMpauxUP5aXe^F8FtU*!ZT!7l)s{;qLaJgSi;-X~5?5aqE2j z_dS0S{$~7f@PB9UGYfa=J%xT<5bB==&BXm?h&hElG2B}S{+!F1&5l@p|H0mUXXBo@ z;%y2(Mn1b+&%!t1+-%5)4s69-7qs|kd@(KyIt*KRh(nj<_8WSi;)>As$3wnTh+*#w z@keodi1*6ydoAE)T9SHT94Yjf7dkVIE(33uTB474$HH-4J-V*Np zApA}(uZ2CGM?P1#{&KMY=lD<@4Yim@_VSuSZ0}-EA*a>Bm%8LFp8CxspXUV~d{-BT z-zj$E+jvv!Gv|BmjQozYUKtyM7SDwGR)x4zjC{ zo%`-Ah5E(Z96RIupzD+I$+#kh{o2-kYu*(XhWP73&4)rRi^1M{_|gx3+7*5W#8cnU zSI+kMJ{J7*y*K!_J{+@fepj3wm&NvQk1sjAE!et4Q*p$fLL4L`jd_Has z`L7T2!`2L`hi3Zuv*6plbG5x99t-zZ1YOLIJoM&3$Wh<;cYh)HS_*lx-5fuNy&?XU zAvZR&5N~(*oA7Y_DEQkH!=K){^Xa%QoU2_7{`bU~AMXc3Y%z!4>f}RySBDy%t4SR7 zj(Mho+HaUY&+h4aR=1w$nOSys=r-<(p+CokSyZ2V#kwivEmwK`VT?T8yE**Uv8UCJ zFbm%O?(w%W+}R(qaBhC&b#kl@_VSuSJh}OHd~^Cq3-zdL=uD60F~)D>+V<}V`FYBj zf9vnZsc}_^H|mqi4I$6J5B7AB1MSX?(Hl9?acDWUrl0)IiZvm(ABJyjb2vA9?x=-- zv-5A`qWQb^b@40n_ai;!aPjx(<<;N88`!DvSogD0)AH!aK;$Iy{L*CbfI?T$J zI2fM{bD%$TTmJjtzVF>#`L3G3f2QXw=y*x2j^{%k#CPX#(9$dnP0bWd)hgF(LtpL* z`Rt3mADV`E$xG&#Iv_4#vL`&Yfmi2p_qkO?A0yyYv=FceJj}hIQGX? z@myRNG(HgLg!|s7Q0Mse#HX)wdCg*N&{Y244*uT|=5q>p4}0H(xZe3?yJ7zR@t%G! z^x65Bf}h=C#`Sv&_w-1fa#<7Xrx<76>CA?Yy}^g`heF(;x6 z`;)jS=&dd}-x+$nBiO7DIhb=g4?TTD@*VxUr1fWm4|C{@?`MK<&sWXYkM%qluZ;(S zwkHOCAB~U3iukn{F`jF!277Y+r*Otjep86;NpCUzKB-}QxPNBQ+L@U8G==)bUJCn{ z2Agli>d-SW?hkWf{||!xdgI&n&Fl)XuL&{rQv4~t6Z)_}z7hPJfx|Hin#j$&7`{{X zn__v-XT8hUnI7<=4z;Uc7UKS6$Zr-W##JHaPvdj*^}3$&+c$rgoA>44)4jbv5}yeE z_|Y>@?|iDw-t+Nb3=QdYONekB znD0kh|2X(v7ng>demCgG{;4<+v{EnMayDbm^+k^7&)rN6 z{$dRMuWqgG&xQKrwGhXLysnLdaa}lD7l(r1d*U5o=0<$^ogQpGz2826*Tc7myHgwv z=d>479)2IjEU>4KygWyI_kSbCeX}eleYUqbrjV2Q{e`$M^voQ5CjL$MPEHGTJRHN{ z+SWAl+a4FSMS`-#^lGDa?c1t_teAb6N#N+2sh(Co~)Xj%J>y7*`ilKwJXN2!m zfA5V4;`-p94>t7L74$G8YLVA0)Ny{WXS*lVF80vY+8zGRig$*X`Xt}&;lA3=3-)G! z{Vc@a8TPH^;GFjS(8m2KhOT}KtkpXHrqjazA;Zt6)}M2Hy+8R-U)Tk!9~{pdWqzFyyJ05&w?XW|2Srrm+I4W=vdnSBILW5JNBa&DY=S$){T7ed_#OZsx`B?D}{nrf~ndaQ0*@ zg*@CJb3lLo*Tm5J-K|Id^wW=X!d*J~9rRok?+AK47v{n~`<-!H=#5;(R4bisj49+d z=Khq{H;4Jt>(_@`%>#YqDF?q9zRz#R2Vx4o>B_%aKNF)T=eJ%8^~!T)d@=qywuT(U zkoU;N`xN}rMLqf~2inl#@fb1n!Edkpw#V)mzS-)hJvyk7zqR4)lQC-ko7T67^S=(~ zVwlU*f*w=M;@J05gj}8vwfkOZ!QS31*r``7 zo*P4)?ZF?vpAUO#pDRzdn{n4jiZ0(-$@aKIQJav_2<3 z9?skwd;44S^_`eP9Qs;s3G;7l7FGw_AHQA= zr-H5cVw*ELo6!q{zTO`QeLN7fnUJ zZ^fp#Dh|e7;oO|?zchcJdeVbGzC3Aa7TMEm`QFq!oqcc4<-0lPBHpNNYR#{{{Z9O2 zuxIOzS{7o=?Fp@46Eqmwv!UzF!S`3g-qsj7d)Jq@&iAbKL{GmG^x)gxOQFUqV^v%n zX9gYRudj4m6QgFoKlIWA`~F5u!OzMa ze-b-GP2#J4oYpZfTo#fjmrTs+OB`0R%U)->eH@4h_wp~a>+Kh%C&@UcD4i5KF-^XHX4 zUygB)4Zo+vt~eAs!hN&rIrQAyn&!(j=4TdkU}tS+|DRAFz8{-o`0=zSH+h>e+OH3~ z^T`L@{GOUkcjzIXXTz)yKW6TA!N-VahBkz}wDs_QuqEvC@AqCmXtE;K#l4}vZLvRQp%?U{ z@qdgdoZlR;4YjztGQ{xhJRMWWX;u7o$b+ri+41jpOpd1p&1q)7hkpOi+MS<-ylJ6d z;`{q>T*z6y?(*fkVgH_32=~q9EadZO@Ne(5_-fFXe|?sxbGo>@E-np!6GqPVX{i<( zh|S+yLySY=yL>2a5B}DKd-O4jQ+z(23AUSqpEt(#xF+N>guUZCHLg&&fZv_ ztGJ&D-xj+gac;OzQ?Z{6--r6d=VwDaAME7lTYOFEC%X}Md+Wsze{&4o{4YTZe}DK} zo*TX7IrO8syXv_hoYThd-qqo6??UX4S?r9(Snl(6z0>aRM$=+T4G!NEl z7gtRAPC+O8=HQh0=ipzQT`}_ZZcfyKj&c8b3 zK_5A>y({bueZ?1V%(r*jo*y3=KJ)d_uB9s>YEvH zUoNz#`!_;9zSk+lTp#qJ0j)f*3uofdS1oed7eilpI_Fnyv-rheqs}S#!1nNW;Jx$p zo}M3yAIB7CeRVt)a-YS)c=LR%{-xLw>NL;l5MO<27QE##*Ui{YMH&I^9!vfTgF`>1E^i|4!16Ta__adv0xb#Yl7n(xbJ z3V!s%J`Ju2HPMv*>RcOg9eSM9n%;}?{-Ec5F$Mib?S9+o=bR?z#L01aY>LHTFP7Yg z26WJ4`FqMs9^TdA@6Pz!$v2-L}{ zxG3m!AeLgpx^%w(#-4uj*qiZ@llN59W#ExwpjEXKCr z%WR(;VtA+HGjVxnu8z5NA)QkA}|G>wGE1r@i+ZV{7m$cV`dIpWAz?_m|>^ zFspo;z4PO)U~j!GhMqKGI}7(e6TW@5(o;U{#lJAlo4=2_)C2XeiIJ;0k)Id`Vwxk? znA2xlzZi?5-lh2Y;6p6_&9-+r$jQtt2Kzf>^!RA&R|NgU(8rU5CVV{^yTbjig!>2M zBOwp(%fEMei#x^PaDGxu;axu0h8X7Ax!C&R-nv*B>N!5l58bzfd1Zfjn7cjkS3xU2 zz8i8=|CK@C^}(;awuTx{3o+guFU1u0+5d8wQTa`=Eq*V46dOYy566kYpL~1=W_BUu zd??hZukKGFC$r*x7UJ>aeP}QKQ$g3C#hJnXENHwUyuTa|hPr5DPEQX#6_+1Rc}<}n zdEXuT!rcwQjy|K_(NDQqzbV{N4?WD^%Geve-*Hb}J3~DS!FGG7;kdA8e)h*K4#X5M zhW@f$jPHgT)H8fftsy7zAB_j%aIpKG`C2~5;*1c7uMux~u3`<}t6KXu_@(b%AN-|2Kg_|D|2AOCv({FR=w@cZ+|pv&puJCpmENpa;!Lvc1NXG%_rzF?;me+xpvmsICiu0de&<6ET3OTC_wP(iwD4Qy zO#bqfJ0IqN&mA$&{ASC4PkcFEH-DGomhgYncjL0qmy?72cjC4%1MiF}%-ibVTP{z= zdGV=`#}st9B-Fe+@{!kX#Npt_`xM@{#Umlk z3*k)M$AZ?L^xYcrQ~S`zY_p$*`~PqFUd7lOwEgM)`Aa?db9OLpkB39<{L;qVM?+1U z;>s`=dgk41=^cB$)dMy7jh;f?G@%WfXXD%$+Orj3z5C874vs`-4}A*9&+(qjDHIGm@V3|y)*c{Kj<~;eX+GT-w(B~4Y|m{ zp4{ZkPM_3&AeMqQd^;CUUE28&+i3) zo5DT5JlVJ>f3b&NW>`IPeOK%XHGCjG8-6qR(=T&D2e#jcSH+iNeenIaaU@p7##jvX zy)Uj0Ie7o2kb{2g3$^L*p|Cf_=$)8i{Fl%NdaMmK&B7eZ|6r*7ov}H@dVPqe27Wfp z-{on2ReU<=CbtfRKJ}k^lIHo$IT*)psCH2z`{xpHeEnQc`FJ<;G}jYPcitNAOfk;+8}o2xYwz@! zV%Yqv)?bN_#OGoP`I#N|^r6}Q_*&@4r^1Y~Gkd-lxyhG4a^ZiPujRQnXmecb3x4%} zO~^^_^~a3R>(u$Xv&+IvtqR}2xbm5W*xuQh4Np0Z`|8)z#Zb?t7-xUk`j$8rAB}&h z&o|qfg8z~K;nv@eF9dtB)N)&l*mt!ax~qL>JRKW?-N@Y;?U(yMzxT7_{@`ESt)T|9 zCI)?1#zN3+3VCgdrO=1n!SAcXY<@EMn_@P9{;a3`*T%Z}S}eZg!CqYTj+(^RM{!q% zcRG1r9b&rAulr({7rmavn7j3@*^T$7TC?|lD4cnJARY^I#sARm#MXS%=bCU&Kh2IF ze=p?pzToS}G5jBy?|Gla_&`AvMe5?%l90>V2SDV=Sb1Ys6zkU4fh>gL9)}vo^)I7>$w?v48^Z5_n6o%BX#Ba@AG4s{8KJLq`E;Ba z_J1M773aC|zxDqe+rq4|c{0>|YdjizV$?^|h1eNt@V+nj9J6|)wKKII4Bw{vv`~*H z{q~01-L*H1@q4(X^&5kqCqjPg?hJcdLu{I;_08dY_!MtbIM-Y6V(Q`O7kyU6xHsxK zrM<`E@;E8fq0h9pFV_Px=JwmI-4$E^*^4*L*FzWYJA4~3fkF7$om&Yq9;A&*%sg<92kaoiVIhj~)V{+Pw)kjq2iZ`IL||7D?{I>tCaY}3tHSy2;qDKoc-hUeP@2}#_I1*3ASA(XDLk>0HAG|V0 za?vFA6uhzLtoU}&WA7~J`M*N`DfF8cZ;aE!?CuNN%pgtbm}2yterFDboaz!spRbEw zi}7q~Ek8}C#_-oUb>A0fg#Es;>b)V%ryP1_240w7J3}LVQ^>m*=8aZ!C7*u$VjK$p zW>NoTVZU7B^GKW%La&!%Q#kLLc{nQ$2cO+@%@?)miSHSmV!SQnbDr;NoI;JW*cG(w z4&Q>?!(5C1P}~}?4(HV}Vl1|H_78(ckHz~!E-`3Olir>dM`CaAL_KQzYS?S74r?_n z#6QiiM{SpM?ff`v{})339pT^5yy4~0NdI?(KEGm)+UUG1&Wt0WzGH)yk;nTawtLQ= z7*mWr=4Tey#Tj9K#k@0ChJ8Pc@eL4z#;q~l4bRmf|H+|0hv&bG{k{;x1M{&IW^Y@F z=leh23w7^{(PO{fgA3>P*Y+#l4}*_8gRlB%ubDANd|R%^+}byEcrW!-y>jzZty9o6 z@{D`pZiy%6&&69GdM(aXu{r)td@zoN{9<1lZx81W1s&op#V^E(u{Fe-V!V6KtKEJ5 z*b}2);&@K~#xS>Ej477Sk2QbI1Ml^Ad{|@{pz5f5AMtFzWP^( z8KZ*-=6E6KyEHt1NASU(DejAPLDQ)B(bmq%u^7(l#esMxyoWT3d3^Bfl=#*8dOY_& z>522+VfFn(%!1~adGARnhtvx;w|A?4JXCUcy-(yYr=VYY2c4*XL&j9uWG$9 zMqe*$t&ZU%uV*plZ>jb5VGmt$Tb~_b@=$Ni2+v*{?)_GLJk0));KwI}9=&k?^x&WP z&xF2tz9;ywJ%-;KTAvpBb6$AvTOzM(zNmM3KlFhXHHmv)+!RM+P1rwtm|F8`Rjd#3 z&kf(6;T=!a>b!f-;^9~k;?d|C-L#Cnzc#<`-eSl#wDFCuKZ;v}hu;k`7j5= z%++yn{4epx@rn3e_$JK4zAbTAd@f!J`sn|w_=_;lBcA(L#mcxO^vkteyF*WSJo@&P z*7i8(T~^oH*bx4<@J&A7t^J`6d(MgjF@?UEMfb5V=J$FqvecQqw_3DLp;(PIvcscC9FZ|7+W1QdJS|82Np13lc_uQ`>Zwxu#5uX1v zz8t<`V%;0|-xNpVUkBa3+oM;fwmvte@Qip=O$9VeZ^>ez_((%$%9v84Yq- zo4b30PV;T=`gkawkBh>+6T|mt>->6oJT;FT=7C?Ijumlx+z`uqa#q)7E{!FwuOD8R(1Lt%0u_gj3Z$WJsZONtuNmTai(~7zE-z+Q`hpI&^r3_SnF4XKD)md zY8rpLofk*F--<5<-R{Xr%h>y0T8nG;^_&;9>jV9>uphkmM(}1KJ`n1mfhW&}-tqG4 zpij=%h5J*8FQ4`Dn#_oPdQQJw^z-36F>1fC_1Up0XcG58@X;KOIL`8Te4p)oBwh;f z^r_nwbWh4ap+_vGNs@i7bge-fVzUb{XkMtqvprDq3&R{iof;vd3( zUg?q9c6~>@9BPuw`sq-QSi6GXAB!`B_LJg-xI8=?Ug+28&$+GDAwG>$=!1TXF@ZzVqhK?cEkM+Utz^N4#5F z^T|CL*3Q?P`n6}wnfbXs{OzD`7S6mFH-xj>!WngscszVQeh_-%xmaW0*IL`FcNov_ zX?=AphI|`iL#RV-=J>{t+nMFFKXttj{~=byh{^A<&zg=YwuHKN#C@R$=7X+TjQo3A zPhnohEIM~ld?nr&&L4@}LeH;>&GA6c@%{NPFZAuD5dUzPr6ns&qXRghG=X~e?&@-;>lV=vrJs8h~ z`!pYj?V*<8hj`|23TOE5`{Mm_o;Le=_`6}oz52KSu*X*kcLZ_KZ+ z@0Z78W`>_*9{4!L&-PaT=#}3yHPF5gJ7Q&cKE;UT`KUo${cunI&&03Ap9Y;z#gVX2 zJ@?Olt?vynhrc^pi*swN345-HgF&0`hqXQKPvN|K^qv>a$n{UblPUJcm>1WFVr|gp z+vArOF~*$p!|eV~@dt6!{8w)8gn8N(bT}*Tat%}0wE51x7|Zo~xAafmi(^a7;_eV% zt@Qt43_W+XmV?)3*7F15`|tkkaeRpRK-hmtc(xQ`(eddJlV=yiy7;Z&?Re*pX}vX^ zRVTlk{rfl&Qw-nfwRbVj4R!L4PTv4$&5!3#gg89^g|P39L6fuo7CGm=pm$@a(|y0< z$-6dY;a#E88NHYV4~~Yjv<$s}-db+o7hciLtH(l&Da3w9EXEIlH`_uF)iDca&BNQn zxuwvLDMr8VYwa0bo~eI4d$_gl=y>kkwjSQEYE7Fw>a&;b$74mt2G zIKQ{KU!Kx)UYr$bQXe0N-hHh%guj_jho0!|^7-D~^^RB>&JQho@Q(9`E-}^4b6R$W zcpF1~qb~6mLrmwUP`7@`;opy9&cgHY?B`qS!9u9}b3vQfuI+s&_+h^3kmveXK2!FY zA0Ay7t3n@W-4^$Uo?aHtkNW8Ug>dfqcy0K$tO>gK_|IX6$2ne)clEf|7X{Ck>p9vr zFQ187sKau{t(}xCdkGSC<|PEqr@8jtw!s9`-oz`lK+&kHvC5)@D?E zHOVo0`r`arjc<#yLmr;*4`-b_KBiE^TS7lx7h7U?>X-cD z|8mH|U-739$1lV)XFrVtu{FFa^6d?0y@Re_AKwr4^4?5ui_Jlc7>|W{mG7OgGtP{+ zhdHH5zMDh5@r~lqj&SbtLF=V)IBpGnqV;WI4?Ujo&HQzrLM?$=9A=WH@D~29*>6=--FkJKU>G|3-zVLBF zjJctQmf@kAM^D9(pU+3)ALD1wkJ{DrccDKc9u0De$uFL+onPDcpW@jtKf~WQwRUbP zHpPFR|32QY`sJYi?ojLDSP^)@n3c7sa-a)BZn=q4AN{pN+o{@t1oub-gE! zhMxF0uinpspJH4Q3o$&~)p~R63-M;*-te1G`Z9|h^R*e}<6j1U_+jn6h3}HtTnsg< za|-e4bN%j6J3Ui~w<-<In>x(Y@M~)Axj1T-Ta05v{FlN!TpPT9GU%DYUiHu_=v>YDNqh=rizlyLU8I4$fsF7%Fm^Rg@S`O`sz_uAho zF+Lg_!~M6#%J@h;68bd7p*SzZbN{|rF~8o^?^i?bJeU8sV@L4(v2ag}h4{Oeg75DR zetS-Xz0btA;*1cFuEiJ{{i;R0`$LZ}3-Rs>_0r0xdt+xj7`!?s&JFL&_OSOzjBgVi ze6;uC_+E%RW|a=tes{-?pie(e4(EA2i#?$>_0s6s6wYi6=k$3N`lolpi@$EYFU-Tp zM>mhJk15p8pD{Zx&#%2-^y;siYP=`5hW)$~bM(u3XVoL7GwP$!v;8p(8jlU<+&8Ck zsc+Oi&9BXuSg#9O%z?Q2Z_Pwz( zE{XAesd;U@7#qS_`lmVku)ZqnRjU~|Z~pra{rU#*VrQtsOo_(>eH23ueoWz-e)sfR zUNJ^JQ|m+FSDrO7>ZjrH*b{Ud4gTq&TF(f3P7kq%|EpTlGll&6_%|^NHPO2_z7{)! zN9N<|kn5}A@6PatKF@z6==c_F{~ye8aJ7yqp+@YR+Z)6F>*KW89Nt&w>5^y6gubc$wc*(mqc_g{TDY$!J{^dWQ;uJX{~q?ZJ}KlI z^TID4(IglBdSUI^bDH7|x(?wc|9)FOucJ40-`JUbzPj~>-{P1zO}8N4QIzYwV}2CT@h1=|5x!B@i*c9(2s@KAEPds z#a|W2hWxIFPW8BFmcJgnuy&8vpNrk${yXD6;ksdS>UkcCdm4j!r@%BJWp(g(LTPZfJcZGOkzMbW} zndR%X;X6b7n_~*^)3-y7%eBit1&@8>txpd7tUc$mdGOx39&zMzP0K83JQSCOeEjDl z-J{3PwKiY$PT{QY!cx$xzpo2t^j;HWB zcr}GM=KX^BQP{5rGkin%`!Ead+D)+~u8Rj_A?$xCo)z1}T4nOmS%(j*;K< zDQI2{wee$Rtcl0NyR)tFvJrPZJiiirxg*>&qt4zCn`32ci>0_M_~!h^ zkaKTLvHW|orR!OU|5(s;UaX0sYiL>3y@%rISQqY3p%=3_6you3L-3Rj!@sqyX}mYS z7HZd1=lotd|D}PRGlKu#3upDpobiDF;;Uuo+|+u^8-KnX&WK~r_rvq$^@z_RxHJ=*uIqd;a^g`qlo&aanj~zqx%n z_)g#Oba8%teZTbDPv6>*^TE)I--?w%?~z!Z^Zi}hE2dmih~ZZqe%}#$LOo+PoKdS^ zwcQ=>nqTuxEcu>~FUKs7jpeo`q&%xiN6$b^T*#7zxF>FX6rmr$u_m^M*kYTx^c_;P39)Ban@a=Y1+$rqi z#~Z`*qp>OM(U(-cJbu7ll*dIs3 z-s|IaF|@dUa;W*4_+;33S@7my+#j@#y8mK+Ukvq5!JqMbskNTa;5l8F$E)YpJQz9E zWWRgs!+x5N#4O~vBzA=yG)|%SJmV2E`TEYFk&g31e7&&8{x#tpkw>p)F@>CCUd);qqsuutXc6bs`I`PsAwKQAq~X38 zb0m-Fr^Tqn8QN}%t>Kv-PvO3O?(vB}9{Ps!^Wiue^oe6H@9&Mb#Jb?m%fUBs)g;fh zxH80?!r7$|NA2pB|DIU>jQ-=}>7Yvv-tqY3VXs{NX8%@*ac-DL_i6X7n_}b{wfj!% zsT!u>x4$*^nH70xzazZ6e-pECe+s$idn&wt?#uUL{C?=e%Ge*Xa9<5HzqIUEE#HXI z=l8azEje*X3lQCF&+vt^QO>?bK}jS7gMO?-vkZzUl#H%294eax?Jyx9ii@@k1vMzk;dEN zPlBgY&~YTZYkv9nXwb}a*R!yn7JZ^mjcS+cp5T>y_Vf4uj&tVMeDHkKD7L;`6y{5< zOW~aJD?{(x+Z67r`?&Djv(L?cXZ`Zjz4Jo6zX{%{P2QnqgSII~?P6UXX6S?vbLf#vUDt>G`sN)P@u$}I zKOS_eQ@?mDu6dloIWuDp7DH`3zb@40`4n=X*uOfCiMvBA`|l0; z=pG)r=8+gQ@#2p8de$#5<>1rsR8Q6EUDjhWcT;>h#1rS17=2sbpWC}X&7bY;_ly{S zJ7=w(AN$SY`q&#hIyuJN=;f-AYYNwVeK_=C3VqxiyqIEth%fJ@u{9ov;qTBp>z)}M z^@_bA#NqwR^WRy&{=IY{XwkzT1Woknw-`@`9DLgzvv5yO)N1cS?1(SUe?QspTVqSS z5PM@5^y{C!@|_gw9iGu4=jPzG^HbQf7#l-gwSFx4|C5-)e(^oC7RPt(Z{q_YhxcR_ z=Z1RJZZ3Iizdh=|EaWuf`Y=4U*SRS?cWo}s=#3%29@Aj1J`|_NF(JPB+!i;-Lh$(6 za7JF|H-wyHUS_TJYLWedqN9^XpOb$TxLgE#mTxN1urg zhM2sfTMRYQYPK&5`Mg6Pj;H3==1q<%^jXa3LQmCoN4R%s3~l;23pz%vds@q7KhNJ5 zJ45YeX!PW!*4~44p$0j4cy-XcHspJK?2VQ4wVu!7V92vI+>`727@p|uEPP9T9O8>T z`lb(J=nu{6|3>T!x#{OM57ay2%Hy0f^85D_KW~lSnE$#S=SE+}`$6znJnz>mZjUV? z?gvBdUysv5?e-EyuMPWY z`Lhs5Eoy%yhW}%(#&i9>I=05gf`9JOBewnGsC!F%H+&xtgqrY;I6L;l6k<3td~}a~ z`s^219dgp~lMvJ2CG#-84ZNJfOfANa5SORo@y@-CaeJH}?q44~@~)3OUz@K-EN48M z!aeo5wifHB@wYJx8rKE=3vp@C?)v_q>6CEZxj%^EuQeU+zbR-oQ?9=gp2>GkYzh7H z{+q39g3ejUad*i3vDg_`20xe2ga6Ma_gSGYV)IlSbN9`Vdqud<7oLgj-06t^2=Q)<7vtZ?e+>RDhCNI1z7T(Nh{q$fdH%W3`;P{_&W-cuw&ul#;D>qN z73vr>`IoKvFP6CPj9Wtd_2J&};rUgeN3-Dh%FsVK>9c2VTpz~-t$eyGJUbkGzb|f# z?}a$(mxs?c%&(n$AQr-0Ul8j;EzgBBdTXCPo)HfQANlS6XM=a{(I6ka>w_M9yl*tC z(e=e4hxOOPdHIK5YNhiHu`k4<=kXBBHJ_auF+3aIc)#Qm=TK~kd*h_IHPlE8y*!yh zJ~=)U=Y?1!rWnij$*)JZ1&wCLT&T$mh(((od@1ZV6EujsG5Gg#+!TKle;2Fb*%-OJ zGi&3z7_~TW?=1EQt?J{QnLHRrV|O@9%kWR$D}qkG@xkA%uf-JV6o2phSDq=vrT4}7 zN~n#tk<%Gn`0K9`3Bi5#$$13_-45$ z$Ix*{>nmc+)QZ-#7~dcJhd-Zat+u65oBCbrp_;^T?$~hOTzxxeSQWn$^2tAo)!~}n z)55&!`NKiSL!o~D$Z=Ar_mOxhwuai@5cbG9e36&F;j?E;abd{+x^PcEz4@is5Z>L2s?U~4&e>b(8_&RE+==g?p-+~dR8GqvW`V%TRrJd$rb^Ihf}f8?0LGqKb> z@`*$1bMcj+lh?O~dH7a*Hth4w@on819|@klDuyS^{TlUqzB*nEJz5#Fpj|&`)Cav1 zkDuK_v*X?mb$ZyX=sB;SSYzRGhU(j_+{B_(Ha`EF6;ryvV zGfn*GllUhD|I8;()`$IS+Y$dQj){$NAVy#HjbGk(->yePyvsto^FofjaenaEHGh5> zSHz~E+dH>8-V(13`A>=0EW7^a)~}8~3eWlA8zT-~;`2(JmBE{ngAdOHk4}%j2|DOo zGhh2&@K=rM`?=uL8$)mHrSsnKH&XstsO7QP5<5eVKZ)NA`}x5i`K;wIi}uNNVul|TX=p;jQZEMw&#?PXK&EWdw$u!KW6cK+!gvU=Ep3Er5|4m z`>zRm_1Co;$M?$q5nsZ6OL@dnL-|1Js_%-?^miS9?emL*ibNiOp`b^hql}rD{+7cIq zGxVxSOu0`Fbsh+3?+o{6aeN#Ny|^}x#F&{o=4<)Qg8n#nPSEF!+>gz#f3DwIJQThQ z@_Vk2^!ax1m}lpOSaPdTuMUSZ>qC6+pTEQI@$$4~YtP+3F}8+S;x3Y7@co5grEmizBK{g(#+c>9sy&|!~W z(IKDjfPT#4oEYcL+lirPHYCY+suzB@uaC&WL;lR>jRtAl4p zL;O{7XNV=PI^Q?H9{zo+Yx_?LXXF??wrBip9WyAeeeUlFxy{DS!E?{H&wu~CUs|Ua zarJndSO4o{cD269LY<(~u zj@O1~;`2)0=fij7%iwnbE&&3+C z)wVu7TL^VKe|3y{oG}aA!XBQ}tjB(D3Hi*dIOoPq;T@t&4$n3Rf5qPz&YmB~hMD+x zaZ2!Y3cei<`PA(96LBPH6YD^Tw>#v%Bj_E!v(~&G`F^hTCE>Yy>J^t)192&dT$u_*~E`m+QBM^YZ&Uq~^tN=H%et!Qh>k zN8{&%Hs6dX%<|}`>-%ElcWz%eHw#`5|6Si6YeT$8LaYs;F3;TO!E$XIyWSexLj0%W zo$;RVH&uN5c_OBM`h98s`)I%Vsb=42Iq14`zLxKBIPV@WoUxx5JfV|+Q}9d-&&`GW zUyT1R&YoZ2)bBsWmxE@tc@I{{X(6WAz6U=E_g{`RA@;~Y+os^r@K`=t^>|0Dm|r`$ z6z7NY=5ANme_dQ2zE!Rlf_`)1dVjn%WFD9mD~J4#h8eKW`#7GD{<}6iqYnOWkB7o}TKM8!)t9BXKGf*B zbLtp1(SJ?Q^T99|^6T3a;xC4}?Y$@HSLco4`8#3?o{c?+Tgx|#qrt23{c%Pwyd!4^ zUtHUNZ_s1^hhtrg9?GkJo({hrX|0|E;k?gm=>SiOyAFpLc!uIJNeSwpr-W`0rP`<)%-L&=ec+fj~zP`16e;o3E zZvMNWUvcPG%c`)~dLc&sQ9rK_grwO6^+~Za)VmaVGBk@V25r7OyJ8mmy`G&HYJV`6doAzg7<1`; zZSYqI3t`F+x=gS$HJLU$FIa! zgO8&Y@9MY1ULL8J-{ZX8>JxWpG>5)NbnCOaoL?2shWtaLXHz&c_Q}tm193RSU9MT* zE{L&DpQaE)A5IH3FT~Khx;4#r2VFc@mprsD#ra|XABMW^UqAn)e|y+_DD+G1u6g^` z`I_(ajBkdT0>rZ1v zh_7GY2=~0l7lxcy#DSpCdrP~ud#l2`Zr|vWJaQkI|1R~*Q~sJA@gECk#WK${>Dd(G z(B?ZP&YsvFYv$K-Pr;kNjSqw#UKxDzT>W&5qbF0)^-Me*Vm=wXodwT6AEWQ%cW?J- z=g-NpKIj;J>6iFwSq%C4xFP6M>jSYr)`k1xIOCpKcp}vNgK(e5%|VkGFUA*QW2j9{ z=JL@P-|U-P-xee0>sl|b!3@aF&((2n3>|;nS}td2G4d_fy0!aa@Nm?mXY|SQRE)aC zUmH`{KRhxgqxX7l&s$-)p`SLWAx z$G0iQ`Jc3&1)aP#qpN}+D?`5XVoUIU3cd0>{Nv5O;14aAhq)HRc{A3$ zSAA;bw|*WQ_L$#$L%rhA?!Fk#(YZ2wGu7)nO$#AEug?g2&D3@ArBLJ5p)U`IUWl_d zo(uik8ScL(>>vJYYE6q;>{I(S@tK&##-Q7b@_ve;Rcx~^&)ed-_|>>8#5@$k)5luV z;J*FxdOizzcZ6r|tMf;(5HzdPGyUL$d%J=r`Fz)WYs5Vz%y;ti6m+=ndg%9Fxi%xTz8G%}I;RlZ8MTkU!QNZ<^mOF#d_(Br`uTdH zUp)~2vQXdR{95f-#+Xy*m(Ri@U5^}m)K9hfW{P)zYz*(imKb`i|DUjzK70Hw&!wiX z1${j9-rf=P$@9x`Pl#z=RtCSU-IL$mS*!`yt76RCw$|eC!u#R*qcJ>kt+rXHjfbPw z)8^NE`u%D=6z>c*d^~9XW*m&y2L1QN=%+a1Jrm~zeIxe?trvnf@`^R;Sl%CdjQoIw=2{R@A-!CoDbvuTx!if_3+NSYQJ2^$EH{j?$hMksUEpp zPa)4N9uI!HmczAod=~WnBunYxGkQI zyMw>#{FUIZ-s_wCT+?TdnWIy!_r|u6cOga%;?nVGm;-VA%4IL#UJCIph;{Sz=6+v{ zKMT75UD&fX4#eIg?hx_W#GqF#MDb!8ZJ#jGP*cBV%@%VIjE~mKs zqoJCw!~Av{pR9bVP@zYzTeu~yk8QudFMQL?)>omzBYKr5B|zA-eX~|-KRMj<-4H`Q+IXWka?&yU z_nhDFjhhdzjRX>1L1^Rdudal{bows>Rw+pvH5 z#c$XDYs^AC_4A#FywWrEcs7MvXgDEwqDI<%8{~amY>p3veH()ZY7lSxd`;(<;*qd# z?4gtIV*g&y=d62T(J}VA)-%tKhFVvJJ?@EN&x7&P_zV*;?u(g={be5)Bm=BuNx--W9dt2{_q1Vi~7Sp}E!+yD@5c~dcy&>%9 z4?kwHCS3D?&I?1XQRk-Cp3})2{=24QA@tVuy6|^`hFLgop2i%A{Y>z|v&({p!{I$x zjPX5~wf@=sbiOw}85hO%p%%J-alZDBIQO}@GU#(nlb(z=(eX5q{+p)MZzuIs72-gRf`)#H1D&MDj{%D;=93zn;UyhIt2vnAs_4rh^x9EuTNN;g*=f zzL(}}@#R#HeB-=5mxb@HzRNF$za46I-?@!puX$4E6rMrtp2;iEsxSlUH&gZ>3^jRv zAo%_}p_l4BCgjs2JstVQy(bRGi*Zss6~hyMKjiusacf)~JW}WDLvHi1C%ziu%RhzK zuZdac&C_9q_lL8d)BD%qd%!p6)$(|(h$)6g>g6A=>>KZqdul%~9u3cUq&GW4{XdK? z!7us8@7nqGr~0L7{QcySy2Uat+hbeM#wWS>sRsG)o?mb1*Eu=8A7bu}O+mlw(UTvv z-Wp^78Ljo2=8Zvv-zoSkH$7AE#IO5)heubp)-(AZh%ry&z1Y(|zJ4Tj#i7_4Zx1tj zZn&o=GjdwctWT$gS>eSc;oZ3}z7(@KKF0lXTB~z0#5^l_GX<@@(I0cVK7KW5UYP&V zD8D(7U(aSihgxVfGqgB+SMZl#_6#4L{eJl6-QM_iII}fqq4_srcbJRYgZFZr9elYl z#MgVCoH4()=h;{uPh35{D$F+RcZWIRt96yjqpw&G8w{V`n`XQej{531;yFBE1G)|hYd1ZcRIuf&36W7V;FfTX6+PElq;yW?& zozhy(X8&IY55zG?H-~3@(_=l5i}y}30Hj)ZvU1bybu*(toUV*O$`e@1v$_#qE3>79idX*PrQiv2=}VGf+R zfByTwxeQXQ*#Z%WKA@8VtQ)|6(@3}a4el4dn=3IQ= z2m20$`t^DWKG5#jdt+tX9S?;Zdg1&O_Ih6r1@GjXg`DSwT+XZrx@dUa{C97^^z8~W zG5UA3wRn#PO{+p~XVpvBsbP=v3!yi^6hq^$xAuuURR_D}r zLO8>By?IM)i09+Au`_618TRvYf6PMs?*y;(M;>*m;jDOOz8>@Fz8n|EFNC!#-rPgZojdo7nUko{47tYguZM=PcEvFb4hch(k z7a#PO4`V*X(_fm83;R7gCB(Tc>=Eye(l4sv~d5HI2iO#;hvah$73-(Ffa7T zy)o=L5cJ5uHq4p&R|I`}acjIf=vfnV@a3N1wezD6xoA8w)O=QK54r5)wfnSsZ$~|1 z^6Yc-d-DE=aDQliq4gbM7Ug|${_DQj?#X{aY>t!S@fb09?|oO}zEI!qhnZR#JX{}l zhcnhA*S6LRG5mQ`Ykpi1@*W>=2)fnub0N<1{(rk`bFc3G@%517={fK3mtW%XNPPPq zh(p2epT@t93xj?hd^+wA`%etLG?zT*!?)tC;rVlMG(3B6=;O8Fp69OZ*%-82KNtc;NXIYCkJZ2(fm@tAYl5eCHkwdz@2`KAjf)l6MOFdE~v~>H2su z7J{D9k3VXCb2#gscpHO0^QFc^VTNBD^bTE~P4QUB!{;}Jd7@dIS$NmZjPHf`ABqDp zg?hgjG<_@{h+9IfblYz>%!)JSU+q^1f1Mw_ysEYRa!( zJzo!P&eKez{;v-D&BrWW2($lCyffYt-w*lp<4~9j`grO7@nQdsaYNYiT$~pp-=5a9 z@E({g{`2VApm#C!!g(?G#&W;z>{?vU?udKB9valBrb}aM$o16_*L$E=@yA(tcZC|v zhUfPNzvvzJ?{2L>VylN&3n9)@41GVVdFq*17lv4Li$k012SN<%6=5$;_Ko~MYCYns z!FgxYyfY5O6tr18zcF~rA2m%Ows+%^&_|xwCzty_iPK^h?rjOR>fN@WXJ5$e?3gEU zt*;30#_&i@V=a%Knq5At!R$DDFys?|ilNs$>&=GvlQ56I2lC$^@;Sd4;{SR~;huL@ z4*qx_oPU3OC*B&)@={(JX_9}`<-Xc4iZvnUZ2rqvnl6b)V`!pp{QG2_m-|1*UxqyV z@oW|g;T|n&;P>)+=-0pHIj-s2nUBTM`15!y?B)09jd*Gi&wJ+i6f47?&xLwN-=@~~ z`cU$nDy%zVSjG>q4)_c{4bR-wpB2*DUq~E#o;a-Wjz0j}Y^Wn8iZu z2>HgGO|9kD%eC{h=bPiCkn8Q?`Oq@8z9mKsJp=7K!+DxEhHsqseB!UVJ?F>17&xPa(3=hM zhIk<4q5Iz09(Tu`!E5?x8~Wva{ixV+OBnO^4ao z681kD4~P9fd*0b6gWg$;{BrS;ettM-Z8pSzZMZjuTs$6qI?{R;^65XVpO1~|-j(|+gGpkE&fo|&y}@o1wjo*4Sg zu6XJdn{K|W2|2{v7hj5P@x`!Tug5oCpFSUISJ$Qx=ab=Yru{z--}2+<*QfXUmC#G^ zX>^Vc=F&_&5NE{{;(E3s#4{g{ggV?G`)Ge-Ora-!eKUp^p3?@syeYmH%j*}9*XGq+ zeJ$)e5T5ylz7)<_5C1l{7W0hY-|ayc?ecF5b&5H~@}7Ao^+Mg3hy31uIiHE4+dS-x zF{_Wamfx)DgPg8M?IQ=jJ@;=4&%Ye||YhX5pw-P(7F`Mbz3{nKlR$HuVSnH z&%$%Dj}0;W{Z=#0yzrgg70!A8?LRBL3m46=-`nrman1aCcfa=j!Tfr4zj|?1ToLM~ zNzZs~&h`DNSU116|7fUp=%&#=`glHSnp*SDy%%D{SEIQd*H5%|7E?Gg{tobX7ViwR zvV0Gn8-nlj@M{+0pBvj_x&KqwLl3{`SMN#T%y>o*ZQfh&#)V<;BcaZH;rt!Ja~ixa zwE0%jL67Ih1b^LI6MQ}x;`;Wup2B|poP~M3D^811GY{3WH#UX*VjPZzxIE-P5cKkf z7H7_z|NgY!H-(v@=V*AYwo79Q9{AlIay}a3@`65oy%-+~=f?HFZ*8C0KNok$^`X{h zgP$8iujrFkE#`R&&z*NogM99ZKjw7QJ~X|rXFng81Z_jlZLPg8dUGJAQ19q39lU$% z{Fm4Kl>coZo@+5@;oNsa4E>->zvP>R-s=^A|6^PmZx1z&{pxr}EQb7Q5tko-8DiQ` zGk?V9-_{WK_vXJx`n@v5_1+x~=Pn2}+5fR{f6SKHo5TBHk8AaK7->&dJ3MYZPcPS>b*VA2(^hf;``+b zoy%kJVHV;!zYzDvZ^ZqfXU?q;e%}+cTsyx$v)>~@$4hZmY>0>Ar}4`{zi%H6E8~JV z8uEE3-G63&y|Ld}@Wb<~f~R8rLzuU>1yB9Wl-G0Te7kAmz4)H-z^^)aG=)8D!u|d6 zzU`>9B7poWCO;k6#J;MqkDGdN{v6ocX8V-4y(F-}5)d?yzSH_pE80g_(5y zqxf-{oBQHRA;0~X#^F%ASu~^WPa&5+yXM8S!Q+MSj=m?v_a4dV{rp&bDCG2v_VEq0 zHc#TNj%z}_Z;e@;9O7RXeEWE;3-L!?&ih_EKZSRdf0xCc_-dG4^*kDUGe>fYIeK)k zwOl_JJHvB6@Zh3Y40^p=bea+Sr#KYv53|Y3C+6$rGeCpcHkb7Ahjw$YBUXj?d_{Qv zrtnV4>so!M$AhsD>R$@8BQE{cpO1~+rnNo$opb=M|i7OXUF@(eZ8drln{$Y*M*qAt?uz@3i|E~-nwtb==j@sCg>K| zz87K&b@~09aE1=r{L;5J?Emxl7qKhoF`Mo`98U#3Q#i}FSvX72hl2mUi+b+)ZSk() z^^uTIKNjPx5brKj~n8S zxI5JM>Cm^$L5muua7K^+IbI!q6wVC~=-3yR#4LC+df|Q868iYZVTNek9e0M_)4M)s zJ~zbGHy(U8W^+bw^;>Np39-Hzo*fP6o)5Ehdi*%lLyvmYC(mg?(`Vv?u{UNRrss0c z!mRBGdH8m3sE79`k#q2<4D+}Cfa%G`NbjD zf#BPdp$3{Zgfl0Fx<4HYLHj*%IA)=KK7BnrSC`(3zb3?=f~HxBwKJ}XyiZyTYH?jJ9dTrrv{zojJEBePVa!{Zw|T^Lr!tLR~Lmm z)+3(tkI(Oqnr2`dony(Gescy0am;ER6HEwB4D`M$pwuGMR3Gc-{E3S^kI5))cUR@vj`n#B7%Rb_adx*c9}h z8tPmhzY#k_PgaKKdUtM^S#`-X3w6kGAg+ytI1;mPf6VEqg{H+g6w5Vi==$VP$HAcg z6G5;3%HtdjZ;7u5pZM{nSl$oX^yP`*`Kk~{Z1=_cR=hQ6phawY_lEvFGGEhiNlani z=8%(~@okaYee)~c=VJJ0@2w%X*%yPKH0p!Z`iVptz$KH@3bZ z?4wI9VyWlRuy+<>y%_3#O-!*d)Zkqoxp-slpN!@D#dw`}9{3v#W{!AgZ^Su5}=-mfm z==*$Y&+ZPM+0XBDLr)F_kHhh z4gQ$}*W*{L)uE64{%F{12At;!f92gjXV$MX{BVC`@b5tI`i(K>o*#U;D#RP}Zx-}M zu30=Ad>Zrirq;7CFXmx)cuu39IlC*Sa8JLy&rgILeC9V@i($X~>XLJOFYaiq20EAf zFm-JX)V?y#jJMCP|F+-HhIqVO3f_+En_3^8U(+m?eKe{2jWOyO{r2xud+jqHQ^-I1 za!>26p_WI3W?u95bp7)#%*CQKjd@o7h)FnnFF<(cN)(K z^-ZxqjtSTD|60)PoL~M9KmMxqU&PR_9{VgW*>Uz~ z>%YBw_B;EP`C8qd4SMx`^ii$Ldrzx#Yhz8=&p)-PTTMJt1OIq8ix=ZVVLyGd_}y@S zSMb~n{(k7M_~UQf(DFd{oL8foM!jmZS4~rR_C(NfT+kvXUCz^KuV=0oV|c_jHQLW( zwen-cc7GxGbu^s6I#$K+1aIZlEB!O0-sin>S?JlbA)dS+j??0i5L>NN*yq_ah|uhn;aEZ4T&-?cq6H=gUMZ_21|oG~|3_#W{3<)GtW z$WMS+PZw-6&S{>KUug%3mh=;d^`1b|RtoO%NLGQQ2jH%gky&Q4v{Y+dG zTjDo@|8&{UlQE<8$@f3U4Z$CAr|``6@bLSs#S`a1sQ1pL_f?Q@dkD*y|f1 zmS8r;)93emGtZ18ab=tn>OUIh@27D`>Bfc51zAeQ3P8<_=hv#Nh{L8~PV1MY<)v*{)gy%bAoR^;#&*i@_)cKzI^{e|G z8hw}aPkz4oMyPjqtgc%^kHp&&a%~KKn!+BrkA}F;%l}NcPoMakW-u|9SMeR91y z=(u+NE0^~`4)=MtGTyN4`cP|U^_nLeLVSMGM}t}8x1N6`d|POGY}s0zZ9)4|oE3Vz zJ;a{H@v$xFRnMIvCqLwxg?iS6`o!8BW?w_3jy*T(7b<$AL=_8FUIeO_x6v1-{bG)*{$v8KM$V?XVmg=(Bs)(hdOz% zBF+zSzZagRwYhF4#;{KrZzltfupv$cA%vszOzA^NO z@A>s%zqwPZob-+Lp4M{NV?Oxp?B-DKx)AS<*cgw7v-ZnvkA8Ws7dwMD!!NZse`)aG zaLD2Og(23sp61tT7UvCN)}8kbx=-7tcsTUIedo>9EKZNBVr%HPT8BT2t=|%A;)5QU zCH2#$e($C{!za(gAAYHoo+-pW7-oBD^Nv`b8Z_|dNZ9*Cyf!ujzjn>ndY~rfc)TU9 z2>VVB`stI)dJ6g$V%!%`jz{8k;oBkZSA%|hJmgU0ftX@{xHt0Xk9z2r@3s(!E}G1@ z-mM8S?VG|q{@S-UX#Ym653?ucm*(rC`B2vnhwsf4V!R{X9e)=KabEC)MsfMXf7kYy z@hRlp5&t>tAKG`eHY2;|zjD43wDa(zVFpJ1zQN|0e)-3J=Xf@Hsvfg8W^igf3-?cp z<3cagN3WWnjnO~f*0J}8t<|L_dGyXZB$rs5gD%g_EFI#gam4tu)}9ZK{&j2qyb|)S zinGHW^?J7aJbmV0e!lS4EciCd;X69C?{BSFp8sB49CwF(#{~byzdFV_x@Pgy_)*B= z`A332v!$->u|9q=-r;#D^`VW7EYrsRf@XM zIcQQtTxKVTZuq2HQ9u~$!oW`JM5M4sSM&%P%U|dDnEAYCzT+Ry`MmG@e!s8lb-k|Z zzQ2jy(rdB>6JzuZvcg&3YcLmRA6MG7MI5)l&JRkmfPJ@{8PGK({>*DMf zUYI@gsPWeMeRWOYo8pYUG=4JZeLVJuo_{>-k>^N=Hw8Vzho@URul}v^wXmN*W1kwG zpM|~STXS`5d-!pF&_dtgxH0H?Z!E1x9J67L)v!LM;DLV8eJoxc;$9hYioX!6;uYa6 ze@8smH--7TJZ9nFGUNGpU&R`;;hDU9KF~d`9J(k}rT@u5;kF;JE>Yjp5dS)TMc&>d%&FKf`*K(a2SA_cY(ab**jdWP+#hQ3g@IyYeTo_`V9OjVLe=BC!*g21u}_Xop{|qWzc=)&#ydlP^-OVpn1N?wONe35 z_

m^}0}-8u%*T{%~*Pv>x7g{`Hsz59#6Qct6xS1r64l;`-p}e+=j4*%)T^&w|J2 zhJ3?6_34xS^4l|oxaY+B;IlIihUa7EuAJZhP``R8))daJiE~0swZ9_7*c@h2zTb&2 z#53`x;O#7K3HSA9ijn(J>usT5@?8{sSsCuBZAF|P3-RlIeyw{;^~?K%n8hbU9=+$K zTK-d<5#p?!|E}tnr}B>3lwa?sP`jBrD`?mkW|`m1!*eyLf1JO%wdZoGQ9L!s`%l3S zx=)C!!hLb=yCcT@IxqLbaV%(ceN*t#e7kpd&@ue=PCXjt?6moP8W+Pi+!-}nJ1gh@ z;3p419%lW?_-g1QU+)b%%`DCI^7yzALl0jT-wb+rXdiFCANGnld{U=t&wYzWY_-tp z-MS{kP!rvE#kWGO_VI8-@PB*AF$*!z4l$e;`?X8f7q;e~{pu0xU7_|V4}Uf&sJmzF8S8~&S5-;$xz%*pY#aQ>E9 z7OxEY)G>uUe!mf$!^~Y9qkiwiQvaMg8op}_v1h*Ky*^(bYWYI!jx)k}zNn3^4~M;a z!5?R*P>;H4GJ|rM73cNK-?{BE^lxb`*IVOH;=Z8C^I3c#cz8+7!d{xT#yPP*rjS?8 zL-9n|$Iq2vKi%~2jI%;~y6itWrWms=zd0T6?%vk+>&^Y~m9TfbcT;OUv+tJR+Y91r zLCZPe{+RcBT7NYDH0}-BXmS6%_^XhQe)=AdBVkT`6GokS?eDbnw}t&{LN5MX8e`_} zXgv$PR>Naq|LEza*3R;JF?NRB{Nva8;n@_l&^L6?TJzieC&OGgFPCd|+dup|-1?*=_Nqn1yqr4*q)n zj*#E|wZS9jw}$l0;fkFkGq_iv1M&Y#ot+L#4Dy+^0Tp`h)>u{7t>wfGAm zzxtfhGxg8HUh7daugARE$0NS;d~b-eDtI>fGUn>>?j09q3CPn;vI2oh<|nP;rRLW)UUdSFLHe-UKsMz zHfnjGwLYkYA9PM3KM%hba!*0)XG3q)_>z#HAG_nh@SeObE(*F%4qo0LXN3Ly^!|&d zZu7P?%+G7$yrA=IAs>BHi2YxJE@!TdeRIr_c;Zj7YX0lqp5USQ>thz~4#F!*(EP3N z?C~)3{M7^AdXL4CZ%=Fvd!74A{C!*yG{}2W&_TC4PYWJi7;5+YhH(Bn@%7-PeEPy) z@u#rgwf)2I@yz@!#=02##54o0rx@pXV=qm6!}nqMy=%UuO9Gk3UP+-@_2`K#D;Kw3VZ10jlS%USI14E)^Ehta8?f9 zJRW}>PX~Rou-|!qYvlh#oEq-m9yGrq__QtbZBMAtEbb1zj%#z{%+T*|v)pRsAN_X* zUp^M&Jrj3R(7n_@XU~ll;r!ikO1MAGfBpMO4UYvqavlsmsM+sJ6qvwDsTy6t}`w#O8DBai+}F?z*!@&1o^CiupyLf{u;x;_z&99EqXn{-F%Cqli>n+MwMbKfs-ei5re4SySQ=-2vK z8RBdVwOdbNkJ%nNT(6y9%O?*X{#&?yXZ$SuP1qKEm4D381Fg-a+T`M|_g+uw_Urr2 z6EQv+d&4uDoaGgbVvqfMTF*i*eUgu!cZGXubUh1aUCCp=gcN8XUEQ`8J=O)y-fw!% zIz4N`{R6?np@FYrYzzD8GB3BzujSCYQ-lA`&q9n_!t<{M-}uh|i-ISQhv#}lk2-h6 zeX$VoeLJ3s)5FXF;|{H5`P$D*7Qw&@5Atr_nX2j?TG7w9_Nn* z??xT=sm0mXhknR)Rh%E{5nr!&g*wDs7l-0VoDi!+9PgU_?$3fg9y}ZJJ`;a7|GlQ) zF+Vr7HY;@6Z{O`eYNwCPx5~@#1?Zg z?3bS(zVEKxKP&9>of+@p)Y^IZ&B*g{N7%P14u$*ntPSsncs~y_=(|ME2f`UM|Iy%u zzP%~bb4%Fg{u_c1V(Eu7ereR>uY~whxUWX@ac%JG6>)qxZ=Y`gFZ626oIc8TICjU- zNu%6949{KP78isw_I^9`aZlKDZhR?tK!ZKbh%*b<{G-9y1ECj(!n=7e)b)ul4^PDx zLOl6D8D?V4pZWD{S3DkSm22p8=CYvCnkOUI_SX8dHckoprx^Y|-THO&>y`bk2>bsw zZVq|O*25vTn&cV&Ew)}4^x0>ooLBQK%-zLdA74Hc;_QeGp+CG4cM5Tw_Z>7(?r)Cs zgIAY_=bK^*XAj57?+kB`#NWr5OWNFD7F$EVmd=!Gn%$$7*F3s3ZitQXSgel+=A1VF zRipgoa9hx~Iz}v7e-`SN=g(qaToGn=Wz0gHKM3{G%kyhuP0*w!?*>g``h6%4#)0r| z&E{)5J{aHn@o~wg?GxmqUv#aBl__ty2p|Jmn;Kj2s^vSg+=u?~i zOfmdDwY7Q1D?`oKhI8Xx+1=WCxy%_op9xxNzdOXH;k&US%*!vr{PE8>K#bL)-+Xi5 zJ=bcOf~VrEg@*tR`?!%#ezI(Sk zQ@{8Z1P|3}kF%!){q)djzxcEc@9n)I#P=PeO}s7P-kq@~c(x<15Ai&ckA6K@>!|7B z*7~I$KJO2H>G?BpENFN<;4pC$Z3w&g}q`O7w-Ax4}I?IsW{^t5BJWm^-(O}Z2s*Eeq0xxP2udD zV_$q}e*OA>Z;3VW-jI(+7suP@*Q3|V=GXMlJB3=DJrXodu|EDj+~d`~p(l5T-dzzp zWn&+4`!`+dqvlFLc^xKTr5Gg_`A{>w{sxSldE9uMM@({N0Q4@2L0uD_duCiiBsG`}3;I!_-x;`2kSd&2v4ILwG#X5o>zBh)P( zuV}GPZT$Ih*lWEZ%!~N;`(23b;abns=DzO?P5!pYzbqaN^{tI5^zXyr8}gsykK(!b zm+@C2m%I-J4X4ELTz#wKlKH*g?3WKysDln?{$_>kNDn;BSAk8 z&6_wEg}CA`2Hk2f*VguYH2fPzuYMHk!+i5}UtAcM#pAIj%!L~5lUL3$V<)zjdm+@h z^xat5wb>N+nfQ3Pw=TwgUW)x#d@97FOKnfa+kP#Hq0A8w#V;;J$|o<6JkSn z{#3jtZVx(Xr|0a@o2Nr;HQFzydE6QD$VdAbVZKM*+giUe^oriG_x-K)%lj_g$ahj} zHL3N@VLuO?zaaP`&!}6i_Kf*@zO{IIvnjks*7PofdWH@;rx5#z5a-!&Uf-QLZhpPL zU+3vM7GuA9?WfUm`i{iX*o$4yg12gxM{VM`cFy^YaZ0>AX#AhCE8Z5KzaWOMp3lPE zZ4JG+INUdzvv7~z*M}PEcsh7Ag?l5OoM!fpcxkvE&(uV-9;;2gK)QsvF#oDzc;@&*EGsc&jYbJ^hpkw^-Zxn zrZB&1vPXaTIfdBz?99+*y)Q1D-}ijae7&~cDTXHBA9X$wbpJF)9QoBF-{GLyH%n~! z`DpK_Le5ojcbpUa^Gtny`G0z-Q@)d9cX+-%9*nW?%+}sx`@R!q%e5M|hHsy}dO(NY zn_@%!^BA?!Z=V_ug<9Sgyp&@x#9Qj^=J~ap_NeQB2CcK8N&TmW=iYgH+~c=;+`lgt z=GXl5F1SC%vDh49oe}z@4l`p`_XNN8#w|hj6!dzozR?f4)yRWQ^Ivo5JWXfEEaaAl zK6<7YKKV6U_lJD?ye*!I+hb>}2r=E0OWf5Vp1GNVk9wn5_r$H?x$hB;&dVjwvY>r! z@Zsdx9qQAsV*jN<5AA%B|EU-?$WP)cF^tQMm)Zra9gG2j2wHBM!SI4o?549f(eG%XNkwZ_^JBv@owQ*0F zHG0>^#^Ax9#rBv&J&Pg!6ynkyRt@g25A`nf-18~a zYu?1CiB9KW*3OGj??P)n9gbhG$9Zw&q20B8e;)rjjs(rW9qM%c(y)hT*T!Fl`@D8f z{oCS0^XpCh(!ihF=f6+&``++uiqXftt#^hw*%~JWZ7bva`1JgDPrvG;Z%gn)-nkESxp3<5x|*rT_G}D^3X7XrE%lRQvL;Mqe0h|;hA`&&I{+)zO%oKF9bj6`hViBu{HF^-&*tj?r?t0 z3{9_$i{tI#+1+tU$ooX_;M*bYLt$>5yCBqaIB4D*^yv}ZheB<1za(xA&s~e5=X}EE z5dSNoU*mn{3;o`A^L8xgGJkp|o?gm7=4);1EkWbCaYcMJHiZ4O$uF*%xFa@&^J;N_ z7VF}k@Qqp-JmAlb^I!eBBxYeRPwCzk&%~=jZTn(ZOhM;u!GqD`p<6t@?~bD(#t(vr z>h;Z06CIv?I@IGH-D118mzTc%a+?$RHiYMTre4oZ3OeMyDm?d057g{>Pt4-vI4fQr zymy};?+f|g8eK6cR6ugkr z^ZnsD&Gw2dp16;PdcD7A22UT0@qB8{hjnpjYz+JPYyX}Q6LPD~Y>r&_wzl8(mhg<% z;=dwj@h*#N9%{%5ngU(rahfa^Xg5D{< z7xs!_o<0-KO+haYZx6jZ67qZQ{iA2^{MtLH7SF`KFlc@_)Tsw@iSaMv@4|D}x6ar4 z;M)H2OyAYu{_2o_%$Azp6jRVD$J61ge$l9(>gDTc!Bg|E2RlOyz4Z6MxqUI-4Kd|A z8gx7qo{K?~_m!3_Vn_Te#5fdU%IW&2@v`~adHH#ye`0J2`(4w-!;LZWyXLR=%)5SL zi2Gpd3Gw_oBaR%q=4<+Q2Tdo39xcYE_=_-io5OpmF3-f~pLm{sENI{-zZPQ5#51k$ ziFe1b*dESb7p~=ZP176a*LwM6tclej-p=5K{pL~a=LTKFFEe#>&|qfFr1gRLoA_|3 z)qeR71wTeSf2-7Zd|V%L%V+Mahb}(b_uBcd@3>fcHiemX&-Jc&E`AmCtcV9=?A_XW zWsI5K-g@|<9{J^(V$?s*@_=T)`m!nXOnu&wDV*`#yXBncQyd9>q0>2j+pC{zVtWi7 zuW9{2I5P|T?03#Rzvh7lQw+b{TMXZBzF!mSp~EZ>P5LtnvCNvDogBl%b@O}6`kjSY z+ZZnndc`yUqmT0Ph0dP@AJszV6f{|XI%c6q+u|MJd*M61Bj~1AKR+02-o7{(_Ur!?uD6Hh^wTi<`u*1GrAOY2LY`Z~ezVT=e>=Yx z|E@5nSI2oFznNGWe4fSW;r!uHFFkr87H`$67kYhu$W8B!K@abpv1eJxA@` z&~M&Oab%8Ox<{{jYL=h3=15KM+cyh7eI(4n-Qlbne-b<5VB8V@kD+EWI)zx@3wn4( z%cxU5*7gs5_MaYN-yZf1ZLgWH{f!sT@7|cj&};9=EhgVwzaeyz0Xy1ggETkoRh_Un-|>fwbPemy%g%oHs&inTI$FpH<+SPZ|^ zqgURYDdc!A)H>=J{q`PhjP>z!{6kEkKXQmegZjP^>Z4I?>rspT%Rl_sJ%1+muj2Ul z%Mk0T*dO-0R-gX5eo2@C&v~#hygTomUyt~5(=>(iE8}1+20!c<@6q^v_#W{^UG_Ln zo4F9@b78-;?+Lwgy)8VyI(Y01%`XVvOu;jKq1m(XZa62;(5#2j~2ao7+*0p+__r3gwSQ+a7 zN;v!D@O+$8i*l$+(eS4T?@y!xlJK{jh z;;A?<)VCsdrN%SEGre-pynQju``sbV@5Mdw=Ae_VwV}6idiI{6$Muo0M<3~T?cM&v z`I<&~`8o70w3h#dppoyh@P7H*G6he?QnNYsy?Hctg&COQwxHR1%(`!wYq{jSE{?_4 zFc)Gjk8QCk7Grbxx0>t2LE9Akk&pf<)G7YsAHFG}=y5;mf`Zhlp;+zybkk{|o}GyD7}$zE~N0 z`b5lvmZySO-jR)QD8!q>UUB(-TJUn|te7?Wo{7^#Tt4uR=B+{J387wkocG-I3&TD6 z#`|+=YdXy8=-2Aj=4y&_W5s+e_Gg3tG>UawxJQ?nl4puL!nr47_#>y-vv5{ld8LNY zLp91Xe4u|<*fYiRaZY?9z8y>T%dL;jtO+@$7_&m>x^QOXQ=gvwL&!tVLfC5`&1w+q z$07dO81wHPd^~9WKuqB*Ei2;uFl(2`)=;14Bj%N@_lNy=hG)E_!3>RGo}0HRXr+Ig zTiN=!I1*~t{~LpzKZ%X=U;TYH)L^eXr-oWC3TH9J=!v~_jCz;1-WIfqr~j)$4!z}{ zvxh@X=E|=#yjTognnCAXFV%Bx*XDjx&@yy7^Wm66d|o)mizz&RBJ_;MG|@VRJ@V)! zokJ6!X7S>9L3}Otg<5Y8y>Qlj_}Oz4_R=WcSHkl% z!;H)8TD`+V`t^Q$To-SOEkT?9tcz74K3&eM)3g5>vygx3H%IT(e_Fgg=z2%o8qPbr zDa4sVopg`i5zjr}1o1u+V$rKlvoObcX#cLDd1dI0_r@IR|N3x$qLE8u7Sn%SM5KmnD%#pb2bXFWOe-wLTw$Lmb~z zduH=r`FKDBkJTv0>fpiX=VEI)mWNqi6Z&G0xEtf-7@pdzf3FL1`C#vD@uT3yjd6VZ zW!Qg0(DK?Ce)54I&aMr;gxD<4~-OarUg%^zuy|Tjtkl_l+#n|t67QYkTM|;&f{1b0&$R+*@!n<}b zJ`?&b$EHw+U%8wY+dPaM^o&|R*?MpAcow@ud>T&)T3qvm2md2J6>5|3<)LnOQs)JaNW7e)3GN zQSbQ9?C9Qx;P+`E-ilEFEac&}Z^f(P*|<8?PxtNNom$%ag|1&7a+*=GiYTy%I-kdgS>@*e9;{cWJ%e|65~o z@Oev!Yo67o9x-=@dgOmsn9;uran0WqLBo&38M*DbW_~^OOV{|7*L;hq2ljp^P7UY9 zrN!^D7{2PQcju>}-k*ng&?oQuMR8(GA>TsK{+Y1f%+5l-H;3=l+hRqi+pjaDuGRDP z+I}ybuZN%Z%m0Qr65>1OzP+y97mw~6V?1-tH`3oS-qZ7U@$2Vr?%t-Dg3seS<(n)1 zns|SBcU+$k=ZCtU2(xi0wgumO-`zVLa=WkZ*T%6JefWCotzlkytMB6bwdaxeMd+Pb zR1a;Q`<}f#7Q^!&&aV&jE4TR{@$6Bb{Zp8Gn&fyW+&?!~#9M-H_w1qjS8;q?AFE?~ z3=e0m>3kr(59h^Sh3CG<>Y;mAOu?TkVrB49O!~*WreAt6G|=um&1R4HVm};W@z4G# zJh%VjVRkdHLhkm&fRx`}Ca_eDZ4{@X(CS?Gs4Xdl1(TJzif&&HlO z5I>0F2M_FbO{ZMW@bH=NJ*Mku@ZL=GiN7?eOO4{-8$pBIzl`CH85IAdaPGaTsLAO3U8zZhW^e%+{+3(pbX!vm)4BGAw-<oBySHrVSA)nb6%e~`*A7;z-z8L4Xw5EAY zTpUB&`&)lLXt_3yh5Tk@^u+b>`Ks3TemlhYPJBJ4;P2J(rq~`!H8^iJ-xvJy4y+D) z)Ipng{@*b2t!%9yuKjzNM?9Elgk(05_$n?k&CkFJBUeSXjT`FQ+h+!8!m z5qzd;bU*6JW@8z*n^Fr6&&oMLJw^gw* zcw;WiwLZxA4{>G4e@F1_Xvn!K`2J*ws}_E(3^i_uBf)F=#Je;O$JpnWx33F%^_+%J z$GbueV?TfJV2CU4_9binF7-k_dasK!=Fj%^ds2As-XETSINlk~>Zg0(2U4SoAw@NHw5C0f;WN*s!F!#$qRvnAdf@_jIzwePzzYM0yW=-1Mj znYz{k^&E(yOAodO@4a{4--m+^zx2wd=k~l~etmPlw7nwa)_1 zUK97lrm%NyyfNhCrTW%{-rIk5+#Xv)ZHI#XgK=lPI*x|(JT<@0PT?K7BWQNseEnYV z#2ner8+kqz>X*ZL-%jgM6TL@c77xU=A^)%9ogtojX@60i7tYYDrYS~!`aqAqT@YrI zeqMbjULX4J{L-5FwJ&J0|JSeiOgjzYPhmC}!`>~y3;yZ5dkeuc@%W+!I>fQQC)DD( zzpw7|)ipoO0srjbnV7yy+d{pbJL4JMt3nTGeRZgHdAui%g?e32@sgld%u%;k`$K*+ zJq!8Y99M>ayY7vvVhY}?e_g1DH)3pyx5eg=Lp-|G^wl^k%)@;l{_n>h&)0O)&s#mJTy!0i8bCi8ss1P?7KJY+Z40#T&~Arcj(MdmoAQ@pPzJytTpW z(?Xo1@j#4O;Lpe{#+zam@_!_jh4|OTzSt7ZUJ(3yf6&OE-;R6Y-7)m5pUx?q8{awp z^7_=^_joU8*&4Ld^V;zI>Y$AVxfbHMxH#S(?mrjm_1yQ>dw4YT_}d{SZ)l@sF*b$g zo_!!b6!N+Lc}!uiSiU{_{#49@2Kk-Wn-%l*)UUIL&(~|55&vDv;Fal7&+_{N4$IDyr7c@qn>Gg zy}V!Xz8OCab<#A2^L}@R*yicg!Mouv|LpfS_Q7}}>^URUeM9i|vGCsPiM!*H5Z_sK z@>+bokZTq+kN(ggj^5lH{I_>8^!eY!>Tqw&m;L&x7yRJ&1u@=#`FJu5@3orfwV(DC z!4LX=Kj^(JR>hUUcRAF`bG3`1XB$JkX6Bao!u(pjh(gU9mhi4SHzCk z5aN6O(Iv-Rh9@gg8H@P#@oXk7?xJEZkR<9P0e-aK`n%kk8+o`(xyw zZ)GeC`|b+ywuK(~rDODj7Mk7rc=*ORr_W}C{!fLx>QU>lI5l`+@1?OZPKm?uJ0ZXQ z^xYTZoSO9G+~BRV&d6oIx@b5t+&dI%dRrU_=O2o(e{XAN?3;przGW*yJpGnuA&!Q6 zr=Z(8Yw^#VuW9*GICC)6^sdkw@%Zs*IJ+fA?HgLJi+h7MHRuCRZwYzDl#1LH z#FSqy`*?MB(5Pp;m1iMFou6$@k8AtZhIyF9tK#(VduCuGKBi6vGo|hrX+q+!tf-9Nt_XFN!fwV%zif zxGsJW^1nRPuYa!1?3=>=e++TzaIUK8{?Hw(G9hxluPkG%L`==0clIc3d3dtqT3zANJoC^4ot)xW{{IT7DYxo*&!8b2agnANuF~-^P_;&c@%WskL6K zmoLArkCxGY`OV9?zPhzI@_Z#ce{&oS-*m)y8?mO=dP1A|oP{_mLLU}Gt3LF$;V2{R^Qs`%aB# z!a4og7$?W=L7y{fK7GmcS*`Dg{}8l(KGb=6xX&l~c{a|U+gePutH)l?)$f}xzFO4g z`FG~OpXhgcY>mH)S)3i>>k(haEc~Li+{1J6)T1uF9eek;wnwfhz8CzsA!s@wHpJTS z9=AMi$&NL*wto@bF0McZ72f#IxbtN8-IP`a#2kp||?Z_wiiZH8JM*P-`{vcM8w-UM}AZ z*V{szYhwy}{#}UACue#4x!}*b@a%9nKZSS;u_s2|YW3~%Y*$R-*~9TW^Yx|uP9dlH zTIvOT)BN7ZwZ7|(p+>zFo2H?2_-ViAdcQaHmVXz-m}fP5|GpW+KfR?%4*S)4VbJV) zy!#8Sd2)ArG3YX1v>X?kV|DzGcx%uiu6~HQGHCbSOrb|~iLc-93HkW7HfV6oPc!#e zJQQN7-7H-dbbKbh5dSO0Rp-udZum2`mLJaD6UXAz(C?c{a)h<8AR5LB}IuKkc6kv0Q&U4#ZdH*L>vBwXrq4_XlH7*ncQ!n!z~F2;rwrf@78C-_k`|WhW!h{li~gH)_ms6 z#-QQT!9TSf4t`BR=X3F{`TEBB^(FltAGB?V?Qusu9J^yn=-Vt#3>x*EPioOe_h#`- zoE|jmBTef=Z^XPf-X8RsT^@ln$@jua;x2a zb@-b-_8)5f^WgWfpxeG#h{to!>2d$bI4+#mAJ?Y^4_3uRaYgKik^jQhTjSLs_xD1~ zmxlS|>3uPa;h#FhQ{$PjG#_2gi~mGC6=#HAt%ux$zTmYO zbkH!o(4Q&ng==2OJq!IhJM6diI}7)CE&d0?yn7G$>pLf>8q5HFhhjy%GPVc(_S(lk z*Nd?~^vbi#LQc9}dk4M4e0w~^T^ZtT2(|M=jHlz&*d5OPV~lt0lda{`n}tw|>oJd0 zYqbqO%!v5IZ*y^E{`{7H55=C4hkxpDc5mzo`_1WFVqb_un|;2Iyq>}{v8?Ht#pz-8 zz8rL{h=uU{uDBx3jU(Z?9`M99zv$Q*bj{+a_;fh`(fExpi}s%%>Tpi)=%Sn64~1I4 z5MoV1zkNRpd(Dj=SnGp#M@$VV`$$3bE|H zKSm8hv$@+FJ7Z`Z&*+n%E_xS&e&5As!*ls~#gA*^CE@*eQ+WQ{F$)?_3Gd{c!8_+R zh5jFlS?mg0Zwh_CD|UoAaQ3!Pzr4-uzk&S`WpjZ@in^y65lH?$Fy6F$E3VLp*ThxF*z zEH=b*VLt8Qque|{D?F$7yWu%6)o;(zzN-1wP@m^!P+cF3bK>;i=lfz!4E??vG~FBT zn6Jky&_L_s@l?Dy?B&}Pacc0KucIdU_XTZo3_rZ*w+GMc-L~XfFVrTk`1b^@@{2dL zj=#%8*J97qx+}!syFSk1#^CEE;TaFl4|?=w%@|Dn;@S@<5=@826Qh)>4eScu<@jq$@UN9N5lam1ZM{rV;T(_z2da?XO* z-wOVSKl1a}cjrAJzxRO8?%xw)@{7(b@xB;!xaZl?koUQu=gIJFW&B3m5z9jScLr^G zA%}A`dH2oZZ6U@K^sCh#emGBqeys^JCWc;pC%ztHd8Ti)pAeVD`f%P1%l(b8&)Ij! zvGANv*M!`9Nsl?_7r$xot2R1Ezn^IByt-#`W_&w-5;w=Q;jH`j#d-7VaehbF8|L@c z_IqK7w>n&J33Y!nu8xa?XTJ=+zbm$d`)`krh4XI+{oFKDm?RUt&36n ziq>*2hFW<#V%^@F_q6;pPLAJ<@tu=nSMW`Y(O>7~=HJ;N=9S?-y&nh~`D7jrg!sQ3 z4~BU5(##8WEd-Bzmz|~Gj8EZ=Yilv|-;7K_*WtJ+=;q~L$7{o0y?ipvxLMg6YBnRc z2ECs1PA#8{&2d&73EIZ*Z@0cBUJNz85e=1%Yble_h!k!(W-sQnJ-q5hL7P)32uQR^m zbcug@h;>6auWp|13UTO@|6}328u&NfkEyl%{N(wuu>aDab<{cL|6g=ZAE($E&N)w) z@4~ouaDI;$BRM?8uWs$Yr^bp3HesWo{;CX*c|lHs%Ev*^HA&y=iD;q6&5@*Zo=uh$13hJJq8cU62O^gz6wA-+1iI}o2v&(8^Q z=x{xYhl3BUy<;zme;;bK&+p0M{pRKK!S7#&xw$L&^LRLaAYL8b58mzw-%;N%{Enrf zcL)7bECgT87%%+t?18XXPsJboyRY?m;e8ug&9QiI3%afKj@GM!o;~qgh`%wMSFio% zK;P-`UfD0_6m*{*u7}^g=P!>Z!Wr`*j{ehbhRwy(A|-%-sL@^b~W?USw4R-z822CF~plf?!!TsSag~jdBl?QlCYnaH^j2} zwLSLUA9SA+!%N?dFUH;Rs<2l-rjXMtsqdNicsQ@F9dT8db#r9T-^4!)_xO4&=-D66 ztPQiEKJ}`9Q``_VtL=n1Gt7IPJN?(@jU0{d*hn8H%4!1=a=5D zj**i$o|&~1!}&i8`R%t)Tz=ZSC5C?S)#aJK*ry)e+PfkiiV=fX>*v?2`rR0dp^l%2 z_f#zJC2yXH(Wjx`zC)pp=f=>s(0XS~F$=vuZ@%{LIU3B($R{qZ#r14o=nq`;^ZEID zJmbgzh_?nGXz)veGuAw@-V{^3B`yp4+*j8W`a;Y5gD*RSrn}G3Y|a|+trqecJ4 zIvC==Bh0sN&9RW*@87S5~58TrSI z$m^NE71n#>SZoM6z8Po4EDi?!QGeO4<3n8d zPVi2RKZ@H!>?`7dcr?U+V~8h~y>E%d*c6^0irYe-S-5YX8P&W09QLW1M{4xDbiaLX zooB!*snb?%!X4?W^PA3qFvhaUUHy*Bi7Rp`}OA>P^;^Wxo_#pm{I_0<~?9o&4 zyz7^j9fQ}ES!9@uwU=&hV*$LgTXY&)-?KaQ`4v%eMmn&MUQY@8XMJrdhPF7tR* zjQ$L*uI1NfHR{87Ulv<$3N;;wPlwsMKOPI;pK+f4kypH>{?EGpWtis^gXe1b>)0Cn zP`mr;Ux-ldZoU_Pr+Tdo)IVGsYYB(rF((Q;1;} z&JE|BnZlmG3w4iY%UX*=-}2zm6k9_te=qoXXS^uPmpIqNsP*C2>c1?+l2e?uu_bu< zOwc;^p5J=tAMeXo=6lpW`o(L{&znEfr=4+R4t?_NTk>lTogcj$_4%&QZYF;^f6fQr z+bM=`WBFrdj^3Oe>tk1p8MKcV)BK*b+V+QM z;_9jIfxPDLiMS*FJjTAYt=|||#DyWZdhA!j^ty- zcktA+TVodf{h(fJ_m_ohdp{n$lmFg$Aowb$c^jJUZ>@js(RX!-^`mfpYitYmz7t;$ z_3D>+a;ca1)*lF-&%zn?$;BtRFAe*7>hHzr^R<0L?|*N7S4^RvRk1OiiuLhyh;d4o zQMLUljt~3w&Uxp|HoeQ^aNHDh3_X7JQ-8$T5xybzJQ3ne!JF0LTAUl>xws^ppF*9B zL8Coyh;N4Hz7h9_e#pbWv*Lu9Lj0EnJ)Un1KFVkAdHMSJ_0+GL#!MY*?Vf(v@AvEw z%QuftSIw{Y^-G%^*Mz*hT!`U=bK>6+YVv)#IrzFYJQwG}kk4G2=eLLFTf(`KN6*D~ zE#IL~zx4}3ZQd1e*9IMnA%|GJGcVVMzXu--KJE|sXYuaPvyX;z=J~TB=Fo9xYjxA2 zKJW0(xGn6vH#Wt}SP|wx9`UXWdgc557+QH?Z4bZ98~yV0V2bw!k3SIGL+(SNc0Sw} z=f#Ml@Aj)%k7)cz{I8JTTu*Ub@LPY?HHGT~F^h43crm_nuFniw9}T|gk^JUmF}@e- zy(>l>Gr1-<#mKk4^*M1YRtJ52r{6xk)kE(A|2=p1yRmG3?cBa_MlNS~>>Qo?qh`8! z>b%~`V;-K5?eUp#R!#P(Z+P)c>(k9Zl8 z`<{zM1OLSmlddlZ55E$l*XncbXJHM`oHN_vofGS03bA>xjV-5lerT+fDlew|jj%%AsYbLkp#QD0GVJpXdY5?TdKQ-l{jTM6#yj*}ToT8J+A#X9 z7iu#T+r#;<#T4dB{)dBi`m3f3(7xe z7k36v05n!+=2E)Ra1IdwRHb}WQCj|Khqn?cv|-aG%LI9!FzyoE7}C)@St${cmh-|Ikk7%CLtIUkcCpAwK{4`{l65-vZa; z9KEj$9u2+Dt_V5J*P+l?GbILJhMwW4^E>0>@V8=hIP>DTGw2&n%3)L)PHEc z-qG(AuLwPSHcklVd0+`Q~=Lbzs#64k_*95Kl_fYVLM%UNH(V$UG zx%jIW&WL~Zd_DEc$NfRqzVL6Hogv=#5QB$54tvz?SKL|L7PQiJMaVTgUfKG}SQhUK zb0hw!ZJJ-pCC{TV=EAjlP7J>B!S$F8{_5WpyqAlg$6^-Ghy7}OORS2G@j%$`d+j;B z?(<%qvp5j6o)%)N*S{D1dLOoh*>L_)JRbJB7JCZ&^l2fSM(#{j<;;buAA$rWj|&91Oqc{ZfeG8)Gi73OUW; zEPfe$6yGe0J^JAL=3B+DkB2!>qn>>` z^tt~?Y!A!eOT`f8y<#CC8uroXTd*|-z=LNkt z#jE12L7zRJ39;74)4|Vogc=USH-eupj-~S;*JPvm4`tcvpyfX^2Vpo$=~8 z8s^ZwDd?c@_MqK&z`d)3FXD^kJ7EqUpTl40js5UzjkUppUE%x`^gSGpg?HFq_w?-KFw-~3XTyE{RO3l= z?(Uaf+UQ*twA=5RmMMl_XIF+iG}AeSYx~WGm}cC}m`#4YHhdfP{#bl4>|KawV$8_z zwti#K|Nn-#blYPt#q-Sf@(*L53 zy(RSVBVi8gpM^co&VL{8m*x$@L+1{K_riT%jQ5Z(Iz7{at3s@`A-DKb%;Je~t=fKa-WsbyuP=#r#<8$})Tf_%wJUhDDQNn=_)IK@e0yVO911hxZ{+?M z^X;AS9O~lFJ#j^-kB7AUSsWjK8T7v_t__-Q3;j|PT{H}TcC_Z*EW|%MWSUxG1)T^R)8J+{-cE z5ATfUd{K*cVr!_wv!8|MW=Y@og#7xWHaSlV_g)%2x-<0gP)s4F=YD6Q7S|6i`K9Rx zaaqtl3%-g?n|R~jLU*-35>JM@ogMuXdy2&nXLZmopFJ1OuOIB!T&jUDv#?(u^lkJ- z9OswE(EVRqk6zLt_Li`IDEK$#*FIj3_r-TazkU>>7sp!f4&JHdk)T7&ec|r|P3oud zh8X!>(`Uxq6W_J<%HX+ohL_idTx0+E?);zKQv;8uQ0LHlZfkX^XA1e~9M|?9j@#nf zA&-8!c5W8-mN^;oJ9m1_!gpE> z`}t?TId#ofy`6==k3D8;TPy^>?3;q`@{E0BeqP(XQ-e+(O|jHBK6!Rl(D%A{XNa>l zW5RxVV!W-jSZBs!*#B^-MV;o<@2xQld!48GiMS`^<>m01=HCc9?ub)(5TM3!eD9wIasM$a^?$3Gds?7_w2UV6!gjKJ@{3;GyY2)jj>N%;^^HJJn_zYXU070gZuQ`XFo6e4H8E^ ze)q+g$Kj3oJaXGAH!IyLA>o509ljma6uru^uZaMW@&c}m3 z+CLwBSQFyu%}wFin__j)^mNc*{mnQUW>b8+?+!J%7Do^DgqDk93VwQiS8NM&v^m5) zC7g5L+-!=GPrdp_zwhdkp*HjIg_yge{%F4D)#t$)_lTB-cy*i+ za)|N0_<3A8zqZyhwei{Y^I@+uuD!eByZ8UIVfR6Q*5#e|=c*KZC}_Ku4#MD>7#X}k z=pAQ`Cc+RJc}TJ?!6KdL082)3)5(q6$;)ByMu=EP??=zwBZ-4 zAP`a+k&2ZVhVNm_msZcGlhO0iYr2F_53`x#H!FY9?)-I?0rRy??-&O&WlS!J@Wix zyf3_)#lAQka`=7sT~$uLOwm2!X7#07~hR~I5qs8*%ecKJaz;!5dXN?9QN?(gjnjCnx-&+ z{~YGyKwKMJ=kUXspT^#pLN4C%?6jcYx#7h{t)HIrP*+~+kr`MFfAiF+2D9*$5C`tX zdLhJheI)E1c{j8cYv|?ig+b>RLJV5ycyC-D_M1z4{zvfVaF}0t{vo`hQ?6O83|e-E zJ@?0z@ss(zUdp{b_<_A)ufHGLV?~%fF;0pP&+oT%y(Hcij|Dw+>xuJfTNbl8CY(2q zQ`oaL=v23Rz0lu}hV$P2hoFBJn}Xh<&Aq(p^=#;$T8rl_KRy+7spp08{fzHyAoy}I=@$|c;n2}dgK#}-+SZum_i*N2|2~n2f1$z->SN3 zzdz&=dkXuH3in?RzT6w0pBC!5B>1g|UkH2EM}xUAH><-reb^NC(DZzad2wFu!=aDM zV&t7#kNO^KE&qw3_Zx$*m&6qIErcHJjVb6`6?~O{%oaVo<+c152R-uIzhQnqbrpBa z-TAE-Pg!y<`*yp+aS+5N5%_~3Y(>wL>*>|ud)ax5n*N5l#>Jq~_ zdcPMB2W`CY{H}N)ej3MxyqiNjvnbd2M%B)jUBSZ9rx}hWWjDe{VRiX0f-&6l-G4^oLrnh}VSgN<7*Y!nxHU-}rC9 zyIY?h&WL?u$UnuX`(v&7IeO~+m=*EtdotuY9CXWncJSJJ`sukn^w8W*p$=Dj#`mU= z!`qj(mdkv2z9;l^S*ZCPaUhodz6@`V>bZW&G0xC+QrsG5O`mqe!ugM0!81aUmu5#<~#^9xR z&juf6p$GicL;GnNamFKEyLKe0nlGbJlDxg!r@I!9(GlSmyIL zLY?}hCu%%0^uV)`^R=xvhi_0k?`QFexH)+7Cm|kvUku;J`2NmoP0wB7{1msvvY>yQ zbB6!_6n+cTKE+w#yg77Uy;GPwzhgUN7G`#QhvvJLb#J@AX8>7d*r-QLQR>il%Jl_!ZYz_S|d$jt!F%z^Mhzo=Fcqn{#JLmUm zxINVCz5CyYJ)w8oLJaQ@#?Qk0Q$vr&%$?ABedxb$;x*x&SzI~4=bL`pr*3;54bR2e z5Omoi-l6zOye`zGZ{q6}O&YBoyv*Nk%`{KOyEYz?m)Fb}*{rhNZxqmC{7w>OFFJ~dg zy}?)K={-O0k1NA|@Az|M&@z787F$n2*Zxq;ns8=MYzVbDW6tFF9sB$K*)YRX(BOO7 z8#lz^Fi-aHiU(q0elIqSgT9?!x)XK563PnZ!k%;MGI z+aCR#T6=d~sCRSRF~7=V*2Lc$pNUVzuf_GTGWbBp(p>K4<)_%r5B+DgJ|py1PBons z_Uq^Ip@+*ut@$*<8JmUoq?EiAS zKX{{W9}ef8c`VihKg{0W1kGZb8=jpO_CFHh9vhot%!m0=tG+w?`LO@U`Moo5i+f^< zmxQ`63g?_zi09+d;H{ZCCbqua{8+~y7WT=08$Tx*}p4l^EzPYs=;_i!$p$^YK7;>s{To1KADfqu7ZVSIr_Ix|^ zk4Ns+E8pHYJ7}e6ihqs+p_e}jy;~9bqMuiUXSACo@thT77HWKZTpMP<-YLvIANA|P zP@8Z3?x4p!jGogem)cg%pW81szpsvwpVnuC4tqwA-Ru9hI5M`z+VC4O=EMF6LwF zSY}1dr-$!nSNOd=E7U~C&?ct7(KUsd_~f3Z;hX)lpo2ejJQw<=?!7U^S)u-8VtKqP zo{F*0Idgt-=+m-LAANelKlkcV%dH_EJ-#pBt@kV9?r@HuQ~Z4_#`+lN<#RuUxm3G% zPsSVKVEiopDV$Z)p5O@&4}_VPUru}F=e6gD;?ptw)NAj3zvDblJ(pJ;|7P&}VZAxF z1npC73;Q09PsC;MbetBn@Pr3yp?7`I?%rHD>-T(rh(E@C3zN6oB zvwc&zzbeH2+5BFfgE5OO!M9l~i!mRxnKykCpQpnwUOp2v@<$)l>AOb~kDT6{le6RA`P#R{ z!_n*Y^XK21KU>yyQWX>b)jB8}IG+ zUY*y*=8ywphU`_77&pb%5bIZC3Vz=ivsfJ$h41B|pr3!Ah?_$!Ifl=AA-{Y3pNKDp z_`G=}_~DFa|1s>R`z0~@{q5Fb@1I}&mWpW~FQ?!Y?HlKq^#|kPxH0%C$H90!)Uh|F z&_}Ts!XEeAL%;n^G!xF>9`fE6`{L%HcX#lZma~GFzJF_;J{9ka@!uyqTKj(Oe?_bd z_4#t>);`ZRguQ$@7-s05@&2$+-RinN zoIN7$4x0XJc*eWs;hFb83uncqZAEN}&&1fT&QAxgcZL1D+ZHs_x+y%TbqYGfdop-; zI9A1oZ@(V#Zz1@n9`*TN-Fx?J=-JAk!EC%Vyq8NoJT~VSh4^%cb8U!0!{y<*duI;C z6m+_(O&#{=t?R!HH5?b_;5*^Gcj`YFBOZOUUJ^$IeWwN;YvOQ-rALp&Tf&+3p^hoM zHxFVu@AuAkH1he5>9pTIJyiEM!=8okP7dDkb39vY&7XT?XP8yrn;y#dQ1FW%YCS#p zwk#eF+CC7zUAb0;T=#_U%pB0GKjPctIlZHgdBTfL-0#qJy-kD;k|fMh$B8Nd*kewVtvrXvom8B$A|f_cSWd2{GspLt?64A zBj3}l)pTy~!24eb&khDHYM@tL*7oS*sljV?EyO>C93wVuYI-2}d^qS4V-~B!8GX~o zC*n`SGd*=)ezlI=Q)_)t=i9^kS@@mt?Bw9tVmuPG@^aM76PnD>>tk1lFXzy!F6SQ) zTJ`(k;Ln;6a~7k{vsw@DUfY_Elj6)!FHhtY|CK?HwK(3dj6aXxoZr(jW_oIEPSmO2 zV$nMbJ^F5#W#9NyaZ{Kld-jBXOYDk`u`J~Cp2p?DFP_Z8vuoy8y;A>KA@A1UyYuqu z6a8WxAL{XYD;NFd&-+cG-YLEk_k~*cLF1!ge%6HNGZ9YB;GZ*Jk5%!eScui(nYi@G$zPgZ9dxe@@y>`*iy7v*`rjR5tN({_X4prY zTzi9tvqN5c-w;0t{W&iD_N>nZGUmOk~}8fIQDddp!>t<@xj9@A`|lW`6%{S8>GM9Xz-r^!jkf zyCRN?q2GD^;+dRN$Z7sZ4LmSgOErnLIYxeQ*T&s(Tl_|dsb>ALUmW}280y>}`{VlH zCEc$J`}M`_+!&jJrdbTXtogeu>{t8p*ci(~KC|Nf(EMJ0amM~_^LOTM7OO)qZ;k(5 zzxw@+ydik=SlBbJVyMY)l^o{;AI87W-_iO#F$+EVe%P;0Iu>FvP7C_p7yIJo`Te@C zcgF|j_v^ckS#f^cPpx+ZZM%a$@%aA1xHr6;g?dK}^^Jbh!B26AUp!PJT{MZoD;|r_ zlhGSK?+h{Y^pY@d?&;hUw8^diL$7#p`@X#&XZZEb(9@R(E&QOtcV!=)C&oA8(eTbQ zInDd{7Uh>m9o{d*sAX!sGENVBMla<(E;h$A;ePbfS^4$(&iFy_gU0_F^87eX3m)$e z=k0gys<3}mY!5o^@$TA? z=0e|nUsH(tVwkH-gEsl!8P4mU8uV~e3_W7dtA6>$TtD7=3h(Xpdu2Vv#i0gXJsitp zecTd$$K`YN-nYCf_&n-WA1_BO8|LqMun_v?`=^(#6GDAva&6of=87)YyX@ns{)& zKC`QQXN4Z=m)!Q=8lH(g#n9;9yj&jgFUE=(zeW6%-#+iBI1uU(L;N#h-Ta=Pvsl_6 z`9Bi($6cXje=E$N+RfCV`17Ej?`Ma&?hl8YqyIz4Z9V&3=+CLKE9|H1??Rj@&JVrV z6STZDUKVEZwD@VLL!C5IK-;TAj8)-V6Ne{!kn?Nt^7w;z zQ#ku{=ph|y|IMIZ>`UTj^ZT!KHGe#j%Z%`hmJ7nO3qwpZI?dOMUBx>u=uzK$gC^hE zgCYOM`Snv>?dO~Pd*}D|d@*Jr$3mE;WufNR2mN=4^Pa5^_1mld^>I&3A-AXO9Zs`E$XSJt5Zk9{uJ#6?~Ohyf z-_}~}(IYVq$7^GA@IqZ{!Wp&rR;_8<5PUVy2V+yvGxE82M*PJ%J$8ii_l5ZU+80*@ zkH+uj$RW>(^LJ`{b9^v{r?b}be<9?%H+XqW(6&7G#?~+!=7Od%)8A>mET*8Ho?nW) zgFesn(!L|-_s*UgdbNB0%sJ1dP`^1-gY!fG)cR|&Hb#AXrt8MgAJ2zp=I^3d2z~J0 zJKr2%|tYzC7k|JU_m*Z;&6}n}42uaegoV z1#y0?h%;iG6_YM`cg0P?JLm5T@%+B*h?D2{OV4_LQh4TSMyBA4tD4j}3%xowMxF9H z|7Wp2crwNQ;FGoYn`3EC8h!8Myt6#)+dDJYH^E8a_L>%80O>)@thw((Hk1rpJ!}I$`yWSSd=Jzz& z^SSx`QZKBTDGcW_JCyFEO!=JS#B^`5R`{QD69gCU;1#|BRh#}rF*(&{@O zJskZy)UzvM3YzuyUGcp*BYabI?hSQL;p|xR_YJWSe>Q(k$L^qYc=l9ldcPL*IyVct zoxLcgaIbf?k3IWZ^LG}P#_jQJs7Jk@4E?h2!y*2ggZ?S(+ZnTXEFO(9hvM8HL+9{k z)-zg0|L$o`&lDR&PyL?h`NJ`V_q;e5dNyL8yyX7w*3M2bYW+%U-j8SdTW=5kZ4UFc zG&XN;4n5H?o`@yJH{x%CM-RrY1wZsd&sK*1@j;xA1@FDPB={f~jdulK&j>RxX77g9 zBOaY+hnRjN^~vv$IP`og=wBcF(64istPi%P?@;`k_;Jvso)tld_s-gLQXC&*tA7f5 z&k8!%g|q7X!vnS;C&NE)< zfpgBtGoIhwTCUT=Sz7E9&)+xu#W9aBjW@)>@ZK|Lrw~)`&C2Pq5N3e(o5Oy!x%VxM z`%_!*is6Brdi>dVCd9up?6+qM^_(9^#-*_=yyxN0aArm5t(xf9GkNs-@)-H$(=+|r z5=-k_>ZSem@>+hqq|2<&!m~$0E+^c6#(E2a&%J5t+ z^}cF;FTUTBt72aqjMKt-TJH{eP7l3S_Z6`v=%+~^)(78cI~>mcIA$TQdhdzNaa4FO zuKS(yd%ENlOD)46-plPb&7S`fJlq{id&&r3KmLCa$B(|&P0tkE+;klTC*5R3bG|Im` zd;^DLV~9g9OYF!@kuMfHZGG^iXR)cTC`9txe7&;$m?HsN51uyygP&^Uz&q7T9 zwz@v-rFj-N1wGs2$>1Nq^>pl|Ne?##ZhcqhfzLoeleF!bGT5&!na6d#M7 zaa`;Vzdc)GUA#2b1V8AxKh6np)j0(py)pY7SGB2`7Ml67YkoC<$Hdmy z5`IU#8+r8Suj8+R{!zF5?!~?&`1APuYLB?r#!G@P=Y^Q+5%cMIUx;&I3}5Bm7`KP| z{G07?s7cH*JNhCHAH}iOGka*Ue^01O-aCU{eVE1X#FfD_`!<9#ST(;N^Qb3$J}T6^ zH&z7gCxqNjg#5f6-=k)?z@6Fy%;?lT3JlEqb;l2L6H)vTpAM3k6CHQuAd^ha>PMjWcxj!S+yAXauY4!WC zDrUhu9_azk?g=%BeQzwE-#e#P^~{2&SHy9#In?pv*dAwxeK*E+p*Au7_IWOcGxVJm z=3`lG4Z7`>Z+}do7wWQymug-J`^VYyTdxcr?F@6{`x1-i&xSf_7W>+mLTq`|FUNCX zhWJ9Cy;I03)~*;cHno0ye$P93#W@gP3g6kPI57@~c(b7W@^F7uJQB{#;^pzyI27h} z7T%2>iRszK_;}FAlT(8S=5iM9eGiw!ILli-Tpz;^Yd-m2d3IXJ=e-zy55%B}UiW<9 z^Y6rcaYN8yuC~YPwx1 zo$~Asb?uFnLErJ=oVna$)PH)YX$tq&N5|dsdmgA$ z{MF&?&}fhKERKkaoJ4-T04JxoE6^N&+oC{Oo_EN zyw@Ll9t#>ziEquX>$?73$l>|^`0X%r`gvW@FXr+PXHAHso+&(2|H(0nrM=lxo08Ym>Kob%zK{t z?VIAZaF+gKf~Z-U>er$aBy18=+=Ii}V$T^c(>Kg1e-t6_6E_py-M+RW-Ff1IaRo&zxj-TF52 z(6Tn@-xBuCf|ifRt>JsWKb$=-oS%XQzc-8F9WQ3#>>r2U2imuVK0Xul{D<({B-cH` zW6$+Njs9kNr#EKwfuK*^;gjoy^Jk++AL#z-I3tE%a?vmg=lRD|dZzG<{s%+u6>(lT zZ`RbPE;{V}L|hr?1kcAT^L=mV$#Wr=x#I6fgI;qX?-Oxd+!5x&o}uZQ)(1muxz%Q_ zUlm^q+IV$&d^vc0RlGkQ3BJl@CWpSAt$C=A^8aPn!|&rlKi?fcj4ML?X?|6Y^ZfT6 zd@?qM{_x+kH-^}>I_nHS)%C7e7S8iz%-wri%dgjb(gVGjLfu<~#*c+MRtBAN+!gYS zT;FKTmkn`CIJYNgd^V1W*Tpy|ww`!D`r(^#@9ft@F7FP9XD^L08)~(eX1%7*oP8-y z4Z5bFLGRug_s6LH>DK%>BWN4X*SDU6Pp)!Y5d2h^xKD+1G|{myZVvHI4E2){d{R(&wbTVf&1qciqD8P|n6>9{I3#T0s_c0KfdZyX+i+4x0V6f~I86XuA;N9W!de-Prm zJpbcJOQ#eApM~#4PTNcf@;wCUMkeZuOft z_r!OC|IYur&<`_UzkaDxfB7nx_xd}0`=i#L(y_f%Rycm3QMn2DZ&)bLMlOg}mH1a;*v)>4MnI7(qCxiaQxGA=UJ?rOJ`8{)fO`I0;|8nSyoO@z6UytuYy`DQylUZFCLzf)R zt_r?cduIPa%))v78*{g;wK#UeUEI#PD z*k^{C#u*x%b?EDnX=F7?Q# z)>-^bh~+&0_`^59IXma~=G>Vb@xNmHj?7w%Gqmq(ZH{Q4V)*E+XZqxsdv){bhWWj@ z8gVaaJ!)Ut@9TU1`fz4-=(%T8j9h=)T8)dr4}XKi{#NKYt$g(Edm+B>&zW`eduQp} z8&jBfTIm+Ubyd7AoTtV4t-GRNvaHsrPTOrOP|X%?5x*Yxa)*TfW;g&yd~ z=!EQA)-!;GYUQM$wqx!HdJhOjjzjnTM&$}_NQ)?c4D(pWyoV_K? z-9LukkSS>J+s8M4&`Qs~xH!aCtNAczJos=d&H07yXEACNlV&-O3$^*ZdMt+irF!Mx z8!JNmRiPGF{TZ_@r!_6UE%UZ~e*MF)heLn%hrMS7|IN$hu>aE`ragBAjl-*1YjHiZ zrrW*s>M*nX@toGHLp?+P@vV8i7(DabJUJ&H9nR6=yP1VpN5-?EcDlzL+Rw*h=Fi2P zg;-{i?r+BP;oK=P#hr0;%wi!v65bEb<^Syb**`3K=etmk{w>uY&(krBZ9&JILVfgk zZ?4Rb?{^kzc_=)$cWM5U=l5#=mH2!-6=#Havyfx>Ev|VG!*iH{PsG7^BEA|IhT7M~ z|ju9)?H0#m9qhdxD2AgnVjU9nNkI-{kHP*M1r<2sL>xzZkPPE!^|t zhjGOGUS3|@8~+mG@ZR}_cx(7A+ZKKs<=7R@%|iVD5)a2o;XA)8UKjR!Kg8tQVwlt8 zLLcZ+|18#rSS#Z-;aj>T)T*8-+}md@o_VoP{r81<`pm0G!}l-Wy0~?IFP?L9(dDeG zxqmX8FUK^(8tmU2PsfN!=PdN~&%(VK@t%ittPbbB;~#zc zN{9EJ-xFdCA6B$JCq58j{W#>ee|+0NZ_N*y?+?1hJZxo; z)gs1?G5kNF^~1q~Da7+^n7d+KtPSy;b-yLlZohNR92es0)ne=n+W7cD41aw8zHjID&Y!=wtGcFe)?Tsg zCR^?eTQbus@vp)!?_BY9BLcKBpzmyi+GX zelzS_5i~fza=sqE$mjjn;?nuM*LQtB?3er8;MXkZ@m(DZImG4TLhK23JM-??6juaK zwuE?_!o#pZ%j&amKuU zq4jNXI7V&ukG*_$e?ic!rptm~qlZ)LSBEPdo_nu%X8+`%OMj;rdibUHUy3Q59sPID z2Y);H=XYop>NpT;=F67Y7<*$1@5HC!GjV%3FV+;!yT3lf+!c3(yh}Y&zZ|?$x4883 zNi6rgq508JgC05K`OPsr+|YV_hf`~3o{V1vkIo74^z-v^Rm{S-M!$Mq8noE&ehTOP z9dtj=uWfy4{2%d#_(8lX_(=DPcqV+SL%*1Mvp?kI&1}AwL(TM$+T=5<%j1Y}FWxT& z9cx0av*W=KgN_&Cy7)*e#2>^1;co(sm(ACFSQ*QLhr44Ia_~o9G5<1#$9~WDhWeZv zT6ukb(4)tCWH#RyV*FarZ=YE7&~+eY;rTi7wxHQOZ;C0rlW$AVE8Y`vFoqr;h@~gq z55H)5Cg^%P)OKqOUE+E-zIEq@7vgM>%`xV~%;=|FPsZ?NLu>WPXD#OGu{L}+H^q2Q zgShJ28QzlF5RzAAj1W6ih!8T@}F zhHuXM&h(2Hw0%0{qW`VonVQ`1h--s~Jl-4h`<`!)QNOr6+!CjS8Su?`?t7X-9lWM- z^!s4zG4Fa#llNv|U6_XhF^h+TU)HC_ov|h4dMaKP*T=RvGU(SgvvWt-cS7*)J0b4j z`E_W}3*Ur(ZVC6F33Xl_w0%FO;DZ?U$jfv3?ujQu{a41B;oPb)Glzo~dw0i!^Yxf3 zJv}Grzct<$^0?=x`R1Qq@pOMY6lz|GcL%)(W9%2>^x*4a+#WQU_bL2t$w50`AB{~h z&fDi4&FWnr-pO-vc;+`}ZSa>j^zzF6im>;-kZ1V)zuzzG9bJ2ZpT41MLJa5L5pNGV z%;o5(x$=yz&-hKS7Uw_=zoyn>&*Z@`-`1 z?elwH>HB@5Hhs`v&!>=IU1B~O?+dZN6hpT>W=P*}jLl*HH)CVSH-&w!ephJK2R=PM zzrNU2K4+c^dt6t?YlD8Co;zQw!Jhr`nwWy$3!xwP#A3WNynlI^NoT~mAe_B04urgP z^MYT_(|l*lLfoU`$v70B4e`t*U-VUeXY7^xmY`p+)hfrH;IUk4k;@r-wuE!e&@>D0 zXgxK&lV?qw7W`7{6uuAde?4Y#Q+QA77vhAtG|b*oeflf*&?C6iSfOyXnkC`?g+hF6Kb`lL+|)E>ZNCI z&`Zy2Lay_I_F3@Yep1+FM z$7e$?UJ}=bci)UVLu_8D(f#n@jjj2m7W!8PuP_UG)`xo6#rPeSdvn|rzDs#|^$#H) z{g1~K^779f*W+Re^_XL^`6iFO?~R|wXXA`;&Yp!($AO@e2IsfMvGe<H5%*XT!OxVqYws_tUyx>c9M##4p9NaGplaXb92!Azk(+3oi{U6xF56mT%0&-q(IzHf)~Q_N!Yjklhk5n}UHJ)ZII(iq?G-qt+v+hPyR zG)(b}I2iJa?d(T_zw&!F1^?aKe|5Y+*2Tv7$FScV{b|smue_A!>3BGv4|NR?u=P1^^+D_<#6U3A>Kl)3O!nk z^;V%!{_|3NsfRx#EG&HpC88@yZ*YCJz~3Nc3A zTU*;N_bk-+mm&WN;hpn-hpvtH2HjK8XYSt@bWcHt{Y!JK?4H*j3VRpg?eV3!Y`(ss zE6=A8W7KncYxRwOJ9{AH-XA++Q_SLyFh}(9#+h00M~-v&K2J{$YOZ_7lUV0s9{B15n@~0^Bb`z=%JTBIj;)6;>CwUA82#` zy|^y)c+?_}`cH~m!wlRR^1mtMr^oLrKVBc=eImXY&fEKwP{SKTe^!UM>w>M`~5S*|6VUbM)D` zDa5}hXdmDB)cUrd#rp??-mlK@#oZgDPW`YxCd|ow!NXZNw=&eiH}S?Si9yeZL$?~# zVtrS5PnYYM0dwH~@tA`4pU2fP^zLhI9^H>wJ9>UE-|%!tYkrQ}`Q*J>;*+y{FeiE? z-uOK+Bl5`a+x<^5-mh;huIEFytJ?O49T~9j*c|kHFJ^H<*yH)OP>X&)9?q-V{gL6fPmbZ)m^VEZ z1AP8Sm_L{axiwuf9>VqJVN)UiMGT`c~n^-UoM4PuXckF?e!UM$4>LN2H^TD` zL8JSNVu~$ctv>JMcB?&;F|w}(7C;^ZZ3xsD4y^4r`! z9Olhc{$s-Lr+ib;GjiRt(t6~VmwvxvLx+3$#5yJD@VjE} z*9ZS*ORgVp{mr;9?B~-_A^)n_5aKy|VK_g9z5L>n_lxmx?3!N>cU2>8-m7KIo>`-J ziig6?S&R9?e0@b%-`_7{&HR}&&hp6LVteFwuRjOF-2EWvr}b?iKkr6aS*AAO#UzK!`@?3tYUHpTjo%XK`vt@R!8 zjW{pdk684{w>y3%Xt*qXFMLz{xGMC23c2jpJGJn8Rd_G&B_XEVD?&c|#gNmP4Ke&! z*7_B3AfAm=rOKT9*cR36Fq~pTiyBU$6H&b|~o-yz4#d{>=nZ*>=3!#5>sbv=S zn?1c<8}yIfKiyg#@_!{x3-6uR6E&X`{1JyP^VyEqw9O(Q{nxwAr>Fpi=~Dq;^yE3fA#$1K{I`F(GEzCbbc~6 z#T3rz|LQsGx;je(ulB|iwAjnvUBL^nt_gK{|JZ!Z6CUje`nQBV>%%=Q_N$RM-r2h^ zUKuo4F9Z#GpxzbX|J(Wf*coqJvi4q2ozwf*#4PmSyP;mb$TfW4-C8d7s>NPD9}N2* z3bVT`w#3`Q@4g)PHv=OV@8}j!?czJ9jvaAwJQX(u?OTJUCqn;d zdspzpSzg*RV&2)>yD3f!^@?Lw?0-i*9lkU3C-$?US7MDiJpX3U|NWR^d>_}hrsE6o zs(62RcS$V91tGQ>aehzuJvcFF*%-9ZV^(-#eQel!f9RcO?hnMMU0=+UZ^rvo;rz<5 z&pWxM@La9D9Q~u`$`HqSy4AidZVA1@MR8B)jeYt@gT4GZK6Zq7_B|Odo8R+pODCyY+D) zj`Qm9?G2B;pT))D{nAjMx(ELNC>|J=A%9(C+tW3iI*dpwA3!ify6iJl9uqsgCDDE@$Xe=M;2r zj$aS4uL`-nADX-u>(&_G{>81;FZY;%y{(td(w}y(U+O$Q%#HKbo?SD)s`>0t>(J|W zU{%mNJf(v!wK;!g@a2-=&Dxmap-{^$;hXqjoE!A|%`vz3@@vG_lS_k+J7Xb^ido3@ zy>Nbg@NpK-yMI%7CYHIO=Z-iK`l9A7;r#o9M?aX~JAXK4@#6eyUUtPr@tT;zKH7H& zPkakc1yBAtmWB9qm{aw9G-%`LsFNN&qiq)YBj57a7<7;PN49=t@Ox*dmp8L8H)cS+ zBR22c%m1z5|I;DgBS9O+O#G;|I>p}?XU1b;|G3I0-ji`%h|k|+V@J$FePdSj%AE0T zimQSL>J{UdSQ)p6JnB&INx?tgqB)@FoY)_Fa98k${#l$F_OA}#i{8+1b=XI@_i{M1 zVSaC){bpikEXMla$u*%C`u;GU2zu;$Rs7qqSG?^ZzF74Baa2!8 z@pybaz8_-CeJHL7@rIXEYkt$N4&R>lOTR(yc{l~_&xgIIhUdFO9v-fU+e0pWIUG|s z=Xdp%5PNUDJ7|7nex>pFP>cFb4l&;n^7$V4VV1^w_q_D}C-duNUHu*N%#5rG^|>A! z`ZkMw@uATFhvLW(Z+(n2?&Uf&#PeL;)~>ww9j*;p?e$zt_nYI5F$JGx}GAoV<0<1Nrzng=gyed6+F4Xt_4T(&Lln*X>;| z3I86F+u5_@K!{1RIJEw|u;-JZCb2ifli~T1G3ua?PMY=Gez842I?ju)#}uOmURawA zx%Jv?jI(sjLSFCwB<%k{+#dSP%Q25?Iuz#Us`x>e-(}(N#ceVALnF@)2F>b!Hh6kZ z=s86*4tBJiVuW6PXs^5_r&j^Q>>T7n2DQOe<|eU_3>d=e;8kl zg|Po~LEl$G40C;8jyd!#$*o@fzB8tfhu=ekvwZc;oXKhb6wZq23=cO2zxKrFr+0cY zg&enrK72e51}(F2o?bI)-z(<#e3)WasC{+#uEks#zdc{S*!3^sx!~`;LCcrtYw^{~ zH|ICULU^v$hr;)KDBcoc+bhpAp-%eDqcdwle6vKOcs~mJpA7r?p*Lc_J)9r=SGT59 z3_glG{2hKS_KXJa_)kA?X7lyAOYYBUy)opa$M-HDfAwq%_kP>t6xW=OD-F&rgtN~1 zw(MCRV#~if?7J}Rv!2BbadfCb{wd@WcU|y>A7hT}c{0R&G-%oxX3MirhUdqH8Jyyp zP|NVg@1}Pn=l<50hFE)IL)a_l@Z*fu&e`Ma&^peHbL#RP>Gc$Rx5xeFcqpC-`^?9v zho9E=sKejADV#G?e;Yeucyg%qJK~Mu+&IgNjbVP|{?Bn{JRH1qp1 zDb%Q5I_-B(KOYFs^z*4WCZ;$o^l@#R7vf(YexICI$H?Jco^3%B4SV9**b@92-^(4X z)g!+i@RlDh1if-@3R+$nuZxjS4zcteQ_y}}$fwUY#MTh^<8d(Pp!eyJTfeRid2b2v zomcyXVej!l%iZBU?@x^DV_%4)uU`$CKCSN~rfH1d31EQI>#QJWgPGY5KUu3fjq z@X0&-r%*c`ay}K#zZl-XA$~V_dTWgN9e(kHb~E~XjJnLqs@NW z#CzgXaa4@GzKeyBQ=DnOre#@}1@HK2X7q~oZ^wb4i$BMNcf6r#sYcr5ygbx9=K1ei z9~ZL_-@G3Tvp4STw@(iKej?JVFw z)51GvwuE?lL+||iQ9Si*iAO>&{vdcVzOTjB5yv*v3Pq-@aoQ(g_z5O-d_$H#gkucp7ZM?A@*0pdm2{7hWWj{X5XGCVrOiR&GF9A zvsv67G+i8G>KYVZ`(P()i=p8)jR*KMVb_eq-2g4t!spof{Vhoo|l!hxoMd z;xA&H|6FS|*t-~hKgDwY?NG-T!uj=~r=G71@m`2ukN3s0@O)+1XFYt-ANS_uvoZ3C zsSkVN*|xr#A`xZeu7%#nJ1qpuCW30q@roEjU07ve3| z!vpo)9;b!(Y8LDKppEV+%!PLgF@<+a|+;{xay@AN&yS zPhyx|HT-_;2fY_9-Bj5bg9Aq#o&>BvoLr1 zN5fS?n;O0s_B$^=Px$dq!B6YEf^O?&VgJs!HspRR#1`*EaX5VY|cpI1qZk>yO73p{5mKubR9Q+gx~Ow#Ad{ zlDI4M;JxvUcr-=~-@H6KLp-_EaCOMNR3n}4*N2|?HpST-e(z_Yp7EP4pV}V`UXT7B zYWa;C)V9>asrzN|(h&cj z!raiPr{WwDUk@{>_x6Z61wA}d%M?G1{}w-r4Pmdk=@-jh&!$l8fl!0<@~i#!ke`R* z+w*Mj%6Iai5JN1zw)f+)DeRraLTn3~{U+MK7&Peq?W^RV#rOWUOgG=Ge19w8-fs|bjb$#fg+J6#soEdw< zyqp^UfBubmynX)Oel^Kw|8?>Hknia5Tx{|5n{NxDU;ll6J=m2Nbxc9y`C&Hs&eONY z<8eor$)ARN^6SgiSQ~nORq%sne4GW(?LRv_b8bWI4bM&w?^g#O_3eMg?r>HO_RvO` zJ?rMkNxNA#8^dGg)cxBbpBUb44F1t^LFngy3cWie7Gr(LVZS);c?mNy@~F`q-Wk6Y z&hL*m#F`jA{=L>Tyb!$S=c_{OrGA(fy_-TV^YO339=&^Yd?&n9@7OEsi4kH6Ic5-4)KB6VA=zwBSGOkHz8n{VTi5O|$hBa=ZV>_)7R*#{QqQp2a0$-uS1# z>J;DKjQ7N+=J)z0J|DM-b8n6F!hXI#5_0-3w#?VFuFmnqOzP*|@m#1^o$`yLuWA)ds;gY7QeyhV8Gx>XM15V4q+oglCxzq z$J&G&;|z^M(A1VXSfjYwR>4i-m|9s(!7iLLXi@?##|@@z_+=NR+^lS?xWsKa5iFeQ ziXKs;{&k*@ncrvT8t44+obTuMee-(1Kff!X-%YVQZj9T5Z|i4=I9J5TfAredTH6zR zEj=&a*N1xZ&+qnlI2J5b{X5T6OLu8a}?@y45C^ppCDz<6zKnoEPWzaGox=2W_UHr~WX%GM0z_e0Pld`uS+k%lLu$SB`A5 zaX6fRWd0q$F=`}_aaOM8`(o5XJe%ihbQRCuC0`oI?TMhHyK=Tp4}B+&Da4>Y);wWWIj{`A_XG0FJkFox)#%gKJdA4YNN=&gl_>kxM zu`1}eBE;+b`7wo@d}%uJqMf|mVgI~vPVDAWIPW*ud=`FZPl^wRvl~J_Y>CxxfF62x zoEp|n2>0pr)o}jaP!sq4UK|O&ti3b77Jdg-$MSIBnQsQaZ0Vdr$7lXH$GB-Wun|_hV!5!{!ux@TUeV zVqLJUX1=slXLWLq4Zl4dF}tS+U(WgJ>F>?Q^3^-)=`7vFb106*sc}c}Y0W;nwA>QEAA0M;;9p#S8*-2j zf9k-t{SCqA6mJPVL?`iI5#E!t?!P$LbIzM(>;8B=^!CBHFLuPx`;QyXLXV02grNPl z;Q#9}3qHiJ$Jm|1Ikgqv=)a+_IQPU9V)bqx33tRg@^HqxxiWq)ot@Q3qhI-76_>`!Fh4!?<^K7c zzV5L}8@+FhJ^wCSA8hUp_dgydg(JU6h{gH` zf`55gxAs_A+Z^)ztDwa{jsG6U}dT-v8bN2>D)hrxW%ZqX7QpB zA77^hyW3-3=pV5R{YU>gyEV4OZNWC*#w+7%VeR%%=j-F~I5B8@Mw}b7@HVFK`^3KA z(%%X(of6``C1&yBctczi?8`yFP9aX(@F{P4_^qOa^`V#C)!^3P@49$dsNunQb9fJO zH(rQQGv~#=Da5rl4un|TSJP34q2;pH==H^TWIm>mxWzusRe);3)tHGB% zse(~nleAHC)8KAU2t`8R^S2jeee)qK7*AAQ0WedWv!zf;ITp4Q~J5PXVdU(7-e zIHQmG-8G-v-x&PMQH<<~%l!?(?kwmy`t7e9Px1G$^c??u{ZZT!eCZ#xl$RKGhjZeW z)6d0EtKwHnaeONHk&Bwi*_{W% znm+OF{NAhK6!f?_Xk%|z@IUh2+t}UB;p_>)r`$&E`LZ_j^ZRKo_Hky^_VU))XLAZU zZ;20vm{!NT=HEko-xtpFJ#sRq*Lg8?f4=dn<2CVgOrgGPifc!RY3QoIzZG|cbMo64 zC&%?6j-~Z*=9NL~H-y~ebbss!^;S#u|NCHz-|ew3tkX=qZ;Mw1TO`yWFA81S)b)oa?LmjS-mxg|O zHa-)xaBm7drXKeBRr}L}{bxda7lgd{=nw4tvtJ)Bh^Hpkps zHNPjE{XmH4jMx;*=W{l03~~HLn4cN5I6L_ChSY8f^_4Ge?a6Z?&WdZpohc3k|3mll z8mj}}YVvf5N9^)-*8I;cg)8}`ij^0m9cd`pY`=ywr4)~do~O8V}rdn#}7ih z;yWo$54N_)x}cl0)|SPv|6JoK=%&VWKV?4N-&g-kVPAjix6uo1&{BR2As*+fsj>Z8 zoFDeS6vGa`eEm-7C%ymPu)i&?4tb6DcuV7p!aEhi&iI=UE^2^!Kdsp%}lf!=K-W zM?(M8Zb#@n_u2Yl=%o!Y3o&nr!*PC?e=q(?$km-GP7QWwd1D-i?O}gw$Xgx7yejSu z>sN(*55>7L3v)4uQH{ki=EiJcilO1|#*LZGcEoT?%tFq7qu6JU-_0Rby>(BFccrEu z3g3O9PW*i<{65?eD}#TvyE&$CcGTQ_j4y8NJS}Fi5NCz^*2VcB;)CJsn7=+Ygfn#5 z65`$&|3J8ZZ(I=j<0WxkY>S6O zFMlw^D9^KFeTbK4a(W{4k#}+|^cmgwV4t1m<8|@FSQB#D9@odxd{#GK8zcV}jZX^x zy#fB&6^paqosaprKh6)a-5%`Hc^3S?HIBuog)bf18~UBtSnvNRMvluHdxJxBv9Am@ zS1a5XJA%F=c6O|>_T3k1 zDGq%`>%H;W;KLhyQRwSE!H(Du#`{CQVpi+-#uRk&drF6madUhvb_QE3<4CZ@2cLA( zr|entM&#qXI@3>HQ?T#d$xAKn4SDVee@oci7VPppd@M9($Jynf=fo*@@A6F{HnE6L zpUKO*F)hY>XG2c<;B&Dy#4-!_e>HB5eW54C#nyOl+Zu~gPWG<|xevd7FXYdbJD(2y zK@0It;Vk6&o?xF%^%0l+cE!1|Du$j@V;Wu@D}oJgj(zLwd^z}?!rICZi#YigD|?Hf zk7>iVSk!Dyu>1W`cQ&TDDCDfy9tw4)+rjWYjPDDv^K)C!UjJVgn?iiwiaSD#%R|1W z1b=!?EXH4neZj`IU}sO97~&T@z0^nk?(r#)g%Hma2g1Jda&g|95X~7g z)!t%=>zNpN@z0O@)=myOo)IHY{W=AodQMIUV~Qj3AA<(s_;9F^eA%TT?YD;gV{vPU z=R3jw?J+dIx-l)L;LrZ!;XJ=n+#BruI8F-n6UQu^Uo#(DqZj?u=G7rD>mxQfFSTvV zzu#Ejmxtewcg356{Z+9$*mzCMLj3&7@r7WA1~!RIWVkN3sW`nbooy^jaKD`S0J9&5w-QNI^8cHX@!g0A-E zb9JzxA9lsi!@js@!H@d$b2#KcKQZ#fukU@K_Ozytb8JxnQ3b&d^2Nj|KaG70Y9P@c;MWynN(-UeNF1@P?0v z{f(hd#A$9!Gj$ZxrJ)uhezxf6-iXJ(v)>DEV+#H5?1=AR<5R+W;bRu=i*q5w=lsf8 zs;B)a1^`D|PhwCBf}(L=Mw&hl|Q)ak;Y3BAQi!$(3*M<4LL)YsF^#kVc^@w;vQ zrMNZ@hV!2fcZVjlJDHomVgMxF^=TLqDjOcf|fz;`w+@sGIoK1bbJ;{;+2*hnIvr)qqXE zJ7N)o{`u5={>{E((@UeD?7tptkk2>>lNwCNM9|gVHutqa>ely&o)xAMmHrU@A;@S|iIs5va7IdPk zv+`1VwV38(aqbQ_x5n|HopbJ5o8r-UA=q+Wj6V(W)AmF0<`55EPYh?pA^us=|M?jD z|9Ru9LOkB2uNdVq>i36@*`UMlbzNg|vcDMo^Z7*h4Okxj9mlV8OZ|&e47bE<<5;*) z*P$1G2j^?v?rk9-8m^De#hr0Z$k&_xTF_)?+!!ateIc&xu_?y;eRX58`_lA*7`gN3 zch_8Bh>Kq1H%q_HLJoBJ%=|0w>qD$+WzUyptAf2L{_j{BYhu*l!p8C$@rhwwSQjT> zAB*pWd=CX(?X8|e8*|$6HG0U}dqPc&7w2DR{0*667N3kg!TzZCD;n>Q!(mK=9Wlj` zSn6;5J+r44PsMMC*gqJ%gTGlU3mQBZe6ghmXku*5{JdBfey7xLd5G`hA$~U0@Ago` z5zlyQ;yyoUK4NFzd39A6_N;A;o5ODa|HgcFx{gRwf)i*EXguciGVCi%=l zP3*C&R%gU3WAvb0#URJgukMSHX2#CQOV7P5?A;qH;;OJWY|w3rp@E#w3^6<%^t~>e z7o&O{4DmT@-<}-hyDO~E!hCHkiz$8-&VMVc-w^tAef(-z^Jc#hKZw`HlQG56nvP>W zdYlg885)oL#Cj;?C@P<{u0(Sf{~R!Ov;ojy~p(A2mBArue&1%grIDqp>B#HR|oYd$SP7b)mzt39u7X7SsvCFgYCbG6T^Ay^3`*PV`;AD>ZQ+j zhPuk14K;E9>=U1mYUafh$F<9`Zg z#XIWl_eZ>+3pUq=T*NHbDV~k1LXYz8yt?TvIr8c3ir5t&3FqjeXXM7V?-}8|`|9GJ z_ECV#ykhNoj8ZjGh>`8^nX+8_4ByCa6a_Ssun7n&}O|FY&c#!2y~;XM1}jJe;a zJ)v*-W$&Mb-z|Ojcd;o}#kfB-_FjzDgx2y(6aOqu3%?bU(47J8B05#P%B`m8VQosl;?L;u~4`93wK@RodkC)g7I zxI<@}FNS#JAwGV-9^M&jf8w4tj|9jCd&6 z-yH0VPhN6(I@EksIOE?YUy9M2pKSa>JQi%S;oJiuCS&?u8s4(})N&!zNdKshet2() z)!exY;$5*joEtrGxUraDAHN*>P+np^6mJP{Q}43-?eG?z@o%wVe?{ZlL+z&!>*s@3 zU}NaDsWEMbp8Ptar^I??xW6v=9JLhdIrFs-_uU`Pd^5fq_s6jqw$E)WK3dXxb@&Z+ z{wu*J+j@#^x-QJW>-&0JY|Y|G49(;*#ol0lTgZW*jUi?=y)E<{o!q}SoIgG2>Gw$A ziB0YIgnc%KCgRiQe2VeL`S@@8vdPa<-|pWW&xIV+b8DO(XM}xmn0p&yoPzEv!@ZHG zd-mydPVlohpWoA0Ozcl_AncpdRjl^C5A!LU*%A-U$H)81pZ*(S3TLkmwf%<>@6eU~ z7h-3e5_;7B&}T(szi<4i!P>B|t{24nG@g5&(%oo3UV4Od(@w!+Q&U;sju{qp*bBM*c(?iU3SMSH; zK(Kcx{xGJvKWMNa#G$5V#HJYWsIhoyM<@EJBil5#{<@fjckZ|B7lJ)+Wfp9W+UrrV zsE67tkCy~{E5qJ*LVd(O`tGd8dUNQ%RA2Y_rrYO2y!_BYUx{UFi1o{1|B-N>KXdlf zpMAe&w9+@`bYjCB8F@V4m{#Y8`*fv^Sk%WGr=xpk2Rr+M59igynz^`Uaa)YM-{&LbAOvaf!3#in?FsGsq>!oK+RHOxmpiiux6c_3zC?{N5=vnS;D_rb?i zL6@byv!=PbW9{z7Q?Thnn4 z5wj4Rz2zYudJGNNo?_fP+E|S~8+?B}-XCuc`E3aI*|Wb8OXD;CtGFnfR}*!5VLtzj zzN4=$Xsp*S4ew07=<|s<9`1|xn@i@j`px)Ah=~nn#6rVmp)SkAeR&P-%>C}rM~>$5 z*dKBdJO2*_Kj(#d4vo)jEPwIvr#IF1XpDH(S?&iyJX45aWw`5}`^Nljjz>bR-EmeA zJHI9L*(Gsy$m?hC?`};DTSGoWFY*6v%);G;u&;O3#N3(1*ctqe`)tWwzlr5w@J*ND z-(C5w54P5Z`*Kw+!X=t*au4(GRr-#R@q?t7b~9{lYKYwQgzz5DBetxMvH zI2<&bg_!L5(o&7t7q7bgUdVxd-;5JuN3e0*eD3_%*Eim|yK?dFHv}J3jJW8fzs=cV zS1u!maZg?K;i_Qccf&g{9{E4t`21k!NU$SsnmNahJNCsi&A&8vR;{hC3316?uduZ> zXeD?3A;0TFoI7LmgS%oKx{Z9@;n(^Zp*Pqy-!>n!J#-LSu0>EW(;)kiEt-xZDd5W9G8i(e0M@MBG%S@(ANI2eE%r?ty7EJV^vHsYNr3Th2Orng|qT!b9LzV`{Hxq zES>pOS320^mwh?&>nl!r$=4b^?+N$JcZIiWpAP%uf#8p}e7z;a@&5QuSf`5|pN(_F zeYw0c9*q~`Xvl?*KaN=pJ@vb|*T;DwZa&zSx11k|Cqs>18q4Bv(EV5}#v9}D;Ga#t zt_(Tu2pX`xFT9t7ASv(Wo)oCFHZ`k(tP#0{4NgT9kDX#^*=&B>N#>;XsqY$pBj9N(LFJ43Hy4IPIOr6 z?}GW-+P;^^&~sPg;~~CT(Er6jUvbNM3g_2{IMk3Yb)v8S^`7}&7X0fmzY`x1KINuw zr;xY2^eh{4pzCQd{2gh$FGeovN8`nCPdrQWbIxy+wSzH*9?+l0e6lI-X+CCuyjS+D zj~K6S{6MIoSicwc?vD3_xY?6Gt<^(()~%f#$HKi4_taP%v{)0~J8k5w2QG=N;k-P) z9<%xPfA4EeU%fr}#!F&Xd^hat8NR1@B;FljIuN6uPHN2F(3?;7|4BR;pAP$rF@^iq z?N#i-AY#(cA- zMk_-t)t4P}XBNUad+!Xtp?hLW=y7lN{GgLwIUKKuDfIL;G4iDI&QOD))vU4iLa%Xd z=-~{V-24CA|9I>C{zd#WHpMx?zqc(9agTb^^t>2;%uf$m-V}8B^LTymH}Y_9>HN;- z*3@DO_g92ETUTe=i2I>f2=^a|r5Y_Ze`DMnV$~Nk`*!d>i&H{e?%f^gGrs&z!6*A; zEI;;W@PS~9mdE0q^DjG7urdB_(#l-z-yigRHqH$8?+U*7HRnA8t;hVUydunoul)wn%MtA$i*IQ z`Jx#e*uONEzNf9t-xU{y`%{cNbP$_*?1)F=gs{FC8)Lj(^`n>X=3rwA`5g@F4~N)3 z5!VKPZ0m8gH9ruuxHb4$+CMbZw|e37aQ?Iq`!CMtf7;i*@66|F@$PWF0zP|1l>oD~`)ToKvtZzft?g8nbhM zi06qoFX(wJXsQnSLp@In{+zufbZPn#ayeZh9VrXE#Ef!+@F0e1>4~96` zhg$NZ4`?K3d+t9T)-R2n!RJrI8e7lB=HOGkUl-QAarfoo?DO%l*d7#LGXz|hDlg+#0o^bxU;6uIsG2|&$=Vl>ZJ-H#| z&o+d_M~Io(Xq`p4Mr2ZyXMNyfW6z$Ikvu@aMj~Xeq8y z3pL_ZyFE)m|@|;30^5)|` zL7!Vfygv;4Y%b2f!-jotl&vYu)#P~m>3lxUvLSYLyC#Ot)-Q>(V{6by{%o4h!k&A6 zL+CrjLL3X))BWLif3P=;8{@Y_-17NO{8fA*{D!E!Z3RY;5fQsFl7pmcMnmdC%UJ`FLA5 zG}ePtY>AceTv+pNrcgtAc|+I7TjL$UzdkU3IK zhJU(U7xZ+8Hr~+h$D2Z4)(*$mKiZg1-p$LxzPBL0HF00?!@mCfWQg1SwIS!R=G@Lu zA3prH{YuclIdQXZ%$|Brp_fKnw>1{WogrQtkG)xAIo=y=O<|92|67P@ikm~Nkvy-8~lkErh=0%bhF3*$)H_w*|knJ2m)N9}k85zZ*Y^<8gY- zLJYTsp7CbbV?(ZdOkv*|zwXP$o_Oi|>*3!0@%0cRU3Q1H5eIG7#GzOlL%X2~`@`3; zx2iScrSHjk`RFwgm!4DDXGfpuz45l3 zVTVq7!gxjO4R=2g9}f9{Djp3rrQaXL<>9XW=3ji?m2>(;95=_mkD;gBXvl^*#=WDB zw}kKa;Ifh2fd7~FNA#fr>nf)7wkS6Y`-dI!G^Ompv47YO}<}`T_Ilk))r%9 z@OL0)!R~qS*|;%I3j6X>6EVqa3TK}P8mi~m^IJ0P(9V5##QxFw{JFkt%E><4pN?0? z*7(<9@9eP8-s@tDEpcU7`$DJ(TXKLe0c@WIh(xcq7N>>*8a} z{h_zt9qaOPXHC$Nc2ltDtM82UI%Yv*>w=R=K8i5o(0>ft<%?}`&c zJp7INsWBhk<=UWueAIPQ{6$zh8ow8>54H~n-|VZATzzRXY_oBBOkv%3RnYCMP&fBq z9`3wsJ{O;UvM;ue#4m(*<2=9HLtF=9XNzhJod#m#rNl5`ELyS{LuTN5W_X0R`R|e#AEKPUeM2a-+TD-e0;30{l!ode)P-G zQ%{TG-Wb|XjYqtGSLl69@Hc9qx6JkJ6!N06{MQ6q{(UBwk+b)|D%{b7Vqp8`P;b92 zwDg;)r@RGsoO?RtVLbE~n|uz&6bI&Ge%%)z-`?BtaF_qFMl1gOmfjh9OStdMi|4<^x5NG0L+>Y}G=HvZ+ z)!I7!zA_)PFIR8yikO0*i-QiE=X17C4tmg)Hs0VY#&5`$#(xm!1z$r?x$3QthW9nJ z(#!Y7vvGACi*Lq4>byHGG` zVhTMgH@@ihzBm|1!aGze@$kn#9jDN1!=|+lhu&Qu>*52!_j~8#6@BHTPBghW*yPKb zXXBc9Y0%T!_82;_C1$l3kNy|;6k>E=o%nXv+R{5q$L`a?nz+sne%19*TpP2vBdpQ< zNPIKsOEdmPp0xXPsE4y>gnIeS|NS@?Vx_-(t3xicpaqT0X)13q(aGN(v51$?arSs) zu`ku*aP#G{5Z(bh{EhlKzZgS5aSVOg7vK80FzyV#&I{+JxHOi{$Ii=D9_)T6#6q8K zVT~qid^D_&UUhCu(8;|WaU|SXn$HiKyJPR?<7f9TnD2=}j=o~0ot`-u-p+F&-t$8( zhaP7(W_uR)zY%=Ac0PV%U;C#AyT2VYcu`F8{ZKD={0_`QzWPHSJ7@0S66}0Cmgexg z&Be122g2{So;f+huYRMK&TV`+#IZHR`-?$4_uZ2hoz0Dh-al@9QXC8Z^y97ZmH4&b zLu_ns4>eyG`r(pT8SjegLj1nR<6H4Nad)WI(%i%+7HjI_s~U{u9CW;U#l6)qNIc#L!{HWbV9sD}rY7xiZA3zi25& zHE?EEh~=RW$IwnZpANRy#uVNL+sk81$aAR{`f+{edFPD9v=Dma>0sYG8ufm41lT5Y@Ka+ev_@?=MvG0i2 z*?U8dQ+zU>3UQ0^l<*Ed9qiNEc-Vco@q6Q%`Pz7E+nWC{qn2HuN_Q{hQ?2d`$nZ1bg2JXZaQD z?r`UfkgJ&ZJTv@;I&(*eUtY6#Hog$_8ntA{S$ba@J7WrdMvTsjTfEzXpA~UW$nURX zio`8d+YM>oyDs7!*FH_xvK5%@S8sJ;^RPkG^Y4$ zTsj|*d`@W2pIpWM7xS-vRoh2`{%o!dwfR)MDGmm|w*?#WyC*gUUG~N4L0|9Pxux|u zwfU9dj(Xe>SAE-*fTC_))0i(Ais|J6rT& z%lQ*S9^zJqDQN2}_A_G^FAnEvGU}!8kHslL2RW<%(0g0s#n7vx-?ldv|9^@v$Bv*I zKkVB(9M1-w`Fkd;n@_*gq2LNf(+p_k6rB?9=GHSQWn> zi*vO{HeZE+!!wnXBOk5 z^YOmEd=1@JG#2yv7(L0y?}WRb4F1IHEnE~dURneC(nI~&a())p{08iaDeS4A{WZZS zUt*#6TS7hurr_87lHlLD+vBRB-4uMv zaTfNy18euj_D~br)9}f-CiFhrqt3I&{5$jI5dRd;&`_^idnV*02J@k_@#@$Rd~FVz z*uOqzp;z|Amhi^a)88dyac_!ICpJDZUpuGoE8}R;=cM3Aj`G+M>L}Kgp?8+*$F{t_ z5bW~f-CP%Rv*wI=^##4zRoC~;=lrorQ~N{z@%7%m62q_W&X~ga-N7%LpO0a0S>q}A zr>UG~p+CM9x5k!G`_YT+$#q4DpT2rw_&?ZKJ$#*67Z(Ma|2jS$qwe0U9Mr--|LoIZ zXsUl_adwP*G&5IExvH}|iE#??uuJ!=gRVnsxx4F*-yr_v@9c-;w_+BL$F6uTXmM?v z5zf9f-Z3AuyEI;ZZ`4=(i!lXX?5_COxG{bZ?hpO9HI{?lYjsf{ zaA&x(b%^??dogKAdV|B>w=}<%CVSi=g zBXMu=|9sHU+6P0~)DV#kNH2!b#sd!`XaaK&>Jb%N7xqG9BY4ZJ; zf*rQ+3q2~Y_s+*lyKO<%_81u6>%!mC` z8t;xf<50XW=;1y)qyN~S#d%?$wtOuHzi$ZI{AMiej~&g~`Hi?WX7S>nr8w>mzjNw) zWgH2%&E>Z>w#7vuPCkDWY`!$~B!B$u55G0W?(%Uww#3p{o##`|&i^oecK`I&&W~5m z_t+8d6k>$>=_xtrhpXew!Tzs?`iYa~^!sLP2t6sj@gBa|Sbe6jt_S7C_Uc$3G~r|1 zqxHvQyl-~zjlYj6tc%edx(q#TYD`D|4#pI0%WcK{yRt8P;y)|sCx(aO!jPXk^6>`b z=$w3B63*Kjy=8uT@X7YRm<1o=RqKU#IB0W1$lY0I!@nHG^V&Ew+*bqn zo*I5XXvNP3F?@v-$@i}BfbZLPaW@U}`1r2^7-V?im zJ!^;J*7=+*_pgdoF>IgLSiJ5m^(lrg#ntheI5*sJPT%-9^0hI3&mM1VZ(nSTpT=** zKMVHhsJEw}3tzL4pSVW<-Prhl4*e}>aV*3v^yKkiiywRPm8;)Cnmix+Rc+oBBPM76 zP1wIK_-EJt6!(R=*l^dncfB*zS0DbHcrfTZ;(e~M{KTWT*mZx?{Ci?w`%|$0*YS#Y zH1w!=&W$x8uk|5!z7Gc9dxIbMj>hlBuw!4Whhyx2uknaaJWKtrY`!M+nI66(w#SNC z7i@S-YRInp-weIBA!cE13i(_R%R?^C)4|@ z4hO&9_f<>A7d3YNS3~W@!iV~w6Es;2=j8ZwIPY&19mYP}et(7@@}I>o#%sbkYqWKr zuU`)~)W`bGA?}s&Lb$^xO^xl1`|d4ajYO$H+--hc;sS(tM9S z+IYMC$=CesI6cI*HAen?ImZ^;YT^7sh}|2U;;c~TkHqm9_ucVsXR$rj1s}f_>^vMF zifiWc)B4(0t zIrDhvD`z*w^FcFb-J>^c^^+Xr=)AN0L+!l}Uo}22__ww$#4~Tz_QdYZ$e9mcXU6_Djc36xAHL4q z9=l@-aqAtqiFb9-L;d7)Z+tPX3TM`a80E;%LqTitZw@~6iug_oXSc=&Lk-zl47%JC zYRIoX5St#AxBK2M+xq!+!T-C0&68u;RnSA+V%i;I9sM9b`_7M;Y43M(3VlbfOT(S7%*V8(@37zT)t(bpL>HF%~6W-k4#EBsXI*55OHir9h7t`TjM=hP>$NtyC`V?|g zi`T>*VPAiY*l958cy{CKV;1)W8}^*PB<%Akk8wvYeKnTFi044#g`oE==%}~kvpl?c zImto)h>@P#V_op~hG56<*=?amG*W8 zd0()jkAEe^{JSAWdA}&0k2B+7$kqJ2u{y-Ymzoa0!;U$nRc`x(zwtiI#dSO`3i^$h zXN~v96k-rFJF}qsh}rjpA)i@19Af%#{8otPtk9#o<12AMW)&1zU7*&Uw8~8|T?m zm$gCnw}!nb#KQlm+lt0?-W9a|NxUW4ygB&bi>`c+`@Yui3ASnYRGbw2-y7E0`@=XZ z)`wjDW{>;k{!X$l_LqeF^5t8<(s*~w!aEf!Ek-}^WA3+&9^x|I5o{a}>w1Xh;uVj- zN#gs1*bwghG-kmb-{M*szaMI=x9GP#o(?rz4E1JH-lxQiLOyH4Z@_y)-`^DOkG#bu z#)S}zIh*{8SKjp47}oXCKZ(=ht~eCOVt?2dtFgG*R8z6i__yQg;QyQu!{>t@?j8vm z?1S3DcEwMj1|GKMI?2UNb-5BdbJhTww6wa-PKM%hH^4ELfI~+?j z8nLOLeLek9h>dM5ZBh2h1mF=f<|&)7vel2oTazgvc(^5#OQb1{w%h|x8jbl_xSuf&dYauTs2=` z?0YQuq1o}cEEeKd*psU|tPI+VTf85MT`~5@@8qMc$!l4NO@EvgY?&{_SuxJb`?Eo>H;26S zARm7a7lpnuzdUXY@vFJ@qoEcL1|J`YZ6Qwn)I!ee%HhUPXEx3ccMi|LbfCYxYhr!S zdujaYA%1(m9&&Z&gJGRUPlde1_gL(UgK>3ij!|28?}=?8p2e_cEC#Vm^RL+Dd1>%1 zFL7Nw|L*Rqetxgq7w0$Q5pMkT=ejpwj=C&Q`dwZ^LsGti-rB0 z;#Hx3*Tt}PcH>va{&-J_;dOC(h=Curd{@MV5WjQZj*W413_lBv=^-YupA~w@e7p&F zN3D)F7Lyp&;^DCGytPBIHuTz9b64C`{3y1?DRDT&`E-mv64wJk7j{n!@vEEI?hC!^ z?yeB?Cu0gWXw0uVtq-}ebs%OTzCREBqJQMNC5FCNHGVeiZH;YVUo3A4_72AA{gWH> zKjteN>s7wL8vh~0Pn#XF5Nz0|#Z#f5Y3gsvJ3>!=E37XMIo~m#zqaqO7<%zV!)eLd zWAibMUK;$L5wuziJ>ZVmt?5--o*wotiN{0T)`k0Y8h(y6W?PT$j+cd=d?DDQ-HkEg zcYjs5M+ZHlmTZg~{%n68ZSVXz9`5T2x~+&01izc&*06tD=vQ_6A2I5Ec4OzpeY)!r z`uW={rh7vDr?75cJ!p0;-2ampxxKOREItvh5B^8L(~wT)^4}2O4{@Cr!_H!3TIih* zhcmS2LoR<8H-vcPZCy+s3;y&D+j5qJ-t;@q=b@mjIJO2`&a!hs%)%Z1PYdTpJ@^(U ze_|99e=iDq;+(>LYy1z*X#Snp62t!9#-9!Gu*Jq#;_bnQnAGI{P=oE^ee+|yEf&JL zD`I7c$6a;N|JTjOG(H|b7hjB@wZFEt(Z}aErq$>ZTIdyTkRIY6{q#iR%R=mI?wfyq z-1npqk64}zKFr0h2b@>8RUtpQUL4yLm$0e~f^rdt1{eu|( zXtO5RlFx=XKjbMMxsSgMYBqY-*%cw@>tlbM70ZGqeENM8uXTNCY|p!YD)hpL|K!H6 ziibmt-wXYDM~Fo||3w@QHKvdHi;?E~Pwe8-pH~H+>>A7We~rJ5S%`za^4=M8+Z7MR zh2cCq;&A^^+#d4f!+mSl#@*q(TFLq9_-=@EU3?_GGxlB)Q)~*lh|d}u?5o}Jke3{3 z^_qAr#{I30=`m{d)yDkm_bKFJ&ekmGd1gEq2gCil;)3uN*x4NNa+dC57;#+L_(-e_ z=fykvR1R|HPi=lV*xMM+h(Uc0#bP)sKH6*unoYqcE%eg1*b;mWt(~ReWg$=gXf(y> zOYzakJwC-Yg?)SOT^uXo;SjG}#QdYUEoPy%=K4W=-T;5b>tod6qQ>tI{_H;!?6G4m z2DW#HJdTC)H2zFDdo(@}@^!|Z-+Oy}iDme+CT9K~nSW<}<;R~m_r@3J^AX>_ZvNSz z$FMauhFHZ&oBM-paV!LV)zSV7aY~3sj1R`XxHnb>|1S#t@!^<-T$hKt_W2(9eER*O178QjTiFpO2Cew}R@@P6pB3WX5bjSwhgs0=HNoaXK?C>Q+ZP+> zbHA7NE{U__2jT9M;rxqY=*gG(_>$N1;9Hz84>6mM7>2*UZ0-LEbMf%!eO^8Pis|XF zPCvgZ*M#$HLVd0e^%Eoe-i~{t&gV3C{`oi|?u>;P_1xN6AFm7Xvn%dd&_mwFH-vTX zpFg!{^W0!xU$`%iG1nLB?d>lMzRdOSs-TIwi$%PL<4CyA*7gvWxqY_Tq=$R{28fZq zayB0IV|y0tiFf=qiQn1BVlhSy+4Lsq_>)*3OKomyz9Z!9Z-qS8$8QHs`Qyv)!a}SJ zHpiOt_Tt?lW?}!6;Z2Bb__?C7T*bOSMh;VBHde<= z7a%)mR%-h+$Q@J9OY7;@T2^AAWB>cju0ful(s@?H}e}b?29_$AT^SJ2QnIct=>1tNiGt zm){u+Ato`O9aE^Y_rul{@*P@V)|k&xGk55~pYz@-Eoitd#3mp0xMluj@BEO{k=PMx zrEkTzDMs&zZ83)a2O4h=c8`Yp)@C8@(?Tp`jsCRpuK1D1hOj^S>WRkgd^gyY)9z5W zn_>#KF90nGT3-*5_)N1^8xi1EF zbZ1}CWyC42=VKOX;@=beuMF>%RL-CF99`24|Z=tc6+@0bhu_aE8@pnhOBObjl^wPKDAO7UPuU=tu z3itE?&Bd)>cFn)X`|b<1cYayW$?ue!dFMw$yeEd*n2V3CkA}PF#4{lW`{MCcYx?U~ zcImwk>SXS_CdBNnIlt~&r>(g7v%fm%CZ`SIo;Nm&k>3-Ie;9g5jjhwjohyTFHr$%PXn6RU##q1S_rx5e?`gB^b-yjQi@ z6ZXbDfXurFV=l-t4Z8}WFY8FKzf`0cto7D5hmwa3TjV~V9Y zvnO78Toil{J;Zi)h(%m-{zx1Pu`R~7(DP!kwl(NWvvY!8_OA%Bv9&jT5Wf_1S{3fn zL~O?5xM4omljc*%<&n@M&N+WH_6M!53BE53`igl9=d6omXUJuP+Ne{w$nf|47*5 zL#*_X+h4};%dTE$XG09TH#h!%s3|*sAI#qnbUYmHzA4n&o;8}Y%|Cl|*c=Pt_rN=w zVrR&YHjf9t`pCJ}@nrmV@J&ay9t(XUZ#mkV1-;Ba7rzzux5qtUU2lttFZuIfU2Ge} z{gtsNc7!wHSrNNqORzO`_lEeEn2|B$prr<|CD^vL6g>iIB zLVhF8&opM27S6hRdRSw7yam4z*62+?_O1&xUmvH&jp59Ak3Vg^81(WE<-w1){lm~3 z?y|8d#D8{-*rvv7!af^(%2hx5%4KD!)0q2P^RME8V9&aq88+p9ZLoD=90>V58@C2O zVvq+d#{9g-?D-uz7?;M@n1!6)6363_crx_48Vx(69yIwx{EJ}EZvh>qaNgK^`n?dN zSRS5_Z|N&ny5AdWLDLbVe;@fxbN*1gFP7>hZoMF0`G}W4F|x(Z(XcL-6+r{~-4)_- z#va|b1U<*!V|M5{iw!}e@l`W(XMER(KH;A&=fvu}Bm72<-)p&U4R@`L`+8H{))#}u z_k|kKK%Q*w4E_6a@uRR$2m13b7CPS+~rlt745a$LzheJO0FOHQVE_+k3`9$0p z^m-t+gnjw13!1H%kJWhmzQ~z=t6~;=VsG%bRC{x0)Z$>6^ZV&IA)H+sZ0m9R#(Z8B zey_zKw>#!@zU4OJ8TtENR#$pDPcLUMgvoHQ#(2l>`Lrtx13g?IY?TvpnAHA&x z-YMT|G;E&NSbqOD+!O0JVpu*=t(JU!CB*etL4R?$cXqrl#Gn?t;>E$o>tbclUHp1vXdzbm@~?hdWAqFA za-78};Vhfyg!AIOD)h$>V(7>YAAVn-ihE;A&|3_*g?y%9pIvd&U5?Mkb-@nJ#3v6m zSqwGii!EPoOFVbQJt2Q~**iU)xhdGHvokNfQCd$D~o=;7?nP$zce zG0r;24y_J{o?>t4M0-9i40_0AS?@dUu=^YPmJG#n6rx)<>?s?9qirtK;{>Il7Ga zzt{LsoEh@_|M;-~pufxd&i8Xy3R(wfJuN$ki=V{EV8GzUJ-uln9l}O|B&SPrR%xPO zIOE14Ahfa`t+DA!TZL{GjwwAHOu-)5Su{BYTBdU&b;CC;1%VXDqOSC`Ohl@?TG172 zw)}OTkD2c^bC0ug{&>#!`druhdcR-qAD_=1*bvV2+Me266o=wfu{B1&`5*b%<9E!% z)LLxs-dOX$Ce94`c&2S3)WEae&O(pO^?}$P>Sy-U^`l|_7K49x-xA`fKTS))-v#ly z*b!6cBcFOhGuu%QGxDBT5xzlZgnpMe*3u^h~f3M{n6}i@QS3 zn}RlX`MEisizj2~r{@nsJT|mj%l)1(4_}K<2fxnvJsSFVWB5CAP55^PeeN#A3voiM ziskR7ec7)!lIe*8(`4n=Y zS1#WP`$y)#PxZ_Gv=GOv?26^NI9LBE{vq6Dzcal5&gsz`F}@OXsUN*x2-?)@Ph!No zy!D9lH?5xzzPE<_r%=DgL+>vOF%AbiG0g~@@l5;55SN`?{fe!=bR3E)+*t^k)p}!? zHS6&#wmWS2{k32xrub?r)+}gdr&oGN^HNOnwLSXeZ{FCwZvHH zgm>dp@#~?kSA_hYjD11xj?jlG#{2!n*7CRS-%@vnm}csx5N8$(p=NRzw%c0EM-Sxf zt~_?f$ia7DRnWy3yK_RUafjYnxNCiO%z}RU#QVqiK+NKy_~me}mwG~jXLYwXi;Lri za9^#Q&w{O54?WJd%%4ZE#Cs&(6b}cj2Vxdag#66G*3g@a!v6L!OXl^K(A(dPcZV2q zygz7C%ctgRTId^j9&i2akk8>@e@(dmLadDM#%JT9I5FIJF3z>{XSFs*uL(Z%NUWvs zj?phK{cwJIY!5wL2>wPb*0laYu=DR3`MyrZExtG`qJhb zLMtuT1wZne=Igcnvb!hbY<+gP!^dla?rTFlHL*Y9+T(i``oi|kI5(aPIgNOFJ;gu7 zyJEx|^RUp~`tW=-*vo|mdbS4r_rv_;+mk}46vDnXZ28P{yooPU3hOE2=?a$J#54n zwVztcO$<8aKYZ_K&7YZBibJtIRs{QzqkD3ARj?QL^mrz|8ET;KTjuKz_iG;9XHVbW zpq2lZg**QuoUKe_ep@NS(MdZs7z$jiGuh5eED1a~*r(#>oVqK`oi7~W!m*n%E`QB~wXTHt|@#sG_+}RLj@X}Bh zHR50Ha@G(2{wQWK@^JUw;8U-D5bWh4A2T5LbAv|nuHH8U|2slXhr_;n)%-U@ypgxF zJ@HTs&2spBsFizW=gRogP+K`oL5p+#P6+ioCzitd_RjDfU5MLbOR%BOe7qENxGxu4 z?g_c7v-nepqaOCB@cjL7_Z>l-T&Fk`{Eb<&r#`oYd8OaEz4L=cHIj#(9Ee%a%fB_< z?9Yx_oD}-LFOCO);%|?UgFNqyS?mfiE(kGblb@W{$8x=Ncpl%{zij>I@#&D88axnm zZw&o6Gb3Mfa7o-1OW|9<-(t+-l<@4n^JhXnp7~WvT7MMut&1u2b!R*l-wU^Fw*277;3_?E|*MbEDdH8>DvV;1_cGR_WKP740EhBJEi zh5J{AUePw@N!{5WjCX}IF`!oFQ=N{^pXvNRV=1OkKlk|`GvK{=b(|3Nv-xlw4{`k) zmR2?MUDy@kEe3u3(V+*vMR$hzRGYWQ4Y4=)HXD1wJ^uK1_wKkOW^rzu88qqb)j^Zz z!*OkVE2bE8|Cg=3hkq3hgr3oUN=%_wzY^oSz?W~jJopxqUi1I^u`2El=ToRDyIIIr zUB4M0409$ATGUjp*M)xU46%=en*Vsc`2ERXD>u4)6ZCnk<)ViC@cl@LHEMWKYdRNW zbBz9ar}c`jr4VD(dupxzY}Eg{5dYSAHr#nvtO&l@n0@PyhhEc8&n##dHF73bzWuHa zbMs(``9!d>w|4$~v|svP3VonOy~UI3-ncxj5BV*GcV|nCKAItSKM-nW7FUKjFu(d~ z|0D5G+!?cYO^9=2yfyys5c563Rt{=Uk9Y@zej1!Dg&0$OGPZ?%xzTfe$a}nR^1dKG z9LGZJjd4ndb4BPCU9XNQ-qCyznjCpxaYhjnKL1@mU-NNKyf5S^zwKcj-VuC1ANtLf5B?8?T-Z+`Hf_$Gx%2&C>wVzU*;zr$ zvDg#t+dnl<3pH7;)%lT_#hUP}cH%u7bcS?A&aJ^8ZRdraT@=or3_AD`V_l3~)naXk#YXJA!ukIA^!!=; z&0+t#@ccx4F1&Aa&|6xIL;FMVv2eB+&envQjrnvo?$ROt6!JS1 zY`xD@$Z1vlW&C;2A@8R{J$*ynAK%uc)>E+gi=fN-@eork55()kJ9T0>=Zn2si>;@J zgT7s%mc9?a7qm|5VQc+Z5#BrThd+6q8ES79`BOJFrg16gG6SC1 zhWB1gz7%xRe@-}4vmf`T$9x4ey3LZ;aQ*6rR;+ zb(raqqx|IX=8)HmA*Q`4hJUq`hdJcy?}Hv%rqEM*)L;ttJo|3R=eJ@*$p1jt+Y$TY zx)9Gh^c&%>^SwdS+Tfoqd+IBWxnyTvAB#;f^0=?{B|$TPpAJ4e`)0^PP4!8icLsgF zm$WRO`LSNn{)d8J_1h6=g?wfqU-f)AE)35vk5TKP#Z1b}v-lV@WY!)CdR`gwQ{!Ka zD}rtsx5uMlmNv#h(DlVor`_@0xGdaf|GH3%;Zq$C$G&)XYzeuq4z;xYLhyI@{F&~P zw>-6_wI^AyFGs0F-xb07>nVK`)XpoXjmI``<3q$)zmJD|!|&$S z>=(n@zB}&Iu5Nmvzb}NDes`$5oasI{M!a3E)kGXxemcaPLhbmXXNqy>rq*VW-5Y}* zwdQx!NKelQ8lH<6gI4-zn1a7&;>7rPEYER#@8qQZ{CU6BPwXRMZ^S#L^%O&+`DN=J zxg@5b*SBj++!eE+dCbbyt;PDaxFDubNBOfG_wQ}ZX7t9lcDyfiiK*UtPwVlprxx-w z7iM6Jp?Bo5s=d7-=E?K5`rbT$rqQ$ByeH&g?`Y6>U(7-t=3)vpe=zvn5(nd&pj*vp zfm+kAuD6Gr_J??8XJgR*M=|V%?lHUjIx}n@%45VY~;FazE&4K ze0!*e8T~}~uDefzJ9@`<0!TrP_%gPlIy zAETxRTGRWZP}5o58uaZ6c0-$Zv`oS8>w|tXqwjw=|K(GT?DbN;R|Ku@jea}7A=bv* z!t)g44*Lz^yRbK$%VSl1Bb=+N8rjQE>|Jp@Zi*e@`>tN>%sihP zS z{fc1Aueqk_yx>=CT4*~M><@>1`JNy5#}DHpp&q;9NVp>h{yfvZJ!n#2d#{h3;l4O@ z(0*N96F(PfBi@H%O~`%Zx7b>K`oxC6(?Tq{(EDicr9OJa-i*9I=r!XDaV*%Y5&wsR z{Si!N$e*3}Y(>y>B<$}C zTGZlebF zT6(|bV=m2}{<-h@u~-Q4)LO3MTE7_bI68k;%hN;6*e}M`aNqlTAVweL^3;4^9oX|V zY{v7t_RO4kw62PehVxzVtxy}kda-)`yVNhge9|HArLi`Sg!@zIk?$lu?z-dLYVz2jhfLKQW$(6|p|d&p*bAu_@@% zzbR;yyPmP(e-_8Xo_gFGVyfN#`R~qt<$wSD`NRF{k6dW*Uc2vEtefN9kk`Kt`y=PE z*5_Xieinir`LjDS=szp?{i6_HJ|o7PTdNtJ=FhqLcsyPRIZUBntHZlH`pu6u-~TN5 z`}IMqdz*tU{k$#qg_v}n7wpWb=Ue8_vwrUnH8W4Y80;2Z}g( zRYP&yp>_GWTG%ryZ24!$hHvXTL(RQAdqQ466=s0_6>(Sab9ziMVy|c|Kid5+#AoAR zyeDXWFzDMKpAL7`fCjxgKh)zN<8z_Tw75gxEXdIxmpK7iCi=iH3dFFo#_u2Dt zW~c!_*Torea;W z2zOo<&SoK&{Ap1~v91iU)O{(~`ffQ}4E^KZ`*Ba`7vJuSCBLg2a6-r-S{-^LJVwkJrV$p$4ai8i?=jym+HVZ*I-Ecxt&ZE)4yn9efP^)~Cgv27h`p z`hQ|;d94Wc>S|W__4oCfxI4~?rI_aHcl0X-;VQQdA>A%IYz!y>+z22za6*6ZLuflle>3-_R%AH|Ce|q^#79ZZu2q4sLi(4?mrV^d3L5|JA(gBL7Te$ zN<0?)91r#j^XEV5m%SRRsTos`x5rg6YVy_Arw5zWAwG?JgUyfkZ))$I;g>(PV)wFG z8$SyBXNKC0S@dok47Q80Ip`a6{oVQV)UR3oQn0-#^>tX#ae;H-$XtP+#ZH%m5#H@4p?UQ155r`8Xr^Rcp5Llb7|lySw!-$3@}H zJ+Y=3vH92<;^@_=$NJVIC%WW%POzcJ--WfI_Hz4ZTp#qSH?8LXNU-xe=1&e!#-91_ z4gJz{UAU*lZw>LEjk{yyM8EY?I6n~l%j0K4zI>TQ^Yg~wLoM~wnk~)8f?l=xL5%qw ze)ZV7eRVlG9*@i7(l{KK2YnBRdyBDpzNU?jDfY+kd#JUT@)*8%w!SI0#nw=V`@$Wz zeA%aG7WyT>M}n>U3t>+#`lIH0uC98xBiz3zybE$s3wg+Iin~HjhgSOe{Am1IxIg;( z%GS=z`Ig{oPn;7Yuhp&9hu#gbH)!%JCY|)C$%uLXe7)GO_*3wIFt&w!rZ^JxsE?e* z@_c>_U+#~3sG-;&iaUdi7$1n?-~CyLHO|%d)-Zc3V+wn6ToL?_za2l>T2AUH*1C}A z_E5j4<8AQ|G4#_&oA={byf)aY=f{H|v4n+L+24?S`gi?$0w9sVdrUekO{%Wno>|26go4SyCN4RQW3M&9b9 zX5)8jYyGBw^wpj5cW%t1GxF@NSqj9(8nbntmF?@bBKuLHj?C zABMiWyEeqTDBLx#Y{iuKt?>&XUv}GLeXNNKgROrr+!jY;F=+HRVf5i}Yj^#=5Rb&; zp&rA=x6|LYS@5+d)Z)AlOZ-DI3pu?v9u2eS*?Xxk`llzKiswQv#5^8%#IRLwJsCOe zXgzBGOl!56LJckr+Ua$F%#_}a_}&ZWV7zx>G6-KRtR2f|FqRo(dTdv-h?_VrcG zekVq4)&Gj1pWnsMYtJ-%FZicf-T1jNj)i{lZO$HvHNl5|P4R}%*E2&NW7gF3{Lq6< zL4z3Mo_gtl%G4u^x_W5>i3j6eX{x|byeHi-WF=F~%8+_a`|6S}?jLSj~ z{$*SfM??R-tM|t75LcbVQzJQuxh?e9{eOt_Vis)G@GJ415a*om-`>6@>d7yEd~FPS za+*R;-aF6kEyWZI;hhlkq7XyfuZ&w`L;RCiUcak)rvH|BMO+Z#of|7d+!x|k;)XC| zN8*_fhhDkv3i}U-`mBykbL2p;{Jk3s;ha5N_rDfm?+!LM2b=vN&dwP9RC{}G3O-&N zmj)aDPLJ)uUJcZ8VpEPo4B;d#H_kzZK@tnm)DL5$vas6Aji- zAHUn;li~TL@b4|Q&xdd2)xn3mVw(H$ySla9^pAF~k9tgek?0Y%tCyw|0h477cu2%H8XYH=~jCWMcXqe)PxH!f)!=4;J6SoC_ zYGyv(6g1x*{Q3@vLGMC{`QecBb@5F6v#_t0>}l}#>7n>w{9fnD6t9SzV(6z?95q+ZabIm{k>iLfrkcDED}%0K!;ijr zrfd0n6?iYkBRBWOUlrbKIz6+O$EdkG8)Id7PiA2b_Jx^n z&i96Je{IOydvt$zKd+7_V^6SsXZY6Wjhx;WdZMRh$vh7qY#$7|`Mxq%2aRmyI%>VW zwRigZaG$>Az0f1}V7h>Fh(8W9@bysl%Y(l6hx_B*pS9MH z5%1jjnOey8Uj%!3sI?lar9M6$Y(5a9k84}&5gmTj@xoY)m*QaX=j?C7yiRk*Y>6db zIbIgNZ4ZRH-56hwyMvFd;oh1Uy2gBYZ#IN@{K-+D)!dy+Lk<5pywA?{O)hfdXHOgt zXL9~TyfNHA9DMQVeDrH=Yw`4C^y|LX-j5YQ4|{!<Ax;UPTu=Z#Vpu)@8n7E(68P{;`vY~wUPI0 z;@9JvI2Lq94 za@rmv*Pm#u*R(H%-2X@Qv@hp3&CkEv@A4S5(nUKvXSAIeVw(Gp%zxMSs}8g9uCu4v zyTxAp>rPJ#jbGY+ad0iaayQ>S)D@M)$!Gkzx=$1@*8KHTJ!6kn(OaE z=){F~1GzYG4RaF_iZAs2IPUerUqj)rfx zd-CwR7~-32Juw5cK)uW+|FaN#&-_<@&gCc8ju3wpgXyTbXaV)^}xde#HEh;es_ZT-{XK236_OP?PPy2V#Zwg*CP?A2;1 zrr;OupBr?kjk~ME+2`Y&I2?NWM7%Fn1mEuru~)@6;#*-)9^%pbYLb?4K`-BQ%5jQuZp|;fn?j8i zL(i@XcMk*&=57{hMzgx{w>|d9r$b)yH;e9$Jmt*RoY|vy_|~H-)Z4v-aU^E(+2C)v zt!KH;;-T>Gp`F3+){xKmuBp{5Lh4Gx*Nd z{HftA zVP6d&jOXM2U?WFd9JDXR4`K@1%$#oo+jqy%N*|wZ4fpSuKi}D}`}*eGY>TU>voQ1O zVC~*>@#FEn+1`i3{l!=a^X#7bsK5A^g#AAWwq{Y>GlSkK+!^nydb#Ipd-yKw4gHdr zznjm*6ms`|yf;Ri9j(QGU8w8s`7^&XzCQfh?# zGmeJ$OI*3idwD*d%@6&@Lj0TK-1v*2&AnY=zQ^2&Czif0&iCEnn_ltd$)9@3pMJi^ z%w5ykY^vABa4z5H!aK5ej{EyVJhoGedXB$C|E@jyioL+LAa}DeCh`~Yx>kgOtD`vU#o+CHZ&{-z5KWp5bjR%6Z9pU_KF^e7H+5Oca-`@*Ou_FLf~Jk}+2BijI%s-f{wy}lZwj^F6#Vl!h4*B64suO<6U`qye;Twb3D{+dkjtVi~B^J7@pNxT}IBIY5jq?J`TjHa3&rdYlHtc#_+eV z_5Lv5SI3TE|E5?IG@287-2F=25d1F0&bTRt?Rd}M+a7zf%7@zduDM4G?XL{=+ZOcr zE~@v?J7&ziaer59@1MSkzcJW*|LrY>y#F@Ti*B)o7Im40-_`L%i0>|6=6`qiTXbK@ zhaZ|Z1^s4)y?2oA=R%x=G3xN8)@7f2Fnh zUl3F9DW`voYvOp&;I8?zmKT4s*b?gYzHsM5!QY6>pJ#r=Gz&+=JFh?XrWn2E`~J8+ z%*+&gjJ(HpeB{2VGqLF37~}kf)^7^_x5p(xgZXT&!P&xHERS5Nty#S5_z zC&tKO{L;z(NX%mF>zjW3hj>ejTFI3rcKlx#`azqyQ8V{O-{r1`euoc#*Di=D=)Wk` z*ZnWX+v78FeYod)uZ}Md?~QNIH{*B=y|dQ(s(h-ZQd>5Qgp~hGpi6qo!>6 zSRZt&Hx25*#|J|#+0ZlkG5R#M_fW`t#FX3r8nbXutOGIn$G@5VC-F?Ur$_Gy_RdHD zaZ0Go==pQ4`7jG7#EPItJ*Q9`TIA+i#Llzt$8E7MXge?1IQvm-4ZZo5kTXA* zhPeEz=aq4CsI|K8pRYgH?=0N67E3nTPqeEoc|IW6eEC)kTczx>3Sg=ckIA6Li7 zYs}uZ_I8K*nq59_jSFME4|0Dp#1dEj_k}#%m$&$D2({K@I;Y_8x8j3wMX0HI?+Ue; zg5U23KYULiUv+2W&SH%Dk`Ev5solO{CzgB<#VpLv*}+zwpAP40Fy`&IThqHdp4`lU zyx9*OtLM+=%bgK#^mWvPKKJSSomdJzSrwPWi}Uq2`lVYhhL16m<9X^#U5|x2_#JwO zjrURAMqT(+^Ir`8(a+ZfJ$vHLn1wuOUJ;MQLdciap9os{x+`X(j%>aavru2(qrEW; zH5~Q5x%KwAKg3-b$3qVMY>HWUf5oHay5QrXpq=ev$Ztc?;=S28U(3;4dneic=eRi5 z#F3ZE*t-=3NjQ4|2bM5(X$WcATR|{*uv^^2(`*5&7JywMn2ZA5x=F6VB@{PDWu8FUQ zbN;4~r`$(ev!_=3W4T7!)yI3_{<}gRG|F)nYPBcsh%uk5TZ_RzZPxNrpWldc!WpfL z!G?daw#SY*8uW_ou6=&hg&%RJI5(b&6~W(ELk?=d-_YdWKnt-x*r_FdY+j11uuHA7g=vRNW zcCMdOs5M*pd^l#Y5W7M?-gz3QI1c$6O(|rAWzckXcA^fdl!~Z=o3pMwwF7kHn9^~NtUlV7?HS=HZk9x`7eVR@T zu@8j#;pdVVd-9drj*!prKla%zhP(9q`1$en+!N0on)b#ltNSt^F6mjPf@N{!a?=MvvM08+|Oc#Fyh>3{BpT(SJ3Q-=+|M zipPSk2V#mNG5)IdhrHzU`q&p{Qa#m#)xp4pa z5TDP*&{z4X{rMrzo*3uq!1ok%-5TPv`Fe=QhE6%iQw%xj$-|)+_UM{|Z~JsPb61_z zP%nmmb~nbckmpM=-dBAQ3+^8ecdv{u#fc$b@08xk;Va3U=#*e)mQ#ceFNN?)m;64mzfAS6w_?n^kwk-y5@_@3+I`sXt!T&7OQC-%C+?M=f6gC>k&kcRig++~ zg*f8sHNARyc?`S7)|bwP@YeRdlv-_&xd_}XTg^mZVdHgOT+6zee^{A?5UNz*95(u z)qH2%6yATj_`WcvaQB38Zz0s@c&MlR)NKF!dHj2I%#+&kH3dJknH75VOnkA`@XvzY z=R=GS#TUbU_t;PKwOoEZ*z@68zDI-YQn<&rIXM{eH9yYS?+!h`GH#8J#A3WT&J8wl zet!PEvfppU4Y4JD6th?tV#-;LQyhw+MZP01@7Axz$WQOoPaOJ&AN81GA*|Vp?|cez z#M>2SLN5A2H{0_=Uum0SyfDl0KWBB&? zJIAkF-x;fe?ebnc(ev{8@{KV2Yva6dS6;_s7T=30M(x#V%=gOH^sBR2M?%fUd!SCv z?bEv}==_^d5A%6R{6-vz>p~oP^DXzKP~V@8!|_n4fqQg%cdre-rC+@Lp$_BR?=_)+ z+v35H$M$e$enxLStK*$93;x7EBjm{M>nIIKG=(Ket1VcpBQflbL9S}m_i@?((9KWnm-q`vUmUP`0KbJ+F{L&x-JVsfBpvOpIOeQn)AYPtDiP_@-IUPntioQwKd3@9SZ2cd!$0 z%r%>_mKVKx_-K4E9*k?_)R5n$@#>&$L+pzuLl4z>bu5M)*wglW(E6ig&$qO`AmsVu z8fZ2bE8@mD7JU9`sP!Z9SS-YdOVi0AKQTS)^XR+$*%R&1XU46eF82f*`=gd>!av<&d@JbmOq;$t zKNO=Do@u9*PIJg!41Rwwe_nonvAs8k*zW5a`}@LOHC4+ug?f0;{moLBDcoI%W8pqq zx!YSGZ0TMK=bOS^z2P79yd|8g(Uy22J|1jO4?fv$4LOd!vR__5cg_j%rg%Qae2Yns zy4a_M&m;3^dHYsOF=DJ~J!)X~@Ov=}?+Bl??g@XJ)(4+@Mu)Zc{QCJ?y~ez$5gjMZ z&*)%lw)Ed!-y*s14Rv8N3;lgt=>M@`tB%jaiuhz~i>t%g&iUGXG3BZ*e$~Xgss6*y zm@oM`+ZUgYDb!|ld^O~JZ;bE%6|HBnEBKQyjcnA8f3*>JA!hTnv*R)P>-+t5xI2rH zFRed_rI>=w#ZV_&ACE`l&Jb%Br^E}PN6yuRUjEfgJw|Q4$NNJ(wW8Gw>W9AYxik2Y zpSxcScRb7KZ-YKL$XgCKgnpbJbiNe)Z-`gNx^RzwwRtS~QfI&FGvdpC3VraN(&GGM z^WU%at1qvMq5W4|9|?CZ4Kuwr7DLWr{`=S+X9peZojo~U(>?_s>a!v~5g&--L9@8> znd0Rk_pis1m<8=}dML#4EQYx63p2G8_E*Jtcc<2)mb2Ci@o2DPFCX>)&+(o3Cqd6Q zf*$ehv7h3ucteD)}(e=w%dM?Kyae4G|)c5B=p zSBHIi<^0JQeY&KzejX3!-XGe<-Vk~qS3aEctDgL@le1YE_wAWcdtV8;{@d_AJQ8N= zr0{P0<(r0U;(KvhJR54`T{t83SiC!93fkqXCjMY>jtBqp z8FT3GgPx4K554O4w(zSr=Y*PA^F8ubZ~Ob>-Juq1;w|&F{M7behWP66WYB7TB!;F< zt<9ZUtBD!W$DKiodM(e@{mX;@72#aJXnT8H6)%Lnn}RNN9Jx=e`FFaq@wIp{*sl$K)ye*z zPzSM34mtg8JQwtee_7Dr?}dKK|3GXGcSrskS|1AiF%Ptwqff_)A-){UCkJaca>0--5<* zSIj?+<@FzR9{Snq-$fxlE!N(f-wpOV!@gdrt-IHUe8s*g)YSL(-LWE`40_qqrnc9l#m~NQ|R%581dG%cK(idG(H&4?L87Zg1@cd z&Z_vcP+z|2vL60+w>}oM+ox3yZ-_sPS*Xjiu`%@clOf-cs~Nd2w#RuP{+eJjg}yDs zuAuXdI5X_u8urYuU+<#Y(8GqFY0i)Oy(zpWV!L}un0dVz-@oTtKN}as)xod4AB^=u zpLgrrkiYwP2OBxA4Yhh8MjzNb6sHE8AH-77x)|=WS66kQe+oIOD}U?{#1vv24ENRP zXsGQhelz$RGa>G~g01_TgWq?@sE_ZW*t6IY%WdT=H}8b~Cqqr-a(eK!GWeqXo?yQ^ z?h3imsK-;-!(YU%I2ioBHD;l%em4a_n`0L8@?D^ZjT+q>*M{%FM}xikF2&BcKiKRK z`s64FeR2P^uutRAd!Y3c^13Ki#J=F;)8XDXV&wa=*8G|wHgXy|UTA&A{8_DNqJI`= z#F)7suQxsVF2)oe33;3s?yHS6eY-K_J7)RAtw%n7oqaa+RW9!9rTh*DKl(9?p~v2r zLSEkA&&S7OR(C!NGbBInxp|#JTz$AX_+q;)%{beDKC&J%G zch`iNzBzQ>9YtBEx&KRJnQqw>BZLDV|}QB9<2(wo)G3*KW8z8SkHuh@$+z87~=WnUKJmUSH;Lh zoz#=>`-1js!};1!lRu1$W1R74KIk2DGPM?e=seO|-EIx{_%n0&&!6>x?+=Cei}5$1 zFZ?^xOMXs|Da3Pb1~$&uuj!X|-|lB(Pq=SyiZPRB@U9S7J>@oR#D7QZ4VvwnEi?BM zu_6wK{Z;c{T7DzEA8gMGc^(Y$`O*V=-Ia&;*|Ye1yg7y+y4J-zLvFJeHDF7Fz7N0d z*`I>%tK%PHe4pg1=5jE1<9j1-HmA*hKhiIsY+oDa2EF_{^Q&jRxl`z|`frLcd-A<5 z+}$2(K8yV!-rHi#g>!ifKVNN4zntA4{ZzZ34Yq2mKI4oJv&4rQoe}hlaY4K~{yrWL z=Wh(>qXt9Es`>ee{azJvRX4G`Lo4I_ke^(|H1GT3)4|rAy+PAUL9abJ{2mB>zBB0g zkHH`9&xBs6uU@JFy}m(DhPu!~hq<^f_+JR`#!Vr%e0_g+#c#zGVQ**X;U|LzwhzWF zu_X=$jUNj2c20wDlo=R)U)h@7-7y6%Sc)l}ofBqFUQ>uCm#@Y5g73c#{^jpk%;)CM zxA!YAz5b)%YkTnVNca|tqlaRNzbf7pN5cEfzjOXC2>Hu_Ke5cL9{$s~HT3wbxF^P} zoZZ@ex&D06`}Uy6EUySYAC56o;?Kf7$YFix`_@noy7{A9{m+e~;r3H;1sl1^eG0zlKN50%eXNWRgxr1@eDL+z`P%;481?v2>jy&pZw&tE z9=<%&w>!j_tJ$-br{3y=Jo%M__gvkka9@p<=Vzbxi^4lGg&eMq0qP7Cp@y?1`EiMNK_=%>#eGp}zSjuDeT zci4(W7Y+0uh|S@9wk7P3{w%h3=6TGlbNP8c&6`@VIU1vPVz7}f`&rx?X6J3epI8^h z1+l!2?$Z4`;oJ0V3_WVV@A_cl-q0v-?+i`s{mN;>{Q2R2Hw8WF@MP$vdb1zC|5a-< zA}9XYsHeDms`E!5Sb?7PSR>iD^^r z?{hdE%x7;}3|>!mPL`n4te-FHXLvbB7l3GdeTV-}x? zPX&EbsOj1e%eUl#SO~q_7Yy*kw0xw_HjS*~A>|2fo)o|l5Z$HFYLliw`l_jvI0=OK4{L)Y=v zdT{rA-)zW7F8s^!q4?1J`I3HV*)e|>Pi!@FS3idDF;im9Vtsrg_&*r@UlnR~Y1r4F z(NlgNo-X)_VEPxHyK!t*vP_U*eiEch8KSaYNWQ+x+SAw_@b3Hc!S6VkyoEIxdgv z!`!K@`@bGjh;6oZ2j6SsVDK*&8l1f@#`lMo9U+HVnA>A<-hBOHzsvJo)w8-k5PCiS zO+e@7xIOq7dHY=v;{R-H3H@SkPWX_YJj{Xj%6&1|tq;9Z7w?rEhMuci%Z2{~A(xMY z{!Jm)`@{3`P#<=5TGOD8+e2OSfX{1ViYMZI!N2%d#+yT}mcLK*JRCpnf5dX`j5fdb z#}wkLk9;=sRBI;rwu%6Z-nvcrwh8J+pFK>bNTS5#N3ONA1+aEWIx_ zg>Q?#zbwZ4abaucbhs~fJ$_@D8E10%-4JsMF~n9c>nTQEcC|jT?3tbW-;I%QQqG91K~{1#iC6et`0r+ zt2T0YLwqmX9knvIuZUj?_g@Mz_%tVeF9|WfK7W4G{P*d8r}+K(^W*)h%Y$Lo^i+Lr z4L06?`!B>jp%0&kW8v<92==FiyxjZg;AeUM*7|u>Yzwuvw-|4UZ^abq&7Yd+sTq1G zmdAgz=S@MgSx}cT6Qf^a9z6RNc=mfF^h|7fYva6dW{+;`t3xm3emutAS!?}fD_?b| z_kp-8j)hqQA8O=$ilN0lI=0UDoR8X$`QO_fo$?;DHfzlX8}ZGATKxU|Sw8BfmhSG3 zvxEPOVixLlPVlK_8$&*0|Mb?Y;#hb${H_mu|4dvTVh`>2&7U{)%YJ*@8)H_d)^dG$ zuvHIpa4h(tMUUP0JaU-k&qJH%(Odb9eyF>9{;lEH%+G>f-<*|kVyKll|5}*qTVj9s z4zV4+|GKqvao2{Pis$aPLmlL!cD^6K5PBppHctf|-peV5U-4;CBWLQw{=WsE^03F( z$KpV!3t!f3{wP)lO=Ev^Yx?%Y@mMo|wq9;y9!5`|X?E#XKCZjuYm;z87NM7z?pJX!*POv- z$*$I7of!1U^}3isZdb+wu|1scjajJqo}iyj^>j{?Iy@Hc9}9ba#WeqVcXO!Oi@{c& z?yHSj|5ltG>gE0v;#jYWwZT??i=m!szdGb(4%C2#QLCM;-4TE6sfBMC`$s~ZotsU1 z^v|<7ko)MfJI=*huJPSHi=m#|LY|(zOLVdS`7lFb9f(un%y=}^)qCKK_F*&h__b#S zrupy4WqZ%+@l2@S6+!Recp~WicTpDuKTlZJRicn+k+bMBI{FiXk2`XevwoRPcIIOWb>?6He_vBBrU+2fe zxjfZpV~p8*ZoWTyNaHziS?CLUzTCen)X2AUORNa~*=!H}`bx~gcST*Czbwp(8p%;C zKIHB9uY&)P=jzsCdEOdkVQ;9#6q|xZYxnf^opCtW!1r-O41Eu^rpdFsJ{V%S@0s>9 zf@X1NAurF~qtk=-?cx1g3iIJ_-a=d*=LP>Oh(pBUn;4l&v74E431Ld+3Y zFZky}e6z#P-N9ZR`F=dq`&BXOG2Vr#y+iRx%tGz>UyRMco>tmN+|f&Z^+~LaaZjk@ z8{&BQ_PHP zXY6){yZY|VVhn%VThnW{NB@0Krl6BvG37v)oP4h?j~|9w=#`kh!R$w!544ug10fFG zcf`7&=b0EapSAYwc3;ovKRACLapm)s*c~JH_qV3)zC)hH7EeyAf?j>RE=G=g(Yijo1A6oIP_J{tJ0n*%$75yit=`V= z4jRp$I$7Tww5q*4&WKT;S!=buA?T6+6r+E?+uHY147r{ie4G^QPYZFTU~^8WAFa;C zwExwRC*A69@3s){%|Rc{BaU3$_jgE5cgLB*o*m6{r-`k5ay3h0(CPPc1%t#Vp3GuWrr$wV_u-=i8R8hYq!qt9NJIpIX~r6Xs%L(57}~K|P%h z9dgv?Q5SaNZio?EJUNfJX6uf)H{|)3@xKN8C*#G?hdr@1?h1FN5J!&gUKfoOS_Vk<^ zqXy>B9PJBs_7_7<*q;(>LpfaHi{<(26+M0*ijT(s$9DY({aw~~zMp%gu;>A` zr^P|s_z6Zv0|ZZ;_145VhK>A4GP^eCSehUhcU(FIOn*?1+97&n=fxp5?R5WE zh~YjQiW_5R(4oGYV|$GIKeg6V^>3?_Zh+9HDh((heMr`l&iLo}= zT@g=(y3uQ2oKM9UgMapy#}u^a1^;Y^uFG1xzq7FKemxY|g?qOr_Qw73Tx<${)pz(g z*!r#E{EPGN_x7AZZAKlu%ZXn1WESVdsL!xl=$kpcJ@_1d6U@4pvtXm&&Ta^LPLEY_ zQOIAd#d&7_&W?UDtq;U3Mtt+2pWhAhv@z6r{3fxp{z!;N?;|nxkGGcZ{xFx9$K63Q zKm5^iZLpg{J>*5p;~`)7z?q)}yT#yd)W=PUhfa!CoHLQ}EB9_|L}PkR$!C z3Ew{uzE5#k>iP=jIb_r-k}TAbCx?}i-sJ3IJ3Ep7;XnuXYWS)UQ~ z{cU_IE(tMT8fs04Ua(P5e_Paqjukh8?d@%te@P5e1)rp?FE_|^H7 z-V8%>TZ$>Xs~exkV|&cv)R6n@Lmsr<5I>Eth5DzC~iuD)4-*3gpaaC)!`sjIW@cUTon?Lo#+P>!$YVv59 zrxo+(hMunry{1zxQ|OI(mDBpzAG4sDPrdT=eM`{&ccCBh(RZU(@=^P{K?N!h;b}v z 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⁣S9vk9g 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'VK7c+fg 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

E%ZH)YC`q!~HW-*0l&RJg>_k`TysefD0;QmO+ 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�L;apYMMX8xI=|Do`H?4{B9dt!V`Y8Kb5 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 z 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
ZG>z^SvSXeIkAk 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ʀ@RJ6*lI7 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 J_WT0z{{i@ultlml literal 0 HcmV?d00001 diff --git a/NNML2/display_nearest_words.m b/NNML2/display_nearest_words.m new file mode 100644 index 0000000..f338fe9 --- /dev/null +++ b/NNML2/display_nearest_words.m @@ -0,0 +1,28 @@ +function display_nearest_words(word, model, k) +% Shows the k-nearest words to the query word. +% Inputs: +% word: The query word as a string. +% model: Model returned by the training script. +% k: The number of nearest words to display. +% Example usage: +% display_nearest_words('school', model, 10); + +word_embedding_weights = model.word_embedding_weights; +vocab = model.vocab; +id = strmatch(word, vocab, 'exact'); +if ~any(id) + fprintf(1, 'Word ''%s\'' not in vocabulary.\n', word); + return; +end +% Compute distance to every other word. +vocab_size = size(vocab, 2); +word_rep = word_embedding_weights(id, :); +diff = word_embedding_weights - repmat(word_rep, vocab_size, 1); +distance = sqrt(sum(diff .* diff, 2)); + +% Sort by distance. +[d, order] = sort(distance); +order = order(2:k+1); % The nearest word is the query word itself, skip that. +for i = 1:k + fprintf('%s %.2f\n', vocab{order(i)}, distance(order(i))); +end diff --git a/NNML2/fprop.m b/NNML2/fprop.m new file mode 100644 index 0000000..f824fdc --- /dev/null +++ b/NNML2/fprop.m @@ -0,0 +1,86 @@ +function [embedding_layer_state, hidden_layer_state, output_layer_state] = ... + fprop(input_batch, word_embedding_weights, embed_to_hid_weights,... + hid_to_output_weights, hid_bias, output_bias) +% This method forward propagates through a neural network. +% Inputs: +% input_batch: The input data as a matrix of size numwords X batchsize where, +% numwords is the number of words, batchsize is the number of data points. +% So, if input_batch(i, j) = k then the ith word in data point j is word +% index k of the vocabulary. +% +% word_embedding_weights: Word embedding as a matrix of size +% vocab_size X numhid1, where vocab_size is the size of the vocabulary +% numhid1 is the dimensionality of the embedding space. +% +% embed_to_hid_weights: Weights between the word embedding layer and hidden +% layer as a matrix of soze numhid1*numwords X numhid2, numhid2 is the +% number of hidden units. +% +% hid_to_output_weights: Weights between the hidden layer and output softmax +% unit as a matrix of size numhid2 X vocab_size +% +% hid_bias: Bias of the hidden layer as a matrix of size numhid2 X 1. +% +% output_bias: Bias of the output layer as a matrix of size vocab_size X 1. +% +% Outputs: +% embedding_layer_state: State of units in the embedding layer as a matrix of +% size numhid1*numwords X batchsize +% +% hidden_layer_state: State of units in the hidden layer as a matrix of size +% numhid2 X batchsize +% +% output_layer_state: State of units in the output layer as a matrix of size +% vocab_size X batchsize +% + +[numwords, batchsize] = size(input_batch); +[vocab_size, numhid1] = size(word_embedding_weights); +numhid2 = size(embed_to_hid_weights, 2); + +%% COMPUTE STATE OF WORD EMBEDDING LAYER. +% Look up the inputs word indices in the word_embedding_weights matrix. +embedding_layer_state = reshape(... + word_embedding_weights(reshape(input_batch, 1, []),:)',... + numhid1 * numwords, []); + +%% COMPUTE STATE OF HIDDEN LAYER. +% Compute inputs to hidden units. +inputs_to_hidden_units = embed_to_hid_weights' * embedding_layer_state + ... + repmat(hid_bias, 1, batchsize); + +% Apply logistic activation function. +% FILL IN CODE. Replace the line below by one of the options. +% hidden_layer_state = zeros(numhid2, batchsize); +hidden_layer_state = 1 ./ (1 + exp(-inputs_to_hidden_units)); +% Options +% (a) hidden_layer_state = 1 ./ (1 + exp(inputs_to_hidden_units)); +% (b) hidden_layer_state = 1 ./ (1 - exp(-inputs_to_hidden_units)); +% (c) hidden_layer_state = 1 ./ (1 + exp(-inputs_to_hidden_units)); +% (d) hidden_layer_state = -1 ./ (1 + exp(-inputs_to_hidden_units)); + +%% COMPUTE STATE OF OUTPUT LAYER. +% Compute inputs to softmax. +% FILL IN CODE. Replace the line below by one of the options. +% inputs_to_softmax = zeros(vocab_size, batchsize); +inputs_to_softmax = hid_to_output_weights' * hidden_layer_state + repmat(output_bias, 1, batchsize); +% Options +% (a) inputs_to_softmax = hid_to_output_weights' * hidden_layer_state + repmat(output_bias, 1, batchsize); +% (b) inputs_to_softmax = hid_to_output_weights' * hidden_layer_state + repmat(output_bias, batchsize, 1); +% (c) inputs_to_softmax = hidden_layer_state * hid_to_output_weights' + repmat(output_bias, 1, batchsize); +% (d) inputs_to_softmax = hid_to_output_weights * hidden_layer_state + repmat(output_bias, batchsize, 1); + +% Subtract maximum. +% Remember that adding or subtracting the same constant from each input to a +% softmax unit does not affect the outputs. Here we are subtracting maximum to +% make all inputs <= 0. This prevents overflows when computing their +% exponents. +inputs_to_softmax = inputs_to_softmax... + - repmat(max(inputs_to_softmax), vocab_size, 1); + +% Compute exp. +output_layer_state = exp(inputs_to_softmax); + +% Normalize to get probability distribution. +output_layer_state = output_layer_state ./ repmat(... + sum(output_layer_state, 1), vocab_size, 1); diff --git a/NNML2/load_data.m b/NNML2/load_data.m new file mode 100644 index 0000000..f08b2fc --- /dev/null +++ b/NNML2/load_data.m @@ -0,0 +1,27 @@ +function [train_input, train_target, valid_input, valid_target, test_input, test_target, vocab] = load_data(N) +% This method loads the training, validation and test set. +% It also divides the training set into mini-batches. +% Inputs: +% N: Mini-batch size. +% Outputs: +% train_input: An array of size D X N X M, where +% D: number of input dimensions (in this case, 3). +% N: size of each mini-batch (in this case, 100). +% M: number of minibatches. +% train_target: An array of size 1 X N X M. +% valid_input: An array of size D X number of points in the validation set. +% test: An array of size D X number of points in the test set. +% vocab: Vocabulary containing index to word mapping. + +load data.mat; +numdims = size(data.trainData, 1); +D = numdims - 1; +M = floor(size(data.trainData, 2) / N); +train_input = reshape(data.trainData(1:D, 1:N * M), D, N, M); +train_target = reshape(data.trainData(D + 1, 1:N * M), 1, N, M); +valid_input = data.validData(1:D, :); +valid_target = data.validData(D + 1, :); +test_input = data.testData(1:D, :); +test_target = data.testData(D + 1, :); +vocab = data.vocab; +end diff --git a/NNML2/predict_next_word.m b/NNML2/predict_next_word.m new file mode 100644 index 0000000..66650d0 --- /dev/null +++ b/NNML2/predict_next_word.m @@ -0,0 +1,37 @@ +function predict_next_word(word1, word2, word3, model, k) +% Predicts the next word. +% Inputs: +% word1: The first word as a string. +% word2: The second word as a string. +% word3: The third word as a string. +% model: Model returned by the training script. +% k: The k most probable predictions are shown. +% Example usage: +% predict_next_word('john', 'might', 'be', model, 3); +% predict_next_word('life', 'in', 'new', model, 3); + +word_embedding_weights = model.word_embedding_weights; +vocab = model.vocab; +id1 = strmatch(word1, vocab, 'exact'); +id2 = strmatch(word2, vocab, 'exact'); +id3 = strmatch(word3, vocab, 'exact'); +if ~any(id1) + fprintf(1, 'Word ''%s\'' not in vocabulary.\n', word1); + return; +end +if ~any(id2) + fprintf(1, 'Word ''%s\'' not in vocabulary.\n', word2); + return; +end +if ~any(id3) + fprintf(1, 'Word ''%s\'' not in vocabulary.\n', word3); + return; +end +input = [id1; id2; id3]; +[embedding_layer_state, hidden_layer_state, output_layer_state] = ... + fprop(input, model.word_embedding_weights, model.embed_to_hid_weights,... + model.hid_to_output_weights, model.hid_bias, model.output_bias); +[prob, indices] = sort(output_layer_state, 'descend'); +for i = 1:k + fprintf(1, '%s %s %s %s Prob: %.5f\n', word1, word2, word3, vocab{indices(i)}, prob(i)); +end diff --git a/NNML2/raw_sentences.txt b/NNML2/raw_sentences.txt new file mode 100755 index 0000000..e6c6836 --- /dev/null +++ b/NNML2/raw_sentences.txt @@ -0,0 +1,97162 @@ + No , he says now . +And what did he do ? + The money 's there . +That was less than a year ago . +But he made only the first . +There 's still time for them to do it . +But he should nt have . + They have to come down to the people . +I do nt know where that is . +No , I would nt . +Who Will It Be ? +And no , I was not the one . +You could do a Where are they now ? + There 's no place like it that I know of . +Be here now , and so on . +It 's not you or him , it 's both of you . +So it 's not going to get in my way . +When it 's time to go , it 's time to go . + No one 's going to do any of it for us . + Well , I want more . +Will they make it ? +Who to take into school or not take into school ? +But it 's about to get one just the same . + We all have it . +So we will be . + You can put that out there . +But only a part . + That 's the only way I know , he said . +But that was a week ago . +It 's not going to be the last time . +I would not want to work for her . + They had to take it where they could get it . + I said that was nt the case , he said . + This has been a good time in our country . +It 's like a new season . +But he was there . + It was good , but it was nt good for me . +But he has made it back . + We know when one is up , the other is down . + This is high end . + I want to be here every year . + Could you take that much time off of work ? +He should have more . + That is what I like . + Not at this time , he said . +She found not one but two . + But it 's the other way around . + This is not a program , he said . + I did nt know what I would say . + All in all , it was a good time to be in New York City . +And that was a long time ago . +There 's more to do ; we have the next game . +It was time to get out . +But it should not come down to that . + It was never the money . + No , said the man . + I found out it was nt , he said . + You do nt have to like them . + Not even one more ? +That is , if there is a next year . +It is this year . +He may never come back . + You come here now . +All right , all right . +He does nt want to do that . +If , that is , there are any left . +My life is where it should be . + That 's what this is going to make us do . + How do you get to the city ? + Last week , I could . +What to do , what to do ? +That 's when we come back . + Both , he said . + It 's a , how do I say it ? +He was nt even from New York . +But some people will . + Are they going to do it ? +It 's best for us . + And they should know because that 's not how I want them to be . + Women who can do . +It just does nt last very long . + We are him , and he is us . + I said : You are right . +But that 's not the way of the world . + Will it go to the state , which could use it to house people ? +I do nt know how much more you can say . +But this was big for us . +Now , we do . + People were in the right place at the right time . + It 's to the left of that . +Then it has one . +After a while , you do nt . + I did nt say that , I said . + For some people , it 's not . + It 's a good life out here . + It had to be right , or we did nt do it at all . +After me , it 's the United States . + He said , No , I did nt . + What 's about the money ? +It was like a big high school . +There may be a market for this . + I would like to be President , he said . + When you have to go , you have to go . +If you were a city , which would you be ? +But that would nt work . +But it was as if they left . + Well there are times when you are on and times that you are not , he said . +And just as well . + I will do it . + There were no children . + I do nt know how they are going to come up , she said . +We are more of a team . +You all right , man ? + If I could , I would go back to school , he said . + If he was an American , it would nt work . +But what if that had nt been so ? +They are one game up on us . + People still do . + We are in for it , are nt we ? +Get your money back . +There 's just no children . +A : I have been to the States many times . +What would it do to a man ? +But he could not say when . + But , you never know . + But if he does nt come in , what can you do about it ? +They did nt just want money , he said . + And we all do . +There 's only so much we could do . + I can get with that . +But is this so ? +I do nt think many people know . +There is much less of that now . +This is their time . + They just do nt want to do it . +Play like you know how to play . +But there is too little time . +He had a right to be . + That 's all you could do . +You might not want to know . + Do you have that ? +They see it now . +We have to use what we have . +Most of the money would come from the state . +And he just has not . +You are just not one of the right people . +We think it 's best . +I do nt see any school . +This is a man . + That was the first time , he said . + I would nt be here today if there was nt . +We do nt know how much . +We make money for the university . + Who would nt ? +But then we get to it . +He has the money to do so . +She : You should have . +It 's there for us , too . + But it is such a big day . +This is home now . +To think too much ? +But if that was the case , it did not come through . + I just want to go out and show that I can play . +I have to work on what I can do . +It just was nt time . +If so , who ? +It has to do what they want . +It 's going down some more . +You know , it should nt be that way . + I go New York . +We would nt make it public . +It will be a big day . + I want to say , That 's life in the big city . +Well , some of it . +From now on , this will be a national Government . +I do nt think very much . + There was not one place we would go that people did nt know him . + Then we will have some more to say about this . + What 's not to like ? +What would people think ? +They know this is what they have to do . + This is our city , our country . + How long do I want them to last ? +It was his second . + He had to have it . +Or to a city . +Three years ago he did just that . +From there , though , you are on your own . + I could nt say that . +And that would nt work . +We are still a city in the United States . +And when it 's over , it 's over . +He is not the man for that . +We are the children of war . + It did nt work out that way . + I would nt have it any other way , he said . +Long , long before us . + Is there too much of it ? + Which she did . +But life to me is much more than money . + Two years ago I could nt even play . +So it has been for some time . +We are going to do this our way . +It should be more . + We do nt want them all , he said . +But then they are over with until next year . + I was nt the university . + It has never been found . + But he does nt have a home , I said . +What do we know ? + He said , It 's another way . + But when you get home , you get him out of there . +He did nt know what or where they were . +But only a few . + But he would nt come down . +Too many people have it . + I do nt want to do that . +It was nt what we were used to . +They want her back . + They did nt back us . +A : No way . +That 's not what they do , these two . +So I do nt know if it is or not . +I think like a man now . +Might get that one of these days . +No other night had more than one show . +Here 's how I see it . + But we were all like that . +And , I do nt know . + You get used to that . +They just do nt show it much . + But is the war over ? + But that was a big if . +He , too , is out for the season . + He 's not going after the company , he said . + When he was here , did we get there ? +That 's the way it has been for the last three years . +You can come and get it now . +They can and they will . +This place can do that to you . + It was nt us . +I was no I . +She had no one over there to go to . +It 's all about children and music . + You still have to play each game . +It should be in there . +Now I like it . +THERE was no money for school . +And you think that it was nt ? +And he could nt . + It 's when . +And not only then . +I come back to : Can they ? + You never know , he says . + It 's been a long year , he said . +And it would have had to go public . + I said : That 's good . + Not even our children . + It 's our last home game . +And you still might not get it . + It has nt been about me . + I do nt know too much about it . +Had it come out that way ? + This is my new life , he said . +She has to do it . +Play a year or two . +What do you play this game for ? +Is that good too ? +We were not that family . +We do not want them to be around us . +But you work with that you have . + We have to play the best we can . + It 's with us every day . + So I did nt go . + No we are not . + I said , How ? +I can not see through them or around them . + And he says , How big is it ? + But you may not see that one this year . + That 's not a part of my life . +Could we do more ? + I play my own music , he said . +You just have to do what you have to do . +And we go from there . +How can we be the best ? +We were nt going to go there . +And how did he do that ? +I do nt want to be there with that . + But at the same time , you know they are going to play well . +It 's good for us . +It was more than a house . + It just did nt come through . + What in the world would they do ? +Could that be right ? +All this she does very well . + It 's about being American . + I do it after the first week . +That may still be . +It is time they did . + This is only your second . +There will never be another . +They are part of my life . +I own the place , you see . +That was his life , second to his family . +These are never going to get used . +WHAT are they going to do to me ? +This is not just a business . +Could we go with them ? +That 's because they have no team . + Who in your family ? + A good one ? +She does say no . + He put her off . + These people do business the way I want to do business . +It was about this time last year . +I think about them before . +Because they are going to get there . +This one does nt . + Now there are two . +We would never go down there . + It 's work , she said . +The same could be said for the game . +So you do as best you can . + It just is nt right . +For him , they were . +She would have to come back . +I do nt want to know about it . +Some of the big money is in war . +That 's what I take from it . +Government money is not the government 's ; it 's the people 's . + Today was nt one of those days . +You get out what you put in . + I do nt know what that was . +It 's another to go out and do it . + What a world . + I do nt want to put my business out in the street , I said . +Yesterday was his day . + It will have to go on , he said . + That 's not my way , he said . +Now you do it . +What do we make of her now ? +What good does that do ? +We are not going to go on and on and on . +I never get used to that . + He had no right to do that . +In my house , it did nt work . + Like me , he does what he has to for his team . + I know I had to get out . + Well , I have -- all my life . +That 's life out here . +Will we do it ? +This is where the most people were then . +It never has before . +Where does this come from ? +The second best time is today . + We are not used to it . + For me , right now , I know that is the best place for me . + It 's a show , she said . +What will last is what he said . + Man , that 's a long time . + They go out and do what they do . +That is not good for the United States . +How long was she in there ? +They want him out , out . +And what have you found ? +It 's not what you know . + Made for us ? +But how good can I be ? +We do that very well . +The West does not know how he will use it as the years go by . + It 's not what you think . + Very , very few . +I do nt know if I could have made it . + It was a big game for us . +We do nt get them out . +Then they go home . +Just go to the market . +You have to play that way . +She did not make this team . +But it 's May . +It was like that . +They know us as well as we know them . + What do they want ? + How Much Is Too Much ? + I did nt like them . +Because it 's all about I want what I want , and I want it now . +Does it still work ? + I was one of the few people I know who did not make any money , she said . +We have so much going for us . + I used to think there was only one . + And they are not going to this time . + He said : You . +You can only play so long . + I said , If you were me what would you do ? + This is what you like ? +Not much I could do about that . +It was nt the law . +We know that we get each other . + It 's not that that does nt work . +That may be just as well . +Very few people can do it . + That 's what government 's all about now . +Where does it say there has to be another ? + But you only have one , and you should . +He could not see them . + Like us , it has no home to go back to . +But she was one of them . +We are a good program . + Is that right ? +They come back year after year . +How about at first ? +Where is he from , and where will he take us as a country ? + They should all have them now , he said . + But I do nt know by how much . +So what do you end up with ? +But is nt there more to it than that ? + It could be both . + That 's all I get to do ? + They have come home . + Out there , no . + Next time , she said . + We said , You are right . + What I do with the money is my business . +Not this week , though . +I will have a family one day . +He did not say that this time . + It will come , he said . +But they do nt know that . +But it 's just a game . + I do nt want to be left out . +It 's going to take a long while . +There is just no other way . +It is not the case . +Now it 's this . +And it was nt only about the money . +I do nt want to go to school . +A few do , but many more do nt . +This is my house . +It 's his business , he said . +I did nt know how much time he had left . + It 's all you want . + How are you ? +He has never been there before . +Some just say we do nt want to , and that 's it . + You have to play . +I had been in office two years . +But I do nt want to , you know . + How come you never had children ? +If I can do it , they can . +Take it he did . +I do and I was . +Now , I want four . + It 's not what they say , but how they say it . +How does he like New York ? +I know it will work out . +You do nt want those people . + I would say . +Most people do nt . + Here 's what I do , he said . +But now I know who they are . +But go for it . +But when , and how ? + Day to day you do nt think about it , he said . +Should I have come to New York ? + He had to go . +And it still is . + People see who they want to see . +We do nt know what to make of them . +And even if it is , so what ? +IT could have been any of us . + Are you going or not ? +It 's all we know . +He 's one in a million . + She was just put out of business . +Will there be one for you one day ? +But you do nt do that . +Well , so did I . +That is the way it is in this show . + It is a part of life . +He does nt want us to know . + I did nt see it that way at the time . + We have only two million people . + That 's right . + Well , we can do this in less . + There might have been a few , he said . + That was my house , he said . +They all said take this and get it out of here . +I think many do . +Do It My Way . +It would not be the last time . +Or is it some place in between ? +What , work these days ? + The money you make ? + It was nt their best day . + I think of her all the time . +He said he had nt . +Well , you know . +And if you do , you know what you have to do . +This is very much a play for today . +That is what it is like in life . +He is used to all that . + It 's just a set . + I was in the right place at the right time , she said . +And I think so , too . +What did he take from them ? +We know what white people think . +What is it about this game ? + Where will you be next year ? +But that 's no way to put it . +But he does nt have to be . + They did nt know me and they had been with her so long . + It 's people like me . + I do nt want to be any part of that . + But we can not say that we have all of them . +A Day in the Life . +I like my team . + For me , this is it . +But it will not work . + I said , How do I know that ? +It was a first . +So did the last . +But first place is there . +But not in white . + Or next year . + I said , Where would we go ? +So , just think . +Then we would play . + No one around here does . +And in this case it did work . + We had nt . +I do nt think we should be here . + She has to be . + I still do nt know where you are . +We should play our game . +So what will the government do ? +But I play the only way I can . + And then they do it . +Because , in a way , so was he . +And then you do it . + It 's been that way all year . + I like him , too . +You do nt know where the Court is going to go with this . + But we can use him there from time to time , he said . +It 's all on me . + But there is no other way to do it . + These are the people we do nt want to know about . +And what school would that be ? + We have never had a case like this . +He did just that this season . +You have to make the most of it . +For many of them , it would be the first time they had left New York . + Do you see any people around ? + It had to be . + It does nt take a program , she said . + It 's not like that here . + It 's just my life ; it 's what I do , he said . +So I do nt think that . +You should go home . +That is all I have to say . +We are right in between . +Our members are the best . + I said , when ? +Do nt make us do it . +There was , and there is nt . +I come every day . + You did nt do that . +He 's been around it all his life . +We do nt go there . + We just do nt have that here . + Now they want money from us . +We did nt know what time it was or which way was up . + I could nt , but you can . + But it 's just a part . +He is us , and we are him . +There was a game that night . +Is he still the best ? +But you have to get there . + I will take all of my children back to my people . +He 's a man . + What did he have going for him ? +She did not even know what one was . +Right , right , right here . + At one time , this was the place to be . +My one and only . +Next year could be her year , too . + You never know . + We will have to work on this . + And then you will want to come back . +He has nt said that to me . +One , two , five . + You do nt have to get it . +That could take several days , he said . +You can see that , too . +Do you know about this ? + It 's our right . +That 's his life . + If you want to do business you have to be national . +You never know when your last game is going to be . +The court was his office , the place he did business . +It could be the police . + If he did so , he made some money today . + They said , You have to come down here and see what we found . +We will never be through . +I had no part in it . + It was good for me to come back . +He says , You want some ? + They know New York . +They do nt have as much more money as you think . +This was a new one on me . + I do nt think most people get it . + He might just as well have said they will not . +What 's been going on out there ? +If we were all out here going on our own , we would not be as well off in the world as we are . +How could one not know ? + For it was not my work . + And it was nt my music that did it , he said . +He did nt know what was where . + It 's not what we used to see . + There is a very good team in place . + I have to play through it . +Is there an end to this ? +All around , it 's just country . +That 's what I want to be . + Do you want to see it ? + We are going to go on . + He said , What are you going to do about it ? +And what does he get for this ? + I could nt go back . + You only think it is . + It 's not good for them . +We do nt want to be . +It was a good life . +We have to get that back first . +He could not go home . + I want to be where my people are , where they know me , she said . +And then there is the United States . +He is home , at last . + Two years ago , there was no one , he said . + You are right to go on . +What do you think with ? + How did we get into this ? + I have a long way to go , she said . +That was nt good . +It 's not who you play , it 's how you play the day you play . +And we all know he can play . + And when was that ? + The time was right for me now , she said . +But it does nt come off . +Want more country in your life ? +You know , they made money . +She does nt know if she will use it . +I can do without all that . +Some of them been there before . +This game could be more of the same . +It did nt work out that way , though . +This one is both . + You see , we just do nt think in the same way . +But what if he or she was nt ? +They are out to get what they want in life . +How could you do this to me ? +It is who they are . + Today was just one of those days . +No , he said , we could not come in . +I know about the game . +I had to think about that . +No , I do nt think that 's the case . + We will have to work some more . + How could you know ? + We have each other . +It is called The Time of Our Time . + We are old , he said . +I would say , But I have no money . +About as good as it could get . +I still like the place . + It has to be this way now . + Is that all ? +I want to get out of here . +Come on , you are not going to do this much . + We can not be political , he had said . + So that was good for us . +But what would the public have him do ? +Only in New York . +And I still may . +That 's it 's good ? +There 's no time for that . +I do nt think it 's going to go more than a week or two into the season . +We like it like that . + I just did nt want any more , he said . + Where have you been all these years ? +They would also have less to do . + Do nt you think I know that ? + You can do that . +If so , it 's John . + This was a show . +There was no one at all . +He might well have . +And he 's still at it . +But I like this team . + I do nt know . + Where 's that at ? +You should come and see it . +But that 's what it is . +Take it out of here . + I did nt have the money , he said . +This is what I want to do . +He has it now . + This is the time we want to play . +Is this too many or too few ? + It 's a good life , though . + It was nt so much me , she said . + Come to me . +Without her , you would not have set out . + And they said , No you do nt , you go there . + We do nt have to work that out now , he said . + I did nt do that well . +But then , they did nt have to . + But how all right ? + My good man , I said . + This is my case . +What do they here ? +But I just did nt know that . + She was that way . + I long to put that up in my house when I get out , he said . +Where did this come from ? + That 's what I did , he said . +How does he know ? + I have my life , she said . +I do nt have any money . +We know we want to go . +Did you know about this ? +But he was a good , all around man . +This was not to be the night . +It is the people who will not come . + We are the business end of it , he said . +First , most people do nt know about it . + It 's right here , and you get to know the people who work here . + Not only were they out to get him , they did . + No , you have nt . +Will it be the money ? +It would nt be there long . + But now I do nt know . +I did nt know you could do that . +I was nt even in New York . + You know what you can do ? + I do nt want him back in my house . +Now I know what these people are going through . +How did he like it ? +Where will we put our money ? +That 's what you get . + We have nt had this in a long time . + That is not the city I see out there , he said . + It 's not that at all . +Both have now left . +She has to get used to it . +He has left the company . + But it would nt work out . +Now it 's all market , market , market . +She could just say no if she did nt want to go . +We do not know what we will do without you . +That was not our way . +We are going to do what we say we are going to do . + Next year we are going to . +A : It is . +Now three of them have found it . +It will never go back to the way it was . + All of them say they can go on , he said . + There is no way . + I think it was that . + I do nt know what it was . +But it never did so . + But it was the first and last time . + He 's my president , too , he said . +No , Right a Little . +And so do we . +It had nt been like that at all . + I know what I have to do . +I know we can . + This is not about what we do nt have , but what we do have . +Now that was a team . + I like that , he said . +He would think about it for a few days . + It 's a long game and a long season . + Where are they now ? + I know what the game is , he said . +I do nt think it is going to be as long as people think . + How high is high ? + High school , he said . +It 's going to take a long time . + The money just was nt there in the family , he said . + The one you know . +I can make it , she said . +Last year is last year . + How should we know ? +We also want this with the United States . +We all know it 's going to come down to that . +We all know you . + Every time , no . + We are good people who just want to work , he said . +The work is never over . +So , what 's it going to be ? +It was a place like no other . +That is not good , for a team as good as we were last year . +Life , this was life . + That 's what he said . + They know all my business , she said . + That is not where they are from . + I say , Case law . +I just go about my business and do what I have to do . +But he may not have . +And what if it could nt ? +We are just not going to do that . +There will be two . +So what does the public think about this ? + I do nt know how to say it any other way . + And the other ? +I do nt want to be next to him . +How are you going to do that ? +You just can not do that . + But that 's where we are right now . +Where did you get the money , Mr. President ? + How does she know ? +They did nt go well . + I did nt think much of him back then . +She is what she is . +Well , good for her . +I do this with my family . +Not one in a million . +So that 's the way it 's going to be . +Well , no , in the end it is nt . +It 's like we were here , but we did nt want to be here . +Get used to it . +What can we do about it ? +It will be the same way this time . + I did nt think that she was right , but she was right . +Can we know it ? +But here , even more so . +More than that I do nt know . +Do nt you know there 's a war on ? + You think over and over . +Money is part of it . +There 's only one of me . + Even if he does , so what ? +It 's such a good out . +He said he is not in the business for the money . +Which will it be ? + But it 's over with now . + But you know , it did nt end . + I get some of that . + I do nt have to see it . +But it 's also not the end of the world . + What can they do him ? + You are part of another world . + And he would be right . +And this is not one of them . + The first game was , he said today . +He said he was against it . +But we do nt know what they are . + I would nt say he 's out for the year . + This is not good , he said . +It 's the same way today . + He had it all . + To say to them : no more . +What was the first part of it ? + It can work with you or against you . + Just to see what 's going to come of that . +They want this to go on . +I like it that way , also . + You make them . +We do nt like being here . + And that 's what we are . +He did it last year . + That 's what being a team is all about . + I want to make the most of it , he said . + Can I use it ? +It has to be made to work . +Most of the time , it does nt come to that . + But we are going to get it right . + I could never get in . +We did that today . + They want the A , but they do nt want to do the work . +When , he did not say . +I was nt going to take that . +He has other people . +He just said , We all get them . +I did nt think she would do it . +Now is the time to get one ? + It will put them out of business . + It 's not about me , he said . +We just have some more work to do . +If you have that you can do it . +It may or may not have been a first . +So it 's come to this ? +We only come to work . + I said , All of them ? +He who does not , does not . +And they did nt want to see the business go under . + We do this every night . +It did nt work for long , though . + They are like people , he said . +Do it without me . +They may have to be much more . +But she did very well there . +When do we get a life ? +Take them any way you can get them . +Not his , though . +They would nt do that . +She does nt know where he is . + Did nt have it . + What are we here about ? +It was nt me . + I said I could do it . +But he says little . + This is our team ; our team is in place . + It was a good day , she said . +Well , I know what it is . + What can you say ? +You want to come ? + I can do it , he said . +I do nt think she was . + Many who do come back . + What 's it all for ? +I do nt think that 's going to work . + There was so much work put into it . +And if he did nt want to be here , he would nt be here . +Though not for long . + One day at a time , he said . + But we want to see more , he said . +How does their day end ? +It 's just not the right time to do that . +In the end it does nt work . +When you are at school , you want to do this , this and that , that . +You want to be you . + That I can still play , he said . +I do nt want it , but there you have it . +And -- well , what do we do ? + It 's not the right time for me to think about it . +But what about people ? + It is still the same . +That was nt me at all . + This is nt business . +Well , I did what I had to do . +Here 's where we come in . +The President was right the first time . + You are not even the best of your family . +But that 's part of the game , is nt it ? +It 's how long you last . +Next we found out no one could show us the money . +That 's the way it should have been . + This was what I was going to do . +Not even for him . + Now , I know . + You have to , he said . +They said they did not know when they could come back with more . +That may not have been the case today . +Like the other day . +We did nt know it was going to be like that . + And it 's like . +And there 's no place for that . + And that 's their right . + But it 's just that . +They said they were too old . +But what is going on ? +This is how good life can be when it 's good . + What I do , I do well and I know it . + A long time , you know . +He did nt get that from me . + But here it will take time . +But what 's there when you get there ? + It was one day at a time after that . + It 's up to them now . +I know I have to . + But she did it . +There 's not much going on . + It 's too big , she said . +So , all right . + They are here . + It 's every five days . + Now , I do nt have to do that . +I made money , too . +I have to be out there . +No way , you say . + This is all new to me . + Life is like that , he said . +What 's in it ? + I was there , he said . + I like to play . +You can do it at any time . +But have nt we all ? +They could make a game of it . + It 's not the President , is it ? +Do you think it has nt ? +Do they get their money back ? +You have to make it on your own . +But I like the President . +And that 's what I did here . +I did it here for my people . +That season is over . +But what are you going to do about it ? +There was no time to think on it . +But , she said . +But people here used to work . +Would that it were so . +And what a time it was . +We know it will work . + You just do nt see that play . +The work will take three years . + They want Mr. Big . + It will be just like it was that day . + And we are going to get down . + Would I like to be President of the United States ? + We do nt have them , I said . +So I had to come here . + We are still family . +That 's the end of the program . +They do nt think like that . + You have to work . +And what a game it was . + And we like who we are going into the season . +I do nt want to see him go , but I think it 's the right time for him . + It 's just part of life . +But even then it might not . +Is he his own man ? + And most people do nt have the time . +There are a few more . +This is my office . + That did nt take place . +I just go home . +But they want to do this . + How could they do this to you ? + Who will it be ? +We do not know what to do . + It 's my people here . + If they had just left it as it was . + And before that ? + Would we like to do more ? +Are they the world ? + The city is where I work , she said . + Who was that ? +He just was nt into it . +The other day he was nt good . + I want to be the one to do it , he said . + My old man was right next to me . + For them , it 's good business . + People do not know who she is . +Did there used to be more time ? + I know so many . +I do nt know if we are going to make it . + They do not know what they are going to do . +But , are they ? +But then , where are we now ? +They said , Come on in . + It will all come back around . + He said , All the way . +That 's one every other day . +What will he do with it ? +I said , Man , I want to do that . +If you say so . +How would it be ? +We , we , we . +We should do it one more time . +What do the children think about this ? +But how do you know they are right ? +What then does the law school do ? +Our government is us . + All over the place , he said . +I just want to know if they can do the work . +We are still the same way . +But to do what ? +It was very , very , very good . +It 's part of the season . +They have the life . +Can we take some of your people ? +People come to New York more . + Not with us . +I do nt want to see it . +But , there 's more to it than that . + I do nt like it here . + But would you do it my way just this one time ? + I have them all over the house , he said . +There 's no one that good on our team . + I said , It is now . + It could have been any place in the country , he said . +It 's all in the music . +WHAT TIME IS IT THERE ? +But it 's a business . + Now they are not there . +But those were the old days . +So if you want to . +But now there is not time . +It has to do with one 's time . +That 's all for now . +That 's the place to play . +It should be so over . + And I think we will . + We go home . + What they did was nt right , she said . + It 's a place out of time . + This may be the one . + Now I have it . + A big part of it . +Just to know that you were home . + They do not have a case in law , he said . +But it just is nt so . + This has been going on . + But this is all part of the business . + He want us to do right . +Now he is right . +And we think of them today . + They are night and day . +Or you do nt have time . +You could nt do it . + You can have both . +What business did she have here ? +But we know so . +That should show them . +He 's Mr. New York . + I do nt want to go there , he said . + But we are going to have to play through that . +When can we get out ? + It is as good as they come . +For now , this is the good life . + But we made it , he said . +He was just in here . + But I did , he said . +They left at night . +But it was not the case yesterday . +The war was on . + I think the time has come . + Do you want this or not ? +Two on , two out , two and two . + There still may be . +But this year may be its last . +Like , what is going on here ? + That 's him , she says . +It does nt to me . + I do nt want to say he 's going to be part of the team . + We had been through so much , she said . +That 's all we know right now . + That 's where the game is now . + This center has not . + Only in New York , he said . + How should I know ? + And that 's never been the case . +Now how could that be ? +But she could nt . +How do you know a good one ? + When did that other life end ? + I do nt like it , he said . + That was then , he said . + It might take us all that time , he said . + That would nt do . + Business has to do more . + They have been for years . + But I did nt know if he could do it . +How did he come through ? +Good for him and good for us . +That was three years ago today . +He was right about that part . +Many say it is . + It is when and how . + I do nt have much company . +But it might not . +He is out now . +I still play on it when I go home . + Who does nt want to go home and see their children after all these years ? +He or she is us . + But my game was over with then . +JUST a little more . + How much do you want to put down ? + What do people come here to do ? + This is my home , she said . + I know them but not that good . +Many were out of work . +What can come about ? + I would nt think this year . +And this is the place to get them . + I just do nt think about it . + That is my life as I see it . +Just one more year . +I know he will . + Come , I say to him . + But I did nt have to . +Life does go on , you know . +And we will see where we come out . +So life had to go on . + We should have , he said . + But we all know this is not the end . +That was nt him . + He has been through this before . +There is more to do . + A year ago ? +This is not the way to go . + He has had his day . +And What Are Days ? +He still does nt get it . + I like that one , he said . +I do nt know how to say it . +I do nt know about that . +And he is that . +The season is what it is . +We do nt want to go there . + But I just could nt take it . +I should have called . +It 's a good life . +They will never have it back . + And to his family . +But right now I would think that . +Did nt that used to be the big one ? + People I think were down on me . +Because that 's all there is . + How about that . + You think about it . +You do nt think they were going after children , do you ? +And so should we . + I do nt even think about it , he said . + And today , that 's just what I did . +You are out there . + But that 's not the case , she said . + It was the best out there , he said . + How could people do this to other people ? +They can not do a good show . +And last night was some night . + Now the five years are up . + We want to play . + I think about my children all the time , he said . +But that was last year . +How would this work ? +It is being found . +Last year , he was second . + One time we did that years ago . +So where do we go from here ? +Not most of them , though . +If you do , then you are like me . +New York : How are you ? + This is our case . +This was not a good day for him . +It may take some time , but he should come around . + That 's not very good . +This is what he said . +And I can do that for the city . + It 's good for us . +It 's for me . + And that was that . +In New York , it 's business . + But they are all out here . +And does he have one ? + We did nt have that last time . + But I do nt do that now . +I do nt even know what 's going on . +No one will get through it . +Life did nt end . +We like the game the way it is . +I see him three , four , five times a year . +But not with all . + Very little , she said . +Now there is no other way . +And it is nt the money . + The play is on . + We just do nt know how it is going to play out . +It 's a family place . +And it was good . +There might never be one . + That 's all right , a man said . +This is home from home . +And I know we can do so . + But I also said , I never say never . +That 's not up to me . +Is it going to be good ? + THE WORLD OF THE NO . +We want to go back . +I want to play here . +My home 's there . +He 's come a long way . + Us , too . + Is there any other place ? + You can even take them with you , he said . +There was no night . +I still have a long way to go . +So which is which ? +If only you could get them at home . +But they will also be . + We have to play . + It 's not my money , she said . + She was on her own here . +This would be home . +Where to put all the people . + That 's all we did . +If so , how will you do that ? +They found no one . + There are people in every school that can do this . + I have nt see any . +They all work against each other . + I was there , White said . +Until they do , he is set . + That did it , she said . + They take a week . +You are not just a case . + Because I know I did nt do it . +To them I say : No more . + Did we want to be here ? +They did nt come this year . + This is where my people are . + There , I could see . +It 's also good business . +I know all this . +He never called back . + I think we are going to have a good team , he said . + Who would nt want him ? +But not against us . +What does a public school do ? + I want it to be what I want it to be , he said . + I think they are the best around . +If they had nt ? + I did nt and said so . +For them and for me . +This is one such time . + Not very good at all . +Then how does he do it ? +I do nt think the people want it . +That did not work . +Today , it did nt work out . + We are in New York City . +He would nt say which one it was . +He was right about that , too . +And now , so is their season . +I think that much of life is like that . +It can not be made right . +You have to work at that . + I go where I can make more money . + I have to take it one year at a time . +WHAT DID I DO LAST NIGHT ? + There may be many people who know . +That 's what the law says . +That 's not the way it is . +But who said it first , and where ? +That 's all we have now . + Which is which ? +For some , it was the last time . +They have no money . + It 's like this . + But I do nt . + I can only do what they can do , she said . + The President said no . + But that is not the case now . + Who 's this , Who 's that ? +I know it does . +And some people do nt have time to do that . +It 's more than over . +But they put me back out there the next day . +I have nt see that in New York . + If we could only do that in the last game of the season . + Business is good , he says . + You think there 's another season in this ? +Too many people know about it . +Not on this team . + It might do some good . +Little of it was there . +I just play the game . +All I have to do is play . + They are not going to do it on their own , he said . + I said we still do . + Where does that put us ? + Do you know how good you are ? +Like We Never Get Out There ? + It was nt my best day . +Her , I want here right now . +We had to go to school . + I just did nt know how . + And he said , No , it is nt . +On the court and off . + He did nt come in , and he did nt go back . + They said , Are they home ? + We want to see how they work . +Well I do nt know about that . + Well what if we do nt want to be found ? +But the game was nt over . + We did nt come back . +It would nt be right to think about just one . +But the night was as he had left it . +It does nt take long to see that they are not , he said . + But he is not . +That I could do . +Too much , in one case . +If they want me here , that 's the way it 's going to have to be . + No , too big , he said . + I have no children left . +It was nt about money . +And when will he do it ? +Not that he has nt been here before . +Because they do nt want to know about these people ? + Should this even be on the market ? + Where is it from ? + It has to be right there with you , he said . +I think : It was nt me , it could nt have been me . + And he was good to go . +Most people would have been like , Come on . + Good , she says . +I no go out . +But it 's four days out . +Or should we see it another way ? +Is there a war at home ? +He was there , and we were not . +How little they know her . +I know it 's time . + You do nt have to , I said . +I do nt know if it 's still there . +It 's who can get to it . +It did , he did and he did . + That 's the only time you see them . +They called me in , she said . +You are on all the time . +So , is that all they own ? +But by May , he was back . + That might have been the best one . +People are not used to that in life in general . + Do you know where you are ? +It had to come out . +I never use it . +If they do this , he does that . +For the most part , they are right . +I do nt think I had that before . +In a year , my time would be up . + We all like each other very much . + But no one was . + But there is a long way to go . +I said : Every night . +You do nt know when . +We want to come to New York and play well . +But he is on his way . + I know you are up there . +This is nt just old people . + It should nt , he said . +You have to think . + We are a little company , so there 's not much we can do . +And what if they did ? + And it is , and they would be right . + I know what he has . +But she 's not . + I do nt even use the some place . +It was only for company . + Your family does nt get to see you . + It 's their President , he said . + I do nt know what to say , he said . +I think I can , though , with each game . +There will be a time when I do . + And he was like : Only the first one . + Who 's going to come and get me , and for what ? +They are going down for good . +It was just that people do nt think all the time . +She has never been found . +We are still in it . +No , he did not . + I did nt know who it was , he said . +I would take him in a second . +I do not like them . +It was good , but not that good . + That 's what it 's all about . + No , the best . +But the music is very good . + All this for another day or two , another week or two , he said . + I do nt know how he can say no . +People did nt know what was going on . + There are other states , too . +But I think you are going to see some of that . +He would not and has not . +I think we are about even . +You never know where life will take you . + I see it as it could be , because I know what it was . + How long , I do nt know . +But it 's good . + But here , too , even more is at play . + If he could even do it at all . +Because we go to school . +People first , then money . + They work well on me . +He 's the best . + But it does nt last very long . + People in New York go out to have a good time , he said . +He did nt go to war . + I would do that for no money . + He 's the one , she said . +It 's a family . +The more you see of it , the more you want to see . +I think you should work with where you are from . +Year after year , they could nt get in . +They all said they did nt know , or How would I know ? + And she said , Did you have to do it now ? +It 's too much money . +It was her first game . +But you have to see if they can last all day . + Not many did . +It 's all there . +I just had to get on it . + Well , no , he said . +He 's well on his way . +You are like my man . +This is just not so . + Where are we going from here ? + You never know what you are going to see in New York , he said . +Or he could go second . +That 's the way we have to play . +Just what is it with these two ? +It was his life 's work . +It has a good time . +Who can I get even with ? + He was part of the city . +On another , there is no one . + If it is out there it will come . +That may still be the case for many . +That 's going to take a while . + You have to make them want it . +That will was never found . + He left the next day . +There were good years . +They should do so . + This is way too general . +He could do no right . +Not all of them will make it . + It 's a new world , he said . + We do nt know who he is . + I do nt know where we go from here . +That 's just the way it is this year , the way it has been going . +No , but I do nt have to . +She said that it should have been her . +But that is a long way off . + You just do nt know it . + I just like to do it . +But I do nt see it right now . +That is still the case . +It did not say how it would use the money . + He is one of us . +And I do both days . +What would you like to do ? +How many should go where ? + There are such people . +But still much the same . +But he might as well be . + But there 's more to it . +That they do nt know . +What 's one more ? + Where did you work before this ? + But there is so much to do . +And I still did nt get it . +She is nt like me , as I said . + Is it still here now ? +That 's just what it is . + And he was not going to do that at all . + You know what they say . +They play their game . + Just me , she said . +Both will be back next year . +We had to come through . + The money is nt there . + We do nt even think about it . + Now , I see people . +Where can I go ? + But then I go two down . +We had no university . +But this is not such a case , he said . +You can use as much as you like . + We were like a little family down there . + It may work this time . +He was the one . + There are just so many people . +I was one of those people . + They think you work for government . + It was nt like it was nt out there . +A : It 's . + That 's just how life is . +It 's called Home and Home . +It 's been that way all season . + They know it and we know it . + I like it here , she said . + It 's how you end up . +I do not want to be one of those people . + People say , I have a house . +She has come home . +And it was not just the one day . +It will go to the president . + People want to see you do good . +It is all the same . +But if Do nt I Know You ? +You do nt see it just as this and then as that and then as that . +If so , what will take its place ? +He was part of a family . +We all make it . +Not the other way around . +But here are a few . +We can only do so much . + And for a long while . + I did nt know what to do with them . +She has no children . + It does nt work , he said . +How much will that be ? +I think there 's more . +But over all , did I do them good ? + Today 's American women still have time . +How Good Is It ? +There was no in between . +This is where he has been . +It is about money . +We did not want this war . +And no one said no . +Would that you could come back . +And I want to be one . +He did all he could do . +One long year , but you have been with me all the way . +I can play this game . + Be you , he said , do nt be me . +He 's too old to do that any more . +You are there or you are not . +That 's what I do now . +You made it , you are in . +And who are you ? +That 's not the way I used to be . +Did you see it go up ? +Which is which , and what 's up with that ? +It was the right place and the right time . + What do you say : It was nt me , it was him ? +We are not down . +This is what they do . +And all so long ago . +And do you know ? +It 's just up , up . +I like what 's going on . + What was that all about ? +Where had I been ? +How are you today ? +Some , not all . +What do they say to one another ? +You say : How good can we be ? +He had been , that is . + I do nt know who those people are . + That 's all come to an end . +Do you still do it ? +But what is it about him ? + If I have that , it 's like I have him , because that was him those years , she said . +So what to do ? +Now do you want to do that ? +I make more than the President . + I will before long , but not now . +Both had four children . +Until one day they are not . +I do nt think he would say that . + All right , she says . +But he was one of us . +Now 's the time for us to do it . + I know I did all I could . + And the next day . +It 's not the same , night to night . + Say no more . +But that was war . +But I do nt see what that could be now . +He is all of these . + How are they going to get back ? +It 's another game that we have to play . + He said to me ; This will never work . +Where are your police ? +But since then that has not been the case . +What was I to do ? +I could not say no . + We said to each other , What do you know ? + If there are , I do nt know . + They do nt know . +Who will be the one ? +But , he said , there should be one all over the state . + But it 's a long way from being over . + This is war , she said . + I should nt think so . +The time is right for it . +But it was their night . + We do what the government can not , he said . +Her children go to public school . + How much money should you make your first year ? +He left the country the next year . + It 's a home . +How good was it ? + But there are not . +We make the best of it , you know . + She said , Well , then , you do nt go . + What is going on here ? + Well , they both made it . +Not in high school . +This would just be one or the other . +It was never over . + She said , I do nt know how long I can last like this . +It 's what we play for . + I would not do it . + I think we have a good team , but I also think we have a long way to go . + We are not in the political business , he said . +It will be the same now . + We are going to be as good as we can be . +Did I think of him ? +That 's the way to be . +I never set out to do that . +That is the big one . +Show me , show me . +The first time was a few years ago . +This would be a good place to see how they do it . + I do nt have to . +And the next and the next ? +He is back in school now . + Would that this were so . +Now do you get it ? +Now we go back to New York . +Business has been good . +Do what you have to do to get out of that house . +Each has between two and four children . + At the same time , it should . +You could see him there . +So , no money . +You get used to these people . +But she 's in good company . +All I can say is what I have said . + But I know I have to . + But also , you can put more people to work , he said . + I have four children of my own . +This year we did not . + Can I get some of that money ? +You are at home . + That 's all right , you do nt have to say . +There 's more to come . +It does nt go like that every week . + It was just one play after another . +I would never be one . +So what about New York ? +Where you want it . +After all , this is a government of the people , by the people and for the people . +Who do you put on him ? + What does that say to you ? + Because I had to . + He 's right over there . +Now they are on their own . +Like , what is this ? +It 's not the way I do it . +I just show her what to do , and she does it . +He 's one of us . + They should be out . +And the people were back . +Now , how would I get back in ? +That 's not going to work . +Are you out there ? + There 's never a right time or a good time , he said . +They did nt know where they were . +He 's in here all the time . + It was a very long day , he said . +I did not want to go . +We were at the center of it . +How did he know this ? + I think we can do it . +Now all he has to do is get through it . + No one is . + This is what I do . +What did he say ? +And he 's a man , too . + They want more and more from us . +That 's just life . + Not for a very long time , he said . +Know what they are ? +Is nt that so ? +Could it be because they are women ? + And I say : Who are you ? + That was nt him , she said . +I do nt know how , though . +It 's the good life . + This day off is big for us . + I just want the money . +And then another man . +This is not good for American music . + In a way , he said . +Some days it 's good . +You just have to take it . +Now I had it made . + I said , I said take the money and go . + He 's not on the way out , she said . +The other is before . +It can be the president 's family . + I want to go back down where I work . + How was your day today ? + If you do nt have it , it 's all you think about . +It does nt , though . + I think they like what I did with New York City . +What a man has to do for his public . +She had to work . + When they say go , we go , he said . + Well , she said , they are not . + Five percent said it would put them out of business . + It 's the way he is . +But I could nt do that . +Every one , he said . + I should nt have said that , but I did nt think it would come out like that , he said . +How can I not ? +But not this way . + There is no way to know what they might be and where they might come from . +We have to get after them . + And I did nt . +But there is also much more to it . + We had a good time , he said . + It 's just four days . +It is nt only a play . +I should have been there and made the play . +I think about the best place . +They are part of me . +They are not about money . + I do nt think the . +The one that says : It 's a white man 's world . +When did you come into your own ? +But this was in my office . + We will , he said . + It did nt come up . +He is now in the United States . +We are the world . + I want to see my home . +And only what you want . + To me , it was all going so well . +But now she 's back . + I do work I want to do with people I want to work with , she said . +From there it was off to New York . + You have to make them want to . +No women are members . + And I did , he said . + You do nt back in . + We are all going . +How are the children ? + The people that I do nt know , I know of them , or they know of me . +Is it our school year ? +New York is a very good team . + You never know how much time you have left . +But how could it be over ? +WHAT is this about big ? +If so , we will come . + In a big , big way . + He had nt much of one left . + It 's just going to take them a little more time , he said . +There would be no season , no school . +And like it or not , he says it 's what we long for , too . +How big will it get ? + And some people can never get it , he said . + That , I do nt know , he says . + And where is he now ? +It 's the only way to go . +I been in just about all of them . + I did nt know what a play was . + It 's too much money . +Who is against this ? + You know how it is . +It 's just what we were . +Other than not to do it any more . +Do you think this is the case ? +We just say , get on with it . + What more can you do ? + It was what I had to do at that time , she said . + And so what ? + I said , Just go . +This is a good program , a very good program . +You can if you want . +Then it 's business . +We said what we had to say and that 's it . +And I have to say , No , I do nt want to . +She was all show . +Right now we are not very good at home . +Is that a state law ? + And not right for him . +I did nt think of that . +He never made it back . +What does he have ? + I want it to be used more . +We do not have that in the States . +They are not used to being with other people . +I did nt know who I was . + It 's part of New York . +They did nt work it the way we would . + But it 's not , he said . +We are not the same . +I do nt want to go through that . + How do you like him ? +You get to be several people . +All I have is my home , over there . +So was the next one . + How long do you think this will last for you ? + We know what we can do . +I have to do what I think is best for this state . +He does nt want to get into it . +It was just , well . +No time has been set . +Me : You do nt want to know . + They did nt . + What did you say ? + Well , he had to and he did . + We are not going back on that . +So this is it , I think . +We are in the program business . +And there was so much of it . + Same as Will . +I just say , so be it . +What if he were a she ? +And people know that . + It did nt work too well , she said . +All said they did not . + But he 's not going to play . +Did you do this ? +Now what do you think that was about ? + And he found a new world . +Way before his time . +Children have the most of it . +We do nt get any play . +And then I will go out . +We are going to go all the way . +One of those is money . +That 's the way it is , and no other . +But how would they know ? +We do nt want you . +Just do it now . + They would say , what for ? +Other than that , he has it all . +I just do nt have time . +That would be business . + He had to , she said . +And then another and another . +And , after a season or two , I do nt go any more . + I do nt even think they know what to do from one day to the next . +But they will not say which way . +What is the good life ? +We know we will be back . +I still like to go to the market . + My time is up , he says . +The second one is . +Will it be good for the country ? + I did the game , he said . +When will they be there ? + Well , I see . + If he does nt , he does nt . + Little by little , she said . +Here one second ; there the next . + So then we had to do it . +I said , no , no . +But then it did . + It was just one of those days . +That take was used . +Well , there were nt any . +He does it all game . +They do not make the most money . +What , then , is going on here ? +Just go to school and that 's it . +Who 's in on it ? +What are school officials to do ? + We want the best people we can have here . +It 's what we work for all the time . + That 's what my life was like there . +But it is also more . +They know one another only too well . +How do they get around ? + What you do is make the best of it . +Well , did they ? +I did not know all this at first . + Come to our home , she says to me . +They have to have a home to go to school . +That what it 's all about . +This is not the case here . +But I said I could do it . + If it does nt work , it does nt work . + What do you say to that ? +But few do , he said . +As my children say , Get a Life . +He said , No , he 's not here . + It 's a case of how much can you take ? + It may be all season . +And during the game , too . + The Government should be . + What do I do now ? +Did she see her ? +It is just as he says . +It 's on us . +It 's that go , go , go . +That 's a big part of the game . + How many years ago was that ? + He said , Just take it . +I just did nt know it . +Where do I want to go ? , he said . +Can might make right ? + Never in a million years . +You do it right or you do nt . + We are here to play . +I think you could . + I did nt , he said . +For most people , though , yesterday was a day off , and a day to play . + I said , What would I do with more money ? +We would nt do him like that . + I do nt want to go , she said . +Or could I get back to you ? +That 's me , and other people , when I can get them . +You see what you see now ? +You make it work . + How could I go for that ? + There are one or two about , he said . + We did it all in two days . +What 's in it for children ? + People want it , and they do nt even know it until they have it . +They do nt know their way . +He did nt say . +Their two children were not home at the time , the police said . +But we made good money with them there . +We are not going to do that . +This is the team we are going with . +And business has been good -- very good . +All that is part of the old life . +He was also out of time . +And to see the good that people do . +She did nt take her own life . +I would nt want to do that at all . +Only one more to go . + I use it because that 's the only way I see her , she said . +They can be made in three days to a week . +Where can they go ? +Where have you been all these years ? +They would not do that . +No one did it for them . + We are just not there any more . +It was just the right time for me . +I do nt know if he made it . + I just do nt think it will work , he said . + We had our day in court . +Has it come to this ? +Even if they are , so what . + I did nt set them too high . +That the members of . + Well , this is the day . +What do you do about it ? +It is not a very good week for them . +I had to be out there . +They were right about the last part . + It 's not the right time . + We are a family now . +But that 's not what it 's all about . + Well , what is there to say ? +Here was a way in . +Who would want to go back to days like that , even if we could ? +I do nt want to see this . +That 's the good . + And we could nt . +The she that I see is not me . + If we go down , they are going down with me . +What more to make of this ? +They were part of it . +That might take a while , though . +The next five years of my life . + This is where I want to be , right here , he said . +How is he going to do that ? + But it was nt about me . + That 's last year . + Now we are in the game . + How 's that , then ? +I did nt think of it that way . +He could nt get into it . + And they did back off . + Will he be in or not in ? + What do you want now ? +It 's the only way . +Not many , if they are in New York City . +But I like what it says . + Well , it does nt work that way and never has . + We did this on and off , she said . +But for me it 's all the same . +I was in it , and part of it . + What did he do then ? +It was the last time we would see her for a week . +He did nt know what to say ; we did nt know what to say . +That was left to the states . + It 's not about that . + That 's not the way we think . +Not if I want to go to law school . +Never have , never will . +It 's the best way to go . +But my work is for the people . + There have been very few like him . + I said : You know what ? +I did nt have any . + But I think they should have been here three or four days ago . +Because it 's not good . +I do nt like what 's going on . + I would never do that now . + That is going to be a good team . +It could take years . +So what are they up to ? +It now has to be we , we , we . +But I was not . +No one way is right for all children . + People come here every two years , it does nt do it . + But I did that . + I had them going , he said . +But you know what I found ? +Did we do it right ? + Now what are they going to say ? + We know all that , she said . +That was nt my business . +I know it is . + I have the next year to think about that , he said yesterday . +You are not still . + Good , good , that 's good . + It 's too much now . +How and for what ? + People would say , We do nt have those people here . + Put it in the center , he said . +And for what life ? +And have , for much of this season . + How does he know ? +Or I do nt know . +And you know what he said ? +Most , but not all , that is . +So do the police . + That they can see . + He is the man . + What is that ? +Here 's one of those . +The old is very old here , and the new is very new . +And they are big business . + Where were they ? +And then he found it . + If the big left does nt get you , he said , the right will . + We just have to take one game at a time . + The war here is over . +They play with me . + Now , it 's all over . +But where was man ? +He says , Come in . + No , I did not . + What was it ? +It just does nt show . + It was for my high school . + And play he has . + Some people did nt even know what people in the next department did . + That was nt the case . +The next night was the same . +They also show we have a long way to go . +You are out on the street the same day . +Is this too much ? +You , your people do . + It 's going to be up to them . +But in this case , it is not . +I do nt go out of my way to be political . + But you know , he was right . + He said no . +Most people say no . + It 's not my first year . + But they still have no place to go . + She would not say how old she is . + Are you with us ? + Some , he said , will have been home for four years and some for only three . +Might he make more ? + I just want to play , that 's all . + I do nt want people to think that . + But as long as you can say , I did my best . +The way they see you . +But I did nt know where it was going . +I just did not think he was that good . +And that 's just New York . + You can do both well . +West ) last season . +It 's all right to play with them . + It was nt the show , he said . + But my children said to me , No , I want to see you as you are . + But you do nt . + When I come back . +They all want to be here . +I did nt want to be there . + But we are not , because he did it for the public good . +But it is all around him just the same . + I did nt know who it was at first . +There is very little we can do about that . +Can you think of three more ? +It is , after all , what he would want for his own children , he said . +But he called her at home . + What are we now ? + I would nt do that . +You have to get over that . +We have nt had that . + Could they make us take it down ? +We are not going to get them back . +Now , he will say . +I know because I did . + What 's going on up there ? +But he would not say what it was . + Just home with you . +Have been for years . +So much , so good . + It is life . + He is going all the way . + So we are family , he says . +How 's the way out of here ? +I think I did my best . + Then who are you ? +How good is it ? +She did nt know me . + It will be used . +Then there is another group . + Four or five years ago that was nt the case . + People do nt come back if they think they are being used . + We do not want them here . +But where are they today ? +As he did last week , Way did not get the first down . + It will be there . +He had to do it . + But it is what it is now . +And it was very good . +This much may be said . +But this -- this is new . +Or some of both ? +Is it a people ? +Did I get through all this ? +You want to do that now . +Now it was after the people . + Where should we go , New York ? +This game is life . + I do nt know her well , he said . +It 's on to the next city , the next game . + Now it 's all right there , he said . +But how many are like him ? +That 's what we do one day a week . + They could be if they work , he said . +Now can we go out and play ? +You are what you make . + There was no other way , she says now . + He would nt do his work . + We have the team to do both . + But they never did . +And that will never be . +That 's not a team I want to play for . + Today , that is less the case . + It 's going to come in time . +It can still go under . +But take it one day at a time . + Have a good day . +I know how good they are . +But this might be the last year . +Here , I do nt . +But it will take a while . +That was part of it . +For some , it still is . +Because there 's just no work . + Where does the money go ? +Here 's what we did . +People here know that . +It says what 's what . +One is the Government 's . +We did nt do well . +Is nt the war over ? + But all they have the money for now is two or three . + It 's been a while , he said . +I have my own . +You are home with us . + But it is only a game , he said . +This was a first . +Most of the time it does not . + He is from my home state , she said . +Now the time had come . +But there have never been so many . + I think he made it up . + Would you like to see the place ? +Next time I will . + No , it does nt . +I do nt think that 's the way to do it . + They do what they want . + If you are going to do that , do it now . + She had a very long life . +But it was just so . +I want to play more . +Or did nt like . +They did , and were . +No , he was not . + It 's not , though , is it , he said . +There is nt much of it left . +It 's how he is . +Well , it did nt . + How could he not know what was going on ? + Now , with so much on the market , people take their time . + There has been so much made of last year . +They do not get up . +Any two or three ? +I do nt think we could go back . + And he is . + No , I did nt . + And she was right . + I make it my business not to . + I think that time has come . +It could be that he was nt . +I just do the best I can . +How to Get It . +Could nt I get down with her ? + They are not like we were . + That was not the case . + Did it go in ? + It 's like this , he said . + I do nt know if that is so . +Of New York City . +But there is even more to it than that . +There 's much more to it than that . +I had it a long time . + But not too many . +I was there , at the school . + I want to do both . + There is only him . +They also like the money . + But that was then and this is now . + He did nt make that much money . + You can all see it . +I have to do it their way . + And it is nt going down . + The United States is not . +They are not our work . + The people here have been good to me . +Not that all is well . +It 's going to take money . +But I did nt take them out . +That 's his team . +We are a good team -- now . + What do you want to know ? + You can go where I go , see what I see . + I want to know if I still have it in me , he said . + We just said to do this for the city . + He never found one . +And I do like her . + This is going to be a long night , he said . + Well , it 's a good one . +It can be good . +All three would be three times as good . +People will like it . +It has not been that way . +What then was it ? +I would show them . +She : Who 's that ? +He did not think so . +We know it just might not . + They do nt go to war . +We have that now . +And he 's right . + He may not be the best , but he 's going to be one of the best . + When I say , What time is it ? +It did not - how can I put it ? + Not a good day to , he said . + But this is where you can get the most house for your money . +Now we are not . +But how long will that last ? + I do nt want to even think what we would do without it , she said . + They are the best in the world at what they do . +What is the program ? + But now it is . + But I will get through it one way or another . +There is no one like these two . +It 's both , I think . + If not now , when ? +And not just then . + It 's just not the same . +No , I do nt think of it as a war . +I said , What time do you want me there ? + They have to work . +But it 's more than one man . +Here we are today . + I just could nt get it going this week . +Well , now they know . + He did nt know about the new law . +I did the same for them . +What he did nt know was how long it would take . +I know , because I was part of it . +He can go get them . +But each year , you see more people here , too . + I like school . +Do they have other children ? + That 's about right . + It 's day to day . +How could I have made it up ? +The music is what we do . +Who did this to us ? +It 's all very good . + Not for this season . +But where is the money going ? +I was in a group . +What do you say about that ? + These people have money . + He did not want to be there . + We were nt in there for very long . + It is , in its way , about to . +Where has this man been ? + The war 's going on , he says . +Most companies , he said , will say no . +But you did nt do it . +Who 's to say it could nt be ? +This is a show . +We are , too . + Did you see who that was ? +We do nt know what he 's for . + If you are good at what you do , that 's where you want people to see what you do , he said . +How many members do you have ? +But that day will come . +And I think they will . +Two of them have . +She would nt go . + The President may be right . +Does the world end ? +Where are they and where is their money ? +So that 's the life I get now . + You just do nt know . + Are you back ? +And that is where we come in . + We know what time it is . + Before him , I could nt see my family . + We should not be like that . +They can do what they want when they get here . + And I do nt want to do that . +That 's what our team is about . +Here are those people . + I do nt think I would think about that until after . +He might not have had to . +And the year before that , and the year before that . + What can you do with it ? +Every place we go . + But I know what 's going on . +It was that way . +It did nt have to be this way . + Every day , every night . +I think that would take many , many years . +And he was about to go home . + Can we get in ? + He 's very good , too . +In the years since , it has been little used . + It was nt very much . +Which us , though ? +Well , so what ? +All of which it did . +I know what I did and I know what I did nt do . +He 's just one of those people , that 's all . +And what is he ? +That is not to say , though , that it is still the old game . + If you take his life , what is that going to do ? +And what if he did nt ? + And I do nt want there to be any . + I do like him . +The children can play here . + Do you use it ? + His company still does today . + This time I want one . +So what does a country do ? +Take it with you when you go on into the world . +For many years , he did . + I was like that , too . +Now , what to do about it . +Today there are three . + But that 's about it right now , he said . + How good can I be ? + I like New York , she said . + There 's so much . +So there we are . +He was never the same after that . + What do you do in a city like this ? + Now it 's not the will . +I have to make the best of it . +This is not the case with the new show . + The children do nt go to school . +You know them when you see them . +Here are five of the best . +My office is there . + It still has some way to go . +But you have nt . +We would nt use it here . +You just do nt do it . + Last time it was him , he said . + Before it was like , Do I know you ? + But this was the big one . +Another was the A . +This was not their night . +These are but a few . +It is still not at home there . +He would like to be president . + How Can This Be ? +Not here , though . +I think it is over . +She said , I do nt know . +I do ; right there in the office . +They were still not there . + They are out to make money now . + It is too much . +But where are the women ? +I do nt know who . + He said , No , but we have to go back now . +Every day , he said . +Because all of the people that did nt know her , now they do nt get to . +Many people will want more . +There are nt many of those around . + That would nt be good . +That will come , one way or another . +That was the good . +She is all of that . + And people come here . +This is nt just about me , or about money . +Did you know about that ? +Where does it go from here ? +This will work , I think on the way home . +They could have used him . +And now I have it . +Too Much to Do ? +So now what do we do ? +We did this , and then we did that . +He was going to go out on his own . + By day three , they are a team . +I had been there . + The people here have been very , very good to me . + This is nt new . +How did you get here ? +It 's about our children . + We just want you back . +But we do nt see it . +What was all this ? +If it had been some other team , it might not have been that way . +But that 's all over . +Are nt we all ? +There might have been family money . +Who can get us from here to there ? +And so did the man who made me take it . + But we know we have a long way to go . +He 's been around a long time . +Make what you will of it . +We are there for the children . + Two at the most . + We take from there . +Was nt my day . + See if you can get it right this time . +How is one to know who 's who ? + Some are , he said . +But there 's no going back . + Some of them , I said . +American people very good . +But not this much time . + And how can you not ? +Then , they would nt . +It made me say , I have to make money . + I do nt want to be that , because I was that last year . +People have also been found . + Here 's how we own the night . + Is it good ? +Would the company have another season ? + At first I said , How do you get it in here ? +To me , that was the best . + But this year is our year . +It put us in the game . + I had to see it . +When is that going to come about ? +And it is time . +Today we do not . +We have to work on that . + I would see them . + I said , I have what I want . +People who had been around for years . +The people did nt know how to use them . + I think they want to do that . + He said , I do nt think that 's right . + If it is nt , it is nt . + How much is that ? + I do nt get that from them . +But there is more . +He is who and what he is . +That is just what they want . +This one was nt . + I said , You are right . + They know that . +There was no going back now . +It was just too much for her , though . +I did nt want to be in school . +This was big business . +But if we have to go , then we will go . + There that 's not good . +Just like this year . + Now this is the only one around . + It 's his show . +We get them , though . +Now for the big time . +These are well under way . + But all I know is that I do nt think you are going to see a group like our group for a long time . + It 's never not been there . +There was one in New York City . + And we were in the second game right to the end . +Do you like this ? + It was not . +But I think about it . +He left five children . +You know what they are going to do , but there is not much of a way to get around it . +I know about this . +What do we have to do now ? +What 's his family like ? + Business is not as good as a year ago . + Some people will say they do nt get into that . +What does she get ? +Will the world come to an end at that time ? + It 's going to be several years before they come back . +You know where your group is at . +He did just what he did last year . +They had it all . +But the time had come . +And that 's where we are going . +That 's between you and I . + And what do I want ? +You see it every night . + I did nt like it , he said . +He should know he has it in him . +It 's been very public . +But they just do nt go there . + But we know what we can do . + What 's she like ? +But that 's all they do . + I do nt think that 's right . +We , not me . + If there is a war , how long will it last ? +No one has that right . + They work very well . +You are not going to have an office here . +Mr. President , could we get just one out of three ? + They have two or three . +It was not even the only one today . + It could have been any of us . +But other people were . + When I go out . +That it still is . +Not with me it does nt . + There , he says . +Now it 's how much money you make . + That 's the way to do it . +It was a school day . + That 's all it is , he said . + I do nt like to say that , he said . + What is going on ? +While you still can . + No , that was nt the best of me last season , he said . +Not that he does . +He was one of the two officials for the game . + What 's going on ? +What 's their market ? + Now there are too many . +But people can make of it what they want . + It 's my game . +We are part of government . +You should take what you can get . +Now they come to me . + I put so much into this season . + It 's a new life , he said . + It is like children in the family , he said . +What does he want from me ? + And we all have a part in this . + But there is much more to it than that . + It is nt because of what I know . +This is not the New York I know and I do nt like it . +So , is he right ? +They could nt get home . + People have a right to know . + The way to do that is through the children . + I know what to do . +I had never been down it ; few had . +And you should not think about money . +That 's good , right ? +City officials said they did not know . + I do nt want this . + How about another another team ? +I did nt want to go home . +Would we like to see them ? +It has been like that for years . + This was a big night for all of us . + We are going to take it to the people . + What are we to do ? +And if they want it , they are going to have to come and get it . +These will just not do . +This team is not that . +Now we can go back to work . +So what are we going to do about it ? + But still she is there . + I said , What did I do ? + Now I know , she said . +First , he says , this is not new . + I work with little children , she said . + That 's not like you , she said . +Was it a public company ? + But I do nt get too many of those days . +He said he would be back , did nt he ? + What does she know ? +And work it is . +You go for it . + Not just right now , though . + And it is , by the way . +Will he still do that ? + I did nt want that . +I said , Did that go out ? + It was nt that A . + Go out and do it . + I work all the time , he said . +Good business , that 's all they want . + But it 's the same for every team . +Even if it does nt work , you are all right . +But he is , he is . +She is -- was ? + You want that off ? +Could it work today ? +Then , See , she said . +What will he think of me ? +Now , he 's two times two times two . +He 's right for the most part . +That was the case there . +You might as well know that . +There were three , not four . + She 's very much with us , he said . + This Old House ? + This is how many years ago ? + And we said , There is no more to get . + Our second family is the people around us . + I was never the same and never will be , he said . +A -- I do nt think so . + So there we were , he said . +It 's not money . +What do I do next ? +We all know about that . +But that was then , and now is now . +I think I can , I think I can . +Does nt Know the Game . +This has been a good year . + You have to have a program in place . +Now one more to go . +How long has he been there ? + There is a political will to do this now . +That 's what people do . + It is not about that . +The police said that it might have been there for as long as a year . + I could nt put them down as just people , she said . +It may not do so this year . + The other , she said , is the school . +But I can not do this every time . + That 's what you are in it for . +I do nt have time to . +You have to think , If I go through with this , how do I get out of it ? + He still has little good to say about them . + But those days are over , she said . + And this play is it . +That 's big for me . +You have no work in the house ? +They say it is for the good of the public . +How much can he know or should he know ? +It 's all team . +The family will be at home this week . +This is not it at all . + So we are here for now . +Law said here last year . +For me , any day , any time . +And that may be just as well . +Then what is left ? + I want to be a part of the best . +Now , here are some of . +It was the other way around . +And they are good at what they do . +We had to go . +She says it is not . +That part is good . +And if you do , when do you go out of business ? +I did that four times . +This season , they have had two . +I did nt play as well as I can play . +Then he put me to work . + But that is not the world we want . +And we are not . +Another country , another show . + You do nt have that much time in the school one day a week , she said . +And we still like you . +Most left after the war . +Or is he both ? + There 's too much out there , he said . +That was last week . + I did nt even know who he was . + He said , When I said I did it . + No , no , no , no . +But we did nt know that . + There is no work here , she said . +Would they still like me ? +Then there was another . + That could take another year or two , he said . +There has to be some other way . + Where there 's a will , there 's a way to do that . + This is my life 's work , he said . +Never say , You should nt . +And he might be the last . +But it did nt work that way . +It 's still the same . +This is not where you want to be . + There you go . +They do nt make it at all . +So how did she do ? +I was at the right place at the right time . +A few women come . +If you do nt use it , what good is it ? +We are not out of it . + This is their home . +Would she home school her own children ? +Two more would like to go . + That 's the way it is out here . +He may be the only one . + How well do you know the President ? + We do nt want most of the business ; we want it all . +That 's what I said . + It was just what I was after . +He does nt have time now . + That 's me . +It is a new day . +They have people in them . +But she did nt say no . +I did nt want to , but I did . + Who we are is who we are . +And they could nt five years ago . + Then it 's business . +It was the same here . + I put them up a long time ago , he said . +That 's all it 's about . +I want to get back out there and play . +I would like to be that one . + It 's like night and day , he said . +But here it is big business . +I said , Never . +Well , the City of New York , for one . +That 's the only way I know to get through it . + What could I say to them ? + But , do nt you see ? +We just do nt do it . + And that 's not right . +I would like to go back to school . +If only it were so . +One of them may be right . +And it was over . + I did nt have much to do with it , the President said . +But you are so good at it . + And it should be the other way around . + And I think that it 's going to work . +After the game , though , he said , Good game . +And this is the last one . +Are you going to say no ? +Which man will the President be ? + That 's what I like to do . +So does New York . + Other than that , what 's not to like ? +I might not even go out there . + A big one . +Who would they be ? +One : it 's all about the music . +And there is me . +And we were right here , after all . +That is , if they want to . + I do nt want to see another one . +He 's not one of them . + We would never do it this way . +People say that 's a part of life . + Over all , it is . +If not , what are you going to do ? +That 's what I want . +Some just do nt get it . + This is the end . +It 's time to get down to business . + She did it for years . +So I said , I do nt know . +I did nt get off the court . +But I have no money . +There is a way out . +It was one of the best of the week . + And they are not . + It 's like just another day . +Then you go back . +Many of them never make it . +I have to go get him . +It made me go back to work . + After a while , you get used to it , he said . + But they have good people there . + We are going to be here for a long time , he said . +And who is it ? +I was nt here yesterday . + We are the best in the business . +I know , I said . +But I do nt have time . + The game is nt over until the last man is out , he said . +Of those , only one is still around . + But I like it . +Not the end of the world for the night , though . + You are there for life . +We should see more of her . + We want people to know them . +That is so much money . +But it is money . +Very well , he said . + What 's to say against them ? + They have nt made the case , he said . + Not well , he said . +I think that 's it . +But here , you do nt do it . + It was an off year , he said . + And that 's down . +And where will this house be ? + When I do nt play , he 's right there . +It 's not their program . +He 's been with him day and night . +That could be next . + No , he said after the game . + It 's not this at all . +Only there are nt too many left . +Two years or three ? +That 's just the way I see it . +Many will do so . + The man can do it all . + I do not think about it , he said . +People do nt like that . + I do nt see how we can put this program back on there , he said . +People do nt want to see him play . +THE TIME OF OUR TIME . +He does not say . + I know he said , We . +How can you come here ? +He , more so than I . +You have to be who you are . + Because you know what ? + Put them in at the very end . + There 's more to life than just work , she said . + We do it as much as we can . +Who 's the Man ? +So what are they like ? + You all can say that . + And it 's the same this time . +All of them were against this war . +But that will not be the case . +He did nt even know . +But now that day has come . + They were , No you are not . + It never used to be that way , he said . + Do nt you know what that 's going to do to them ? + We all have , she said . +They are what she does best . +She also said she would never be too old to work . + That is the way life is . +And the second one . +And get over it . + They did it to each other . +But that will not come about for years . +But I know they were here before we were . +This is a family . +They come in , get another group of people and take off . +It might as well have been the last . +I know it was for me . +It 's a new group . +Where are the people who were with me on the left and the right ? +It 's just like the good old days . + That 's just money . +The new one is not the first . +What , then , to do ? + These people have money , he said . +Just have to be me , he said . +Come on in here . +But it might not be in a few years . +I just do not know . +We play this here . + It 's just the way people put it . +We had a good season . + And people see through that . + We are the school . + Because one has to , you know ? +They are into it . + I do nt go for that . +We get very few children . +We are all one family . + People were just being people . +It was not , he said , that he did not have more to say . + It 's to make you think . +No , but we do nt have to . +It was nt , for the most part . +So are the other two . +But they did just that . +And all the while I still did nt get it . +It is now a second season . +In a way , it is . + In the back , on the left . + Come with us , one of them said . +That 's all I want in life . +But he can play . +The two go back a long way . +I was in a state . + For what we could have been . +So today is your big day ? +We have to make the team . + Or , they had to go home . +No I did nt . + It was our life , he said . + But I do nt now , she said . +This year it has . +Can I get on it ? + Then he said , There . +Are they too good ? + That 's what it made me think . +She did nt have a very good day . + Can we come in ? + How would you like to play ? +As much as we can . +They do it for money . +It was still a good day , though . + And we have to play the political game . + They see us as too political . +And when they do , we will be here . + But what he has is money . + It 's not the same house , he said . + What do I think about all this ? + Now we have that . +But it might take a while to get the money back . +I could nt even do that . +Who has time for all that ? +But this has not been the case . +But it 's not just about money . +We are part of them . + It 's just what you have to do . + We do nt want to go through what we did last year . +He had very little time left . +It was good for me . +So come on down . +And this would be home for a week . + It was just for me . +Just play our game . +But if I do nt , I do it my way . +Do they want this ? +That made my day . +I have nt been back there in a long time . +I like this place . +And I think I will . +You do nt know that ? +That 's the way he does business . +He did nt even play it in high school . +Did I know he was that good ? +But now it 's in place . + My house is there , man . + That 's how we had to do it . +It does nt work that way here . + We want people to come back . +We did the best we could . + But there was no time . +In that he was right . +You can only go so high . + Never , he said . + Who 's He ? +We do nt know what his best is . + That 's how you should play . + But she does nt know how to get there . +I know many of them . + If it does nt , so be it . +I think that 's how I do my best work . + We are a new team , he said . + I like them all , she says . + There were never any before us , and I would nt think there will be any after . +Right now , they are . +Today , we just did nt get it . +Now he was a she . + But he was not the only one . +She just has to . +She was too big . + That 's all we do . + He did nt want to go in the house . + Can you say that ? +But it would nt work the other way around . +Only here I can do what want . +But to me , it 's all the same . + No , we do nt see that . + That 's a long way down -- and a long way up . +It 's like life . +What would that do to the family ? +It 's how you use it . +But it was long . +What did you do after that ? +We want to think about it . + I have a home . +He should get out . +What was left was what was left . +He was here because of his show . +That 's how they found her . +It 's part of life . +They will be about people . + It 's like they know me . +And that is not all . + There was less and less work to do there , she said . + But I do nt think that 's the case . +Without New York , who would we be ? +Where does this end ? +I just did nt do that . +But few used to want it . +But she 's there . +WHAT is old is new . + They are children , after all . + We could not take them . +Or they could be right . + I think I can be the best . +The General did not even have to think about it . + You think it 's good to be here ? +But where 's the play ? +After all , they may not be . + At this time , this is too little . +I said , What is this ? + It was , at times . +Well , how would he know ? + And you can , for a while . + I want to work . + I have nt been around one of those in a while . + How was the game ? + But we can do it . + What 's there to think ? + There 's on , there 's off . +The team is the show . + He would nt do that . +You like it because you like it . +I do nt think they even think about it . +In the end , this was very good for me . + I like man much . + Then you come here , he said . +That is how they make their money . +The war is nt over . +People can say what they want . +I do nt even know if that 's good . +Two on , one out . + I know he do nt come around . +And if you do nt have that , then what do you have ? + But I do nt know that they would have been out there . +WANT to make big money ? +I want to do my part . +I said , We are out of here . + People did their work very well . +That is not like us . +How can this have come about ? + But you want it up there . + How could they not know who he is ? + The old game is up . +I said , If it 's the right house . +That 's not what the game is about . + But I do it for my family . +I think all of us here are . +You want to go or not ? + Many are good , many are not . +It was against the law then . +Here less is more . +What will you think about ? + It 's the time , she said . +Now I have to go back to the office . + He did very well . +But he was all business today . +They did nt know what she could do . + I could nt work , he said . + You are in it , she says . + You go one way or the other . + In this country , you can do that . +I want to be out . +They had so little . +He said I was too old . + It 's what we did nt do . + Could nt it be both ? +They say it 's up to me . +There could be war . +We do nt know what he will do next . +Where has it been , Mr. President ? +That 's what the country is all about . +But then , is nt that the way we were all through ? +Or so they like to think . +Who do they know ? +What good is that ? + We said , Where are all these people going ? +They still do today . + We are a family business . +More of the same . +But there was still time . + He can make a team play like a team . +And we are going to do it every night . + You know what I did yesterday ? +That was it for him . +I did nt like where this was going . +Every one of them was . +Good for them , I say . +He might have said it . +I did like him . +Where is your Government ? + Take me to it . + Can the state do that ? + I know both of them very well . + This is a business , she said . +It will not be the same . + I said , No , it 's not . + I do nt know him that well , she said . +The day is as long as you want it to be . +For him , it was one of those days . +You know you did . +Is there a world you long to see ? + You do what the law says . +If this , then think or do that . +That 's not the way we play . + It 's like , What do you think ? +We are going to have to play our very best game . + Some people want money . + We have to be . + I had to see this through . +But also : it is here only because it can not come back . + He said he would like to go home . + We do nt have the money for them . +There just were nt any . +Do you still have ? + This is the way I work , she said . + Did you see them ? + But you can think too much . + Is that you or me ? + She 's good . + But I do what I can when I can . +And when this is over ? +If he 's not here I have to be . +For now , that 's all I want . +So where will it end ? + But it was part of a way of life here . +But I do nt think so , I do nt think so . +And they say they do nt have it . + Now , he said , we have to take that into the season . +It was what he did nt have . +But it did make him think . +He does nt even know what it is . +But that 's not what I want . + But I also have my own life , in my own house . +Now I can just work my way from here . + And I said , Only if it 's good . +You are going to see more of it . + You go into every season and every game the same way , he said . + Do you know what they did ? + Then he said , By the way , what year was this ? + This is a united family , she said . +I want you back in the game . +I said That 's what I want to do ; that 's what I have to do . +It was time to take him home , they said . +I do nt know how to do it any other way . +And get on with it . + I had a good time , he said . +We go for more , much more . +But they were not part of it . +I only have to get one right . + We want it for more than one use , though , she said . +That 's not the place for it . +I do nt know if we are going to go right after him . + It was the best of my life . + Not for a while , though , she said . + But you never think that way . + I have no money for that , he said . +No place for that now . +And that 's what these are like . + That was just me , just the way I was . + That 's what 's best for my game . +Since then it 's only been up for him . + That 's not to say he would nt do it now . +A : I do nt know that I did . + That was then , this is now . + We made it through the night . +She 's up there with the best of them . + Now , how do I know ? + It could be all of it . + If we have to , we will too . + As long as it has a good home . +He did nt work too good last week . +Like , say , money . + So that 's what I did . + But more was made of it than it was . +But it is not here . +But it 's not any less political . +But they have each other . +You know all that . + I want them to be here , he said . +Their children are out of the house . +IT was time to go to school . +It 's all about . +And this is a new team . + Who would know that ? +You should see him at home . +And that is the case with many of them today . +But no one called time out . +But I think we will . +And they are good at it . +They did nt make the team . +With women and children there ? +At the other they were all white . + I will , though . +I did nt want to know any more . +Not very , many would say . +As he said , This year is as good as it 's going to get . +Do you want time to think it over ? +Too much to see . + Are nt We Old ? +Where are we going to put it ? +American officials said they know little about the group . +What good is it ? +There was no place for him in New York . + I do nt think that way . + And to get out . + They did nt even think about it . +If I could , I would , too . +You are all right . + I just want to see where we are at the end of the year . +It 's up to the police as to what they want to do with it . + It 's all up to the company , he said . + WELL , WHICH IS IT ? +I think this team can make it . +Should she go back home ? +But he can not do it all . + They do nt know what they are going to do right now . + I know we can do it , he said . +I said : No , not at all . +It 's not like it was . +That may or may not be so . + There 's business . +Will the program work ? + I just do nt know by how much . +That day may have come . +I say that here . +But even that was nt what it was about . + I just like to work . +I could nt be in business without them . +But the place is not for her . +Before last week , he had never even been to New York . + But it is not the case . + Is this where he was found ? +We do nt have that in New York . + I know you , he said . +All right , then . +This is a game where we have to . +We are right on the law . + It has been . + But that 's not me over there . + John could nt do that . + It was the Government . +How did it go for him there ? +They know of me . + They do it for the money , he said . +But they have to do what they have to do . + That 's new , he said . + Where Did It Come From ? +They did nt get down . +They just like to go at it . +So I made my own . +No , after you . + You are never going to make it . +He was over here the other day . +Now I do not . +Just go do it . +No , they do nt . + You want to get on with your life . + And so it has come to this , he said . +And he said he might do that . +He is back in the game now . +There were four of them . + I would nt know how to , he said . + I did nt do any of that . + We were a team then ; we are a team now , he said . +And much less money . +Now he 's what ? +It did nt know what to do . +Their best was nt much . + It 's just the way it 's going to be . + How did I do ? +It does nt make them right . +Some are still in use . + They are out to make money . +I would do that against us . + On my part , I think there is . +That did it , he said . + We had a good time . +That 's what the office is for . +They will do that . + I know my own work and I know what I can do , he said . +They had too much . +That is , if they make it here . +What could we say ? + He never called me . +And no one called the police . + We might as well get used to them . + But there are so many people who still do nt know about him . + It 's not a good one to have . +But on they are . +For all of us . +This is my only country . + We are very much into the program , he said . +I want them to have it . +I know what I did last season . +As well he should have been . + It 's like any other street , he said . +Is there such a place ? +She said she would come back next week . + That was the play of the game . +That 's who we are after . + What did he know and when did he know it ? +Do nt you think ? + I would nt say that . + This team is like my family , he said . +We did nt have to do that . +He 's at the end of it . + We do nt know any other way . + Did I say that ? + She 's been so much to the game . + I did see it . +This one does too . +That is a big one . +Come and get her . +You know I do nt have any . +That 's when I called the police . + Where have you been all my life ? +How will they work ? +This is our team , all of our team . +If he does it , that 's his way . + But it 's back . +Now , can he do it ? +He does nt , and it does . + They had nt . +It was nt good . +He had to do it on his own . +During the war , it was the same . +As she said , the year is not over . +They go to school . + How much more can we take ? +And most of them were women . +And there are many such people in American life . + States are like people . +Just take it in . +In the old days , she said , she was on her own . +When He Was Good . + I do nt think we were . + I said : How do I get out of this ? + Second Time Around . + Did you see him ? + This has been in my family for years and years . +Then they were going home . + It was so good . +This is the world they left . +He was New York . +He can do so now . +But first I had to know if he was still the same . +It might have been only one or two , they said . +It just is what it is . + Not me , she said . + Well , what do you say to that ? +This year , I think I did my best . +It 's a money country . +Do you know what I think ? +And I did nt like it now when she was home . +It may even get in the way of music . + It did nt come , she said . + But it 's not over . + I should nt have had to go through this , he said . + No , not much . +We are here for the second time . +What did I like ? + Well , this is next year . +One night we made up this play . +But he is also right . +I did it three or four times . + It was nt my time to go , she said . +But not now , not in this world . + That 's what people want today . +There was no new life . +They know it , and they know that I know it . + And it would . + Is that what it 's going to take ? +I want him to come right at me . +A year ago no one in the United States Government would have come out and said that . +You think about that . +Have we been here long ? + He is the best . + He 's going to be a big part of our team . +I do nt know who is up for it . + This was all that was left , he said . +Was he on them ? + That was my house . +Did they do any good ? +Did I know them ? +They want it to end . + It was over before I could get into it . +I do nt think it 's going to be one . +We are old now . +But they are here now . +Or it will not be . + Who 's the Man ? +She did nt know where . + I can do it all . +But the world 's best ? + There were nt too many in between . + It is a law . +But he will be . + Now is not that time . + So that can be good . +And more are on their way out . +That 's what this is all about . +Well , this is what you do . +But I would nt put my money on it . +Had I been out of the country ? +It 's about the good of the children , and it 's only about the good of the children . + He was nt . +What can we do about this ? +He 's going to have to go to work . +We have them the next day . + It 's very New York , now , is nt it ? + Over all , I had a good time , he said . +What if no one had to know ? + Be All That You Can Be . +But I could nt do it . +It 's for the people ; it 's for the state . +What if they do that ? +And he has a right not to be . +What about a week ago ? + But the war is over . + And that 's all they want . + They are out . +This is it , it is now . +In the end I was nt . + But what is it ? +We get on very well ; we think the same way . +And I think our time is up . +But I do nt know what it 's like . +Was he any good ? + It 's no good , but that 's what they do , John said . + It was his day . +But we never could . +I would work night and day against it . +He did more than that . +I know he is . +That does nt come for another two or three years . +That might have been the end of it . +I think that was good . + I do nt think he 's any of the three , she said . +Some people think so . +In time , he did , too . +That might be good for you . +And today , he will have little to say . +We would nt think of it . +They do nt have much time left . +People should nt make too much out of it . + I just could nt get it going . +This was only one game . + How can you say that ? + He 's right . + Right , I say . +I do nt think we had it this year . + Not could , he said . +If they do , it would be a first . +From then on , it was like , work , work , work . + That just does nt work for me . + We would nt be against women . + We should be up this year . +We do nt know how this is going to work out right now . +It 's not like we do nt have him ; it 's just put off until next year . +She has that in her new home . + I do nt know if I like that . +After all these years . +But the police , she says , still are not . + Here they come the other way . +Not my company , he said . +I think too much . + There are police all over , right ? + They want it around them as much as they can . +We are out of time . +That 's how we do it . + I think he found it on the street . +This is not last season . + No , it 's not , he says . +But we are here . + Just work , he said . + From Time With Children . + But he 's not good . + That is the way we see it . +No one has called us . + And that has been good , he said . +Where do I go ? +It has nt been that way . +He said he would do it . +That is not a place I want to be . + I know how to put on a show . +Was it all going to work ? + The last two years , it just was nt that way . +It had to last . + She 's never even been out of the country . + It 's not a very good market right now . +Back in the game . +And the people - where are the people ? +Then it was over . +Still , he does nt want to go . +That 's not what this game 's about . +It 's one on one . + But you had to do it . +Are you still going to play ? +IS the high life back or what ? + We are on the way home now . + And that 's what it all has come to . +Then I said , What you like ? + I was the only one . + I would like to go there any time . +And he had a right to be . +Not as good as today , but they had them . + He did , she said . + I do not know this man . +People used to come and go . + Where do you go from the White House ? + You know what business is about ? + Is that all there is to my life ? +If he had it back , what would he do ? + Do you see her ? +When you come here , you are going to be part of a team . +But I do nt think they do . + After all these years ? +In them , you are on your own . +How many children could say that ? +But now , how could that be ? +It 's been a long day . +As if they did nt know . +This is a very good team that is going to play the game any way we want to play it . + Some of it will be , he said . +It says New York . +Just what is it ? + Now , there are more every year . + If there is a will , there is a way . +THIS WAS THE YEAR OF MONEY . +Today there 's more than before . + But it was never just about us . +I do nt have a good life . + It 's good for the people here . +That 's what this is . +Does your family know ? +But it 's not a year ago . +It 's about the people . + It 's just another part of my life . + They are her life . + It 's not that I do nt like being around people , he said . +Business people use it too . +In case she 's there . + If not , many of us will be going out of business . + That was way back in the day , he said . + For a year you get to know them . +Right , that one . +This is what I like . + I think he would want me to , he said . + You have so much time . +So there was that . + It 's day to day , she said . +Could you do that ? +It 's a Take . +That 's not a New York team . +We will not know for some time . +It 's not like I do nt do it . +There 's a long way to go around here . +Do you think she did this ? + No , no . + I do it very well . + It will go on a long time . +What 's the best I can do ? +Very few do it now . +And then they would make up and all that . +He did not want to say much . +We know we have more work to do . + No , and I would nt say if I did , she said . +That 's not what it was called , though . +The public does nt want to know this . +If only you could be here . +It is the first week of the season . +It was time to make some money . + And because of what we did . +And now , it 's not here . +You do nt know any more . + So many of us have been here for so long . +People put up this money . +The new money is the state and city money . + And more money . + He 's the family business . + There 's more for them to think about , he said . +I just go out there and play . + But it 's not just the money . + In The New York Times . + We will do it part by part . +It 's very good that way . + So the women said , What can we do ? +Or , this could be it . +You have to play well . + I just do nt think it 's right , she said . +Not at a university . +It 's all up to us . +Would I go back to school ? +I think I will this time . + I did nt know what it was . +I do nt know too much about those times . + Well , would nt you ? +But we do know that they will . + We have nt been that way all year . + But I have just been there . +So what are they ? +Most are not new to the United States . +We think of you today and every day . +What will you do now ? + I had a good year last year . +Who did he think he was ? +They want to get it over with . +But he can see the way back , at last . + Other people may think what they will , he said . +And then there are two more . +It 's going to take three to five years . +And now it was over . + How much time 's left ? +No , he said . +But not their way . +Make them have to make a play . +But that is not the case here . +It 's very up and down . + So we will get another general . + Was it more than one ? + It 's for all of us . +And even the people around me did nt know . +It 's what we do . +But in a business school ? + But it 's not like that . +How can people do this to each other ? +But this is not for them . + There were some days I would nt do it , he said . + We did nt play that well . +But only for one year . +They are like women . + I know , he said . +We are going to take it to you . +I said , what can I do ? + This is my way . + He did nt have time to work on it . +Do they know one another ? +And who was it ? +It will be what it will be . + I did nt come in with one . + But I did nt know what to do with it . +And of him , too . + I could say . +Where did he think this would go ? + It 's not my place . +So , does he have a life ? +It was part of the government . +She had that right . + It could have been me , or any of us . + This is what it is like . +Not for her life . +But in the end I could nt . +I could see then . +Was this my old school ? + This is my first time in court . +It 's never had one since . + I would nt like it too much , he said . +But what if you just do nt know ? + But what good does that do you ? + We are here to get people to and from work . +That 's what this place can do . +We do nt have much to show for it . +Where would you like to go today ? +It 's like , We are all going to go . + No one said no . +What was it like on that set ? + She 's not at home . + You can take it with you . + That 's me these days . + It 's what we are here to do . + It 's all over for us . +If you are that good , you might as well have a good time at it . +But he did nt last long . + Well , I did . +It 's not over , though . +But this is not so . +They are all women . +You do nt know how we are going to play . + Now , we can go from here . +Does money come out the other end ? +I do nt know where the money is . +But they do nt know how to get the most out of it . +How about every day ? +You are not going to get that . +It 's Come to This . + How does he know this ? +Now we have to get some . +But I can go out now , and I do . +What do you think we can do ? +But you have to know what to take . +It is business to me . +Did nt there used to be an old one ? +The children say they just like it . + You know what they are ? + It 's just the only way I could do it . + Many , many people . + It is a way of life . +This team is good . + That 's not so at all . + It 's just part of what you do . +But she never did . + I will never come back . + We have three officials . +I know I have a long way to go . +What does he do well ? + I would nt do that , he said yesterday . +All in a day 's work , with no two days the same , he said . + To me that says it all . +The man is old . +It 's just a part of this business . +Where were we from ? +But it is not the same as it used to be . +Good , he said . +But that 's what we do . + There were times , she said . +Most of them would say that . + But this is my way of life now . + It used to be the other way around , he said . +Now he does nt even have that . + But what about today ? +She said she had nt . +We found we could make them . + The Music Man ? +But it was not the same . + I do nt make much of it . +He found a good one . +Think what you like about it . + That was him . + And it 's here for them . +There 's so much going on here . +Even to come up with three . + I want to know , because I think it 's . +There was nt much we could do for him . + Do you know what it 's like ? +That is the way I was . + It did me good , he said today . +There is no more to be said . +I do nt think we do now . +We should get one . + We did nt play well at all . +That 's not going to make it . +And what do they do ? +But it has nt come . +And that 's what we can take from it . + How 's business ? +I show them I can . +They are the people . +I think it 's about what is going on around the country . + Your days are never the same . +I do nt think A . +And then it would be over . +So what did they do ? +It was the last day of business . + But she did nt like it . +From your Little People . + What can I do with that , she said . + I think she might go . +It is the play . +How much was it five years ago ? +He was nt going to make it in . + I think so , too . + And I should have , too . +Is that all he said ? +But I get it . +But some of them were . + He does what he does . +And what is he not good at ? + It 's a good time to get out of here . + So you had to play it three times . +I do nt , but I should . + They never found him . + There was no time for What ? +That 's one in a million . + Can I do that ? +I did my best . + It was too much . + This is the only show like this in the country . +Not this year , not now . + I would never do it , she said . +It 's a big game for him and for them . +What is it going to do for me ? +The children , the women . +No one is me . +I did nt get to see him too much . +Now there are only four or five . +It 's left to me . + I want people to know what 's going on with me . + That 's all right with me , he said . +Which we do nt . + She is from our city . + Well , it does nt come up , the President says . + I do nt know , but this is nt . + I did go to school today . +And I like that . + That 's where we come in . +That 's too long , she said . +No , he does not . +But he 's up to it . +It was not what he said . +When 's it going to end ? + What does it say to you ? + But it does put people off . + And we all play the same way . +It will next year . +Most will go to school during the day . + For me , he said , I would nt know what to do if the center was nt there . + He said , I did nt think you would be . + But I do nt know how many will be there , she said . +Until it did nt . +There are three left , he said . +In four years , no one has . +I had to have them . +If you are going to go in , go against the best and see . + He do nt like it . +There was only one man there . +Our world will never be the same . +Like I said , it 's a new world . + He said I had to go down to his office . +Do not think about what they might do . +It 's me but it 's not me . +What will she think ? +And it 's good they did . + They say I want to be here in three years and there in five years . + There would be a place for me in the game . +What is there for them to do here ? + As do we all . + The police were here , one said . + What 's the same here ? + He 's been there too long . + But it never was . + Some of it , we do nt know . + It 's like found money . + It will be years before they come back . +Never , they said . +Such is not the case . +But then , there she was . +It has to be more than that . + New York 's his life . +And they will be . +This could be a long one . +They should be even . +It 's only one game . + You want to take this over ? +And so he has . +Long time no see . +Where did the money go ? +It is no place like home . +Even if they are not in it ? + I did my very best . +All will end well . +But I could nt do that to him . +Do we want to do it ? + Does political will last that long ? + We did nt have any money . +I go to a group of people . + They like the work . +Where will this end ? +She 's right about that . +But then , what can ? +And he said he did nt want to know . +Or is it new , too ? +It 's like they set you up . +We never see each other . + You are not the first , she said . +I think that they are just like me . +Man : I do nt know . +Now it was nt . + I do nt want to want it . +They are on the case . + This is your state . +On his , too . + I do nt think it 's that much money , he said . +And I as well . +It was her day off . + Well , we could see that . + You come here now , she said . + Do I want to see them come back ? +It 's his time . +We have to take it to the other market . +So what can you do about it ? + I get out there and I do nt want to come out . + They do nt know much about our country . + That man has been too good to me . + We know who did it . + There are so many of them out there , she said . +Who does nt know that ? + We just get used to it . +All you have to do is show up and you are part of it . + I do nt want the country to go through that . + I think it was the only way , he said . + I said , Do nt do that . +I have nt the time . + Five years ago , he said . +No one made one . +Then he had to go . + And we now know it does . +So the President can not get to where the big money is . +It did not take much today . +We put it in their life . +But I do nt think it will be . + In women it is . +I was in there . +That 's how it is here . +Money this , money that . +That is what we are going to do for the next four years . +They still do not know . +We know we are a good team . + There was no program in the city . + But he did nt put any money in my case . +They just want to say they were a part of it all . + But how do you get the last one ? +Now what can you put in their place ? +What will people think ? +They are for the most part -- how to put it ? +So we will be here . +There 's no end to this . +She did nt know the man . +He is our President . + But it 's still right , he said . +What did you see . +This was his life . +CHILDREN , children , children . +Who 's in and who 's out for the new year ? +This is not my world . + And I have nt . +His people called , too . + My first week with the team has been good . + Was he , or was nt he ? + Very few can do that . +Second Life is another . +He 's going to show them . +They should be there . + It was all too much at last . + Him , he said . + They were right , he said . +It 's just another game to me . + But you are not going to make as much money . +But he does not see it that way . +He 's the only one who has nt . +What could she do ? +The same could be said about her family . + He is up next year . +So what does he do at night ? + He is very much his own man . +One day , it was too much for her . +I had to get to know her . +It was the same as it had been all her life . + They are never going to have that . + The president is the best of us . +That was not the case today . +But he would nt work . +This might be the case . +Today , we did that . +I want life too . +But not that much more . +For a few people ? +I did not see her go in or see her come out . +What You See Is . +They now have four children . +MONEY , money , money . +He used the game as the game used him . + They will be , too . +My life is still the same . + It is like going to school , he said . + We do nt know as much as we should . +We have more time for each other . + This one is good . +It was like the end . +They are that good . +But how do they know ? +I like what 's going on here right now . +It is too much government . + That 's what their show is . + You know , it was just , Go out and play . + They are all my family , he said . +Most people would have left it at that . +I want him out of here . +It 's going to be that way . + That made me be like : You know what ? +I do nt know if that 's the way American public is going to see him . + I did nt know him . +All three of them . + We are a government . + You have to show them . + That is what this is like . +The first one said , I CAN SEE YOU . + It made people think it was the end . +What is my life about ? +He just could not do it . + I like New York . +I can not take any more . + They know what to do . +Not at all , he said . + Would they like it ? +Did he want it ? + And they were . +The both of them . +Last year we did . + But he could nt be . +I do nt know so much about that , he says . +There 's a war on . + This is the first time it has come up since , he said . +It was the Second . +Then it could take years . +I think we are in , but we are not where I want us to be at right now . +So did I at first . +You just do nt know what to do . +I did nt even know him . +This is where it 's at now . + We can make that work in the world of this show . + Few of us can . +It was made for her . +I said I could nt go then . +He had been director for two years . + You are up against the best in the world at what they do , he said . +It was just him and me . + They do nt know what I can do . +So that was it . + I could not . +But I think more was going on . +But we see right through him . +Was there a market ? +She is , too , he says . + You can play with it . + We know who we are and what we have . +She would not say what it was . + I had it for , like , three years , he said . + It did nt take long . + I have to work with these people , he said . +That is , it did nt used to . +If we had nt , we might not be here today . +I never see any . +This is what it 's for . +And I did nt have any . + But right now it 's a business . +But we are used to that . + It 's all money . +We never see them all at the same time . +We get up for every game . +It 's the best people . +You never get to see that . + What more do I want ? +Two days to go . +What made it that way ? +I could not say that . +Well , it is . + And I said , What ? + What does a president do then ? +It 's up and down . +He was just a good man . +These are people who work there . + It could be more or less . +I know you have to do what you have to do . + They were my team , he said . +What to do first ? +He may not be the last . +Some will take home much more . + Was this what her life had come to ? + I have to , she said . + Is that the only one you have ? +It 's just there for you . +He 's in it for the money . +Now she is , he said . +There is no way you can play the game without it . + That 's what people want . +They may have it . +It will come right back to him . +Not at our school . +But it does not have to be this way . +And that 's what you see today . + He 's never like this . +They have been very good for a while . +There never had been one until yesterday . + All right , all right . + Before , I never used to think about it . +So , there you go . +How can you get that back ? + And he says , Where are you going ? +I think it 's good for me . + That 's where all of their money has come from . + What should we do now ? +They can do as much as they want as long as they want . + But that 's what we do nt want to get into . + I said , How did you know ? + It 's good to be out , he said . +I was put off by it . +This has been a good year for her . + It will be more than I made in state government , he said . +You think you know them . +That was a year ago . + How long did it take you to do that ? +It was not last night . +But that was in May . +I have a big family . + It was a good night for me . +Is he the only one ? +She would have company . +Only life can do it . + The law is the law . +You are never going to make it . +It 's just time and place , but you know what ? +I did nt want to know if I had any of them . +I left it for him . +Today is the day . +People do nt know . +I did nt know what to make of it . +You do nt see that every day . +Well , no , it could nt . +My family is good . + It will take two days . +But now I think I can do it . +But if they do nt ? +Now they say it 's no one 's business . +But that is not so , he says . + Do nt you want to take it back with you ? + People there do nt even know who is president . +This is his team . +So much for the good old days . + We are going to put an end to that . + He does nt want to be there . +But now I know . + People said that for years . +Can I do this ? +So we do nt go out much . + He was good about it . + I do nt know what I want to do , he said . + As long as it is old . +I will be all right . + You have to go out there and work for it . + This is not a play for next year . + It is as it is . + Here 's another one , he said . +So how did it come to this ? +When will that day come ? +And how did he do ? +I go with people . + I think it 's going well , he said . + You do nt think about life . +I just made this up . + Do we know each other ? +In every case , that is , but one . + I would like it to be another time . +There is much more to do . + And he did that . +He was right on . + This is nt work , he said . +Well , that was my case . +I think we all do . + The police are good . +We have more people here . +He said : I do nt know what he said . +He would say that . +But What Do We Want ? + So how come we did nt ? +But he did not say how much . + No , no , no , no , no , he says . + They know we can do well now . + That 's the American way . +It can make you first . +It just did nt work out that way . +She just had to get to them . +For some , it was all from the government . +That 's an old one . + He did his best . +It 's up to him . +You do nt get in its way . +That 's what this was like . +I think there should . + You take it with you . + I think it can . +We think they will . + And you have nt . + Take them home with you . +I know you want me . +So has the city . + If it was me , I would nt be here . +Does nt he know where he is ? +Up to the end . +I get it now . +But what were they to do ? +I even know one or two . +I do nt think you have to have that . +Just not by very much . +But - would nt you know ? +As we all are . +And it 's New York City . +We put up with too much . + Where Is the Law ? + It 's just another game , he said . + You have to get it right . +Now , I know I can play through it . +You are on it . +He is all set . + It 's not the money I want ; it 's the place . +And in a way , we did . +And they know we know it , too . +I want to go up there . +They come here because they like it . +What are you going to do about that ? + He does nt have to say it . +It did nt do that . +I was new to this country . +There is no place for them in the government . +You can make the case . +But it should nt be because of me . +Most children want to do more than that . +Well , that 's out of the way . +There was only one way out . + Now you see all these police around , she said . +He did not play in yesterday 's game . + Money , money , money . + Well what 's the most part ? + Up , down , up , down , up , down . +And he 's going to have it . +Did you know there was one ? +I do well at first . +Three years from now we could do it . +And it has been . +We could nt even see where he was going . + But will they do that ? +It 's time to get back to work on it . + But I did nt know how not to do it . +Right now there are nt many around . +But they have little to show for their work . + Could that be ? +Several are around the city . +It did nt take her long . +But what about the little people ? +What more do you see ? + I do nt know what to think , he said . +There is - one . +He has to do more work . + They are big and they are very , very good . +He said he had left his at home . + I do nt even want to think of it . + It was very good . + I did nt know we were going to come back , he said . + This is In Here . +There 's no work and no money . + But it was more than that , he said . +It 's been a while . + You say that , but how ? +When they go , what 's left ? + I do nt think you know . +If we are not going to do it , who is ? +That is , until now . + It was never before , he says . +I did nt have to . + I did nt like that . +And so it was over . +And there will be a next time . + And what are you going to do if I do ? +WHO is that man ? +A good time will be had by all . +How about all of them ? +Here , you have to do before you think . +See what you think . +We can do it now . +We own all three . +Well , there is . +Or is it on its own ? +Right now it 's in New York . + I do nt know what we will do when this is all over -- it has been our life for so long now , he said . + Or If you . +But this is not just any year . +And it has nt . + There were too many of them . +You might not like the people , you might not like the director . +We are not going to do that . + I want to see , she said . +After all , it never had been before . +Where does the new season go from here ? +He does it well . + I never see her . +This is where we will be . +I have the right to work . +No , I do nt think so . +Have another one on that . +This is where he should be . + If you do nt like it , do nt go . +But he had no team , and he did not want just another team . + You can not get out . +For I will not be there . + Just now it was night , he says . +No , and I like that . + He had his best game . + We go to market every day . + First place , he said . +If they did nt want to work , they did nt have to . + Those were the days . + The best times , he said . +So who is that going to be ? + We are not the same team we were last season . + I said , See ? + It was nt the right way , he said . +We are going to play . + Too much , she said . + You like this one ? +But it is just that . +He has nt been out since . +That 's all we have out here . +The same could be said for him . + But some of it was old money . +They had to know that . +We do nt want to be that . +Which might be not at all . + You have people who will come here from all over the world . +I can get over that . + He would say , You want to show that ? +That 's the best I can say to that . + Now go back to school . + They may not say , How much do you make ? + I know what I did , and what I did nt do . + These people are the best off . + Last year he did nt . + You just do nt see it . +They do nt have time to take in . + We want to take our time to do it right . + They did nt like that . +I just have it down to no and no . + But I was nt against it . + We were in a world we did nt know , she said . + I just did a show . +But there is still much to do . + There 's only so much you can do , he says . +I did nt go out last night . +And I think there will be more . + I do nt think of it as work . + What did they do then ? +There can not be too many . + I did nt want to come here , she said . + But that is not to say that there are nt any out there . +As I said , they just do nt get it . + That 's where the best are , he said . + This is your money , he said . + And that 's all right with me , she said . +And that she does . + For Which Children ? + I said , What about me ? +He was good at what he did . + We are not political , he said . + Many have said that , he said . +When you know it 's in , you know it 's in . +He said no and no and no . +They did not last long . +Its people are our people . +They know one another . +Now there 's a play . + That 's all there was to it . + Because you can make money with them . +We have children going to school here . + I did nt play well because of it . +But they had no money . +I can only be me , and that 's all I can do . + I did nt have music last time . + It 's been one after another after another . + I did nt like it . +This time , it did . +West 's did not . + We said , Where have you been ? + Public life is long . + It 's old . + They are good about it . +It 's not going to work . +I could nt get out . +There is a market for the business where we are . + I think you do . + I just could nt say it . +Well , she 's right about the second part . +What do women want ? +I do nt know what it 's going to be this year . +But that 's the way I want it . + You know , I have nt been a president all that long . + You know what that is ? +They will get it to me . + I had to go on it . + I did that . +He 's a part of the program . + How old is she now ? + What do nt I want ? +He said , What 's going on down there ? +What 's going on in this White House ? +I think not , he said . +You are your own company . + You know what I said to my family yesterday ? +One did nt just take over a company . +They only work for money there . + I think is too many , he said . + I think it 's one of many . +Now you get us out of it . + But it is the only way . +Would I get it ? + There 's more going on . +I want to go back . + I will never get one of those . +It 's they have nt had the time . + We think of this from time to time , he said . +And in a way , he was . +But I say you never know , I do nt know . +So , which is it ? +He called the next day . +You want to get on the court and you want to get to where you were when you left . + Only several people can do that . + We all know how he can play . +No day is the same . + After that , you just do nt know . +And what was the first part , John ? + What if it does nt ? +What do you get then ? + There are just too many police around . +We just do nt . +Many people do nt know that . + How Could This Be ? +Some had to be . +Do you want more ? +You would nt do that to us now , would you ? +You are not American no more . +It should have never been that way for us . +It 's no way to do business around here . +There may be even more . +But two or three or five times ? +We think of you at night . +All of those , he said . +But it is also about much more . + I just want to get my life back , he said . +I like to get it over with . +We want to get back to that . +All is well with the world . +I was without him for so many years . +But then you come home . +But there is much more to it . + Who do they think they are ? + Or all of those . + My family is the people . +He 's like family to me . +His life has not been the same since . +And every game is big . +A : I did nt know much . +It 's on the way out . + Some people have it , some do nt . +It 's their first home . +That , she said , is still the case . +You are in there . + But a law is a law . +He 's just not that good . + The last one to go will be me . +This one should be as well . + How could my family not think less of me now ? +That 's the way we are here . +How do you come up with that as the best one ? + Do I like her ? + When did he say that ? + That 's all he said . + I was like , that 's not going to work with me . + Where is that money going to come from ? + All right , she said . +Where can I take you ? + This is our team . + I have those too . +This will be a good way to end our season . + I do nt know what I will do after May , he said . + But the best days of my life were here . +He never has been with him . + I see it as : here 's what I know . + Where do they get that ? +For some people , New Year 's is just another work night . + I have to , he said . +Now they go down . + Well , now it 's here and they do nt like it . + You think you know what 's going on . +I do nt know what they did . +He was all of these to us . + But that does not work . +We did it , and we are going to do it . +After that , the world . +I still do it . + The way he 's been going , what was I going to say ? + Well , it was nt . + We know them , he said . +That 's what we are going to do . +And that 's what he would do , you know ? + Do you want to see these ? +But only for two years . + See , see what we have to go through ? + If we do nt , it 's going to be a long day . + I can not work now , he said . +Out with the new , in with the old . + And now we know . +But is it right ? +It 's the first time for our country . + It 's a big week that way . +You take some , right ? +The other does not . + I said , What is it that you would like me to do ? + It 's high now , but this will take it way up . + These were my people . +And one of the best . + I said , Do nt do it . + People say : Next year . +This time , with music . +How could they have ? +Then they would have it . +They are not here ? +I will not do more . +She is now one at The New York Times . +There are many good people in the Government . +It 's a part . + You get more home for your money . +Would you have said no ? +And we will be back in this game . +But not for all . + That 's just how it is . +That 's what the federal government does to you . + But that 's how it is . + That 's the market we are after . + When it 's your time to go , it 's your time to go , she said . +He did nt like his place much . + Are there any left ? + She 's not going back to work next week . +Get me out of this . + They did nt know what was going on , he said . +I want him to come home . + And -- I do nt . + I said : It is not . +This one was about when and how . +It 's the best she can do . + I know they are . + Not much more . +We still have that in us . +But what if it does nt show up ? + And then what do we do ? + But what 's this ? +We all still do . + Not Night , it 's Right . +I could do this . +How do people take it ? +She made them a team . + What about him ? + It was good to see you , he said . + What do they have to say ? + You do nt want to play my music . +It 's out there , so get on with it . + You of all people know how come me to do that . +It did nt work that way . + It 's no good , he said . + They say : You are too big . +You take what you get . + I do nt know what to make of him now , he said . +That is not the case now , he said . + They just go right by you . +Are they any good ? +It has so little to do with me . +It did for me . + She said that to us a million times . +He 's on his way out . +We are with you . + How about a school play ? + How did it go today ? + If only it could be like this every day . +AND , they are off . + If I had nt have said it , we would nt be here . +That 's good , is nt it ? +Now he does , and is . +It 's time for them to go . + When he had to come up with a big out , he did . + But for now it is just us . +It is our own . +How much time that is , I just do nt know . +He does nt like it . +We did nt know how long it would take . +Me : Who are they ? +First president of what ? +Is that what they want ? +Most people get to make their case . + Do we like it ? +We do nt want to be a team like that . +I think it 's because we are used to it . + It was not for me . + I think we can make it . +So are American officials . + We still have a long way to go , he said . + It 's a little now . +For a first down , too . + How 's your new school ? +Now I will show you . + We have and we will . +It was a very good day . + This was not about money for him . +That 's when we get called . +THEN SHE FOUND ME . +I go about it the same way as if it was one game . +No one will know what I have been through . +You just do nt know when . +How much do they know ? +When did they last play there ? +Too much for too little . + Every day was a work day , she said . +Because in school , there 's much more than just work . +He had four children . +And that 's going to take a little time . +They do nt want to get called out . + You can do it , she would say . +So , you see , we do not want war to come about . +I should be the best . +I can take her . +He would nt , though get another out . +After that , I do nt know . +How did we get where we are ? + We have so much more work these days . +What you see is what you should get . + We did not get that . +But they do nt like me today . + The market is there , he said . +As if I would know . + She was all right , he said . +No , I do nt want to say . + One way or another . + First , we have to get used to this , he said . + And here I go . +Where had he found it ? + This is good for the market . +It 's where my family is . + So I did nt do it . + No , it 's not . + We were just a little off . + Most of them just were nt any good . +Life is out there for you . +And if the public does not come up with the money ? +But that is old business . + They like him -- his way , he said . + And then four for the year . +They are the same , right ? + The game has to go on . +Down here there 's no set way . +But you are on to me now , are nt you ? +So much for the money . +They do make music . +And I want it too . + But it 's a long year . + And that 's the only time . +It was the best . +But this is it . +I do nt know if I can make it through a week of this , she said . +Some do nt get back to where they were . +He does nt do this just in public . + He can do so much . +So is that it ? +He is not home . + He just would nt go home . +Come over here and make me . +What 's two days out of your life ? +Now , we just have a good time . +So that 's what we set out to do . +Well , that 's not much . + Not in a million years , she said . + That was not good . + I never do that , he said . + These are not little companies . +He does what he can . + But do nt you like it out here ? +Get me out of my game . +Here , I get to see them all . +At last one of you did it right . + Because he was the best . +You were in your own world . + They do it very well . + We are all like family . + You have to be there for show time , he said . + I go to work , he said . + We are out of time . +I want to do this with the people . + But now you see . +It has been from the public . +This is such a big place . +That 's when I go home . + And are nt they just ? +IS THAT HOW YOU PLAY ? +We do nt know , and did nt know then . + It has nt been for years . + That 's when he said , You work for me , I own you . +But he has been . +But it was all right . +I want people to get their day in court . + I do nt think the President would do it . +It has nt , she said . + He did it for us all season , but it just did nt work out . +I had to get me going . + Well , there 's more to it than that . +This was my new home . +Her time will come . + He 's not the only one who was back there that could have made a play . +What would you say to that ? + There 's no place like it , she said . +They were , and there was still work to do . + I do nt know if it 's still there , he said . +You have to know what 's going on . + The day for what ? +It 's been too big a part of my life . +I will , too . + We should know what 's going on . +Not who he is . +How have we come to this ? + They did nt get out much . +Or did nt want to . + She said she did nt know it was on . +They do nt want to get left out . + This is nt about me , he said . +But I know that . +This is the end for her . +So will those who think big is good . + It 's going to be . +It 's not going well . + I was going to be out of here , she said . +How to show this ? +In the end , it 's for our children and their children . +But that was all he said . +You want me to go on ? +I have them , but I never see them . +That was not the end of it . +But he said he did nt see it in time . +This just was not one of them . +But I can do this . +But it 's up to him . + Is it like this every night ? +And his two children . + You never want to go . +I want him to have a good time with this . +But no good university does that . +They have it in the street . +How do I know this ? +I do nt know what it would take . +This is a good place to be . + You do nt think so much , you just do it , she said . +You are what you think . + DO NT DO IT . +Now we want a new one . + We do nt even know what 's in it , she said . + I do nt want any more children . + I like it very much . +It 's also what not to do . +He said to come right over . +How did I like it ? +We think that 's the way it should be . +You do nt get no money . + How many years has it been ? +We do nt know . +Now we will see if there is another way . + We all know where we are going from here . + But I do nt know what you have to do . + And now we have one . + I get used to it . +It might still be . + That one , I said . +So , who is the president ? +There was only one way to do it . + We have to go on . +We will never be the same without you . + I do nt want to go in and that be my first game . + They say that every year , he said . + I want to get out of this country . +But some still do nt get it . +Is it a way of life in the department ? + He did nt have to go over there , but he did . +And we just have to take it day to day right now . +I do nt know what this war is for . +And this was only Day I . +Or is it so long ? +They like it this way . +It 's because of the music . + I could have used more , he said . +So he left school . + It will take some time . + But that 's all I see right now . +Come on over and get to know him . + Where do I come up with money like that ? + Most of the children had not . + I do nt want to do it . +But they were nt . +And I think I can . + So I do it . +If they do nt , we do nt . +What I do nt do I do nt like . +All the people of the world ? +But who are we ? +And it 's still going . + I like this one . +That time is now . +Well , that 's it . +Should New York City do it ? +But this is not about you . +That is all I can do . +She 's not been well for a long time . +It did nt work the first time . + Might that be where you might end up ? + He said it 's up to you . +Do you know where you are ? + I was on my way here . +Or we do nt do it . +Good for the game , as they say . + What are you ? + When you want it , now , now , now . +People have to know that . +They do nt come to us . + They made it right at the right time . +Good for these women . +I had to get one . +So I know what it 's like , but it 's just not for me . + People do nt think it is a company , he said . +That was just over a week ago . + We will when the time is right , which is not now . + They know what the best is . + That 's what John did . +Where will the market end this year ? +By this time of year , many officials have had it . + I can play another year , he said . +Today is New Year 's Day . +But that 's not all there is to it . + That is what her life is . + And in a way , I did nt . +This is not the case in New York . + It 's way down . +You have to work and go to school . + She 's up and about . +They could come in and go up . +She put up with me . +He 's not here to say that . + They are just used to it . + You do nt want to come back . +Last week , he did . + I do not know what to do with them . +See how good he is ? +I think it will . + We say , No , she 's not like that . + It has a long way to go . + You do nt even have to use it for it to work . +What is all this ? +But that part of my life is over . + I said , So what 's next ? +We are the only family they know . +The world does nt see that . +She did nt have children . +What you have made . +Are we where we should be ? +They were against the war . + Five years from now , there will be a city here . + I do nt want him to like me . + You see how well they play . +Are they from here ? + Can I take him on ? + He did nt . +Right now , it 's not . + I do nt know who 's going to show up . +Is it all right ? + It 's not him right now . +He did nt know the country . + This year , A . + What are those ? +This year is nt like that . + He is here to play . +What if she does nt come back ? +I know that he 's going to make it . + We think it 's time , he said . +But we are going to do it . +We do nt want to get too big . +This is their day . + She 's your what ? +We still like them big . + Where , where is it ? + He 's so good . + Where are we going to go now ? + What are we going to do about them ? +They were not even there at the same time . + And he said You . + They might as well just not do it . + It 's not the general world . +If we last that long . + It was about being a man , another said . + I said , say no more , he said . +He 's said that for over a year . +He did what he should do . +So I used that . +New York is not that way . +I do nt even see it . +It does nt say it . +One of them was his own . +But that 's not the case today . +It was with you . + She made me go to school , he said . + He did nt want to come out of the game . +But one would be too many . +Do nt they see what 's going on ? + We want it back . +What day is good ? + I want to think about these last days . + Well , that 's me . + But we are well on the way . + I do nt have any , he said . + I think it 's time . + See , he 's down here . + This is big . +They go about their business . + Who would nt want this life ? +Not so much now , though . +Right , I said . + But I think we can do it now . +But that 's up to me . +We know how to get it . + You are right there . +We will see what we can do . +But what should be put in their place ? +But this is work time . + No , no , I do nt think so , he said . + And we do nt like it . + If it 's going to be your first , then that 's the way to do it . + I should have called . + How could this be good ? +I think she said it all . + And then I did it . + Now , he said , it 's my business . + So I say : Come on up . + And they are . +Very New York , she says . +The best of the department . +I think that 's all to the good . + Her life would never be the same . +What school is it and what is the program ? +He did very well . + Can we come another day ? + When we do a show , it 's not about that . + We are at war , she said . +I have to use it . + I have them here . +But how could I say no ? +I did nt know but that would be it . + How could it not work out ? + What good is money now ? +Here or to Go ? +Its time has come . +We never will be . + That I like it as much as I do . +So it 's off with the old . +I do nt know if the team is set . +You are part of the family . + They are also the last to come back . +It 's about being good . +What did the president know ? + That is the law . +No , not in this country . +I have another one like it back home . +So they did not . +We could be going down . +That 's about all we know . +I did nt even much like school . +It 's where we are at our best . + He did not . + This is what we would like to do . + You want to go when it 's time , he said . + What are they ? + Who is to say ? +They do big business . + The people who know me , know me . +What does it make you think of ? +Two times a year ? +But what of it ? +And no one has . + It 's not me , she says . + It 's their season . + They think it 's all old people 's music . +But just how big is it ? +Well , we have . + In this case , they are not . +I think I was home . +And it was right . +Who 's they ? + I think so , he said . + You are going to go to your money . + It 's been a year now , and the day is here . + I did nt know what it was , he said . + Well , we own it , so what are we going to do with it ? +I think it should be every five years . +He can just go out and play . +Time is money , he said . + Last year I did nt do that . +But that 's the market we are in today . +It 's a play with music . +Though New York 's is the same . +Here are one of each . + I even have had to take money . +And what about the next time ? + I do nt think it will work out that way . + What should this man do ? +He was right at home . +I do nt do any of that . +I could show them . +And they still are . +What 's he going to do with the money ? +Which way should we go ? + This is they . + I do nt know where any of this is going , or if it 's any good , she said . + It was just one of those days for me . +Or even three more days ? +They are good at it and they know it . +Then he 's going to get on you . + He said , We can set you up . + I want to go back out there . + She may have been right . +Where do you go here ? + This year it is . + And what did he like best there ? + It 's going to be a big season for me . +All we can do . + Like he 's one of us . + That 's what we have right now . +They do not last long . + She did nt come out . + I do nt think I have to work to make the team . + I want to play now , she said . +He says he does not know how , when or where . + All I know is I have to work , he said . +How right he is . +We do nt think about it . + It 's just part of the game . + Well , first of all , it is going to be all right . +But she was nt in the second set today . +There are good people there . + Then that was the end of it to me . + Now that one . +If there has , I do not know of it . + But they do nt do business here . + That 's not for me to do , she says . +I do nt want any part of it . +Do children still know how to play ? + They are back to where they were . +We should nt want first place even if we could have it . +Her day will come . +This was not one of them . + They are going to play more . + But that 's not at all who he is . +If it does nt , it does nt . +He does not want her back . +And there are few of those . + Where Did I Go Right ? + I just want to work and for our team to work . + We did see New York , though . + But that 's not the end . + It would be good for people like me , he said . +How did they do it ? +There 's only so much she can do . +I think there are going to be times when we both play . +How , when , where . + That 's between him and the school . +So what good would it do ? +He will go last . + That 's what he has to be . + And who is second ? + If you do nt , then there are nt going to be any . +But the game is still the game . + It 's too much , he said . + He would not say when . + Who is nt ? +I could be one less . + So I did nt do it . +Who would he like to see ? +And for now , they are . +How did it come to this , and where does it go ? +He was good company . +I just did nt do very well . + Do We Have Time ? + Where do I get that ? +Are they not part of the United States ? + Those that I know what they are , I do nt know how they are made , he said . +I do nt think I have to . +I just did nt know how . + But it does nt have to be that way . + That 's a new one , she said . + Not only that , but the game was over . + I do nt think that 's the way . + It 's the right time to do it . + It does nt work . + Then you do nt have to put up with them . +I did nt want that , he said . +I think you might want to go over there . +Now we have to go after the next one . + How many , how many are you ? +But on the court he is not the same . +It 's time to just do it . +And to all a good night . + I said , New York . + You get used to it after a while , she said . +The law says it 's time they did . + He does nt know my family , she said . +But they did nt show that here . + It is nt as good the second time around . +But we are the show . + I know that , he said . +That was my game right there . +It , too , has been around for many years . +So they put up another . + That 's what I know , he says . + Is nt this what it 's like ? + We will do just that . + We were no good . +We all know what 's going on . + We do nt have them . +He has to have the will to do it . + I do nt think we should go there . + We know what we are in for . +How do we get to them ? + Where did he come from ? + And she has not . +Not for me , though . +Now , at last , it had found me . +But we did not . +It 's not like , I want to think about it . +Not two , not three , not four . + There is no such program . +They did last night . +What do you see it as ? + It 's I know me . + That 's part of it . + I did nt say it . + You have to come with me , he said . +They are on me , what can I say ? +The director is the director . +Will he play more ? +They were still there this week . +They should nt be on the street . + He said , You do nt know how they work . + If so , that 's not what we want . +I think , What did I do to get there ? +They had to get used to me , and I had to get used to them . +That 's me down there . +That 's what I think . +But they do nt come . + I think this was it for him . +He was a big man before he was a big man . +You do nt get to see the game . + How long did they play ? + That 's what did it for us last year and that 's what will do it for us this year . + Many times , she said . +Then he called the police . +Then it 's up to them to do what they will with them . + For years , there was nt any . + But we are a good team . +He would have it no other way . +We know what we did last year . + You may not like that . +But they are not home . +It 's about time , is nt it . +What 's there to be said ? +How long can we ? +Is this New York ? + How long will that take ? +But it is not just that . +It has nt come . + We know he 's going to be a part of our team and we want him back . +But you were right . + I just want to go home , he said . + They should nt , until we do it . + After that I do nt know . +Is that what a government does or not ? + Or they see you out . + I do , he said . + We know it , too . +But I do nt get it . +I do nt see many down people at all . +There 's not much you can do about that . + Only one , he said . +Can you play the same way ? +At first I did not know what I was going to do with them . +The government is out . +It 's not for me to say do nt do it . +One man says to the other , You want to go ? +They should nt be , but they are . + The world is with us . + They called about four . +You said you would . + I was just going . + I like to go out . +It is nt one or the other . +I did my part and they did their part . +Women can play , and she can play . +Where is the President ? +Say what you want to say . +She says she does nt know how . + Do I know what I can do ? +This is the way it is going to be . +Now they are back for more . +I may well have been . +He 's had it . + I still think it 's the best school in the world . +But I like his game . +Now is the time . +The police were after him in three States . +We do nt have those . + I have more than that . + How did I get here ? + If he had , I would nt be here right now . +She may not have to . +And this has been my year . +That 's the team . +But to this day , I do nt think any did . +It 's there for people who want it . + It 's like a game , is nt it ? +Where to put them ? +This team is going to be good for years . + Most do nt do it . +They have no school . +I will not do that . +And so on , and so on . +I had my say so . +But , he said , He does nt know about me . +What is it going to get for you ? + He said , You can do that ? + I do nt know how we do that . + It is the way to go . +That 's not good for the team . + But we could nt go , he said . +Still , they come . +So I just want to get on with it . + We do nt know where we are going to go , she said . +Do nt you like me ? +You do nt even have that . + But that 's all part of the game . + It 's much more than that , and that 's what we want to get at . + People from the city just get off on that . +And it does nt say that . +I do nt know and I do nt want to know . + You do nt know what it can do , he said . +It did not have to be this way . +And he does that very well . +The man did it . +Very few have come back for good or to go into business here . + From The First World War . +He is out for the year . +They did not show up . +It did nt work out today . +What do you want to do with it ? +And the next year . +It was time to go home . +You are on your own now . +It 's a way of life for John . + He did nt say much , he said . + I do nt go out much any more . + She was right . +That 's what his program said . + I said , What is it ? + And that 's how my life is now . +If they do , that could be one . +I just do nt think you want that . +So what are we going to do ? +He would not go there . +But it 's been around so long it might as well be . +How to get around that ? +It could have been so much more . +Are you still with us ? +That 's the way it was there . +It 's good for a house , too . +I want it to go back to my children . + What was it called . +Today it had only one . +This will be my first time back . + Who 's going to get the most ? +And what a family it is . +Where there 's a will , there 's a way ) . +One day at a time . +If they do not , we will . +Now , too , she says . +What 's a family to do ? +That may be as well . +But he is much more than that . +You go after people . + All said they could . +He had much to work with . + We were the police . +I want to get in on my own . + I want to be like him . +This is only right . + And so on , and so on . + There is here , she said . +We want it all at the same time . + It 's the best there is . + It 's not over , he said . + He would never do that . + But what do you see ? +Our team has come back before . + But many of them never do . +How would you know which one to get ? + What is there to go back to ? + What is our business ? +It 's on now . +And that was my first day . +And I did nt know what was going on . + They are around there all the time . +She did nt have much , but she did the best she could with the little that she did have . + Some of them do , but not all . + I did nt know them and I did nt like them , he said . + First year , it 's good . +That 's what I like and that 's what I want . +We want it to be right . + There is no government , he said . +They know what I have to do . + We will see . + But that 's the way we do business in the city . +Should they go , too ? + They are that and more . +So who did what ? + It 's a big market , he said . +So she did nt . +This is not your right . + We had nt . +That was not all , though . + You do nt even think about it , you just do it , he said . + She was good all the way . +So was its end . +It should nt be that way , but that 's the business . +I think it 's going to be very up and down . +But they may not be . + What government should do now is get out of the way . +Where would she be then ? + I do nt know how she does it . +This is a good group . +Today , for a while , it will be . + He does this all the time , does nt he ? + And he has said no . + That you do nt like ? + That 's good , he said . + Just a war , you know ? +We are down but not out . +She was not in court . +It will not last the night . + But it will be on . +We still have to go out and play . + He 's a man . + I said , All right . +But the music will be good . +But they are on their way . +Right , left , right , left . + What if he is no good ? +Officials are part of the game . + And so on . +I want to be home here in the city . +I did , most people did . + He did not say how . +It does nt know what to do . +Just who do we think we are ? +How did he know ? +And he had it in for you after all these years ? +We had to do it , and we did . + This is our city . +But we can get there . + We have to take it one game at a time . + And that 's all I said . +Is this good for me ? + It 's not just for me . + This is good , he said . +But I should nt have been . +So what does he do about it ? +If that 's the end of it , then so be it . +I do nt see how they can get through it all . +You just have to play through it . +But it was not the only one . +That 's too much time . +And we are going the way we have been . +We do not know it . +They may never come . +Want to case a game ? +They did get more for their money . +Then you have to go out and get a new one . + We were good , too . +When he called on her , she was there . + Think about it this way , she said . +Were they in New York City or not ? + If people say so . +This was the way to do it . +Then , their time is no more . +Can you see me ? +It 's up to them which way they want to go . +I have to play this way every night . + I said , I know , but . +They come on their own . +That should go over very well . + This is still a very , very good team . + Him , too , she said . +It did not end there . +He said to come see him . + Very good people , he said . + But I can not do it . +But what if you do nt want to be found ? +We know it best . + It should be over . +Time to get to work , John . + COME ON , COME ON . + Go home , they say . +What would I come for ? +That 's what they are good at . +How long can you do that ? + We all want to know . +I think I can play out here one day . +What do you like about me ? +She 's had work ? +You do nt play to just play it . +If you do nt know who they are , you should . +There 's just too much of it . +This time , he did . +This is city government . + If we play that way , we are out in four . +We want to do even more this year . +We just do nt know who it will be . + We are just going week by week , he said . +Where do you go after that ? + Where did the money go ? +You think you could do this to people . +We come to know these people , day by day . +He did nt get down . +It 's not just that he has nt come in to work . + That this is not what my life 's about . +It will be for her . + This would be for him . + And that could take a long time . +But it 's not how good you are , but how you play . +He said he could not . + But that 's part of New York City , she said . +It was as a little much for me . + It was all because of the school . + It will take me from you . +We just know she does . + This is all the Government does for us . +That was several years ago . + Well , it 's still against the law . +They want to have a say . +Now , is that good ? +I do nt even know how this is going to end . +It did not show last night . +She is the best . +Is New York back ? + We are a family . +We want to know . +No one called us . +It 's going to be . + It 's all about the work . +It will be more business . + But they know me , too . + Because I want to get out of here . + This will be one of those companies , he said . + Would she have said it if we were not there ? +And there is some of that in this show . +I should have , but I do nt . + First of all , I did nt want to come here . + But that was it . +He could use the money . +In Where Did I Go Right ? + I said , What 's that going to get me ? +From Now , Where Were We ? +But it 's been like that for a long time . +But what is it for ? + He was all over the place . +That 's what this university is . +Did they like the show ? + We can only show people what we can do . +But it never did . + I said , Do you want it now ? +Did you want to like him ? +There 's not much here . + And , if you do nt , they also know . +As he put it : We are not a big business . +The next day , there were five . +But it 's going to come . +This is home for us . + Are my people there ? +What do I do with it ? +It was a long time ago . + But he made it . +You might not like it , but you are going to get it . + In my old life , it was all about work . +We are just going to play the way we play . +What is it that we see here ? +Last year , they had four . +And most people here think he does . +And so do I . + What did you like most ? +A government should think first about its own people . + Go on , he said . +Should nt it be the other way around ? +Well , not all of them . +They are all business . + It 's life to us , she said . +And it is so New York . +I play my own game . +But she did not know where she would be going . +You have to just go . +AND then there is the money . +This is nt about that . +Not a one called me . + I just want it over with , he said . +It 's New York City . + How old are you ? + And I said , I do nt want to do a play . +It has nt been good . +I know that she will make many more . + This is my home , he said . +They had come through . + This is as it should be . + How could it have not been called ? + Can you take these off ? +But he had a life that no one had the right to take . +And what did we get ? +He does it very well . +It is one of the best around . + It 's for us . +It 's good for all of us . +That 's how the money is made . +Be on it or under it . + She did it her way . + One million two . +But it did nt do well at all . + Other people do nt think for me , she said . +And if they were , I would nt say so . + They said I make too much money , she said . +That might be part of it . +They will get as much time , if they want it . + How can you say ? +We are not where we would like to be . +I said to her after the game , that was the best game of her life . + They could do that , and we would nt know , he said . +So , who is right ? + Now I would like very much to go to school . + But I was . + They do nt see it . + Now is her time . +But we just do nt know what to do . + And then : What do we want ? +Us against each other . + I was just in the right place at the right time . +He 's still against it . +She has been that , and she still is . +Do nt go where they are . +I know no other way . +But then , who is ? +But what about the music ? +This is our life . +I would nt want to come every night . +He 's going to come right at you . + But I know that 's just what they do . +So what is he ? + That 's who he is . +Who , who , who , who ? +They were good times , they were the best times . +Well , only a little . + We were going to get back in this . +I never did it . + Can you see this ? +If they do , they do nt like them . + I know what the days were . + It is still with us . + She was nt used to that . +What should I do now ? + It was all about money . +There is no time . +And you could see it out there . +I think he was right about that . +And I still think I was right . +No one I know . +But he does know . +How did you get back there ? + You can see through it . +One can only say , Go for it . +We are just going to go from here . +He said , Less is more . +We can not do more . + What you see is what you are going to get , he said . + Should we go home ? +We are in a people 's business . +We have to play our game . +He could not , though . + What 's the Good ? +More of the same ? +But I like what we have here . + It was in a group . +Any man you want . +But I do nt want to say too much . + It can make you well . +But we are going this way . +What do they want here ? +I have to go where they are . +SECOND MAN No , how about you ? +What did you want ? +I said , I own you . +All the people can do is . + They say that every year . +I put it back . +You know : Go . +Where there is a will there is a way . +Now , it 's the right . + And she does her own business . +Now we are home . +Most of them did . + This year was a very good year , he said . +I want them to know it . +They are nt the same . +How can you even say that ? + But still , it is time to go . +No , business did nt like it . +And we know where it is . +He 's new to this . + They are going down , he said . +This season , there were three . +What the city would be like . + But now we do nt know . + Go to school . +It 's a new one . +I did as he said . + The government did this . +We want him out of the school . + They might not do it now , he said . +But you used him so well . +In New York City . +But this is my second time here . +Some of it was . + What Can You Do for Me ? +I said , What ? +That 's what we want to do . +We should also know this . +I do nt want a home . + I had to get back out there and do what I did . + But two it would be . +The game was all but over . +It 's the best time of my life . +WHAT WILL YOU do ? +You do nt think you have that ? +There is life around me . +SO now we know . +He says he 's used to it . +But they all do . +You do what you have to . +You should have been there . +But it may be so . + Is nt that what he is ? +We think our people are right . + You want to know what I think ? +But she did not show up . + Well , he 's right about that . + But it 's not . +And not all of those do . + I think this is a big country , he said . +Companies can do it right now . +It 's the last day of school . + I have no money . + And I said , Who is it ? + Now , it 's the other way around . +May we be here . +He has nt been back . +He is just too good at it . + There is nt one . +But he is good . + We said So what . +Then they play the play . +It is nt that . + I did nt know at the time that that 's what it was . +That 's what I want to see , too . + People want to see you do well . + It 's a big country . +It was a very good business years ago . +What 's up with you ? +Some have money now , some do nt . + Are we still in it ? +He was on his way home . +And there is nt -- for now . +It might have been yesterday . + I think it 's just the way you do it . + There is too much . +I had to put an end to it . + I do nt know who . +He is the President . +But here it is , the day after . +And we are going to do that . +She 's going to do what 's best for New York . + I do nt want this night to end , he said . + People have used up all their money . +And we do nt have them . + He said , What did you say ? +Now you see it ; now you do nt . +That 's the way the game is . +I can do this , on most days . +That is nt where I see my life going for a while . + We are going to take you . + I did nt do it . +But no , it 's not for me . +All right , that 's it . +And this is New York . +But they do nt now . + The same can be said for his work . +You are just out there . +It 's part of you . +They should get over it . +Did he know it ? +It 's where they come . +Some do nt come back ; some do . +It 's part of my life , too . +It would nt be me . +The people are right . +Or is that just the way they are ? +If so , who are they ? +This government has a public here . +What if you do nt ? +They like it here . +It 's not like it was with us . +He was one of the last of the just . +If he could nt do it , then I would . +He did nt see me . + They were right . +What does that do for me ? + This was not so . +That 's what music should be like . +I do nt think I said that . + This is what we do , she says . +I do nt know about this . +His case , his work . +There are no women . + It 's good to come out and play and get on with it . +We like them for this . +Time to get on with this . +It 's a little of both , I think . +What will I do in this world ? +I would have to get back to them . +Now it 's back . +And they get it right , she said . +It 's not going to be . +It was nt the first time . +That I know well . + This is no way to do business . +It 's all over the world . +I have to work at home . + Can we , can we , can we ? +It did nt take me any time at all . +And what I want to do . +It did nt used to be this way . +Put your money up . + Some days are good , some days are nt . +In a year , he might be . +I did nt know he was this good . +There were people who said : How could you do that ? +We do nt even know what 's going on . +Show people what you do . + It 's what I see . +For him , his country is his family . + You do nt know where they are going to go . +We did nt come out to play . + It was to show New York that I was back , she said . +I did that several times . +At times , John would say , This is the way it 's going to be . + I did nt do much at all . +Now they can not . +That 's what this game is all about . +This could be your first . + How are we going to do that ? +But this is not a game . +Will I know it ? + If you want them , you can get them , he said . + I do nt know , she said . + It is not the same , she said . + Do you know where I want to place it ? +No one was in the house at the time . + I think , he said . +While the John A . + They are a family . +Where it is nt all out there , and does nt have to be . + That 's a little like life , is nt it ? + I just do nt know what to say about him . +It was what he did . + They said we have to go . + And I said , No way . + This was a big game . + What do we do . +He does , too . +I would nt go in there . +But yesterday he said , That was last year . + All day , I said . +You will own it . + Is it money ? +We still have a long way to go to be where we want to be . +I want to own it . +School officials state it another way . + It was going to be a long night . +So this was like a home game for us . +All in just five days . +Go get it now . +I will , I will take it . +What 's the way out ? +No we do nt . +This business is war . + But here we are . + Get us out there . +I did nt know it then . + Was I right ? +The man says : Every day . + We just did nt play . +All he has is his money . +And the people know you . +His time is over . + It just was nt my best day . + So now I can play it . + It 's going to come and go . +Do I want to know ? + I do nt know how I do it . +Was nt to be . +But do you know what ? +It used to be that he made one out and they were all over him . +Who -- or what -- did they think she was ? + What do you think of all this ? +What are you going to do to her ? + We said , No , for each of you . + Do nt You Know There 's a War On ? + You want him back , do nt you ? +It 's not over , and this case is nt over . + To me it 's about the children . + But it 's much more . +Just come see me . +He would have to know , and so I would have to know . + How can I get one ? + It may have been . + I called him John . + It 's not all that good , he said . + And if we are not , what is that ? +No it was nt . +I do nt know this . + And it may not show up at all . +And that 's just to get into the game . +What was school like then ? + It 's over , it 's over . +But it 's still my home . +Will they do it ? + I do nt know if they know about me or not . +There were three of us at home . + We did nt make any money , he said . + That could be her out . + It was all around us . +So this is big . +And I know who I work for . + No one called the police . +I know they were there . +Where do I get all this ? + Do nt even go there . +And who do you want to play ? +We did nt play very well . + And what does that do to us ? +That 's what we do nt know . +She should do well . + WERE YOU ALL RIGHT YESTERDAY ? +It 's never the same and you are not the same when you come back to it . + I know when to go . + But there has nt been a one . + It was the best three years of my life . + It is not a new show , he said . + It 's been a very good year for me , he said . + And he says , What do you want to do ? +This is what it used to be like . + What have we come to ? +We had two last week . + I did the best I could today . + They only go up . +That has not been the case this season . + But if we were going to do this , we had to do it right . +And that 's the way it has been used . +And we did nt show up . + He called back at the end of the day and said he could nt do it . +She could nt be more right . + Are you in school now ? +They said they would nt . + They have a long way to go . + I may go to where she is , he said . + I said , What did you want ? +But I can not do it . + They are my people . +But I never know . +Well , I think they do nt like him so much . +WILL IT BE WAR OR BUSINESS ? +And then we do . +You were right ; they are still here . +It was my business . +What is it going to be like in three or four years ? + It was nt money , money , money . +What it 's going to be . + If not , they are not . + But he is . + They did that in place of going to work . + He 's just a man . +I do the best I can day by day , she said . +When we have to , we do it . + No he did not . + But it 's there . +How do you make it ? +Well there it was . +What more could I want ? + I think that was it . + Both times you were there . +It 's all been said before , at one university or another . + Now it 's just a day off from work . + But we do nt have those here . +They are no good . +I want to make my first million in the next two years . +I do nt know what to make of it . + What are you going to do after that ? +They found their man last year . + I like my team . +And he has been for a long time . +That may still be the case . +So he set out to do a few . + That 's when you want to play your best . +You know , it was out a few years ago . +But they are right . +He was the same . +But he has been through this before . +We are still with it . +But more is at work here . +But did it work ? +If so , how long will it last ? +She 's country , right ? + If I go down , I go down . +Now , that 's not so . +But if it was any other time , I still would have come out . +And you should be , too . + She has good people around her . + I want to be President , he said . +And I take it back . +We are not the same team . +Now we know him . +We do nt take that . + Who 's been here ? +It has come to this . +You do what they say . +What 's that , you say ? + I still do . + That was the best time of the day , the very best time , she said . +May there be more . +I did nt want to do any of that . + I did nt want to go into it , she said . +I would nt come for even one day . + But over all , I like it . +I know good times are going to come . +I want to make it work . +There 's not time . +That 's what we do these days . + This is good for them and good for us . +But these women will get work . +It is so on . + It 's good to have that . +Then I take it out . + We get them , too . +But , she said , she did not know how . +He did nt know where . +In the old days , he said . +They are right , you know . +He was in business , was nt he ? + But it was not . +There never has been any other way . +But he never does . +You get so used to it . +I had no money . + They should nt do that . +You did nt know where you were . +Were going to work and work and work . + Is it about me ? + I did nt know where she was . +It does nt get to us at all . + I used to take my children over there , she said . + So this is the end for us . +They do nt have money . + That one is off the market . + They are still around here . +I know it too well . + They are nt going to go back . +What more could you want ? +People only see what he does on the court . +We do it all . +That is the right way to make money . + But I would nt make too much of it , he said . + I did nt know it was going to be like this . + We are going to get out of this , he said . +They did nt get it . +This is not your time . + I do nt even have an office there . + Now I know you would . + He said , Who 's this ? + How did all that work out ? +When will we get out ? +It was more like a game . + I want to go back . + I know them , he said . +This is just a game . + It 's what I think about all the time . + It 's been a long time since I had a night like this . + You have to go where the business is . +How high would it be ? +It 's all the same . +That case has not been made . +This is the market . + It 's all right now , he said . +We do nt want him out there like the last time . + He just left . + There was no other place to put it . +But it will not end there . +Over the years , it has been . +Still , the companies may be right . + They just do nt have the money . + It 's just what 's going on right now . + What do they want with us ? +So are some White House officials . + But I did nt go out today . +What would we do ? +But I do nt think that 's the case . +His people are very good at what they do . + That was the big play of the game , he said . + There are times I just know , she said . +And that 's the way it 's going right now . + If this does nt work , it 's not like no one will know . +What were they here for ? +She 's out of this world . +When is it too much ? +But now for the game . + We are nt . +Some people do it . + Use that , she said . + It was the other way around , she said . +You can see people . + Not that old . + Well , I do nt know . +They used to have more . +Then it 's not good . +It does nt go too high . + If I do that , he 's going take me out , though . +That 's what they are about . + That 's where I come in . +Today , it has four . +I do nt see any right in that . + People are there , he said . +But who will I be ? +That 's not a business . +Then , there was the market . + We are both old school . +But I do nt think it would . +Is this a good life ? +The end of the money ? +I have to just play . + It 's never been this good . +I do nt want them to go back . +What Would They Do ? + They might have one or two in their life . +So where are those ? +It was nt to be . +Where do we go next ? +He said no one . +It 's like here and now . +This time , they did . + Now , I do nt think about him . + It 's not the end of the world , she said . +For him and for me . +It is five years since you have left us . +He has said that before . +And there should be . + We do nt know what we are going to do . + What more do they think they can do to us ? +I used to think that I did nt , but I do . +We are going day by day . + But I like him . +But life is not like that . +I think they are right . +He does all of his work . +But that 's what it was . + What 's new about this is that it is two women . + They come right over my house , he said . +This was the first time . +But there could be three . +Life , life , life . + Only four or five show up , she said . + It never should , he said . +It 's more than that , though . + All right , he said . + I know she will . + It 's not that we do nt want the money . + But some people are not people people . +That 's the best part about him . +There are nt many of us . +By day , they work in New York City . + It is not political , he said . +That 's how they are . +How did we do it ? + I just did not know about it . + They all were . +And you have nt used it . +Want to be new ? +He 's been with the same company for about four years . +What do you say ? +It is all up to you . +So that 's what they did . + This is just a game . + And I do nt think so . +People said to her , How could you ? +It 's just been so long and he has nt been found . +I think it can , too . +Where are you going ? + I said , I do nt think so . +And if you did , where and when was that ? +No other country does that . +How do we get him out of here ? + With a week to go , that 's where you are . + He did nt go for that . +So what are we to do ? + This will take a long time , she said . + UNTIL THE END OF THE WORLD . +He has too much to do . +We do nt have time . +That much is the law . +Now the game should be over . + You do nt know where you are . + But I do nt know what it could have been like . +She 's like me , she said . + Well he should be . +There were only a few . +You have not even been here for three days . +It 's a political show . + How old is she ? +She would like that . + We see that every day . +Were going to make it work for the people of the State of New York . +Is it in all of us ? +If so , what is it ? +This is our second time around with this . +It was nt going to . +I said the same of him . + Who Is This Man ? + At home , it 's a game for children . +It is five , not three . + She just does nt want him to get out , she said . +To some , it is just money . +It 's over there . +What will they see more of ? +How Many Is Too Many ? +But there were nt . +It was more about work when he was here . +So we have to go . +And then he would say it . + But we are going because of him . + Every year 's my last , she said . +I do nt have to play that game . + You had to work to get by . +But not like that . +I could get one and not the other . +There 's only so much that people will put up with . +I know because I was one . + It has come to this . +Did you know that ? + How can you be like this ? +It just is nt so , he says . +Then , to work . +But he still was nt going to take their money . + Well , there is . +And that 's his . +Would you want more children ? + They all do , he said . +They were nt in the market for a new home . + That is what I want to do with the New York City Police Department . + That is their way . +That 's just the way it 's been going . +And they were long . + For all I know she does . + But you do it , he said . +But I still want to see what she does in office . +But the other end is there as well . +Now what can we do about it ? +It is not a long life . + He has been very good to us , and we all know what he can do . +I did what I know was best for the team . +This is not right . +What 's not to like about him ? + But the city , you can never get the best of it . +I think people in the United States are going to have to get used to it . +I would if I could . + Today , that was the old me . +And there is much . +It was also my first . +But it 's good music . + Not all that many people do . + If I play next year , this is where I want to play . + You have to be all right for the children . +But it might not be in the right business . +I do nt know how it 's going to go this year . +I like my school . +I did nt want to do any of it . + They are like family . + If I had time to play him , I can play him . +We did nt have that last year . +He says he does . + Where is that money ? +So you do nt put too much into it . +They have to want to do it . +What did they do to him ? +They are still good . +Never , never , never . +What do my children see ? +That 's what they did . + It would take four or five years , he said . + And then they can do it . +What does nt work ? +They show up several times a year . + Well , not all . +Here it 's not that way . +But to me it 's not . + Today , we made it . +I do nt know what that 's going to be . +I want to do well every year . +Who would you want to put in there ? + What I do with my money is my own business , he said . +And those who do it like it . +I like our team as it is . +We are still not out of it . + They would see through that in a second , he said . + You make some money . + They are just like another family . +It 's my team against his team . + I know , he said . + I know her . +And then do what you said you were going to do . +Go back and see what I said . + You want to know what I think , he said . + They have to come down , and they will come down . +Only at home , though . +We are going to be there this year . +Do nt end it . +The university is not in that business . + That 's not how it is today . +It does nt every year . +You know so much about it . +This is not a good man . +The money 's all his . +What about when that life is just , you know , a life ? +But it 's much more . +In this case , it does . +But there is still a way to go . +And they had made it . + This is nt going to last another three days . + There was no war . + We can not just go on like this , he said . + You could nt see children at school then , he says . + Man , the money is going to come . + I do nt do it , he said . +It was nt about me at all . + It 's about that time of year is nt it ? + I come from there . + I did nt know what to do with them , he said . +On the court , you just never know . +And to the team . + So how do you know how to do a part like this ? +This was not the American way . +Want to come over ? +She 's not on the street . +That 's not the law . + But I do nt have to be . +No , we did nt use any . +In a way , he was . +I do nt get down on him . +This is my case . + One game does not make the season . + We know we are as good . +Because he has to . +They did not make it . +I think it 's been good for us . + Those two years were the best time of my life , he said . + Well , you never know . + You could nt do that today . +And in a way they did . + New York has been very good to me , he said . +How did people get around ? +And I do nt think it was that game . +But she said that she found it was the same all over . +What night is good for you ? + You are just not used to it . +All that and much , much more . + And it does nt . +Who could it have been ? +They are all made . +What are they made of ? + Can he be two people ? +And what did we do ? +Set up a game . + I was like , We are up what ? +Not so in New York . + But could nt get through . +And they know best . +But there 's no game there . +He 's going to get those . + How big is this ? +He 's so much more a part of the world than he was . + No , no , no , no , no -- that can not be , he says . +How will you do both at the same time ? +Not the way it has to be . +It 's a night out . +This season , they are not the only one . +What about all those other days ? + They all said it to us . +Because they do nt come out . +The second game he does . + And who do we have now ? +You never get used to it . + Me , too , he said . + I did nt know that much about it , she said . + Because I do nt know how to . + They are what they are . +You make them up . +I could have been in another city . +So much to take in , and so little time . +They know the good times do nt last . +It 's not the only one . + It was our day . + I was there , you know . +But he was too good . + We could be next . + You are first . +I do nt think I should say more than that . +I just did nt know them . +What were they there for ? +Today I had to say , Do as I say , not as I do . +Here is how to get them . +This is going to take time . +But she says she is not one of them . +Not , How are you ? +You know who it is ? +We made the team . +We had it our way . +I go to high school . +There 's still big money in this . +The city has come a long way since then . +WHAT WILL THEY THINK OF NEXT ? + I do nt even know how I was . +They were right then , and they are still right today . +What is this music for ? + It 's an off day . +Now is the time for us to do what is right . + We are just going to have a good time , he said . +But that was nt it at all . +Even though today he was the team . +A : I like it . +What do you do all day ? +It was a big game for us . +That 's the way it was with me . + We do nt even go there , he said . + We are back in business , Ms. Long said . +But some is not . + If you say so , he said . +I want him back . +Should he or should nt he ? +This is not what we play for . +Or make that had been . +Most of them are children , one way or another . +Or in the off season ? +Out of the White House . + We called it off . + He 's been a big part of my life . +It was over now . + I know I should nt be here . +How can he be found ? + If the team 's going good , I know who it 's about , and when they are not going good , I know who it 's about . +To him it is war . + What is this case about ? + What do you like to do ? + I do nt think you could say they do nt want him back . +We never found him . +This , it says , is the best we can do . +There would nt be any . +That 's all he is . +Not all of them , but too many of them . +That is his right . +He did too much . + What did he do before that ? +We know we can do it . +As much as you can . + We do nt want to be there . + I do nt think that would do any good . + I want the world . +They do nt want me ? +People should know that . +They are still a team , but do not know what 's next . + Before last year , she said . +But I do nt want to do that . + I should get out more . +It 's the American way , is it not ? +Second , we are in a war . +But first of all , people should have a good life . +As do many of you , too . + And I said , You are right . +I know what I have to do . + But they are now just the way they were then . +Where do people work ? + What would we do without you ? +Not for four years . +How do you get down ? +This was not all . +And that 's how we work , too . +Or the other way around . + You just have to be old . + How many are there ? +Some , he said , were still with the team . + And he said , Which part ? + We are going to be here for a while . + And there have not been many of those . + We know them , and they know us . + I know her from our school days , she said . +And the money is there . +It just is what it is , you know ? +I did nt have to think . +And so on and on . +No , they do not . +Do you know more ? +Who do the people go to ? +Or from the United States ? +Just do nt think . +Now it is business . + There are nt too many of those left out there . + He 's back in our school . +I did nt like it when he did that . + They just said , next year . + I did nt know it would take off like this . +We know that is the case . +You know , what 's up ? +You are all I have in the world . + It just called me . +After a year , he had to get out . + Which one do you own ? +We did nt play much man to man . +For many , there is no other . +I still think we would have used him in any case . + And so did we . + Is this it ? +This is where we are . +I will go on . + And now we are . + They get that way , he said . +WHO DO YOU THINK YOU ARE ? +It might do so . + Many of these women , she says , will have both . +What are we going to do about it ? + No , they said . +It does not end . + He can go all the way . +He used to be one . + But here , no . +We have a good team here . +If that 's what they see , that 's what they have to say . + But now we know who is who , he said . +It 's not that way now . + I do nt want to see them . +He would nt , not here , not now . +Here you have it . +I do nt know of another way . +What they want to see they are not going to get out of me . +It just was nt like us . +But is it now or never ? +I do like him . + So now you know . +How did you get into this business ? +I do nt want to . + I would say it 's about the same , he said . +We are going to work . +And work it did . + There is only one of me , he said . +We have it right here . +Not a very good one . +People would like to know . + We are city people . +It will never end . +Which team will be in last place ? +But so do most people . +But so did we . + He was just too good . +We are of the people and by the people and for the people . +The people down there . +Just put it that way . +It 's about all of us . + I want to do it and do what I can to get back to where I know I can be . +Now you think about the next game . +People do nt want that now . +But I do nt think she will take first . + The work has to go on . +I do not own him . + And she did . +We just did nt know who it was . + They say , What is going on ? +This is just another group of people . + There 's so much to do . +But she is nt . +And then time was up . + And you without it . + I go into my own little world , she said . + We are going to be like that in a year . + These are our people . +These are not the best of times . + It 's all about me now . + We do nt know where we are going to end up . + When was the last time you did that in this city ? + But it 's not about that . + Is that all right ? +People come here and say : What did we do ? + It was nt good . +You can only take it . + We all want to get out of here . +He was like a general . + That 's my city . +This was the one . +But he 's more than that . +It did not last that long . +Now it 's the same for me . +We made a business of it . +How much is too little ? +After all , there is nt much to it . + If he was nt there , I do nt think they would have a program . +And that was the best that could be said . +He does not want to be next . + It was nt , but I made it . +You would nt do that . +We did nt want it to end this way . + This is a team that can do that . + Right over there , it is the same . +We just did nt get there . +But you know you never can . + This has a life of its own , she said . +But he never found out any more about it . + I did nt think it was . + But business has to go on . + But they are not here now . +It is just not there . +In the end , what to think ? +I was not one of the four . +There 's not that much left . +People just do nt like this . +It can go up , down , left or right . + It 's my country . +We have to go here , then here , then here . + Like it was not too . + New York City is New York City . +But I get over it . +I think people see that now . + And you have a good day . + It 's my way of life . + They take too long to go through for me , she said . + I never think that way . +All that 's left is the music . +Is this where we want to be ? + You are right , he says . + And it is very old . +Now , only five do . + And to the people who were here and know us , it was . +Less is more for all . + We are out . +So what did he do last off season ? + For many of us , there is no place for us to go to . +But we know that we can play the game to the end of the game . +What would it say ? +Not all of them , but more of them . + Now , he said , I do nt think that was right . +My work is here . +They do nt know who these people are . +Do they come at night ? +But this is good . +Those who do , do not have much . + Who Are You ? +He does nt like it when it 's not going good . + And we did it today . + Out is over . + I like people around me . + Come on in , he says . + But it will take work . +But we know this might not be over . + He would just know . +So much for him . +He has a right to do that . +It was made of . + New York City is a city where more and more people want to come , he said . + It 's my life . + We left it at that . + I did and I did nt . + You know that one ? +It was his life . +It 's been a long , long time . +I want to be the best that I can be . + I do nt think so , she says . + I do nt have to say that . + This is the place to be , he said . + They should all show what they can do . +But they said they did not know when that might be . + Who Should See What ? + If we get it , we get it . +Or also those times where you said . + We think it is going to take off . +And where did it go ? +We are going to will it so . + And I think it was . + There were still some there . + And now she is . +You do nt want to get old , as they say . + It 's for them . +But some day his time will come . +So I think you are right . + A street would be best , he said . +And where you go from here is up to you , as I see it . +It would be the end of us . +And we have never said no to him . +The money is here . +That is all much the same . +But when it 's over , it 's over . + Where is it you are from ? + What is there now that is like that ? + If one does nt get them , the other will . + And they do . + It says more about I . +We think that 's not right . +Now I get to come here and play . +They were at the game . + About the same , he said . + I said , That 's the way we do it over here . +She has been on her own a long time . +But there was no time for that . + This has made my day , she says . + To me , the best . + They had to go back and see those people , she said . +What did you get ? +It may be a family . +You may know about it . +You do it the same way every time . +We had that and then we had that and then we had that . + They are after me , the President . +We are not all the same . + First , we made too much money . +Did it come from - I do nt know what city . + Well , where is he ? + Can you see my house from up there ? +Well , they are here because they are here . + The state just does nt have the money to do it . +It is my work . +It 's a play here and a play there . +In the end , it 's up to you . +We do nt have much left . +He can still play . +What do we do from here on in ? +Like it or not , it 's here . +You are the law . + This is about money . +They want to be her . +If they can do it , then we can , too . + What good is all of this now ? + At first , we were , like , Where is this place ? +That was nt them and me . + The way it is now is the way it should be . +This day was one of them . +It 's out there , you know . +But there was no one there for him . + I said we would take it . + But what is it , then ? +But he 's not with us . + But there is . + That was the end of it . + But that 's how they are . +We only play them a few times . +He 's all that 's left . +I do nt even know what the day was . + I do nt think he had that good of a time , she said . + I do nt . + I did nt know they were going to do it . + Because that is what they had to work with in their time . +And what would that be ? +That has nt come back . +But what can you say ? + A man should work . +In the last four years , you and I have come to know each other . +They are a part of political life . + I did nt have any children , he said . + I do nt know how much more you could want . + You do nt have time for that , he said . +It was not there . + Will they do it ? + One , two , three four . +I said just three years . +Some said all four . +What would they do with it ? +Or the week after . +We want them to . +I do nt want to go back into it . +I do nt know what it is with us . +He did nt back down from them . +We do nt want it that way . + What was said was . +This is the way it should be . + It 's about family life . +We will never know . + That 's still going on . +But this one did . + It had to be the right one . + But it was good . +She can only do what she can do . + But the show is nt that at all . +Most people like that . +But she does nt see it that way . +I do nt know if I can do it . +Each one of them will have their time . +He did not see too much . +What would that be ? +That 's not how we play all season long . + It did nt work this time ; it may next time . + This is not a game . + And that 's not there now . +And what should we do ? +How long did it last ? + I do it through music . + Today is how you do it . +He still does nt . +The American people do not want war . +It 's New York . + He said , What can I do ? + What might those be ? +This is new for us . + It 's not much , but it 's all I can do . +She still has nt . + Say what you want . + It 's for them to have a good time , he said . +I was going day by day . +How many could I use ? +Can I be as good as he is ? +It 's like they are my family . +And then I do nt last long . + But we would like to make some good come out of this . + This is all his business . +Who do they think they are ? + It 's too much money , she said . +So I do nt want to get into that . +What was this work ? + I did nt know what to do out there . +But this may not last for long . + We just did nt come out to play , he said . + I do nt know where he is now . + He should nt be there . + She 's one of those people who should nt own a house . + I do nt like to do that , he said . +She would nt like it . + Where was he from ? +Where do you see this going ? +We should think about this . +We do nt know each other in this country . +The war is over . +We are in the city . + But this is only if . + It 's day by day right now , she said . +She says she would go back if she could . +They will do it . + What did we have ? + One of them is be President . +So , that 's where it is . + He said , Not good . + I do nt like to get into it . +Who was under you ? +But life is like that . + Now , this is the year . +And then there was last year . + Just go with it . + It 's up to them . +By today , he was back in New York . +But just a few . +That way we can show them up for what they are . + I do nt know where that could have come from . + I still have people out , she said . + But what are we going to do ? + That 's never how it should be here . +But that is what this case is all about . +I do nt think it would do me any good to go there . +If I did nt make money I would nt do it . +In this case , for our country . + And that was that , she said . + But how is that new ? + But it has . + It 's about time , he said . +Many left the country for good . + This new federal Government is not a new government at all . +We had a good time last night . + Then was then , I said . + I know , he says . + So what is it for ? +Next year is now . +Then what did we get ? +Now they are just about the same . +Do nt you want to go ? +He said he had not been . +You are like a program . + You know you should nt think that way , but you do . + You get used to it , he said . + I just want to see what it 's all about , he said . + But I do nt know if I could . +This is the one for me . +That 's your right . +There 's more to this game . +These were people we could do without . + We are a little less than they are , he said . +You have to go to them . + The good old days are back . + Here , it 's all business . +There have never been more than five . +This is not a way to do business . +They said : You are new ? +I think she is going to do well . +Some would say not . +We are not that show . +And the next time around they do . +And put a team in first place . +For being part of my life . +What does he do best ? +What you see here is all just a show . +So they can put it all on me . +I like the game . + They are still there . + How long were you in ? + I like that , I said . +Just because he could . +And he is nt good company . +I can go all over the place . +And for the American home team ? +This place would never be the same . + I would nt take it . +President , I said . +And it will come . +What were they going to do to me ? +There are other people as well . +We are going to get you . +She did not show up . + It 's about my work life . + Is there more to do ? + I could , too . + I do nt know where . +And it 's old . +He just had it in for me . +I said , Are you going up ? + No way were they first . + It was a good day out there . + This is it , he says . +You can play the game before it 's time . +It is the only way to go . +Then he left the country . + That they have . + Think first of the market . + It 's going to be a very good year for us , I think . +And I did nt make the play . + And that is what he did . +It had to be said . +It will take us a good year . + The new season is here . + In my house he would nt be any good , she says . +It 's like a play . +I think you see it in the little game , but you also see them as a team . +And what would he say ? +I would nt go into that with him . +They can take it out on him . + Which way should we go ? + That 's not him . +Most of all , they have company . +Do nt be put off . +What would she like ? +And do what you think is right . + How many people are there who can say that ? + Who 's to say , you know ? + Are we a group ? +White , did you see that ? +It 's the same with companies . +They did nt put us up to this . +It 's not about me ; it 's about us . +He said he will come around . +It is her home . +And there is nt much left . +But until then , I have to use it as it is . + The people will not go for that . + Where do you want me to go on this ? +Where is all that money going ? +And one day it did . +That 's not how many people see it . + But then we get them . +Is that what you want to do ? + They have to , she said . + What Is It You Want ? + You know what I think they do with the money ? +Other people were still going out . + So what , he said . +But it does nt say that at all . + I do nt have to see her , she said . + But that 's who we are . +It may be on its way . +It was for the people , too . +Some are against us . +A : Could be . +You see so much more . +People know it 's time to play . +We are all that 's left . +I might make one . + They said , Will you think about it ? + Then I do it . +Only one can be right . + There are times . +Who does he think he is ? +It 's too much , she said . + I had my life going in the right way . + If I could just get some of those people to come here . +I have no other home . +Music was not the same after them . +And how would you use it ? +They think it 's a right . +I do nt know what they are going to do next . + Them days are over , he said . + We know our country . + Now , he said , you just go . +Or they do nt . +He should be part of it . +There 's no way that I could not do this . + Does John work out at all ? +You will be , too . + But it was not to be today . +His group is not the only one at work . +This is it right now . +And where is it going ? +WOULD NT you know it ? +Now he has them . +Some people want them . +We think you were right the first time . +This is our way . +How long have I been here ? +Not as much as we would like . + To them it 's new . + It was Mr. this and Mr. that . + We now know what it 's like to be an American , she said . + But I do nt think of it like that . +They are off , at last . +You have people who can be very old . +So we did nt do it . + I do nt know what will come of it , he said . +That is my home . +Last year he was in five . + They put you up . + I did nt have to work , he said . +And that was how he did it . +But there it was . +I can go to school . +Was this a show or his life ? +But how can we not ? +Which one is that ? +So , did he make it ? +The good part is that we know what we are up against . +But that is for another time . +And you will make it . + Did you think you did well ? + This is not about money . +You can see that between those two . +It just did nt end up going that way . +Then it was , and they were not . +But that is about it . +I want to be first . + You know what they go for at the market ? +I just do nt do what they want me to do , or what some people want me to do . + You have had it . +The game was all but over ; the season was all but over . +She never said it . +It 's never the money . + I think only one or two did . + If he does nt do that , he does nt play . + Much more so than I have . +Two years ago we were not . +So what did he do ? + Any one of those could go . +All four of them . +But some people are never going to do that . +And that may be so . +So what will he work on next ? +He did not play this season . +If not , you are not . +It 's not to be said . +There is more to this than what we can see , he said . +And who 's to say he 's not ? +My children are there . +But it was the right way . +This was , after all , a big day . +If there are people over there , there are people in here . + My children have only one life , he said . +Get used to them being here . +His family was the center of his life . +And is nt that what money is for ? + We did nt have that . +He said , You have another year to go . + That 's the good part . + We are now going day by day . + You do nt even know you have it . +And so we did that , and . +If I did nt get it , all right . +One , two , three , four . +Not that he would put it that way . +It was the part that had to do with my family . + This could be the time and the place . +No , I do nt want that . + Now I have a team . +It 's just him . + They think you just get up there and do it . +But he was more . +It 's big on big . +Next , what is it we want to see ? +But not before the game . +And that is all he does . +It does nt go around that much . +Even you may not know . +What is it like here , or there ? + But it was . + Who put on this ? + It 's a business for us , too . + We have to go , do nt we ? + We did nt know . +We know it has to . +He found the set . + He said that over and over . +She should have had one . +United is about to do just that . +They should take us to the high court . +Five , the first man said . +Life can be what it is or what you make of it . + I think we did all right . + That 's going to take time . +I do nt think the white people here would want to work with us . +This week , I did . +It still is nt . +Just at the right time . +If not us , then who ? +How are these people going to work ? +But he 's had it . + We just say it . +He would never say that , though . + But that is all . + You know that is not the case and I know it . +It 's part of the game you play . +It was only his second time in the big city . + I think it would be good for the country . +Do they even know one another ? + We did that for five years . +I did nt go out for it . +They do , in their own way . + Where do you do this ? +You have to play every game like it 's your last because it could be . + They will never come back . + It was a good time , she said . +It 's good to be home . +They are going to get to me . + I think he 's going to get there . +Come back in four days . +They are going to come back . +And if not now , when ? +We can still come back . + They will do well over the next five years . +After that , then what did he say ? + You are - you are . +It 's in me . +He 's been around , though . +And it is not over . +A good week 's work all around . +Then there are the people . + Where are you going ? +I put it on . +That is nt the way it will go . +Just take a day at a time . + I think this could be the end of the game . +I know they do nt for me . + When will it be ? +There have been two or three . + I know this man , he said . +You want to play well against your old team . +He was like us . + This is such a New York show . +But then , I had nt had to . +If not , there could be war . +This was the best of what we have . +What more can I say ? +There is more to it . +And it is not just for children . +But , you come back in about a year . +That will be the day . +And then what does he do ? +But many were not . +But it just could nt do it . + How is your family ? +So one night I did nt think . + But we do nt do that . +And it will last . + Because , he said , I know so . +It would nt have to work that way . + We make good money . + It should be a business . +He would nt take it . + Just do what you can , she said . +He 's been with them , and they are going to be there for him . + You just get used to it after a while . +They want what they want . + I just have to go out and play . +What to do about it ? +This place can get to you after a while . + But that is nt the case . +This is like my house . +WHEN WILL IT END ? +That would nt be very good . +They say , How did he make this ? + Go out there and get them out . +I say what 's she want me to do ? + So we all know now . +What Did You Say ? +Who I would be . +What does nt get made does nt get made . +How could she say no ? + But that 's it , she said . +Four in a year , no way . + She was my will . + Is he going to play ? + It 's not going to be good , he said . +I want to be in it . +That 's what I have to say . + Any more would have been less . + I could nt take it , he said . + This is not a time for big Government . + It 's a way of being , she said . +Right now , I do nt know how long . +It 's over with . +And those would be ? +This is about children . +But all know that they will . + It just does nt work that way . + He was here first . +And it was good for me . + That 's how she found out . + That is not what we set out to do , he said . + It 's like a big family , he said . + He had nt . +How good was he ? +Many people do nt even know that they are there . +Just me and him . + One second , she said . +I should nt do it . +How long do they last ? +They did nt know he was there . +His work and his life were one . +How did this all come about ? +It 's a part of life in New York . +She just was nt into it today . +She did not say how . + We were just there . +It was going to take them all . +Who are they to us ? +They have to come down . +To her , it was not . +Then , that 's it . + Some of you all are too big . + It was new to him . + Home , I say . +It 's the same with music . +Too old for what ? + Last night 's over with . +We think , It 's not about us , it 's about them . +But where are they going to get them ? + But it 's going to end , and you do nt know when . +Because he said : I have so much I want to do here . + He left some music in the world that will be here as long as the world will be here . +And this year there are more of them . +Well , it did . +I think we can get it back . +They want to be good . +There was little there . +It will do what you want it to . +But he would not say how much . +I do nt know where I would have been . + We are the same team we were last year . +But I think not . +There would be more . +Come here at night . +But I might have been here two days , for all I know . +It has been that way here for a long time . + I had time to think . +That we could do . + It 's not like I was in there of my own will . +Where to put it ? +And they were still with her . +We want to be like them . + I could do without it , she said . + What do you want from my life ? +Get it out of there . +How many times have we had too many people out here ? +I did not go out . + This is like any other business . + It was like the first day of school . +I said , Do you want to go home ? + I say , This is it . + If they go , I go , he said . +It was one of the best days of my life . +Many of these people still have family members there . +I did not know how it would come out . +And could nt be . + One day he called me into his office , and I said , What is it about me that you do nt like ? +They are the people we know . + What more will it take ? +Three were down years . + And I say , You do nt have to do that . +I did nt even know he was going . + She said , He 's too good for you . +What 's the world like when you are high ? + But I will not take part . + We have to work with the people . + This I like , she said . +He said , Who 's that ? +How old were you then ? + I know it does to all of us . + That said it all . + So they did . +But I do nt know when that is . +Is this the year ? +Its members have nt , though . +I just want to play and get on with the season . +You have to be a man about it . +You , too have a family . +But today , you did nt even play . +What did I think ? +I like that too . +As well they might . +Did you say that ? +Where are they at ? +And to all , a good night . + He can also do it . + That 's where he does his work , he said . +He does nt do it . + They just say there 's not much we can do because there 's so many of them . +They are on time . +How can you be against that ? +His day will come . +This was one of them . +You do nt see us . +We make their case for them . + Is she one of them ? +It is nt first out , first on . +That could take up to a year , he said . +We might as well do it now . +Will you make it work ? + You know it . +But not much more than that . + We have a new president , he said . +All of the best people in the world are here . +But there are children and there are children . + I said , I do . + It does nt get much more American than that . +I have nt the right to do so . +He could nt do that . +We might do all right . +We know what he 's been through . + You could nt , he said . +But people say it never will . + They were so much more into it . + We still think he 's in there , he said . +Will it be next week ? + They do nt want to be here . +At first , the women did not know what to say . + What 's this here ? + You can take it from me , he said . +She would nt get up . + Is that when they set how much you are going to get ? + So This Is My Life ? +It 's been like this for years now . +It 's not going to be that way . + It was just a long game , he said . + That 's what he had in me . +We could , though . + I have a home today , he said last year . + We are still in first place . + We just do nt think it 's the way we want to play . + It 's in a war . + I did want to say that . +For us , it was a long week . + What was I to do ? +Who do you want me to be ? +Then I get over it . + I get up , he said . + Such is the American way . + I do nt know how much I and my family can do this , she said . +The next year I made more . +Today , I could . +They would be right . +Most people have left , he said . +Law school did nt take . +It 's not good for me . + I have a family now , he said . + Who are you and where are you going ? + That is not from my family , no . + I do nt know how long it 's going to last . +It was too much for him last night . + They just go after them . +I did nt even know you were here . + I do nt know my way around , she said . + You should come , too . +When they are home . +It 's just the way it is now . + What do you think , we have only white people here ? +But he did nt . + It still is . + This is the year . + I think it will be , she said . +So what 's new ? + I did nt even know I was nt , he said . + For me , the show just has to end right . +This will be the first time that it has been called off . + And I did nt want to do that . + I could nt do much . +Today she said no . + But what about the day after the game ? +Most companies would not . + And that 's it . +She was in the market for a president . + I just was at home . +And we have nt . +Should we go back ? + And so will I . +Because that 's the way we want it . + We will see what we do , he said . +We are nt in it for the money , right ? +We did nt before . +There were two out . +Is it on the market ? +I think when You . + I think that 's what we have to do . +It did not work out . +Who 's the other one ? + I made it up . +I do nt know how we are going to do it . +It 's just a part of my day . +I want to do it right the first time . + You never know where they are going to come from . +It 's no one 's game . +Who did that first ? +But what about World War I ? + It is for the good of all . +They had children , too . +But this year they did nt come down . +I might not be here , though . + But we are a family . + You get right out and you are there . + Today is the day . +But then what is it ? + The university could nt do that on its own , he said . +After all , the game was over , was nt it ? + I do nt know if I want to go there . +I just want to put an end to it . + But now the people , they make the money . +If you want to do this then come . +So they know that now is their time . +Like the old days . +NIGHT OVER DAY OVER NIGHT . + Business has never before been so good . + How can they do it ? +It is very still . +When is too big too big ? +But never New York . + But this is all there is . +But I just do nt play for that team . + She said we could go back . +They were so good for each other . +He did that day . +I do nt want to see that . + They are right , he said . +Now I have two , and that 's too many for the business we do . +I did nt know until then what it was I was after . + We are not as good as I want to be . + But if it 's out there , we want it . +I did nt know it was going to be my best . + As a team , our last game we did nt play as well . + They are a very good team , but you know what ? + I know , the old man called after him . +It 's an us . +I just want to get in . +We all take time off for those . +What do they see ? +But it was nt . + But it did nt work that way . +You said you did nt have it . +But even more they go for the music . +It 's on his . +I do nt think that would work very well . +Do nt like it ? + I do not want her to see that . + I said : He does it all the time . +You know too much . + But it 's not that much . +He will work with us . +I do that every day . +This time he does nt . + That 's all it 's about for me . +The court should say so . +It was both of them . +They were so still . +By children , even . + That 's not even come up , he said . +The money was nt good . + We want to know how he is . +So do other Family members . + They do nt want us , she says . + To some people it might be , he said , and left it at that . +I did nt know what he did there . +But it 's not going to be the same . +I want to be a part of it . +That 's all we do is work . +So if it had been up to us , it would have been law years ago . + We just do nt know what . +She does like to think big . + How would I know ? + That 's next year . + How high is up for us ? + Could very well be . +And he said , To what ? + And how does he do this ? + It 's time for me to go ? +It 's about what a president might have been like in high school . + It was nt though . +It 's not my department . +How do I know it will work ? +I now have three . +Over all , New York did well . + We are the State Department , he said . + That 's right , the President said . +There 's no way he can know . +Children go to school . +I do nt think we are . +And what did I get ? +But it 's not only women . +I do nt know where they go from here . + The more you know , the more you are going to want to do . + That 's the way I have to think about it . + It 's like family , he said . +But what did it get them ? + He still just does nt get it . + He was like that . + That 's what he 's here to do . +Not if they do nt have to . + Where is the government ? +He said , Have at it . + That is all we did . + It was like this at home , she said . +It was like , Get him . +I very much do . + Because one without the other , it does nt work . +But they will be back in place today . + You just do nt do it . + That was most . +Could we have been set up ? +That 's all I want to think about . +Some say the Government may not even know what it is in for . + But that has nt been the case . +But , for all that , the show is good . + The next was , What about me ? + You have to be very good . +He would , too . +It 's as if you are there . + We did nt want to go back to where we were , she said . +And we may never know . +Not that that was new . +So what 's one more game ? +Our team has it right now . +And I think you do too . + For some people who have very little time , less is more , he said . +And we said no . +We can play with this team . +But I did nt see any . +But that 's all it was . + Some people used them , he said . +What is there now that was nt around in the old days ? + That 's not your business . +And he did it very well . +He had nt and did nt . + He has been here three or four times , he says . +Now they want more . +The game has come into its own . +He was nt there . +What do you think that would be like ? +They get more money . +I used to know what I could take off and what I could nt . +That 's just about it . +Take it like a man . +But that 's part of the business . +He 's like me . +But we will see . +A long time ago . +I could nt play him if there was nt . + We still have some work to do . +It 's good for us and it 's good for them . +And take your family with you . +But he put in the time . +You are not in the street . +It 's life , one says . +I like the night life . +It 's not as good as it used to be . +First of all , you can see them . +Would you like to have it here today ? + It was like home , he said . +All we want 's a first down , first down , first down . + We Think the World of You . +Now there will be . + I know it will come . +That time may be a long way off . + I will see you all when you get there . +IT was a night like any other . + And there it was . + But it was not to be . + It 's too big . + What did you like best ? +He was not the first to do so . + They want to end the war . +We want them to be right . +Where 's my money ? +They do nt know what to do with them . +They were right , in a way . + I have been at it for four years . +And they should have . +And most of them are women . +It will be a long day . +We are going to make it up to you . +But I do nt think this is the way it will be . +But that 's not it . +And it is as good a time as any to take them . +No one left the government . +And those four are some of the best . + This time , it 's the other way around . + And it 's this one . +He made me see . +I do nt think I can do this . +New Year 's is , too . +Most say I do nt . +But the war is not over . +He has no right . +Did you think -- what did you think ? + Me and the team , both . +You were made to go out and get her . + It 's like a part of you is not there . +And more to do . +That was a few years ago now . + I did nt think so then , and I do nt think so now . +But what are we going to do about it ? +Here , it is nt . + It is what it is . +He said it was good . +I had two today . +They do so little . +And to market them . +It is not so . + I do nt think I should be in , he said . +I go all the time . + That 's when I left . +Where might it be found ? + How do they know who is going to show up ? +It 's not what you do , it 's who you do it to . + We were a family , because all show people are a family . +He is the government . +And then she made it her own . +And I said , What 's this ? +But by that time they had left him . + Get used to less , get used to less . +How long is too long ? +What we had , we have . + This is the United States Government . +People say we are not a good team . +And even that 's not all . + And so what if it did ? + I said , he 's right . + It 's a big family here , she said . +It is nt about me . +There will be time to do that . +And what about the United States ? + I do nt know what I will do now , she said . + You want to be your best every game . +Now they like me . +We all did , and could . +This was going to be good . + That 's what we have to do . +But that is their business . +He has to do it . +I will never do that . +So has the world . +Today it was not even that . +You are in good company . +The time will come , but when ? +Well , it is , he said . +I would not want people to see me like that . + I do nt want to play that game , he said . +Who would show up ? + I have no way to make it up , he said . + How many you want ? +We are all going home . +He was in those . + Well , not home . +Well , that 's not going to work . +Well , just what do you want the United States to do ? + You want her to do well , but there is only one first place . + That 's right ? + What are you going to do ? + How did she know that ? +Only not this year . +Money , money , money , money . + You do what you have to do to work . +I did not do that , no . + We all just want it to work out , he said . +As only he can . +There just might have been a few . + That 's right , I said . +I still have nt . +But there is still more to do . +And then it was time . + Get all you can . +They could not do it . +I used to work for him . + They just go out and do what 's good for them . + But they do now , because we make good music . + They make you play your best . + You know him ? +But it 's this year , not last year . + They just come out . +It was too much work . +If you do not , who will ? + But that is what is going on . +They would nt be the first , says she ) . +If only they were right . +It was just that we were there . + It 's the best part of the day . + There was no other way out . + I know it , he said . + We want to see what the city does , he said . +I do it so people can see it . +And every time , when they see it , they want it , he said . + No one can see . + I want to be there . + What 's too much ? +They still are , for the most part . + But I would nt say that . +What 's going on now is not right . + You should see him play , he said . +Show me the way . + The game is what it 's all about , he says . + The other day they did nt have one . + I do nt know how much . + I want to be good , she said . +The police are there . +And now we each know how to back off . +How , I do not know . + We have no right to them . +We did nt play well as a team . +They know what they do well . +Or could it have been my second ? +It 's going to be a long season . + It 's war , she said . +What you see both is and is not what you get . + I did nt know . + It is a part of me now . +What would it be ? +Not for me it is nt . +Was he a good man ? +But I do nt think they could take any more than this . +One down , four to go . +It 's not for that . +That is , until yesterday . + I was never that down . + We are used to this life , he said . + It 's not good for me . +He 's good now . +They are all high . +How does one know ? +What will we do without it ? +Now , you do what you want . +It was nt even that good . +Was nt for me . +Would you like me to show you how ? +But we no get any other . +I do nt want to be like you . + He was my school , she said . +It 's all me , just me . +No team will have him . +But have nt we been here before ? +They may be with us . +It should come down . +But do take them off before going out on the street . + Right on the money . +Off the court , he may well be right . +Do nt do what I did . +There is no work . + I could nt see much , he said . +Both may be right . +And if he says no ? +I did that three times over . +We are going to do more . +The less you are , the more you have . + How will you do this ? +And what will I ? + He did nt like it , she said . + There is just no place like it . +That 's now where we are . +But business is business . +We can all play this game . + Would I have it any other way ? + He should be here by now , she said . +The company does nt think so . + I think we are the best , he said after the game . +And he should nt . +My family is part of me . +Yesterday it was not to be . + I did all I could . +Or , do nt . +The life was going out of him . +There he is , he says . +That 's what we get . + So , is he in the family or not ? + I do nt know how it 's going to come out . +We still know there 's a long way to go . + I do nt think that was the case , he said . +You might get it . +But not the National . + Where Would We Go ? +It 's their team , too . + What 's he up to now ? +There 's still a long way to get where we want to go . +The police did what they had to . +Many of them are . +It 's just not me . + Where did he get it ? + That day will be just like any other day , he said . +It was not at all a case of next , next , next . +Well , some do nt . +It does nt come up at all . +It is now five years without you . +I do nt want to come in . +She did nt want money . +That is what he said . + I have had them . +That is a big if . +Because that 's what it will take . + So what do we do ? +Go back a few years . + They know what they want and where they want to go . +How is that right ? + I did nt know what to do , she said . +It 's not about money . +I think it will take some time -- but this one will too . +You can say that . + There 's more time . +And people say I play when I want to play . +They are old and not the same as they used to be . +I do not think this is the case . +They think they know more than the people do . + Just what we were after . +You still do nt . + Here we have a good program , she said . +But not all right yesterday . + And we do nt . + I think he 's right , too . + But the time is right now . + I do nt know if it was because I did nt know what was going on or what , he said . +But back to what ? +And that 's right where he was . +And they use it . +It 's not about home , it 's all about what we are going to do today , today , today . +They are just old . +I think we can still get there . +We are not down and out . + So what do you do ? + And you have to take it . + I would nt want it going that way in this country . +There is much more to it . +It 's a long , long season . + I just said no . +These days I work only for the money . +Who should take it ? + How will they even get here ? +Do nt do this to me . + That 's what they want , he said . + He was off yesterday . +If it does nt , I can do without it . + Who do you say no to ? +They come to work every day . + Right now , this is the best place for me , he said . +It did nt have to come to this . +Not that I would know of . +I know when I have it and I know when I do nt . +Now we do nt use them at all . +What will she do next ? + That 's about the best I can do . + He says , Put it out . +They are too good . +I just have to do what I have to do . +IS it them or the times ? +Up to then , it had not been much of a show . +It is one more way . +You put it back . + It 's a new world out there . +Only three are American companies . +You can see more . +He 's going to go all the way out . + They did nt have to , he said . + We are going back home . +That 's all we get ? +And he says some have . + And all we get is : What are you going to do ? + We were right there . +If they know this , can we not know it ? +I do nt have to play for the money . +Take this week and next . +My office was next to his . +So , too , do we . + Not after this . +And who is nt ? +We are good at it . +And that 's good to know . + From here , she said . +And there is little he can do . + I just had to play that music . + We are among that group . + What 's with these people ? + How much do you have ? +This is the best they could do ? + We have to get used to it . + Where Were You Last Night ? +We are up for one game and down for two or three . +But in this case , I do nt think he will . +And people do nt like government . + Three to two , he said . + And then they go . +Last week they did . +They never made me want to get high . +We are all people . + Big time , one of them said . +He says it has to last . +He was back in the big time . + But we have nt with the second . + And we like it this way . +They were for what 's right . +And there 's more , much more . +You and I were made for one another . + New York City is a very big part of New York State , he said . +The big money will get him . + We are all about time . +So it is nt just me . +That is a long , long time . +And they all did very well . + I could make more money . +Then have all my family come down to see me . +Do I know you ? +That was part of family life . +As long as he 's here , it 's going to be his team . +I did nt get in . +It will be the president 's . +And it could go on and on . +I could nt get them . +There is no law here . + I want to do more . +If she says that 's it -- no more . +And I do it , too . +Now , they are not . +It 's your work . +They have to get on with it . +We work for the American people . + And I want the best . +But it 's not a good day for me . +There may be another first . + I like it all over . +But I just could nt . +It 's the people 's money . +I do nt like the state . +What do the members get out of it ? +You would have , too . +What is one like ? +No , they have not . + It 's good to get one . +We say that we are a family . +This is about the will of the people . +This is not the way you want to end your season . +What Is a Family ? +I was home , I was nt out all night , that was nt the case . + It was all over the place . +This money is nt . + You can only go back to the well so many times . +And what did they see ? + What do they use it for now ? + They are part of the team . +Then his people come right back with it . +What you do in your home is your own business . + It was the right time and the right place . +It is also us . + We do nt have many . +They go on without them . +How do you go about it ? +It was more than a year ago . +That 's because they are . +There 's also a children 's program . + I take it home with me . +I said , Well , you never see it in New York . + I think about it every day , he said . +And he never will be . + What would you like to do ? +It 's not Who 's on first ? +That 's all were going to do . + It just never used to be there . +We know all about it . +They were old people . + Can we go to all of them ? +The children get what 's left , which is nt much . +But I did nt get it . + It just did nt work , he said . +They are going to make it all very new . +What was in it ? + There 's only one way to go , and that 's our way , he said . +For the most part , it does . +Very few times would he go more than that . + So I said I did , and that was it . +But I do want to do it . + There was just too much work to do . +I was part time . +And they like her . + Will it work ? + And they do it . +Will she still be around then ? +I just did nt like it . +It did not last . +It 's just in there . + They want the city life , she said . + The school is not the same , she said . + I do nt know if they are still up there . +He said he would also take his case to the American people . +If you do nt , that 's not good business . + Did nt you see who that was ? +That 's what I want to do . +If only for a game . +They do nt have to be very big . +Years ago , he said , there were very few . + You know , he was right . +The team says he is day to day . +They had been there before . +There are nt many people who can say that . +That 's a very long time . +It is time for them to go . + It 's go , go , go . + Does it get an A each time ? +But we will get it back . + I do nt think that 's what it 's all about . + We could nt do that before . +They are still here . +It is the same this year . + No , you . + I just know . +But that 's not the game . +But this year business is good . + How can it not ? +It 's not my game . +They were nt made for you . +I would like to get in . +Do you think I should get out ? + We want to come with you . +Who called him that ? + This we know , year after year . +They do not get as much . + Can you take them ? + He has had a life , she said . + That could do him in . +Well , that was yesterday . + And this is what it is , in a way . + I put money on it . +In what I know . +Other times , he was nt . +We play each other . + What would I say to them ? + They said it was money . +They come to the game to get into it . +But , what if ? +These days , he does not have too much to do . +They do nt want to see it . + I think it 's about time , he said . + When can we get in ? +Who is the man ? + When will I have the time ? +But what can you do . +I think they do have to go . + Not too much , he said . + He said this was his last go around . + How much do you make ? + Is that who we have ? + This is a team , she said . +That 's what the game is about . +The public that says Is that all ? +Three More , but Which Three ? +We did it , New York . + It 's never been like this . +Then , he made up for it . +Big game is big business . +And it did nt work out . +They are my children . +She may not show up at all . +More and more each day . +He had to be just right . + It could take years and years . + But we did nt know each other and we still do nt know each other . + They know what he does . + That 's not the market . + I just had never used it . + All I want to do is play . + Right then , it was over . +She said , You are right . +But there is one if , and it is a big one . +And how can we get it back ? + You just have to have people with money . + It 's not , he said . +Well , here 's one . +This was just another . +What 's in it for me ? +We all know that . + And they were the best years of his life , too . + He was the only man . + I think she 's where she was a few years ago . +But how could I not ? +He does nt know this is going on . +We see what 's next . +And you should say all this to him . +Now he says it will be in the next two years . +He left it there for years . +They are going to go all the way . +And some of the music is good . + Where they will go , I do nt know , he said . +And so be it . + I do nt even know , he said . + They can not go home . +And I do nt take work home . +There is little money after that . +Who would nt want those days back ? +They did , but it did nt work . +That is not good . +You been in New York ? + No , not today . +But he could nt go back . +It 's your right to say no . +You just had to do it . +His way was the only right way . +A few do not . +Do nt you get it ? +We can show the way . +It was just one of those days . +But it is not in another country . + My season was nt over . +So is his play . + I do nt think it 's that good . +We made a good team . + It was in me . +But I said I would do it , and I did . +It could have been any of them . +So that 's it : The law made them do it . + We are going to see , he said . + People say he has no right to say what he does . +She is too old ; her public life is over , she says . +We say , Who did this ? +So that was the end of that . + Do nt think there 's a big play in there . + This is my first house , she said . + That 's the way it had to be . + And just where do you come from ? +You know that 's not right . + The best I can say is we did it right . +So what , he says . + And I have . +I was like What ? + What did I do when I did nt play last year ? +It 's said to say that you get used to it , but you do . +You know how to get there . +Some of you have little children . +But they are not the last . + Now , we can see the police all over the place . +Now they get about three . +ONE of the What if ? +Right where , right when ? + That 's the way I see it . +They have some money . + They will still be around . +She is one of them . + No , no , no , no , no , she said . +So a long , long time . + I do nt think much about it . + You are the best . +It might not have been that way . +I think that is right . +You do nt know the city . +It 's our home . + Here , they see it . + We were like one family . +They could not get it . + Is that in New York ? +That is not to be . + And if he does nt ? + But that 's not what I do . +They are out there and this business is just what they want . +It 's just the same today . +And the women , they are all up on them . + Most people do nt like it , he said . +That very well may be . + What do you think of this place ? + I did nt have the money or the time . + You are what you are . +You have to go on with your life . +And like the world of business . +That 's how I was . + I would want to be around people . +Then they did it . +So should the university 's president . +I think they do . +Now it 's there . +They said most people do nt do that . +He 's used to it . + That was that . +I said , It 's all right . + They are around . + There will be a program . + It 's only in the last few years that I have a will . +I do nt see him . + I like them , he said . +Come to think of it , so is every game . + That does nt make it right , does it ? +The family had no money . + That 's not what we found , at all . +If it were about the money , we would nt be here today . + You are not going to work there , are you ? + We are just here . +It 's still a first time . + It was nt the city . +I did nt know what they were . +But will their children be ? +Never was , never will be . + She was game for it all . +You did not go out to them . + Where does it all end ? +Back to work the next day . + Some of them do nt want it . +I could nt put it off . + We go through this all the time , she said . + Well , so what ? + But that 's not the case right now . + I did nt want to go against the team . +Life would go on . + I want to see the world . + Now there 's three of you on the case . +And that it was . + He 's from New York City . + It 's all in here , he said . + I did nt know what I was going to do with all that money . +That was a week ago . +What about this week ? + It was never on . +And it is nt that I would nt . +They know what they should and what they should nt say . +She has no case . + It 's like being the president of a company . +I said I was nt . +Just go on your way . + We never did this for the money , she said . +But he does not do it for the money . +It 's not who you know . +Now it 's a down year for us . + Not before and not after . +That was all I did . +In companies like A . + I do nt think this will do it . +It does , too . +Now it 's time to play . +That 's not the case here . +Because this is where it is , New York . +They are the best we have . +But now his time has come . +It was nt just because it was high . + See this , he said . +Most of the time , they were right . +Could he do that right now ? +But how can West know what to do ? + It set me off , he said . +Just go out and play . +They are going to have a show . + In May , I was down and out . + You know these people , he said . +This year , I do nt know what 's going on . +And not only that , they want money for it . +I would make it some way . + But many are good . +I did nt know , and I still do nt . +Where are we going to get the money from ? +You want to play well so you can take them out of the game . +They do nt know how to play the game . +As they say , it 's the business . +But it 's Does she or does nt she ? +It 's about more than me . +What was the last part ? +Even if he 's new school . +If so , what should she do with it ? + What do they have to show for it ? + This is a new country . + They want the new and the best , she said . +It was also for the last time , he said . + She said , This is what you want to do . +But his play said it all . + Then he said , You do nt think I did it ? + And I said , What is it ? + He can have that money . +It will be years before we know what to make of it . + Me and New York , she has said . + Now it 's time I should do this . +He will go and he will never come back . +I did nt think about any of it . + All of it was the same , she said . +No one would play it . +One of them did not go on . + She do nt want to go to school . +This was how he did it . +Come to my house . + It was like a game . + How do we do ? +I should have been . + Get out of here now . +And there 's money . +But the what if ? +Well , one could nt have , could one ? +He was the general . + It 's just the same . + He has not called here . + It will work , he said . +I should know best . + I just show up . + But it 's not there . + What 's that music ? + More than any other place in the world . + Last year is last year . + Can they do it in a day ? +They do nt show up on time . + No one had called me before . +I do nt want to get like that . +But you just have to go through a day like this . +And this is a big one . + And most of them work , he said . +And he still had to go out . + It is my life , after all , she says . + It does nt work that way . + They are all the same , too . +We can and are . +It just did nt go her 's . +I never want to have to do that , and I do nt have to do that . + This is only one of many . +There 's no other way . +Not one made it . +That is the way it should be . +It 's all , Here , take this . + People can see what 's going on in there . + They come because this is what they want to do . + We are old people now , he said . +So what will take its place ? +The white is too white . + How do they see me ? + There 's no way out . +But those days are over with . +I know what to do for them . +But we all know it is not . +Because government should work for us -- not the other way around . + Today it 's not . +But that 's what I have to do . + And who are you ? + This may be one of the times when they did nt , he said . +We want good for them . +And you can take it with you . + What year are you ? + It was up to me to show them what I could do . + Which is what we have going on right now . + But I just never get around to it . + Women do nt like it . + The business is there , he said . + The American people are good , he said . + We all know what we should do . + She said that ? + What use does this have ? + Not any more , she said . +It 's been a long , long year . + No city , no state can do that . +We have nt had that at all this year . +We have to do one , then the other . +She was like no other . +It has come the last week or two . + He said that three times . +You know what it 's like now ? +And we do nt . + I do nt want to say which one it will be . + That 's what they are there for in a way . + No , never . + What are those for ? +But a new state law says they can not . +His is all we have . +It was just his day . +We are going to do it to him just like he did it . + I will never get them back . +With this , we do nt know . + It is like that for us . + I want to be there for that . + But it was the only way we could do it . +But that was not the end . +There will never be another like him . +But where to put him ? +We have to work our way through it . +Do nt say but . +I was a little part of the right team . +All that will come . +It would do no good . + Last year he did that . +They are not the team they were last week . +Now you can go home . +It is about who we are . +Some family , no ? + Well , what do you think ? + They are the first to go . +She said she does this every day so he can go to school . +And I think this is right for the people . + But not to me . +It 's the only way we are going to get through this . +But if it does . +When can you come down ? +He would nt know what to do . +What would I think of him ? +City officials say it can . +I think I should have . +Because it is a game . +And they want it now . +It 's not about me . + I think it would have to go into next year . +If you do nt play well , you are not going to play . +I do nt think it 's for the family . + They were on today . +But more do nt . +But he 's a man , like me , like you . +I do nt know what more I can say . +They are off on their own now . +And what is it ? +That was nt her . +How do I get it back ? +Now , what do I do ? + That 's what we do . + The team is it . +I might do that , but she would nt . +This was New York . +And now I could see just how many police were out here . + They are out to get him , he said . + I have nt been out in three days . +The police were then called . + My life same , your life same . + I only had three , he said . + How do you get it ? +It is not a right . + This is nt over until we say it 's over . + But , he said , I do nt know if he still has it . + First we want to show what we can do , he said . +But right now , they just do nt know . + My own children I could not see , he said . +It will make money . + He 's not there . +It 's all , what will you do the next week ? +That 's big time . +You can only get it from one place . + You are in for it today . + You want to know how many ? +Or during one day ? +But these people have nt . +What did the President know and when ? +They are back , at last . +It 's not work at all . +It 's just not going to be the same for him to play for another team . +But it is nt , and they did nt . +Three million of those are children . + And I think that 's good . +Who would I know here ? +That was not the case in her own time . +I do nt even know what it is . +Here are a few more . +And that 's just what we did . + It 's been around for a long time . +I do nt know how any of us are going to get over it . + That 's what I see right now . + You know who that is ? +It 's over , what can you do ? + We are here for work . +You know what she said ? + And how did we know we were at the end as well ? + He said , Come with me . +He had some years to go . + How did you do it ? +It is not the same at all . +And I do nt think I will be . +The best part is that I now do what I want to do . + We still do . + Today it was there . + He does not know . + I want people to see my show because it is good . +I want to be just like that . +Both , he said . +And you can go there , too . +But he said , I know you can do it . + They are not going to be around that long . +So much for last night . + I do nt think they even know . +There 's just a long way to go . +I did nt see it that way . +End of Part One . +That was it right there . +And I did nt even have one . + That made me think about it . + We do nt want to be here and they do nt want us here . +And that 's life . +But I do nt think it will get to that . + Now , I do nt even see him . +That 's how he was . + He could nt be like he is now . +Now there are five . +What is this new world like ? + You have to think what you want people to know about you and not know about you . + This is his state . + And he 's right , he said . +How can it end ? +Well , so is this . +And more , much more . + But I do nt work that way . + I do nt think it 's going to work . +And I know how it is here . +It was all I could think of to do . +But one can not do without the other . +So the set is in place . +New York 's not like that . +Here , it is in the center of the city . + That 's part of who she is . +But if so , so be it . +It was not show . +I do nt think no more . +Now it 's time to do it . + It 's just us now . + No , he said then . +It is nt just money . + It was , like , I have to get out of here . +Most said they could . + And We are with you . + I think I know . +The president will do that . +This was nt like this before . +They make good money . +They would nt know . +He 's still part of it . +End of the World as We Know It ? + He 's all business . + No one has to go through what I did . +You just know he 's there . +I said I would have to see what he had . +But it does not have to know . +And they say the same about him . + The game is over . +It was up ; it was down . +We are going to show up . +But not , in the end , his day . + We did what companies should do , he said . + And this is who they go after . + And she says , You want it this way . + I just think of it . +She would have to . + You have to think about that . + I want to get this out of the way , he said . +We did nt used to have that . +I was President of the country . +But we have one now . +Still has nt found it . +Not many children can . + We do have it . +Or think they do . +They know Him ; you do nt . +They do it very well . +Think of music as a house . +I never think of that as work . +You have to do that if you can . + And he did not do what the government said he did . + They see good business . +That 's the way it was last year . +I think this is end of my life , he said . +How long would it take ? + I would do it , he said . + I would nt put up with it . + They are out there right now . + I just do nt know how long the day is . + I did nt know where I was going to end up . +But Will They Work ? +You did nt think about it . +Then there is my own case . + I do nt get it . + But I think we are good , too . +But it 's not like old times . + We want to do what 's good for the game . +Just like the United States . +Both do very well . +What did he think ? +It 's a long time . +I do nt have to say . +But there is no more time . + And that 's right about where we should be . +He says he does nt know . +I do nt want to say how I know , but I know . +All the world a -- you know . +We can have two . + I get that from her . +You think : that 's good . +So we are going to go to work . + But he never does . +They used to do that . +I do nt want it on me . + That 's not been the case . + Who do you have ? +Five will be in New York City . +I was all over the place . + Can he make a go of it ? + It 's a very big day for us . +Left was left and right was right . + Come back as a man . + It 's so good . +But will they come back ? +It could work the other way . +But I did nt know him . +It 's just not the same , is it ? +I have to take that . +I did not state that . +It 's one team . +What 's going right ? +And all that is very , very good for business . + It 's a good business . +But now it will . +No , not right now . + Here , they come two or three times a year . + She was right . +Many of them are going . +It 's now or never for them . +It 's not just about money . +And it 's not good for the country . + He 's at home . +But he is here . +I think like an American . + I think his time in New York was up . +But some are still not over it . +To this day they have them . + And well he might . +Is it you or you ? + I have to be . +We can work them out . + It is to be or not to be . +He 's just a part of it . +And every one of them is white . +That 's the case , right ? + And you have to have both . + But it is nt used very much , he said . +It 's just been too much . +You know what that 's all about . + They are right about that . +We do nt have work . + But I do nt know who you are . +No , I get over it . + That 's what this is all about , he said . + Do we have more work to do ? +It just has nt been very good . + They are all about you . +Will this work in the United States ? + They are all my children , she said . +But here 's a Police Department . +As for how good he can be , only he may know . + Was that in one game ? +That 's part of life in this business . + I would never see the same people , he said . +Same old same old . +It is my family . +Should nt take long . +You have to go on with life . +We left it all out there . +But it should nt take me long to get over it . + So I will not say that . + But it was nt made for them . +But what a game it is . + It may be many . +I did nt think that way . +Well , as a people we were . +It was nt like today . +I know , I was there . + There 's one other way , he said . +But city officials want more . +They are also very good business people . + And just take it from there . + We see each other . +But I did good time . +This is her life . +I could nt if I would , and I would nt if I could . + I do nt think there is one . +All this by the end of the year . +And he can do it take after take . +And there is more to it than that . +I can and I will . +Where 's the Money ? + We want them to know it 's their game . + I just said , What 's going on ? + They just want it to be there . + And I think I would like to go with it . +That was his way . +But it was all they had . +But it 's all a show . + No , I do nt know about them , she said . +But money is only part of it . + These were nt made . + Do you have the time ? +But they come here less and less . +People come from all over . +I can still see it after all these years . +That 's what we want you to do for us . +In a good way . + That 's just the way he was . +It 's like he 's here . +He would not say where he and his family were going . +Do nt make me come and get you . + It did nt come from me , he said . + They know what they want to do . +We do nt go for show business . + I want it to be over ; I want it to be over . + Come on in , all of you . +And we are going to get more . + But if I do nt have one , I do nt have one . +We are just going to take it day by day . +Because what is it for ? +She would like to go to high school . + This is about people . +He does not want to go back . +This is her day . + That 's for other people to do , he said . + But they do nt , she said . +How should we use the time ? +What should you do , then ? +But we know he 's going to come to play . +If so , what ? +We are not going out to show the world how good we are . + It was good for the people . + I was nt into that . + Today 's a big game . +It 's all over my new music . + I said , Is that you ? +He said there were two other people with him . + That 's what you do at this time of the season . + The city 's not going to get out of it what they think they will . + What 's in and what 's out . +When was that found and where ? +But he has to be right . +Where were the police ? +How long you been here ? +It has to be play . +So does the public . +Since then , he has not called me back . + They can do what they want with her . + The more I think about it , the less I like it . + It 's just one game , man , he said . + I said , I do nt think I can . +But you go on . +By the way , how did you have it ? +One year ago today . +So did every other department . +It 's the same way with money . +You just have to do what 's right . +It 's the same every year . + How 's that one ? +They are the place to go at night . +In that way , it was nt the same . +He was back there all the time . +Will you do it for me ? +I had nt said there was . +One said , We do nt want women like that . + I did nt even know it was up there . +Did the man get one ? +You can see them . +But not this day . +He says it like it is . + Good to see you . +And if I -- . + If I do nt do them , who is going to ? + This is the right place and the right time to have it in New York . + Are you going to be in there long ? +That 's the way I would do it . + It 's every American 's . +I do nt know if all of them would have . + This is up there with them . +There 's no way out of it . + Women want people to like them . + I used to have one of these . +A -- No , not at all . +He does nt put on the big show every night . +And who 's to say ? + And this was not the first time . + They are like me . + I want to take it one at a time and go with what we have . + Not going to war . + I did nt know what life would be like for me after that , he said . + It 's the only place I want to be . +There are a few here . + Here , you do nt . +But , then , war never is . +I want to say . +It is a business . +That will take several days . + This is the only before we get . +We are for that . + But this is the place to do it . + All this -- for what ? +But they can , he said . +It was like that all over the state . +We know who the President is . + No , never , he said . +Well , more or less . +That is still a way off . +We are over a year out . + And we are going to do it . + It 's going to take some time to get over it . +But that 's life , man . + But people do nt do that . + It 's been a long off season for me , he said that day . + He 's any one of us . + We would nt do it any other way . +He 's into show business . +And where did it come from ? +Where Should We Be ? + I want a place to go . +When they go to school . + What does one do ? + I would never have called him . +It 's not so much for us . +So , he does nt . +But also there were children . +It just was nt right . + I do nt think much about that , she said . +Now , they are all out of work . +But will it work ? +They did all this . +But where had they come from ? +Is it any good ? +It has not been every week . +They can have all the money in the world . +So I do nt know how it will end . +But you can still be as good . +We made them think of home . + I do nt see him that much , she said . + We think New York is the center of the world . +That one I know . + And I said , I can do that . +And we do nt want to do that . + This is too little . + There 's much good in it , she said . +All right , you might say . +We have to be . +I do nt think we do . + When can we take it off ? + So now there are two ? +Does he or does nt he ? + We would nt be here if not for him . +Do nt make us say too much . +And that 's what you should do . + How could you say that ? + What do we do now ? + That 's what I want to be . + But that 's not what this case was about . +In all , two million people work for the Government . +And some have not . +And even more time . +He said this was his second first . +Which should I do ? +Two , three , four ? + Well , you are not going to get it . + No , I do nt have any of those . + It would have been right for both companies . +The game was the same . +It 's not like I go out every night . +Two 's good company . +This was -- this was about two years ago . +But not the first night . + We are not going to go way out of market . +You are not going to take it ? + On a street , there you are , she said . +You never know around here . +Where will we go ? + But I only had to show her three . + Is that what they said ? + We do know what 's going on . + They said , What ? +You made my day . +I have a place to go . +Can you see how he did it ? + But that 's him . + To go to war , it is a man 's business . + I have to come over . +And that 's all you can be . +How did she get it ? + It 's like a game . + Out of what country ? + Where do you do that ? + The time is right for this . +That 's not to say that he 's not going to be here next year . +It 's good to know you are here . +This is his home . +But it could nt be found . +Well , it was nt today . + I do nt know if I can do that , he said . + This was right up with any of them . +The first was good . +Because there would be no next time . +I like the people who work there . +They know that she can do that . +It 's the way it has to be . +And it will , he said . +Does it all end then ? + I work on it all the time , he said . + No , I do nt like school at all . + They are not part of this , he said . + They did nt have to say never . +I know him too well . +We should go back . +I said No -- ME . + This could be it , he said . +And now it is out to -- what is it ? + We are not going to see it this year . + What does this do for us ? +How long will this last ? +Last time it was two years . +We think he does . +It was , well . +Too much to do ; no time to do it . +We want to go to school . +I had a long night last night . +I was not the only one . +All we have is money . + We are the same people . +He said it was nt him . + We will go in for three , two or one . + I can still make some money , he said . +Then they did nt play for five days . + You are going with us . + I do nt get out . + We said , Is this it ? +How about that : we are in play . +I will never back down . +How long should a play be ? +What can you do ? +You know what 's going on . +I had it good . +With all this , only a few people have left Next . +And so you do . + I did nt want to say that . + He say , No money . +So I do what I can , the way that I can do it . +No , we do nt know where it 's going . +But what about war ? +Where to from here ? +But right now , I think I could be just as much a part of it . +It was nt made for you or me . +Where will the market go ? + He said that was nt the way he said it . + So have I , said the man . +The next day he did not show up for work . +He did not take time off . +And this year there is only one . +And they want to take that country back and they are not going to . + All she has to do is to think about what she is going to say . +I have no right to say . + You have to get it there . +I do nt like all of what he says . + And that is that the people do nt want it . +There were five other people in the house . + I want to be there now . +Still , it will take some time . +Which is what I think we should do here . +More than two years from now . + This is all too much . +There 's only one man . +Last season , I did nt play my best . +Here 's what I get . + I did nt think it had time to get up that high , he said . +He had one -- just one . +And you know what they like ? +That is all there is to it . + Life is good here because people work at it , he said . +He 's been through so much . +And not just in this country . +John has never said it . +He is nt , and they are not . +It 's very New York . +That was about it . + Some go down ; some go up , he said . +Not if we think they are there . +Right now , no . +They will all have to go . +He says he 's only a man . +But it can not last . +But he did nt know how . +So I know what it 's like . +But how well does it work ? +Well , it 's not that at all . + We want him out . + This is not new . +So I make one a day . + When 's a good time to get back to you ? + We never know from year to year . + Yesterday , he said . + It 's , what can I say ? +If he does less , the people do more . + To what end ? + But the Government does nt have a program . +We could nt do it right . + But they do nt know that . +And she is not one to do that . + I want to be here , no , I want to be there . +Now they had to go out and get it . +It was not just what was said , though . +Even the white people are too . +I never want to play . + You never know when it 's going to work , she said . + This is a team game . +But in the end , they could not back it up . + I did nt do as well as I should have . + I do nt know how people do this . +He was not called . +The game would have been over . + And this is a good time for that . +But he said , There 's not very much time left . + The market 's down . + We are good but we just did nt show it . + Or , you know what ? +Even today , it is still like that . + It was his team . + She did nt have to . +Some might think it had . + If you work out with me every day , you can get that way . +I like to play also . +We were not used to it . +We did nt place it . +Take one home with you today . + Same time next year , he said to each of them . + Where has the state been ? + It 's just the way we play . + We do this all the time . + Said John : Would nt work , because . + Or he said , We are going . +It 's all about what you do . +Well , I could . +That is what we did for the last four years . +First , you have more money . +It 's all that was . +He 's good at it . + And who would want to see it ? + And how long is that ? + I said , No we did nt . +New York has them all . + And I said , So what ? +They know we are here now . +What should this family do ? +But we did that here . + Where Are We ? +It used to be that way in the United States , too . +Did nt they do this last year ? + They just do nt show it the way you do here . + He was all right . +That was my part . + So , what did you think when I made that play ? +Or are we out there with them ? + This is a war . +In the end , it was no one . +May I have another ? +And if he has a good game ? + It 's not about me . +But it is still there . +Without him I never would have made it . + But I had to do it . +That is what man is . + That way you know what you have . +How could we know ? +But for most it will have to do . +The more time , the less money . + Their time is up , he said . + You just get used to it , he said . +That 's how it 's been . + We do nt make money any more . +But what about the show ? + But they were back the next day . +All that has come about . +And we will make it so . +If not , they would not . +We had people who could , though . +What we had was each other . +I like the group next year . +But after a while you are who you are . + They should have , he said . +They have never been and they should never be . + They did nt like it . +And little they are . +They say this is just the way it is here . +We can do that today . + I want to see him come back . +Here we are now . +That 's not a way to go through a season . + Say what you will about him , but in his time there was work . +And it 's not just us . + I know , he said . +They are part of what we are all about . +If it was time for me to go , it was time for me to go . + One of these days I will . + I have five children , he said . + They could nt do it today . + I come every day after school . +She would never go without me . + Well , there is nt any more . + It was nt that . +And it 's just not going to work that way . + Who could nt like it ? +Is it because he or she can see ? + What , then , is time ? + He 's not going to , she said . +This team , it does nt work . +But have to , they did . +She had a life . +Then -- are you still with me ? +One year without you . +What is it good for ? +It 's going to be all right . +I did nt even have a part . + This is her life . + That 's not the best time to say that to me . +And , he said , the police do nt know what to think of it . + Where is the money ? +How could I do this to her ? + It was white . +Little since then has been . +It could have had a life . + And they do nt . + No , but we will . + That could have been me last night . + It 's like , how many have there been ? +The play had to be made . + I did nt even know that . + You are a good man . + Now you see it . + But that 's all they have . +He does nt like me . +How could all this have come about ? + When will they be home ? +And he was President . +You are going down now , but you still have a long way to go . +After all , he is . + I just did nt want to . + It 's the same as home . +And just who might that be ? +Public would nt know how . +It 's not just in my case . +But he did nt say when . + It will come with time . +There 's not that much to think about . +And if they do , so what ? + They will be here . + What is that on there ? + People know what 's what with me , he said . + That 's how it is here now . +I think there 's more than just him . + So what 's left ? +The last two years have been very down years . +ONE UP , ONE DOWN . + You do nt know what they are going to do with him . + It 's a way of life while they are here . + This is the first time this has come up . +He is on his own . +So might we all . +We may not know who they are . +Go where he says . +He did not show up . +And there have been . +This is the way . +That 's my life , he said . +Now , most will make it . +There 's life here . +He 's going to take it . +Some days it was . +He 's the only one . +There was much less going on . +When big is good . +Because they want to . +He did nt have the right to do that . + I do nt know , he says . + He was from a good family . + We are here all the time . + I have to get to work . +I do nt want to use it . +They had five all of last year . + I said , Do you like her ? +I would like to do that . + I think that 's up to them . +She has good days too . + It still is that way , he said . +And we will do that , too . +The house is also only three years old . +It is too still . + A new world . +How could they not know ? +Is nt that right ? +People like you just because they like you . + I think women can have it all , she said . + And she never did . + Is it part of the show ? + If they want to go back and get a little more , they can . + That 's the show they get . +She had four children . + I do nt want them to be like I was . +I do nt think she could have found it . + You go out and play the game . + But we did the best we could . +There just are nt many . +For so many years this game has been big for us . +What do you think ? + They should nt be out at this time , she said . +She was nt the best . + I said , I would nt know . +We know what they are going to do . +I want people to see him the way I see him . + Well , they do nt show up . +She has about the same . +Take your time about it . + And I did nt like to be here . +But it will not be the last . + I like to think I make up my own . + I still do nt know what we are in for , she said then . + This will not work . + She never did that . +That 's not what I have . +They did nt want children like me to play there . + I think that 's what it 's all about in the first place , he said . +This one I know . + And she said , Not very much . +But they had little time . +We will be back next year . +I do nt have the money . +That is the way life is . +Not all of this is new . +For the first time in a long time . +He was at the right , not the left . +But they had more people . +Make more money , Make more money . + They said , We will , we will . +I could play with him . +What more can you say about a place than that ? +If you do it , you have to use it . +The police know this . +They are here right now . + Some people are going home if they can . +The world was not set right for a day . +So what 's going on today ? + We use what we have . + The police do nt even know it . + It did nt go over . + Is this the one , then ? +We did nt do it for the show . +But it was also the team 's last . +Because he was there . +This is not the time for this play . +But what will he do when the war is over ? + What do you think they would have said ? + You should nt do that , she said . +Which is not to say that I never will . +Could he be right ? + I was nt there for them , he said . +One , two three . +And how do you do it ? + I did nt think there was any other place to be than New York , he said . +Some people think we did . +She was not , she said . + This is big , he said . +First there was the money . +It just did nt work out in New York . + It 's not the way to go , he said . +It 's so there , it could be over . +That 's the market at work . +I do nt think this is the way to do it . +I have found the same . +Are there some that you like ? +Or it might not . +I had it all my life . + But that 's just part of the game . + I have to know . + It 's not the time and place . + I did nt see it , he said . + About time , she said . +It 's our last day here . + And I said there was nt . + If she left the country , we are going where she is . + I said : No way . +In just two years . + That 's a good one , he said . + But you might think like me . + Know who he is ? +They are just not there . +But , in the end , they did nt have it . +What 's he want ? +And so , it was over . + But I could nt say so because of the director . +But where is home ? + It 's all good . +Come to think of it , there was . + This may not be the last day we do this . +Should we do what he says ? +But , he said , I do nt think they should take it out of our money . +More were on the way . + The money , she said . + That has to come from the Federal Government . +Can we do that ? +It 's not going to get the best of me . + Not just the family . +There 's more of them than there are of us . +But it is nt just them , it 's us , too . +I have not been the same since that day . +He 's called you home now . + It 's a good time for us . +Not good at all . + That 's him -- he 's the one . +Are there any white people here ? + That 's what they do . + That was last year , he said . +That was long ago . +Some were all right . + This is nt about New York . +But we know of each other . + How did they make these ? +I do nt want this war . + There is no world in this game . + But I would also know that is was nt me . +That was our work . + It did not take us a long time . + Who is he going to take with him ? + There was a war going on . + It 's not going to be the same . +I still do nt know how to think about this . +And to be in New York . +When they police left , they would come back . +There has never been another one like it . +They are going to come our way . + It 's how it 's going to be and how it should be . +Does he think about them ? + There are those who know . +She may make a few more . + We say this . +I know you know where he is . + But we are not going to go house to house . +These are the members of my team . + The American people know that . +But they are not going to do it here . +This has been good for business . +They are that good of a team . + But she will . +But you have to do it . +They do nt know as much as you do . + I think they could . + I should nt go on , he said . +But you can do it . + What do you know about him ? + It 's just when it 's right , he said then . +What did I know ? +First , to make money . +You put into it what you want back out of it . +But it could nt last . +First , there 's not that much business to it . +Until then , it 's more like just another show . +He 's a people 's man . +But I should be here then , too . +Be with me now . +Most of the time , he did . + You are so good at being in an office , he might say . + People , she said . +It 's been two years since you left us . +They are like us . +How did that one come out ? + I would nt know , she said . +I want to go to him . +A country like the United States ? +But this is nt all . + I say , Right , I should . +It was not his first house . + Now they are down to four , three of them women . + I have no time , he said . +But not many like her . + How did it get there ? +I did nt want it . + WHAT ABOUT ME ? +After all , it was their money we were after . + You never know when it 's right . + It 's not a business . +They do nt like it if they do nt get that . +He is the first and the best . +So what will today 's game be like ? +This can go on for days . +It 's the only way you are going to get it . +This was her first year at the school . +Now there are nt . + Will They Come Home ? +That 's the way they think . +And this was after the game . + If there 's another way of life , I do nt know it . +Most do nt make it . +Is there a house around ? + All his life he had the best . +He 's not an American . +I think about that . +You just have to have the money . +I do nt know how to do it . + That set me off . +He had to go at the end , and it was not the best place to do it . +Two just might , though . + But he has to do more . +They say , What 's up with him ? +That was so not me . + When can we go ? + But I could never go back . +Your never know , though . +So no time is a good time . + We have their money . +How are you going to get home ? +Now , I do nt think about that . + He would say Right ? +One day it will come . +I did know him . + This is one of those few times where it 's just as much about what you say as it is about how you say it , he said . + The place he should be is where he is . +I want to go out there . + You can say all you want about him . + It 's been good for me . +There 's no one there . +It 's so , so , so much more than that . + And Then What ? + I do nt know , now , she said . +This is your country . +I found him some time . + I was : What ? +It 's good to know it 's here . +Because I did , too . + I think we can do it , put it that way , he said . +But I could nt go in . +It was night and day . +Have they been there long ? +They just have to play well . +But this may not be so . + The only one , she said . +WHAT SHOULD I DO WITH MY LIFe ? +And they have a right . +And that it is . + How long can you do it ? +They get it , every time . + He would nt back out of it . +What did they know and when did they know it ? +He is a man . + And that is what this man is . +By day 's end he had one of each . +I do nt think it 's like that at all . +But in this case they were left out . + In the end , though , government can do only so much . +But that 's today . + We know who they are , and where they are , and how they did it . +I did , too . +They said they did not know . +What Did He Know ? +Have a good time . + We had a very good time . + They said , Never . +How will it all end this time ? +And they did nt want any more of that . +How long does it take ? +So what 's a good one ? +It 's a business now . + They do nt know what to do with us . + She did nt like it very much , he said . +Can it do this ? + What is that about ? +It is the best part of her day . +That was a long way to come back . + Where you been ? + It 's the best place around . +But you have to know that this is a game . + They were her world , he said . +One of these days it 's going to work . +BUT this was no best of three . +There 's so much that has to go into it . + Do nt you like him ? +He 's been here many times . +He 's in on every down . +It can just go on and on and on . +It 's more that you have to . +But the children are going to school . +He said , When can you do it ? +He will put it on the market after the show . + I do nt have a house , he says . +I was nt very good . + That 's just who he is . + This is his home . +I want to get back in there . + But I just had to do it . + It 's time we had it the other way . + She said : It just is nt for me . +And there 's a right and a left now . + But not in your case . +What does he say to them ? + I did nt want to go there , he said . +And he is just one man . +And it 's going to take some time . +Where is the world ? + Is your life good ? +But we have to do it our way . +And how long will it last ? +It 's a good night . +That 's all I have , only her . +So we put him on . + I just know that this time is never going to come back . +That should not be . + I was there the first year . +So does John . +It was my first time going through it . +But they want to play for their country . +I never been in court before . +More than that now . +After that , it 's over . + What can I know of those people ? + He 's been through it . +What can I do about them ? +Most are still made in the United States . + I did nt know it was nt ; I did nt know it would , he said . + But then we do nt have much to go on . + It was nt work for them to do that . +I was going to have to work for my money . +Too big is out . + It 's home now , is nt it ? +And you know how those people are . +They have a life . +So that 's what we like . + But we are still here . +But it used to be . +The United States is on its own . +It is not my game . +It just did nt work for him . +And the day after that , and so on and so on , all through the year . + They come and go , she said . +As of right now , I do nt like it . +We even like that . +Where was most of it found ? +Then you see it . + There Is Was ? +I might be one of them . + I never do this , he said . +And I do nt think they will . +You just have to play the game . +Then we put them to work . +But , then , how could they ? +And they are at home . +They might take you up on it . +He does that all of the time . +How would he do that ? +I never said it . +That 's what I was down about . + WHAT will you do up there ? + I could do it . +Then he called one night . +What Are We to Do ? + He was nt even there . + They know it , too . +One is not a good director and one is a good director . + If they can do it , we can . +You want to make him work . + Are we all set ? + I go all over , he said . +But you know that . +It was for him the best of times . + Come on in , he said . +MADE FOR EACH OTHER . +That 's what you use . +And we know they want us . + This way , he said . + Say , Are nt You . +I like to have a good time . + But no one does . + Do nt go out . + Take me home . +Well , I have nt found them . +WHO says business should be all work and no play ? +The world can never be the same without you . +You just want to see where you place . +But , it is , after all , one day at a time . + Some people do nt even know they have it , she said . + What I can say ? +You do nt have to do this . + It 's like in the West . + How long ago is it ? +Two can play that game . + She called about four times . + I think he 's right . +To me it 's not good . +I think they will do all right . + They just are nt . +It 's all around him . + Can we go or what ? + He 's too good . + That 's the only way you can get out of it . + Now are you going to come home ? +They take it to you . +It is a long season . + I was like , What ? +And come to think of it , he has a case . + New York is what I know , he said . +It 's all come down to this . +Now he 's going down . +It was never what they said it should be . + And so that 's what I did . +I said what I said . + I do nt go out as much as I used to . + Which do you want ? +Here is what we are going to do . +They should know that by now . + We said , No , you are not . +He still has nt had it . + The world has been good to us , he said , and we have been good to the world . + If they think they should go , then they should go , he said . + Come , I will show you . +There 's a world war . +You have to be here to be with him . +And you say , It could have been me . +It is time for it to do so . + How did it get there ? +That just is nt right . + I could show him . + It 's not the same world that it was a year ago . + I think companies are like people , he said . +The United States is the best country in the world . +How do you like that . + You never know what could come your way . + I do nt want it no more . +But she did not . +But some will also go to people like me . +It would nt have been the first time . +It was like war . +No right to know . +It would be for his family . + And you do nt have to like it . + How did he get in here ? + We are not going to do it , he said . +This is where we are now . +He had a place where he could go . +But then , I did nt have to . +A City and Its Police . + What we are going to do next year , I do nt know . + Or they would want a place they could use for an office at home . + Yesterday was your day off , not today . + Some of them might even be among these people . +It 's a good group . + You do nt like it , do you ? + So what do you want to do ? + This is my first season in three years , she said . +I would nt think so . + It 's more political . +That 's what I say . +You never think about that . +He had know how . +He will be there as long as he has to . +You just do nt . +They did it all . + That is not the case , though . + That 's when I do the most work , he said . + What can we do with this ? + They said , Well , this is what you are going to say . + But when you have two or three , you do nt have time . +I did nt even know it was there . +But you have to work at it . +People did nt know . + What about us ? +There 's a market as we know it . + They are not the same . + How do you like ? +It is , after all , a public work for a most public place . + They were the show . +You are a man . + It 's about money , he said . +And how about work ? + How do you do ? +I like to work every day . + Now 's the time . + How are you today ? +But will it last ? +That was the only way he was going to make it . +So it 's going to be a war . + There are more and more people like me , he said . +But here 's the but . +I just did nt think she was right for the part . +It is nt there . + You may go , he said . +There should have been more of these . +Most but not all . +But it is not right here . + But I would nt have it any other way . +But it 's New York . + They are in first place . +It 's what they want . +But Is It a Business ? + Now where are we ? + That 's just what they want . +And a very good one . +It is also one of the best . +Then one year it was . + And she 's not there . + And her family ? +Another war , right in your back . + No , not that one . +I do nt know where we are . + He 's good . +He says , Do this with this or that . +We just have to take it day by day . +He does nt like me very much , but I do like him . +If we put her to work , it would be office work . +Then we all go home . + Just like the old days , he said . + I may be one of those people . +But his program was not . +Who was this team ? + To this day , he said . +It was a game for money . + How do I say this ? +They do that the next year . +That will take us to the end of the year , at best . + That 's about all there was to it . +So , who 's right ? + I had a very good time , he said . +Now the time is right . +And I said , We are ? +It 's not like the other work I did . + Do you think I should ? + I do nt know what 's going on there . + He did nt think it was right . + That will be you . +Go all the way . + There 's too much time left in the season . + But no , the company is nt going public . + A law is a law . + I want my money back , too . + But you see now ? + I just did nt think it was right , he said . +Then he said , What do you want ? + What can we say ? +I made it up . +The show is the same . +When does she do that ? +That is not the case . +I like to play the game the way it is . +This is where you are . +You want to be them . +I do nt know what to think about him . + He said to me , How can you go with them ? +I did nt play in the first game or the second game . +So where I will go , I do nt know . +Now , that 's a good one . + I have that now . + See what you can do . + We were right on the money . +All are going out of business . +I was nt on them . + Work has you going and going and going , she said . + This is what we do now , she said . +Them were the days . + Do you know what it has come to ? + They are all the same , he said . +He did nt know me . +Can you do it ? + But I do nt know of it . + We know it 's day to day . + So do I . +I DO NT have children of my own . +It 's the American way , right ? +Then you know that you have found it . +It does nt get it . +This is a team game . +People can say all they want . + And that 's just what we are all going to do . + This is very good . +I do nt like them . + They do nt want it to be the same . + It 's both . +This is good , right ? + You are right , I say . +And we have it . + It was never found . +And that 's going to take time . +Same with the days . +He would nt see me . +Do nt do it for the money . +They do nt want you out and about . + He was the best . +It will be a war . +Where do we think the business will go in the next two or three years ? + They left it like that ? +What will we do ? +But they do nt get out . + Those people who are so up now are going to be so down , he said . +The time of year . +Not in my country , too ? +I did nt think . +They are only going to say it 's not as good as last year was . +The time might be right . +But I still think we are more of a team than they are . +He would have had to . +I said , This one is going all the way . + You have to think that way . +Then , too , there was the season . +They have one in New York , too . +Do you still play ? +It could be used up in a week . +And what 's this ? + But it does . +This is how we do business . + This law is nt just for show . +They are good that way . +How can I not do that ? + The only way to go is back . + So , what 's good ? + I own my house , she said . + He made it on his own . + I use the group that way . +It just was what it was . +How can I get their money ? +He would nt say who . +Now it is not . + A little less than that . +But the public does not see it that way . + This was for them . + I did not say that . + It 's that I could not have him . + I said , No one . + Do you know this , what do you know about it ? +He 's very big here . +He does and he does nt . + But we did . + I said to him , What do you think ? +And you are never as good as they say . + There were so many people there , he said . + I know about that . +He would do this . + This is my house . +So should New York . + This is a life going on . + If you do nt , you can see where most of this world is going . + I do nt think the court is for the little man , he said . +But where to put it ? +When was the last time you used it ? +And made the most of it . +Should he have to ? + Who would do that ? +They do nt know how . +I like to say what I have to say and get out . + But it is the law . +There 's no place like home . +Well , this is my time . +Now he does not know what he will do . +I do nt see any of you . +We now have one . +You do it with who ? +That could be , too . + I just had to see it . +But what if they do nt ? +This is it for me . +I did nt have any money . +That is very , very good . +So I just do nt know . +These days , how would he know ? +One can make too much of that . +Who did he know ? + That 's good , I say . +The United States is a good place . +I do nt say it 's right , but it is the same in every country . + I do nt see it . +It is no more than that . + What will I do ? +For me , it 's about more than the money . + And the only one who can do that is me . +I did all right yesterday , I did all right today . + And it 's been what ? + First , back up , back up , back up , he said . + How many people know Those Were the Days ? +Now , she is . +What if it had been me ? + He had to work to get there . + You want what ? +I would nt know how to make it come out . +A : And that 's all I can say . + It 's only me . + Well , it does nt . + We know the market is big . +I just like it long . + But if there 's a will , there 's a way . +This was nt good . +This is what he 's very good at . +It is not going to be as big as you would like . + But not very much . +I do nt know what to do with her . +Some you think are all right . +What do you want ? +We were going to use it . +And where is the money is going ? +You know , when we go to play , we do nt think about it . + The , the what ? +It was all over . +You have to think them up . +He just did nt know where I was at . +It 's about the people that have come before us , through our house . +And so would we . +We can still get it out there . + All these people know us , she said . +Would you like to ? + I would nt know . +I want to play that long . + But how can I know ? +I never think about them , but they are there . + How could you not get it ? +Now he can not . + She was used to that . +In a way , he was right . + What Good Did It Do ? +I do nt think it 's time to do it now . +It 's about being there , that 's all . + It did nt take long . + We have to get people out . + But there 's some part of me in them . + They take the game home with them . + Just in case , he said . +But not much more . + This is not how you do business . + So what 's it all about then , if not the money ? + We would nt be here if there was nt money to be made . +I still do nt know who he was . +She made it on time . +We want to make this a good program . + Now it 's just go . + I was just with her . +You have come to the right place . +I had to think of my family . +In the end , it was the same as just about every day . + His game is up and down . +While there 's still time . + It might not be the right way to play the game , but it might be the only way . +And that is what they want of the United States . + How long will it take to get it right ? +Do nt you know that ? + I think about that , she said . +They were nt too big . +Play for the team and all . + We take what we can get . + That 's the way we think about it . + It 's his game . +You have a right to know . + And I said : Well , I have two . + It was night and day between those two . +That is , he has had his time . +It was just , when ? +I still want them . +And then there is the money . + There are not many . + And I want them to do more , do nt you ? +I do nt want to see it a second time . +It was their own . + Since then only two have been found . +He never did get used to them . + All I know is this is for New York . + It 's part of us . +If it 's less , so be it . +That may not be much . +I just have to go from there . + He was here but he left , she said . +I was just , like : You know what ? +Do nt know too much . + It 's just a little much . +But where there is a will , is there a way ? +He 's not well . +They are way off from that . +West was part of his time . +He had to go , he said . +From then on I had it made . + How much is too much , how little is too little . +You do nt know who you are going up against . +What good will that do ? +They said they would have to think about it . +And it 's all state law . + She does nt have any . +It should not be the last . + That 's because we know how much good they do . + We just want people to do what they can do . +They did their best . +What did they say ? +I can show you the program . + I said , what ? + We did that in the first two years . +There are few like it . + We had to make a play . +He had me there . +He said , Man , do nt say that . +No one will go there . +That was a very big play in this game . +But that 's not to be . +He 's been back several times since . + All of us . +That was it , though . +But I was home now . + We like it , he said . +Can there be too much ? +And so it did . +Some of us do nt have it . +The season had less than a week to go . + How Much More Time ? + The work was more than four years old , he said . +And as long as he 's out there . +They do nt work . +It was like a second home to me . +And for her , too . + And until then ? +The companies are A . +It 's about life . +It 's business only . +I did nt even know we had any . + It does nt do him any good to do that . + What can I say ? , he said . + And it is not just us . +So we are way over . +Now , I do nt even play the game . +Then you get what you want , and should nt you ? +The war was about us , not them . +And it may not . + And in between ? +But we know these people . +But that 's not the same as being in the game . +They are out on their own . +What will you do ? + There , she said . +More people going to them . + Do you know what 's under this ? +I would nt back down . +I have to go in there and play . +I may last or I may not last . +You know where she has been . +I want to be a part of that . + Is she in the business or is he in the business ? +They are the best . +If it 's not , it 's not . +It is all here . + You do nt know what to think . + We want to go on , not go back . +He 's still in school . +They were about to . +I want to work with you . + That 's the way it is with me . +Now there are five million . + This is our work . +Both of my children are in school . +Is this going to work ? + We were like : You know what ? +But we have more to do . +My people are nt like that . +New : Do you work out ? +People want to see this team play . +You have to do a little work to use this . +So they take less time . +He can say it . +But I will know when it is time . +I like those too . +Even we do nt know . +It 's a business . + No me first . +That did not last long . +Now , people do nt even know who he is . +We know and are . +But he had nt , had he ? +You have to show people how . + We know that they do well . + Take him out , he said . + I think it does , he said . +I had to put those up , too . + And the school 's not that big . + Where is it ? + I did at the time , she said . +But they are like part of the family . + You can and you will . + This one was nt good at all . + You do what you have to do . + No , she says . +But that should not be the end of it . + No , no way , she said . +It was all up to him . + We can have both at the same time . + Both , I say , in any case . + I can say that now . + And from the old country . +This is the best day of my life . +You did this and not that . +I think they will make the place . + No , no , he says . +It was nt new . +A : They are . + Do nt use it . +I used to last year . + I think they are going to go all the way . +So it was yesterday . + He still has it . +What will we want next ? + I think I could state a good case . + That 's when we do most of our business , he said . +If not , it is not the end of the world . + As a man , that 's all you want to do every day . +You take what you want . + I do nt work for the money . +You take that out . + We all know what New York State is like . +What would I say ? +For some people , it was just too much . +Yesterday , he had two . +But it 's been our way of life . +There was still more to come . +But what will I do ? + It will take a long time , he said . +Do you think there is too much government ? +We have to put them down . +But that , she said , is all right . +But I would never do that , he said . + It is just no way to do business . +So what should I do ? + To me , the best part is just being out here . +He can get in . + New York 's still here . +When that 's the case , you are not going to play your best . + Other than that , I do nt know how to put an end to it . + It should not be here . + But you can have him . + He did well from what I could see . +And the president would have been there the next day . + What did you make with it ? + So this is one of them , you know . +It was house to house . + I think back on those times . +We want that , too . + As we did . +You are here because of him . +We would go for the new year . +Is this the big one ? +But we are family . +But it was nt all right . +I want to be three for three . +No , it is not that . + This is business , he said . +This game was very big for me . + We have to make the most of it . +He 's out of work . +Well , have you ? +That used to be us . +Where will they be ? + And that was the case . +If only they could . +They never come back . +No , she said . + I would nt have had it any other way , he said . +They work five days . +I found I had left out the a . + I know you did , he said . +If so , then so be it . +Should they have been ? +It was not a night that had much good in it . +We can only get them one at a time . +It 's all about the work . +She does , in a big way . + What is your country ? +There had to be . +And I did this time . +Now , if they want my music , they can have it . +So do we and they . +I have to take my time . +I take it one day at a time . + He still does nt . +What can they say ? + And that will take some time . +We should have left then , right ? +You should do this . + You come out with this . +This is for how many people ? + This is a big day for me , he said . +But they did nt get it . + We have not so much money . + One time here , another time there . +No , there was no end to it . + We get to see what they are like . +People have been too good to me . + We have to see you . +No , she had not . +What to make of this ? +I will like also to think that day will come . + Then I know what this is about , he said . + You may know more than I do . + And where are you ? +What was it like out there ? + How about her ? +And that 's what he is . +New York made four . +She also said it would be her last . +And did it work ? +How much should they know ? +I say it 's good for all of us . +You show them what you can do -- in their own home . + And it 's another day . +And they will come . +I did nt want to . +They did this to get money . + He would never back down . +And how many of them are to be found in the Government ? +They did nt say no . +And I think I can do that . +The next few days will show what the new game is all about . +There 's not a one of them that 's any good . +He would like to think so . +Can you get just one ? + After a while , you did nt see them . + So come on back and go to work . + But where is the work ? +Who is she that I see ? +She has her own place now . +We are not where we are going to be . +I know I can play it . +The women of the time . +The people want us to get this over with . +They are as one . + Every game is over . + They just have to . +But the only way up was to work at it , to do it . +In a way , they do nt have to . + It was nt like she was nt there for us , she said . +They were in another city . + She did nt have to say any more . +But we are not going to play . + I get it for you . + That 's still good . +It 's not , You do nt want to do this or do nt do that . +How do they know what time it is ? + How good are these ? +He 's not the only one , though . +I think that 's where I was on that . +They do nt know where to put me . +Well I do nt know . + But , she said , it 's not going to . +I want that one . +If not , do nt . + This is our home , he said . +But how much more ? + She was , and he was in . +I left before he did . +I want him to put it where no one can get there . + We should nt be in the business . +This is what you can do with your life . + But I did nt want that . +She is The Group . + It 's a little more . + I will be back , he said . +But first , how did we get here ? + He was very good about it . +And now I think people do know he would come on to her . + That 's what we do best . + I do nt even know what 's next ; they just have to show me , she said . +We said to each other , What about him ? + They can say what they want to say about me , he said . +How could I be right ? +And what of the women ? + Are we like you ? +I did nt see it , but they said he made a good play . +To me , they are nt . +Now , well , it 's not so good . + Would he have said that to a man ? +We did nt have much money in my family . + So it 's like you do it . +Will I be back ? +But two can play this game . + So much of it has to do with them , not us . +What do they want from my life ? +It 's not like the old days . + The last time we were in court ? +That was it for his day . +It has not until now . +But this time , the music is his own . +That is not the case this year . +You have to get used to that . +I was nt there in those years . +But it also does work at home . + I do nt like these people , he said . +It is still not over . +Or I think I did . +Now , she said , life is good . +And it is all that . +I do nt know where they are . + All they could think of was , there 's a . +If so , what are they ? +We have to go on with life . + Do they know who you are ? +But for me , it was nt . + One work at a time . +Then they come back . +That 's going some . + You just said he was nt . +Now , it 's up to the money . +Here , she did . +They want to know who he is . + It 's been our life , she said . +And I think he is that . + For all the work I do . + How can you can do this us ? +What to say about this ? + Now we can go , she said . +You just know where you are going . +Where do you work , then ? + But it was best for the team . +But it could be the next one . +About Right , if . +And that 's what she did . +This is the country . +Now , they know . +But it 's not so good for business . +I think it 's too big for him . + We just want to play . + Might as well be . + He 's the best , so how can I be like that ? +I do nt know , though . +But what about next year ? +There is no one to take their place . + He was very , very good today . +It is just the way he is . +How many can you get ? +I think it 's just life now . +That day has come for us now . + It 's right in a way , he said . +Some people can not do so . +I do nt know if I want to do that . + This is our country . + And I say : Now , it 's about the war . + I was here at the right time . +Where was the first ? +Not even when we put them up to it . + It is about time . +People did their own . +I want to know what the people want to see . +They did not play that way yesterday . +He was much the best . + So was the night , he said . +They left last night . +He was right about that . + That 's music , he said . + I never did that before , he said . +I know I will . + People were high on it , she said . +You have a show . +And how do those around her ? +The game is the game . + You do nt have much time , he said . + Could any of you be president ? +Then we are out of there . +But he did not say when . +How do you like it ? +Did you think this might have been your last game here ? +People do nt know that we are here . + It 's part of my game also . +I think we did that . +What are you going to do with this ? +But there is still a long way to go . +They never had to . +You do what is right . +We do that every game day . +And how would we like that ? +But what does that do ? +And I said no . + This year they said , This is where you go from here . +The people are just not much into government . + I do nt know if they can . + What 's what all about ? +Some people still do nt . + I do nt work that way , he said . +Think of what I had , what I still have . +This is the team he was with a long time . +That 's what people did to me . +And we did nt do the same at the other end . +You can never be too good . + It 's part of my life , she said . +The United States says this , too . +You know these women -- or do you ? + But I do it all the time . + You are going to take them down , you know that , right ? +That 's a good time to do it . +So now there will be one more . +And it is not . + I think there were several . +More is more , right ? + What can I say to them , Do nt go out in the street ? + Even for New York , it 's very high . + What if there is a war ? + He 's been good for this state , this city , even this country . + But What Do You Do ? +I never had that . +And now is the time to do it . +That was a big play . + This is the law . +How will it be then ? +We will see how he does . +But what was I to do ? + She would still have been there . + The best for what work ? +He has another , and another . +When did you last see that one ? +This may be one of them . + There 's no law against it , but there should be . + No school could or should be . +I do nt think I could do it . +No , we are not going to show up . +They have nt called me up . + And we did . +They think about it every day they go into the office . +Is she or is nt she . + People do nt like that , said one of them . + Do you like my work ? +You know that going in . + He did nt want to put me in this , she said . + I can , too . +We had to do that . +No one would show one . + I said , You know , so did I . + People do nt know how to do it on their own . +You just do nt know . +We are all right . + We just made music for five days . + That 's between us . +The state says they did not . +Come at it this way . + Is it still ? + That 's what these children do nt have . +Life was like that . +After a while I had to go home because I could nt last . + You do nt have to like him . +This is a good day . + I think that 's too old . + I just do nt do that , he said . + What did we see ? +Where do they take them today ? +And you just did nt do that in New York . +You are going left . + It made your life , he said . +We want a through street . + She 's just that way . + They were going to war . + I did nt know how right he was . +It 's just as well . +I do nt know what the city is going to do . + We now know that we do nt have to be just American . +They said he would nt come over to work . +Which way does it go ? +I do nt think I do it . + I think it 's a little much . +John never called back . +And we are very much on a high now . + There is much that we can do for each other . +But I do nt want to say much more about the show . +I own up to it . + Well , then , come back next year . +He has only found one , he said . +But it was a good one . +Both of which are now part of the play . +That world is our world . +It was about money , in the end . + It was the only way to get through to them , she said . +We should nt have . +I , less so . +And so he did nt . +We are not the team . + We had a good time for years , he said . + And one more after that ? + That 's his business , he said . +It was nt the right time . +Then she called the police . +It is life , but only just . +I think , I could be this way for a long time . +I do nt work at that place . +We are going to do it now . + It used to be , Just do it . + You do nt want to know , she said . + Here , I said . + I want to go to university . + He just was nt the same . + It was nt like this , though , he said . + I have to work with them . +Now the more you do , the more you are . +I think he was here three years ago . + We just put these in . + They had their say , he said . + We just do nt play like it . +That is nt going to do it . +But today is another day , another day game . +I did not put it to him that way . + But one night is all right . +And other companies did it too . +Or it used to . +She left school the same day . +I have to do it now . +But it is still a family business . +Do you have any money ? +You think you do , then you think you do nt . + How long that will last , I do nt know . +But not too long . +We want to take the best we can . + I said , How did you do ? +That is very little . +I think it will come . + We do nt have to like it . + You can see where this is going . + But I did nt want it to go up . +And that 's the way it still is to this day . + There is no way around it , he said . +That 's too good . +So what does she say ? +What 's been going on ? +And it was on . +Where do you go ? +I was the only one from my high school . +We used to play in the street . + What do I say to them ? +What did he do with those ? + What should you do ? + A day does not go by . +But would they want it any other way ? +We just do nt make them . + Being here is just another day at the office . + I do nt know what he can do . +So where does the money come from ? +He said he had no place to go . +There is very little . +They will be there . +What was there to say in public ? +He did nt like them . + We did not do it , she said . + Can I have them ? +I do nt want to think . + Does he know who this man is ? +And the time may be right . + All of them . + But it was on the up and up . + Now I had the time . +You do nt have a national government . +These days , not many . + How you like it now ? +You are not the only one . +And it 's home . +But it 's all for show . +We just did nt think he would be there . + When I go home , I go home . +And between him and us . + And that is not the way it is . +I did nt think this was . +He just does nt like you . +Then I think , these are my children , I made them . + Where are the women ? +I have no life . + I know he 's out there every day . +Here we did that just because it 's just the way it was . +We would nt have been out there if he was still here . +So he was good for the first time out . + That was it . + Do we have it in us ? +It 's about how many you take . +This is our home too . +He did nt take it well at all . +That 's about all you can say . + The money 's good , but the work ? +They do nt TAKE it . + She 's right , he says . +We will get by . +We are going to have to work for it . + It was like the end of the world . + I just have to know . +I do nt think she would have made it if she did nt have that . +You have to make a good life . +But if it does take off , you never know . +He then left , she said . +She said she did not know where he is . +If not , well then . +You can do that . + These people say : Where was he ? +I want it , too . +How Do I Get There ? +Now what can we do about that ? +We just see you . + But he 's not going to back down , she said . + But all the people do nt like them . +Then it was all over . +What would you say to them ? +I said : How did you get here today ? + They are not even people . + But we still have to play them one at a time . +They have to play . +And where will the money come from ? +He does not , not he . +There 's no place like you . +So what will people think now ? +It was just their day . +What can the West do ? +And what had made them the best ? + How 's it going ? + I would have been the same way . +I do nt know when that day will be and I never think about it . + You have to make it on your own . +We will have to . + They were just people , he said . + Who 's this ? +I think we are what we are . + Now you might get one . + Just take this out of it . + The world is each one of us . + I may not get it this year , he said . + I know her well . + He still do nt know all of it , she says . + Never -- they will not go , he said . + It 's a big country out there , he said . + We do nt see it today . + Here it 's the same way , he said . +Well , she did . +They are all right , but they are all white . +Is nt that what we all want ? +We do nt think about that . +That is up to you . +But what if it is ? +So I would nt come in right now . +No one would get too much . + You have to think that . + You just have to know where it is . + I do nt even know what it all was . + He said , Do you know him ? +What does the work say to you and me ? +So then where are you ? +All this is new to me . +So where do you go ? +That was about five years ago . + But he could be the best man in the world . + There is no other . +They are not about to back down . + This was a game for first place , he said . + It will take time , the general said . + They called the right play at the right time . + This has been a part of my life for a very long time . + It 's not good , but it 's not the end of the world , he said . +Some of them have . +Time : end of day . +But that would do no good . +I could see she was down . + If it did nt , we would nt be going national . +And now we are . + For one day . + Where would we go ? + She did nt know what she was going to do . + It was very big , he said . +Used to be you could nt do that . +The second time , it did . +I put them on . +It 's the best show of all . + So what do I do now ? +Second , you go to war with the world you have . + They did nt think about it . + I know it will . + I do nt see any . +He could nt get one . +Many other women were there as well . + But I do nt know what we can do about it . + It will be like going to war , he said . +It 's the good part of New York . +And that does it . +We see it all the time . +It 's not because he does nt want to be . + This is , after all , their day . +You never know what people are going to do . +You do nt have to if you do nt want to . + He has to play , he said . +They have so much going on . + He said , I do nt know . + You do nt say , That 's my play . +Well , Now What ? +And he 's a good man . +This year , she was back . +Just four years from now . +No one will come in . + I did nt want to get in the way . + People are nt with it today . + But it 's a business . +Not many women at all . + They want to be with it . + Where are all the people going to go ? + He could come back . +Or could it be the other way around ? + I still would nt do it , he says . + And they said , That 's right . +Think it will work ? + For a few years . +A little more like her . +Now , it is not . +Say you are the President . + We would never back down from one another . +I think you said you did not get it . +That 's how I have to think . +We are part of the West . +But I do nt know if we are going to make it . +But today I had to go . +Get back to your game . +Just as it did . + If they are with you , they are there . + How high is too high ? +Who can know it . +But I think we will get it through . +Or so they do at first . +How big is too big for me ? +But what if you did ? +We do nt think that 's right . +Or , it could be me . + It 's just another game for me , he said . +Does the public also think so ? + Life is so good over here , he said . + No , that 's not it . +They only made four . + How did I get into this ? + And we could use it . +How old was he ? +A good day , he said . +You know : In a world where . +But that 's not the way it will be . + If I did have it , would you still go with me ? +So , what are they going to do ? + Not that she does nt like it . +This is not about me . + They said , There 's no way . +You just have to think it . + You think it 's because you are a women ? +I do nt want to get into it . +Would nt you know it ? + What would I say ? +And so now I do the same for them . +It is not even a house . +What 's with him ? +They would nt go after people . + He 's not going any place . + I would nt be around long if it is . + That 's good to see , he said . +Here , you get what you do nt see . + I do nt know any of them , she said . +But there 's so much you can say . + But that 's not the way to go . + That , he said , is what they used to be . + You know what we have to do in this country ? + It was like that all night long , he said . +No , but that will come . + They do nt like it , but they will get used to it . +And we know we are right . +And it 's not about money . +And in a way , it 's as if we never left . +I think he should not and will not . +But it had time . + What 's this right here ? +The President said : Did you see this ? +He did not say no . +There is no place for the company to go but down . +They do not know much more than that . +But she is still the center . +That 's where I want it to be . + It 's the right business for us to be in . +Even though there is nt . +Or the day after that . +I say we should . +My time was not up . +You can see her next week . +How , we want to know , can this be ? +It 's been a good time . +So I go to her . + It 's not the best way to get there . +What can we say you did ? +There 's another life as well , and you just have to make the time to do what you want . + That 's all my family has in the world , he said . +It 's the one I want . +All over the city . +How have you been ? +So is it all over ? +When I go home , you want me to do this ; is that right ? +This is our team . +Or think of it this way . +Every year it 's the same . +But if that 's what we have to do , then we are going to have to do it . + That 's me . +These are the best . + Both , she said . + That is what people want . +It was not right for her . +Is this what we want ? +After such a long time , we should be used to him . +It could , because it did . + Do you see ? + You were with them for five years . +We have a few . + We are against this . +Did it have to be used at all ? +And then it was nt . +They know where and when they have to be . +That 's what we have to do every day . +It 's a season . + They can take them down . +We should do the same here . + It is like business . +They will if she has her way . + What 's going on out there ? +More is too much . +That 's what we have now . +Both are New York City companies . +But think about it , people . + There have nt been , she said . +Not many people can do it . +We know where they go . +That 's what I do nt get . +Do you still want to ? +You know the women . + For my house , she said . +To him it was all a game . +If only it could have come about in some other way . + No , she 's not , he said . + He did the second . +They did nt want me to go . + It is so , she said . +But it could do little about it . +There 's too much going on in her life . +Much of the time , he does . +But there is more to it than that . + I did it because it was good money , she says . +How can we know ? +He put it there . +So just how old is she ? + It 's people like you . + That 's what they said . +Very , very good . + People have had it , she said . + At the end of the day , we are going to do it , he said . + Now we want to do what they did . +Both have been around for some time . +I take it as part of the game . + Those were some good times . + I do nt know what it 's used for . +But only in part . + Those , he said . + You had to be the best . +They think about it . + Would nt work . +And here they are . + How did she see one ? + We are all a big family here , and I like the team , but business is business . + I do most of my business that way . +It 's a New York game . +You are on it now . +But we like our team . +There 's so little new in the world . +And that 's what we do . + This is as good as it can get right now . +He would never do that . +But he said , I did nt know what . +It was a big year . +And what does it take to be good ? + He is well on his way . +It 's , What 's left ? +This time , she does not want to go back . +And that 's not right , that 's not the American way . + They know I do the Today show , he said . + I did nt know much about him , he said . +They just said , That 's just all part of the game . + He 's the President . +He was the only one who did . + That 's what I want to know . +Now , the When did I know ? + I had too much time to think about it . + What do you want in life ? +I did nt know you were out there . +It 's a law . + It is a high . +It was the first , not the second . + I just could nt get it right . +I have to do it , too . + That is what that man had . + And they want to be like them . + Where are the people ? +There is no government here . + How much I do nt know . + There are too many of them . +He 's never been here . +If he 's been to New York , I have to come to New York . +What do they say it was ? + And she was more than right . + This is nt like that . +They are going to get used to it . + All we can do , all I can do , is play my best . + It 's up to me now . + If I would have had the money , I would have , he said . +There is nt a market for them . + I have no life left , he said . +We want to make money . + They are new people . +People do nt have to own them . +But not last season and not this season . +And there may be more . + And that 's no good . + You can never say never . + That 's a long time . +In a way , it was . +I know he would . + We were second in the United States . +I did nt think I could make it through . + This is going to be a long week . +How can you know what to do ? + But this is three years . +What 's it like when you do ? +That 's not what this game was about . +Put it on the market . + I think that 's good , he said . +Well , she 's here . +Make of it what you will . + So people come here . + It was like being in school every day . + How much he want ? + I think it could have been , but it was nt . + Now , no good . + But to me that 's not a business , she said . + I think all of us were . + All three of them . +They called to another . +They are going to know who you are . +People just do nt get it . + People do nt know how to see this work , he says . + They just did nt have to . +It did not take him long . + What 's there to say ? + No , it would not . + It was just in me to do right . +So do Federal officials . +But it 's my right , too . +I get that from him . + Who does nt ? +So she should go next week ? +Then he said , I do nt know . +You go to it . +And every now and then , they may even get to see a show . +So that they did nt know . + I did nt know what to say . + You have to do it for them . + Just do nt do it here . +Still , you might as well make the best of it . + Will I like New York ? + I know he 's here with us . +We think we know how to do it . + She was going to do it , he said . +He says he has nt been in that business for five years . + All you can do is the best you can , he said . +It just was nt my night . +You can know too much . +And it 's not too big . +That may take time . +We know what we can do . + It 's good for business . +Who 's second best ? +It had been a while . +Where Did They Go ? +She was right about that . +And what about New York ? + This is my second year , he said . + Do nt that just take you back ? +It 's less to do with me and more to do with my family . +He did not have to be . +A man like no other . +What was there for them to do ? +We are not for you . + But they all also think there 's a little part of them in there , too . + And that 's a good place to be . +But there is such a long way to go . +So it 's on me . + We do nt know how long before we can get back into our home and our work . +I still have to play the game . +To have a home , a family . +New York is a very big city . + And no team has come back from that . + Then what did she do ? + About New York . +Only it did nt work out that way . + I think I could do it , but I may not get it all . +I will not have time now . +So are other people . + Now I want to know who did it . +I made too much money . +Are we the world ? + Best be going now ? + I just take it one day at a time . + They are all back , he said . +We are all well . +Get them out of here . +Not that long ago , we did nt think so . +You are never too old to make it . + I called them and they never called back . + They said they would nt work with me . + I was nt here at the time , he said . +Because I know too much . +Would that it were there to make it . +They never -- they are there . +We could nt see where we were going . +But now they can . + People do nt know where the money is going . + I do nt know if it 's all the war . +The time had come . +We are in now . + We have to do this ? + Is it going down ? +Now you are one of the best . +But if so , so what ? +You do it my way or the right way . +We had the same life . +It 's the end of the world as we know it . +No they are not . +Her last day of work was the last day of her life . +I own the country now . +There are no days off . + Where do they come from ? + We have to do much more . +But I did nt have to . + We just had a good time with them , she said . +I do nt think about that . + This may be a first . + But that was a very long time ago . +Until you get it . +I never left -- that he had come home . +But this was going to take time . +Or just more of the same ? +And all is right with the world . + But you know all this , he says . + That 's how I work . + Have a good four days . +But how will this work ? + And some people do nt get back up . +I think I did , but what do I know ? + That just does nt set too good . + It 's not just the music , it was him . +All four say they can not go home . +He does nt just not play it . +If only they had called me first . +Do any of us ? + But that 's what being an American is all about . +It 's what people who are in the know say . +It does nt end . +You could see it at the end . + And if they do ? +How Well Does It Work ? +That 's been here for many years . +Do nt do too much . + But he does nt . +And I did nt know how to do it . + I do nt see how he can play for them . +If it 's there , people will take it . +What do you do about them ? + What do people do every day other than make money ? +Few people think so . +Second , do nt do it . +This is his home , they say . +But what you see is what he does for us every game . +They can do it . +I see the world that way . + If he still says no ? + I have a home now . +They like to do that . +And that can work for you . + I play every day , one said . +What can I do for you today ? + How did she know ? +They have several years to go . + I do nt know where I come out on it . +Each has four children . + You just have to get used to it . + Just the two of you ? + It is very good . +We want them to be who they are . +It was there for me . +If only he can see it . +That 's what I did at first . + I just have nt found the right one . +What they know , they know for us . + It was high school . +There is not time to . + As long as we have it , we might as well see what we can do with it , he said . + But he did not say when . +Do I like what I do ? +Like , old people ? + And you are right . +I said , We what ? +Now it 's up to them . +It 's good for him . +Who could do this ? +They have to want to be here to come here . + But we never have another one . +I think I do know one . + I was like : What did we do ? +And she had money . +But this is nt the end . +It 's a good way of life . + The music was there . +It just was nt so in her case . + You want to get out of here . +What did West do now ? + This is money back to us . + I know what I have to do , and that is get people out . + This is for our country . +We are going to make the time and go over to her office or her home . +What should a president do ? + They said it was no more than that . + I never will be . +But people know we are here . + We just do nt want to work here any more , he said . +I should nt do that right now . +What 's up is down and what 's down is up . +That 's about all I can take . + That is , if there 's any money left over , but then there never is . +It 's a little of both . +We are all over the place . +It might take a little while . +And some of it is . + It just is nt all there . +That 's not what it is . +This is the team we have . +As for the first part , he is not . +We have to play like every game is our last . +It has never been up to them . +And it has been for a long time . +He was a big man . +She did nt want to at first . +I know he 's good . +And it 's just right for what we do . +And we know it . + I can be a big part of this team . + I was just about the only man there , he said . +And more is on the way . +But they are still there . + People know who you are . + I do nt know who will go there , he said . +How long you had it ? +Would you do it ? +You know I do nt have any money . +But we did nt do it much . +The next school day they put him out . +Last year , it was nt the case . +That play was a show . +I like to have people around . +You know , I do nt know . +How do they not ? +This might have been made two days ago , or three days ago . +That is where the children were as well . +But she said she could nt . +How long does it take to take it all in ? + I think you think about it more when you do nt play well than when you do play well . +You just might get them . + It 's not just about them ; it 's about this time of year . +We will have to see , though . + That 's right , he said . +WHAT do you know and when did you know it ? +We get as much out of it as they do . +And we would have a new president . +You have nt had one for a long time . +I do nt think they know us . +I just said , This is it . + I want a life , he said . +Each was about to go home . +What 's this game ? +They did , but not for long . + It 's going to be a long night . +I just would nt like it . +And she had only one take to get it right . +But we know what does nt work . +How did he do that to me ? +That was only part of it . +New York will never be the same . + The other is that you should get it when you want it . +You put it in . +Or they are going to take it from you . +My life has nt been the same since . +This is a good program to use with children . + We want to use it . +I want to just take my time . +A little of it . +Not that many people work that way . +Did nt he think he would make the team ? +Or is it just me ? +Or they put them off or do not do them at all . +They found out what it is . +We have so much money we do nt know what to do with it . +Or even the same city . + We could never do this before . + So they put us off . +I was going to play . +And we like that . + He 's the one . + We all know each other . + That 's most of it . + I had just come over . + I left that . + Or we can use him like we did last night . + But at the same time , it 's just one game in a long season . +It would take too long . +Then they said it back . + They do nt know what 's going on around them . +You can only know so much about it . + You use him , he said . +But we have no say . +And this is the first . + That 's not all right with me . +It should not work , but it does . + I just do nt do it . + We like these people . + Now we know each other . +Where did you get those ? +Not so this time . + I think about the good times . + They are not out to get me . +He is also big . + He 's over there . +They come and they go . + He 's the best of the best . +Did she think of me ? +She was against them . +No one could do it . +For the last time in your life . +That was the game there . + They come back and they are not the same . +STILL OF THE NIGHT . +Because you know they are . +And they do just that , all of them . +And what will they do to each other ? + That is what you have here . +Those are all big companies . +Then - the world . + He should have been . + We are going to have to see . + I can be as good as I want to be . +That is women 's work , they said . +And who could think like this ? +In what country are we ? + It just was nt the right time . +But he 's been with us every day , too . + That 's what it 's going to take . +And , if you did , what would you put on it ? +It 's just that I do nt like to be out there . +They do nt know where it is . + It 's just a little now . +When are they used ? +And I was right . +Well , we did nt . +I was not with them . +About did it first . +He was our center . +But that 's what people want . +But , then , they are not . + Life is very long , but what are you going to do ? + People want to see it , he said . + That was a big one . + It 's not good for any of us . +I will not go on . +What would it take to make it so ? +But I have two . +Two years ago , the first women . +No , three of us . +Now they want out . + I have no government . +No one was out then . + That is going to be the life of our home . +This was the best way . +White people have too . +They are there for you . + They know we are out here . + That 's their life . +It does nt know you . +It is the New York Law School , not New York University School of Law . +He did all his school work . + I did nt know what to think about that . + Do you know what ? +First there are the children . + Are we where we have to be ? + I do nt have company , he said . +I think we could . +He said , I want one of those . +I think that was all in the first week . +They should see them now . + And if it did ? +And what did he think about work ? + Because it 's going to be an out . +Some will want to do one , and not the other . +And I want to get back there . +He would nt be around long if he did . +There 's only so much you can do at one time . +But all this was not to be . + But this one does . +And that 's where they are now . + I have to work with what I have . + I did nt see that last year . +A man has to work , does nt he ? +Do you think you are , too ? + I should know more about it , she said . +But war will go on . +Today , it did . +It 's not the same today . +It was three , not two . +She did ; they are nt . +They are not going to get you . +They may be new or old . +I was just out there . + But that 's what we have . +It was a go . +We are out of business at the end of the year . +But where was the other one ? +He did the best he could . +I do nt want that to be the show . + So I just left . +This team can not . + So did the police . +No one should be without it . + And she is . + You never get used to it . + That 's not all . +We want to do the same . +He is so over . +I was nt the only one . + It might be there . + I do nt play well , he said . + They are for the general public . +I think it can . +But not all do . +He did nt like what he found . +I think we might go to war . +You do nt know ? +But that 's not the way it is . + The case was never about money . +Just to do it . +We can make it . + But I do . + We get through that , the four of us . + This did nt take too long . + I own it , he said . + You do nt get that every time around . +She said , How do you know ? +It is still there today . +I want it to work . +We did not know what we were going to do . + And this is her last show . +I could go on and on , she said . + I get it , I said . + I work for my money . +Because that is what they are . +In time , so what ? +And a little too well . + We are in the game . +You know what they are going to do . +And if they are not ? +It 's all new to me . +What does she make of it all ? +They were good , but we did nt play well at all . +And what does she want from us ? +So which way now , Mr. President ? +It was nt much of a game . +No , it should not be so . +I might as well show it while I can . +Some people say the new is over . +And this was it . +One , two , three four five . +And he should know . +It was nt the money so much . +It will not end the war . +So you go on . + Did nt you get that last night ? +But I have a will . + But he made you think . +We know we can play that way . +There are some that are not so good . + I say to my children . +We do nt know which one . +Now this I could do . +That 's a no . +But they should get used to it . +Though I do nt think it . +It 's like being part of the family . +For a long time it had little money . + Do you know who he is ? +Or one time too many . +It 's not the country and it 's not the city . + You know what for ? +It is three , not one . + He 's a good man , she says . + Until you get in the game , you do nt know that . +We have been there . + It can only go up , he said . +You get back to where you are going . +My way is the only way . +I used to play too much . +But I will never get used to it . +I want to come in and play the best I can . + So that 's him , is it ? + I do nt want to say I did nt like it , she said . +He would say , This is what I want , this is the way I want it . +And he did know the world . +This is the place where we will all end up . + Would you like to say more about that ? + And it 's New York . +And New York did what it does best . + I like the team . +They do this not because they have to , but because they can . +The first of only three . + It was nt called that before , he said . +It 's good for the public . + I like to think they did , too . +How good is he ? +I know because I used to be in them . +I did nt see that . +He has come a long way since then . +Very , he said . +If it did , it could nt be any good . +This is all new . + Can you do less for him ? +I know it will come . +It was to have been a big day . +This is a good place for it . +I still do nt know what it was . + You know how they do it in the city , right ? + Because that 's what it 's all about . +And where did it get her ? + And he did it every week . +You go out and do the best you can . +We have them all day , every day . + This is not A . +Where to Place Children ? + Now there are all but one . +Do nt have one , he said . +They know where they are at in this season . + I can not , she said . + This is not a game that we want to play . +It 's not just about that . +It 's about her . + He does nt even go to the office . +It 's our first . +What 's your game ? + Every day was my last day there , he said . +It 's just like life . + They do nt know what to say , she said . +This is the play world . + We want more of the same . + Did you know he was here today ? +Well , is nt it ? +Not what other people want him to do , or what we want him to do . + Are we going to school ? +And it might do a little good . + It 's like us against them . +You can see it , too . +Next up : money . +He has it as well . + The work is part of the program , he said . +After a while I left . +And that 's the way to go . + For me , it 's the best place to go , she said . + But what if it had ? + You have to be in the know . +We did not want the war . +But is there a way out ? +But do they still ? +You have to go to work . + The team did not do well . + But we did it . + He was one of our own . +Well , it was only a show . +He does nt go out . +But who , where and what ? + The game was there for us to take it . +It 's not where I want it to be . + I go , I did ? +And I say , That 's not right . +That is in the first place . +We see only one of her , but there are two . +Now you see them ; now you do nt . + It has been so . + It would nt be right , she said . + What do you think you might do ? +HOW did it come to this ? + I was very , very good , she says . +He 's had a long time to think about all this . + Not a good play . +He could nt use it . +It might be a little of both . + Who is going to police that ? +But this is not their time . +Some days , though , they never show . + I was on my way over . +Not by what is in them , but by who is in them . +It 's who you are . + No one had said that in years , she said . + There 's just no one around . +But I do nt want to be . + People want to be here . +They are all good . + This is good for us . + Next year will be good , he said . + One more time , he said . +Here 's what they said . + Never is a long time . +And not just music . +That is nt here at all . + There is not a place like it here . +That is all I know . + I think that 's what we are here to do . +Both were off for the first week in the last four . + I get after it . + It had to do with his life . +It 's our time . + It 's like that every day . + Like they say , the best times of your life . + Not at all , he says . +Some days , two do . +And those who do nt want to get up , do nt have to . +But he did nt and he has nt since . +Now , he had even less use for it . +But how did they do ? + It 's not going to go over well . +But I do nt think it 's up to them . +And she should know . + They were only on for a few days . + Most of us did . +I do nt think we will know any of this for a while . + That would be up to the people , he said . + And you know what ? +It could have been him . + We are going to get it this time . +Big companies were here today . +They are all like my family . +So what do we know now ? + By the time he was in the show here , I was out . +It 's just time to do it . +And then we have . +What about what we have going on here ? + This is how we are going to be . + I did not want to do this , he said . +WHEN THEY TAKE ME . + That 's because they are too good . + But not now . +Where do they think we have been ? +I would just go into the business . +This was the place . +And as for the money ? +No , I do nt . + It was nt a good place , was it ? +He does not own any of his own work . + First the war and now this . +How would you like to come over to . + I have just as much right as they do . +But you can say this about the President . + It 's more one on one . +He would nt , though . +Three years ago , there was only one . +What 's still there ? + If so , how many ? +We can get by for a while . + She did nt know what to do with the children . +Can this go on ? +Yesterday there was only one . +Well , in a way , he did not . +Go out there and play . +But I should have called . +It could come down to the last day . +That 's where it 's been . + It did nt work so well . +We are going to school now . +But few , if any , want to now . +But he did not show up . +It is what we say it is . +When will it come ? + In this case , it did nt come out . +And , and , and . +How good can we be ? + I never think about it , he said . +Take over the game ? +I do nt think I would be good at that . + Now they are all over the place , he said . +That 's not what we did . + I used to have them come over to my house . + I did nt do my part . +It was her own at last . + Do you know who that is ? + It was a good day . +And what 's that ? +And I said , no , it was nt . + For us it 's been very good , she said . +This was our place . + He did nt know what was going on . +But he 's been around a long time . + It does nt work , does it ? +It 's for play . + No one did show it to me . +And you never know . +They are also on the way out . + But New York will come back . + I said , What 's that ? +It 's a way of life for some people . + What do they have ? +Not this time , though . + They are here on their own . +Women in the program say they take life one day at a time . +And in a way they are . +I want to be a big part of that . +Well , most of the time . +You know the game . +It 's not just a few . + What are we going to do first ? +Not of each other . + It was the time to do that . + It 's music , he said . +In the end it may not work . + It 's what I will do , he said . +He is only president of the police . + Music , she said . +Most of the time , he never had it in him to just take over . +That is part of it . +All the people who are there want to be there . + They have been very good to me there , I like all of them . +You who think as you do are not . +And I think that 's it . + I think it 's do the best you can . +Most of the time . + I did nt see that game . + I do nt know what that was all about . + That 's what did it for me , he said . + He can get the most out of you . +And they were here . +It 's more , What can I get ? +But he did so much more . + But we do nt know . + This was just one game . +And also , for some , to make a little money . + I do nt know how many people are in that state . +And you have this before you , as well . + I might , I said . +I want to have children . +Not even each other . + That 's all it says or does . +Work First is now law . + We do , we do . +We do nt like it . + People see it and they say , What is this ? + It 's my time now . + Only he can do it . +A : I have not . +We can see what it 's like to be an American . + People have to get up and work the next day . +Like , come on . +He was only off by two . +But the play was called back . + My children have never been to public school . + I have nt been here before . +What do you have to say to that ? +But it 's not about money . + Other people did , but I did nt . +It 's not going to be the first time . +But what about those who do have money ? + Here we are , back in business . + What more do they want ? +Now , they have two . + But I think you are right where you should be . + I said , We do nt work that way . +We still have to work with these people . +He has to do it his own way . + There was no way I should have been out there . +I was like , I do nt know . +If you are good , you are good . +I will right now . + Well , she said , you should . +We know they are a good team . +HE was also there . +I do nt know what it is . + I do what they do . + I want to be part of it . +We are in it , like it or not . + He did nt know who he was . +It did nt work until this year . + I had to do what was best for the city and the department . + People would say , How do you do it ? + But he has nt said he could play . +He did it , day in and day out . + For me , the game is like that . + Only a president can do that . + I would have to go back . + And they are not going to do that . +He may end up in New York next week . + There 's so much of it . +Be all you can be . +But it 's on its way . +Then it 's back to here . + Did he do it ? + But I do nt think so , he said . +You do nt have the money . + But for years I was nt around . +We would nt say this is the end . +But many times , we have other people to do that . +And , do they do take out ? +I do nt know what you can do about it . + I can see them , he said . +But so do I . + That will be me . +He was the best last year , and he still is . +It could be many years . +The United States says so , too . +Do you still like her ? + That 's up to him . +But they were family . +And another and another and another . +She was just in time . +That 's my game . +I never get to see them . +What was he like ? +After about five years . +Many may have left the state . + It just did nt go through . +Which made me think . +I have no business being in business . +So she is here . + There was nt . +That is to say , he has no family . +I do nt know if she will have me on . +It 's not that . + They all like to get back home . +For its part , A . +Your country is still your country . +It 's a game like any other game . + How will it end ? + What do I say ? +They just want their money back . +First , they have to want me back . +And what if they do nt get it ? + And he does nt have many of those . +We just did nt . + What is it you think it might be ? + We are going out of business . + And when you come back , it 's like you never left . + But does it today ? + He 's from the West . + I do nt know , he said , because I have nt . + It 's up to me now , he said . +And I would say she did both . + But you know what 's next ? + Up , up , up , up , up . +They are all the same . + But they have a long way to go . + What did the world do ? +They will not get that from us . +HOW DOES IT WORK ? +I could be this , I could be that . +And when it is all over , that you were there . +Like we did nt know who he was . + But I do nt even think about that . + There is only so much you can do . +There is nt any . +But now it 's not . +Because , do nt you see ? + We did nt come to play . +That 's all we have to do . +He could do it . +We did not know any of this then . + And some do nt . +The United States never did . +They get them right out of high school . +We should be a very good team . + I do it for her , he said . + Do I have time for two ? +That 's what they want you to think . + This is just one more case , he said today . +The first time was last year . +It 's also time to think big . + We have to think that way , he said . +But I play through it . +But this is another game . +As they used to say in my family , what 's not to like ? + No I did nt , he said . +You never have your life back . +What do you do with the money ? + The work would just be too much . +It just was nt their business . + So all 's right with the world . + You just do nt know what they are going to do . +We do nt see them . + We just like each other for the people we are . +They want to know how many people are like me . + We are over here , and they are over there . +LONG , long ago . +But for now , she said : It 's what we have . +And it 's not right . +He did nt want to even say that much . + I will make it , he said . +So this could work . +Now get out of the way . +Is this all there is ? +It just did nt go in . +I think we should have one . +They might do it ; they might not . +I want you to . +How is it used ? + And how do you want it to end ? +And his did , on the court . + I do my best , she said , but I can only do it for so long . + There 's just too much money around . +It 's my second week here . + So we did . +He should be in show business . + It was the president . + Then they show up . +But that is not to say it is all work and no play . + But it 's a long season . +If you do nt , it 's all right . +But I did nt get it all out . +They are New York at its best . +This is a business , but it 's not a business . +It should do so . +You have more time . +We do nt know where it 's all going to go . + I do nt make as much money as you think , he said . + It 's a game you want to play well in , he said . + What did you do with the money ? +She 's had four of them . +But they could not say when that might be . +No , they all said . + What do they think they can do now ? +What will you take back ? + There are times when I think , Should I work in the city ? + Which way are they going ? +And they will be good and right . + You have to make the best of it , she said . +They would nt do it with their money . +That is just not right . +Because it 's for the you you want to be . + People did nt like it . + Every day I come , he said . +I can still make the case , though . + Just do nt take me to court . + So much is going on . + Then where are they ? + I do nt much like that . +He did that and more . +Both have been at it for more than a year . + It 's time to get to work . +It 's been a long season . +They are up to it . +It 's just go out there and be who you are . +The state says it did the best it could . + The State Department did nt know it . +It 's a long life . +Well , he can have his money . +To me , they did . +But there 's more . + But , last night , he did . +They do what they have to do . +We are a team here . + That 's business , he said . +It might be our season . +But I want to go back . + That I can not do . + You want to play with the best . + She said we all have to make our own way . +The Government should too . + No place like home . +I had to get back to that . +What to do with them ? +After or before work ? +That 's so what . + It 's never over with . +And how long will it take ? +What if each team were to get three or four million ? +Who does he think he is , and who does he think we are ? + Or is it ? + You do nt like me ? +In a public place ? +I did nt want to see it all . +Life is not over . +I do nt think most people do . + We did nt think they would all come out . + That I will now do . +There were too many , she said . + That was good . + But she does nt have to be . +Was all this about me ? +And she did and I was and it did and I did . +It 's just there every day . +His police would do that , he said . + If you think you are nt going to make it , you are nt going to make it , he said . + And if it was nt , then I would nt go over . +What in the world was this ? + And he was nt . + There is no way out of this . + She said , I can . + How much does the president make ? +You have to make a there there . +He is here in so many of you . +It 's not so much what he says as how he says it . +And it is nt like that at all . + He called me first , he said . + Two Years or Three ? + I know , I know . + First , they did nt want us , then they did want us , then they did nt know what to do with us . +This week it is . + That 's old school , he said . +We have to come and play the game . + He was there for business . + Did these people come to see you ? +There was nt much work . +It is not for me to say . +I will put him in school . + We do nt want to get any more of this . + Well , this is what it 's all about . + He 's been around a long time . +Very , very few . + You never know what he 's going to do . +Now go out and do it . +We do nt want them around . + What do nt we know ? +You want a little more . +We are all women . +I have nt been back since . +There it is , right there . + What would I say to him now ? +Two more days off . + They called , did nt they ? +They just were nt going down . +I work at home . +Should I be good ? +We are all united . +But he was not one of them . +I had no place to go . + It 's been going on and on , one case after another , she said . +That 's what our team is all about . +What if they show up and do nt like what we have ? + Like the music here ? +He did not do that last night . +I said : Me ? +And I did nt want to be here . + Every day is the same . +How did he do it ? + First there was one , then three , then four . + And they did nt have much more . +I make a left ? + I think we can be very good at it . +That is what this game is . +Is it our school day ? + It 's going to take them some time . +And that was before yesterday . + And then he never does . +But he says he is who he is . +It may as well . +There is a way . + I do nt know what you want to see , she said . +Like they know what we going through . +You had to do it . + It just might be . + But he has never been that . +Do as I say , not as I do . +But how do you go about it ? +How good is his program ? + I said , More . + Which was all right with me . +And we have that . +I know I did my best while they were here . +Is it going to be you ? +What does she want next ? +And what did they do ? + I do nt know how high I can go , she said . +There were no police in here . + That have to do with me ? +But we do nt have that . +What 's good ? +ANOTHER night , another show . +So was No Way Out . +HIM : No , I know . + And it did . + It 's as if I left the day before , he said . + You have to get back up . +It should be here by now . +This was the end of the world . +I can put it another way . +I want to know more about it . + No , less , I would say . +Does he go off ? + That 's the way he was . + It was because of his play . +This is nt it . + You could do two million , he says . +It 's still like yesterday . +But we have a long way to go . +Two percent were not . +A : -- and women . +Did nt have to . +It might not be over for him . +It 's your world . +So I had to play for the second team . +There was no team to play on . + But I was nt there , he said . +What had she found out ? +They do nt like me . + This is one of several we have had , he said . + This is not what a president should do . + We did nt show up , he said . + I never did . +The When was yesterday . +There 's just no place for her to go . + Even if it 's just one more , he said . + And by the way , how did you know that I would be here ? +They have to take place where they are . + I think they are going to take a long time to work out . + You can take that any way you want . +Where would she go ? +It 's like that every week . +It 's the right take on life . +They know they are good . +Money , too , was part of it . +People know to go there . +You are no good . + No way , she said last week . +Because she could nt . +And no on and no on and no on . + At long last the day has come . +There were no officials . +No , he is not . + Some people do say no , she said . + I just do what I want . + Four , three , two , one . +It could be for a season . +Your time will come . + But this is not so . + She should nt be . +That 's how people are . + You have to see where you want to go . +I think I can do it this season . +But he would nt be where he is today . +And as a man of the old school , they were not his way . +But that 's no good . +They are all white . +The man does nt know me . +They do nt do that now . +We will have to do more . +You want your house . +I do nt want it to be like that . +He was good at that , too . + Me , he said . +There 's just no place to put it . +That is all I want . + I left for the good of the company , he said . +Well , we did . + Where were we last week ? + What 's that ? +Which I did this year . + I can still do it . + Not many people are going back home , he said . + We have to be with it , he said . +She did nt have to . + It 's all in me . +It will come back . + How will you get there ? +Three days ago , I could nt even do that . +I said I want to do this . + I said , Where are the children ? +The police found no one . +That 's for my children . + That may be part of it , he said . +You can come see me . + People did nt want to see me . + They do not . + You can not do for him . +I said , Now he 's going to get it . + We are all like a family here . +But I do nt know how much . +He has his own life . +I did nt want that . +And they go , they go . +It 's just a game . + And you do nt know which , he said . + Where did it all come from ? +You are out of it . +It 's just another day . + I own a house . +Then the world , for them , was the West . +He did nt last the season . + I do nt even know where that is . +He can be good . + The public has a right to know where it 's going . +And she to me . +You can go to court . +That 's where the people are , and that 's where you want to be . +He : Do nt do that . + How could you ? +Are you up for it ? +That 's all that I want to do . +Not all but some . +But is nt that what New York is every day ? + This is the game , he said . + It 's all down there . +HOW DID YOU DO IT ? + It 's his day , he said . + I do that in life . + That is nt the way it 's going to work . +I think I can play as long as I want to . +But there had been no war for her . + You know , man . +It was not found . +So what do you do in New York ? + At first I did nt know what it was . +Today it 's just the other way . + We could nt do that here . +What does she know ? + What day is today ? +But this is not over . +But now he is . + It 's where you are after four days . +That 's very general . +I said , Who ? +That is , it can be . +But even that did not work . +If you do well , you do well . +They are , she said , very much a part of her life . +For a time , as I did with the other two , I will not work . +That 's a city . +There were only three of them . + This is not the first , and not the last . + We know it . +He was one of them . +Where had he come from ? +But not too much more . + I did nt like it here at first . +They found him with her . + It 's a way of life , she said . + And they did . + It was nt them . +HE still does nt know what he had . +We do nt think that . + And so I did . + You do nt know where he is . +New York did this to me . + I did nt get them out the right way , he said . + And they do . +Then I was good , too . + When did people work ? + But I did nt get one . +So does the other one . +They do nt want to be on the court , he said . +He 's been here . + They like to see where you are going . +It 's never been that way . +They just do nt know me . +And there 's the money . +I still do nt like it . + That is not what we are in it for . +They would nt take me . +We did nt say money . +That 's where I do my best work . +But I think I can get back to what I was before . + You want to get in ? +You get high the next day . + THIS is so . + People come here and want to work on their own , she said . + You have to work with that . + We do what we can . +This is one of them . +You did what you had to do . +Each year , more come . + It 's way more than just going to school here , he said . +We were a team . + I do nt have one , he said . +So it 's not just money . +But he will not . +I do nt think so at all . +But that 's not what they are here for . +Do you like what you do ? + I want to have more children , it 's a very big part of my life . +For the second time . + It was nt a good way . +Even with your own company ? +He did nt even have to be there . + And he said , Was there ? +It would not say where . +Now it 's my place . +But it would come . +She called me the next night . + It 's only one day , he said then . + We just did nt make it . + I was part of the group , he said . +Because he 's not white ? +His next one could be . + It 's over ? +And what about the general public ? + But I think this was the first case . +It has not been made public . +I do nt think it does that . + I do nt go in it , she said . + That 's him . + Then we get them and we do nt make them . +There have never been more than three . +It is high school , after all . +I do nt know those people . + And he said : I do nt have the time . + I do nt think being first is being best , he said . +Then there is this . + I do nt know what it is , she said . + It 's his way of life . +And we have all four . +We should get that off . + Some are going up and some are going down , he said . +And I was good at it . + I did nt want it to end . + These are people who want to come here . +For the old people . + They are going to have a big time . +And the business since ? +The season could be over . +But that may not last . +They made money at it , too . +Who was nt on it ? + I can do that , he said . +So were her children . + It would never work , she says . + They are all big , he said . + Who 's up next ? + Now it is home . + I do nt have a home . +You do nt want to get out there . +It could be next year . + Do you see it ? +There 's no place for it now . + But what do I know ? +And we want to get back at it . +He 's been right . + What do they want here ? +And in a way , he does . + Two in a day ? + And they get on each other . +When I get home , they are off to work . +And it will be old . +Right now , there is no such law . +I know what I have been through . +I had no life . + It 's been a good year , he said . +I have nt been there , though . +And we are on our way . + When I found out this is what I had to do , this is what I did , she said . +We do nt have . +I was on my back . +Who 's he going to be today ? + You did nt have it , I said . +You know you can do it . +But what if it did nt ? + We have work to do here . + Where will we use them ? +Where do I get it ? +There is one more game . + That 's what this is . + You going to be all right in there ? +What day of the week ? +That 's the best part . + It would take two days . +I did nt get it , though . +That 's how they get here . + But those days are over , he said . +But that 's just for other people . +I want to have my own business . +They did nt know their music would last . +We do nt have that now . +You may even still have one . +That 's the way I want it . +That does it for me . + You do nt have to play . +What we do , I do nt know . +Who 's it to ? +But do you want to ? + I said no , that 's too much . +Well , that 's what I did . +And she was part of a family . +Go way , way back . +I just do nt know if I want to do it to her . +But it 's also a good team . + I would never say that . +Children were not a part of their world . + For today , this is how we get by . + All I do up here is work , he said . +Now we would know . +But was that all there was to him ? +If it was nt for you , I would nt be here . + He was a good man to us . +Then there is the work of A . + Not in my office . +You want to show off . + How good are we ? + Can I take it back ? + I like the company of women , he said . +But he was all they had . +Show me the money . + This is it , she said . + All right , he says . +This time around is the last time around . +I just do nt think this is right . + I did not have one . +I did nt play any more after that . +Should I take it all off ? +With me , that 's the case . +And I think they are . +No , no , not in this country . + You should know it . +I do nt want to play good . +We are one big family . +But after a while , he left . +And it does nt have an end to it . +That 's this week . + That 's what you do for family . +They do nt want him there . +But that did nt make it in . + I think I will make out well , he said . + What do we think ? + People want to see their home . + He said that was not what he said . +He would make one like it during the game . +It is five years old , not four . +And not a very good one . + I do nt know what it has to do with . +I like good music . +This is one way to do it . +This has been going on for a year , though . + And I said , This is it . + You know these people . +You would nt think it would work . + What made you go in the first place ? + If not , you are not . +Not this , not that . +Some people get in , some do nt . + Every day , he said . +But that 's the way this game is . + There may be more . +Play them all and see where we end up . +Do nt you know this is me ? +Where would people go ? +May I see it ? + And so from that day on they would say . + All I want to do is play as much as I can . + This is the best one , he said . + The city is like that . + How old does she have to be ? + But it 's not about me , it 's about the team , he said . +So what will we do now ? +Then , war would be just . +What did we get ? +And that 's what you have to work to . +He made it so . +And then made it work . +But I had to play . + This was set before then . +It 's not going to end this way . +These all were the same to me . +What are we to make of him ? + It could be a little of each . +This is all he has to do . + I like to be here , he said . +It 's not what we do . + They do nt have to know . +What is new here ? +And what is he up to now ? +There was nt a one . +It has to go to market . + New York City has had this program for two years , he said . +And that 's only for next year . + But where are you going to put it ? +Can I have it ? + But then to have this ? +Time out for war . +This next one 's going out . +Like it or not , he has been President for the last four years . + Well , I said , what about you ? + I think that would be a good place for me to go . +What has come over me ? +This is not that time or that way . +You want to know more , though . +It was very old . +Work is good , but it will end . + It 's me , all me . + I going to make it , he said . + I want it to be my house . +We did it because we could . +They just are what they are . + These companies are not going out of business . + Who can he come up with ? + People can do business with her , and in the end , that is what it is all about . +Who do you want to be ? + But you know , he said , it 's New York . + It has nt been found . +So where did they go ? +One : There are more of them . + Where are the children ? +We are not where we want to be . + How could you ? +What can a man do ? +Few people are on the street . +They take it to go to high school . + Without him it would nt be here . + He said he just did nt want to go to school . + I did nt know who he was . +If this show does nt make it , what will ? + If so , it has been a long day . +Now it 's time to get back to work . +It 's there , Mr. President . +And they are right to do it . +In his case never is a long time . +Here 's one way to think about it . +Then , I did nt have time . +He was in his war now . +Still , a law is a law . + And I could nt say , When you go . +I was not one of them . + A little , he said . +We might like it . + So I will have to get to know it . + I do nt even know how you make it . + And where does it end ? +Just how high is high end ? + I was nt the one that made it public . +A year ago that was right . +It is nt a right . +And there it is , all off . +Not just the team . + I think about them every day . +That was some year . +Just because I could . + She did nt know what to do . +I said : That 's it . +I did nt want to make the second out . +Is it going to be two more ? +Because of the money . + It is still that today , but it is more . +What are the best ? + There was one place left . + I do nt think you can get there from here . +Then you put it to use . +It 's what you can do for your country . +If you do nt want to do that , you should get out . +You know you are going to make it . +But there is nt any . +How is this going to work ? +What is it that we want to see ? + Do you want to think about it ? + Not in New York City . + We have a long way to go , he said . +Where do you come down on that ? + What are we going to do with it ? +I can never use them . + That 's what I do first . +He did that , he said , for the team . + And I think people take to that . + And what is the way to do that ? + Can I do this ? +You go in as a team and you go out as a team . +We go the other way . +There are not many of them . +First place is not the only place to be . +If not the best , he 's right there . + She has only two children . +That will take time . + It 's a big city , she said . +They are that , but also more than that . +West , as well . +I do nt think they will . +Now , what do we do ? +He may be white . +One said he might come , the next one said he would come . + We are against the war . + What did it say ? + I do nt see how they can do this . + These and more . +What would it be this time ? +There can be both . +We did nt know how much . +What do you work on ? +In New York , many do not . +What does he do ? +He was there , but he was nt . +And I do , too . +Would I be any good at it ? +They had many days . +Now we have this . +What then is going on here ? + It was nt , and it is nt . + It should nt . + Now , some of that is not good , but some of that is good , too . +But we all had the same time . +But is it a business ? + Just one of those days . +He was game to get up for second . + This is my world . +She said she had not . +If you do , you will have a good long life . +They say , What is that ? + This is a show . + Are the people not here , or have they not found out ? +That 's life around the world . +But they did nt work with each other . +I said , We have work to do . + A year is too long . + But I know that I can play . + But we like him , she said . +How long she does nt know . + We would nt know where to go and what to do . +People do nt know that . + I did nt play very well . + Well , it does nt work . +I can do it , but I do nt know if I want to . +I do nt know that it does much good . + This may be the last time , she said . +I still do nt know how he did that one . + And she said , Who ? +That 's the way it was put , not the other way . + When 's your show ? +You are right to do so . +And how did he know that ? +They are not like they used to be . +What do you know about this one ? +It is as it should be . +This was a good one . + It was not even a year . + We would want that . + But he says he did nt know about it . +How does that play out at work ? +That 's the big part . +He said , No way . +He found that he had come to the right man . + And he would nt say . +I just do nt think of it . +And do nt come back . +Just do the show . + It was her time at last . +He will make war on his own people . +No , I would nt have it any other way . + They think they have no place to go but down . +And they are all good . +They did nt make it . + You can still make it . + No , we do nt . + Who , I do nt know , he said . +You can see how much good it did . +Who 's it going be ? + They are here now . +And that 's not you . + Now we have one . + But this is not so in music . + But we do know this . +They just want to know what you want . +They make us what we are . +And this is one of those times . +We know what we have to do now . + I do them the way he did them . +Today , it has money , too . + You are going to what ? +And to know it , one should go to see . + Come on , come on , come on . + And that 's where we are going . +He just did nt have the money . + We still have to play well . +They have said this before . +We do not have it . +And there never was one . +The game was there for us and we did nt take it . + She said : No , do nt do it . +Not in any way . +Not too much , though . + They want it every night now , she said . + You are not you . +Without them , we would not be here . + How many days were we here ? +We will never have The End . +Where did they get to ? + I was there the first time , he said . + But they could all use new members . +I had to go back to work then - did nt I ? +That is a good one . +You do nt even have to make it . + Not your music -- you . +It is not only children . +The university says they are not . + It 's been going on so many years now . + I could nt work today , he said . +We have a good time with it . +Right now , we know where we are at . +It 's not just what they say . +There is what you do and what you do nt do . + He 's good at what he does , she said . +No one was there at that time , the police say . +But if so , what then ? +It will be a while . + People would come in to me and say , What 's going on ? +It 's not what I want to do . + No , no , not that one . + I did nt know we had that many people on our court , he said . + But what are we to do ? + Who are you here with ? +I have an office . +She had made the team . + I do nt play around with my work . +It 's up to them . +I still like them , but there 's too many of them . +He was nt the only one . +It 's the only way to be . + This is just not right . +So who is left ? +But that 's just me . + They all know each other . +It 's not what they did to us . +I do nt think the market would have been up as high as it was . + I did not do well my first two years , he said . +To them I say : No more . +They all want to go there . +You know if they are good or not . + It 's our right to be there , he said . + It should be one day on , one day off . + So what do you think ? +There might not be any more . + Without him , where would we be ? +That 's not the way I play . +It 's too big . +Will all of this play ? + How do you make it work ? + It was a time when I had to put my family first , he said . +Most of them are good . +You can get one now . + It just was nt him , she said . + It is a show that people will want to see every year . +And there is much to do . +This is not the case . +And they want to be president . +They only know if they like it . +He says there will be , has said for years there would be . +And do it all in about a week . +Game of the world . +He has five this year . +Who 's he with ? + It was us against them , she said . +I do nt come every day . +Then : You know what I think ? + I can not go up and down . +I know I did it . +The best in the state ? +She would want me to get back . + But what did you do ? + What time did you get in last night ? +I could do it . + He 's going to go . +I think they still could have found a way . +You just do it . + But we have the best women here . +It might not go over with some people . +IT was the last one . +I know that I have . +I could nt get up . + You like him also ? +Take Me Out to . +But many do nt . +They never did see the play . +That 's the most they can do . +I see it all over the place . + Come on , they say . + But you may never get there . +What do you do all day long ? + And after he made it . +It was nt there yesterday . + They know what they want . +So what is going on out there ? + They were out there with us for two days . +What did you do after the war ? +If that 's the case here , when do we get there ? +Get out of there . +But he could come back from that . + We are here . + I did nt know it . +But , he said , I had to do it . +And we may be right . +It 's what the court says is right . +But I also know how to play up here . + What does that say to our children ? + I did nt know that before I put it in . +Some days , all three work well . + It 's all about money now . +I have five children : So what are they ? +This is how we are . +I would nt say that . +But he is on his own now . +They are too old for this . +But have you been under it ? +He had been president . + I still say , I know what I did or did nt do . + And , Business is business . +Take back what I said before . +They are so me . +She said : Have you been up there ? +I said , What do you do ? +There will also be music . + It may as well be us . +And now , it is no more . +This , I like . +You do nt have to be what I want you to be . +Most of them , he said , were women and children . +What did it say ? +But I know more about him . +That 's where I want to be . +He 's on the other team . +You have to work with what you have . + I still think we were right , he said . + From that home , and that one , and that one . +But I do nt . + Not good for business . + There are nt many of those . +They said , you are not the president . + And I think that 's what we will do . +We are at home with it . + No one has said May I ? +At first I did not . +Some I like , some I do not . +I did that , right ? +But so be it : he 's off . +That is not my way . +What have I to do with you ? +We did it for us . +We did nt this time . +Be who you are . +I do nt know what I did before that . + But I said : No way . + So who do you play ? +This is not New York . +But the United States can do more . +I think that 's where we part company . +Want a day off ? +It is not the way it should be . +And how you make your way in the world . +I do nt think I can do it . + We do not know . +He was my world . + I did nt want to go home , he said . + Use it -- or do nt . +We think it best , for now , not to say just when . +The United States is not the team it was . +So I like it . + I would say five . +Now their children can have a night out too . + They were children like any other American children , he said . + Now , where you want to take that , I do nt know . +But I know what he had to work with . + It 's not the best way to go . +Some people just know how to have a good time . +You do nt just get there . +Is nt it all too much ? +No one was left . + That was not the case this time . + No , no , we will never do that , he said . +Now I can not . +We know the man . + And he said , No , too many people . +And we still do nt know when it will be over . +I was at that game . +Public 's Right to Know ? + It 's who made me . +I do nt know where he is now . + That 's their family , she said . +It is all business . +Will he do it ? + It 's all right there , she said . +Another was day work . + But it 's just not me . +And you go back to work . + Do I think about it ? +I own them all . +I did nt want to go that high . + He 's not at my place . +I think he does . +The game is up . + I say , No , no , no , no . +I know how to play her . + And I said , Good . +But she did use it . +That 's our game . +Do you have to be there ? +What should I say ? +Some people see it as very political . +Is there more to it ? +No one had any . +No , and so what . +Now you know about the money . +There 's no time off work . + It does no good . +If you do nt know what you are going to say , then do nt have it . +You did not see her go in or see her come out . +And I like to show other people that . +This is her country . +Did nt I do this before ? +But he might do it . +They may both be right . +And so , life is good . + It was good , he says , but it was nt that good . +I did nt like her very much . +There is much to get on about . +Among them , but not of them . +But was it too much ? +Some say they are too old . + There was nt any place to go . +And what did you do ? +So we come out and they can see what we are here for . +We just did nt get into it . +Like it or not , he is the man . + She did not . + It would be good for the city of New York and good for the game , he said . +But will there be a war ? +Many people still like to do it here . + And we are still here . + But we make do with what we have . + That is , people . +I just want to . + I say , Not much . + It 's up to the Government , he said . + It 's time to go , she says . + These people get it . +This is what life is all about . + See them , here they are , he said . +It 's about these two people . + We put children first . +You might have called me . + They would just play it over and over . +Too high , and too little . + There are so many . +I have nt , but I want to . + There 's no place in the game for that . +How did I get it ? +It 's not the same , though , as being there . +What 's he going to say ? + Since last year , I think , he said . + If it does nt , it would be good to know . + He was nt the man I know , she said . +I think it 's both . + They did nt know what to do , she said . + You know , he did nt have to do this . + You know , there was more to it before . +The team said he was day to day . +I said I would go to law school . + But that 's for another time . +Then , go on about your business . +You see them , they see you . +Part of that was me . +Could nt put it down . +He 's right about this . + But who did they take ? + Under the old law , not as much as I would like . +Now , I think it 's an A . +Where are the children ? +It does nt work . +I think we did today . +But that 's the way it 's going for me . + But that did nt work , because people could nt see the back of it . + Most of the people in the Government do nt want it . +We do nt get much of that . +There was more to say , but she could nt go on . + He said , she said . +It was nt for me . +It was nt just a day , though . +But he would be more . +That was her life . + You never get over it . + That there is good in all . +Does she not know that two can play that game ? +In the first or is it the last ? +And it still does , he said . + I had a good time that night . +Get it all out there . +As if I did nt have to think about it . + We have one week . + Now , it 's time to go back to the family business . + They all had to have one . + This is business . +But his time has come . +There has nt been time . +I do nt see what one has to do with the other . + People do think that , do nt they ? +Now very few do . + Come , come , he said . +Our team 's good , their team 's good . +But you can see it very well in what 's here , too . + But I would like to work here . +There has never been a show like this . + Are they still here ? +They may even be right . +It had been there so long . +But there 's not much new here . + WHERE $ MY MONEY ? +It 's her home . + They do nt want to know you after that . +And which one is best ? + It just is nt there . +We never see them after . +It will be long . +If he did nt work , he did nt get them . +How did you go about it ? +I think they are a good way to do it . +Two years ago , I did nt have that . +After that , you are on your own . +He should get up and go . + People all over the world know about him . + I do nt want to think about it , he said . +But a home was not just a home . +He said it would take time . +That should say it all . +If you have to say it , say it . +But what would he want ? + He has four children . +But in one day ? + Where there 's a will there 's a way . + You could see more of that , he said . + That could be the game , he said . + What do you get for your money ? +It was a very good year for me too . +But he does nt see that . + I do nt think you have that right now . +Back to the show . +How would we know what was going on ? +We know how to do it . + If I did , I would nt be here . +But how about Mr. or Ms. Right ? +So I could nt say no . +Is it too old ? + But I do nt know how it will work out . + We were like family , he said . + But that 's the way the law is . + Who is going to be next ? +Most of the time , he did nt take any money for it . +When she did this I do not know . +She said : Who do you think you are ? +But I had to do it to get back here . +I think we go back . + Now you see it , now you do nt . + But there 's only one New York City . + So , what did you do ? + People do nt have money , she said . +There are no little people . +There is not going to be a going back . +This was our home . +And she might just do that . +Where have you come from ? + He had had it . +This will not go through . + The man has had it . +And that 's what all the work that 's going on now is about , and it 's going on all through the show . +And that he did . +It was the president of the United States . +If he does nt , they are right where they were last year . + That day , no one did . +We know about the Second World War . +A few years ago he would have put in two , he said . +No , I did nt know . +But , if not , then what is it ? + And now I can . +I think only of that . +But where do I go ? + And one day I think he will . + It 's who he is . +But this is not about me . + I want to get back , put it that way . +Now , where will she go from there ? +But which would it be ? + I know most of them now . +You know you have it . + They are up there . + All of us were . +And white people did nt do that . +It was a federal law , not a state law . +We know they are there . + We all use them . + Do what you like , he said . + He said I was part of the family . +This place has just been a big part of me . + So how 's this go , man ? + No , we were nt . +They know what they want out of it . +Best here to know what you want . +I did , though . +MAN : No , no . + I think we did that . + Where was the other man while he did this ? + You are all over him . +The officials were right . +Each has one team now . +I think : This is it . +It 's not going to come to you . + I work week to week , he said . +That does nt play into our game . +There was one more to come -- for her . +Or only three days ? +But they know what 's going on . + We do nt have to , he said . +It was one of many on the day . +But it 's not for long . +We are the federal government . + It was never , Will you go out with me ? +And she was on her way . +Right now , it 's just up to us . + He is here all around . +They are a good team . + She did nt have it today . +More and more , that may not be the case . +Play of the game . +I did nt think I could get a good time . +So I called the police . + It 's the way the game is set up . +And then what did you do ? +You are going to have to show that you can do that . +But I did nt last very long there . +This is his country . +You have work to do . +What might he say now ? +And he would nt . +He did nt put an end to you . +It was just what you did . +We are just going to take it as we have been . + Good to know . + You see how he would work it ? +He has two more years to think it over . + They are people just like us , she said . + How can you do this to us ? + She 's new , is all she said . +He just may be around for a while . +I do nt long for the old days . +They never called back . +But who are they and what are they ? +You have them , and we did today . +And now it 's over . + I still have a house . + What do you make of all this ? +You just have to go on with your life . +The city would not be the same without them . +There has been more of the same since . +So , too , is he . + If only it could have been like this every night , he said . +It is just not the case . + There were some for and some against . +I do nt see it . +I like that game still . + It 's a good little team right now . + We did it all year . + Not as well as you , said the man . +And that is the way it should be . + They said , This is what we want . +No way , he said . +Does the Government Know ? + So I do nt know if it is or not . +There are too many of them for that . + I could get used to it , he said . +And that was one of them . + I said I had two . +This is the West . + But we are family here . +What do we have here ? +She never did it right . +You are not who you were before at all . + But the women are all for me . + But can we ? +This game has it . + If I do , take me out . + And he does it all . +But there is so much more . +No money in the house . +I did nt think about it , even after the season . +We are going to this place . +You only have one that 's here right now . + Where do you do the play ? +They do nt have the time to do that . +He did nt do it this way . + We can get them into it . +Does he think he 's going to take us on ? +But some do nt . + I think he might get time . + He said , What can we do for you ? + You are not in on every play . +It was my first house . + But this is not the case . + Any time at all . +She 's been back three times since . +But there 's more to do . +But we do have one game to play . +Who 's to know ? + Do you like him ? +Now there are nt many . +They are in play . + He did nt have to come . +But if they do , they have to go when they have to go . +What does it take to be the Man ? + But he does nt do it . +She has no money , she says . + He does nt know who these people are , he said . +But it was time . + I did nt back off . + Over and over . +But that 's not how I see it . + There is still time , but not much . +They may take several during the year . +Well , no , much of the time it just is nt . +We do like it , very much . + But it 's not what people think it is . + How long have you had them ? +That had nt been the case . +Well , they did . + He says he has them . +And for much of the game , he had . +Then he was off . + Which was all of them . +And many still do nt . +It should not come to that . +It 's still your country . +The next day , he called her . +What does she like about it ? +You can say that all you want . +Then you know you are in New York City . +You are going to the White House . + It should be , but it 's not going to be . + I could nt work . + But what good is that ? + So is the program . +Where is that money going to come from ? + I did not know where I was going to do it , he said . + I think I can go a long way . + Has he just ? + We have to work to get out of it . +Most of us have been those children at some time or another . +We just did nt have it . +What do they get out of this ? +So , this is it . +And I said , What 's that ? + If there is any way , we will do it , he said . +I can do this . + I take what I can get . +Last year we made it , this year we did nt . + Three times a year is about the most I could do , he said . +Now we have no other way . +It still has a long way to go . +And how was he ? +And she may not have much time . + Was it a good way to do this ? +It will come back , I know . +Get the second out . +They are so little . + I think so because we have a good team . + I never go out of the office . + But now it 's like , Who can make the most money ? + They are just that way . +And what about us ? +And I did nt want him to . +What is this man up to ? + And now they are . +People do not work that way . +Did I say show ? +If not two or three . + He does it all the time , he said . + I did nt want to come out . +Is it the Federal Government ? + I said , Where were they going ? +As is the world . +They have right of way even if they do nt have right of way . + Life will never be the same for you . +But in a way it was . + This is a war , he said . +But what 's it like to be big ? + I would have to get back to you on that , she said . + Want to be in the show ? +You see , that 's very American . +How are you going to work it out ? +There 's less and less work . + You just could nt make it any other way , he said . +It 's what the people want . +They all do nt now . + There 's just no money to take . +This is our own house . +Out of this house - out of this country . +He 's been in five . +I have made it for another year . + I do nt think that 's for me . +That 's not who we are . +After all , this is their country , their life . +It has to do with who we want to show the world we are . +Where would we be ? + He 's a man of big government , Mr. From said . + I do nt do this every day . +I go to work . + There is no way I could do business . + You never know , he said . +They would not want to see me do both . + Is that it ? +But what can we say ? +We would not back off . +What they think , they say . + It will work all night . + The music was going . +I did it the first game . + What to Do ? +Last year , it was less than one percent . +You are still with us . + What do nt I like ? +So it was all set . +I just did nt know what it was at the time . + They are like family . + I was like , I work here . +People would not want to see it every week . + And what do they use them for ? + There 's too many . + I just do nt like what 's going on . + That would be all of it . + We know all the children , he said . +Then it was on to New York . + That 's our business , he said . +And you still have to do this . + We see him when we go to school , after school and when we go home at night . +But how can they ? +I know what white people think of us . + I like being around people I know . +You want to know : What 's going on out there ? +We did nt know that . +The we is you and me . + All they have left is their house . + But life is like that . +Did nt know when to get in . +They are a good group of people . + So what did you think of it ? + We do nt think that they are out of the country . + I said , What for ? +I want to see him play . +What should we do about them ? + These were not business people , he said . +It was up and down , up and down . +I did nt make it back . +But to what end ? + Now they are all made the way we want them . + Just do what you do . +She said no because she had to work . +There was no way to get out of New York . + At that time , I did nt know how I was going to get him back in . + She did nt know what was going on . +He will work this out in the family . + Well , he has nt . +But against the A 's , three is too much . +And I think that is where we are right now . +He said they were nt . +But life has to go on . +What would he have us do ? +But it was not used today . +People say , It 's all over . +And that 's still not all . + It 's just that way . + It 's the will . +But what if it is nt ? + I do nt want him . +And what were they ? + Business is good . +Some companies have both . + Who is it ? +And he 's not that way . +I could nt think of them being over there and me being here . +They do nt even have to get up . + This was going to be it . + This is not so . +When did he know it ? +He said he did nt think they did . + No he is nt . + This is how I work . + Did she work all these years for this ? +But then , he is used to that . + It 's in us . +But then , so do we . +What way can I do that ? + They could do it all . + The war is not over . +And it 's not even May . +That 's just the way they are . +People know what I can do . + It 's the market , he said . + I do nt like to go back there . +If you do nt then you will go home . + So you take it for what it is . + It had after all been like that . +There is also little new in them . + Was there any other place he could have come ? +That 's a good show . + He was too much his own man . + Now , just -- what ? +The man can play . +You do nt see that much . +So that 's what I do . +This is not a court . +You just want to do too much . +Like the Old West in the United States . +Now the children want to come back . + If I said up , she said down . + How long is it going to take ? +I just want one . + There was so little going on . +And the best part about them ? +Few of us would be any good at it , but so what ? +Do as I say , not as I did . +This is what we are going to do this year . + She did it for us . +No , make that the end of the season . +So what , you may say . +And that 's where we are . +I still think that I was right . + I do nt know who it was , but it was nt us . +But not by war . + They do nt like that . + That is not the business we are in . + Is there a there there ? +It may be the best of all . + But now I do . +I think that 's going to take some time . +And I will make it . + He does it every year . + No , it is nt . +Will they be made up ? + Who are you going to take to court ? +No one should have been . + There and back , right ? + I do nt know about all of them , but some of them . +That 's the good part . +It 's a man 's house . +So on those days , people come in during the day . +So is the Government . + We did nt want to go through all that . +Our children go to public school . +Now I do nt know what to think . +Where will it end ? +I just think there 's still work to do . + This , he said , is my life in New York . + But if not , they just do nt see them . +But it 's home . +Up , down , up , down . +But does he do it ? + These people do nt know which end is up . + I was there for five days , he said . +He said he was going home for the day . +I just know that 's how it is . + You said that , he said . + So that was it . +There is not a little of it , though . + What was is what will be . +It 's not all music . +Most of us do not . +Go back your country . +He 's big business . +She has been there before . +Well , what is next ? +And that is the way people here like it . + It is a long time . +But it is nt new . + Even like this , I will go back . +It 's so much . +For most of the game , they were in the right place at the right time . + It 's a case , he said . + There are several of us here , not just me , he said . +We work for that . + And then we found out it was the end of the war . + What if I want to go back ? + So what should I do ? + Now my place is here . + This has to come out , he said . +These are not all the same . +And now how do we get out ? + As much as I can show for them . + They say , Only in New York . +What was this about ? +There 's so much to do up here . +We are going to do it . + I would think . +It 's made up . +You can not use it . +It 's time to go home . + She had a good home . +And so on , country by country . +Not at my market . + And that is never good . +You do nt think about it at the time . +The world will go on . + I think they will take their money out . +This is what we do to get high . + I do nt know what to do next . +They said , We do nt have any work . +I want to see my family very much . +And that 's the way it is . + I did nt . + He said , What 's it going to be like ? +Would you like to be president ? +It 's going on too long . +But he did play one year in high school . +Were they every day ? +We have a house in the country . +And it may not be the last . + He said : I know you . +He does nt now . +Most people do nt know what work is , he says . + I did nt know who these people were . +This is a good man . +I did nt set out to go into business . + I do , too . + What I have are the people . +I think it would be a good game . +Now , she does both . + So what do we say ? + And I have more time . +That is still so today . +It is too much to say my life is over . + We want to know more . + That 's not for me . + I used to take it a day at a time . +I used to be in that business . +They could nt go to school . +You know who you see ? +It 's just like us . +The team has to see it . +We think it 's a big market . + So the will and the money is there , he said . +She is not good . +But that 's not what it is . + Is he going to be there ? + It 's not work . + I know she made it out , he said . +This was the right year . +I just want to go home . +It 's a public company . + What are we going to do with them ? +I work every day . +Now what do I do with it ? +It is , all the time . +But I do it because that 's the way I play best . +He 's into his work . + But it is very American to make money . +But it has nt . +The work will be part of the program . +Both of us at her place . +Would any of this work ? +It 's this year . +I do nt want to get into that . +We are the same world now . +But I was out of season . +He 's all business . +He does nt show that at all . +So much for Us . + But it 's the best we can do with the time and money we have . +Our members do nt like that . +It 's like the end of the world . +Would it be the same ? + And I did . +It 's just the way he is . +A very big one . +One day it does nt . +It was a good night . +You should come to New York . +She was good there . +What do you think is the - A . +I get the most I can . +And so are we all . +DO you get it now ? + I was nt made for it , she said . + I think just one . +Same place , same time . +The money people do nt know . +Well , we did that . + I was so good to them . + There 's so much money in it , she said . + Where should we go ? +We are on the way up after that . +Or the last time ? +You do nt know what to think or what to say . +These were people with all their life before them . +This is what you are going back to . + What can you do for these people ? +What is the best way to get there ? + It 's just a house . +I want to get through . + It 's company , she said . +And that 's not the end of it . +It never does , does it ? +And who said it first ? +They should have been . +That 's not what we do . + This is not school . + There was nt any case here . +I can not get to where I want to go . + That 's not what it 's all about . + I have to go back to high school for the last time I did this . +I did nt think it could be this big . +But for how long ? +I know what you can do . + What they do with that is up to them . +It has to be good every night . +Do it , do it . +WHAT is an American ? +These people were just like us . +Money is money , after all . +Where could that have come from ? + I want to know what 's going on in this country . +There was only one way to know . +He just does nt know what to do . + I did what I could , she said . +But his should not put you off . + This can be a home , he said . +So is his home . +Which to me is the same . +And I see it over and over . +And so - for how many times has it been this season ? +She did nt like no one . + But we are just going to put more people in there . +Here it was nt . +The night is the same . +You have to do what you think is right . +That is where we are today . +How did she do it ? +I would be all for it . +If you have to play , you have to play . +He will not think that way . + So I said no . + It 's not what people think , it 's what you do . +It did nt take long . + If she 's not going to do it , she 's not going to play . +This is like our second house . +Well , not the only one . +It was their night . + What would we come to think ? +Can you do that ? + Just how much do you know about him ? +He 's one of those people . +It will come against us . +Will he be up to it ? + Other than that , there 's not much to say . + She said she did nt have any family , and we said we would be her family . +I know what I could do . +This was one , and our Government did not do it . +Because it is there . + He was one of four children . +Where did they go ? +But could he have been ? + Well , what can I say , he said . +I was , too . +But I do nt think it 's just about women . +I can make it big . + But that 's how it 's been all year . +Not to us , not today . + I said : I know . +Just like that , the game was over . +Is there such a place in New York ? +The money was in the house , the family members said . +So what should the United States do ? + And they go , What ? + How could this be ? + And with that , he said he had to go . +I want to go home . +And in a way , he has nt . + I just did nt have it , he said . + I think right now , this is the best time in his life . +And he did nt have it . +Who will do it ? +They do nt know what to do with it . +They have to get back on their game . +I do nt think it 's so . + School , he said . +That 's what you are good at . +But get out of my way . + That 's a big part of our game . + It was nt home , she said . + Not when I put it there . +Now , his time has come . +They do nt know what to think . +But he does nt do that . +This was his time . + I would like that . +I do nt know what to say to them . +Very few do now . + In a year from now , we will still be here . + I just have nt had one . +Last night was the night . + It 's just the way this game is . + But that 's my business . +She was our world . + I do nt think I can . +And that 's what he did . +That about says it all . +You want to get going , you think ? + We know what we can do , he said . + We are up and down . + So I did it , he said . +But it does not last long . +I do all of that . +He had children with her . +We do some government . +It 's the same . +But that was all they did . +Can I do it ? + They have no money , he said . +And if so , to what ? + We do nt know who it is . + I said : What have we here ? + That 's us now . +There will be music , too . + I think I have . +But it has nt been going good for any of us . +How are they going to make it ? +You think this year is going to be the year . +You have to see it . + Who 's left ? + And people can -- have to be -- part of this . +They want to know now . +The game was over . +But it did not . +He had his way with us today . + What did he know , and when did he know it ? + I said : Me ? +To get them into the game . +There 's not much she can do about it . +There are many more to come . +She was one of those who left the country . + People in this city say he was our president . + Do you think it is all right ? +But we just have to go out there and do it . + But we do nt want that . + I think we all are , he said . + We are not here . +Who will take his place ? + She did just that . +And I do nt know that it 's in me . +It was all about him and not about the team . + That is , we both did . + So , what are we going to do today ? + I was there all the time . +We just do nt get it . +He has some company . +But I have to be here . +We just show them around . +And they never did . + I see what they say . +They think women are in the way . +It 's all about her . +What if he had said , You are no good ? +You not see them . +She could nt say . + People know what to do . + I come by to see the people who are here . +I just did nt know when . +There 's no good place to put them . +They go on for four days . + They did nt . +Now , that is not the case . +Here , they are all set up . +You have to do a little of this and a little of that . +But these are only a few . +And there was still more to him than that . + I called her that night . +Who would nt want to do that ? + Where were you ? + I did nt think I was going to get him all day . +That it can still do . +Only one made it . +She is out there all the time . + Have you found her ? +It 's not a year . + It 's good when my country people do well . + I do nt know what I did to him . +He did not have time . +He was also on his own . +And so would she . + He 's right there with me every night . +I said what I had to say at the time . +It was just good music . +When were they used ? +We have three children . +But all children have music in them . +They each said , I will . +It is New York City . +The day and the time . +We are going to take it one game . + I think it will . + You are a family . +They did nt know what they were in for . +It 's the same way , they just found a way to do it . +Some of you will , right ? + It 's a very good time for this play . +Four or more times ? + As it was here today . +Would I want The New York Times to say that ? +It 's what we do after this . + I know I work . +We are going to come out of this . + What is an American court ? + I think it 's all over . + We have people here all the time . +We did what we had to do . +How do they know this ? + That was last year . +Then he said , And I still do . +What can I do to get you there ? +But it 's not like I think about how many I have or how many I want . +We have another game next week . +This is not a game . +But I think I can do it . + They know all about me . + This is all right , man , he said . + I do nt see it that way . + I said , We will take them . +They want to do it . +What did he take me for ? + It was nt them ; it was him . +But first they have to get there . +You might as well make the best of it . +And I said I would . + I want every one of them to be the first . + This is it , she said . + We all know who she is . + It 's just one of many . +Well , that was just . +And the right people also did them . + I could have had more by now , he said . +So how do you think this will play out ? + Where was it ? + I see it every day . + Are you out of this ? +It 's good to get it out of the way . +And here 's what they do nt do . +And people still do . + But we are at war . +There is no money here . +I can go there . +That 's not good business . +Some made it out from that office . +Here 's what we are going to do about it . + I did nt even think about it , she said . +I did not get on well with the second . +This is how it should be . +I said , Do I have to do this all the time ? +It 's all there is . + What If They are Out There ? +Right after that - or was it at the same time ? +It just did nt work here . +This way , this way , this way . +Which it can not show . + It was nt our business . + You know what I think about ? +But not all the time . + And that 's not what I want . + It might even have been the President . +But that was them . +In a way , it still is . +This year there are four . +It is just not good . + He 's going to be that way . + It 's just what we do , he said . +So I did it . +Now you see four of them where there was one . +It was day when it should have been night . +The public has a right to know . +I know these people . + That 's what we do , he said . + It was like a war . + I did nt know what to make it into . +Some are children 's . + It was just one of those days , he said . +So how did they do it ? + All that is so , she said . +We never have been . + I said that team is good ; I like them . +Though she does it . + I do nt know what day it is . + People are for you , as well as against you . +I will be with the people . + But that 's not me , he said . + It 's too long . + And it 's good to be back . +The old people or the children ? +You have to be what they are not . +But it was work . +Come on now -- was it only for the money ? +It 's just not the way I play my best . +It was who you were . + You do nt see many of these . + There are nt many now , he said . +If only that was money , he said . +The public did not like them . +Who will see it ? +It was also a very good school . +They are not that way today . + It 's only a show . +But that might be next . + For us , it 's every night . +Does it get me going ? +There are just a few of us left . + Not any one has it . +It is that way each week . +And so on and so on and so on . +I can play every day . +Well , in a way we are . +Not that they do . +But , in the end , to what end ? +We do our part . +And so will you . +I think that 's what we are here to do . +How do you get through the day ? +If they want to get on me , they get on me . +I do nt think it 's good for us . + But that 's for another day . + We have a big family now , he said . +You know , it 's like , Is that all there is to it ? +One says , He 's right there with you . +He says it is all the same to him . +As long as it 's not on me . + I know I can take on more . +This , they say , is home . +And in a very big way . + Just because I could . +What does the school do ? +And this is big . +We are there now . +I did nt know where it was . + We had to be right the first time , he said . +I did nt want to end up like this . +But there 's still a long way to go . + I want to get out of here , he said . +You do nt see that now . + I do nt even think of them . + I know he can do it . +I could nt do that . +They have been through this many times before . +I still see it in her . +And I said , Well . + They may not make it . +That 's her life . + You just did , he said . + How did they do it ? + She 's back in a big way . +People from all over . + There 's only one way it can go . + But that 's not what I want to do . +They just say they want it and they get it . +We had it in us all the time . + Were nt you just here ? +And that 's what I want . + They have said to me , Do nt go there just because you can . + This can come out any way you want it to , he said . + I know I did nt want to be in there today . +I think he did it . +We can both work at home . +Every day , I think about that game . +One man did get it . + I want them both . +That will take a while . + These are all new , he said . + But not back to back like that . +I think it 's going to be here for some time . +Not just people , though . + And he was nt there . +I should have been there to make the play . +They had a day off . + It 's a good time for it , he said . + At the end of the day there will be more for all of us . + It has nt . +Not in our house they do nt . +Do you like music ? +She called the next day . +I do what they want me to do . + It 's what the game is all about . +I did nt even want to see him . +We are good people . + It 's a while back . + But the President has two years . +But there is now . +If you go down , what then ? +But I would nt have had it any other way . +And it 's going . +Who would want to be him ? + Just get out . +But there I was . + She said to me , Where are you ? +How she did this , I do nt know . +The police were never called . +That 's what they did yesterday . + Now , it 's going the other way . +I do nt know any other way to put it . + Just do nt take a long time to do it . +This , too , would end . + That may be it . + Right now , I do nt see him . + He said , When you see it , you are not going to like me . +Where are we over ? + They just do it . + People will say : Here it is . +And so it was yesterday . + But this is nt all about that . +For him to know . +I think I did . +It was just the best . +It 's like family . +So , too , was his law office . + Where can I get it ? +She 's one of our own . +But he did not play . + This will not end . + People would nt want to do that to me , he says . +There 's three of us , one of you . + I like you , he says . +But he would like to do more . + It 's not the case . +They just say they want this or that . + And never will be . +I do nt want to be like that . + You do nt know the country as well . +That is the play . +We do it for the money . +And did they know ? +And now it 's up to him . +There is still time . +They can use a day off . + It did nt make it , he said . +He did not come home . + It 's like , no . + Many , many , he said . + And that was it . + I do nt know how I did it , he said the other day . + Not a little of it . +One did nt know what to make of it . + It 's over before you know it . +What does he have not ? +And country is nt as country as it used to be . +Would you take any less for that ? + I did nt say I had to have another one . +Here 's what not to do . + I do nt know what it is with these people . +They are the same , too . +He does his work . + Just think like last year . +And the one after that . +Should he do it ? +But when does he play them and how ? + I did nt know about that , he said . +What will they come after next ? + That 's all you had to do . +It 's not that he 's not in . + She says no . + This is where we work . +We should play for each other . + I should think so , he said . +Do nt you work at such and such a place ? + They know what I think , he said . +But here we are and we did make it in . +Which is all right with me . + I do nt want too many people , he said . +You can , too . +I do nt want to be like her . + It would nt be the same without you . +Those were the best times . +What they did with them I do nt know . +He could be out for the season . +I could get there . +If there 's another war , you will not go there ? +This was , after all , his day . +And now , it 's a new game . +I should be all right . +So you might want to take your own . + They do nt have to like us , he said . +Did she like women ? +Not many work here . + A little while ago , said the man . +This will be the last time I see him play a game . +Which one is it ? + The next day , he did . +That 's life here in New York . +It is a way of life for him . + People want to know what 's going on , he said . + It 's time to go home , she said . + We know there are more . +But there were many who did . + It 's because he was from before , from then . +We never get to see this . +Who would be the home team ? + So he did not have that much to do with that . + Do nt get too high . + More people will be there . + They were just too good a team . +But that was over three days . +You know how I know ? +Where do they go from here ? + It was just too much for him . +He would not say what it was for . +He was out of it . +So , where might he go ? + Now , you know that 's not right . +Many still think so . +But it is not the law in every state . +There was also no one around . +This is what we know . +That is not so . +He 's been such a big part of what people do nt get to see . +But I know he 's good at it and that he has to do it . +Is this what people want ? +That says it right there . + They should not be here , she said . + But there are more people who should not be in it than who should be in it . + What 's That Going to Do ? +I do nt think it will . +But for a part ? +Who has the time ? +So he said , What do you want to be ? + There 's not too much time left . + I said , Me ? +And what was it ? + It 's there if you want it . +I now may have to do so . + Do you think I would say no ? + So I says , what do you want me to do ? +They are big business . + It was the only place that would take me . +Like what you see ? +That 's going to take some time . +I did nt know it was a business school . + I have nt even been to New York four times this year . +How can it be ? +It may still come to that . +She did nt know where she was . + But where are they ? +They are going to say , Where are you ? +Many women know just what they want . + You get used to it here , he said . +I think that would . +Or are they part of it ? +And I think they know that about me . +They have to be . + So we are going to make money , he said . +And every time he has said to me , no . +She said no way . + Because there are more of them . + What we want is a way out of it . +You would say , That could be us . +It was nt today . +It 's two years since you left us . +In What Is American Music ? +What will he do next ? +But still , I want them . + They take our best , she said . +And they have little to show for it . +Now it has another . +I want to be right here . +Where will it get the money ? +He did it because he was a man . +And know the place for the first time . +You know that it is New York . + Was nt I good ? +That 's how she would want to go -- if not for us . + It 's been there for years . +But now it 's over . +I do this music still in my own way . +But this is only for the time being . +We say as much as we can . + I should nt have said it when I said it . + We are going to have a national program . +No , he does nt know . +They go one or two . + Right now , he said . + And what 's this ? +It was all they had , and all they have . +How was it to have her children with her ? +They are a new world to me . +It should never have come to this . + That 's how you do it , he said . + You want him to come back , just for a season , and see what 's still here , she said . +Are nt I a little right ? +But what about next year , and the year after that ? +You just play until they like it . +But he may not have much time for that for a while . +Mr. White may well be right . + For how much of it ? +Would they have my back ? +It 's not the end of the world for him . +And we were right . + It 's a way of life . +It was more of what we did nt do than what they did . +He 's not going to like that . +It is not just part of life . +What would come next ? +The people who are with him now are a part of his family . +It might work for a few more days . + It 's good for them . + Is it on the way out ? + We are going to do this , he said . +I think you see more than that . + The Last Good Day . +You do nt get to do it . +How good could he be ? +It is what we do . +This is another one . + Used to be , he said . +He 's had his life . +That 's too little time to show what you can do . +Now back to work . +His family is here . +I just found that out . + I think we should see more of them and less of him . +So where is his house ? + This was just one of those days . + Where will you go ? + It 's just the two of us , he said . +A : That was nt it at all . +She did not make it . +Here is what I found . +But what 's not to like ? +He did it over and over . +That was his life . +There is so much more to do . +That 's the only time . +But it 's not the end of her world . +We never want war . + Not a day or two days , he said . +And it did , for a while . +I do not think . +And we did that , both of us . +They still do it very well . + In the end , who would nt do that ? +We do not have that right . + It is the way officials . + We have to work with them . +Life will do that . +He 's still there . +In the same year . +But we know that they are there . +Same here , if not more so . + All right , then . +They did nt even know what they were . +Well , I think we do . +They would like that . +I do nt know if she 's right on that one . +Do nt end up like me . +I said , You know what ? +This year , it did nt . +And when would that have been ; what day ? +We may never see another high school team like this . + That is what we have going for us . +But here they are not . +But that 's all . +They were a good group . +We do nt know where they are going to end up . + There 's no way I could do that at home , he said . +And will he that ? +What were they after ? + I do nt get him . + But music is still part of every day of his life . + I like being out of the house , he says . +But will it be New York 's ? + But that would be about it . +This one was not . +What can I do with that man . + I just want this to be over with . +But there is much more to this music . +I think John is the same way . +Get out , get out . +Where is all the money going ? +But you might see him . + Who can be against this program ? +And he said , What are you going to do about it ? + But it 's going to take time . + They are in New York ? + That 's how some people are . + And I do the same for them , she said . +The time has come for that . +Federal officials do nt see it that way . + He does nt have to be more than that . + Last year I did nt play . +What are you going to do next ? +And how will he get there ? +They are going to take me back to New York . + I have two now , she said . +But it was also more than that . + Come on in , he said . +Well , that said , what about your own case ? + I know I can . + He 's at one end . +Now I show up and it 's all over . +But business is up . +Or was that some other day ? + Where will it all end ? +That 's what we did today . + That 's the best way we can play right now . + There is no business . +I just do what I like now . + When you are good , you are good . + I do nt think we should have been there in the first place , he said . +And , she said , he was American . +I just had an off year . +Today , we have one . + There you go , she said . +We know it 's her . +She called him at work . +What 's it going to be ? + This is just one more . + That 's what I say . + They have what you want , she said . + I do nt know what it will be . +Would we still like it ? +I had to go through other people . +Well , here it is at last . + Put it that way . +Do you get it now ? + And I have to do it , he said . + I want to know what I can do , he said . +We are just us . +But it 's still good . + Any president should have . + Just about right . + What is it you want ? +This could be the year , though . +They will have had very little to do with it . + What more would you want ? +This season , though , you might . + The time off in that way is good . + Even more so now . +We are out there too much . + We are not world music . + It was going to come . + That 's my music . +Then I did what they did . + All the way up to the president . +Children are in school . +Did the family know when we were there ? +It 's just not like him . + It 's more like a family . +It 's such a big company . + Now it is . +But he has no other place to go . +That did not go over well . +A : Not at all . +Who will be on them ? +That 's what 's going on . + He should not do that . + I do nt know how you did it . + To us , he is much more than that . +But this is between us . +This one does not . +That would be new to me . +How did he do that season ? +But that 's the way he is . +Life is just like that . +For five years we did nt have a country . +So what should it be ? +But I do nt want that . + Do you have today 's New York Times ? + I found a family here , he said . + And , if so , where do I put it ? +Me : That 's good . +They just do nt get it . +They have not been to school . + This is just a family business here , and I have to do it , he said . +How can they not know ? +It 's your team . +He does nt want them . + I think that 's what put her over . + She did nt get the part . +I would nt have did them like that . + We do nt want to see them . + I said , Well , what do you think ? +Then it 's not the last place . +We are going to get money . +If they were nt , it 's going to come out . +But that is not what is going on . +Do I know how ? +He says he never will . + He will come back . +It 's good to be a part of it . + It 's very American , I think . + The people just want it to end , he said . +The first day , I did nt know if I was going to last . +Not just New York . + I think you have one time around , he said . +Some of them are nt good . +And that is that . + I just want to get home and see my family . + Who 's up there ? +I put in my time . +We have had them before . +Where 's the money to be made ? + They were not there . +Women did nt like it . + You are not going to do it all in one day . +But the family did . +But it 's up to us . +And we are still going to play . +It was a long way home . + We do nt have that now . + That 's what New York is for . + That does nt work too well . +And how long did it take him ? +To me , he did nt do too much . +But I like it . + I know what they are going to say . +We have to get in here . + Where does it come from ? + I know , I said . +And would nt he have a right to be ? +It could be any one of us . +I did nt say too much . +And how many of them can there be ? +I have not been back since . +After all , money is time . +But it was a big play . + And that director . + They called me and said I did nt have to come in , she said . +I think we are going to be all right . + It 's the same with us . +But he was in it for the music , not the money . + It 's just another day here , he said . + The people do nt want any more war . +If you go into a center 's home , he says , I do nt want to play center . +What I did was nt right . +That 's when we play our best . + This team can go a long way , he said . + But this is New York . +I want to just say what it was . +I just want to be me . + One , two , three , four , five , he said . +We are not from the same school . + Who does nt want to play with him ? +And so here she way . + I say it 's here , and this is one way you can use it . + She was , like , Can I see this today ? + It 's good for her , and I want the best for her . + If we can just show that all the people want to be one . + We are going to have at it , he said . +He did nt know how , so that was the end of it . + I would do every show with him . +What about the other two ? +Well , will he ? + He did nt have to do any of that , he said . + Well , I do nt see how you can make them . + You know how it is , she said . + But I do nt know how many times he can do that . + I do nt know , John . + I want to be with my family , he said . + But he said that you have to do what you have to do . +But by then , White might not have a team . +We are very good . +This is what we play . +How would I get them ? +So , how are you ? +So where will I go ? +But what does that have to do with children ? +You are the best . +And that 's just a few . +He does nt have to be here . + He did that on his own . +But this was not one of those days . + But I know we have the best . +They did not want to see this . + So what do you like ? +You should just get them out of there . +That 's what I was here for . +The company did that as well . +I say , Do nt say no to me . + He said , What do you think ? +There is only one New York . +It 's money , money , money . + We just take it one game at a time . +It is time to do so . + Still , they are all white . + You want me up here so you can see me ? +Still , so what ? +I see some people and I know they will not like it . +We can not have it all . +That 's what they used to do . +She did nt last long . + There Is No I in Team . +They want to get out on their own . + How the people come in , how they go out . +And they have every right to be . +He 's going to be very big there . +This is not about being big ; this is about being good . + I would nt ? + They will be here in two or three years . +I want people to get home . +And they did nt want to come home without it . +There is also much to think about . +All day long , too , and all year long . +And she was nt like that . +Not that she has much time . +The street had called him . + Just about every game . +What to do , what to do . +I know how much you make . +No one in his family had . + That 's the next one , he called out . +I did nt know where I was going to be a year from then . +Even when it 's not ? +But he did nt show up . +It was one , not two . + He can play , man . + All old , she said . + It is the same with us . + And she just did it . + That 's what it was like in the old days . + It 's a part . + It was very big and very old , he said the other day . + It does nt take much , she said . +How long have they been there ? +New York has said no way . +He was not a little man . +And where does that put me ? +And go on they have . +Well , are they ? +How come it has nt ? + I did nt make that public , but I did it . +What do women do now ? +Still , we do it . +He called and said he had to get back . +Get them while they last . +I do nt play . +And then I do nt go back for years . +Or a year after that . +It was just the way it was . +We may see that case made . +But they should have . +What do you put in it ? +There was much more . +There was another show every day . + She was the first director I had . +Have to take it one day at a time from here on out . + I can , she said . +On some days , they do three each . +And use them he did . +I just want it to go one way or the other . +I take what I can get . +But how could she ? + Two go out and more come in . +This is not the first time they have been out of work , and it will not be the last . +It was nt too good . +That 's where we want our money to go . + They should do very , very well . +And the week was still not over . + Is she with the city ? +There is no street like this in New York . +One would think it was over . +And he said , I do nt know . +My children and I are not going the same way . + I just do nt like him . +But , they are all over . + You are so good to me . +That you do nt know . +That 's all these people do . + It 's like another country . +And a good one . + We just have to take it week to week , game to game . +But who 's to say I could nt ? + That is not what we want . + The only time I do nt know where they are is when they are going to and from school . +If I get to do it my way , this is the way it 's going to go . +Game -- and season -- over . + He had a good game last game and the game before that . +She did nt do it . +But our season is going to go down to the last game . + No way , she says . + I would nt say that to The New York Times , he said . +How does he know about me ? + I was like , Where were you ? +And they may well be right . + What are you going to do ? +And I made my money . + It 's just been so long . + You do nt want this one , too ? + I know what it is . +Not him , and not us . +How much should it be ? +That is nt the case today . +Where was I to get the money ? +I do nt know how you do it . + That 's because How are you ? +And you are an American . + I would nt do that , she said . +That should come out of public money . + He is a man . +And he is the man . + It 's going to take me a little while . + I want it back . +This I could not do . +That was in part . +Now it 's just another business . +She was the second of four children . + What good is it ? +Or no money at all . + It will be all right . +They want their children to do as well as they did . +Do I think he 's over ? +Money had very little to do with it . +Last night it did . + So that way I have him with me . +Who will take over now ? +Make a well in the center . +But it did not work . + But there is one but . +She could not have had children . + I was , too . + They did nt come out and say it . +Some of the time it was me . +It should nt end here . +Now where do you think we want to go ? + They are all even . +He did not have one . +I like what I found . +But that was the A 's . + Does that make them right ? +It 's like a who 's on first ? + This program does all that and more . + If they do nt do it here , where are they going to do it ? +Where does the money come from ? + We are in first place , are nt we ? +His company , A . +How well did I know him ? +I do nt know how to make you see it . + We would nt know . +Will you do what they want you to do ? + They are used to that . + It 's not like it was last time . +And they go , You work there ? + You have business here ? + I would nt say that . +They did nt know how to do it . + We see it this way , she said . +And how could they ? + You just want to get them in and work with them for a year or two while they are here . +But I said no . +He just does it . + It was We will get back to you . + We did nt play well as a team . +But I do the best I know how . +Or will she think of me at all ? +That 's all that is . +What to do about this ? +And that 's in part how the law has been used . + Do nt be , I said . +And so she did . +They are right to do so . +He will play today . +But I do nt think that it was . + This time , what do we do ? +Could it come back ? +That 's what I could never get . +That 's not how you get in . + I said , Get out . +But that 's all she said . +Where will the government get money from ? +They are more about people and life . + As you can see , he did . + It 's like , How do you like this ? +When are these people going home ? + There was one take . +And now , for a year , no more . +They all say , What about me ? +He said he would get me some . +We are all the same . + But they do nt even know me . +You think that this is all I have to say . + I do nt know which one . +Many of us did . +I think they have a right to . +He is right about that . +We do nt like you . + He can have it . +I do nt know what was going on . +It 's up to them to do that . +It is nt like the old days when you had to be there . +But we will get there . +How much is this ? + It 's the place to be . + But I do it for people I know . +He did nt have much time here . + I want to go home , too . +It 's just a little part of what I do . +This time he could nt . +Is it only the money ? + I said , Now how do we get out ? +So we are not in it any more . + It 's a very , very big game , he said . + Not the other way . + I know there are many more out there . +He called her every day for a week . +But that 's the end of it . +Well , they could work on it . +You are going to see me there ? +And should other people take the money ? + He does nt have to play . +But who 's to say you are not ? + Now I have my own . + We said no . + And they did , and they do . +I do my best work in there . +We could nt do that five years ago . + There are nt any . +Or should be said . + You do what you have to do , he said . + I like being my own man , he said . +Not in her home state . +You know how old he was ? +I can get all that at home . + I never take it off . +But you do nt think about it , you just know about it . +But he 's going to get as much as he can . +They come back every day . +This , then , was no game . +But how would we make it through the night ? + He 's a big part of this team . +I like what I like and that 's it . +But he 's been good for us . + I did , too . +Here as there , the old was made new . +See if you can . + We were nt there . +He was not a man of business , and never would be . +I think they do nt even work . +But it can and should be . +There 's so much I can do . +You want us to do that also ? +Before , they did nt know . +For me , that 's what this year is all about . + I do nt know any people that good . + But here it is . +After all , some of these companies have been in business for several years . + It 's a war out there , he said . + I was like , What is this here ? + There might be more out there that we have to now work on , he said . + He 's on his own , he said . +They know what we can do now . +What more can you do , you know ? + I said , What will I do ? + I think they see us and they want to take us home , he said . +One day , they can each have a house of their own . +It 's the United States . + I think I just know what I want to do , and this is my life . +It 's like a second family . +It has been so long . +But not during a game . +But he said he is over that now . +I did nt want to come back . +He could make you . + And here we go . +We will come back . +And the year before that ? + I was one of the first to come in , she said . + I just want more time . + I just did nt want to get up if we had nt made that play . +I like where we are at . +He also did not play last night . + But you did nt . +What do they do ? +But that 's never going to work . +I just could nt take it . +On the Show : . +And we get after it . + It is a very new Government . +They do what they like . +Do they still want people like us ? +It is all very today . +We were in here . + Right after the game , he said . +I did nt say much . +Now it 's a street game . + They are so good . +I think that might be because he 's not in there every down . +Now there are three or four . +And they said , Who 's she ? + That 's the business . + It 's more about : What do they do next ? +But there are many more like him . + I did nt think I could do it , she said . +Well , I do nt know . +But the officials said they did not know how many might do so . +They had to , because of who we are . +Now the law is with them . +They come to me . + We are still in business . + It was because he did not want to know . + Is this what you want ? +And I still have that . + What 's good for one is good for the other . +And it would not work . +Even these were too much . + Because she had to go to work . +People like other people . + What do people do when they have time off ? + Any time of the year , day or night , he said . +Here , they are just right . +All will be in place , or on their way , by the end of the week , these officials said . +For a while it did . +And he called the police . + And do it they did . + I know this is not the team that we are going to have . +But what are we to do ? +So I have to go home and get it . + We could nt not do the show . +Do nt do that to people . +It was nt there long . +He says this four or five times . +But what could I do ? +It 's his company . +Many of them have . +They did not play that way . +Would he want me back ? + But we are not going to back down . +In that place , at that time . + This is not the case . + He 's going to be all right . + There 's no way to say , he said . + There was only so much of that that the city would take . +But it was good at it here . +One or the other or both . + On the house , he said . + But what are they going to do ? + I have no family , he said . +I made him two . +I take it case by case . +This will be their place . +But we take it for what it was . +How many people can you see in a day ? +How can I say more . +He was right , though . + I just said : You know what ? + But this is nt one of them . + But is that the case ? +It did not take place . +But they said we had to . + This is what we like . +Because they were here . + But if you want to use our money , you are going to have to do it the right way . +I think about that all the time . +One of them is still there . +She should see me now . + So you go there . +I could get used to that . + You just do what you have to do , she said . +He 's the next best . + But I do nt think . + We just do nt know what it 's going to be from . + That 's about it . + But we are not part of the team . +They know how to play the game . + All of them , he said . + Well , it 's over . + I do nt see him . + I just did nt like me . +Big money has come in here . + That 's just not so . +Is that what you do ? + Just do nt do it . +What do nt they like ? + I know they are there . + What Do You Get ? +Is it all too much ? +We have to be there . + There 's no way you can say who . +We are all like that . + Was there a season this year ? +You just get to be there , on and on . +With music , you get out what you put into it . +The first time , it was . +He 's just so good at what he does . +It 's a little then . +And if so , what are they ? + But you know , we come from New York City . +They know we are a family , she said . +That 's all you can do and I think we did that . +They are not like any other team . +We can make a little money that way . +It 's about us . +I was in my house . + So where you been ? +I do nt know any other way to do it . +That 's what we can do . + Well , we all were . + I do nt want any team to have that over us . +Are we going to ? +There were four , not five . + What Do You Want ? +He has more to say . +I only know of one . +They were all right . +Her time , that world , is over . +You are his people . + I want to make his day , he said . +That was the case . +It 's not what they would want . +So would much of the world . +So it could be you . +They could have had the money . + We could use more of it today . +Those had to be some of the best days . + But it will come back . +Take what is going on right now . +But right now , it 's all we can do . + It still does nt work . +Was it a good war ? +I think we have some of that . +Who will it be ? + What a way to go . + So I know where to go and where not to go . +No , it 's down . +We can play the game . +I did say that . +We are just not where we want to be . +That 's part of this . + We like it that way . +What have you found ? + She says , Like what ? +This is the way to go . +He could not come and that was that . + But they are not . +No war is a good war . + I do nt do that that much . +They do it or they do nt . + I would nt say one more than the other . +Well , she is . +It may well have been . +What of those who do ? +They are not going to do that . +There 's no music . +But after that , no . +I can not see him . + This is his team . +He has the game to do it . + It was man to man . +To me , that could be you . +For two years I did nt think it was going to work . +We just would nt go there . + I said , I think so , too . +But we do nt want to do that . + There 's so much I can do . +He could have been the President of the United States . +All I can do is my best . +But that 's just not that big . +But that 's the game . +Do We Have to Go Home ? +This is nt an old team . +But if you just said , Can we do it this way ? +I want to see how high I can go . +All that in -- what was it ? +Is nt that what show business is about ? +It was called War Is Not a Game . + This is about life . + I have my family , he said , but this is my family , too . +That was it , he said . + When it 's time to go , it 's time to go . +By then they were both in the country . + Is today your day off ? +This time , it just could nt go . + It 's just little old me , she said . +I had to have it . +When was the last time you could say that ? + What you want ? +But it 's not about the money . +And many more are said to be under way . + And that will last . +You should never have to work another day in your life . + What in the world could I do ? +But where could we go ? + Who is he ? +And what a week it was . +And it is the United States today . +I said to him , We are both from the same city . +They do it all the time . + They did not like his work . +But has it been good for the country ? +IT has come to this . +But what 's that ? + That , he said , I would not do . +The United States does not . +You just play the game . +But where did you get the money ? +This is the first off day . + There would have been no way . +And about the people you see and the people who see you . + Same Time Next Year ? + So that was good . +No one you would know . + No one said to the other , You are out . + We just do what we can do well . +We were right there . +They are the very first . +That 's all there was . + You know what it was over ? +He 's all right . +You do nt even want to . + I do think there are more this year than before . +It 's now , You are with us or not with us . +It just did nt go down for us . + And this is the next one . + One would know where I had to go . +No , no , no , she said . +Do we want in or out ? + They are in the game for a long time . + It 's not money . + People just did nt show up . +Every year since , it 's going down . +And this is one of them . + But there 's more . + I was just made to work . +On the other is the people . +I do it all . + And I said , I think you are right . +I did what I did . + I just had a long day . +Are nt they all ? + I never think about it , he said . +How do you see it now ? +It is the right one . +But she does nt . +And so on we go . +That is what we should do . +That was the first time in a long time . + Do I want to be out there ? + You do nt get people to do what they do nt want to do . +If you will do it , we will do it . + I should nt have been going . + I just should nt have said it . + There just is nt any money left , he said . +I think it could come back . + You go back in the next day . +There you have it . +This is what was . + It 's a little family . +It 's a way of life with them . + But she 's not going to know it . +All the new members . +But this time it 's people . +But all of that would come , would nt it ? +I was good at that . +They are not as good as they used to be . + There was so much work out there . + We are back in the family . +And then it does . + My music is good , she said . +We were on to each other , we used to say . +He is still a director of the company . + People had to get used to what it was . + It 's over now , though . +This is the music of our time . +Well , not right then . +We are not of the world . +One , two , three . +That 's all right . +He is day to day . +Should nt I get it ? +I do nt have to do all your work for you . + There was no going back , he said . + I do nt know what these people get out of it , he said . + The year 's over . +This is where I come from . +That may not take long . + What would I get out of it ? + And this is not the Government 's business . +But now they want to know . +What , you do nt ? +Her : You do ? + But you know , they are just people . + What does he do in the next four years ? + You see those people ? + And there just was nt any . + Not just because of this game . +I do nt know where it 's going to come from . +They also show it when they do nt like it . +You have one time out . +You know what is best for your country and family . + This is how you make the money . + I do nt like it , but what can you do ? + He was not political . +I know what I know . +They do nt know what to say . +What should she do with it ? +It is what is right . +I know you can show it . +I did nt want to think about it . +There 's no way to know . +From what I know , that 's not the case . +So what do I do if she 's not there ? + But I think they will do well here . +But we have not . + He did nt show . + They want to be there . + They all know me . +But where would she get the money ? +It was a very good year . +So what do we do ? + I do nt want that to be made public . +I had to see more . + I could nt do it without her . + I do nt think the public does . + People think you get it and get over it . +And people will do that . + No , I did nt like that . +My Who 's there ? + That 's their right , he said . + They all want to show off , said I . +But now school 's out . +One , he can play . +And more so now . +Not In Our House . +We were down three . + They did their work and they left , she said . +There has never been one like it . +Go for the money , he says . + New York is where the money is . + If you have to do it , you do it , she said . +She was nt what she used to be . +But he is not the first . + I can say I put an end to it . +Life is the game . +They are going to be there . +And it does work . + I just want to get it over with . + It was a war from the first day , he said , and it 's been a war every day since . +There may not be much in between . +You want to know what to do now . +There is no other place for them to go . +I did nt think he was going to come back . + These are Government people , she said . + I was like : You have ? +We think too much . +He may well be . + He does and he is . + But you know what I will do . + I do nt know what they used to do , he said . + In this case , I had to . +They would not do it . +I think so too . + I know him too well . +Is this The Year ? +I did nt come in . +He can do that , too . +I work all the time . + It was nt my day . + Or you did nt . +And he can do that . +But they still want that home . + It was nt just us three . + And she was like , What ? +For all I know , she does nt . +But as music director . +They are going home . + Are nt I right ? +It 's about people . +But first he has to get the money . + In that case , it will take two years . + We have found a way to do it . + He did nt say , Well , can I show you around ? + That time has come . + How 's your day ? +They were nt all the same . +They are nt now . +What was the center like ? +Here are some of them . +But I know I do nt want to have to go through all that in the off season . + I said , This is what I want to do . +And which way do we go now ? +I could nt say no . + But you have to go with your best . + When do I make as much as I did in two days ? +We have so much work still to do . + Take the White House , he said . + All of us want to know what 's going on . +But she is not . +For us , life would never be the same . + Then they said , We have a second one . +Two , or even one ? +I used to take her out . + We are here for the first time . +We know one another , and to me that 's what this business is about . + I did not like it . +What did she know ? +But there is only so much he can say . + We like these people , he said . +And there 's only one . +Then what can you do ? +Other people might not . +But it is today . +So will the world . +But I want to be a part of it . + It 's not like we are from around the world , we are all from one state . +A Home in New York . + Do nt you know who this is ? +So , we did nt . +This is where they all still come . +It 's what you did . +He had to go . +It 's been like this since . +It was just another day in New York City . + Who would do this to me ? +We can go up . + We do nt have time . +I know they are very good . +There 's never been this many there . + You know what you can do . + This is the only place he could do it , she said . + That 's the way she was . + No one should have to go through it . +At the time I did nt see this . + We think we can be just as good . + That is what I think of them . +What do you do that 's going to be like this ? + People here have been through so much . + And he does both very , very well . +But they are more than that . + No , he says , there is no one . + Just like that ? + It 's my country , he said . + People do nt know that . + But the time was nt right . +But it did nt have to . +Do nt say no . + I just want to make it out of here . +It 's down to one game . + There 's no there there , he said . + This has been going on for too long around here , she said . + I might , he said . +I was like , You want me ? +So what do you do now ? + Where are they going to go ? +What is the best way to do that ? +It was good for me to see . + Well he would , would nt he ? +We still have a long way to go . +They want you out . + They do nt have to be on their own . + I think of us as me . +But this was new . +We just have to take it one game a time . +No , it was not a good night for the home team . + We do nt know , she said . +It 's just my law . +We also have such a case . +Not that there was much to see . +I know we are . + They are going to take what they can get . +People say : I want this one . +I can still get up and go to work . + They did nt work out , he said . +Most states do not . + Now we can be one school . + But now , they would nt think to come here . +So much of my work was her . + I like to think so , she said . + People will get used to them . +Not so with me . +He did not take any money . + I know that , she says . +I was the first . + For you and me ? +But that 's not what we do here . + I do nt work out . +Next time , she said , she will . +Are you still with me ? +That should get the country going . +What to say after five years ? +If it is my last year , so be it . + Because I had to do it . +Do as I say ? +She is right about that , too . +Is she in there ? + Today was a big day . + There was not much I could do . +For which of us ? +He still has a season . +I can say that now . +I like being me . +Is this what it 's come to ? +I know where I want to be . +Or we would nt be here . +It was just us against them . +I can see that . + If he does nt get it , you might not be here long . + The way they work , it 's not that much money , she said . + If they do nt want to do it . +But from time to time , this is not the case . + People want to come home . +I do nt know them . +It is three out of five , not three out of four . +From the left and from the right . +Where would you like to be a year from now ? +They go back a long way . +I just do nt want to know about it . +Know what he had to do to get where he is . +And I had been . + Do nt do this . + They did nt say what they were for . +It did nt have to . + He did it very well . + This is a family night , he said . + No school , said another . +And their season is now . + I do nt think any of them made it . + She said , If you do nt like us , take us to court . + A little more to the right . + But we do our best . + There were too many people . + But that did nt work out . + How could you not go for it ? +You have to get over it . + How did you see it ? + This can be a way to do that . +I had to play it out . + Who said that we are not going to have a good season ? +But there was no one there . +Only one work could be called new . +You going to come home ? +We have to go get it . +We had to take part in that . +So if that is good will , so be it . +It 's his last one . +That 's the way it 's going right now . +Which one is the most . +That 's life in New York . +They are who we are . +He could see not just what , but where and even when . +It was nt one play . +You just never know when it 's going to end . +When we were here , this was life . +Well , not him . +It 's up to me . +She could nt have . + It 's high time , do nt you think ? +It 's like being in a war . +But they were not the same two . + That 's the law , he said . +But they were nt the police . + I know all this . + I know what 's been said . +But they are more than just a good time . + I think this is the year for me . +He is also just in time . + I do nt know who put it there , White said . +Now my own does nt want to go back to school . + It 's good for all of us . +Some people think the right time is now . + We have been through this before , she said . + You see the place ? +We would be in court . + You are not out there . +And this would have been right . +Is it still there ? +But it 's time to get over it . +I do nt want him to do it here at home . +I did nt like that , but he was . + What are they going to say to me ? +So who was right ? +But first , a little more about me . +And they should have more . + We just want to go home . +He 's just there . +It is very new for me . +Did nt do it . +But I did nt do it . +It 's the Last One for . + It was , Make this this way . + I think about it all the time , she said . + I would say : He 's not old . +Which may be good . + We have to work on that . +They make their own work . + Where 's the business over there ? +And that , more or less , is that . + Now , I do nt know . +The house is just not the same without you . +There were children there . +But this was not New York . +And who might that be ? +If that 's what I have to do , that 's what I have to do . +More than the money . +But this time , it was good . +Well , no , you do nt . + I want it to be as good a season as he could have . +Where might I see one ? + I did nt know if we were or not . +But what does this have to do with our own children ? +What is he now ? + You can take over . + Good , he said . + But there is a but . +And even when he 's there , he 's not there . +After all , no one has for years . + I want him to have a good life . +So , what 's it all about ? +I can take him . +Would I like him back next season ? + Where was I ? +I think it 's going to work . +We are the best . +Then , when the time is right , they get found . +I think there 's a way to get there . +We were of our own country and of our own time . + But never say never , she said . +Not at that money . +I know how you can be here , and , in a way , still there . +Some never make it back . +They are new at this . + I did nt want to come out , but I had to , he said . + Because I have nt . +He was also right . + All of that is in place now . + Out of the university . + What do we have to show for it ? +No , I think , it is the money . + You been out there ? +It 's in between . +And while you are at it , have a good day . + Can he do it ? +And they still are nt . + If they like music , know more about music . +That is a big if , though . +Not that there was all that much . +But he left it there . +When it is made by the State of New York . +But they did nt last . +We had to work it out . +So you just do it . + Who are these children ? +I will never go back to what I was . +I do nt know what this is . +We are women who have been there . +But which people , and how ? +But that 's only on the court . + I did nt . + It 's our music , he said . + It 's not over for us , he said . +But that was nt the only one . + But right now it 's not one of those times . + This is going to be his home . +Who would go see it ? + That 's what most of them have . +Just like back home . + It 's the center of the world and all that . +So it has been for years . + They were nt , he said . + They have a good team . +But I do nt know how . +That 's what we did back then . + This is so American , he said . +And we are down here . +When do you want me ? + It 's time to play the game . +But it is much less of one . +Is any of him the old ? +They were the best of the season . + Have people come and get us . +Still , business has been good . +How did it get here ? + Which way do I go ? + We use it for work . +Our new president has to , does nt he ? + But I never did . +What should I do with my life ? + What Are You Going to Do ? +Even if you are not part of it . +But they have their place . + I have , she said . + He 's as good as they come . + And I did nt . + That 's what we are here for , he said . +And then he did it . + How do I do that ? + How much money can we make ? +I think he 's the best in the world . +It is not about me . +What can she want ? +Was he out or in ? + These were the best years of my life . +That is not her way . + And new or old ? +How are we going to house them ? +Did I get it ? + I think that 's it , he said . +He 's the best , and I want to go up against him . + That 's how we found it . + That was when New York was New York , he said . + And he said : It will be used against you . +To show life as it is here . + I know that every night out is going to be a war , he said . + I do nt think I can go on today . + I do nt know how , but it is . +The end , right ? +But what of time ? +We would like our children to go to school here . +Would that be all right ? + But right now that 's all I can say . +I have nt found it here in the United States . +But not for your team . +I could not see . +So that is what I did . +I did nt want any of that . +As of right now , today , we are all still here . +The world is less without him . +So what 's it to be ? + I do nt know what we are going to do , he said . + It 's just time . +And if so , who are we at war against ? + It is just like another day off . + But it was too much . + I play music all the time . + I made him see it , she said . +In a way , you are . +And so little time . + They say , No , I want all three . +The company is now out of business . + I want to see an end to it . +You know where Or is ? +We want him to do it the next time , too . + And where would you be going ? +What will that be ? +Like them or not , these are the good old days here and now . + And now you have another one . + Did nt you know ? +I was never in it for the money . +But this year , he has to be used to it . + He said : There is a war . +They want more say . + It 's not much work , she said . + It 's not a war . + And it 's not going to be for a long time . + You just go on to the next one , he said . + This is a good place , he said . +This the country did . + We have some of that , too . + His life has not been the same since . +They do nt know what to do with us . +I did nt think they were going to do it . +There 's no in between with him . +This was not the case two years ago . +And they are good . +That 's what we would like . +What 's it all for ? +It 's just who they are right now . +And that is as it should be . +It 's where I come from . +That 's a war . + I did nt know it was him . + What can the Government do about people like me ? +It is the way out , but to what ? +What do we do about it ? +They have an office . +The next week he does . +Did it have to end like this ? +We can just be here . + Not you , he said . +At times you are up , at times down . + I did , and I will . + We do this all the time , she said . +Even at your place . +So , too , is American music . +This is not a war . + Which is what we did nt want at all . + But what about us ? +You do nt just get up there and do it . +Still , she did not like the school or the city . + It will be the second time . + Just not as much as I used to . + It is a way of life , he says . + He 's there one , and then not there . + But there may never be another one . +If you are not , you go your way . + Well , we know that . +You can make a go of it . +They are just not where they say they are . + What 's the play about ? +But now he says Him . +Were any of them ? +That is to say , that is what the court did , and that is what the court does , then the court does what the court does ; and if that is what the court does , it is all right . +You did nt have to . +He does it all . +At the end he is another . +But people come to us . +Which it does nt . + Those were the good years . +I say that with him right here . +If not home , then where ? +This was nt a good game . +I did nt know how much we were down . +And they do it very well . +What to do and where to do it . + I was , he said . +Now I have a good business . +And war -- we all know what war is like . +Not many people know about it . + This is the best we can do for now . + I did nt think it would get up that high . + You know what I like ? +On the next day , there was life . +But New York is not in last place . +It was all they could do . +The man said he had been the President . +What Do I Do Now ? + That 's the way it is , he said . +Last year , he was just all right . +And I said that I was . +Then he 's white . +I do nt know what we can do . + How many are we in ? +You would nt know if he had a good year or not . +What is , though ? + But I do nt think that was the case . +They are very good , by the way . +Your house is your house . +They are , or have been , all around me . + And the day before . + I see you , he said . +But now you are there . +But they are there . +He 's that way now . + I do nt think about that , he said . + We are all going to have to play the right way from now on . +Last night , he had just three . + What are we this year ? +It 's a used to be city . + That 's a little too much for me . +And well he might be . +It was not much of a game . +They were new days for me . + I do nt think they should be . +But this should nt be the case . + They go , That was American ? +It would nt last . +And that 's good , because we have him on our team now . +She had to be . + We never used to come here , she said . +All they know is war . +That 's what we were put here for . + How could they not see them ? +What will we do now ? +That was nt a good time . + He does what he has to do . +Just would nt do it . + Would nt I ? +Every year it 's been like that . +Today we have our children . +This is your home . +So is the world . +Now what are we going to do with it ? + I do nt know how I would have made it , he said . + If you think about it , she said last week , it will work . +They will have to go . +What to do with the money ? +It is a big , big place . +We did nt like that . + We are still in it . +IT is the first night in your new home . +Even if you are not . +It 's a big part of what we do . + Where would we be without him ? +I do nt play that game . +It will be next year . + In a way , he was . +Can we do this ? +It 's where we are going . +And then what do we do with our time ? +We can go in there and we do nt have to put on a show . + Several times a week . + I just want to get home . +The company could have called us , but never did . +And end up like you ? + How do you even do that ? +Now that 's you . +But it will be best for you . + Our people did nt see that . + And I think she did it well . + It is nt over . + It 's all right , she said . +Some come back , but many do nt . +I want to be here . + Do nt they have those people at the State Department ? +Many more are on the way . +This is not the case that people think it is . + Are you going to get a new house ? +Some of it might be right . +This may take a while . +There was so much there she could do . + We are in this to do the best we can . +You know what we are going to do . +No , they were nt . + Did you say should or should nt ? + If , if , if . +But my life would nt end . + You are nt in the market for it , but you see it and you know you have to have it . +Today was his day . + And that he does with his time and his music . +That may be the case . +She still has two years to go . + He said that . +They should not be used in New York City . +But that was all right . + We have come a long way on that . + We know -- and get back to work . +But do I have to ? + Who are they ? +But I just did nt have it all there that day . + I get it , he said . +For the good of the court . + I did nt like just being long . +But there was no work . +He 's still a part of this team . + Very few people like the back . +I even had one in four . +I want to see what they do because I was with them two years ago . + Do I want that ? +They are money , money and money . +With it there is a life ; but without it there is nt . +No , he had nt . +People did nt like that . + We are going to do it . +Or so he says . +We all , though , would have also been right . +Now , there 's only one that I know of . +What could you say ? + How many years have you been in show business ? +But off the court ? + She did nt want people to know . +There 's no next week . +How was your night ? + What do you have to do ? + It just does nt work like that . +Now what 's she going to do with that ? + We are not going back , she said . +We will say to them , Go to your house . +He 's like one of us . +And they get them . +He said , Do you want to go this way ? +People are going back to work . + Should that be the new show ? + Those were good times . +She 's in here all the time . +Then there 's what they do . + They have nt been good . +So had American General . +That 's all to the good . +What can you do for New York City ? + But this year we have to do more . +We left our home . +He would not get another out . +You never think about the day you are not . +Now , that 's not the case any more . +He did not play yesterday . +She was on her way to work . +It 's not the center of my life . +Next week or never . +Even if he is , I have to say no . +So how will the season go ? + Who would nt be ? +We all do , from time to time . + This next year is going to be a good time for him . + It was home , he said . + I just had to have the place , she said . +And they get going . +He said , I just want to go home , I just want to go home . + Before and After . + And that 's good . + That was several years ago . + And it 's not right . +It 's been going on for many years . +There 's people that do nt want any part of us . +We are not going to get them all . +For them , it was just business . +In a few years , it will be . +When do they go to school ? +Does nt he get it ? +We are not at the end of this one . +I did nt go on after high school . +I do nt want to say he 's not going to make it . +And what if they do ? +Last year was all I could do to make it through the season . +He said , How did I do ? + There is nt any , he says . + At night , I do nt know . + How good was he ? +What would one say ? +That was the day . +Where are you from ? +You just have to do that . + You do nt know who is who . + I think not . +I was just high . +Who was it , he , she , they ? +And that is not the end of it . +My house is there . + They have no right to be there , he said . + Where would people go ? + It is part of the city . +But not much of one . +Do I put them in New York ? +So I like the court today . + All this does make you think , she said . +Take it off of her . + I do nt know who did it . +All I do is work . + Very much , he said . +Our family will never be the same without her . + I see him in the show every night . + We can now only take those who will work well with children . +But was I right ? +Well , we are not . +It does nt come at the end . + I do nt know how long it 's going to take from here . +So what did she do ? +They would like to , but they do nt know how . + Think about it , he said . +And off they go . +It 's the women . +It 's a big world out there . +I want to see you there . + She said , What does he do ? +He did not say for how long . +Then you see where they are going to place it : What night ? +But it was more than that . + So I left first . + She was like , Do nt go in there . + Then where would they go ? + I think : How to life ? +This had never been about money . +But no one did that . +What do American women want in a president ? +And there are even more . + It could be the last day of the year . +That right there is life . +He is used to even more . +Since then , he has . +They just know you are there and get out of your way . +The same with me . +Because I know where we were . +And he has , in a big way . +You get to play the next day . +We are those people . + This is all new , he said . +No one will say where the show is going from here . +You do nt have to come . +Not you , but in general . + You do nt know what 's going on . + I would nt say that it was that at all . + They play their game . + HOW DO YOU SAY THAT ? +That 's how he is ? +I just want to play my game . +And not only in New York . +There are still many good people in Government . +And then we get it . +She did nt get it . + They do nt like to go out because they do nt know how many people like them and how many people do nt like them . +It 's the same with the director . + That 's not what I said . +What will he get out of it ? +We have our own government . +That 's what I think people want . +What to make of that ? + They go after people like me . + I think about going back home , she said . + How much more time ? + I should think about it . + Where can we get it ? +He would not be the last . +It 's up to people to do that . +We know we are going to be at home . +Do I not do it ? + What would you say ? + I never did business before in my life . + It 's the best . +One more time , but not one last time . +This is still a team game . + You have to see the game . + Not me , though . +You do it or you do nt . + We do nt know how long they had been there , she said . +Do nt you want to go back ? +And now it 's time to come back here with another program . + He did nt know it would take this long . + But not every team is going to see every other team at home . +It was just there . +We are in there . + What 's in there for us ? + We do nt know that we are old . + I want to have people know who will be there , he said . +But what place is it ? + We just never had time . +How old are you ? +It 's good to have it back . + You have to say what you think . + That 's what we want them to do . + Does he use it ? + You just do what 's right , he said . +It 's only me . +Get off it ; never get off of it . +This is not like any other show . + That was out before it was in . +That 's just not so . +More new companies go under than old companies . + He does this night in and night out . +What 's good here ? + It has never been like this before . + People said : Well , what about yesterday ? + He is a man now . +Today we did nt . +I did nt think he was the same man . +It was very good for us . +But there is little time for that . +And it 's been two years . +If only that were the case now . + Can we get on with it ? +No , he was nt . +That I could do it . + We still had a world war to go through . +It 's right now . +Business does nt like it . + I said : I want to get out of here . + But there are so many who do nt . +We did nt back down . +You still have time . +Until the next one . +But we do not own this country . +And they did -- for about a week . +What did you do today ? +It 's a good time to be going over there . + What is this all about ? +I do nt have a big house . +The president said they had not been . +They were so right . + I said , What was going on ? +Where is it now ? +We put it in there . +I think we have to make the best use of the school year we have now . + That 's not going to go over well . + And then you do nt . +There are so many here . + I was out there , was nt I ? +There just are nt that many people who can do it well . +But you know them . +Now is the time to go out and do what you do best . +To come right back at them . + You never know what you are going to get . +It 's not just a house . +It 's less money . + Not much , he said . +That 's big of them . +I had to do so . + No , they are not . + Most of them are like that . +They just said , Come as you are . + Now they are back . + If it were nt for you , I do nt know what I would do . +And children are still going to school . +So it 's over . +Then they said we were about to get it , too . +It 's the White House . +But he is not the only one . + If they have to go home . + We had more time . +We like each other . +It 's not about what you say . +He said : What do you want ? +He should have come home that night . +Now we know we can do it . +Now I have four . +But what was the best way to get into the game ? +That 's right , it is . +It was nt much . +That 's what we think we can do . +We were much more than that . + But he does know where it is . + I said : You do nt get it . + There is a long way to go . +I want to get back to where we were . +How can I be against it ? +I do nt think I would . + We are back ; we are back . +That 's the way every team does it . + But not this time . +I will not say that . +I do nt want to see the other . +This man is good . + We do our best , she said . + The people there know that what he did was right . +Many of them still do nt get it . + Then they do nt know what to do with it . + Would you like to see it ? + It does , he says . + What will people be against next ? +They had a good time . +It 's been going on for a long time . + Do they play new music ? +But he could play the game . +Only three made it . + I want to know what he does well and what he does nt do well . + But I do nt know when that 's going to be . +We have to do that now . +They did not have to think long . + This does nt have to be one of them . +No one made us do this . +She said that it was . +We did nt do that last season . +There would nt be as much , and it might not be as good . +I had to think more of what was in it for me . +Can you go get it ? +All in all , there is nt much to see . +I had to go off for a play . +But that was before . +It 's like found money . +Here 's my house . + You know what they say ? + And that 's not new , he said . +I think I was right . +Until then , he does nt want to play . + And I could nt do it . +It 's a New York street . +How long have you had it ? +Did you see him ? +Can we get there from here ? +They are a little like you . +But how to know which is the right one ? +It was nt in a game . + And he said , Well , but they say . +But right now we are not very good . +I think we can not . + There 's more I want to do , he said . +Some of them have nt . +He has an A . +The money will be there . + I did nt think he had even time to go out . +For the president , the White House is both home and office . + This is for John , he said . +It is today ; it was not last week . + So , I was only off by two years , he said a few days ago . + They do nt like us , he says . +But what we can we do ? +I have to think that way . +And it did , but I do nt think it was very good for the university . + It 's still there now . +We had no part of it . + Some people say , How can you do this to me ? +As many as I could . +What is he going to do about it ? +They did not own a house . +It 's music for a good time . +And we should take on . + This is my home , she said . +This time , they were big . + I want to do this all over the country . +What are we going to play ? + I do nt get high no more . + I do nt think they like us . + There are only two or three in the United States . +I also did nt know what to do . +People go there because they want to go there . +That 's only part of it . + Most women will like it just as it is . +She was just about the only one . + And that he does with his time and his music . +And a very long week . + What do I have that she does nt ? +And then the game was over . +I will , I will . +I want you to work with me . +And think how many other people he had up there . +He might have a team this year . +At the same time , A . +I think it can make use of this one . + If not , what should we do ? + It can be a man . + It did nt have to be that way . + I had it , he said . +They are not now . +Where would our children go ? +If so , when ? +I called the police . +No , that way . +She could have used it . + He 's not as good as what he has been or is going to be . +Me : How are you ? +And now he might be back to that . +There were not many . + I do nt get it , he said . +It 's been that way for a while . +It has nt been the same since . +What does that say about us ? + You , too , he says . +Most of the time , it is . + Who did he think was right ? +It 's going to work . +Do I have a case ? + You make more money , and that 's about it , he says . + Where is there another ? + We are the state here , he said . +It 's our court . + We did nt have a good day , he said . +He did nt because he could nt . +What if he had nt been found . + I would nt know , she said . + That 's his business . +Many of the children who use them do not have any at home , he said . +How 's the new family ? + Never would , he said . + It would nt be right not to . + I know what I should do . +I think they know that . + And we did nt . + We would be out of business . +They are going to say what they want . +They are the best we have . +We just have to use them . +They come to play . +This way we can make up for that . +I do nt know where we are going to go . + The set is not the program , he said . + But it was good to be there . +For us , it was right here . +But they did it week by week . + What can I say to you ? +It is his right . +That 's the way they do it . +Is it all three ? + That 's all I know about it , he said at the time . +WHO ARE THOSE PEOPLE ? +There are going to be days like that . +It should be their best against your best . + Who can be against that ? +We do what we do because we want to . + He 's not just there . +It was not , he said . +So should the United States . +But she is part of my life . + Not when you do it right , he says . +No one at all . +I said good night . + He said , Can I do this ? +I did very well . +I had to say that . +Then he says , I could not go on . +We have nt had that for a long time . +But what if it had ? + I do nt think they get it , she said . + But it does nt work like that . + We did nt play very well . +You should show up in court and have your say . + We go to war with what you make . +It did nt take too long . +I do nt know how long it 's going to take to come out . +Until the last few years . +To this day , he does not know . +Get even they did . +But he was right in every case . + It 's been a while since it 's been like that , he said . + Ms. Day was then new to the city . +Now , you do nt see that . +Not so , she said . +Next time around , all of us will have to do our part . + So , how was your day at school ? +You do nt have that here . +It has been a good week . +Would she or would nt she ? +This team will show them . +They had nt been . +Know what they were for ? +I do nt think he should go to court . + We used to only do two or three . +And business : What 's your business ? +Come in and get your money . +They did it over and over , day after day . + She 's like the government . +He used every part of his life . +This time , I said : You know what ? +He then left the company . +Then he said , It 's like . +What would he do ? + It 's over , he said last night . + You could nt get me to go , he said . +He did nt say what that was . +No , you say . +But we are right there , too . +It was here today . +I could nt get back to them . +But he did come back . + No one does . +It 's there all the time . +It can , and here it is not . + There are not many people who do what I do , he said . + It 's the best I can do right now . + You have to get out on the street to know what is going on . + It 's in the last three or four years . +This is where they come . +Then there 's the money . + They are going to go through with it . +Here 's what I do . + Where would I go ? + Is that what 's going on ? + What do they want us to say ? + It 's just that way , he said . + I just think about the money them children take from me . + We still think there is a market there . + It did nt . + I do nt know what to say to those people . +That 's just what I have to say about him . +No one does that now . +So he said no . +In case they do nt do well , they can say , That 's not all I do . +Which one should it be ? +She still does nt know what he used . +He is from the same place as us , she said . + I did nt use it , he said . +I know it very well . +Now it 's just us . +How will he know ? +Can and , these days , want to . +But this is not it . +That is not all . +He does the best he can . +We could have had it . +And you do nt even have that much of that . + I would nt be here if I did nt think it could work , she said . +And that is just part of it . + He did nt have to do that , but he did . + The second time , . +Want to know what it is ? + It 's too much on her . +They do business with you so they have to . +But there is much more to them than that . + But I have to work . +I go at night . +All the way up . +It did nt work out , though . +It was home and we made the best of it . + But for many people it is much more than a game , he said . + Because we did nt . + They are just not into it . + And I can do that for the city . + I do nt know if they are all right . + Now they come because they like it . +But it is there all the same . +This is the best place in the world , man . + Now they can get right into it . +We think this is a good time for us . +And it is business . +That was a long game and it has been a long season . +They said they could nt do it . + I could play like this for years . +No , we have not . +Much of it is new . + But it is what it is . +And see what that man has to say . + But people are going to say , Come on . + So now I know what I want to do , he said . + I work out every day , he said . +If so , what was it like ? + Her life is never going to be the same . +In New York , you can . +For me , this is it . +The two had no children . +That is , all but one . +But that is for another day . +That 's how it is , he said . + No one would put up with that . +And how do we think we can get there from here ? + It was my time to play , he said . +That 's as many as he had in each of the last three years . + He was a very good man . + That 's how you know what you are made of . + But we had to see what we could do without him . + I know I do . +I know because I did it . +It 's just the way of the world . +What should they do with it ? +There is only today . +They did nt do what they said they were going to do . +Though this program is not a first for New York , it is one of the first in a long time . +But not next time . + What did he say ? + In the last few years , the man said , people put money first . +But not a public man . +John is going to play if he can . + He has to take his time . +And big it is . + The first time , they called the police . + That 's what people come to see . + There 's no in between . + It 's just not in me . +It 's not big . + It 's the law . + I want to make money over time . + That 's New York , he said . +That 's our next work . +They want this over , too . +Any time you can . + It 's not as much as we would all like to know about it . +And she does it well . +That would make center A . +That 's never been what I was about . +If not , what next ? + You do nt know . +All I can do is show up for work every day and do the very best I can . + I said , Who would nt be ? +How did they come to be there ? +That 's the part I have to get through . +May you be , too . +Life is all about that , is nt it ? +But they are going to do it with or without us . + But there are some that will work . + What a man he was . + Just play the game . +What to do now ? + I also think that . + This is part of what New York is , she said . +But were they right ? +They are all over the country . +And go she did . +He can only do so much . + This is for our city , our state , our country . + He is a big man . + You are right . +She did nt have that . + We were more united . +What if it were nt ? +But he did nt know . +Last night , they did . +We think that should end . + I never used them that much before , he said . +They come from some other place . + I have to get to school , he said . +You do nt want to have just a few companies . + Before all this , we could go out at night , she said . + I do nt make money on this , he said . +It 's game over . +You like the people here ? +Now I do not have the time . +After all it was the first one . + How did one 's . + And I was just like , that 's it right there . +That is four times as many as last year . + It should be two years , not one year . +He just said he was going . +About What 's Next ? +There are more and more like me . +But I know it will . + And I think : What ? + A big state that I can play with . + I did nt see this . + They are very much like family . + Because this is New York City . +There 's not much to see . +You do nt get a President of the United States . + It just is nt so . + We were not well off at all , she says . + When you are President , you have to do what you think is right , he said . + They have no say . + But I said : No , you go . +And so is his new one . +It can work for you . + I used to go there three days a week , he said . +But what can they do ? +We want to be part of that . +Today , that was the case . + That is just it . + And she was . + Would I come back ? +But this is the way it is . +He does nt take time off . +On to the next one . +What do they want me to say ? +I do nt think it will , but it could . +That would not work . +It 's our second season . +I did nt play as well as I should have . +I did nt know last night . +That is , if you can get one . +That team is a good . + They do nt have to make money . + He is never going to do that . + There 's a law . + That 's us ; that 's how we are going to be , he said . +If that school was nt there , I would nt be here . +Some may do both , but most do not and should not . +What good could come out of it ? + When you see them the first time , they get you . + That 's not what this is about . +But at this time of year , we are used to that . +They have it now . +So I just take it one day at a time , he said . +Well , we do nt know that . + Not between the people . + Because it was going down , down . +And what did you do next ? +Because I did nt have to . + There was only so much I could do , she said . +But I want to see you . +It may just come . + Or to say , I get it and you get it , but are they going to get it ? . +I just was nt with it . + No , I did nt , he said . + To me , that 's the best of all , he said . +That 's what we did nt have . +And it 's time to make more money . + I know the family . +We do nt want the season to end like this . +Did I get it right ? + They know how to work . +It 's all right here . +But we do nt do that . + Day or night . +But it is not just the women . + You like to see them ? +Might not there have been ? + We all do it . +So we did that , too . +Who does he work for ? +They could do it . +You have to be there for each other . + They did nt want their money back . +The new law says you have to work . + That 's what I want to do . +We do nt take money from the first . +World War I is on . +I do nt like to say that . +Much as people do . +My family 's down here . + I can not say no . +The people will now , at last , have their say . + What if it did nt work ? +I said , Many . +We did it all year . +And how good was I going to do ? +The second one does not . +They want a government . +The next best is for us to do it with them . + He does all the work . +It was like a game with us . +But you can only put up with so much . +But it 's all to the good . + Most of their children never even come here . + For me it is , he said . +There is much more . + I know people want to come back , he said . +Those were the best days of my life . + But what we did was right . + I had the time today . +It 's in there . +So she called him . +That was a while ago . +This time the state said no . +But it is not what it could have been . +And they could play . +He used it all the time . + That was the end . +He 's still a big part of this team . +Just as long as it 's not where they left off last night . +They are good people . +Where is this money , all the money ? + There were people who did it for me . +I said that it was . +He still has nt . + I think it 's there . + Over here : come on . +They were made for each other . +His family was with him at the time . + How does he do it ? + I think it 's all who you know . +As well he should . + But this is going to take a few years . +But we do nt know this . +And that 's what we have there . +We did nt play well at all today . +Now they say they still have time . +So how is she ? +It would be my home . + I see they are out there , he said . +I think it was time for me to go . +You left me four years ago . +And most of it did . + Last night was nt the time . +It is a big part of the game . +He said little at the time . +You get to know people from all over the country . + This is our home . + Though I would nt have been very good at it . + I should nt be here today , he said . + First , the school . + Who would nt like it ? +But that 's not the case at all . +We have nt had people there for years . +It never will be . + They can come back and we can go there . + I would say no . +Then he said , That 's all . +All of that can go up and all that can go down . +But they will not do it . +Now he has them three or four times a week . + It does nt have to be that way . + This is my work . + If you were nt out here , he said , we would nt be here . +He can still play the game . +But in the last few years the street has come back . +That 's going to take years . +But he did not make it public . +Will they want to ? +But there 's a company that has that . + Do you want to do this ? +What did you say to him and what did he say to you ? + He did nt have to go and we did nt want him to go . +She : What did you say ? +And that 's what people want . +And I do nt think that . + But he may not be . + She 's with him now . +No , she was nt . + He used to be very good . + It should be left as is . +That 's all I can say about him . +What could it have been ? +And if they do , they do nt know what to do with it ? +All he has to do is what he is . +Who would want them ? +I think they like it that way . + There was nt much there , she said . +What would you get ? +It could have been any other night , any other season . +Do you know where she . +That was over two years ago . +It 's the President . +You are here for so long , and that 's it . +She will not say how many times . +If I had to do it over , I would nt do it . +They have to go to work . +It has been a year now . + But we did nt know it was going to work . +And we think we can . + What do you put on ? +We are too good for that . + Today is not the day . +But that 's the way the game is . +I found I was very good . +But he said that before he was President . + He said , What do you want it for ? +Where will all this take us ? + I just do nt think its time has come . + Just like that . + I do nt know where all those people are going to go . +They want to go play . +But that 's all there was too it . +And the money can be big . + The President : I think it did . + But I do nt work with it . +This is just not right . +I did nt know if it would work or not . +But they did not know their place . + This is the only way government can work , he said . +And then , when it 's over , it 's over . + There 's no other place like home . +But if I was in his place I would be too . + You know that , do nt you ? +It 's just the way life is . +He said : They did it well . + More or less . +The way it was then is the way it is now . + He 's not good at all . + I think that 's him . + We would nt be here if it was nt for him . + But I do nt know how to show it . +The back is now back . +People like him , he said . +That 's against the law . + We are business people . +He was the best man around . +How can you do that now ? +As much as I want to see them , I want them to see me . + They are going to have to show us . + It 's a long season as it is . + He 's going to be out there , he said . +If not how much time . + I had never been political , she said . +And they do nt much like each other . +After all , he said so . +They know what it is to go home . +I do nt know what 's left down here . + About time , said one . +It 's only one of two or three in the world . +This place does not make you a man . + And he said , Then go to New York . +Many just do nt like him . +You know The way . +How Do You Say . +I could nt work . +Is nt that her right ? +Well , it could . +Here is the what . + And then I could play with it . + I would never want to do that . +He may have been right . +Few would say that today . +When I had you I did nt know what I had . + But you only get one first . +But first , the police . + We are just here to play the game . +For me , it is now . + Not that many people there . +She 's over that . +I know I can still play . + I just do nt see it . +We do nt know where it was made . + They could nt get down there . + They want to play . +That is where it is . +Could nt he go all the way ? + We have to show the people that it 's back , for good . +These are all people who can not go back . + Three called this week . +Do what you think is best . + Which I would be . + I know some of them . + People would say , What is this ? +It just did nt work for me . +And he said , Do you know School Days ? + I do nt want to be here , she said . + They have no right to do that . +What did the Government do ? +That 's what you say about women . + It was business , she says . +The other is , What can I do ? + He has to play his way out . +But then you never know . +But that time has come . +It could nt be any other way . +He said he did not know what he would do after that . + When Will This Be Over ? +The house was not there . + But not this year , and not next year . +Three , it is New York . +I think I just did . + That was then , she said . + Man , they like me here . + But if I go , they would nt play me , he said . + I do nt know of any . + People think they are going to have the same year . +We just have to make it work . +Where did you say this was from ? + This was the place for me . +No one should have to go through that . +Where had he been before ? +It was as if he were back in school . +Now they have him . + The other was , How did he do it ? +But it 's old school . +It is all of that and more . +And I do nt want to go down . +Does he do that now ? +What does he do next ? +And who are those people ? +If it does nt , that 's life . +I know this place well . +This season 's over . + We do get it . +They had nt even called me back . +It was as though I were nt even there . + I said : It 's good . + I have to think about my family back home . +This is the life I want for my children . +They were in for the night . +And then there 's the music . +There was nt much to say about this one . + He was out a long time . +A few still do . + You never know , said the man . +He made it , and back . +So I do nt know if it 's going to work or not . + If you do nt do it , you do nt know what it 's about , she said . + And then I think that I still can if I want to . +No way would he make it . + It 's very in right now . +He should nt have to . + We are a long way from over . +It 's my last game . +He could have made the play . + He was not that . +If they do nt get it one way , they get it another . +It would have to be in New York . +I was the first one . +That 's where we go next . + You have the right to say no . +You do nt know you want it until you see it . +I just go out and do the best I can . +They are used all over . +Do they have that right ? + Where has he been ? +What can one say ? + He just was nt going to play much here . + They want to be on their own . +That 's what he 's good at . + Only man has law . + Now is my time to do this , she said . +When do you have to play for the national team ? +A : People have said that to me . + I do nt have to be . + And as you see , so you are . + And just how big will that be ? + I say no to that . +There 's only four of them a year . +What would he be like as President ? +You have time to play . +There 's no business like this . +And he may still be down . +There 's work to do , he said . +I say use it . +Will this be the time ? +After that , he does nt know what he will do . +I could get used to it . + What time will it be ? +This is my year . + I get all three . +But I do nt do that any more . +How could I be ? +They want to be out here . + He 's going to say , Can I go with you next time ? +It was the best of years . +The only way out is out . + We think it 's the right time to be here . + Think of it , he says . +He was just John . + Did you like that ? +It is in one part today , not two . +And that was before the game . +And you will not be part of it . +They are just being used . + There 's so much I could do but I do nt have the time to do it . + By then , the season will be over . +You both have been used . + It 's all show business , he said . + This is not just high school . +I see what 's going on . + What can they do to me ? +For how long are we going to do this ? +Well , life is like that . +I know the law . + I think we did very well , no ? +But it was never his world . +I do nt think so , he said . +He says he did nt . +They would nt know how he did it . + They did nt even know me . +I want to be just like him . +I can do business . + That was he . +How about going to school ? + I do nt think I would , he said . +How is she going to get through it ? +I have not used it since . +Now they are all the same . +What 's your take on that ? +He did , too . +The last time was two years ago . + I just did nt play well . +But that 's what we are here for - and that 's what put us here in the first place . + They have too much time . +If they are right , they take the money . +But she was and she had . +Who is that good ? +But for me , it 's not my place . +They are a part of it . + That was a man , she said . +Where does it get its money ? +I take work home . + We have them right here . + You do nt know what to do . +She will be put right . +I have found my place . + Many do not last . + You know what 's in here ? +That will be for another day . +Which do you think we are ? +In this case it is not . +With this , I do nt know what is right . +And the next day . + I will be the last one , he said . +He said he had no money . +There 's more to life . +But they did not make it public . +There are nt many here . +Does she or does nt she ? +They want to play all the time . +That 's what you want to be a part of . +But we will get it right . +And now you can . +This is only his first season . +And this is a case of a time when it did nt work . +He could nt very well put down that . +That says it all for me . +I might make another one . + It was like going back to the old days in the business . + That 's what made me go on . +I will say this . +And that is against the law . +But I just could nt do it . + And that 's what we do . + We have to think more as a team . +You do nt own it . +It 's also big business . +All we have is our music . +SO YOU WANT TO BE PRESIDENT ? + Do what I do now . +Now there were people on every street . + I would never , she said . +This is New York , right ? +It does nt take long . + It is a place for you as well . +They would nt do it . +You know what they did ? +It was nt the last . +It 's a day game , you have to get up , you do nt get up . + That 's you . +People are going to come in and see this . + We should nt have had to go through it . + And that did it . + Do we know how much there is down there ? +There were just a few . +But there 's more going on here . + It 's with me all the time . +But he had a good time . +Few of us do . +You know it well . +But the city is nt all big business . +Who would nt be ? + I do nt think that 's the case , the President said . +But we never see them . +But some women were not put off . + You can make money . + I could do it in four years . +If not , they come down . + Last night only four people . +I want out of here . +I go on my way . + No , I have nt had time , I say . +You have to do best with what you have . +I think about him . + That way you get the best , he said . +One in three said he had not . + All my family will be there . +It was all we could do . +He has not been the same since against them . +You do nt like , you use less . +I like people in general . +Were we last night ? + And that 's what they do . +The more I know New York the more I think of it . + He said , What is life ? + Are you going to go ? +But where will he go from here ? + The business is the best that it has been in three years , he said . + Some of them are government . +Time to get out and have a good time . + But we do nt play it that way . +When can we have some time ? + They know we are here . +You think that 's what it is ? + That says it all . +NEW YORK CITY is big . +Who would nt want it ? + How much money would you want ? +We all do what we do . + What 's Left ? + But I never go out of my way to see her work . +Just as in New York . +For the last three years , he 's been our life . + That 's where the money is . + But it could be much more . +And now he has him . +So you see , I was of some use to her in the end . +But the season is nt over . + How long do we work ? +We do nt like it at all . +What do nt I like ? +And that 's all I will say . +As for the other ? + We do nt know who they are with . +My money says a week . + I like our team . +What I could nt get . +We have to play that way . + This is our first one . +He had made it . +That 's what I want to see . +And he has it . +This is their season . +Now he has been . + They just want to go off . + And I say , No , not this one . +They are just another team now . +Now they think they can . + I do nt see how we are going to get out of this , he said . +Only that 's not what they think . +This has been a big season for the group . + That did nt used to be there . +It 's called money . + And I did nt have to take the day off from work to come down here , he said . + I just do nt where it 's going to end . + They just want it long , he said . +But there was more , much more . +This is not a program . +What if you are it ? +So what do we get ? +But who will be on that United States team ? + It was one of those days . +It is not what he has found . +Now there is music all the time . +You have to get out there and do it . +And as a group , there was no life to us . +No more of this , though . + I do nt think that way , she says . +This time , they were right for each other . +I did nt want it up . +But she can not . +It just about did . +So you see , if I have to go , I will . +One more game to go this season . +No , I said , American . + But I did nt know about it . +There 's so much to work with here . +When that did nt work , it was over . +I think that 's the case . + But they get to see both of them . + There was so much to say , she said . +It will take a new president to get us out . + What do they think I do ? +It 's just the way I was . + That 's going to be good for us because we are going to go right at them . +And I know I can do it . +I know what I would do . + And I do nt want it to . +THERE WAS AN OLD MAN . + He is the director . +What will he do with the money ? +You can even see it as both . + What 's that about ? +At the time he said no . + It all was nt him . + That 's how good it is to be white . +She 's now back in New York . + But there 's a way out . + A family should not have to go through this , she said . +We had to do it . + No other man can . +Well , have nt we ? + Is there more life still in her ? + But after that it was over with . + But can you ? + Are nt we all ? +How did that come to be ? +What do you think of it ? + He said he was off to school . +And he did nt . + Until two days ago . +It will be there . +That 's more than a million a year . +She had to take him home . + But it was too long . +But still , it 's where you are from . +But is it well ? +They will have to . +Are they out of it ? + But this is not about that . +Like all of them . +But could he take them ? + We did nt want any of this . + I did do it , did nt I ? + He did get there . +It did nt go well . +The last day of work was right here . + Some people do nt , but some have more . +She did nt say what . +But they are still part of a team . +So be it for now . +And what 's in it for the companies ? +This is one show that should go on . +The American people do not want it . + You see that there ? +Home was our place . + And that was our first show . +We can not go on like this . +Never will it end . +And you would think of that if it were you ? + If it 's their first year , it 's their first year . +But only in New York . + And I do nt think that 's right . +Make a well in center . +That was not in place at this time . + It was nt just me . + Well , what do you want , then ? +It is also not the end of the world . +It has been good to them . + I do nt know what did it . +But they all have . +Even the president of the United States will be there today . +It is to be my last . +You should not think of it . + What I will do with it , I do nt know . +He was in that place at a time when people did nt know what to make of what was going on . + That was good for me , she said . +There are SOME who say that . + They are still a very good team . +Just as she did . +We do nt have the money . +Not here , not any more . +I have to see her every day , because I like her much . +You want to come to another game ? + They used to not go up that high . +What will his be ? +It was nt for us at all . +He is a big man . + I do nt know what I will do then . + To show them in a new way . +So I did nt see the house . +People know it well . + How many people do you think would show up for that ? +He is one of us . +Will you come and play for me ? + I know that 's not the case for me . +We might as well see what we can do now . +One day it will have much more . +So they both say . +But who 's to say ? + The day is our own . + I said , Where 's my money ? + It was more than a show . + For the most part , they do it all , she said . + We did nt get our money , she said . + What you do , you do well . +We did nt play our A game . + They say there 's no place for you . + He said , We do nt like him down here . +We just do nt know it . +But it may not work . + They said , How do you know ? +What did you do this week ? +Can I use it ? + So much has been said since that day . + He said that he did know about it . +Use last year 's . + This is not the case now , he said . + They do not take me up on it . +What do you think on both of those ? + The people are not right on your back . +The work is also the good part , he said . +I did nt think of it at all . + It was about money . + We take them from there . + Every night should be like that . +Every day is new . +What will they do for women ? +What was she up to ? + Three million people a day will see this , he said . + I do nt think it 's right . +I say : You know what ? + If I can do it , you can do it . + So , I said , what do you use that for ? +You have that or you do nt , I think . +Now they have their own house . + This is not the way to do the public 's business , she said . +Did I get them all . +If he does nt come back , so be it . + I do nt know if it is or not . + It 's never going to be the same as it was before , she said . +It 's three times this big . +And then there were two . + Not next year . +I get no money . +Well , they are nt . +He does not have to . + This is where we want to be . + It is my work . + I just get used to it . +And he does it every day . +I was so good at it . +Just me and you . + It was you know . +But it is also for him . +I think you will too . +But we are a good team . + Most people on the program work , she said . +What made a good man ? +I will do so . +He made one after another . + You know what that does ? + They did nt want me for me , he said . +Well , next time , he says . +It is not even in New York City . + That 's who I was around . + There are very old people and children . + I had it all the way . + How big do they get ? +Make it what you want . + Mr. White said . + It 's that there just is nt any . +And if so , how come ? + But , after all , this is New York . +That 's where they are , he said . +Now he has his own . +Now , they can play when they want . +That 's what people come for . +But did nt we know that ? +President , are you there ? +I do nt know that . +I said I did nt know where I was going . + They are made up . + It is a war . + The police , they just made us get out , he said . +And I did -- my own . + Well , you know what ? +What does that say about me ? +I go on to the next . +We should nt do that . + That 's all right , I said . + Many companies market it around the world . +I made it today . + He just had an off year . +He did nt know who they were . +He is so right . + And here we are today . + But they have a long way to go because one is too many . +I say , You did what ? +So say they all . +I can not take my family back there . + It 's the best of the best . +But I might be . + I do nt think I want to say . + Do you see the good ? + This is my home now . +But each is down from its high . + That is where this business is going . +The federal government does nt . + Is nt it too much ? +He would nt say , All right . + Too much work to do . +We will take it . +We just want to know . + I want to know more . +What will I do ? + I think I did , she said . +What Good Is Money ? +And it was nt the first time . + How Big Is Big ? + It 's all very good . + You are in the business . +I do nt think it was . +That would nt work here . +Children should be left out of it . +But not his , he says . +With us , it could be one . +At first , it did get to her . +There are very few . + I just like it . +NOW we will never know . + It is up to her . +No , we are not going there . +At the time , they had not been made public , he said . + That was it all day . +Do nt like what you see ? + We know each other , she said . +As a public company , we will do the same . +It 's not Then , not Now , but the way from there to here . + It 's not about any of that , he said yesterday . +He would do that from now until the end of the season . + At this time last year , we were going home . + That 's good , I think . +But he was right about school . +This is not the day . +I have to get money in . +And only you know that . + They did nt want to do that . + This is how we used to do it . +They are the same . + Where would I have . + Will you back her then ? + That 's all I have to say . +He had to do it all on his own . +Where can I get one ? + And every night . +It was the House . +It might even come out this week , he said . +If not , he is one of the few . +It is just as well . + They want to be in . + We did nt play well , but we did what we had to . + Now it has to be a business . + She was it . +Me : Where are you ? +This is what I made . +I did nt even know who it was . +In all the time . + And I was nt going to do that . +He may have to . + I would have to say no , she said . + There 's no use for them . + Last year , I had three . +What Are They Up to ? +Some people are going to like it , and some people are not . +And they know that . +It 's time to go back to work . +Well , we have the music . +So this is going to have to be the one . + We have company . +But times go on . + And I said , Well . +The children , the children , the children . +First , The Place , where they play the game . + It is time now to do . + And made them , he said . +Has is been that long ? + This is the right place in the city for us , and it 's right for the city at this time . + More and more people will just say , Do it for me . +What do you say to that ? +We all want to work . +He is still here . + Just right , he said . + He had to come out . +I should nt even be here . +You all have to go home . + And we do nt know when they will come back . +And do you know what he did ? +They are people , too . + I have been in there every day . +Could I have both ? +The little big ) women . +It is all I want . +You are too big . +This is a house without a home . + I did one night and , no , it is nt me . +But it 's not going to work that way . +There 's no other way to say it . + Take what you can . + We did what we had to do . + She is the best , the best . + He found it in New York . +Now , we have to make it work . +I do that so I can do this . + Is nt that what you say ? + It may be another five years . + Do nt think about them . +If it was you and if you are even home . + We just have to go out and do our part . + We do it all . +She had me down . +He 's still here , but he 's not with us . + That did it . + I want you to know , she said . + It 's another day at the office . +They are all down there . + It 's been going on all year . +They did nt know him . +If it 's new , it 's in . +I never do that . + After that , it will be just about as good . + They said it 's time for him to come back . +It 's all he does . +But what are these ? + People are not . +But it does nt work that way . +They did nt know . + We are part of no group . +And they are right . +I think people like it . + It 's just right . +I think we have found that way . +Is nt this what being a family is all about ? +Who do I go with ? +I do nt know who it was . +And they are like : Here you go . +It 's a big business in this country . +It has , too . +No one has been with the team as long . +What can you say about it ? +Come into the office . +But that is not the case at every company . + Go around and around . +But what is this war about ? + How 's that ? +But what 's with it ? +We should be all right . +You see , that 's all I do . +And we had to think that way . +He would nt make our team . +Not long after , they did . +This is not last year 's team . + I like him . +It was from the first day . + And that 's good for the market . +I think they did good . +There might not be . + This is nt the case . +It 's because that 's where you do your work . +I do nt know if it will . + That 's about all you can say . +She said she did . + Can I play ? +But they are going and we are not . +Now I can do it on my own . + We are a good part of the way there , she said . + They know what they are going to get with him -- more of the same . + There was nt much to do after a while , he said . + But you want to do it right . + We did nt know what to do . +She found the last one . +It is four , not one . +Does she know me ? +You get a new one every year . +He has a year to go . + If we did nt , we would nt do it . + This is what we have , and we should do more and more of it . + Still , what about now ? + It 's not like that now . +I do nt know if it will work . +That 's what I said at first . + I would nt be for him if he was going to do that . +They could nt get through . +Who 's Out There ? +What is that all about ? + I think about it every day . + But he did nt have the money . +Do you see any other way out ? +It was just for the show . + I said , How can I do it ? + And we do nt want them to think that . +No , he said . +That was nt to be . + But that 's good . +And that it did . + That was just a game we had to have . +And I think I did both . +This can take several days to more than a week . + That 's him right there , he said . + That 's it ? +Say what we want . +There was no place for us to go . + How will we know ? +Get it she did . +With that he left . +This could go on for years . +I do nt have to . + How do you like it ? + It 's like any business , he said . +But it 's his right to do it . +And if so , what will she say ? +This was nt right . + And they would say , No , we want to go the next day . +We want what 's best for our children . +I had to go home . + I used to like those . +So should we all . +We would come in during our days off . +But New York is where he is . +What 's it like now ? +But we are there . +Has his own business now . +She has to get them . + If you want me to play from the street I can do that . +Not on your life . + I think he is , on an off the court . +My company has been a family . +No , it would nt be . +That 's what it 's all about , is nt it ? +How can I know ? + It did nt use it . + Is that what you think we do ? + All day , he said . + People come up to me in the street . +I do nt have to know that . +It 's been a long year . + It was the play of the game . +That was more than I could take . + I say : No , it 's not like that . +He was right , after all . +This is what we do at home . +And he 's not going to make it . + Here , I do . + How does he do it ? +And you say , How ? +They found him on the street . + And , You do nt like it ? +I have nt had to . + And it does too . +He had that right . + But we were nt in the back . + It is about time , she said . +He did nt , or if he did , he was not the first . + We are New York . + They just want to get in one more time . +So what can the United States do ? +They are my family . +He did his best . +I say we can . + I like it . + It 's going to work , he said . +It was show time . + All of that was before my time , she said . + I think of them as a little family . +I was there for a year . +It 's work , not play . +It was one of the best times of my life . + We did nt think about it . +I would nt think so , right off . +As for a play ? +Officials say that is not the case . +But what about the people ? +You have to be on it all the time . +She did nt show . + It was nt set up for us . +How many people have been here ? +IS he or is nt he ? + We have children here . +That 's three , not four . + No , he said , not at all . + It was like the old times . + You think more about how you play . +And it is like no other . + That 's what I like about New York most , he said . + We may have to go back . +We do nt want to go back to that . +That 's where I was too . +I have so much work for school right now . + That 's all he used to do . + I do not own them . +So what 's in it for them ? + I think they have a three or four . +It was like a war . + Just say : What 's up ? +And now , there they are . + So , here we are . +I want this to be my best season . +But if you do that , you get old . +And then there was the money . +So that 's out . + It 's not like me at all . + Well , what can we do ? + We all get a what ? + How many can you own ? + That 's what you play for . + That 's been the law for a long time , he said . +I did nt want to see them ; I did nt want them to see me . +And so , it 's about us . + And it 's never good . +That 's because it was nt there . +But I do nt know what more we can do . +To all of us ? + But it 's not the way it was three or four years ago . + I said that 's all I have time to do . + All I can do is the best I can do . +She was one of five children . + This is for first place . + He used to be a very good man . +And it was time . +In the end , it was . + Now , it is just big business . +How public is public ? + They do nt know who they are , even now . +Million , that is . + I take just about any time off that I can get , he says . + There will be more , he said . + That might not even do it , he said . +They had come to the right place . + When does it end ? +Not just his but his children 's and their children 's as well . + What time is the game next week ? +In this case , it 's not much . +They should think about that . + Who did this to me ? +I will never know . +They are a year of one 's life . +She might not make it . +What about the government ? +But this is not the time . +We did nt want to do it . +So that will be that . +It was nt then , but it is now . + This is what I think . +Here 's what it could be . +Me , I would nt . + I do nt want to think about it right now . +This much you know . +We are not where we were at the end of the year . +He says do that , you do it . + It was just going to be our home . +It 's money time now . +Day in , day out . +That is just as well . +Well , so much for that . +There are those who might . + There 's more money to be made here , he said . +You are like us . +I want to have a family . +In a way , though , he is . +I do nt have to come back to be this or I do nt have to come back to be that . + And now I want to get back . + They were old , he said . + And I think about it every time still . + In New York City , it 's all about money . +All on the same team ? +They called me and said they never said it . +And so we do . + Is he going to be all right ? + That is not to say this is the only way to do it . + I said : Good . +Three did not show up . +You know who and where many of them are . +He is back now . +Well -- who is ? +So which team is going to show up ? +I still did nt get it . +If not , do it over . +I want to play them . + No , that 's good , he said . + They never say no , he said . + That 's going to be up to him . + Who are these people ? + What is going on in this case ? +But you had to be there . +We both want to get out of this place . +That was too big . +Did he like being in show business ? +It 's for us to go out there and take . + This is not only a school to me , she said . + It 's that little . +How did you play ? + He did what ? +What more can you do ? +We should have both . +A few of them work but we do nt use them . +But I do nt know if he would want to do it . +It 's not new at all . +But one on one , he 's the best . +When you play on a team , you are family . +Where has she been ? + But people who were there said : That 's how it was . +What 's up with them ? +He was president of all three companies . + What Are We Going to Do ? + In a way , they are . + This is my second family . +He does that too . +It 's more now that it was five years ago , and less that it will be five years from now . +So what , you say ? + You never know who 's going to be out there , he said . +He never says , Do this or Do that . + It will take a year , he said . + She and I are in court . + I never get to do that , she said . +This time I did nt do well . +But what is time ? + He did nt have to say much . + My last one , he said . +If she did , did she know ? +I never have , and I never will , and I did nt . + I like what I see . +Now there is an office there . +I like being in the back . + There he was . + It was two , not four . + I was just a part of it . + But I did nt do it for them , he said . +If I did nt do it now , I never would . +He will be there to work . +New York City , though , does not have one . +Do you go during ? +He had been at it for five years . +He may well have . +Then back you come . +No , I do it for the money . +What are you up to ? +Can I do one more ? +I would like to know more about it . +And where is he now ? +What you have to do is come back from it . + They said , We do nt know . +They just go on from year to year . +We are going all the way , he said . +But the game is the game . + Is it right ? + When should it end ? +But that was too much time . + Just not in this case . + I think New York will be up after the new year . + They are just not there . +We all should be . + I had to do it , he said . + This is me , he said . +But I think there will be war . + It does nt get to me , he said . +I do think that he was there . +And that 's what he 's good at . + I did nt go to that . + There 's no way I could go back there . + What do you want for it ? +And what are they ? +And today is even more so . + How could I not be ? +Do nt they see it ? + I did nt know her then . +I will work with these people . +It has little say now . +They are all in place . +That 's the way she is . +Now , she says , more of the world has come around to her . + I never had that good year . +But they had nt . +This group did not go . +Now it 's at the City Center . +So , does she like it ? + But you know that going in . +Or they just do nt like what they see . + This is John . +It is a good business . + That is no life . +There was more , much more . +They get on well with us . + People have to see , she said . +And most of them did . + It 's the national game . +This is your house . +It 's like going home . +Well , he 's been through it before . + You want me to think , Where did they go ? + We have who we have . +If you are in , you are in . +Now they have four . + What is not to like ? +The companies did nt want it . +The best part is , you would nt even have to go there . +There are many out there . + You could see one or the other . +Will he come back this season ? +For a while , . +So what 's next ? + It is about you and your family . + There 's no money in it . +We were against the war . +But not as before . + It did nt work for them , he said . +When is too much too much ? +Four have been found . +He did what he does best . + Do you want to ? +We also know that I want out of this , big time . +You would think so . +Right now who would I like to play with ? +And that 's how it should be . +This war will take a while . + I make it every day . +He did not do that last year . +What do you say to those people ? +Two for the money ? +Or she was nt . +The Court has come to him . +They do nt say , Who are you ? +That 's too much . + Do nt you get it ? +It 's in their court . + Where are you now ? +But who is to say ? +We are both never the same . + I know they have to do the work , she said . + It 's never about my work . + It 's my time . +One of the children could be him . +This time it did not . + We are a team , he said . + They did nt want to do it . +It may well be . +But that was days ago . + It 's part of my life 's work . + Here , you come in for a day , and get out . +Does nt he know ? +We still have much work to do . +But this is the only game we know . +No , I do nt , she said . +He 's not going to school . +So if people want to put it on him , that 's what they are going to do . +I want both of us to be around for a long time . +They have their own group . + What would we do ? + That 's not government , he said . + What did she play ? + Who 's to say what is right ? +How did you get in ? + Here is what the people who have been there think . +My home is here . + Few , few , very few . + No , no , no , no , I said . +It could nt , and should nt , be . +It may take time . +Do you like it ? +This year , it 's , How few can you put on ? + I think you are . +And since they think . + I just found out I could do this today , he said . +We have to come to them . +What is the right way ? + I think he 's there . +Well , last year was last year . +I did nt know what I could do about it . +Does it have this ? +That 's the best part of what I do . +They know both all too well . +And then more and more and more . + It 's not the money . + This is going to work , he said . +And that is what it 's all about . +A : It was . +We know we can play . + But we do nt play with them . +I will never go back . + I do nt have to make money . + Or , Good game . +But there 's too much here . +This time it 's the other way around . +But he was the one . + Man , I say . +I think in two , three years the street will come back . + I do nt take it out there with me . +And , it 's a school . +There is no team without the university , is there ? + They want to know if we are from there . + I want to take them on . +People want to be like him . + You have a say in that . + That 's their business , he said . +There are many people . +But who would nt ? +Will they all get it at the same time ? +Come on , what ? +Out for this season . +What can you think ? + Can we get more ? + We have the police . +How are you going to use the money ? +And it 's not just here . +I did nt have much work to do . +People still want to see him play . +Would nt you go where the money is ? + All that 's over , he says . +I want it all , too . +Where will it all end ? + That 's what will have to go . +That 's what it 's all about , or should be . + If they have one , we have to have one , too . +And you will too . + I was very good . +What is there after this life ? +It 's music of the people . +That 's just me and my work . +It is not the same . +Where should we put that ? +It 's no good if it 's just you . + He did nt even know who I was . +He said : We are good people . +What was it all about ? +There 's no other place like it in the world . +I called the director . +They want them to be good . +Is it the world 's best business ? + I think so , he said . + There is just one . + He still does . +She 's there too . +If they want me . +People in general were just a part of her . +But she did nt see it . + Well , I did it . +Both say they are not . + It 's not one way or the other , he said . +Last year we did nt do that . +Would nt you know . + I show you one day . +What I do best . +We know what we have . +And what about the war ? +But New York is home , she said . + They are both good for each other . +They are with us . +We had to come back here . +Only it was nt . +He is like me . +Out -- I like that . +What 's up with so and so ? +You do nt take it public . +We are just going to have to play well . + He 's your President , too . +What does he want there ? +Go see what it 's all about . +It was nt like the Second World War . + I know that 's what he would say . + And this is what does it . +Right to the end . + Just to be there . + Each one has a life of its own , he said . +But one day I had her . +But it 's not just you . + We found each other . +What do the police say ? +How long does it last ? +They are against and against . +I did nt like this . +We are not one of them . +But that 's the United States . +So , there was no way out . +Even that may not do it . +Can they come here ? +Even if it were to last one day . + What our people want to know is what we are going to do about it . +They want to be on the team . + You have times when you are up and times when you are down . +They do nt know where to go . +Or they may not be around . +After all , it 's part of my life now . +My time is now . + Without them , I do nt know if I would have made it . + This is my first show , he says . +It 's my game . +I think he would like this . +Time , he said . +Well , that was him . + He said , Take it . + Right now , no , he said . + You see the money , he said . +How does it play it ? +As few of us are . +How come we did nt see him before ? +This is nt a first . +It 's the first one to four . + Good , he said . +When that will be , I do nt know . + This is the right place for me . +But I do it . + In is out -- way out . + It is more than too high , she said . +What was he up to ? +I said , I do nt know what 's going to be in it . +I was going after him . + And there is nt . + We just do that . + What can we do not to do so ? +I had my time . + How would they know ? +People see through that , though . +So how is business ? + How Long Has This Been Going On ? +And so have I . +You could see that . + I want my old family back . + Now it 's the team . + Last year it was , How did you do ? +But that 's not how it is . + Most people still do nt know what they are . + How do you put it on ? +Is there a way out ? + Those are our people . +I said that to him . +But they did nt know it . + And there are nt very many of those around . + I just never found my game . + Right now , this is as good a way to make money as any , he said . +Now its time for people to take back our government . +I said , No , it 's off . + I like my life now . +We never should go back to that . +That 's the way it was all night ; this is the way it has been all season . + Make that was . +What do you think of what he did when he used to come to your house ? +How did she do that ? + After work you come right here without even going home . +And so on until today . +We have to think about what we have now . +Many did just that . + I have to go out there . + How do you know what I want ? + If they are a country or a people , we do nt know it . + I said , No way . +And then he did nt . +And if it was nt , what was it ? + He 's the same as all of them . +Other times , they make a show of it . + I do nt know if it 's here or not . +I can do most of them . +So do the companies . +I would have to do that . +So I could do that . +At my house I can . + But to him it is the place to be . + Not as long as there 's a world . + He was all for it . + I just want to show them what I have . + That 's what you think . +She had found new members of the family . +I will do my time . + Would I do it ? +We are on the way . +All make way for one another . +It was not his way . +If it were nt for him , I would nt be here today . +That 's just it . + And all that I can say is - make the time . +It could be me . + Just take what you want , Mr. White . +I want to get that back . +So how was business that day ? + We did nt know much . + I just want to play the way we can play . +It is and it 's good . +He did nt show up . +Every American has one . + But he says it just about every night . +We make more money than you . +But he has to do that . +We still have some time to do that . +It is a police state . +He had one , he said . +That 's part of his show . +This is going well . + But if they do nt , what can we do ? +All of which may be good for New York City . +The first game was the best . +I just want it and want it and want it . +What day is it ? + We do it on our own . + This is not going to work . +You do nt like it ? +And in today 's world , less is more . +And the next night . +For you , it may be . +Between them they have four children . + Who was is ? +We know few of them well . +Who is in her group ? +You do nt have to take it from me . +They know what it 's going to be like . +And what 's it about ? +So I just do nt think this will work out . + It 's all right , he said . +I did nt work for it . + You do nt do that to people . +They do nt know which end is up . +How right they were . +What 's the other part ? + And then , they just like the place . +In a way , she was right . +What good could come of it ? + Well , I would , I said . +I do nt know any more . + I was off . +Well , so it is . +How long was I there ? + How do they come down ? + How good is your team ? +I would say not . +That money is the people 's money . +That 's the only way to play the game . +It was a good group . + I just work here , he said after the game . +We play for each other . + It 's not about the money , it 's the time , he said . +Is the team in first place ? +This one was not high at all . +That 's not what this country is about . + We want our money , I said . +It 's all I do . + I said all week it was going to be like this . + I said , No , man , no . + How did you get one ? + But there has been not a one . + Even if it does nt . + Come back , he said , as if this were his home . +I will not do this . +He is after my time . + You know it 's not . +That 's how you said it . +But , never say never . +I do nt know that much about him . + Now there is no first . +But I now see . +We are going to play to the end . +I never found it . + It is what the people in the state think . + They just did nt see , he said . +She 's very now . +And where can they say it ? + You have to have one right program . +I think the world of him . +He 's come through for us . +All in one play . + I do nt think that is where it 's at , he said . +I still put out . + That 's called good business . +And how could he ? +Too much work , they said . + And that 's what most people do . +I just want to be part of the team . + Are we too good for our own good ? +Then there is a big , new market out there . +But in the end that 's all it is . + I did go to one game . +It was nt even called for . +You do nt get much of that any more . + That was good , he said . +I did nt see much good in this game at all . +Did you know it ? +Now it 's back to business . +The Court : And if there was nt , say so . +They are too big . +I called that office . + That 's where it should be . +Or not come up at all . +So good for them . +Few of them want to . +I think we are there . +It could nt have been the money for him . +If we do nt do that , who are we ? +And he did , in a way . +And this may be one of those , and we have to play through that . + It 's about what we can do . +You could be here too . +It was not his first first . + It was like I was there , and I was nt there . +Many times , they have been . + You can go home and see family . + And when I had to , I did . + But it 's not for me . + What 's she like ? +But today we did nt play our game at all . +It was all just more of the same . + Only now and then do you get one . +And that 's not much . + We just want to make money . +And I do nt like it . +Time , time , time . +But there is also much more . +But it 's time to go . + And if that 's the case , then do what you have to do . + Would she like more ? +For my part , I say that if the . +This should be the end . +I did nt see him after that . + I like them very much , he said . +He said he did not know where . +It will be war . +So that was put off , too . +I know this well . + Has it been a year ? +It 's right on there . + It is not only me . +So we did what we had to do . + And he said : Another one ? + It 's not going to be just be me . + I still do nt think it will . +But it 's one of many . +IT HAS BEEN A LONG week . +Then who should be ? +The next day he was not . +But there is much to do . +We have a very good time . +It 's like , I do nt know . +A few were children . +We have here who we have here . +If I were to do that , I might as well play . + Just not a good one . + Over there , over there . +It is all a little much . +We were not a group . + Is this still the right place ? +Just as long as we are there . + That 's just how it is , and there 's not much you can do about it . +I can only be there . +And how did he do it ? +But that 's how it 's going to be . +And do nt want to . +I did nt get it then . + Then I was nt . + We are city people , she said . +You do nt have to . + This is about this team . +There is no other way to say it . +In a million years . +It 's been going all night . + I found it all on the street . + And how about the other people he used ? + This may not work , he said . +It has been that way for years , he said . + Or since , I say . +That 's what they did to us for a while . +That never used to be the case . + I can only do my best . + It 's all up here . +We are still in the same place we were yesterday . + They would nt go for it . +I used to say , I just do it . +They have for me . + I would nt do it . +I work at it all the time . +Now , it 's just a street . +It has to work . +It 's all come at the same time in the same year . +It 's not just her . + That 's the only way to make money . +But we do nt get on each other . +I can say we . +They did not have children . +And what if he . + This is only the first part . +That is one part of it . +I think that is about right . +It was some time that they had . +For a while there , it was two or three a week . + You do this , you do that . +But this is one of those times . + Who 's in the will ? +It had nt been . +We should only get to where New York is . +You are not going to make money . +Then I did nt . + What do people do in the city ? + I know he 's with me every day , she said . +I think they are going out of business . +You know what it 's like here . + The more you get back , the more you want back , he said . +It 's not just them . + I just do nt know , he says . + That 's it ? + It 's a good life . + That was school for this , he said . +How did she know ? +It 's still my country . +And what do we get ? +You can not say that . + It 's our life . +Now you do nt see it ; now you do . + That 's just not what we do . + There was nt much going on . + I like this city , he says . + How about right now ? + How good is this team ? + We can work here . + It 's not like in New York . + They were all made just for me . +That would be good . + I know because we are here , we will make it . +Then there is the good will . + That 's the way it 's going to be around here with me here . + And that 's what I did today . + It could have been me , he said . +That is not the case here . +Because I know him . +How is this going to play out ? +I want to be back in New York next year . +It would put us out of business in three days . + You have a good day ? +I like it and other people will , too . + Who are you here for ? +But they could in time . +The first is time . + You play in the street . +Now it would be the other way around . +I did nt have time to go back and see . +Did you say it was ? +Many know him , or his family , and like what they know . +He just might have it . +My life is my life . +But -- is he ? + We go on to May , and you know about me and May . +Then , there was this year . + I have a family I have to think about . +They are still there , all right . +People want to be back . + It 's just not . +So he found out . +It was nt out by much . + You will not have two . +You are going to have to make me go out there . +But we do nt do that , because we know they want us to do that . + He said , Where are you from ? +I do nt know if he is . +I do nt know that they did . +This is what we do all the time . +That 's just how it is , she said . +And they come every day . +I think it should have been . +And you see it here . +It could be years . + We could nt do any more . +He was right there with us . + No , not me , she said . + There was no place to go . +I want them to . +But , he said , that 's not the way I would do it . + It 's good to see him . + You do nt have to work at it . + People could come and go . +But this is a new world for us . + Does the President have any children ? +Today , I was nt . +It 's more than a play . +Or so some think . +NO NIGHT IS TOO LONG . +Have I been on it with him ? + Do you know how we found them ? + And how is that ? +I never left the house . + What is American music ? + Do nt we know . +So which was it ? + And I do nt think they even know . + We have a long way to go . + I want to see the team do well , not just me , he said . + And the new . +I think each time , it 's just as good . +He just said , Do it your way . +And New York is a big place . +One of them has . + You never like that . +But for the most part what you see is what you get . +But is it too much ? + Children , what is it ? +I own my home . +I know other people do , too . +That 's not it . +I think there may be some of that now . +Other than - what I do is my business , with this team . + I did nt know what for . +And I want us to be on the case with that . + He did not have to . +They are not about to as long as women do it for them . + We have one game . +No , I did nt go to the game . + And what if they do ? +They do nt say , Where have you been ? +I could nt show here . + Here , they are more on their own . +I do nt know what people are after . +The What do you have for me today ? + And I was very good at it . +Two of us did so . +Then he called me back . + But that did nt work . + It 's off for now . +I had very little to do with it . +Her season had come . +See what he says . +All right , we are back . + Who 's out there ? +But many times we do nt know . + I know him too well , she said . + So they had to go out of business . +You do nt want to get up . +Which one 's going to go ? +When the market 's going down you want him to be in there . +Come back in two years . +But he 's back . + Here I come . +And take your time . +Would that it were . + It just was nt their market , he said . +It 's not that they did nt want me . + There were -- what ? + Not much , is it ? +We have too much to do . +Your first time there , my second . + It 's a long , long way to go , he said . + I did nt know what to take . + So that 's what we are going to do . +It 's never been like this before . +What if they had ? + We should have had this one . + Here we go , he said . + There was just no way to get out of the way , he said . + I said , Where are you ? + We did nt even play any music . +This time they are going to get it right . +That game is over . + They have to go . +But what could have been , what could have been . +The program said so . + I still do nt get it . + We have only what 's on our back . +All of us could see them . +And he has nt . +They also take work . + I just do nt get it . +Or it might not be . + We will be back . +He was now one of them . +Me , me , me . + It did nt last . +And it 's not all work . + I work before and after school . +New York City has not . +That 's me , I think , that 's us . +But these days , they might as well be . + What are they going to do with that time ? +She says it will come to her , but it does nt . +Well , they have . +And those who were with us , we may not want with us any more . +That would take too long . +And where we would go from here . + How do you do it here , with only them all the time ? + To make the play . +But which will they be ? + People , he said . +It 's not just women and children . + But she was there . +But it did nt . +Only one time it was nt . +I can come right back . +It 's what they do . + This may be my last game . +This is what 's going on . + I do nt think he has , and I do nt think he will . +And she does nt like it . +We are going to have to play our way out of it . +They were all over me . + They want to be part of the West . +Now it 's just two . +This time , though , the law is with them . + Now you can go . + That 's not me , he said . + How could you do this ? +In a country like this ? +We all do that . + She says no . +That 's all I want to do . +But I will , though . + And that 's all they have to say about it . +A : Who does ? + I said , How did you know that ? +I see her three times a week . + Where 's the house ? + Could nt get me out of that place , he said . +It should be the state of all the people in it . +This is a market . +It should not have been . + I know my people very well . +I like to work . + Did then , do now . + I do nt know what to do about them . +But in the end , I put it all in . + I do nt say , he said . +He will make good on it . +You just get used to it . +He : Too long . + I do nt like what 's going on , she said . +He did nt have a family . + Can you show us where it is ? +A few days before , he had called the police for the first time , but he said they did not show up . + You work your way up . +Now the game is national . + I did nt want it that much . + Here you are . +There 's also the here and now , and what you want or do nt want in it . +They do nt know how to do this . +Go with the last . + What did they all do in those days ? + I do nt think that . +That can take some time . + And it was a big one . + It was back to back , he said . + They come and they go . + They are family to me . +That , more or less , was the game . +For the most part . +Do nt you think so ? + We will take this all the way , he said . +It was not for him . +This was not the case . +I want you to think about that . +And he said no . +How much time off do you have ? + We do nt have time for that . +He has four children who do not know where he is . +We are not going to get down on each other . +This was about a year ago . +And this is what is here ? +And so will I . + But that was then ; do nt you know there 's a war on ? +There are years like that , you know . +You do nt have to think long . + They all do it . + You are the state police , she says . +I like my people . +He just would nt . +There are so many . +Children of their own ? +Were nt we all ? +But it should be . +This year , it did not come . + We did nt do any of that . +It 's about family . + If I do nt get the money , I do nt know . +There 's no way out of this . +Do we know where he 's at ? +Both then and now . +I did nt come out . + How could one not on this night ? + You say , Are you still there ? + And there are only two . +Here are a few of the best . +It 's my life 's work . +You are not out until you are out . + I said no , that 's not what I do . +And then where would he be ? +Both did not go in . +They just do nt know all the good that 's going on here . + I want to be President of the United States . +It was like going home to a big family . +It 's the way of the world . +But they were still a family . + There both for it . +No one can say he is against it . +That 's where the money was . +Well , so what , I say . +Other people go after them . + He did nt have to say much more than that . +Which is second from the left ? +If so , How can I get one ? +And one day , New York ? +It should be there on my street . +I do nt do it to show a team up . + But it just did nt work for me . +Well , no they do not . +I never think that way . +I do nt see him much at all . +They think , This is going to be all right . + But she 's here with us . + They left very little . +That could have been it . +This is a man I do nt even know . +It has nt been like that . + I do it all the time , she said . +How is that going over ? +Until two years ago . +And if he was going to go down , we were going to go down with him . +You do nt just work for the company . +I could nt do that before . +That 's what you did . +I could do one or the other or both . +He may be in another way , too . +So I want them to come here . + To me , that 's what the game about . + There 's only so much I can do , she said . +This is both just and good for the country . +Can he get it ? +How can you not ? +And if he is not out there ? + He was right then . +Now , he does . +I had nt used it before and I have nt used it since . +Is that also up ? + No one should have one . +Just one there were two until last year ) . + Do nt think I do nt . +He says do this , you do it . + I do nt have one , he said . + If that 's the case . + Did you see any other children in there ? +So which is it to be ? +He used to work here . +As would we all . + Are they all the same ? +This case is about a war . + We did what we could , she said . +One was about the war . +That 's what people should see . +There are some new members . +This one is on me . + I said , I just want to go home . + I know I do nt want to go . + And so they are . +Today is the right time . + How long is this ? +And Who Says So ? +Is that game over ? +Every day 's the same . +This is what we are left with . +It was her second day of work . +This team is like a family . +I will come back next week . +We did nt know it could nt . + It was never found . +It 's a business , too . +You do it the same way every time all the time . + I like the money . + How do I get there ? + I have a very good life . +What could they be ? +Well , there were nt . +Can you see me now ? +They were about to make a game of it . +The center was the only one in the city . +This did not take place yesterday . + Right now , we are not as good as we think we are . +For the time being , that is . +We can do it here . + Will he be big ? +Still is , has been for years . +Who would you take ? +Now , all people are after is money . +What is your business ? +Only he does nt know it . +It was the times . + This is the business we are in . + If you do nt do it right , then he has all day until you do . +They are like , Where were you ? +It 's what they show . + But it 's just not what people do day to day . +But what will he do to me ? +I used to be like you . +How did we get them ? + That would be a good way to do it . +What did you see ? +We have nt had it in so long . +We think it should be by law . +Another is on the way . +I have no say in it . + I just want us to get a place . + Do you know where it is ? +If it is , then what ? +So who do you go to ? +It 's not a way of life . + This is my business . +But that was the only time . +It is just a game , after all . + But he does nt want to be out there . + I know what he 's about . + Each day I think , Today I get to play the game . +Now , I do the same . + This is our place . + I did nt have to put as much into it . +It is up , it is not down . +And you know who you are . +You have to play . +After a while , you do nt think about it . +It 's about those that have not and those that have . +But still , there was only one out to go . + I do nt know if I can make it work . + No , he says , I do nt . + Now there are . + Which could be good . + And that 's what I think we still have to do . + I know people here , and they know me , he said . +But does that work ? + I found out that was not the best way to do it . + The people who did nt like me still did nt like me , she said . +Then he called and said I had the part and could play it that way . +So is American business . + I know he had to go out and show it . +I know it did . +This is how it would work . + What was she like ? + We do nt know where we are . +I said we could do it . +It 's where I should be . + If not here , where ? + I think it 's been like that all season for us . + I would nt do it , she says . +It would be good for us . +I think that is . + It 's going to go through , she said . +Today I did nt think too much . +It was very good money . + Did nt have much . +She says she can not go back . +But then we have no government . +There still is nt . + I think it 's going to be a while before they come back , he said . +And where do I want to go ? + Now they can get it here . + Because you could nt . +It did just that . +They are not good . +You have no right to say that . +But there is one . +I know what time it is . +And these people have no money . +Last night , he was all that , and more . +I do nt know how long it 's going to last . +More like three years . +Those are three of them . + You just do nt know how much he has . +Some are still in business . +I want to be out there , I want to play . + We do nt have another way . +He would like to . +They only have to play the game . + She did very well . +They had not been used in years , he said . + You never know , though . + So that is that . + It 's going to be here for a long time . +Now you can do no right . + It 's just in case , he said . + Now they have been . +Go home , think it over . +And so I did . +I just do what I do and get through it the best I can . +You think about them all the time . +I was part of it . +That 's what the game is all about . +He was nt through . + We want three children . +I could go on . +So business is very good right now . + So I left . + I do nt think we are going to know for some time . +They did nt like it . +She is too old , she says ; her public life is over . + But it 's not the same game . +We want you back . +It 's a place you want to get out of . +Have a good night . +I think that 's so . + We want to go out and play a good game , too . + Do nt know very much about it , he said . + I do nt know if we can . + And I said : He would nt . +Not just what was , but what might have been . +It did him no good . + He should be , . +There are nt many in New York . +Did I say that ? +But what is the music ? + I do nt know where the money would come from , he said . + That 's where we like to be . + Now that one is good . +It is not just what he says . + But what about the children ? + That 's the last time you see them . + They do nt know where I was . + Now there 's too much . +There are four in all . +She does not even know the President all that well . + That 's not the way I think , he said . +They have three children . +And the people see it . +Get out of this business . + I had to think about it , she said . +For the last three years . +It 's all one take . + They have it now . +Are we up to it ? +But not all of it . +Have him come in and see us . +What did we do there ? +It 's what are we going to do . +But you can still get to him . +We do nt know how it 's going to play out . +Well if I put that on , what are you going to put on ? +But we do nt , most of us . +How can we get that in ? +She says where 's that ? + Next year you will go . + I do nt go out of my way that much . +They will not be the same without you . +It was the best of times . + I said : This is it . + I said , Do nt do this to me . +That 's all that you can do . +We know about it . +His life was her life . + What do we do ? +Most of them are still out there . + This is the first time we will be out on our own , she said . +But many of them can not even do that . + If there is , it 's , Next . +That 's how people know him . + There is no way in the world we can come up with this money , he said . +He 's been around . +I had to be in a place . +It is this week . +For him , it 's business . + They are all around us . +Less than a second . + This is your country , he said . +The day before , they did nt know I was here . +Times have been good . +Still , I do nt know how much more I can take . +It said it right back , just like that . + How do you do this to people ? +He also has a family . +You do nt get any days off . + I know he can play up here . +At night the city is another place . + This business is not United , he said . +And they are well on their way to one . +If I had , I would nt have come . +Does nt that say it all ? +Has this been the case ? + We are not going to do that , he said . +But that was just for a week . + I do nt want to think about next year . + What do you do when you do nt have money ? + That I do nt know . +It 's good to be back here . +Did he have children ? +Never , never , never , never , never . +What could be going on ? + People want that , she said . + Do nt back off . + It is just the two of them . + It is the same with this man . +But they do not see us . + You can be in there as long as you have to . + It 's what I did best . +Is this my first and only year ? +How good are they , and how good were we ? + It does nt set us back , she said . + They said to me , Could nt it be this ? +Now , they might be the first in and the last out . +Then what do we do ? +They are just the same . +It will not be over . + It has nt been a good day , she said . +I just did nt know how good he was . + There had been a time . + I like that house , she said . +To show that it can . + Over time it will be going up , he said . +What was being said ? + It 's just like any other day , she said . + But I did nt see much there . + We did work at this place , he said . + What time is it ? +In this case , it was . +We could nt come back from that . + But what now ? + The program has been well used . +But what did they have to show for it ? + That could have been me . +And now , that 's it . +New York will be back down . +You have the same time on and off . +Where would my life go ? +Can you make it ? + I take the good part of it . + If they could see me now . +They want to do more . +And that 's what 's before us . +They would not end at the same time . +And he would be right . + That 's the only way you can take it . +But not all is well . + What 's it like ? +So do we all . +We were in it now . + In any case , it is out there . +I did nt get it down . +This is the next New York . +He was all right . +Or so we did . +We are all the same here . + I do nt have to , since it 's not my life . +A : It could be . +You do nt have to go get the money . + I think I can get on more , he said . +No business , no money . + And it did . +Where are people like that going to go ? +Not all the time . + He said do nt end up like him . + If you did , where would you go ? +No one could see you if you go there . +Her season was over . + But it 's one game . + It was not . + This is what our work is all about . + No money for me today . +It was just not my day . + But he was on his way home . +Best of the Best . +Or so I found . +He would nt have it any other way . +But to think what ? + This is the best time of day here , she says . +But I would never go out that way . + I had to - that 's all - I had to go . +Here , it 's about the show . +The people who should know say no . +They do nt last . +We do nt know where it will take us . +But what are they about ? +At first , I did nt want to . +How do I get it off ? ? ? +There is good will . + They are the same to me . +I never have been . +But you do ; you do . + But I did nt see any that night . +Some people would be for it , and some people will be against it . +People do nt know what they have here . +There 's a place for us . +Right now it could be both . +For even more money . + We do nt have much time left . +I do nt want to even think about that . +When is it not ? +But this has been the case all year . + So , he said . + He 's part of the team . +I think we are going to see more of that . + He said : Not now . + And that 's all . +This was nt our night . + And we want to know : can we get them from here to here ? + There 's more of us , he said . + It 's like : What can I get ? + He said , What about me ? +But who is World ? +They did this well . + That , after all , is what it 's all about . + Well , well , she said . + I may have to go back to school , he said . + I take it off . +That is my work , too . +If it was , he made the most of it . + What can we do until then ? +Now it is just the three of them . +She said she did not do so . +It was by The New York Times . +That 's all they think of . +He is nt the only one . +This is what they do best . + You see that house ? + We still have a way to go . + I could nt see it before , but now I can . +Now we do nt have that . +That was it for last year . + I just go about my business . + Not even like this . + I know how they all come out , I say . + It 's now a world market . +You should make it . +You do nt want to know . +He 's been there before . +It 's not a business in any way . + So do I . + It 's about you . +I do nt know if there was another way . +They are not out there . +We are going to have a war . + One Two Three Four Five . +What 's with these people ? + It 's all down from here . +They come and go at will . +Still , he did not come off well . +Can they get off ? +It did nt show up . +He had to work on it . +The New York Years . +I know I could make it . +But not this one . + All the way down . +He left it there . + He did nt say , I did it . +So we do nt have what he has . + I think I can , I think I can . + How many people have to say you are right before you are right ? + Is nt it time we had it , too ? +He had a few very good days . + Not for me . +After all , we are the country of . + Get a life , you say ? +We are over it . + How big can you go . + I did nt want her to play , she said . +It just did nt play . +If so , it was one of few . +For a while , they did . +But I do nt think they would want to . + I do nt think it will be long , he said . + I said , Is that so ? + I own a home because of this , she said . + For each one of us , we are our own police . +So he did , too . +He has to like what a company does , too . +I have too much work to do . + Or it might not be that at all . + What are you going through ? +But I did nt know what it was . +But I do nt know if that will be the case . + What did nt she do ? +This time we are going to do it . +The people say it . + I was put into this world , she said . +What about your own life ? +We do nt like what he did , go . +I just did nt know if I had it in me . +You want to be there . +Is it all one way ? +Who is she ? ) . +When are we going home ? + I do not have any of that . +But that may not be the case for long . + This is the end of him , he said . + We did not see it that way . + It 's not about being a man , he said . + The state has no money , he said . + If you want to work in the White House , work in the White House . +What would you like me to do ? +Or a Political One ? +There was no way out for them . +It would be very good . +But I think that our people want this . + May I come to you ? + Because it 's not . + Two , I say . +Not in this state . +She does nt come back . + Or , I do . +In a year , I might say , It just did nt work out . +They may have been right . + It could work the other way around , he said . +Some did , some did not . + It is a family . +I can think of many . +This time it will be . +They want to know about his world . +I was like , What is this ? +That 's the way it is in New York . +So can I go home now ? +It 's still not him ? +And so had I . +Right , they take you with them . + Where is he going ? +You will all think of me . +But I do nt think you have to be the little man who was nt there . + I just do nt want to go . + What is it going to do for them ? +We are both such a long way from home . +A little up and down and up and . + That was the best time of my life , he says . +Now we had a week . +And a next day of it . +Well , which do you have ? +We will be all right . +But I do nt think that 's been the case this year . + So , do you want it ? +They want to be him . + You would think it 's a new world . + It has been for a long time . + I did my part . +It 's up to the city . +One and the same . +Who 's on first ? +Who did this to him ? +It was for me here , too . + I do nt know where I want to go . + He would not do that . + I know what that does . + They will come from all over the city . +What can people do . + Just one play of many . + He has nt much time left . +But will I play ? +Well they do nt . + This was not a game . +After all , it 's only for one night . +Can I come back ? +They do nt do too much -- but what they do , they do well . + My game is what it is . +We like to be with them . +But he did have his say . + We are going to get there , though . + The show was on . +This is a new season , a new year . +I want to do that . + Is that what they want ? +At the same time , it is what it is . + I know , but I want it to , the man said . +It 's going to take time . + They had not . +Do you want some ? +It 's never the same . + I was in there for a while . +All people should know this . + Man , where you been ? + I should never have said it . + Do nt have one , he said . + We never did , and we never would . + Two of them were in this group . + How should she do it ? + Do nt say , Could I ? +I did nt know that then . + She is going . + I made two , she said . + They want to be the only group left in this school . +They know what to do now . +She is one of the group . + Our police will not work , he said . + Now , we get to the United States . +What would you have me do ? +I would nt think I would . + How did I do that ? + If you do nt , you go home . + Today just was nt my day , he said . +There 's so much more out there . +We are all family . + I do what I can , he said . + It 's good for you , he said . +Where was our State Department ? +How long is it going to take . +Which he did nt , by the way . + There are women like me who like to work . +Did they get it ? +This is all good . +It is New York . + And that was it , she said . +I think he 's going to play . + I think our team will do well , he said . + They do nt even know what it is . +Have we been had ? +What do the people do ? + You just do nt want it to be the next one . + And he said , We should do that . + Well , so are we . + It 's just as well , she said . + I said : What do I know ? +You do nt have money . +It 's what the team does . + If I was nt on the show , it would nt be as good . + Those days are over with . +What more can I do ? + And that 's just one case . +And where will it take him ? +But you have to know your way around . +He is one of many . +But is that so ? + I said he 's not . + I think they are good people . +Even though I do nt have any . +It 's not with me . + That 's what he 's good at . + To do more would be too much for the children . +Or , it did . +But what states will be first ? +Come and get me if you can . + It 's the law and all . +As well as his team . +Just as well , I think . +I can get back to that , but I do nt know if it will be until the off season . +The business is here . +What 's left for us . +So I do nt to this day know . +Then you say , How long ? +If you are a good team , you are a good team . + These are good people , he said . + I did nt want a three . +Now , he does nt have to do that . +But he does not think so . +First , many do nt do it . +But they did nt last year . + I think I would like that , he said . + He 's on the money . + It was a war . + But we are not going to do that now , he said . +But I could nt think of how to put it . +That is what I said to my team . +But there is little to see in the house . +But that 's all I have to say about that . + We called back , but we could not get through , she said . +There has been little of that . + This is New York City . + She does nt work like that . + It is not just about New York City , he said . + And that was it for me . + And many did . +Do I get out now ? +But where do you take that money from ? + Some have more , some less . +This may be good . +It was just like old times . +They are just people . +Go on the street . + It was a home . +It 's been more than two years . +There could be no other way . + You do nt know who to go to . +At best , it will take years . +But all around there is life . +But it 's the best that we have . + That 's all , right ? +Not for a long time . + But no more . +Now I know how . +They get up when they want to . + They are still both around . +And he did , too . +And we do that . + I did nt like it , he said . +I have nt been there . +But that 's what the day was like . +In My People , Where Are You ? +That would be a five . +And on the court , he does nt think too much . + So we are just going with that . + That 's just way too big . +And the only way out is to have a national government . + She was one of the best , he said . + I do nt like the war , he said . +They can do this . + What made you come here ? + We still do nt know that it is . + So there 's that . +Only four people were there . +And , that is as it should be . +There 's more in that for me . +Life has never been the same since . +They just like to have them around . +You Can Work From Home . +But here it 's good business . + And so she did . +But I never did . +He has to say that . +Then five years ago , I did , too . +It 's old and new . + How come it 's not here ? + They are good , are nt they ? + There 's no law . +We are high on him . + For them , too . +Still , off they go . +How could I not do it ? +But where would that money come from ? +I work for the government . + We were down after the game , he said . +For us it is nt . +I do nt even know how you do it . + But this is a business . +Such was the case last night . +You could nt show it . +What did he make of that ? +That may be its only good year for a while . +He did it last year , too . +What did she think of all this ? +So which did she like best ? +Here we want this , but get that . + We are a country at war . + Like most of us . +Which one does he want ? +So , where is it ? + I would nt be like that . + Then she called me in . + And he said , I did . +Would you like to play it ? +She would not say . + What Would He Think ? +We had nt made it there . +Today he was , and he did . +They think they have found it . +And I know she was nt the only one . + I used to think they did nt , but they do . + How right he was . + I just use them as they are . +They were both only children . +It 's the end of the year . +There are some people that would do that , and then there are some people that would nt . +Every day of my life . +We did nt know what it was . +That has been the case for years . +It 's my first day , my first game . +It 's his right . +One , two , three , four , five . + Would it be all right with you if . + You just want to play the game the right way . + Come on now . +I do nt want her to say , How could you do that ? + Did you see it when . +It was from I . + He said he did . + They have a right to be here . + We do nt do them all that well . +What do they do with it ? +Now on to the show . + I do nt go out much , she said . + But it does nt come back . + I was not political . +That is what he is today . +It 's not you , is it ? +Is it to do the best it can ? + It 's going well . +And also as the last . + How could it have ? + That 's what 's going on . +We do nt like it as much because more people like us come in . + He said , Here , take it . + I think we have three years , he said . + It is us . +But , there is no time to think about that now . +Did he want to go ? + How did I know you were going to say that ? +Not out of the country , or even to another American city . + I want to do what I can . + He could have it all . +Should have , would have , could have . +If I did nt show up they would nt work out . +How did it work ? + It can be a little much . + I used to like that . + It 's just for a little while . +That was not what they were . + What is it called now ? +No one would do that . + I did nt do it for that , he said . +Did they go through with it ? +But he might not be . +He : Just for a while . + She is what she is . + They have been there for us . +If this is what I have to go through to have it , then I will . + It 's our country . +The three children set the new one in place . +He has not been well . +Will you have children ? +We just do nt see it . + They just did nt want to go back . +So , you make do . + It 's not new for them , he said . +Think of you every day . + What are we going to do about this ? +I was still like , Who are you ? + But this is our house . +It should be up to them . + So did I . +And some of them get it . +And you can see a show every day . + It 's just one little part of the world . +I do nt know if that was the market I was in . +Who does nt in New York ? +Then I found out I did nt . +That 's just the way it was . +I want this over for my people . +Is that a team ? +You did very well . +Well , What Next ? + They are one of the best . +So what should we do ? +For this they left the city ? + There is no more money here , he said . +It could go off at any time . + She 's -- how should we say it ? +Well , it has to be . + When he 's up , he 's up , when he 's down he 's down . +The year of no President . +And I want to be part of that . + I may not come back . + We do nt do that , they say . +There is so much music I still want to go through . + But how many will play , we do nt know . + They are on the way up . + New York is New York , he said . + We just do nt know . + It is nt going to work , he said . +But it just is nt the case . + Are you in it for the money ? +I could not do it . + Every day could be our last . +They were second in the country last year . +And so he was . + He had all the people in his family . +In with the new . +They get them on the street . + Can it work ? + It 's just the two of them . +Now that I think of it , it 's not just him . +They should all get life . +You do nt have to like us . +There was little to go on . +You just do nt have a good day at work . + You have to think of where I come from . + We do nt see the world the same way , he said last week . + But it will get through . + For the first time , he said . + I had to come , one man said . +In by five , out by one . +The company says no . +He is that , too . +So , come on in . + It has nt even come out , he said . + Like our house , she said . +I do nt know what to do about it . +It was a big show for the public . + Life is not the same . +And then under the next President he will get out . +And you have made the world . + For us , he said , that 's good . +Right now , it 's been up and down : up last week , down this week . +What more could you say ? + Well , it did nt work out that way . +What do we do with it ? +You might think of it as The Little House That Could . +So were we all in those days . +I just do nt know what it is . +I did nt do as well . +It will be one of those three . + I just go out to play the game . + And that 's the way it is . + He was in the right place at the right time . + It 's not like in the States . +You have to make the best of it . +We were never going to get old . +Been around too long for that . +We did nt do that last year . + The market should do it . + This is all we have left . + He said no ; he just would nt do it . + I like it here , she said . +But he did nt think so . + We do nt know where he is . +And the law is the law . +But he would nt say where . +They do nt know what they want . +Still , that was not all . + I just know it is . + I want three for him . +This is home for me . +I did nt know the way . +The people who are here want to be here . +Where would it all end ? +But more are on the way . +The people left were family . + It 's good , very good . + You get around . +That does nt work for me . + But these I like more . +And it did nt work out that way ? + It is the only place to go at night . +That will take work . +It 's the best in the world . + We think we will do very well with it . + Every game is a new game . +I do nt think it is the same . +There was not much I could do . +We would like to play him . +He is not here today , as I think all of you know . +It may be your last . +It 's how you like it . +If I left , they would know I left . + It 's not going to be as good . +Can we do it . +And they do it all the time . + He could be any or all . + Not so at all . +But may I say this ? +And now it 's not . +All the children of the world . +This would not be another . + But , he said , they are in use . + Because I want to ? +It is the other way around . +Who is the I ? +On the first night of a new season ? + What in the world ? + Now we are down to one or two . + All of them but me . +This time is over . +I think we can do it on our own . +Do they get it ? + She 's just like that . +We had to go to the state . + I do nt think it was political . +We should go back to see . +But I think it was too much for them not to go for it . +In this case they are not . + They think that if they come here , it is the end of the world . +Go by what you see . +But we made up a long time ago . + And he said not at all . + We are on it . + I do it because I like to do it . +They say it did not . +I want to be well off . +We have to do the best we can with what we have . + Even when our country is at war , we are still people , he said . + She called me and said , How much time do you want ? +But you have to go on . +You think you own the world . + That 's not our business , he said . +The other is down also . +You never see that at a big company . +They have to have it . +We are on our way . +It could be their season . +I think it was big to get through . +We just have to go out and do it . +What they like about it . + I do nt want to see it . +And do you know what we did to him ? + I do nt know what they want . +The New York State Political Police ? +He did not work out . +He was one of the best . +Time was another one . +What 's it going to be like this time ? + Where is all that money going to go ? +So go for it . +They know what I want . +Now you can too . +Are they still used ? +But it 's over and I think we all know that . + It is your life . +We just want to get out of here . +He had never been there before . +He did much good in his life . +He has them all . +It 's for us . +I have a family to think about . + All right , I said . +Not out , off . + So he 's out . +All that time , though , there was nt a day in my life that I did nt think about her . + And I was nt very good . +They take their money and go home . +Who , you say ? +I do nt want that for him . +Go out and play . +He did all of this just in case . +She was never found . +But there is much work to do . + I did nt do that , would nt do that , he said . +I know there 's more to us . +But that 's the best part . +They have a family life . + Then they called us . + I just do nt know , she said . +But how long can we do it ? + But it just did nt work out . +Well , at last . + He said , Who do you want them to be for ? + But you can never have too many . + This is my home . + What a man . + It might , he said . +I think they should have come to me . + She was just around . +But that 's in the best of times . + But you have to see them to take them out . + But that 's another play . + Think of it that way . + We would never do that . + So now is the time . +But then that would never do . + If you are out here every day , you get used to it , he said . +But it was nt like that . +I think there has . +He did nt last . +He may be the only one who is . + He said , well , he could nt . +This time , they want to . +He was here for a week . +She does nt even know how good she is . +It 's what I do day in and day out . + And all we had was music . +People have to come . + It was the end of the world . +I did nt know where to put them all . + But I think I was . + This is not the end of the game . +They are very good . + They have no children . +Public money is just that : public . +I have to think about that . +And if he did nt ? + And this should not be . +I think he can be very high . + How could she ? +He 's not going to say much . +But if you had to do it . +Never do that here . +It 's not just about me , it 's about them , too . + And did I know you ? + What 's the Use ? + You think these people have money ? +I can do it , too . + For the most part , I still do . +They did nt see me . +We are the first week in May . + The war is not our business , he said . + What should he do ? + This is a business . + Who are you with ? +All we want to do now is get back to them . + I do nt know how we are going to play , he said . +That 's all I was . + I do nt know if I did it . + There you go , he said . +They put it in the right place . +The court says so . +I just want to get through this and go home . + It was like , That 's what we do . +They put me in . +He was like , Go in and see what you can do . +So : what 's next ? +I like my new school . +It was not the way it is now . +If the team 's going good , I know who it 's about , and when they are not going good , I know who it 's about . + But that 's not our business . +I said I was going to be back . +That was all she had to say . +But they could do little . + He said they are not here . +Now it 's down to one . + Some of our women take even more time . +But there is more this time , with this team . + It 's like life ; you work your way through it . +Some had never been to the city . +Would it be all right with me ? + We know so little about it . +I do nt even know where it is now . + They have very little right now . +They can only put out five . +They are part of a new game . +I could nt do this without him . + Did you say over ? +I just do nt know how they do it . +How will it end ? +They had to say I was right . + They do that here ? +Many people do nt . + If I get five years out of this one , it will put me where I want to be . +I do nt think we are one of them . +Do we like them to last this long ? +We have nt had any the last week . + He would nt have said that when he was there . + One of us has to go . + But we still do nt see it that much . +That , said many people here , was how it should have been . +And play some more . + These people were not after money . +THIS is more like it . + He 's going to be big . + There 's no place like it in the world . + And I said , All right . +Just not now , she said . + And New York is one of them . +Still , one can never go back . +The same could be said of New York . +That 's what the law is for . +What is there to say ? +It 's not new . + But what , he said , if I have to do more than one take ? +He found that he had both . + They all know what he is . + Not right now , he said . +What do you do with them ? +Which I never said : He 's out . + Was this going to work ? +But how to do it ? +Is it because this is New York ? +It was not a good play there . +It is where we are all from . +You do nt do one without the other . + That is our market . +But after money , what ? + You know when you get it right . +He had said all he could . +Are they the only team to do this ? + That was a good game . +And what a few days it has been . +I said , no , not me . + But they did nt do that . +In music , you do nt have that . + We can do it , he said . +That was what I had . +He does nt have much money . +My school had its first last year . + WHAT TIME IS IT THERE ? +What 's in it for her ? +You can work it out . +He said , Where do you think you are going to go ? +So that 's the end of that . +I think it is going to be a good year for us . +Good work by all . + She did nt like her house . +All are from the United States . + Me , she said . +It was time to go back to his children . + He has never been that . + I want to see my house . +This will be the second . + What would it take to make it end ? +My work is not the play . +Then he said , Get back to work . + Around here , it never does . +You may be next . +We want you to get it first from us any day of the week . +A war is going on . + That 's not up to me , he said . + We just play day to day . +They should know that we know what they are up to . +So where are they going to come from ? +This is our company . +He 's just not that into you . +The next team should be his last . +But that is all . + I had to think and think and think and think . + Its day will come . + And they have a right to . +Which is for you ? +No , what is it ? +He made some of me . +That is what is said . +When is a home not a home ? +This is an old case , but it 's not over . + If it 's the law , so be it . + They say , Not you ? +At his best , he was that good . +And the same in New York . +That is not who we are . + How would we get out ? + I was out there . +There is no way out . +We are going to take it . +And I have to take some time to think if that 's best for us . +But there 's another part of that . +All were his children . +No , it 's too much . + Back to work there , he said . + But we know they are out there . +That was how it was . +But only when it is just that . + It 's over here . +That 's the business . +If not , I do nt want it . +But he left us this . +Could you use more ? +He only has me . +It will work out . + It 's good for you , he said . + Can we do that ? +It 's been the same . +They were nt put out on the street . +So you might as well just go about your business . + But it 's been his work . +That 's the season . +If we do nt have them , they get them . + Can we get any ? +No one was around . + You think this war is over ? + He would go , would nt he ? +So did the police . +Never be like me . +That 's not because there 's another New York . + I put it back there . +But , no , the country is not at war . + They work , he said . +It just is nt so . + The American people want me to do this , he said . +So I know it 's not just me . +I do nt want to go into that . +But that is nt it . +You do nt know what you are going back to . +We like you here , you know . +I do nt know what you make out of that . +This time , it did nt work . +The business did nt last long . +They do nt have it . +How does she do it ? + He said , You know what ? +No , she is not . + This is not like me . + Big time , he said . + But she did nt do that . + How Could He Be Out ? +It 's not his way . +I do nt do much . + I just want to get out of here . + We did nt know , the man said . +I just did nt know how long he would take to get over it . + That was one game . +Do people want to get to know you because of who you know ? +What had he been up to ? + Good companies can still go public . + You want to make the most of it . +Just have him come in the next day . +And I do nt know how to get them out of it . +I know this place . +Did they do that just for us ? +And when you left , we were . +It was after them , not you . + It 's just him and me . +Time to go in . + But now we have to think about it . + Other than that , it was just game after game after game . +I used to go up there all the time . +Be with us in this war . +If we are as good as we can be , we will . +I want my home . +And we think that 's the way to go about this . +But I do nt want to get into this . +No , no , no , around the country . + I never have , never would and never will , he said . +These are our people . + What 's that going to do ? + We are a team at home and at work , he said . + We can only make one or two of those , he says . +I know who she is . +My , my , my . + That is more than I would like to have , he said . +Then they get it . +There is no good in it . +It is just not the same game . +But he did nt know that , because he had nt been there . +I think I would . +I think you can say that 's what it is . +But I like to think all of them are big . +Now where are we ? + But I found it . +But we should see some more . +But what about during ? +After all , if they did nt know , who would ? + What do people want ? + Now we have it , she said . +There are four , not three . + So this is about the same . + And when is the time for that ? +But this is too much . +It was more than one and I just do nt know how long . + Because I see the same every day . +Each one on his own . + I just have nt had time . + I had to be there , he said . +But can he make a go of it ? +I go on to the next case . +We do nt know how this will play out . + They get me home every time . + Or : Do it . + We said how . +One of us will have to go . +Which it is and is nt . + I want to go home and get well , he said . +It 's the other way around , too . + Where are your women ? +It could work like that . +He does not say that . +You go on home . +But I was here first . +This is the way of the world , is it not so ? + How could I not ? + What did you do ? +How did they do in New York ? + I have nt had them in a long time . + That 's not the end of the world , he said . +And that 's good for me , too . +Where and what are those ? +So that was what she did . +Do you see that ? +I do nt come from that place . +I do nt know if I could take it . +And he did nt do it . + I had never been down there , she said . +She had it , too . +And that 's about the way it is . +It 's not all just for children . +What do you like to do ? +And then the Federal Government will get out of the way . +There is no money . +That was no good . + This week , he said . +We may play one more . +Where is that money going ? +Where can we go ? +I do nt know what to make of them . + For a little while . +My , Where Did the Time Go ? + That 's what I think . +I see you all the time . +It had to be just right . +He said , What do you want ? +It still has a way to go . +Most big companies use both . +They make it more so . + They are in our country . + There 's more to life than money . +That 's just part of the game . +You do nt get the people in government that you should . +This is as good as it 's going to get . + Now I do nt know . + How do they get in ? + It 's not good for business . +At first he said no . + That one , he said . +This is like a second home to me . +It 's for money . +This is nt going to work . +And so it is to this day . + He would nt put it in , he says . + I did what I could out there . + I do nt have the time , she says . +They have never been this way before . + Are you still with him ? +But home is not just the house . +He will go on that way . +This is our year . +And where should we go ? + What is there for us ? +But , he said : It 's good for them . +Well , there are nt . +So how have his first days been ? + You and me . + There was nt much to say . +The second time is now . +That 's just not us . + That was nt a life . + That will have to do . +But when will it be over ? +I go the other way . +Where did that one come from ? + I may just end it , she said then . + But we are the people who are there every day in the music business . + She was so good for me during that time . +It was a white place . +Just one , you know ? +I know several people . +No one would say . + It could be , but it is nt , she said . + We all have . + Should nt you be in school ? + But when you get there , you see it . +You see , next week it 's back to school for our family . +She is with her all day , five days a week . +Today was a long day . +That is the place to be . +We have each other now . +There 's not much you could do about it . +Now we have the home court . +And I had just been there . +There was war all around us and war at home . + You do nt think about it . + And that is good for us . +But they also know that we do nt have this time . +But the work was his . + We are new at this . + We are a team . +Now I know how right I was . + It 's a little high and to the left , she said . +You are going to end up just like us . + I do nt know what to do to make it up . +And if so , where can I get them ? + He did nt just play . +And we did not even know her . +How long do you know me ? +No , I did nt know that . +The people here are good people . +I did nt make it up . +But now , as you can see , people are . +Because their family does nt have any money . +I was not used to that . + All the time , she said . + I say there are . +He does nt show up and say , How about if I do this ? + What 's one more ? +It 's my first game . +Here 's part of what they said . +They can make the big money . +Or even on three ? +But that may not be the case . +Well , we had that , too . +What about my family ? + I just like the business , he said . +Not now , he said . + I think business has to do it . + Did we come all this way for this ? + Even he does nt know what to do , she said . +We are going to get three more of them . +Who did nt play ? +And that 's just the A 's . +This will not be that . + All we know is that we do nt know much . +What does he know ? +But I will now . + No , I do this all the time , he says . +There 's one for the people who have and there 's one for the people who do nt have . + This is the only one left . +That was the case a year ago . +This would nt do for long . +It 's a night city . +I did nt go . + In between were a people who were just right . +Where 's it going to come from ? +For all I know , they may be right . + They have to get it down to the second , he said . +I used to have four . + You know , she said . +This is not the way I want to go out . +What would we say ? +It was like home . +But can they be ? +But as to the country ? + The only way we can go is down . + But do I get in ? + The game is to be the last one out of business . + There have been so many , he said . + He has come to life more than any way he could have . + White , I said . +Still , What Is It Then Between Us ? +So should his university . +You can go on . +The last to do it ? +How to put them off ? +It has been a place to come to work every day . +We are part of a very big group . + We only have one President at a time . +But not that night . + You would nt take their money ? +Were they both right ? +I do nt know what I did to him . + It 's only what they want you to see . +Not for me , not for my family . + I do nt think I had the team made , he said . + What Are We ? +They do nt even know what it is . + The money does nt make up for that , she said . + That 's what it 's all about , he said . +IF only New York were here . + He still has time for me , she said . +We will never get over it . +It still does that . + It 's like the old days around here , he said . +It is for me . +But what does she know ? + I still play it . + We left it at that , he said . + But I know there 's going to be a next time . +That 's what his life was all about . +This time we said no . +It 's not the city . +This is not about money . +And much the same could be said today . +There are more like him out there . + I do nt want to be part of his team . + It may be , What do I do ? + But , most of the time , he does . +They were out of it today . +But can it work ? +Well , some people have . +You know what we should do ? + No , it was not . +But if they do , that 's not what people go for . +No , we did not . + Show me how you do it . +Here 's what I do know . + And they are both both . +And which me are they ? + Come on , he said . +Is that the way to go ? + Some days it 's going in , some days it 's not . +What is going on there ? +I do nt see it the way you do . +He had left it money . +How did you come to want to do this ? +This has been the case for years . + I did nt want to see it . +It 's not just that . +Now what will you do ? +So should I come ? +That 's too many . +You can see that now as well . + It was a set play . +But not as much as he says he has . + Good work , I said . + She did nt . + But I would nt want to have had to do that . +Like you , I have a family . +We get it , but they do nt get it right . +They could go to the What Is It ? + There has been much good will . +What 's the family to do ? +And just how do they do that ? + It just can not come and go like any other day . +He should know that . + My life is over . +But what about next time ? +That 's how it is out on the street . + And there is more to come . + He 's going to make it . +They did nt have it before then . +They had all been there before . +So was the White House . +The president called the police . +That 's the one we have to get . + What do you think of that ? + And that 's the way it should be . + But I do nt see it , he said . + I have to be , she said . +I do nt think he would want to . +I was , or we were . + This was my family . + It 's too much . + It was the law of city . +Now it 's about us . +We did nt have it so we want them to have it . +It just was nt the same . +We will not back down . + He said , When you see this , what do you think of ? +For what , we did not know . + That would be good for both of us . +It 's not up to us now . + People did nt think like that before . +But they could nt do it . + It is a good program . + How did you do ? +I had to see it . +What 's there to do ? +Is that so now ? +I do nt know how I could go on without him . +I did nt want it to be that way . +It should work out . + It 's our time , he said . +The President : What did you say ? + No , I want the last one . +That is not what it is about . + It 's all part of what I do , she said . +And , he has never left New York . +But it would work . + They want to get back to that . +That 's not very many . + He can do it . + What are days for ? +But they work for it . +It 's game day . +You should have come in the war with us . +People see what they want to see . +He would like to play more , but , as he says , who would nt ? + Not in its first year . +He did , so he did . + I said , What was that ? +I been there before . + We were there four days . +What should they be ? +I do nt know what I should do . + It will have to be a team , he said . +He does nt think that he 's that big . +I just end up going off on my own . +Money does nt do that . +That 's what he does . +Four in one season ? +They may be there until next year . +I left , and that was it . + I work , he said . +To the American people . +They could be children . +You were all with him to the end . +Now it may have to . + You do nt make them . +One way is to go right back in . +And that was just as good . +That , and the music . + But I did nt think I was so off . + I do nt know when . +And how can they ? +Some like him , some do not . +Then what do I do ? +I did nt think he would . +Even the police say so . +She did nt know it was in New York . +And after that , in two or three years , the United States . +It did nt work . + But that 's not the end . + We are going to get by . + The world will know us . +And that is all he will say . +And then there it is . +You have to just be . +Would I go back ? + Where does all this come from ? +It was on last night . +But that was nt the case , she said . +It 's their game . +If not , it 's also good . + Will you play ? + I had three children . +Where does it all go ? + It 's home . +It 's been very good . + He 's still not here . +She did not want him in her house or around her three children . + This is our business , he said . +They did not say any of that . +Who does nt know ? +But five years is a long time . + I think about that all the time , he said . + The City and I . +How they do it . + Do it for me , he says . + And she did nt want it . +One group of people did not know the other group . + I did nt want you to . + We know each other more and more . +That 's in any game . +In business , you are not . + In the end , they did nt . + And I have to say that 's right . +This is a good time to do it . +What more was there to see ? +I long for her . + I was well . +He said , I want you to do it . + Last night , he said , did it for me . +On What Can I Do ? +Now where does it go ? +What did the court do ? + But at the same time , we have a long way to go . + That was the only way . +This team will be back . + So that is what I do . + We have a right to know . +Now they are three . +But for me , now , this is it . + She 's still there for us . +It 's part of this game , man . + It was : How do we get there ? + But they do nt last too long . + More are like me , she said . +Who do you think they want to be like ? + No , he could not . +So I left it up to them . +We were nt right . +We are a good team . + I did nt know about it , she said . + I do nt think we are going to make that . + We did nt want to make one of those . +That 's what 's good about it . + Now there are so many . +Then there 's the music . +Who is the we ? + But I want it to be the same , I said . +We never left the house . +This is the people 's team . + And what he does not want to do . + Every place is New York today . + People want to do it all , he says . +It is out there . +For a school night ? +That , I know I can do . + It was good for all of us . + But they are not going to do me in . +And in every case , they were . +What does it do for you in this world ? + I was in the way , he said . +They think of what if ? + We might as well be home today , he said . + I did nt see what was going on . +All of them are the same . + He did nt much like it . +You know more than you think you do . +She did nt want any and he did . +Does nt work that way . + I want to make some money . + I do nt know , he said at first . + People just did nt get over it . +So what is this place ? +You should know it all , but you do nt . +How long was it ? + It was one play of many , just one play , he said . +Or should have been . +But I had to go back to work . + It 's not my business , he said . + This is my first time here and my last . +I do nt know what it was . + We think they are first best . +We do not work for you . +We both know what it is . +It 's not work . + There are going to be days like this . + It 's me , she said . +Now they can see me play . + I do nt know what to say about that . +I do nt get this . +More than you might think . +When we do it , we have to do it right . +And come it does . + I do nt think too much about it , he said . +She had three children . + Now we are in another place . + He has nt been that down . + And these women were of our world . +Show me what you did . + He is the only one who does . +Today , or when ? + That 's all there was to it . +I , too , own the years . +I think about her all the time . + And now we are just going . +And that is what they did . +I made some money . +You want a few more ? +But that night it did . + Now she can . +How you get there ? +But we have work to do first . +I have to go to work . + Do nt know , he said . + I said , no . +We may all know . +No , only five . + It was nt going to come to us . + Now it 's time for me to go , he said . +There is a political will . +At night , even . +There 's not much to it . + We do nt do this , he said . +One out to go . + They are home . +I would nt be here if it was nt for him . + We do nt even know that , she said . + Then it 's over , he said . +There might also be less to see . +There should not be . + I did nt know if it would get to him . +We did nt think they would . +If so , what is nt ? +I want to be an American . +So which way do you want it ? + I did nt have any money , he said . +Not the old people . +That will take some years . + You are going to think about it . +He is right to do so . +Now I do nt think it is going to make it . +All in one week . + I should have , but I did not , he said . +It 's new in business . +It 's the first team to four . +For him , that is just as well . +I just do nt know what to say . + What do we think of this place ? + He was put up to it . +It 's a good time out there . +She used to be them . +Both have their place . + No , it was nt . + Now you take it all with you . + A family is a family . + What was I going to do ? +But the place would not be what it is without both . +We in the city are part of the state , even if we do nt like to think about it much . +It was not the President of the United States . +And then there 's . + What is he ? + I want to be out there . +So much to see . +But I do nt think there is much we can do about it now . +But that is now . +What work was it ? + You do nt do it for the money , he said . +Just one more year of that , and then I do nt have to do it no more . +To show or not to show ? + Who was the other ? +It 's one of the few times we can say that . +Now that you know what to see , where to go ? + I see him around in the off season . + They are on it , man . +We did , and he did . + This is for him . + The children are like our own . + Not at all , she said . + I do nt want to see him , she said . +They do nt get out much . + Not this program . +What was I going to say ? +It 's for business . +Or have to , because of the time . +And there he is . + She does nt have to take money from the people , he said . + I think it 's the best one out there , she said . +They do not have children . + Who was it ? + They are at my house . +There are not many people you would do that with . +Is that a show ? +If that does nt work ? + Who 's in there ? + Where was I going with that ? + Now we know that we can do it all . +It 's time for this Government to go . + It 's all so . +It does not go well . +We did what we had to do last year . +I do nt think it has . +A : I did . +But I just do not know . +You have to be there to know what to do . + Who is you ? +It 's not about who they are ; it 's about who we are . + I do nt know if it 's right . +Every other team has been . +You could say I did . +Well , like what ? +He 's just like you . +Now people want more . +People now want a say in their own Government . +What are they going to see ? +Which , come to think of it , we had been . + Too many , he says . + Where is the director ? +I want to see you . +You had a good life . +In New York City ? +Three long years , but you have been with me all the way . +He was nt there last year . +I do nt want to be . +But who are they ? +And I just want to say that in a very public way . +And he is in the business to make money . +It is five , not two . +They know they are good . + They said , Get up . +Where did he work ? + You could still see . +There were not that many . + That would be a way off , he said . +And so is he . +You can be both . +How high would he go ? + He does nt make that much money . +How do companies use it ? + I had a good time out there , he says . + But she does . +We all see that . +They did nt have any place to go . +I said , How can you say that ? +It was not in a game . +So you have to work with them . + We only own one house . + You have to get to know one another . + He 's not going to play every game . + Who can take these ? + We were there a day and a night , he said . +Do you think I did nt want to do it , or I would nt want to do it ? +But he 's in it . +Here , we are like family . +And now I have a family , too . + But there 's another world out there . + And they did nt even do it well . +And next , the country . + You can not do it . +But I did not take them . +THE last day was in a way the best . + I do nt know what they do in school . + But there are people in the world who do nt . +He 's much the best . + No , it 's the best . +They do nt have a right to be here . +Some do it and some do nt . +But that 's because they do nt get it . + There 's no one way to do it , he said . +Was not , he says . +It does work well . +I would just like to have one . +He will take that . +This is not you . +But not too much should be made of this . +I have to get home . + But we do nt know what it is . + People just do nt see it . +It 's been four years since you left us . +Is there another way ? +It would nt work for us . +He said it could . + Then you made me up , too . +Do you know where you come from ? +It does nt take on the world . + We want more of it . +Last week , it was . + You know what I have to do ? + And they did so . +Will he play or not ? +This has been a part of us for a very long time . +So I do nt know what 's in it . + I like this place , he said . +As he put it , I have to see how they are going to get us in and get us out . +The season is nt over . + I did nt think about it then . + But he said he did nt want to do that . + You have to put those through , he said . +If so , it will not be the first time . + And this is a good time . + No , that 's good . +It was what was best for me . +That is what they say here . +Will was one of the last to know . + I do nt want people to say that . +I did nt play much in the first part of the season . + Like this is it ? +He did not want money . +The house is only a year old . +Now it 's come home . +Next time , no . +I know what I can do . + But they did nt . +That was nt the case just a few years ago . +But does he know it ? +It 's like , What do you want to do ? + I said to him , I do nt know . +It was nt just my life or her life . +So , what to do with them ? + We do nt get into it . + You do nt want to go out like that . +Such is the will of our people . + They have it at home . + It was just too big . + I like this , he said . +We are going through it now . + And now it 's just the same as it was . +I still think so . + It 's like we are not people . + I did nt think I was going to get out . +And if so , where ? +So many people today do nt want to work like that . +And , after all , there is still time . + Here , it 's more . +But that 's what we have to do . + What is one to do ? +I just did nt want to think too much . + But it 's a good place at the same time . +Not now , though . + No one said it was less . + We can not do that , she said . +You still have to play the game . +Would she do that today ? + I work at home , he said . + I think there could have been another way , she said . + No , it 's not . +You are with the team until you are not with the team . + I had to think for a second . +Could this be her ? + Right , I said . +So , I did nt like any of this . +She did not know who put them there . + That 's what they want . + He did nt know . + I could be back in at any time . + Now they know , he said . + We do nt know where this country will be in five years . +The city had him . +It 's now three to four days . +You could say it 's about time . + It 's a big house . + And we are going to take them back . +Because there are nt very many of them . +Long may it play . + But they did nt have to . +We do nt take the play home with us . +Now , I may have to think about that . + How much do we take off ? +But we are one family . +I know you can do it on time . +So how does it work ? +We have nt had that this year . + The other way ? + We did nt play well at all , he said . + And that may have been too much for them . + We are right there . +We did nt show people up . +IN THE NEW WORLD . +He has nt been back since . +She 's out of the game . + Now you know . +Those may be very good in their own right . + We have left our house for good . + And it 's been here now for two years . +And a game show . +This is that season . +You know where they are . + She 's more a part of our family . +Or three years ago . +I do nt like him . +But to get back to business here . +I do the show for me . +Then it 's two against one . +Will it work this time ? + I did nt know if it would make it . + You do nt have to be good at this . +They are used only when they have to be . +Then she would come for them . + You are in one country , then another . +If they want war , war is what they should get . +And where do they go ? + And I want to play every game , he said . +We have to get over that . +THE YEAR IN BUSINESS . +I think I can do it now . +You go to work and do what you have to do . + What does he say ? + They are a family , she said . +What she also has is a man around the house . +What more can they do ? +What are they used for ? +Now here 's what we see . + I do nt want to . + But that 's all they want us to do . +And we have to go . +It was over , just like that . +That 's what I have . +And I think that our program is going to get up there . +She had her work to do . +I do nt think it should be made into any more than that . +Not all of them make it . + I do nt want to do that . +Now , I can go back . +I said it last time , and I say it this time . +But what would I say to him ? + I did , very much so , he said . +This is what it is now . + You used to , I said . +I think he did good . + Who are we to do so ? +But here it is . + It 's money . +And that 's what we have to do . +It is about the last one . +I was in the game . +And the police are the same . + And I just say , That 's not what I do . + And you did nt . +And if so , what can he do about it ? +Because it was nt . +That 's the one I want to see . + This is the best part , he says , when it 's over . +We do nt know who was on them . +You do the best with what you have . +You do nt want to be like them . +Is it just me ? + I would nt know what to do . + We just want to see where we are . +And you are not ? +There were more today . + I do nt even know what the program does , he said . +But that 's not the way . + We are going to see what we see . +Right now , I can see it . + And we will take that case to the White House , he said . + They want to see a show . + Was I was going to make it down ? +We just go out and play our game . +What good is it going to be ? +That , he said , would not be the American way . +All that may not work . + It 's the same in life , when you say , That was me ? + We are up for the game . +What more did you have to do ? + They said no -- they could nt get one . + He said he would nt . +It may not work . +We do nt want to come back in two years . + Do you have any children ? + Did he say that ? + There are too many people there . + I like this program , he said . + Did too , too , too . +They did , several times . +One or the other , but not both . + I still do nt know how to do it , she said . +It was nt about them ; it was about us . +Make of it what you can . + But we found a way to do it , he said . +To me , that 's not way out . + I know that too , he said . +But we want their best game . +We would see each other around school . + Every day I do more , he said . +And that 's what I should have said at the time . + That 's all I know about him . +We do nt know that much about them . +Did we get some more $ $ in ? +There 's no way they could do it the way we did it . +He could be like that . + I did not think it would be off that much . + But that is not going to last . +It 's good for the people . +That is nt what I set out to do . +Because they are here . +But I do nt like the work . + And so it is . + Right now , I should do what I do best . +That was not the case this day . +If they are right . +They said yesterday that they should have been . +You would like him . + I had a very good time . +There are days when I should work out and I do nt . +They are not as -- how can I say this ? +But this year the people have come back . + Time is not with us , he said . +Do you know what year it is ? + It 's been a few years . +Not at a time like this . + Are you in business ? +It is too much . +This is her life , and this is what she does . + But I will . +And you know how he is . +That 's not to say that they do nt . +You can see the money at work . + And so do I . + I think it 's good . +On your way to New York ? + And the good ? +And no one can say I did nt make it . +It 's all about the music . +Just go out and play the game . +What are they like ? + Who do they come from ? +But what to have ? + Did it go on to another city ? +But they are not . +I did nt know any other way . + This is not good . +We know that 's not going to be the case . + So how 's it going ? +They want them out . + But that 's not what the court case was all about . +Can she make it ? + Do we like them ? + And as you know , that 's not good . +I go to that place . + He did do it . +There may even be more . + This is only our second year into this . +Right now is not one of them . + We just know that it 's there . +She : Me too . +But the government did not back off . +Could this be me ? +Now we have the team we want on the court . +I think I should be . + Where would they want me to go ? +AND NOW YOU CAN GO . + But we did nt know how we were going to work it . +There were three of them . +To get some time off . + It 's a good way to get out of the house , he said . + I can not state that it will not be . +The Life and Times . + You can see it , too ? + But I know John . +After they would not come out , I said what I had to say . + I had to get it down . +We want to do that too . + That 's what I see there . + You know how high I know ? +You know how we know ? +What does that say about them ? +I had to come up from it . + I do nt know where that was made up , he said . + Is he all right ? +He could nt think of just one . +IN ANOTHER PLACE , NOT HERE . +He does nt know what it is . +But we do nt want that . +Only one man can say . + What 's our life today ? +It 's not just this game . +Just one big family . + I get even . +He still had to go out and do it . +I was way down . + I think my best days are over on the show , he said . +Were you around for that ? + That 's what I do , he says . +It 's go time . +What was going on there all those years ? +We should only do as well . +Then you have to come out with it . + There , you see , he said . + We do nt work with them , and we do nt back them in any way . + They have no other life . + Do nt go there . +This Is New York . + We are not going to get there . +And the white man ? +But if they come to take it , what can we do ? +People have found this out . + But they never put any money into it . +For the first time . + But how would you know ? +How could they not ? + Because we are not . +And I think it will be . +I like it , how about you ? +I do nt think that would work too well . + You see how it is ? + That 's what you see , she says . +I do nt think that 's been the case of this group . + I want to do business with him for a long time . +You know , first year . +They can see them , but they can not get to them . + After all this time , the war is still not over . + Today home is to the west . +There 's no in between . +But it 's not do without . +This is their work . +I do nt think this is what this is . +She 's the best that I can do . +You just have to . +Who is he now ? + And they come here . +Now there 's one . +You would nt like it . +Most of the time , he 's going to get you out . + But now we do . +It 's just part of the program now . + You all right ? +Are we all the same ? +It has been one year . + It 's out there , but I do nt know where , he said . + What do they have in this case ? +It will take me a long time to get over it . +Many work from home and have more time with their children . + And that should be that , he said . + First time out ? + I was nt . +And for many people , part of life . + Never , she said . +But what if he 's not ? +How do you see it ? + And a way out . +Do nt get used to it . +I have never been there . + Do you want us to come get you ? + But that is over for me . + You know , this is what I want to do , he said . + So what do you make of that ? +And like that , they are off . + This is what I like to do . +Put them over here . +That 's very good . +People make the best of what they have . +But he was called another . +Well , not very . +Think about it , he said . + I go to school . +It is the first day of school . +I did nt know what time I was going to get to work . +Because it 's just the end of the world . +Now we are at work . +That said , we were off . +Other than that , not much . + It was nt all that big . +I do nt like being there when they get there . +And he 's not around . + It was not very good for business . + That 's what I want to get under way . +But you also have to play well . +In the days before the A . +The company did nt even want to make it . + He was of use to no one . + It 's like a family , a very big one . + You know what he used to say ? + Two , three ? +It is a team game . + What do you see ? +I do nt know what I said . +In just two days ? +I just come here . +Where can that go ? +Still , all was not well . + So I did , he said . +That 's the way it will have to be . +So how long did all of that take ? + I made the next one . +They should nt be that big . + It 's about time , she said . + But what would you like ? + I do nt think that 's right , he said . +What do they have ? +And so what if they did ? +What was it called ? + We could do it . +This may take two people . +You did nt even go there . +How old was he when he found out ? +Where will it all end , or will it end ? +When is the show ? +Did she or did nt she ? +He said he found three . +Well , there 's . +LIKE many people most people ? +But only one will . +That was what he had been on about all the time . +But it is all the same . + I do nt do it at home , he said . +Some are on the market now . + Was That the President ? +That 's right , I said family . +We could have used some of that . +Now , which one is it going to be ? +You have to go all out . +So how will it all come out ? + I had them , man . +But I just take it day by day . +Who called the police ? +It 's all still there . + I said , I do nt know . + They do well , he said . +It 's not as big as it used to be . +Some of them are not . +This is good all around . +That was years ago . +You can do that at home . +You can not do this . +New it 's not . + They are a good family , he said . + Even if he did come back , what could he do ? + You do what you do . +I do nt think that it is . + It was just who and when . +And we would not have it any other way . + But if we did , they still would nt play it . + We did nt have that before with the old government , he said . + Here you go , he said . +He said it , and it 's over . + We are just going to have to make it work , she said . + It 's so me . + We will see if people are where they say they are . +But all 's well now . +He just can not get to them all . + I have to be in there . + We like it here . + They are a part of your life . + I just was nt there . +It is and it is nt . + I never been there . + You have to say , I have this much ; now , what can I do with it ? +But they were never out . + Then that 's what you should do . +You go out in a good way . +I can not see . +But this could not be her . + He 's had a long year . +That 's when I play my best . + There 's more to it than that . +He is on his second one . +He does this for many people . +I think this is good for us . + They are all over the place . +What should I do with it now ? +We all know each other . +It 's like now . + It 's not just about money . +But she does nt think that will be the case . +And where do they go from there ? +On a show , though , people come every day . +And then he did not . + She was good to us . + That 's what we do . + Over here , he said . + I said : Come in ? +Not that she does nt now . +Now I know more . + So it 's me ? +All of us would . + Now there are only three . +Life is going on all around it . +I do nt have another house . +If they say so . + What do we want ? +Be there right on time . +Still , you are who you are . +I had to do that . + They may be right . +Four more will play today . +I have to do my part . +They had three children . + He said , What do you have to go for ? + We go back a long , long way , she said . + Long time in this business . + I have them all over the house . +There 's just the right way . +But never say never . + Who will take me out ? + My day is here . +It can take a while . +Or is it all the same ? +Today we are one with Him and with one another . + It was for the best , she said . + What did they have ? + It just did nt work out that way . +It was a program of the old and the new . +But it 's you I like . + I think I would have . + There was never a time I did nt have it on me , she said . + I have no will to have children , he said . +Do nt do this right now . +I say : John , I know you want to do it this way . +Just like that , home . +I did last week . +This is his time . +What did nt he see ? + And it was . + It 's good to see him come in and do well like this . +It 's too much a part of him not to . +I just like to work . +But it did so well . + But to me , that 's no good . + I know I did nt . + I was one of these children . + They are going down . +They have been there before . +So I had to get one for him . +Most of the time , no . + Well , it has been like that for us . + And what did you do ? +Not that it 's just good times . +It would make a man of him . + But I was all for it . + I do nt think it 's one or the other . + I do nt know what it could be . + How good were we ? + A long way to go . + What 's to think over ? + That 's right , she said . +I did not take part . +Times have never been so good , he said . +They are the first to be made public . +Today is another day . +What will I get from them ? + Then I had to get back to work . +Now , my family and I never see one . + I was nt , but I was for him . +How do I know all this ? +We are their country , too . +How can you get through ? + That 's the best part . + We can see that . +What was the show before the show ? + You do nt know if they are going to come back . +But we will do more . +Our children are back in school . +And life will go on . +There are people here , but not as many as before . + And so he has . + We like our team . +But the first five ? + You see that , John ? +How much , I do nt know . + It 's me . + This is what we play for . + We know where each other is going to be . +Well , you may want to , but do nt . +We all have one . + Who do I have left ? +I want my money back . + I like them both . +And that he was . + I know that , they know that . +And the program money ? +You might as well say you are not going to go out during the day . +Can I get that ? +You think he can do it ? + Do you know what you want in life ? + It was nt all money , he said . + We do nt like that , he said . + I think people want to know what I found out , he said . + And we did nt make it . +They know what I do each and every day . + We want our day in court . +I can do this too . +What was the second part ? + We can take the time . +Only she does not say this . +He 's not that way at all . +It was nt against me . +Some people do nt like that . + I know what I can do here , he said . +Some of it is still there . + Also , I said , You know you are good . +We did nt know each other well . +So I do nt want to say any more . +Also , he 's been around a long time . +That is not going to be me . + That 's not what I want to do . + I do nt get that . + Other than that , that 's it . + We would like to see more , and we think we will see more . + Right at the end . +That is the United States . +I was set up . +Now he will play . +That 's where I was . + It used to be a good place . +What was it like at the end ? +More and more of them . +Still do nt get it . + I did nt know much about this music . +We know it will be put to good use . + This man is her life . + And so it will be in our case , he said . + Is there more there ? +There 's a place for you in the world . +But it does work . +Now no one does . +But time will show us . + I know people who know people who have one . +She 's not going to make them . +It is part of the game . + But not now . +Or even like them . +All of that was in the last year . +I think back ; how did I get here ? +If he did nt , that was all right too . +But we would nt like them if they did . + Will you do it for me ? + And I said , Not on your life . + That 's a family and this is a family . +What was he going to do with it ? +You are going to see it . +You do nt even know it . +For the most part , they do . +People will come back . +He 's all over the world . + It 's not like you are in school . +She did not , she said . + He said he had nt . + They do nt know we are very much a part of this country and that we make up every part of this country . +You know how she is . +It 's still a long way to go . + How to be at one with all this ? + We are in it . + It was a play that I think I should have made . +They can also get political . +It is the same . +Is it the federal government or is it the states ? +That might be so . +There are just too many companies out there . +We just do nt know where it 's at . +I would never say never . + You know how my game is up and down . +Now it 's up to me . +What does he want most to show his family ? +You have to make the play . +She is on her way here . + He does nt know what to think . + What more can be said of this man ? + I would never want to play without him . + No to what ? + Who 's right ? + But right now , it 's all we can do . +But it 's time they go . +It 's not only money . + You were nt there ? +These may last only a day . + How much can you say ? + We do very well down here . +You can work , people will go . +I did nt know them too well . + No , come on . +And she said she could nt . +They have to put them to work . +She would just not do that . + What is it they say ? +It will never work . + What can I do about it ? +What are you going to do with me ? + I says , I do nt want to take it no more . + So there was nt much time . + It 's too much money to think about . +How many states are there ? +Last season they were second . + Are we one people or two ? +It was nt the life . +It was his night . +Only people that know us come to see us . + It 's his company . + Well , I had to do it , it was the law . +This is the second year we have come . + It 's a long way off . +They did not have to be . + He was not the only one . +But then , that 's what they said last year . +So much so new . + How could we know ? +They should just do business . +Until , that is , he was nt . + It 's now or never , he said . + He does nt have a life . +What are you going to do ? + How long will that take ? +They should not have been . + And no , I do nt . +This may , too . + We are one state . +We said that 's it . +We have all that . +That was a game we should have had . + How does he do that ? + I just want to know you are here with us . +What are they up to - or down to - these days ? +And then , you get there . + They do what they do . +You do nt have one ? +Or the one after that . + We know that to be the case . +It was too much . +She had to be there more than I did . +I said , Would you like to go in show business ? + I just said that . +You just go and play your game . +Now , think about it . +It 's like being in New York . +We were in the game . +What were they going to do ? +We can go where we like . +But who will get him ? +It was my money . +They were also good for business . +It was too big . +I was there that night . + John , how long have you come here ? + It was just too much . +This day is at an end . +And what a night it was . +You know , he never does . +You have to do like you would with any of your children . +Do I have this right ? +There can be , though . +They are to your right . +It does nt work here . +All of this is against the law . + Is money the be all and end all ? +And so has the Government . +That 's what it was made for . +It 's time to get on with the show . +We all should have . + I still have to go out there and play . +But not too many . +But she did not go . +You just have to go back three years . +But that 's not so . +We want to do it our own way . + There are some that do nt , he said . +But how many more can people take ? +It 's New York as many would have it . +So is that good ? +That 's right , the United States . +He could not do much with him at all . +That long time might be over . + You are with other people . +There was only one place to go . + I still like to work . +They were not home today . + They are going to be good , he said . +Many of us still do . +They know what to do . +Those would be the good years . +It still is , but less so after today . +She does nt want to see it . + You have that , or you are not in the game . + Some of this we can do by law . + We did nt come through . +Did we know that ? + But that 's not it . +May we all do as well . +Or even one not that good ? +And it still has it . + But we do nt work . + No , never do that . +And this he did -- when he was home . +Because I want them . +That 's what we did nt do . +You are in law ? +That 's when you know it 's time to go . + That just is nt right , man . +And they all are . + I called him about two days before . +I think it 's the right one . + Women , too . + I think most companies do that . + It 's good , man , he said . +My team is here . + Little did I know it would come back to me . + But we were nt down on each other . + I want to go to school as well as work . +They can see it . +You do nt see them . + And we did nt get there , he said . + The people here , he said , were the best . +They work for the Police Department . +And how did she ? + I did nt know what that was . + I do nt see any way out of it , he said . +This is the best you can do . + I did nt know where I was going with this . + He said : I know who you are . +And he might not be the only one . +So you know what he did ? +Come and see it . +They had three days in New York . + So , where is she ? +It 's not that they did nt do this or do that . +All right , back to that first time . +It 's not about him . + Where can you do that ? +I can play a long time . +And you get not as much of that . +But if we have to , we will . + The game is not over , he said . +There , I said it . +How is that good ? + That time has come for me . +Not the four no 's . +I can make a case it did . +But here he is . + But I do nt know how to go about it . + Good on them , she said . +And so it has been here . +We did that for a very long time . +That 's not what I think . +You have to make it your home . +That same year , he made the team . +That 's the way it is . +This one still can . + What are you going to do now ? +They are just people . +It is all that -- and more . + We said , Is this going on ? + This is what it 's all about , he would say . +And that is just what it should nt do . + That 's just too . +This is not the American way . + Can he do more ? + There is no end . + People did not want to be around him . + We do a big business , she said . +He did nt have to do that . + We are going to have to go for two , he said . + I said I could . + Come , we will show you . +The first is the family . +Every day was the same day . +It was , too . +That day was yesterday . + Because I say so . + You can put it down , she said . +You left us a year ago today . + I have not had one for over a year , he said . + It was time to go . + I do nt have her but I have him , she said . +You have to play good that day . +They are still down there . +Most people would like to , they say , but they do nt . + I do not want to go to work . +I said my part . + It 's over , he said . +It 's all in a day 's work . + Two over there , and two over there . + We go back , he says . +Every day , it 's , How 's your back , how 's your back ? +And you would never know . +I do nt have it in me . +But we know who we are . + It 's like the first day of school , she said . +Has she had some ? +How much had I used ? +And I did nt do it for them . +I said , who is this ? + Not too good , as he put it . + We do nt have to take that . + There was nt much I could do . +Do you want me to do it for you ? + I do nt know what to say about that one . +They all do now . +The first game is our home game . + This is an old man 's game , he said . +For some , it is the only time they see one another during the week . +But many people want more . +It 's now time to see what that life is . + People do nt see this , he says . +He might be the best of all time . +All that I have is up there . +I like that about him . + This is the team we have . + Most of us do nt . +I did nt think he could make it . + It 's a big game for them and for us . +Where does he go now ? +Most did nt have to think long about it . + People say , Do you know what you are in for ? +They know it 's over . + These are companies that have been around for years . +And they know more than I do . +I would nt have . +It was just to say , We are going to be there . + Where are you ? +I said , You know you have a game today . +He is not an American . +Not today , I said . + At that time , he had his own company . +You do so much for them . +But this is not one of those years . +What are they all about ? +And he would never come back . +His life was his own . +Get that down , and you are on your way . +Do what 's best for them . + The very same . +You say you know them ? +He 's in another place ; it 's a good place . + They have nt . +And too much is white . +And you do nt know until you get there . +Because what do you do ? +Go and make it . +And the year after that . + Part of it was me , he said the next day . + Because that 's where the money is . +He had , and he did . +I just want to get it on and get it right . +He would have to come out . +Do nt , not with this one . +It 's in the family . +It is not that way around our house . + Do you want to have children ? +We did nt have as much of that before . +But is nt that what it 's all about ? + She 's in her new home . + I would nt have it any other way . +I want to be your President . +You would nt have to think about it . +We are against that . +He 's still here . +I could not do that . + A good time was had by all . +But it was nt only that . + Now where do we go ? + All three are going to get work . +A year ago , he could nt say that . +You just go out and do what you can . +We are going to be without him for a while . +What can you do with that much ? + You do nt get used to it . +Where were the women ? +He is still there . + It was part of her life . + We used to , though . +It is not the American way . +It was not very big . + The police is the last place these women want to go . +He might say , What in the world ? + She would say no more . +Where should he play ? + He has some other business . +The old life was over . +He was like a little old man . +But I do nt see that . +He had two days to get there . +They can also work part time . + But he could play there . + I know this team . + We still have a long way to go , she said . + I do nt get into it . +Did they know what was going on ? + And you want my money ? +I think you can do both . +The people do nt know . +They want her out . + That 's all there is to it , he said . +In the end , they did . + That which we have does nt work , he said . +If only they could have been there . +New York City should not have to . +He would have to come back today . +There is no work , so few people have much money . +But that 's over . +He did it all . +Not so for me . +But it 's what I do . +I do nt know who he was . +I do nt have the right to do that . + I left against my will . +Then there are the children . + It 's not for the good , he said . +But there 's a but . + He was right . +Not about one of my own . + And he said , Both . +Not much , in this case . +Can he get back to what he was ? +We did nt think that was the way to go . +John is one of those people . +But he 's all right . + If I do , my life is over . + First , how long is it ? +It was the best part . + He said , You can have it . +Now what should I do ? +He is now down to two or three times a day . +How does a program like that work ? +Will they have a life ? + Then what do you do ? +Now he has them back . +This , in the case of one of the officials , was not the case . + He may be a very good man , you know . +But at the same time , it 's not good . +Is it still good ? +But he will not , he said . +Should he take it ? + It will be a good time . + Come , he said , we will take you . +All he has to do is last , he said . + I think it 's the you you are , he says . +I think it 's because he can play a little and he does nt back down . +What is a day like for you ? +That 's it ; it 's over . +And What 's Next ? + That did nt work . +How are we to know ? +This is what we did last year . +That 's what a game like this will do for you . +It 's us against them . + I could nt . + This is what I was called to do , he said . + For a while , we used American money . +We think it 's going very well . + I have one , too , so how can I say no ? + Last year 's game was last year , he said . +And here 's another one . + I do nt know what to say to them , she said . + Now it 's one day at a time . +Well , I do have my own business and you never know . + Can I go to the United States with you ? +I do nt think we are there . +This is the time . + You just go where you want to go and do what you want to do . +This is the life . +This is our state . + Where are we now ? +He was not there . + Well , I do nt know about big money . +Even they do nt know that they are in this group . + It was nt our day . + And I said the same to him . + I want to get right back at it . + We are both old . +But is nt that how we are in life ? +But this is the place . +Who would nt want to be a part of that ? + What should you do ? +But he would nt go with me . +It was just money . +But he could not do it . +We have to make the people work . +He has all three . +But can she be ? +Can you show me how to use it ? +You see them come in and , first , they do nt know where they are . +And I did that . + How much money did I get ? +It 's time to come home . +So the house is on the market . +To go to the war . + Their music has it all . +I did nt get into it for the money . + We did all right , he said . + But it 's not the end . +Well , for us , this is our next house . + It 's not that way for women , he said . + I had to go out . +But he said he had no part in it . +Any American , that is . +I said so at the time . +And in his case , he 's right . +I would nt make any money . +But only in time . +We know how to make that . +For what it is . + I do nt know when I will be there . +That 's been going on a long time now . +And I take us right out of there . +Would I do it ? +He said : I do nt think of him . + Yesterday , they were . + What do you think I do ? +As a what did he know and when did he know it ? + I could get used to it . +Well , it 's over . +He did not want to do that . + It has been the same for me . +They should have said , We are for it . +I can only think of two . +But this is my work . +We all like it . + I do the best I can , he said . + Not just this time , but still more like it . +This is their right . +WANT to own your own home ? +For years that was not much . + Now , I know when to come in . + We are just a business , he said . +He has made the Police Department his life . +We are not in that business . +There 's the end of it . +Now it 's the center of the city . +Do you want it or not ? + It was nt there , he said . + That 's good , that 's good . +They know it , we know it . +But I can say it was the best two years for my life . +It 's how you program the game . +Not at all , they say . + Be off with you now . + That would have been the end of my life . +Of what , one can not say . + It 's not going to work , he said . +She was in business . +But they said I left . +Because that 's New York . + He just could nt do it . + He could nt get up or down . + Because their business is next . + The law is good , he said . +They will get both . +But it never was and never will be just about the music . + It does nt get more New York City than that . +We know what we are going to get from him . +But not in the house . + I do nt want people to say : Who was he ? +Several said they did not . +It 's all going to end . +The world does nt work that way . +It is a good one . +What is it then ? +He did not know this city . +But they are now . +And so on , and on . + This was a big place . +A Life and a World . +It could nt go on without it . + We did nt think it would be like this , she said . + Because it was . +But now in one week they are here . + What 's next ? +It was all over me . +I do nt know how to get to them . +And it does that . +But we come from there . + Put it like this . + Can we come out now ? +We know where they can be found year after year . + Was I that long ? + She did nt get it , he said . +So I did nt work . +But he was one of the few . +That 's all I see . + Think of this as your home . + In this way , it 's good to have two days off . +But he 's not the only one . +He would nt be where he is today without her . + We might not be . + To me , no . + First , it was all business . + So I say : You put it . + It could have been your family , he said . +And where did he go then ? +It 's about just being who he is . +People do nt have them , do nt know about them , do nt want to think about them . +This is one life . +She has since left The Times . +And it should nt . +Know what you own ? +We will be with you . + Do nt have it . +We are out of here . +But it 's in there now . +Is there big money to be had ? +We are all one now . +Do we have his ? +A new president will take office in two years . +Will I know people ? + They said no . + But it should nt take long at all . +I would say , I do nt want any part to do with him . +And what does he do with them ? + Now you do nt want it that way , and I do nt want it that way . + What could I do ? +And so , to war . + I think it was . +That 's the way people think . + I could see being a little old man here . + See how you make it when you do it that way ? + I did nt take that too well . +We have the house how we want it . + We are going to work this out , he said . +Who made this life ? +HERE IS IS STILL NO WAY AROUND it . +It 's no good . + Now it has a place in the office . + This is nt going to work here . + And I think they have to get to know me . +THE WAR AT HOME . +We know that over the last two years . + Here , he said . +We did nt have them do that . +I just did nt think of it . +He made this country for us . +How long did that last ? + That 's not so . +But few people know the man . + How many days ? + That 's the way I like it . +It 's just that I do nt get them . + But it is right . + Well , the time is right . +You go from place to place . + Is that what you want ? + It is just too big . + To show I did it , she said . +And those were the good days . + This time I do nt think so . + I did nt go , she said . +Well , the game 's over . + It 's to be me . + I do nt want to know , he said . +It 's going to go on a long , long time . +You have been so good to me . +That 's all I want to know . +He has every right to do it . +The market has said no . + I do nt know if we are going to have another day like this . +Who are those people ? + But she still does most of the work . +These were the people who do the work . + I do nt know how I made it . +Not so the president 's . +But there are people who want their business . +Because they have nt left . +What is it that she does best ? +I had never been there . +We still have it . +Money or no money , we will be here . + We want to know what people think of this . + He 's used to all of this . +It 's not you . + Make it more like me . +Him or the government ? + He 's going to have to work at it . +They see it , and it 's like -- I want that . +I like what I see in him . +We are still second and they are first . +There is nt another like it . + This is the way it 's going to be . +They are going to be there . +So what do you have here ? +These days , what is nt ? +But they are in this business to make money . + There is some of that . +And they had it . + This and that . +But if he still had some , where might they be ? + My life has nt been the same since , he said . +Which one is which ? +He had every right . +Or two of them ? +Or how about this ? +And I still think he is . +It did nt work that way last night . + I do nt like them , she said . +Who was going to get them ? + They are not going to make it , he said . +The time : another day . +If they want me back , I would go back . +So we called it off . +Does she even know any ? + After that , where do you go ? +They just want it to work . + There was no time to think . +They want to be part of this . +Because there has nt . +But this is not any other year . +What would I like ? + You are right , she said . + The time was nt right , he said . +I just would nt do it . + But that is not the case . +There is a time for that . +People want to do business in the city . +Could be good ; could not be good . +And well he might . +Too much is going on . + I do nt know where we are going to go , she said . + It 's very much a part of his being . +That would be NO . + I think it is the former . + Life is still good , he said . +They are both here . + They had their time . +He did nt get all of it . +Or , What will be next ? + I could have , and I should have , he said . +And that 's as it should be . + I called him and I said , What 's going on ? +People just want more and more . +He just has to say Here 's how we are going to do it . +But he may be just one of the first . + It 's the new people . + It 's time for you to do it for him . + No , there was nt . +And it 's good for us , too . +He has nt had to do it . +That 's just part of life , you know . +They were not through . + What good did that do ? +This is nt the Big One . + But he would nt . +You know how it is , he is going to say . +For them , it is not . +Where was I to go ? +I have no money to get there . +I think you have to show it . +The house for one . + I just did nt play well last year , not as well as I should have , he said . +Only three were in high school . + I know I have to work for this . + Here it is not about left , center or right , he said . +But he might get his way . +For some time he did nt . +But now it is on . + That 's how we want them . + But I have to get that . + I think the American people should know and will know . + He may be right . + I was on the other team . +I was nt going to do that . + I have no one now , she said . +That 's the way life is . + It was nt here at home , she said last night . + You just can not do it . +You are not one . + We were used to him . +But it is still too high . +I never was there . +And people want to get back to those days . +This is a very big city . +But we do nt know what to do with it . + They were in the same war then . + He is the one . +The end of the A . + But there 's not much I can do right now . + It was just going to work out . + We do nt do that here , she said . + What 's this about ? + What about the children ? +Think they know it now ? +Come over any time . +We both work all day . +But this is the big one now . + We are going to get after it and play the way we used to play . + People want to be here now . +There , the money is more . +After It 's Over . + We have to get the life back into it . + The American people do nt want it . + But I do nt think we are well off . +But that 's not what it 's about . +So I think that 's good . + I do nt want to think about it now . + Not one out of place . +Now , here it is . + They come from all around . + I want to be here , he said . +What was there to say ? +They make you think . + And what do we do ? +I have work I have to do . +That was all over now . + We did nt go back to the game , he said . +I just say them . + But we could nt get the times right . + If they have money , they do not work . +I just want to play . +Now the world does . +This will be the last one . +You might get one . + The city has been through so much . + That 's how big it was . +But this place has been like family . +And he will be back next week . + This is not how we want to do business . + People like it that way . + It 's like a city . +He said he was not . + He said , Would you like to do it now ? +It 's their country . + You see , she said . +But they did not know what to do about it . +Well , he could nt have children . +I was at home there . + But we do nt want it to come to that . +But can it make money ? + It 's the only way of life I know , he said . +It would be part of the United States . + I did nt play too well , he said . +It should have been all over years ago . +People have to come to me for years now , and some of their children have come back . + It just might work . +It 's not like we are at war . +It was new to me . +They want to play a game . +I think we are . +Well , he does a little more than that . +You are going to get it . +But I do nt know of any other way . +That 's not it at all . + What did he do after that ? + Not even the music , you know ? +He just did nt have it . +They are all around us . +There would be two more children . + Should he go into business ? +So I said , Are these new ? +We are here now . +I was here when you were going up . + I do nt think I would have made it this long without a home , she said . +He had no children then , four now . + Do nt say that . +She is good at what she does . +What 's going on in New York ? +On , and then off - that 's all there was to it . + They do most of the work . +And they would go out and do it . + For now , no . +I was at work . +But he 's not . + And I say , Do nt even think about it . +We did not know where we were going . +Would you like it ? +They are more of a place to be . + And that 's what I was . +But I think he did . +All the children are going . +They were there , too . + They can see each other . + Now there is just one . + What do you think of him ? +They say : Where you been ? + NIGHT AND THE CITY . + I think we have that . +This place is home to all of us . +But who , then , are we ? +This time it will work . + I work with them year in and year out . +They did last season . + This is not what we are used to , she said . + They say , I know too much . +We are , and we have , and we will . +It 's not like me to do that . + I did nt want to go back . +And that 's just one day . +But , he said , They are not . + You can see it all the way from here , she said . +He said , They do it to make more money . +Good , said one of the women . +And I should know . +We can be both at the same time . + We do nt want them to just come for the play . +It 's been a long time since you left . +It was not the same for us . + What would we do there ? +And not for a while . +But he will not be the first . + But he would have had it no other way . +I know it when I see it . + That 's what it 's going to take when we go play them . +Could nt she take them to court ? +We are as American as they are . + This was their first house . +I still had to come out and work . + You come back next year , it 's going to be the same way . +He 's here , and he does . +They do not know her . +We have all too little time in which to get on with it . +He was much , much more . +But I think I have two or three more good years . +One day you are , the next day you are not . + What should we do today ? +Me , I like all three . +And then , after a year , it was over . +But there was more to it than the money . +It might just set it right . +I want to go back home . + You know it ? +I can still do it . + The city has to be part of it . + We put them on the same day , she said . + We want to see this work , he said . + Some come three times a week . +He had had four in four years . +I might as well get high . +It did not go out of business . +It 's what I want . +They want much more . + Who was there ? +If I get in , I get in . +What is it and does it work ? + On and on . + I want people to know how it 's made , he says . + I do nt play with them , he says . +And what about a team ? + My life just was nt like that , she said . +She does , too . +That is how they will see less and less of us . + So I would nt make too much of it . + It does nt work this way . + I do nt think there 's any in between . + They are not . +He 's very good with people . + That was then . +This is what this place is about . +But it is not to be . +Each said she had . +Now he is down to three . +And well he should . + There was nt time . +But , no , there can be more . +She was , What did you just do ? + Do any of you know where that is ? +We did nt get much to show for it . +Just as I do . +And we now even have a White House West . +We are just going to go out and do that . + I still think he 's been a very good President , he said . + I was all for it . +I did nt have to do it . + New York is my second home . + Not her , you . +No , I do not . +Now go out there and have a good game . + It 's never been about that . +I do it for the money . +But some day is not now . + They are out of it . +As one of them said , We are still here . + Well , we all own one now . +But how do you get what you want ? +It 's the only game left . +If I had to be there he has to be there , too . + But should it be ? + We know that . +They might as well say : You are on your own . + And what work might that be ? +This is nt even me . +They know it 's part of their game . + Just as he has now . +It 's never been like that for me . + What did you do with the children ? +He is going to play two more years . + Do you know what I like best ? +But he is not a man . + And she said , Well , then , do it . +No one had called them . + Could nt come back without it , she said . + So I do . +We should have had this one . + Get out of my way . +Women do nt like me . +Now we are going to have to have them . +Will it be back next season ? +They did it without me . +What he did nt know was just how much . +At times it may be . +You do this every day ? + I see people like me here , he said . +I think this may be it . + We have never said no . +I know he 's with us . +Should you do it ? + Do nt you see ? + The more I think about it , the more I like it . +Your day is your own . + There are people that do nt want us here . +We can do that . + I did the war , he said . +If you are President and what 's going on now is still going on then , what will you do ? +It 's the only way I know how to work . + We want to make money . +I did nt play well . + What could I do , she said . + That 's not like her . + Do I like that ? +And a way of life . +I still show up . +She has a way with children . + And that was the end of it . + But going home , we can do it at home . +It has been for years . +It 's him or me . +What would you do with him ? + Would they do it ? +No law can do that . +We did nt know what to do with it . +To other people 's children ? +Now they have five . +But how could he not ? +We were in first place for a long time . +He is from New York . + You and I are in the same business , she said . + We are going to work with what 's here . +How did this come to be ? + He said , No way . +But it 's not going to work out that way . +Still , it 's only our first year . +We think we can work with him . +We do it big . +They just do it . +I do nt think they know , and I do nt know . +But there was little new . +This is her department . +That time has come . + And the people -- well who are the people ? +No one made it . +That is not our business . + You can do that ? + I say , Take your time . +You know what you are going to do . + No , do nt . +We do nt want to make too much out of it . +He could nt play . + Do you want to come in ? + He said he would . +Just you and I go in . +They might not see it . + This is what this is all about to me . +Did nt end too good . +He did not say which one . + I go back there when I do nt have to . +It was a good year for me . + Not right now , no , he said . + You make it out . + I said : There 's no use for that . + And they were still good . + After that , it 's on its own . +They want to have more of a say . +It would be just like home . +That would be two years . + We can do it . +We did nt do that very well . +Here it is not so . + Where would we go , though ? + Because this is New York , I said . +We did nt have any money . +We just do nt know if it will work . +Or , get the money . + At first , people were against it . +Such was the case today . +But not one every year . + So will she take him up on it ? +With other people 's money . +And I said , What is this ? + I have to be , he said . +But it did not last long . +Also I will work . + That 's not much . + This is the way I work it in . +How can we be against that ? +They work every day . + What was good about that ? +The second is to see what could be there . +Is nt that the way life is ? + More is more , he said . + We could see there was a market . +By that time , they were a team . + If you say so . +He was in it , too , now . + That 's their right . +I can not get around that . +Has been for a while now . +That would nt do . + Up and down . +Do you like that ? + I had no money . + I do not have . +I do not work for the city . +And we come out here every day . +It 's what we are . +I said , What 's that ? + WHAT have I been up to ? +He was the only one like that . +This is a big week for me . + What do these people do ? +They do nt know . +More or less that 's what he said . +I do nt know how she does it . + What does he want to do ? +He 's not going to know how to do it . +He did not want to go , family members said . +He never made it to work that night . +It was a good school . +He : Not much . + And they said : No , no , no . +Which , in a way , he had . + I take that back , he said . +What 's it going to take for us to do that ? +He 's part of the family this way . + No I do nt . +My life 's work . +This is good for the people of the State of New York . +And that 's my right . +They make how much ? +Did we put him there ? + People are going to want to have them . +And I did nt like it at all . + But they did nt want it . +It was good for me to see that . + Every one of them . + It was just good to get in . + It was a big play for us and for me . +So you just have to play him . + I did nt have to do music to do it . +And how old is he ? +I could nt work out . + It 's not for you . +Still , what in the world was going on ? + But you are like the first to do it . + But not last night . +They do nt have that down here ? +But I think it can work . +We could nt do that before . +That 's what that was about . +I did nt think it was going to be me . +What do her children do ? + One is too many for us . +But this is still the best part of my day . +It is our home . +I said , Who set this up ? +He would say it many more times before the night was over . + I have nt been in there . +This is right up there with the first year here . + Because we want to make money . +But only just a little . +We just did it . +Then it was time to get down to business . +Only he does nt . +It was good to see . + Will this last ? +And that is when we will take it all out . +Now I had come back . + Where is the little one ? +So we have that , too . +And they think it may work . + We are going to do some of each . +How can it not ? + You want to go in ? + You are going to be out there a long time . +Just like we are . +Do I go with one of them ? +Out , but for How Long ? +I put them out only a few days ago . +And I would be . +There 's no other way to put it : there was no place to go . +No , do nt . +But I do nt want to . +Do you have children ? + I do nt know about that , he said . +He has never left . +And she did nt want us to . +Your own business , he said . +But they did nt come . +How could we do that ? + We do nt know . + I had to come back , she said . + The market is there . +The public did not . +Some people are going to say , It 's too much . + That 's not the case here at all , he said . +She does nt know where she is . +Off last year , he can do both . +He had those days . +He did , and he did . +I would not do that . +It is her first time there . +It 's a game day . + How about that , she said . +Even if it was , there 's no way to back off . +I just did nt go to New York . +We do nt have that right . +What more could you want in a man ? +I do nt know him that well . +Where are they today ? + It 's more than that . +All over the world I have children . + Will you do that ? +Yesterday there were two . +But it was over . +So at the end of the year , every year , we do this . +I see them out all the time . +I did nt get up . +When you were in school ? + If they do nt want me , it 's there right , it 's their team . + There is no one in there . +A : What do you think you are going to do ? +Now , after this , so are we . +He does not want to play there . +But they did nt do it . +But is nt that what it 's about ? + I did nt like it at all , she said . + I know this , and people should know it . +It is not to be . + The way it used to be . +Until now , that is . +Then it is nt . +There is only one way out . +If you make it back at all . +And that 's not the case at all . +But we had to do it this year . + I do nt think about it , he said . + I said , Can you be on my show ? + Not good , one said . +Not that he does nt have any . +If I was going to do it , it was going to be because of them . + Not for long . + It will take a few more days . + I do nt know what that is , he said . + It 's a school . +The game is never over with him . +We had to have it . +He was The Music Man . +The first was last year . +There were such people . +That 's the other show business . + This is New York at its best . +She could take no more . +But it was not . + There are very few of us left . +At a time when some many ? +That will take some time . +You think about those people . +We have to make it work . +Who 's the other man ? + What does one have to do with the other ? +I did nt think they would do it that well and that long . +They are very good at what they do and we are very good at what we do . + She had not . + They still get to go ? + But now he 's going to have to show us how . + That is what you do in the White House . +Like : Say what ? +He is from the country . + They said they did . + I said , Police . + This is their music . +When I do a country house , it 's more country . + It 's going to take a while to get out of this . +But that was nt all . +I could do this for a long time . + Is this an old one ? +I do nt have to do that . +That did nt go too well . + They are my children . + Can I say no ? +He called me five times the other day . + That 's what being a good team is all about . +But not at this time . +Who were in of it . +I see it if you do nt . +I do nt know all that has been said about me or about the team . +This is nt going to make us go back . +Make that one time now . +It was his first time on his own . +It 's the way we should go with this game . + Right now , no , he said . + We are in and out of first place . +There had been a family . + We do nt get in your family business . + We are going to do what we have to do . +It 's a political game . +See what you come back with . +I have been there for two years now . + And one night I did . + This is going to be good . +Where to go first ? + They can only do so much . +But those were not the good old days . +It 's not like it 's never going to come back . + It does nt have to . +That game was big . +Who 's the center ? +If it 's not , no . +Show it to me . +Who 's up now ? +You just said that . + And she did that in her own life , too . +About what they are going through . +People think what they want . + There were only two people in there . +Put her to work for all of us . + Their time is over . + You have a good time out there . +No , that 's how I do it now . +That 's what the best music does . + I want to go home to my family . +The American public can . +That 's all you can do in this game . +And I want to get over that . +That 's what we want . +We see each other every day . +Where was she from ? +And where is he ? + I could have said no , he said . + We had to have it . + If I did nt think I could , I would nt go out there . + Get it while you can . +Then it was back to the children . + I could use the business , he said . + High , so we can see you . + We did nt even know until then . +Today , New York . + But is it ? +But I might as well be . +Man will be the first of these . +It might still come around . + I do nt want one . +It 's only what I know and that 's that street life . +Did I do well ? +So , what next ? + And high time too . +It should nt be this way . +Says he : What will I do when I do nt do this ? +You do nt want to go in them , though . + And how , she says . + We all have each other 's back , White said . +He 's going to be good . +Which is as it should be . + I was more in and out than up and down , he said . + It would just take over , he said . +It 's good money . + Right now it 's a long way from over . +And what did you have ? + I still want it . +This is where we want to be at . + Because we could nt . +It 's all a part of it . + Who did more than him ? +It just made our day . +That 's where most of our people are . +We all want to play . +No life in it . + It may be a long time before we have another . +And that is nt all . + If they want to come , they can come . + They work around here . + Are we going to make money ? + I think he 's right . +But it 's the same . +Not after this season . +And it 's what war is about . +It can at home . + And it should . + YOUR money or your life . +Where did it all go ? +You get people and their children . +How did all this come to be ? + They would nt do this if we were from some other state . +I do nt know what West is going to do . + He still does nt know . +I like this country . +What I will and will not do . + There 's no way out , he said . + Use this , I said . +All you have to do is make it up the next night . +What to do about them ? + Want to know what it 's all about ? + There were some times that we were against them . + We want to do what we can to get it . +Many of us here do . +To some , it could not . +So do our members . +She : I do nt see . +Now it 's up to us . +When they put me in to play , I play . +The family is white . +Right for his music as well ? +Well , this could be too much . +What 's There to Do ? +Then what are we ? +But the war is all around us . +And the house will be , too . +That what he said . + I think it 's too much to make up . +This school is like my second home . +But that does not make it right . +No , no , no , no . + It could be the end . +What is the President up to next ? +They never had an off day . +So where is he ? +Not by a long way . +This is going to come up every year . + And then go from there . +But we are not going to get into that . +You just have to make the right play . + It 's made this last year . + Do they know how ? + It would nt take one , he said . + So long as they are old people . + It was a good show . + Many did nt know who he was . +It does just what you want it to do . +We can go right . + We are not a city . + I will have you for my own . +When it is no , we do not . +It 's like the world 's going to come to an end . + He has to work like us . + But there has to be a business case . + How Do You See Your Music ? +That 's what this is about , he said . +It 's - it 's about people . +It was just about the work . +I do nt even know how they found out about us . +But that 's up to them . +Here 's what she found . + I can be like that . +Now , the big show . + I think she did very well , she said . + This is a business , he said . + I do nt know what it was , he said . + That 's three times . +I would nt know what to say . + Going to street now . + And he did nt . +Those are the two best . + I did nt know what to do with it , she said . + And he said , What do you want me to do ? +It is not life . +A year is a long time . +And I know him well . + He is more a man for it . + No , no , no people . +This is part of a game . +And well he should nt . +There are only a few each year . +Four members -- two more than they had a year ago . +She did not say how long ago that was . + It 's still that way now . + He 's like my family . +I never say never . +They found a way to do both . + I never used to see him , he said . +Then I have them . +And for how much . +Get out of your group . + And he said , Because I can get it . + It 's been a long time , he said . +She is game , though . +I want to do my work . + And if they do not , they will get out . + I did nt think it would end like this . +There are only two . +We do nt want it back . +But this was not one of them . + But it 's not all about that . + I think so . +These are the same people . + In this business you have to be big , he said . + It may be the last time . + I just know where it 's going to be , he said . +Who said it had to be ? +If I do well this week , I know I can do it next week . + Then they just left . +It 's for before and after school . +It 's just like with me . + Other people do it . + She is one of the best . +And if I do nt do it now , I never can . +Did I do that in New York ? +And it is in the work . +I do nt know how he did it . + He 's been a part of us all year . +Are you still there ? + We want another one . + Come on , he said . +And if they do nt ? +Get on with it . +They do nt get him back . + We do nt know what it is or who it is . +I did some on the back , but not as well . +It 's not me and it 's also not you ) . +My season 's over . +But these are new times . + To me , that 's good work . +Until the next season . + I do nt know where life is going to take me , he said . +And we have nt had any of them . +This is it for us now . + But it 's my life . +He has the most money . +There 's so much you do nt know . +Do more for people like us . +I want to know How did they do that ? +She 's in and out of this house all the time . + Go home , the game is over . +It 's about who the people want to see . +But I do nt know when . +But I do nt know where they are . +The street for them is like you going to the office . +That did nt take long . + We are just way , way off . +This was the world . +They are nt here long . +But they are not family . + It has to work , and it will work , he said . + And that 's the best way to put it . + I know that now . +Do nt want to go there . +Now they are a team . + You do nt know who these people are . + That 's where we are . + Just say , More than five years or Less than five years . +I want to do what I want to do . + You can do that every night . +She said she did nt know . +That 's not what was said . + Do it all the time . + It 's a Who does what ? +What did you take for it ? + Only if you could do it in the right way . +And we are all one . +But they do come up . +But I do the same for them . + What I said was , I do nt know what he 's up to . +He does not own a home . +And it does nt end then . + But I know it is . +Other people say much the same . + Where will they go ? +You know , you only have one game . + We do nt want any part of it . + And that they know I did the best I could . + I have nt come all the way back , he said . +There is no place in the world like this place . + Many times , he said . +I have no way to know . +This could take all night . +How can I be a part of this ? +I do nt know how she did it . +You have to have music . +What did we want ? +No , I say , I do nt . +No , not like that . +That 's all they have . + People like to do it at home . + It is a country of four million people . + But it was nt at all . + Where to , then ? +He does it every game . + But what do you do ? +If you take the day off , he 's a day up on you . +I want to go out there and do well . +So what did you do ? + Where do you go from there ? +It is a world all its own . + The team , he said . + It 's not like New York . +Do nt you think I should ? +Now , I do nt do it as much . + It 's been that way for a few years now at this time of the year . +I did nt show up for work for two days . +She is the one . +And last night you did . +He could nt see . + The country is at war . +We are women too . +After three days , it did nt work . +It did nt last , though . +My place was his first . +In time , you get used to it . + We are on the same team . +You have to go for it . + That 's what I want . +How good can he be ? +But it is , many times over . +It 's not like that today . +That 's what I think we have to do . +People want to work for me . +Their time may come this year . + The American public does that . + This is about him going public , she said . +I know you can . +I do nt think every time . + But it is the best we can do . + Now it 's two days . + More than you think . + It 's no use , is it ? +How well is that ? +And how does it come about ? + It was a big one . +Now , it is one in three . + But will we get there ? +He did not say who those people might be . + You are the only one . +And so , what is it like going to a game these days ? +This is just another game . + And they know who she is . +But he did nt have one . + It did nt have one before , he said . +I was going home . + For now , I should nt say more than that . +I just do nt see it every day . + Because you never know . + If I go with him , who 's going to be around at the end ? + It 's like , What 's that ? +I do nt know if they are going to be the same . +A good time is had by all . +What do you think of this place ? +Yesterday , they had three . +And how was he found ? +They never made it . +This is what these two people do . +Come on , get up , get up , get up . +They can come in and make up for it . +But first , back to court . +If not , so what ? +But they were found . +But there are many more . + There is still a long way to go . + That did nt work out , he said . + Do we have The New York Times ? + He said , Take out the music . + I had this all my life , she said . +And it could be that play . +There are people who say that he was . +How much I do nt know . +It 's all I know . +Life has never been the same . +Every time , all game . +But what is there to say ? +There 's no end to it all . +If we do nt do it , who will ? + What are these ? + He should be at home as long as he can be . +What did she make ? +They are all over New York . +There is no I . +So is most of his money . +And he said : You did nt see me . +Him too , he said . + What would be a good time ? + That 's just not the case . + How many children does that take us to ? + It was nt just them , and it was nt just that game , he said . +Where is all this money going ? +Still , all is not well . +They do nt want to see them all over the place . + I could not know . + If I were him , I would have , he said . +He had most of them . + Should nt we all be ? +We could nt do it . +They did nt have to . + That 's how I think , he said . +They can even see . +But it did not work that way . +Do you want to do it ? + That 's where it 's going , he said . +It is the people and the country . +We were out of high school . + Any day , any time . +They were the police . +You never know where it is going to go . +All of this we can do now . + You going back to school ? + How do I know what they are going to do ? +What is the world ? +It 's my country . + I do nt want to go into what it is . +Who will I be with ? +I say no way . + Would nt you ? +I still do it that way . + How long does all this take ? +See where we are going with this ? +I do that still . +That might not be the case . + You are going to have some people against it , and some people for it . +But we have to do it . + But we are not . +And that was just the first four days . +Most use two or three . + When will it all be over ? + We called and called . + You are in their house , she said . + We are back where we were , are nt we ? +He said it would be all right if he had to . +I just had to do it . + Every game here is big for us . +And that she did . +I do not know where they found it . +I take it back to her . +What I will do is not take too long . + That , too , she said . +And I know He has , because He 's been with me all the time . +One time , no more . + They know very little . +I have so many . +Well , I do have my days . +Or I could be . + All this is for me ? +To him , this is a big game . + It 's the right season -- put it that way , she said . +Now , she said , My life has come back . +She was the center of our world . + Do you want to get even ? +You said that you think you can get most of what you want . +What have you set out to do ? +They like to know . +Did you know that 's all some people have ? +They do it a little at a time . + He has not . +One for and one against . +And more and more and more and more . +We know what 's going on . +What does he think would come next ? +Where had I just been ? +They are with me now . +I want them both here . +Come at it another way . +It 's what this is all about . + Most people would do it in one night . +She said , I know you can do this , and I want other people to know you can do this . + Right now , I just want to be with the team . +He did nt like that . + Here 's how to get the right white . +Few , if any , did . +You do nt go for any of those ? + For a Used show . +This is the end of the war . +Will there be several more ? +I go there every day . + Is he going to make it ? + I was in back . +And what is there to do about them ? +There 's so much we still do nt know about all of this . +She will get out of this . +Who will they be ? + Over here , I called out . + We did nt do that well that year , she said . +This game is very good for me . +Are we a team or are we just out there ? +But now it 's back to business . + It 's not only about the money , she said . +But they do not last long . +It 's the family some people do nt have here . +He 's here now . +They have never been found . +There will never be another you . + They do nt work that way . +We have the money . + He just made a few more today . + He 's Mr. Big . +There will be time , and there will be time . + People know how to get around those from time to time . +I did nt know that at first , but I do now . +That will come back in time . + There 's not much new in that . +After all , should nt he be in New York ? + Who was he ? + Well , no , she said . +It is the money . +And there 's not much the Government can do . +In the end , that 's all you have . + The end of days . +A : I do nt know . +We think it would be . +They do nt want to see old . +You may say that . +Do I think that ? + Is that what you did ? +Well then , what ? + But I do nt think that 's so . +That , he said , he would not do . + But how much do we know ? +That 's just because you are all women . + I was never there for her . + Now , people think when they come to work . +You think you know it all . + It is now and it was then . +Until last year , they did nt even have a home team . +They were nt right . +I think it 's good for him to be with us . +You know it 's there . +Some of the people did nt know me . +But I would never do what they said I did . + How could I do that ? +I said : No , that 's too much . +But there may be more . + He said : I know . + It did nt , it did nt , he said . +But I did nt want any of them . + Such was not to be the case . + To me , it 's just another day 's work . + He was that and much more . + It 's like it 's our own house . +That it did for a while . + It 's about good people . +So it 's not about him . + I did not know this was an office , he said . +She has to be right . +That I can not say . +Do nt they have some say ? +It was the right time . + Now I know what it was . + They are a way of life . + He said : What ? +I know what they say . +From all over the world ? +No one will be out today . +What was good for the city should also be good for the state . +They think he would be . +He was down , he said . +But then what is ? + He was nt here . + But you know where you want them to be ? +The next day it did not . +How did it end ? +This is my time . +Well , that had nt come up . +Most of us are . +More time with the family ? +He 's the only one I have who does what he does . + He would nt be there to see it . + But he never did . + But they are not like that . + I do nt know if I can take it all in right now . +It was the same with music . +If you show up , you are in . + Not in our case . +After all , he said . + Who are we ? + But there is a war going on now . + She said she had not . + I do nt know , she said . +We want to play here . +Now they want me to do another one . +This is life as we know it . +No , I say . + Little , she said . + I was used to the old people , she said . +We know what to do . + But at times , we did what we had to . +That 's not a way . + Well , they are right . +The place was New York City . +There was no way , I said . + We were right . +Them : Do nt know . +They want him back . +Is there any way that you all can not see me ? +Where can she go from here ? +I know people want to work . +That 's how to do it . + Or will we ? +People like to be first to the market . +Those were the days . +And he did make it to the big time . + If we are going to go on , we might as well go on against the best . + Some people can come here and say , What do you see here ? + But that was then and this is now . +That 's for you . +We are going to get to you . + That was not who I was . +So it 's just not all on him . + It would nt be right . +But it was still not over . +What do you want me to do ? +As of now , we can make it . +Can I do that ? +He was good to me . + Now it 's not . + It will take time , he said . +She said she did so only a few times . +Can we get in ? + How much is it ? + But the war was on , she said . +When - or is it if ? +How could there have been ? +But how long would that last ? +We had to be . +And there 's little night life . + What do you have the man do ? +That 's not their place . +It will take two or three years , though . + I want what 's right for us , he said . + Then I said , No I should nt do this . + Now , that 's just how we are . +What was the company to do ? + You had your own company . +And they should be around for a long time . +Where would they be without him ? +They have been good to me and my family . + Money is nt what it 's all about . +And there is much more . +If you have it , you can do it . + I did nt get all of it . +But this is what it 's about . +We were like in our little world . +I think they did . +I like him , too . +I was going for the country . +People can say what they want to say . +It was this year , not last year . +This week they have not . + You come to a place where you do nt even know how you did what they did , she said . + I just want to be me every day . +And even one is too many . +What do you say back ? + How long does that take ? +The new season is on its way . +Are you in the office ? +Some use it as a second home . +It 's how good do we want to be . +She 's against war . +You know I have . + One more time ? +It 's my first time . +Well , you are not . +I know it is for me . + The last three or four years , it 's been that way . +That I was , too . +It is like that for me . +That I was nt ? +That time is over . +And so it is with us . + That 's the same over here . + They do nt even know me . +I do my best , though . +Will May do the same ? + You want to come in ? +But what about their women ? + Music is my way in , first of all , he said . + Can you get him ? + Who says we are going to war , he said . + It 's not new to her . +He 's going to be here a long time . +The man has been right before . +It 's all up here . + It 's just what it is . + If I only had more time with them . +More people are going to come . + They just say , Well , what 's going on with that case ? + That 's what we think . +Will she like it ? + I think they should have , he said . + This was never about money . +That is no more . +They can not even see . +And there will only be more . + Some people say : Children just come here to play . +That 's what our show 's about . +We have to go from there . + After that I will get out . +How long has it been around ? + I just do what I do , he said . +Did he want a second after today ? +That 's all it was . +But I did nt get here on my own . + But I still play on the team . + Will he do it ? + You know where you want them to go , he says . + You do nt want this , he said . +THINK back to one year ago . + He was right there with me . +There never was another like you . +Who 's In , Who 's Out ? + I did nt have any money . +It 's the only way I can do it -- this is where my life is going . +What 's That He Said ? + It 's a new season . +This is how it 's going to be . + But I could nt . + People used to not know about people like us . +Last year , we did nt have that . + It does nt work here . +Not going to make it ? + No one could play it . +He is on his way . +Did you know we have money there ? +You know where this is going do nt you ? +But this was never the case . + Every house we go to , they are all home . +He would not be the first . + Not too much , he said . + Do you want me to say it another million times ? +Most do not show up . +But this is all I know . +But for me it was right . +You are a company man . +Would you like to know who it was ? + But he has found a way back . + No one was with him . + It 's been so many years . +And there are the office women . + But we do nt get to see the children . + We have the money -- most of the money , he said . + I will , I will . + And we are going to do it right this time . +Or make your own . +Or a still life . +But it 's like you see them all the time . + This is where they should be . + It 's much more than you do for people . +What are women to do ? +I think that will come out in time . +But this company has more . +And there 's just so much you can do . +The two were off . +And then it is over . + That was the time I said , So long . + The one and only . +They did , and then some . +I know they do . +There is no in between . +People think too much . +And that was it -- I was out of there . +Can I go now ? +They should never have come public . + I have come a long way with her . +Then I had another . +But she did not want them . +We did just that today . +The next week they did . +See , that 's what it 's all about . + But first for the people . +You had a good time . +That was all that was left . +How do we get around that ? + How can I see them all ? + It 's going to take three or four years before we can do that . + People are nt into it . +I work for him and with him . +We know it 's not right , but we say it 's all right . +How do we do that ? + She has a life there . +How could so many of us ? +We have to go with that at times . + He just said to me , Did you get all that ? +And he said it . +They are not the same . +There are some who know it . + We do nt just show up at the game , he said . +He could not say . + Its up to the them . +We are one of them . +I know he did nt do it . +Well , now it is . + To me , it 's still work . + And I said , Well , think about this . + I did nt , he said . +It 's the Law . +We are way down . +What was the school ? +Most people I know can not . + See , he said . + They never say : You know , you are right . + I just did nt know what to make of him . +And that 's where they were . +People have to be made to work . + They do nt like that very much . +Some of us are not . +What do you say to them ? + That 's not first place . +They do , too . + We had to work on that . +It was not a good one . +So I was in the right place at the right time . + When you do , it 's time to get out . +How many are too many ? +Now it is about money . + It 's about time to put another one out there , he said . + He said , Just to do it . + I like to go . + I want to see it all , she said . + Where do I go now ? +But most people do nt know that . + We are going to be all right . +IT MIGHT BE ME . + I said to her , What is going on there ? +You want to do that ? +In the same way . +And take them it does . + Our day will come , he said . +It was nt last year . +It 's been very up and down . +This is still a business . +Or is it THE PEOPLE ? + I said , A . + What if the next one does nt work as well ? +That may be it . +That 's life in the big city . +You can season them some more . + That 's the political part , he said . + Can I go see it ? + So , is it your old school you are after ? +And his was such a New York world . +We do nt know when . + Is nt it though ? +I do nt want people to say , You are right . + Some of them are . + You do nt see them around here . + Not today , he said . + When are you going to come see me play ? + I used the money , he said . +If so , by who ? +They did nt know what was going on . +Would nt you want to know how , when , who ? +Do you know what they are ? +Not for a second , he said . +He might be out the year . + There will be very little time . +This year , they have nt . +Most of it is . +And those without children ? + We have to know just what they want . +On any other night , this would have been his night . +But I could still play . +It was their show . +And that was four years ago . +You do like women ? + They say it is not a good time to be home . +Well , it is , but that 's all right . +Or like they want you to think it is . +I think I can . +And still more work on their own . +Or the second year . + And I do nt know what he said to me . +Not for a second . +Or most of them did . +So what should the president say ? + We will do the best we can with the people we have , he said . +One of them said : Come on , you can do it . +What does it show ? +But what was it all about ? +Out there , you are . +We want those people . + Here we go , he said . +Because that 's part of his life . +They do nt know me . +How can I make a new one ? + He says , Can I go with you and make some money ? +You just never know in this game . +My game 's on . +That was just two . +There is no business . + I like New York , he said . + I would think not , but you never know . + Well , is nt it ? +It 's another year . + But that is the best place for them . +To me , she is back . +This year , he did not . +In the end , he never left . +The place just would nt be the same . +A man was there to see him . +I like them now . +What did the White House know ? + They come with me , and I also have my family and I like to go out and have a good time . + Now or never , he said . +This is new to me . +This is my time now . + So what should we do first ? + I have nt all season . +Today , there are about five a week . + She 's there all the time . + And it should come down . + If I could only be . +Is there a new one ? +Now how do you go out ? + That 's life , he said . + And what is put in its place ? +And he 's made the most of it . +We want to do it now . +OLD OR NEW WAY ? +I do nt know how it did it , but it did . +Just think about it . + And that 's the way I want it . +That 's what it was before and that 's what it is now . +In the end , they work . +Now you do nt see him , now you do . + Your world does nt end the next day . +If they like music , you play it . +We just have to go out there and play the best we can . +But how did she know they were back there ? +But they should nt be . +We should just go out and play . +But it 's not only about that . + We were in and out of there in three days . +That 's the way it is for me . + I used to do that in high school . +There should nt be too much of one or the other . +But where to go from there ? +We had made it . +Two to five days . +Well , not all the people . +There is no there there . +Then all these people . + I know , I know , she said . +Get back up there . + This is not the end . + I did nt think too much about it . + But I do nt think that has been the case . +We are one state . +I do nt think I did . +How long will he be back for ? +You go up with them , you go down with them . +A life can be made . +It was a street game . + We do nt have it . + Just one more year . +Now they have them . + So I did both . +But this is not still life . +Or we go down as one . + As long as I can , he says . +Where Does It Come From ? + There 's not too much I could do . + I do nt know much about it . +Then , he 's going to come work with me - part time , but that 's what one has to do . + You do nt think about it that way . +I did nt know who it was . +Not even at the end of last season . +We will do just as well . +I just do it now . +That 's a long one . + I did not think he could do that , he said . +It was one you could see . +It 's well said , but it has been said before . +If it 's good for the team , it 's good for me . +There 's too much going on here at home , she said . +For the good of the team . +I said this would be the best day . +Then it is back to business . +But we are not all like that . + One day it will come back down . +You never say never , do you ? + And so it has . + We go back many years , he says . + I would nt , he said . + I was all over him . + What you see is what there is , he says . +We just did nt play . +It does not end there . + I said , Where is she ? + By the way , he says . +Here he is now . + I said the other night . + But I could nt have said that last year . + They could nt play . + It 's about us more than them . +His family is part of our family . + We like to say they are like us . +And what is it to be ? +What could we do about it ? +I play the game right . +So they make do . + IS THERE LIFE OUT THERE ? + I just do nt get it , he said . +But I will have to do it . +But it does nt end . +I had a little work to do . +The City of New York . +But they do nt think that every week . + He would say : I just do nt get it . + Is nt that the way it 's going ? + We just did it . + Now , could they ? +Then we get out and play . +I do , but if not , have it your way . + It 's been like this all year . +Is it good for you ? + Old , she said . +They will know it is you . + No no no . +He does not want to do this . + What to think about , he says . +Is that to say you do nt like the group ? + That 's not the way it should be . + I can still see it , she says . +What 's it like ? + What 's there left to do ? + I do not like them . +It is a day in May . + Get out of here , you did not , she says . +They do nt take a night off . +First , there is no money . +And in the White House . +But this is over . +WHAT have we here ? + But what about now ? + What are you going to do there ? +We did nt get two out of three . + They all want to go to business school , he said . + This is their day . + I do nt have no time right now . +That was not the case . + You go out every day and you do your best . + And she 's right . +Many of them did get it right , they said . +He may have found it . +I want to go home , too . +I was never going to be it . + Do nt go , he said . +It should be him going , not me . +And what was that way ? +Not just one of the best . + I said , I want to do that . + I just do nt want to be here . + This is the time to be what they want you to be . + That 's when you can get them . + I was never out of work , she said . +But it 's good for us . +It 's just not right ; we are the people and that is our house . +It was the first one in the city . +It 's not what we want . +For her children , that 's their day off from school . +But this was not to be . +So who are they ? + You know how they are going to come out and play . +Like him or not , he has made New York City a place that people want to come back to . +What more could one want ? +Each and every day . +What can you see there now ? + Do nt know much about him . +And now we do . + What Do My People Want ? + That 's all I want to do . + Now they get it . + They are just so good . +Law of New York University Law School . + It 's what I had to do . + Over time , they will work out . +That 's what people come back for . + I never said that . +We do nt have the money to do it . + The people who work here are nt here for the money . +I know he 's out to get me . + When I was how old ? + We are one company , he has said . + And that is not good , he said . + They are a long team . + I do nt want to get too big , he said . +Over all , it 's best for the game . + What was there to say ? +Even I know that . +They had been out of the office that day . +But you did not have to see them to know they were there . +That 's the how come I want to know . + They said very little . +We are there because we want to be . +And you my but . +I do nt think it is . +Could it be both ? + I do nt think of it that way . +Where do they all go ? + You of all people will know . + She said , Think about it . +Could the state do that ? +Who do you think ? + And what do you think ? +So they do nt . +Do people like me ? + That 's not what this is . +Who is going where ? +You get to know the people by how they play . +It 's like a family . + Not in school , man , he said . + You have to be there and you have to be on time . +We did nt know . + How does he get to that ? + Both , he said . + I do nt see any more than I have before . + How did you like it ? +Then what will he do ? +There will be much more work to do . + People do nt want to come out . +I did nt do this . + I do have a life and I want to get home to my family and work , he said . +And that 's their country . +And I did it . +Today was my day . + So it never did . +And well he may . + I do nt want to be the show . +That 's the way I see him . + It was just like any other day . +You would think they know , but they do nt . +You just come home . +All they have to do is show up . + I said , Where you been ? +You can have it back . + I do it for the children , she said . +Music was her life . + Where do I go ? +He did more than just show up . + I did nt make it . +I still like New York . + I have to work on that . + What should we do then ? + Where to Put It ? +I think it 's been that way on every team he 's been with . + They were my children . + It was going to come one of these days , and today was the day . +If they do , they make very little money . + He never did that . + This is our city , she said . +Each time , he says it 's the last . + Did nt I see you here last night ? +Does nt know what to make of me . +But not this season . +Some are way out there . + You and I know each other . + I do nt think that will be the case there . +He made good money . +It would not come back for years . +People know who he is and what he can do . +You should be at home . + This is my second time , he said . +Most members are from New York . +It found a few last week . + Is this a government ? +I have been there several times , but she has never been out of this country . +And that 's part of it . +And it 's very good . +Do they want to do this or that ? + And that 's what it is . +They come for their children . +Do nt do that . +There they are ; there you are . + We did nt even think about them . + So he had to think about it , she said . +If I can play , I can . + How long will it take ? + She was in another state . +After all , it 's only a play . + They are going to get them out now . + They have to be . +Do what you can . +A : I might well have said that . +I like the street . +By the end , though , the play has made its case . +Then you see it -- over there . + No , he says . +He found he could . +Money is not being made . +We are back in the family . +He is used to it . +But this one may be the best . + This is my first time here , he said . + It is not , he said . +That would be the end . + But now it 's not . +He says it very well . + And if you do nt , you could , so should nt you ? + How many of these do you do a year ? + But right now I can still play the game . + I want to do that . +I think I may be one of them . + It 's a long way for me , she said . +You have a family . +So how will this end ? +And it 's over . +What are you going to do with your money ? +Two , she said . + That 's the best we can do . +He has never left since . +But no one could work with him . + It 's going to do very well , he said . +That 's not going to end . + This is your time . +And those were the good old days . +I do nt know who he is . +They are all new . + And that is right , she said . +People were like , Who 's that ? +It is nt right . +I did not do it , though . +You could see that last year . + You are not to say that , said the man . +Do we think we can ? +I said there 's another way . + But she has them and she will . +And what to say ? +But if they do nt do it , who will ? + And I say , Well , what did that do ? +This is a family business , and it 's where I should be . +You do nt even know me . +You do nt know what 's going on . +This is what he 's all about . + It would be good for you , too . +It 's a family all its own . + I do nt want it to be over . + Who found it ? + But we were there . + She said , How do you go in there every day ? + We know what they do . + Can you take the White House back ? + But not one of them did . +Then there are people who do nt even know what they have . +You do what you can do when they put you out there . +It should be , but it 's not . +He has to , he said . + How can you do that at the same time ? + It 's about business . + I did nt know what to do or say . + This is what we all want to do . + Well , what do you know about that ? +Or how about this one ? +My money is going to the Government . + I think , How can it not ? +But we are good now . + How about , I like your work ? +He 's also very good at what he does . +Now I come all the time . + I know him well . +They think they are part of the play . +This is a time for what we do have to play their best . + He does so much . +And they have a right to know . + I do nt know what to say , she said . +But what to make of all this ? + That is where they are . + This is the first time in . +No new people come into that group . + There 's so much to do , he said . + We are going to be good . +There are too many people here . + We then go out and do it . + What does the state want ? +We could have had that game . +It was nt because I did nt know many people there . + We had a good group . +This we do nt do , though . +And there will be more . +And they like each other . +Not that we would nt go there , but she just did nt have the time . + Well , who does nt , at times ? + We do nt know where this is all going . + It has been a long time . +They are nt in it to get the most money . +They can see well . +There was no more I could do . + Well , I think it should be two . + I was in my own world . +But some people would nt know it . +It 's like a high . + How did we get them ? +The time was just right . +Now that was the show . +We are not going to make it . + That 's what House is all about . +They did not even have to go to court . + I know this is a political place . +And many times , she said , they are right . +My war was over . +It 's the same every day , every week . +It 's not over for us . +It was my show . +I think you do nt have to say this group is in , that group is out . + This year I did nt want to come back , he said . + It 's good for him . + But it 's what we do . +Well , they would nt . +I called his house , but he was nt there . + Who , what , where , all of it . +And they have nt come back . +I think about money . + That 's still there . +Now it 's all money . + They did not want people to know what was going on , she said . +I just did it last week . + What 's in it for us ? +Where were they going to put it ? + There 's no work for you . +HOW GOOD DO WE HAVE TO BE ? +That was only two years ago . +I like my house . +Is it to be with people ? +He 's so big . +It was about work , work and more work . +How do we know they are good ? +The money to do it can be found . + But that 's not what the people want . +And that 's it , but it 's not . +There 's no place like . +Just like you are . + Most of them have . +I do nt see how that 's not a good use of money . +You just go on . +They have not been that high since . +Play is children 's work . +Are you going to have it made public ? + I said : You are going to do what ? + You say no . + How can I be ? +Who has his back ? + I had no home , and no office . +If , if , if . + They are about the same . +What would you do then ? + You get to know the police . +And he still is nt . +But she is not here . +But what does she think about it ? + That 's not what we are here for . +Today 's my first day out of the house . +If that 's the case , it will never work . + It 's just the way that I play , he said . + No , I only had one . + He 's not going to go against them . + I did my best , he said . +Do you know what you will do then ? +He is found in it . +But , he said , I just could nt do it . +And like it they do . +Do you want us to be back next year ? +It would be the only one . +Some make it , and some do nt . + We take them out and put them up . + It 's not a want . + We are now at war . +He is president , not director . + It 's been like this all day , he said . + This is nt about being for or against the war . +Because the people that are around her know who we are now . +I would say right now we are down . +Still there was another night . + You had to get down there on your own , he said . + Good , old John . +They had good years there , too . +We are the United States . + And he 's right , in a way . +But many do not . +I would like it to be the same now . +It does nt even know me . +It 's our only way out . +That was all made up . +That 's what school is for . +I do nt know how to do that . +Where Can They Go ? + Never did , never will . +But now where will we go ? + Come on , now . + And we are going no place . +And I - when I called him , . +They are people like all of us . + At first , I did nt want to do it this year , he said . +You go to a game . + We had him down there and we know him . +Do you think this is life ? +It 's like one for all and all for one . + She was well on her way then . + It 's been over two years . + It 's part of my being . + What , for that ? +That is what this is all about . +Another time , she said . +So , did it work ? +Well , come on down now . +Then you would have some . +It was one game . +I know , because I was there . + There 's no more . + And it 's about to . +No , you go do it . +I know I can come back . +This is your life . +They do it for the public . +And it 's still going on . + How long do we have ? + But we have to . +It was only business . + And so they did . +And I would use that . +Like , no way . + We had three last week . +That 's what he 's said he will do . + It will just be more people . +What 's to have ? + I did it all the time . +The only way to go is up . +Where will they play ? +They are here with us today . + That 's not where I want to be right now . + At times , I would say . + Now what I want is New York City . +They do not go to school . +That 's the best . +No , they said . + But still , it 's there . +I did nt think first . +And now they had . +You have to play one game . +This is my city . +But no one was home . +What do I do now ? + It 's all because of . +I might not like it , but so what ? +It 's good for you . +But for some , this may not be the place . + It was out of this world . + If that does nt work , take another . +Some are old , some new . + There was nt much more said than that . +So how well does it work ? +It 's not what government should be about . +This is good , no ? + But today I do nt know . +I think you have found them . +How is your home ? +Now what do they do ? + We know we can make it over and make money . +But , in a way , they had . +And after all , they are our market . +As in : What is it good for ? +And in a big way . + I could nt say no . +It is good business . + People are nt children , he said . + I was like , No , it 's not you . +This group would have both . + I have a life . +There was still work to do . +Which he has to this day . +They did not , in the end . +It 's been up and down . +It 's also the only way that can work . +He had , after all , still put me here . +It may have to be . + It 's only a game . +This is nt the season for it . + I do nt think I could , she said . +But we should nt . +I LIKE THE WAY YOU ARE . + We know how to say it . +It was over by then . +This was show business . + But it will take time . + This is a good place to be , he said . +He did say both would play . + I just do nt play into it that well . +That 's just the way it is . +Government should be too . + For his new . + What can I do right here in my world ? +There 's so much to do before then . +That 's what last year did for us . + This is what the good life is all about . +What does it say ? + But it is nt just that . +Who is this man ? + You want to get high ? +It should nt have . +How did I know that ? + You know what to do ? + He 's the last one left of the old school . +For that , there has to be political will . + I was nt one of them , he said . +I think it 's going to be more . +He would be white . +They do what they want , when they want to do it . +Was this the right play ? +I get to do what I want . + I think it was only the second day it was up , he said . +What would be new ? + Well , what is it that you would like from me ? + No you do it . + It 's more than just the money . + Now that 's over . + It 's too much for me . +Most of the time , it 's good . + It 's all the same . + That 's what they show . +But first we had to get in . +So , I did nt . +But I had to be here . +Is nt it money ? + I want my money back . + I do nt want to do it , he said . +But if there is . +But all that will take years . +And then he says , See you next time . +There she is nt . +But they said there was nt . + And it has . +He was there one year . + You know what she said to me ? + It 's for what you do for work . + It 's a war , he said . +But it is here , and it is now . + How did you know ? +I do nt know that I did . +This is where it was at . + I have to be there . + We have it , she said . +In this case , we were right . +You do end your season . +We did nt like it . +It was both , and so it is now . +In part , it has . + But that 's who we are , that 's what we are , that 's the way we do business . + They had to get the first one over . + I do nt think so , she said . + Some people will like it more , some less , he said . + She said to me , Where you been all this time ? +But I know the man . +So what will the program be like ? + What 's in your life ? +Where do you see all this going ? +I can do it if it 's like it was before . + But this team , we know how to come back . +It is very good , he said . +Do nt get down because of this . +It 's good to see that . +If it does nt , what can you do ? +The world is old . + Right now we still have a program , he said . + I have my own life now . +This is World War I . +You are the man . +But , they did know . +You want to be right there . +I should have been on him more . +But does he have the will ? +Government can not do this work . +Or two of them . +I do nt know if that 's the same place , but I know he had an office out there . + I do nt now how you would do that . +But another way is here . +What 's best for me ? +Right here in New York City . + The show is going to be here for a while , he said . + She did , and she will . + I do nt know who I want to be . +It 's not the same game as it used to be . + That 's never going to come back , he said . + Can you do two today ? +They said they would get back to me . +It might be him . +What is there to say about me ? +For now , that is not the case . +This was what we had come to see . + How can we get him to go home ? +If he could do it , I could . + My children can do that now , he said . +Today , it was like four or five . + It could be here . + I want to have it out . +I go by the day . +What are both these people going to do ? + I said , Is that the way you want it to be ? + Where you been , man ? + We do nt want them here . + But would people want to use it ? + I want this game . + Would you like to come in ? +I think you can as president . +There 's so much more . + What would that be ? +But that is not the only one . +How do they have time for a life ? + She had not been here for a while . + Now there 's another . + So we have to . + There was no way out of it for them . + We do nt want to have just two members , he said . +They said : Well , no . +How about this -- or this ? +So if we do nt do that now , it will only be because we do nt want it . +We are people , too . + I might not even make it through that , he said . +No , because we are not . +THIS could be the big one . + I want one of these , too , she said . + Do you work out ? + Is this right ? +But I still come back . +But that business did not take off , he said . +It was : Which one of us might be next ? + I do my business . + That 's it , she said . + It 's that and much more . +They work at home . +That could never be . +Where is he these days ? +And what is the right time ? + You do nt know how long this will last , he said . +He is going to . +But I had to work . +Or it can be people . + We use them three out of five days in a week , she said . + It 's the country in the city . +Before , it was nt like that . + He said , You are no man . + To my last game . +So I said : You know what ? +But he did it . +Show me one that is nt . +New York : I . + There 's no other place for people to go , he said . +Could it be Dr. John ? + It 's all about work for me , he said . +Where do you go from here ? + This is what we do here . +No , it was not that . +After all , you never know . + And how about this ? + They would nt take me . + How many of us are around ? +You know what they should do , but you do nt know what they are going to do . +Are you one of them ? +They did , for a while . +Which it did at first . + I did nt want to get into it . +What is with this team ? + They did nt here . +To me , it 's my family . + I did nt even see it , he said . +Which it may have been . +We do nt see this now . + It will be over . + She has every right to do that , she said . +And the season is over . +It did this , it did that . +And the last one : What 's the best ? +This is your day . +You know what I think , too ? + That 's my home . +They said they were not . +Or both -- but in any case , not too much . + He 's what we are all about . + I did nt know you could do that , he said . + I do nt know what more we can get from him . + To each his own . +Most were for him . +But we had him first . + We place them . +And Then There Was One . +There are nt many like me left , he said . +It could go the other way . +THERE may be more to come . +We are like one big family . +That 's the way I see it . + What good will it do ? +She did what she could . +It 's what is nt said . +They did it to you . +He called that night . +And now it has . +When , I do nt know . +And so may the American public . +That they did nt know much about them was a big part of it . + I say , How can you not ? +We could have come in here and been down . +Here it 's all white . +You can work with him . + Well , he could have been . + But if I do nt do it , who will ? + The money is there . + There is so much we do nt know . +Which of them is right ? + We all get it . + How can he be ? +This is the the only country I have . +How good can that be ? +He 's on it . + He does nt know where it is , and he does nt know if it 's all right . +Now there is no place to go . +But he did his part yesterday . + How it can go on for three days I do nt know . + It was nt the money , he says . +This is our time . + They should nt , though . +But how to get it there ? + How much for these ? +People come and go all the time . +You do nt know how he does it . + To this day , she said , I do nt know how we were the only two people left . + I think that 's what it 's about . + Today , the time has come . +Right now we can not . +If it does nt work out , it does nt . + It 's all the same to me , she said . +Well , this is like what it used to be . +But it does go on . +But I do nt know what to make of it . + I know I have . +He is all there , at all times . + Well , no way . +So , here they are . +What about New York ? + I should nt think so . +I just did nt make them . +There are so very many of them now . + We did nt know it would be this good . +I do like you . +We are part of this city , this is our home . + I did nt want to come back . + That 's it , he says . +It 's that they were used . +You know how long ago that was ? +In the last year , one director has left . + You only get -- what ? +All you could do was to do it . + How long that will last I do nt know . + Can I go with you ? +And you know what you said ? + We had a war with them . +That 's not the case this season . + She was like , Where are we going ? +In a very big way , it still is . +You made us a part of your family . + We do that all the time . +Here are the people who made them . +I can not say I was one . +What then should the court do ? + That might be what they want . + But it 's not like the first year . + I was like , right . + We did nt know what to say . +We just could nt work it out . + We are on our way . +It was his game . +Now , all four are used . + And some people are nt . + I do nt see there 's any more that I could do , she said . + They did to me . + This is like home , he said . + Should I do that ? + That day has been around for most of this year . +It 's good work . +It may take a day or two to make it work . +What is he going to do ? + How could you say no to them ? +Now it was time to go . +It 's our life . +And get on with the people 's business . +It did nt want to be in the business it was in . + I would say we have been . + She said , That 's all he has to play . +I think we were there about the same time . + It should not be that way . + We have nt been that . + I take more time . + And what did he do ? +I want to come work for him . + I like her . +We have one game . + How many children does he have ? +I have time with my family . + It 's not going to be work for me , she said . +There was no way to know . +Who would you like ? +I work for them . + But it 's not about where you play or who you play for . +But I think I can still be very good at it . +Some people do nt know how to take him . +They did nt know what it was . +Not so for this team , not now . +After all , it 's his night . + Well , they did nt . +So I know where they are . +They are our own people . + Right now , I do nt know . + No , it 's my place , he said . +She even called every three days . + They like to be their own people . +I want the best . + This year , we say next year . +Still , other work is going on . + That was it , she says . +They just want it to be over . +That was their business . +That 's a big part of it , I think . +We think we do . +Every war is also about money . +We would like him to play . +I would nt know how to do that now . +He 's through for the year . + I do nt just think that , I know it . +It 's not as long . +And when will that day come ? + Five years or so , he said . + It 's who does nt want it . +A : I think just about every time . +Now they know me . +It is not his . +He made only one . +But we are back . +They are and they are . + We should just get on with it . +That part of me is still there . +Are you going to go back to work ? +There were nt many people . +But we are well on our way . +I did nt want him to know . +Who are these women ? + That 's just life , is nt it ? + Under the house . +But she said : There is no other way . + We have her . +Will this be the year ? + There 's not much we can do about it now . + We are not the same team . + I do nt know about that , he says . + That 's what it 's come to , he said . + See me next year . + We want to be the best we can be . +I had the time now . +It 's not new to me . +But he had to . +It should be like this . +That was a good one . +I did nt know I was . +What could this be ? +I like to show what I can do . + I was one of these women , she said . +I do my best . +I have to do what 's best for the team . +They were used up . +Now we have four . + It was New Year 's Day , he said . +And I should nt do that . +You are from New York , that 's part of it . +I know because I was one of them . + He says , I do nt know . +You say , what ? + Where do we go now , what do we do ? +He can play on my team . +I think that should go without being said . +This is the time of year when you do that . + They said : We are going now . +I know I can , and I will . + It might be you next time . + We did nt want to go back to New York . +But it 's not going to be him against me . +So that 's on me . +Just be as good as you can be . +He said he did not think so . +We just make a little on it . + What 's that going to do for me ? + He would say : Do you know where you are ? +Go to school to go to school . +They are my team . +But we all think it . +She 's just right for me now . + What can he want ? +Which is to say , very little . +Three days a week . +When will they come ? + It 's their second home . + We still have much work to do . +How It Should Be ? + What 's this going to be about ? + I like the old days . + What good would it do ? +Well , that 's right . +And that 's where we are at . + What does that have to do with it ? + I do not want to do that . +You can only see out . + In the United States , that is . +There was one left . +But you never could . + You like to think that 's where it has to be made . + I do nt think that 's the case at all . +It 's like a game . +What is this place ? + It will be good for business . +But they did nt know much more about it than that . +I do nt have time for this . +In its way , it 's been good to me . +So what should we do about all this ? + And I was like , to me , it did nt even work . + I called back . +But he does nt have that . +So who was left ? + He was nt here very long , she said . +War , what is it good for ? +I just want to work . + How did she know ? + I think it was good for New York . +It could be two days . + It made me think . +It was too long . + More than that I can not do . + I have them in my house . +When it does nt work out , it just does nt work out . +Does that make me less American ? +He did not think so , he said . + They found me a place to go , she said . +What does the company say about that ? +That , I know , was said . +But that is not all they come for . +Money , money , money , money , money , money , money . + If there were another one , I would know about it , he said . +Would he want to ? +He has been all season . +And as long as I know that was the best that I could do that day , it was the best that I could do . +But that is only during the week . +That 's around here . +I put all these people to work . + This case is nt over , he said . +Not with me , they have nt . +We said , What can we do for you ? +He could have had it another way . +And he may be right . + I did nt do any of that today , he said . + Then we found out . + After I did it , they said , How did you know that ? +They do nt think . +Well , how did we do ? +That is as may be . + I do nt even want to go there , she said . + I do nt think I could do that . + It says what it says . +But what do they know ? + And that , she said , is how you market a house . +You have to come back from them . + Where do you go to ? +This is our program . +Used to be in my company . +Even so , I know him . + People just do nt know her . +She did not have to . + I had to go all the way , he said . +I think that 's where we are at . +After the war , Life ? + After all , he said , these are people with their own family . + And many did . + Some of them I do nt even know . + I said , You will be . + In this case , they were not . + I think we will be here for a long time , he said . + That 's what it was there for . + It 's new , is it ? +So we have the best of both . +I know it did nt work for me . +People do that all the time . +The other President of the United States . +But this time he did . +So who 's the best ? +How do I make it ? +At first she said I could . + I do think it was of use , he said . +Say , a million or so of them . + The time had come , he said . + We know this is nt all that 's out there , she said . +But some are in it for life . + He said that in the White House . + But there 's not much that any government is going to do about it . +There was a long way to go . + Do nt know how she does it . + How can you not like this man ? +It was one play . +That had not been the case until now . +As well it should be . + Both were very good . + I said we were a . + But I did nt know where it was . + And I never have . + It is nt right . +No one 's going to want to do that . +Some like each other and some do nt . +It is not good for the country or for you or for me . +He made so many of them . +How will it come through ? +That 's when he found me . + This is our life , she said . +So , I just did nt do it . +I had to get back in it . + Without them , I would nt be here . +It still is , on good days . + It 's the times . +But are they right on this ? +But we do nt have the money to do that . +What Are They Even Called ? +You are right ; it 's time . + It did nt use to be like this . +They do nt think they are out of any game . +They had a home here . +How can you do this ? +I can play the game . +How old is he ? + We should never think we know it all . + No , not you . + These are good people . + It 's how you go out and play . +But now it does . + I do nt know where you would get the money , he said . +We are used to it . +But there was such a time . + Last year there were two of us , and now there 's just one . + Not much , she said . + Is that you ? +And the other way around . +He did what he could . +And then , What was there before ? +And I think for now the war here is over . +That I can do . + He said he did nt know what was going on , she said . +I did nt know they were going in . +There are two , not three . +They are after me . +It was their second night back home . + He said , Still good . + Do we have to be like them ? + That 's all right , I said . +This is how we get even . + It 's never time , he said . +He was the company 's first president . +But some of them may not be . + We do that for people . +We know we have a good team . +He says he does not know . + They should have . +You are not me . + I said , Get me off of this . +When I was there , it was the same way . +You do nt know that . + They do it every game ? + It is the right of people to know who they are . +The year 's over . +It was only one game . + There 's the president , he said . +What did it do for you ? + It 's not like that , he said . +And , what , you are going to say no ? + I do nt think it 's going to be . +It was on and off . +It is to just say no . +It still has nt . +They say , What 's going on ? + But this is the last one . + They might not like it , but they get it . +I will get on with my life . +As Long As You Both . +She 's going down . +I could not come to my country . + For those who have the money , they come to the game . +Five did , five did not . +To get back my life . + I want to come home . +If so , this could be the game . +People who know him know all about him . +It is just part of the game . +He said he did nt know what he might do next . +Never been and never will . +That 's how I found out . + Do you know who this is ? +Not in that way . +We know that it 's not . +I know because I see it all the time . +We do nt know who they were . +I just do nt know what this war is for . +That would be the end of life . + We just do our best , he said . + Now you see , he said . +Here is how it would work . + That is where I see the company now . +Or may not be . +Now we know how much we did nt know before . +Some day , the best will be in there . +Where does it come from ? + It 's one game after the next . + We want them also . + She 's not going to go for you . +I have had it three times . + Not only for the team but for other people , too . +I did nt know what to think . + We do the best we can . +He will go down as the best of all time . +That should be said . + It 's all too much . + Does he have any money ? +Both are in the show . +At that time of the game , that 's who you are . + But we made it . +Well , who is us and who is them ? +To this day I did nt . +Did you like them ? +And he said he was there for all of it . + I want more . +But now there 's you . +Well , because it 's the political season . + Come to us . + We do nt do police work . + After all , this is what we want . +But he does not come out and say that . + But he did nt have to . +For all I know , it may not even have been the first such , but it will do for a while . + So was the White House . + We said , What are we going to do with them now ? +So what is there ? +But there is life . +I just could nt see . +Because it 's what the people want . +That 's not all that 's in the house . + Where 's he going to play ? + Work at Home ? +How did she last so long ? +And they may have found it . + There are nt that many of us left . + It will work out for you . +He is nt , though . +But this is all right . +I know him so well . + We are not going to make any more or less money . +They do nt want to see it for what it is now . +We put in money . +They make money with me . + Do nt you see what we can do with this ? +What do they do when they get there ? +That may be right . +What could be more American ? + But I did nt do it . + You know who you are . +I will know when the time is right . +But how might it be put into place ? +You are going to do it . + I made it work . +It was a two . + And as they go , we are going to go . +I like it as is . +I only have so much time . +He said that several times . + You know what it is ? +That 's what I like about this team . +I do nt know what to do with him . +May be , may not be . + But people do nt want that . +BY NOW , THESE . +Then there 's this new one . +That 's what it says . +Not the best use of my time . +Not just in New York , or the country , but the world . + And there , and over there , too . +He did , on most . + Are we right or are they right ? +This is not what I want . + I did nt know about that , she said . +Could she do it ? + You just do nt get to work with people like this every day . + It 's my show now , he said . +This will only be our second day off . +It just has a life . +But that 's the business we are in . +I have nt for a long time . + He said , You are . + It was just : I want to be out there . +I could nt get through the week if I did nt have it . +They had to go first . +It 's all I want . +Most of us have it . +Could I still do it ? + What do I think ? +I will be on time . + I think our best days are still to come . +Today is a school day . +Who would know what to do ? +And that has nt been the case this year . +No , just right . + WHEN are we going to get there ? +It had been his life . +You do what you can . +We do nt have this . +He 's going to be big . + I think people want to see it . +Or in a New York City public high school . +How would you play it ? +It 's a first . +What do you think now ? +But that was all he could do . +There 's no place like it . +I did nt know that you did it . +Just say it did nt work out . + We do nt see it that way . +There was not much here then . + I can see how good he is . +If they were nt , I would nt be here . +But it was just as well that he was nt around . + You can only take so much of that . +I said then that they did not work . +It 's New York against the world . + He will be its director , she said . + They had to go out night after night . +Could that be the place ? + This time it did nt work out . + For several years , I did nt work . +So what is it all about ? + Come on back , I said . + We have to make it that way . +They are about to get just that . +But it 's part of what this life I have is . +And he has not had a good year . + But are you all one people ? +But you do nt want to do that . + Now you get to see me . + I do nt even think about it any more , he said . +In most , they did not . +This is what we would do with it . +It is nt us . + Is it this much ? +One Family at a Time . +Still , some people like it . +Those , as they say , were the days . + And I had to be . + I like that , she said . +I think we both are . + We just do nt know when that is . +President , you do nt know ? +But there was a time when he would have . +The Federal Government does not have such a law . +So , all of this is big business . +That 's about right . + I did that . +It was too much for women to get used to . + You could just see it . +I do what I have to do in the off season to come back the way I want to come back . +How in the world are you going to do that ? +But most of them are . + I think she has all that . +If you do nt think this is going to work , if I were you , I would nt do it . +Here are three of the season 's best . +Just get him out . + What Do We Say ? + What 's next ? +I may not play well all the time . + But he was nt that good . + I just did what I had to do . +This is what you have to do . + It should nt take that . +We will do it my way or no way . + They see we have so much . +You have a life , he has a life . + What did I do now ? +But it was nt just money for us . +But it 's not all good . +To know where you are . + What see you when you get there ? + It 's not just the good times , it 's all the time . +They are , and for so much more . +Not with this team or any team . +I should have left you years ago . + I have nt been around him all that long . + This is not the end of it . +That night he put on a show . +Was it as good for you as it was for us ? +All have been in this country less than a year . + Now , there 's only two or three . +At night , he has time to think . +It 's not like before . + Here is what I do , he said . + It was never said ? +It 's been years since you left us . +She was one of the first . + He has some of that in him . +We have a long season . +How have they made out ? +I like to be with people . + This is the same . +Most of us have too much . + This was the best . +But I did want you . +So said the program . +It is case by case . + They never left him . +If it does nt work , it 's on him . + Each time , over and over . + Do you know what they were ? + This time I just could nt make it . +That 's the way I like it . + This year I know what I want , he says . +I do nt like to see it . + What about now ? +This was his second . +That day is about to come . +This time it did . +Where have you been ? + But I do nt think they will . +It 's for the best . +Who does nt these days ? +Is nt that the way it should be ? +How do you know when it is or is nt and how do you get it if you do nt have it ? + No , I do . +We did nt have it last year . + Then do nt use it . +All of this is well and good . +You have to be with it . +IT did nt take long . +She was going to like it here . +What is it like then ? + They have Go . +Up until this week that had not been the case . + We can we do ? + It 's not going too well . + This is only our second year , she said . + They just come in and get it . +But in the States . +It has a life of its own now . +No , no , I said . + This city , she said . + The public will see right through this , she said . +Or at any other time of day or night . +But not out , IN . +He 's not going to back down from me . + I did nt want to come to work today . +Well , I was nt . + So what could they do ? +Not long ago , that next time would have been next week . +I would have to say no , he said . +And we can all go home . + You know what I would say to her ? +But I do nt think about that day . +I just work here . +And well she should . +You get what you think you are going to get . +They do nt want to do that . +It was not new . +But they would nt . +But that 's not what 's going to get it for this team . + I did nt like it , she said . +Then to have the game end the way it did ? + So this is it ? + No more up , he said . + No one called at first . + Where is he ? + Left , right , all over the place . + But I do nt think so . +I think about those people every day . +How would he do ? +It 's more me than them . +And we are out with them . +We never should have been here in the first place . +This is the only way to go . +Now we are going to do it another way . +I might have been one of them . + There 's not much you can do about it . +What in the world is going on here ? + We do nt know what to think . +There 's just so much more you can do . + They do nt like it . + I think this has to be the best . +He said he could nt . +And come back he did . +They will not because they can not . + He did not say she can not -- and will not . +You would nt be here if you did nt think about that . +This one will not be . +And he 's going to go from that to this ? +Many of them do not make it through the first year . + What would you like me to do ? + I said : How long is it ? + So we have to get around that . +You can do that if you want . + If we do it right , the money will come . + It was nt like we did nt know what he was about . +That 's what they want to do . +This is not the same team as it was . + They are all white . + What do you make of it ? + My way is music . +Think of what he did nt say . +He does not work . + And then we did . +Because I said it is . + If that 's the case , how can you be out of it ? +We see what is and we see what is not . + I said : He does nt want to be here . +If we play like that , then we can . +They say , What does it have to do with me ? + I like it , is all he says . + But that is all . + I can see you . +We did nt show up today at all . + Another said , Then what would he want with you ? +I was to make up two of them . + And that 's not only for me but for the team . +Could I back him up ? +They think you are good . +I think that 's all I have to say about it . +It could , but it does nt have to . + Had what in me ? +If it was , it was a good one . +But like I said . + You just have nt been here . +We did nt come with it . + Because that 's what it was . +That is , he did it . + It 's not because of our money . + He did it as well as I could . +This one 's for me . +There is no more way out . + It will take time . +How can you use it ? + For days like this , he said . +I do nt think they would . + But I do nt see that . + So what do we have ? +But it was no good . +That 's all I know about that . + And that 's all to the good . +Can you go back ? +It 's on the Street . +But he does nt have the game to back it up . +New York is just about the work . +That 's all there is about it . + They want to do what is right . + And then I had it . +If I can go , I want to go . +But people know who he is now . +But there is more to him than that . +I can play and I want to play . +He has nt been here . + I do nt want him to have a good life . +But all that was years ago . + Where we go from here and how we get out of it , I do nt know . + But that 's just not me . +THE TIMES OF MY LIFE : And My Life With The Times . + We could take it in one day , but what would we do with it then ? + I would nt want him . +How much money will it take ? +And he still is . + He did nt like music . + He said he did not know who it would be . + Not good , he said . + That 's all I should say now . + And that 's the one we used . + I like his play . + We do nt want to never know . +Two or three times should do it . + If you get one and do nt get the other , what are you going to do ? +They both said they did not know . +It 's been a long , long four years . + Are you going to be good ? +With him you never know . + Who 's going to do it ? + When I get up , they are in school . + But I think this is the best place for him . + Think of it this way , he said . + I think it 's all the director at the end of the day . +That 's the way this team is . +Was that what it was ? +I do nt think that will set in . + But we do nt think so . +I do nt have to think about it . + How could she do this to me ? + They are all like that . +This can not go on . + That 's not good business . +And it still does . + When he 's not on the set , you never know where he is . +Well , for the most part . +And now I do . +When you are on it , you see the same people night after night . + Next year , she said . + I did nt think I could get back to first . +This was my life . + There are five of us . + And where were you then ? + He said : You have to go . + It 's not so much the money , he said , but it 's the way they did it . +Two down , one to go . + It still did nt work . +And where is it ? +The last time , that is , until now . +And when times are good , as they are now , they are very good . +You know what it would be ? +And good for me . + How does it get in the way ? + That 's only part of it , he said . +You have to go little by little . +I do nt think we have to . +He did not come home that night . +Show business the way I like it . +And I just do nt have the time . +There 's no one around . +It 's how we all have to get around in New York City . +Not only is it good for you , but it 's good for your family . +We still have to go to court . + It was a good way to end the week . +Only the first two are going to get their way . + You play the game ? + Good , I said . +I do nt think it 's my place to get into that . + You are one of the few . + This is going to take a long time , he said . +It is about life . +They have never come back . +They come from all over the state . +They did nt even know what to do with them . +He 's part of the team . +Where are we going to show up next ? + We know what we want . +You do nt have much time . + You do nt see that in any other day part . +But for that , he would have been first . + I might not have . + We do not want to go back to war . + I did it at home , he said . + He did not , because it is nt there . +That is new this year . +Go out there and do the best we can as a team . +Just in and out . + She 's never been out of work . + And he said , Right . +We do nt know what to do with it . +But that 's not all the center does . +But he should know they were there . +But who found him ? + I said , Where 's the money ? + Then he just did it . + I do nt know what it is about him , she said . +Only at the end . +What about other people ? +That 's each year . +We are your children . + So Who Did It ? +I did nt get through . +It does , in a way . +That 's still too high . + Next day , she said . +I do think that , she said . +Well , we have nt . +But that was yesterday . + There are several out there like this . + The Federal Government said it would do its part if we did our part . +Now they should all know me . +The team says no . +It 's not about being right . +Both have said they only want to play . + I like what 's going on . + Here 's it 's all in one place . +The Old Man says he has . +Do you want to have children ? +He does nt know any other way . + Here it is , she says . +I take my time . +You have to do this . +That was nt the case before . +It 's a new day for American music . +But what were we going to do ? +But can they do that for five days ? + Which we did . +You only have a few days . +On the street that is not what is going on . +He might have to . +He is going home . + Not like me , she says . +But it could be much more . +But that was nt right . +How about money , then ? +That 's just not my life . + Well , what do you know ? +You know , we all want it . +That 's the way I want to be . + How did they play them well ? +But what to do now ? + Would you want some of those ? + This is the best day of my life . +It was nt that they could nt do it . + I do nt think he 's as good as he 's going to get . + I do what I do , he said . +So I still make them . +Are you with us or not ? +Their second team is as good as their first team . + People did nt want to go home . + But it 's going to go up , I know it is . + You get by it day by day , she said . + I could never say that before . + Not just for me . +And he did not take it well . +In a few days he will have all the time in the world . +So now we have them , too . +Women : United States . + I have three children who want it . + People do that in this business . +Then after that , he 's off . +Work on it at home . +They were little people . + Is that best you can do ? +Who is to say which is the right way ? +What was life like ? +Who were we now ? +But if there is such a country , it should say so . + They do nt work , he said . + Well , where is it ? +It 's not me against him . + All I want is for it to end , he said . +They had it last night . +They do nt do it . + Who 's next ? +Come to our place . + So , did we make it through the day ? + I was like : For what ? + But I want to make the place work . +We do nt say that . + That 's it , he said . +Well , what is American now ? + It 's all the same place . + And he said , Good . +We do not know when or if he will be here . + They had one during the Second World War , he said . +That did us in . + And I think that was good . + He said , What would you like to do ? +You do nt know what to do with it . +It 's what we do have . + But that 's just New York . +Those were the good old days , those first days of the season . +And now , it is time . + But not for us . +And I will not . + But we have what we have . +He says , You know what ? + This is where they are going to get us . + The world is too big up here . +I just want him to come back . + People like us , what can we do ? + I take it one year at time . +People still do , but not as much . +He will also be a director . +How much is left now ? +But no , it is just a children 's game . + After all these years . +That 's what made you want to do more . +There 's much to do . +There is still more . +SAY it is nt so . +Some of them had not . + If she was nt so right on the money , she said . + I was there for the first three days . + We want them back , he said . + What is he up to ? + People should do what they think is right . +I said I did nt think so . +WHERE will it all end ? + Is there going to be war ? +Not like I should have been , he said . + I think that they will go out of business , she said . +This is my new place . + I did nt do well . + If we make it that long , he said . +I do nt make any money from the government . +It 's time to get back to business . + She said that was like music to her . +You never know the way the game is going to go . + Now , he said . +Still , you never know . +Now , he says , all is well . +WHAT ARE PEOPLE FOR ? + We will get through this , he said . + But they do nt do it . +Then there 's being President of the United States . +You can only say no for so long . + It is going to be there . + Which Way Is Up ? + Can I say this ? +They want to get it right . +But government can only do so much . +What he will do with it and where it will end up I do nt know . + Not if people think about it , he said . +But there is more to his music than that . +Now it has more . +How much do we have to take ? +It was the only part of my old life that I could still have . +But they are nt , so it is . + It was like I never left . + Few people are like that . + I would say just about all of them . +But then , how could he ? + The days have been long , he said . + It does nt do much for me , he said . +But who , or what , were the best ? + That 's what they should do . +So how do you do it ? +We know how to do that part of it . +I did nt know they were that good . +It 's about us and who we are . + Take , she said . + In their case , it 's not going to be . +He did not say when that might be . +You see , it 's your money , not the government 's money . +How would you do it ? +I do nt have to say that . + It was nt and she did nt . +Who did this work ? +They like our music . + Do I know him ? +Who can take it ? + We are going after business where business is . +Or Is It the Law ? +But it 's still about show . + Where does that come from ? +Now we know what we are . +Or should it be one ? + We make out , and I think about it . + Well , he did . + That 's a good way to put it . + We are best this way , he said . +You do nt know what he is going to get next . +But we are over that now . + We are not that good . + They know more about the market than I do . + I do nt think there is . + People do nt get it , he said . + Now not so much . + They said no way . +But that was just for a second . +We are just going to play one game at a time . + But that 's good , too . +What has been found ? +You take it one play at a time . +He had one after another . +Where has it been all my life ? +You just have to know which is which . +They are the world . +Or in New York ? + It 's all political , said Mr. West . +He said , How are you ? +Well , there we are . +One called me for several years . +Do you have a big family ? + Now is not the right time to go there , he said . + They were nt my team . +They were , too . + He said , Right now . + But we still have a long way to go with that . +And I did nt , and I do nt . +Where had she found them ? +But what could we do ? + I think you can do both , he said . + How do you do this ? + She said , How much ? +We even like you . +What a show he put on . + I had such a good time . + These are people you see every day . + It 's about the people . +And they say all right . +You just do nt know where they are going to come from next . +Well , Who Is on First ? +All is not the same though . + We have to get back to work . +The next day , she did . +It was just like he did nt get it . +And then it 's over . +I want this and I want that . +Now , who was it ? +They know I will . +It 's for you -- you , not us . + But I do nt see how we can do it . + I left him there . +Now how about that ? + Not to me , she said . +It was not the best . +If you want to come , you come . +Here are some of the best . +They know how big a game it is . +But he said it was time for a new life . + Or are we ? +But more on that another time . +But we do nt just want to get there . + If I did nt , I would nt be here . + But it is not , he said . +You do nt see it . +Will it never end ? + And there 's much more to come . +I know I can still do it . + If you have to have it , have it . + This year , they called me back . + I did nt have any today . +It did and it did nt . +No way to know . +They will take us . + What would that be ? +But the program may not work . + It 's big , he says . +And then after that , I do nt know . + They do nt do it in the United States . +No time to do that right now , she says . +And you want them all . +It is not a game . +Among them are these . +The general was back today . + There 's no second place in her life . + Do you want another one ? +How are we going to get our money back ? +It was time for the next set . +Here is what he does not have . + No , I do nt have one , I said . +The season is long . +Then there 's the war . + They can make all the money they want , he said . +On this day it would not be him . +You see them every day . +I could just see it . + They said , We are the law around here . +It 's you against the world . + It 's still the same team we had last year . +But that show is show business . +What about my children ? +We all want to go there . +Also for many years . + I do nt think it 's going to make it . + They could be any of us . + I have to get there . +But there was no one to do the work . + We have a good time out there . +But that would take four more years . + Just the way we want it . +He just did nt know it . +I do nt think about the work that way . + I did nt have to . + It 's time off to get right . +He did not do that . + We were the best in the United States . +And all 's right with the world . +There are so many of them . +He has come to work . +Like them , they are down and out . + Those will be the last to go . + There 's a war going on . +I would nt get in the way of this . +But that , they say , is about to end . +And it had been a big one . + Today , we do nt know which it is . + I do nt have time to work . + It 's just where we are today . +So the show is over . +No one is at work . + I have a little money , he said . +And it 's a good time . +We are not right now . +Is the other too big ? +Could they be right ? +You have to do that with people first . +Not in my house . +I only know one way . +So what would work ? +It is three , not two . + Just one , she said . + We see it all year long . +They never last long . +They put down I . + And I can see that . + I know how it is in New York . + It 's not up to us . +Who was he with ? +We are not used to it . +They are in court now , I think . +I said , We are home . + It 's time , right ? +But that 's his business . + We can , he said . + He had it today . + He 's , like , right over there . + I found a way to get in the way of one , he said . +You do nt have to know much about this business to see that . +There was nt that much left in there . +But that 's not the case these days . +I can and will do this . +But he had found his war . + So what do I do ? +And then , at last , there it was . +He did nt go . +Where 's your life ? + That 's just one day of a year . +And out of the play . +What 's left is very few . + You just know who they are and what they can do . +They are my home now . +This is just one game . +It would be their last . +But you get used to them . +Not the way there used to be . +She made the best of it . +This is what my life is every day . + You would think they would play that up a little more , he said . +So what may be next ? +He did not know at the time what was going on . +President would be more like it . + We go back a long way . +It 's part of the business . +This is going to be a long war . +She had been in the city two days . +He 's not the man no more . +Not many would do it . +We did nt play a game today . + It 's just what we want . + New Members Show . +No , not just . +Do I still think it ? +She should get all of it . + It is our home . +Do nt do it for the president . +What was the year ? +And I think I do . + How do they do it ? +But play he did . +One of those was my house . +For the time being he did . + It was just today . + It is a war , a long war . +If it was nt for him , we would nt be here . + They were very good people , but too many . +If so , he should say so . +Now get back to work . + There are only so many times you can go back . + But there are nt many people here today . +I want it to be the way I want it to be . + And this is for you . + My office is in my home . + We did nt do that here . +I do nt use it at all . +I want to go home now . +Now it has all come back . +And I made it here in New York City . +They know children very well . + Today , there are four million . +It is one , not two . +So it 's all the same . + But right now , it 's not like that . +That 's a good day . +It 's only time . + A New Day ? +And they could be a very long time at their work . + That was just a play I did nt make . +And I do nt want to come back here . +There are few of us around who do . + But it 's right to do them . + And how much have we made ? +If they do nt , it could be a long season . +Some left the country . + Where are we ? +That 's the way it is now . +Today we found out . +I want you to do your best . +But in this case ? +But it was nt the case . + That 's one way to put it , he says . +For women , that is not the case . +It is also good business . +You know what it 's like . +It 's still there -- and then some . +But these days , it 's about being first . + This is good , I think . +It 's just going to take some time . +I could just go on and on . + I think they were the first . +But I can say this . +This is where I want to be . + It did nt last too long , she said . +And they all know each other . +Too Much or Too Little ? +And that 's not what we have now . +When can I go home ? +That 's been him from day one . + Not on it , she said . + Is it more of the same ? +It was my last game . +And now , now . +I was , but that was nt it . +Where to take her ? +That was all they could do . + But that 's just because they do nt get it . +THIS is about money . + I would nt do it if I did nt . + So , where are you ? +But that is not my take . + Very , very good . +It is a court in this case . +It 's not that I do nt like this ; I do . +It 's going to take some time for me to get used to it . + He 's not good about How are you ? + In those days you could go from show to show to show . + I just do nt have time . +But that still was nt it . +That 's the state that we are in right now . +They just do nt know what to do about it . +Well , you had to be there . +But it 's over . +It 's no one 's business . +But he was back at work yesterday . +Well , they will . +There is nt much . + They are very good . + To me , it 's So what ? + And I like these people . + We are the house , he said . + You were all over the place , he said . +We had war all around us . + I just do nt have time for it all , he said . + That is not to say I think New York does nt like me . + That last day did it for me . +I left after two years . +That was my team . +So , I do nt know . + Now you have two and three people in the same office . + Do nt think too much , he said . +He 's made play after play game after game . +Or so they think . +Just like last night . +See me in five years on this one . +Then she called me . +This year he has no work . +They are still with us , he says . + See if you can do that now . +Back to what they used to be . +Where do you like to play ? + But they still do well . +People do it all the time . + But there it was . + And I said , You will be part of this world . + No it is nt , I said . + We are all the same , he said . +Did it his way . + I do nt know how they do it . +But only if you want to . +WHO do we think we are ? +It was the right play . +But she will not . + If that 's what they want me to do , I will . + They have that right . +It 's just that way . +And the time will come . + Is it all in the market ? + We are not going to take it any more . +He just says no . + Well , what would you do ? +But where 's the season ? +I -- he 's a good man . + Take me back to my house , she said . +It 's like they do nt want you to have it , she said . +A little more than a year , she says . + Today , people do nt want to do that . +City , state and federal officials do nt think so . +That 's the way to do it . +In this new year . + And then I said no . + But that 's not the way it is . +They work with each other . +So we know how to do that , as well . +But that is the case . +Where do you want them ? + Now he does nt . +He found it at home . +It 's not just money . + Or three or four or five , he said . + I will not be . +We are going to make this work . + But people just did nt want to know . + I think they can , she said . +The other part was the police . + It 's time for them to go . + Who will do those ? +Without it , she said : I just do nt know what we would do . +You just have to play it out to see . +It never found it . +That 's what they want . + But is that me ? + We want this to end . +It will take time but it will come . + There 's no set time . + We do nt have to . + We do nt want that here . +No , she said . + I just had to go , she says . + I will do what 's best , he said . +I can think about my music . + We can take our time and do it right . + And that 's that . +So there will be more . +They are there and we are not . +It was right for the time . +That 's what I like about us right now . + We do nt do business that way . +Well , that 's that . +You can do more with five than you can with one . + That is what it has come to . + We are all right . +For some , it can be even more . +They just have to do a little more work . +It is up to you . + This is our time , he said . +This is not our money , it 's the public 's money . + We did nt think that . +He may well be right . +And there 's no way that I could do that . +It was here , like this . + But he said , I will be there . + You know what , though ? +As it was , there was still work to do . + That 's what he did . +And we will be . + This is not about who 's from New York . + I could nt even see it , he said . + We own the home market . +Little did they know . +How did we get here ? + They say , This is our way . +More from me you will not get . + Last time I was there ? +And the people are there for you . + There , he says . +But that 's today 's world for you . +Are they all his family ? +And I can do it . + It 's a business . +I would not want to have any other family go through what we are going through . +BUT it did nt last . +No , they would not . + But we did it last year . +It was nt like that for us . +Four of them are now out . + I use it all the time . + Is it today ? +They just do nt know that . +He does nt want to go back to school . +But he still has a long way to go . +You know that , right ? +So then there were two . + So it was . + It just does nt work very well , he said . +That 's what we are . +But how should they do it ? +So should it be . +And it never will be . +I play every day . +And for three years after that ? + But we know very little of what they do down there . +I do nt know where it is now . + Our people are not . + What 's left from that day ? +Show me the money , you say ? +What about the people here ? +Now , we do nt . + I can do it -- I can do it , he said . +It 's like I know too much about that part of her . +We are a team that 's in first place . +The people were all in the right place . + Because it would nt be right , he said . +Think what country we are in . +They want to know what 's going on . +I had no house . +It 's up , down and around . +I just like it . +The president did not . + Not for one second did she get down ; not for one second . + So I say that . +It was this year , not last . +It has never been . +And now , what can I say ? + But they can not work like us . + I do nt think it was about money . +I play for the like of the game . + This one , even more than most . +Now I only know of two . +What to do next year . +It had to go . + But I did nt know not to do it . +And they do nt like that . +I should get them . +Now many of them do . + Just five days a week . +After all , they do own the company . + This is a new season , he said . +Not that I can see . +He had to think that way . +But we have come back . + And so who is right ? + I have to like it here , she said . +That was the first time . +Even then he did not back down . + She does nt want me to come home . + You can take that how you want . +We do nt know that , you know . +I did nt know what I had to do . + That 's going to take a long time . + So that 's it , he says . + Where Did It Go ? +What time is it ? +I said I did . +On New Year 's . + And I like it , he said . + And she never will . +There are few people like that . +They say , So what ? +I do it all the time . +And now it 's here . +I was nt going for that . + That 's what I do best . +But the music is not over . +That 's not who she is . +The first is money . + That was what he was all about . +I want this one for me . + This is our family , she said . +He was out of place . +I know where they come from . + You never know when you are going to get back there . +But this can not and should not last . +It 's your game . + And that 's what it 's going to be . +And the United States ? +I do nt work here . +But he was more than that , too . +They do nt all work , do they ? +We made a game of it . + Just one , she said . +Can you get in ? + He did nt want me to work . + Then they can go on being children , she said . + It 's what we play for . +I could nt do that in New York . +It 's a good day . + Where Are We Going ? + I see , she said . + It 's the way we like to play , he said . + In this business , this is big . + But I should nt . +They want to own it . + That 's not what we are after , he said . +She did play so well , though . +It did make you think . +We do our best . +I think that 's what it 's going to take . +Today was his game . +I have no money . + I have nt had as good since , he said . +No one would have me . +We might not get to them until game time . + We do , too . +He said we did nt have any . +So too are the American people . +I do nt have to do so now . + We see all that work of many years . + I do not do that , he said . +What , then , is for me ? + And you know what they like the best ? +Well , I would nt . +That 's what I would want to know . +They have their group . + So many are much , much more . + Did not , not , not . +That 's just how life is . +It 's just good to have him back with us . +That 's three , not five . +But time for what ? +What did you think ? +It was nt him . + This one can get you out . +There should nt be . + You have to play the game so the game does nt play you , she said . +If he was , he did nt do it . + How you say . +It is a business , after all . +You get it or you do nt . + Is this all it is ? +But we had no way in . +But they do not want to be here . + Which one is that ? + What are you going to do about it ? +For now , it 's work . +It 's up to all of us . +We do what we have to do , and so on . + We are like one big family . +But what do you have on now ? + This says to people all over the world , Come to New York . +No less , and no more . +They just did nt use him . + He did that for me . +All I did was play my best people . +I do nt see how we are going to get out of it . +Now they have to . +I left there and I did nt think I should have left . + What Did He See ? +He did nt come in . + Did I think about it ? + I just want to be like that , she said . +Well this is what I have to say to you . +He did not say how long that might take . + It was there , it was just a little off . +Some of them are good . +My life is not music . +But other than that I do nt know . + We want him around . +But they were only a few . + I did not . + I think it does nt . + I think it can be . +On a good week , I can do it three to four days . + Where should I go ? + Well , she was . +That was one play . + We may not be very good right now . +My family 's here . +She should nt have been there . +It 's not here . +Even if they have to go to court to get it . +When it is good in New York , it is very good . + It was part of life . +Not one called back . +Come over here and say that . + People say , What can I do ? +When they think of government it 's the city government . + Four days , five days , that 's it . +The people here like it . +There is no house . +Some states use them . +And I say that may be good . + I said , I would like you to come back . +They do nt like that . + They just do nt know what to think . +And they are , for the most part , right . +Where do you come from ? +I never had one good year . +He will get more of them . +That is , after all , the case . +Now , where was I ? + So , you are still here then ? +I did nt used to be that way . + I was at the end of my game . +No right at all . +What 's the new one like ? +I could nt see the house . + It 's all about the game in this one . +That 's a new one . + Now they want more . +And so it should be . + It 's how you market your market . + My office is in my house . +He was a man . +We are out of there . + Like we are not even people . + Do it right , he said . +You may get them , but they will get you . +But you have to work with people . +She does not know where she 's going . +One could make a case . +And they like him for it . +By then I was on my way back down so I had to put it up . +His was a good school . +New Play by A . +All I want to do is to want you to come back . + And that was then . +That 's all you know . +That 's the way we play the game . +She said she did not know she should have . +Right now , I just do nt know . + You want to know who did all this ? +I think they have a right to know . +But , for now , they are in place . +For now , that will work . +WHAT could I say ? +We know we are going to show up this week . + It 's where the public is . +They are the company . + Will that even work ? + I like my team , he said . + What About the Children ? +I want this game . +But only for a little while . +And some did not . +But that is how they make their money here . + I like that , one said . +If you do nt have any , get some . +And it will be . +Is there any way I can get to them ? +Now we have one . + I like it over here . +What will this do to our children ? + I do nt know where he is now , the man said . + No we are not , he said . +The first one in , the last one out . + Life does nt end with the end of life , he says . + This is a time to go . + We have to put it off . + I do nt even know about this . +I just do nt see it at all . +Too much has been said . + We are not going to take that . +Then : I think she 's good . + It 's a day of your life . +We all know where we were . + Who are you people ? + It was us three , he said . +Not where he is right now . + I do nt know where they are going to go . +There are people out there who do want me . +It 's our life here . +The people want us here . +This is what we do , and we do it well . +He did it in three . + You see the same people over and over . +In general , he said , less is more . +I did nt want them to know it was me . +Not just me , but also her . + I think he 's going to want to be there to the end , she said . +What was all this about ? +But now our children have so little . + Who 's to say five years from now . +Would it be good to have them or not have them ? + I just could nt make it . +He 's no good . +Well , you might . +So , it does nt have to be this year . +Most of all , it 's big . + He could nt get in before . + I do nt want to get like that . +What do you see now ? +Down on the government -- that 's the place to be this year . + People should think about that . + That way the people will never know when I will not be here , he said . +I did have some time to be with him last night . + People did nt know each other . +And found you in , at home . +He said he was going to . +He said he was nt going to play with any other team . +But Will and I do . +It is going to go down from here . +Four , five years ? +But that 's not all he did . +My family does nt want me to go . + It 's not the way we want to go for the school . + All I can say now is that you are of your time . + Because he 's in first place ? +Well , most of it . +And there is after . +It is so not like that . +So come what may . +So , is it ? +Well , they are back . +Should nt , but he does . +Will you be with me ? +We said , We are going to get you out of here . + I do nt know if they know where they are going here , he said . +I can do it after the game if I want . + Never go against the family . + That 's what it was . +We do the same that she does . +We do nt know what we are or what to do . +To be with one another . + Think , think , think . + I want no part of it . +Do nt go up . + I think it 's just who he is . +They said it could nt last , but it did . +I do nt want to do it . +And if it was it would nt do . + Where are these people going ? +And who does nt ? +I do nt know him . + I do nt know how I can do it , he said . +Can I say this or that ? +A : I think all of us were . +He did nt come back . +They are right in each case . +But she had no children . + But they want more . + There 's a part that the public does not see , he says . + But it 's not good for the country . +But I should nt do that . +Where will I go now ? +But we can get over it . + He 's like , Do nt even think about it . + He is that way . +It 's all made up . +This is not how it used to be . + That 's our right . +She had no family in this country . +The money is the money . +She could nt go . + How could you not know ? +They called each other man . +But they had to say it just to get out of there . +How do they know that ? + That 's not us . +They should have called it . + That 's where we should be . +No , he would not . +Did I want to be a part of that ? + That 's the second one . +But also the best ? +This is the only place I want to play . +I can take it . +Music is about who you are . +IF THAT DOES NT WORK . +Right now , there is no market for us . + He said , Do you want to do it ? +We go to work , just like you . +They might as well have . +Now , one has . +There was nt five years ago . +They want to know . +Is it our business to do that ? + I know they say that , he said . +And I can work with him . + They said no , no , no -- they all said no , she said . +He does nt even want to think about it . + If you do nt want to be here , get out of here . + We are going to make good use of that . +It was the best time of my life . +That has nt been the case . + That was it for me . +She has said it over and over . + I have that right . +What was up with that ? + That 's part of it for me , too , he said . +We are in this to make money . +He 's put the work in . + It does nt go like that . + I go home every day . +It 's not like . + And so I think that 's where we are at right now . + Some will go up , and some will go down . + You have to make three . + We do nt have that , he says . + I know I can play with the best of them . +But now she does . +It is two , not five . +And to take it to them as a team game . +I know I do nt want it . +It is the last time because we have no more time . + I was nt used to it . +And my office is there . + How can a government do that ? + This one found me , he said . +I have , we all have . + This is where the country 's going to be . + I know you are up there . + What about the police ? +For some , it was the last good time . + I said : I have to see . +Can I go there ? + But I will for this one . +He is still in New York . +Now to work on it . +But much has not . + Think about it , she says . +He does nt even have to be in school . + I think there might be a country , he said . +And what a show he made of it . +Then where do we go ? +We do nt have a good team right now . +We do not have it now . + That 's right . + This is a way that we can do that . +Do nt you work for us ? + That 's up to him . +There has never been a time in the world like this , we say to each other . +He did nt have to be there . + But we still had to go out and do it . +She said , do what you have to do . +And I have to have it by the first day of next week . +They know what 's going on . +But in my business they do nt . + When I said , How come ? +There is no end to it . + There 's so much more work to do . +But he is not one of those people . + And did you see ? +We were never in this game . + What did you use ? +It 's against the police . +There is no here and there . +What do these people know about war ? +Me : In an office . + I do , she says . +Where did you go to school ? +He was in them . +How much is left ? +Now that we are on our way , I want to get it over with . +I will do more . +The next day , he is its president . + But there was nt one . +So , who are you ? + It 's a good season , he said . + I do nt know where to go , she said . + No , he says . + And who can do that ? +And the season before that . +Who left this time ? +There were only five of those . +It 's part of us . + They said , Now you are one of them . + I know I should nt have did it . +They want to come in , do the work and they want to go home . +She said they would be . +All three are at right . +Yesterday made it two . + We were set up , he said . + But people think they are . +He says he is over that now . +But then there is the music . +Season as you go . +But it was not the only music . + You can see that here , he said . +But we put on a good show and people like it . +What could have been in there ? +New music has been part of it . +And how does he do ? +They did nt want to come out . +That is one way to put it . + What Did He See . + I say I do nt know . +We were on our way . +If there 's the will . +They should go back home to where their home is . +And what you want to . + We know what they are not going to do , but what will they do ? +And if you did nt , you were nt any good . +But it 's just the first day . +This is how we work . +Still , that would not be the end . +He said he does so on his own time . + You going back out to work ? +A WAY IN THE WORLD . +Is what we do right ? + This is part of the game , is nt it ? + It was so much a part of me . +He had it all . + But how long will that take ? +But we did nt work that way . + I just did nt play my best at all today . +Still , there was only one out . +Was nt that show set in New York City ? +We did it for our country . + I just said , This is what I want . + You can only do what you do . +But you go on because the war is there and you have to . +It 's also not All in the Family . +He is its president , not its director . +I think I could do that . + This is what I want , he said . +I say well , this way . +Then they work at night . + They are just another team , he said . + Me , me , me . +But what if they do ? +We had no more of them . +It could be another city . +I want it to be that way . + We know we can come back . + The police should come and get it , he said . + But they can do what they want . + Is that what I want ? +So I do nt know . + Do you want to do your own work ? +I go to the next one . + It never did and it never will . + But I do know this . +It was like , He 's back . +And he would nt back down . +What are you good at ? + We are going at night . + People can think what they want . + Do you want these or not ? +Where is it going to come from ? + It was all she could do . +Some days we are not here very long , some days we are here all day . +I think you should have time to work . + That is still the case . +Now what do we do ? + And there he was . +You see it every day . +That 's about all we had . + The company should be in play . +I said : For what ? + Well , this is New York , she said . +They left the company this May . + I think not at all . +They are not here . +Today , they still do . +I do nt know what 's next right now . + They know who you are . +It is like that . +I can think of several . + If they say they did nt want it , they did nt want it . +They have a right to say what they want . +Time will show this will not be so . +This is nt just . + You know how I come out on that . + Other people , she said , can see it just as well as I can . + They were not . +No , he says , that is not it at all . +But not on a night like that . +There will be more of that . + It 's like you are there . +People would like that . + They are not good , just not good . +The money 's here . +Now there is little left . + How are we to know who these people are , and what they want ? +Who will be their people ? +And I do nt think that 's what government 's all about . +We know one another . +But then all was still . +Both know their way around city government . + SO who was he ? +He 's been here for years . +And that 's what we all did . + We think that now is the right time . +Too much so , in a way . +But would it be ? + It does nt . +And he should be . + How do I know you are with The New York Times ? + All you can do is your best . +It 's just the way we are . +It used to be the other way around . + But you never know , he said . + And get him I did . + If He Can Do It . +We were the state . +That 's what our team has been about all year long . + The government will not back down . +We could use more of that . +We know where to be and what to do . +And we use them all the time . +For most , it is all they see of the United States . +How could they be ? +All I can do is be me . + That 's over with , he said . + We are not political . +I do nt know what was going on out there . + Now it 's all about me . + And I said , How do I know ? + It 's not the same . +People do nt do that . +He never did make it . + We are not . +Now , with his own Can You See What I See ? +They are there , too . +Each was one of five children . +And that 's only part of it . +Or so we say . +Here it will be like that . +But how much money ? +If so , end of case . +But you have to know . +She did nt have to do that . +That do nt do it . + They do nt go here at all , he said . +After that , we were on our own . + I see , he says . + But not both of them at the same time . + How do you know it was nt ? +Where 's the Music ? +Said one , It 's just another day at the office . +This is about us . +What is New York to do ? +And she was big business . + That 's our team . +They might have me do it . + Can you take him ? +How can they say there have never been any ? +I could nt say that two years ago . + What 's our work now ? + Where are we going ? +But it 's all in the family , right ? + What is that for ? + What will you do with her now ? +This year two did . +I did nt think I could do much . +When you want it . +It still is , though he does not use it . +Well , we have that here . +And had it come to this ? + There are so many people who want them . +Would this be the year ? +I would nt make too much of it . + Want to see me ? +That is up to us . +This is just part of life . +He still could not get out . +He had made my day . +But I think she will . + We have it all . +I did nt want any of them . + And we could all do with some of that . +There is more to come . + We were out there . + Today , there is even less . +And now she has it . +What was her war like ? + In the next few years we will see more of that . +But she 's been right there for us , too . + I do nt think we should be there . + They want the best for them . +We do not have the right to put them off . + I do nt think it would be right . +He said he had his own money . + It 's new to me . +This year , I just come in and work . +I do nt know where they are now . + I do nt take any money from my family . +And where can they be found ? +Then I found out that 's all there was . +No , I have not . +And I do that . +We want a home . +They may be now . +Man , if he does nt like you , you are off the team . +He said , Are you out ? +Think about that , too . + I did nt like that , he said . +She does nt see what we see . +What was the war for ? +Some of those will not be there . +But that 's them . + We can come back against them , right ? +But do it up . +This is what I would have said to you . +I do nt think so , you know . +And if we did , we were right back in it . +Just to do it if you want . +How long had it been there ? + What more can I do for people ? +That being said , now what ? +Other companies do it . +And now this from the President . + What could he do for me ? +Not the world 's best . + We did nt have him going . + He has to put the country to work . +But it does not last , he said . + This is what we do ; this is our business . +You did nt see that four or five years ago . + But I have three more years to get it right . +Then you do nt have any money . +I still see it that way . +They called me during the night . + They like the game . +I do nt know how it did . + Two out of three said they would show , she says . +They know who we are . + You were the first to say it . +We do nt like old people . +But we do nt do this at home . + And I think this is the time to do it . + But we get to do what we want to do . + You just get used to it , she said . + That 's just the way life is . +Even the company says so . +He just The Man . +Time is money , they say . +I know it 's what I think . +There is only time for work . +What do I want to take with me ? +No one has work . +So could family life . +The people do nt think that is all just show business . +Not much more to say . + And every night I think about them . + I did nt know if I was going to get by him or not . + That 's all over now . +My money is on them . +This is its own business . +That 's what I was back then . +And then there are two . + After this one , it 's all we can do . +But in the end he did . +We do nt do it the night before . + The second one , no way . + It 's been a good program . +THE NEXT NEW WORLD . +Because there is no one if we do nt do that . + You never want to come out of them . +They may not have to . +That will be good for the country . +Make them up if you have to . +No , I was nt . +But we are all just people . +Not that they can use it . + Or the best one , What do they see in each other ? + I think we are the best . +Well , they are in . +It was her week . +You are not on it . +But who would play like that ? +SO what 's going on ? + And I said , Not in New York . + That 's what it was like . + He 's been around many years . +We could use him now . +But we should have more . +You are way out of it . +He said : My money he can not play with . +The next day it 's all over . +From last year and the year before that . +I can do that here . +But most of that money has not been used . +It 's not about what you have . +That 's our market . +Not , What would you do ? +If he were nt so good I would nt be here . + That 's what money does , she says . + They made it work . +The time was nt there because the money was nt there . +You do it one time in each place . +And no one has come to see him . +It 's like a big family here , she said . +But where is such a man ? + How long has it been since then ? + They have the best public , he says . +What do you do with all of that ? + And I do nt think that will take long . +We think he 's very good . +We do nt have to have it here . +Do nt use the Big I . +But that 's life in the big city . + I said , What ? +But business will be down . +What if we did nt like their work ? +I know what I have to work on . +I will show to you now . +It is who we are . + This is not the it and all for me , she said . + He 's an American first . +I like our team . +So we have come a very long way . + We are not in a state of war . +We can do so much . +It 's not just NOW . +I think it 's right . +What 's not to like ? +Because we could nt get more . + I could nt even see him . + I do nt know what 's come over me . + The time is now . + But my life is nt so good . +When we can do it right . +Well , he could have , but he did nt . +It 's not : Are we going to do good ? +My music may be me . +And the house is out . +There are people like that . +It was nt his day after all . +Well , we could nt do that . +Now I see it every night . +Which is the way that it should be . +That was John as we know him . + But they did nt , she said . + She would be at home . + There was no such group . +They do nt know much about life . + No , he 's a little off . +One would like to see more . +My children do not . + Where 's that going to get you ? + That was the best . +He was on it after that . + We did nt like each other at all . + But that was of its time . +We all want what 's best for our children . +But how can it ? +It 's good for me . +It used to be Just do it . +I can not say all . + That had to go . +But that 's good , too . + It should be a good game . +I do not know what can be made of this . + It 's still very new , he said . +Then where will we be ? + Are you up ? +But now he was back . + He said he did nt . +He said he did nt want to go , but he did nt know . +That day is here . +But did he say at the time ? + Did that make up for it ? + I do nt know how it 's going to play , he said . + She 's one of us , he says . +And when it 's over ? +I do nt think the West did it to him . + We are out . + I come from the West . +As if life could too . +This is how you can do it . + I do nt think she does . +That 's a very big part of what they do . + We are not going to do that . +He is , I think , a man of good will . +I do nt think they are . + I just did nt like them . + It 's the same game , he said . + There was no other way . +But he found a home . + But I just have to go on with my life . +The best part of my life . + Or is it three ? +It is a very big world out here . +I should nt even be out today . +No , not there . + I do nt know , I said . +The other said he had never been there . + He did not know how right he was . +So we know what we want . +But we do nt want to be a part of this . + That 's our market . +Then it 's on with the show . + What did you do in school today ? +And how did we get there ? +You know what it is . +That 's what I was good at in school . + He 's out here . + Well , we do nt . + I do nt think it 's set up the way it should be set up . +He has had very little work with the first team . +He just did nt know for what . +Too much night life . +Which I never have . +It does that very well . + How many people do nt know the play ? +Now it 's on him to show what he can be . + You know what I can do ? +The President : What ? +And that was that , he said . + You should nt make too much of it . + I do nt know that one . +It 's been day in , day out . +It is nt the end of the world . + For me , I know you just play your own game . + Every day , he said . +Or go for it . + I do nt know what I would do . +Only it 's not . + People put in what they want after a while . +Today , we did nt . + But it did have more than a million of them . + I like the United States , she said . +Would he like that ? +I think that , in the end , that 's what it 's for . + I do nt think that 's the case , he said . +And these would be people who can not do what I can . +And it did not end there . + Is that all it is ? + He may be , he does nt know how , he may want to . +But that is not the way we want it . + It 's part of who we are . + That 's what this program is all about , he said . +What 's three , four and five ? +Part of the game . +There are very few of those companies around . +Only the Government can do that . +They made me put it back the way it was . + I have the best . +Now , she is on her own . +For me there has been no going back . +So what do you know now ? + I did nt see any . +I do nt know where she is . +West did nt say no . +Where did we come from and how did we get to where we are today ? +If I can get it going , you never know . +He does nt see it that way , though . +And where do we want to go ? +And what does he do ? +What did they do ? +A : You would think so . +Where would all these people go ? + She did well in school . + We are one world , one people . + THINK , it says . + It was , We will get the money . + They have been here , they know what it is . +I will in my first week in office . +You do nt have to go to school . +But it might ; it could . + People would say , I want to get to know you . +But this is a place for people to go . +But you just did nt do that . +And I could go on . + I will not do more . + Now we have two . + They said no . +Now where was I ? +And down by the way . + I want them to do as much as they can do , he says . +I think he was right . +It 's good for the game . +Here is the house . + I would have to say him . +He did nt say it . +Then they take it out on their children for as long as they can . + And I said , Well , I do nt . +But they want it to be , How high . +But I did it my way . + I have no time at all . +He 's just like a part of the family he 's been with us so long . +Just the way it is . +We will work through this . +Now we are even . + Is she in there ? +Life can be good . +I do nt know when that is . +Will it be a good world ? + This game , when is it going to be over ? +What could it be ? +We have no time . +It will be good for all of us . +Did we want it ? + We do nt know who did that . +We have to take them on , man on man . +From your Little One . +He did not want it , he said . +They are not that good . + But they said he was too old . + It has , he said . +I like to make it . + It was good for us , she said . +She did what she had to do . +Here 's a big man going into a little man . + It 's our work . +He did , and we as a team did . +It 's about us now . +Which is what I do . + It would nt now . +But he is his own man now . +Go while you can . +Back then , I did good . +Not for him , though . +Much more money could be on the way . +Today might not be the best day to get it . + We will never be public . + I did nt do it well . + And some did . +That is how the market should work . + But they did nt get it . +I know that I can do more . +He will not do so . +Where 's the money for it ? + What time 's the game today ? + They just did it for me . +It 's just not up to me . +To see it is to want it . +You play until the game is over . +But it was time , right ? +He had it , too . + We have too much business . +I had to go down and see if I could do it . + You do what they do . + Do you think I do nt know how big my house is ? + It was not a government . +I have five children . + How can you use children this way ? +You are on your own . + But not my house . +But we are still here . + It 's going to be home . +There 's no in between with you . +It 's like , the more you have , the more you want , she said . +We do well , they do well . + I did nt work for three years . + Because this is now . +There is not much the United States can do about any of this . +They like it there , and we do , too . +Out with the old and in with the new . +Other times it did nt . + But there is no next time . +And they should do it . + We will have to see . +I just go about my business . + In this business , people use you to get to where they want to go , he said . +That is very good . +He will not this week . +He could play in a week . +Some of them are nt . + He said : I do nt know , man . + I was into it . +Get it back in four years . + And which are we ? + But now I see what 's going on , she said . + And this one is not even his own . + That , I could not do . +You may be one of them . +Only one was in to the end . +We are not as good as we want to be . +I do nt know when . + Who are you ? +You get big when you work out . +They will be at their best and we will be at our best . +Who 's Up Next ? +What to do with them . +But in another way we did . +This is a long season . +I was like , man . + Did you work out today ? +Which of us is right ? +You should be , too . +If we are , it 's the best time . +But at the end of the day , what do you have ? + I said I could nt do it . + Is nt he still ? +She has one more to go . +Who are some of the people ? +That 's just one . +They are the best . +It was next to last . + One or the other . + You know what I want . +People who were us . +Will have another come their way . +These are not so many , and of them , you are now one . +I know I would nt . + My game is right where I want it . + He did nt know what day it was or even where he was . + I could make that up for you . + That 's the team I want to play for . + You would nt , but we did . +But I did nt know him well -- I still do nt . +No , they will not . + WHERE do you want to be in a year ? +Well take it OFF . +Is she a man ? + He had a right to go over there and see what was going on , he said . + Because I have been to his house before . +Just when might that be ? +It did not take long . + I said , How big ? +For a time , it was . +Even they do not know . + I know you are not the man . +Our team is going to be all right . +This year we did nt . + Now we are a little more , Who is this ? +But first , he has to get there . +Where would you like to take this country ? + I think it 's because the money is on the right . + And I said , Do nt you want to do it ? +But for him , they do . +For some the two are one and the same . + And that 's what I did . + But I did nt want to be used that way . +They get up and they come . + We have nt been here before . +As one former director put it : The play is a part of us . + That 's what we want . +I do nt want to know them . +And so they had . + Right this way . +I do nt know who we are going to play . +They do nt think they are right for the play . + What 's he going to do ? +What will come out of all this ? + That 's just not right . + And that is what he does now . +What do nt you like about it ? +And both , in the end , said no . +Some people have more use for them than I do . +There was no one about . +That game was over at that time . +We do nt know where they were found . + Will there be an end to the the world ? +It has nt been good to us at all . +Well , in there . + This was not our best game . +The American public should not . + It was time , she said . + You first , she said . +You just have to be there . + My family is from there . + I know that much . +I do nt think they had that when I was going to school there . +It has been good for me . +Not on this night . +But it 's more . +But what did they have to say ? + I could nt get it going the first three days . + This has been a long day , he said . +We just come in and play . +This will be the second time , not the first . + I come here all the time , she said . + You have to be in it . +It was not even in this country . +Still he would nt say . + And that will be it . +Do you want to go with us ? + You can make it . +We are just going to be who we are . + They just do nt know how to get from here to there , I think . +Over all , a good day . +But that 's all they had . +It 's not going to be in three years . + Did you do it ? + He was New York last year . + This is all right , he said . +It could be a while , though . +It would nt be the end of the world . + You can see them . + That 's what life is . +I do nt know how he does so well . +No , I think . +And in another year , he could have . + We do our part . +That was not the case last night . + But people do nt know me without it . + No on that , too . +If they want to do it , they will . +It may take some time , she said . +I Do nt , it says . +He said , I do nt know . +You know how that is . +Not that he is the only one to play this game . +They are a family . +It 's just that . +If I did nt like to work with children , I would nt be here in the first place . + They are old , you know . +And these are , after all , children . +They called me a year ago . + I like being with the people , he said . + What about if I come back next year ? +So where was I ? +This is you at your best . + The next week , it will be another state . + It 's all about today . +It will get more people . + I do nt think that is the case now . +Last season , they were last . + Well , that 's not the case now . + That 's a long way from home . + Most people do nt want to go back there . + I do nt want the company to be that way . + I do nt think we will end up with very much this year , he said . + I would nt be here if I did nt like it . + Do I like it here ? +We do , too . +The way I see it , we are being used . +They do not come for the night life . +For now , all is well . + It 's another team from another game . +It does today , though . + That is not so . +How do these work ? + But the war is not over . +The United States found out today . + But it was not to be . +There is no going back . +But what are they ? +And how did you say I know you ? +He should not have been . + I had to see this place . + But I do nt want to do it that way . +We are from New York , right ? +It is the A . + This is the place . +But that was not the case . + New York is like . + Well , next time you see him , I said . +That 's what we are against . + So we have to have a company do it for us . + Is it on or off now ? + He said : No , come by . + No , in this ? +I could nt even go to work today . +We did not know it was our last . + What time is it now ? + I do nt know where this law is going to go , he said . +I do my very best . +This is what I do best . +But I do nt use them . +Where does she want to go ? +Now is - but only for a second . + But we have to get people to do it . +Now , we are all going to play each other . + I know some people will never come back here , she said . +It 's not only him . +And where did they go ? + I know where they are . +They are our family . + What Can I Do ? +That 's what I want to see in a President . +This is about today , here and now . + It can do that , and it did . +I think that there is . +The day is over . +I want people to know him the way I know him . + I think he may end up going back , she said . +Not that he is there all that much . +Last season , they were second . +We are the government . + Not from me , not from me , he said . +But who was he ? +All she has to do is show up in a public place . +It 's the people 's House . + The other people have nt . +So we did , the three of us . +Did You Know That . +And now they do . +But , she said , Three days is too much . + But you get used to it . + It 's not good for the business . +We want to make it work . +But I still think I can play . +But it will be for me , too . +The money was there . +When you are out there , you are on you own . +They know what it 's like . +I just want him in a school , any school . + I did nt think he would come back . + They said he had just left , she said . + That did it , he said . +Do it five times . + They are my people . +But you do think about it . + I would nt know how to , she said . +They are after me , the President . + But he 's not . +I think they want it . + Well , I did nt want to say that , I said . +Does he think of us ? +So you can , too . +But it can go . + In general , it 's like that . +But the group did not see it that way . +Life does go on . +So we come to this . + Can be , at best . +Her five children are still there . + Where would you want to end up at the end of the day ? + She 's in there , is nt she ? + She was there all the time . +It does nt work at all . +Which is much of the time . + All year we did what we had to do . +I know that I did not . +But no one 's going to see them . + I could go on and on about this , he says . + I do nt know what we are going to do , he said last night . + Here 's what I think about second place . + He does it . +He just had to be . +What if you do nt work at a big company ? +It is not , I think . +There are three of them . +He said : Did you have a good time ? + My children are my life now , she said . +That is nt the case now . +But it 's just one of those years . + Is it the same show ? +That 's the way it 's been all season . +But we are at war . + Will there be more ? +Can we go in today ? + But not only that . +If that is what they want , that 's what they will get . +It was just like being at home at my own house . +I know what I did was right . + And it 's not just here . +It 's one way to go . +And that 's what you are all about . +I want to do it . +Well , some of us are . +They have no place on this show . +I know people think of me that way . +In one way , it had been . +That 's up to you . + People are going back to it . + Will I like it ? + Even if you think that , what do you want her to do ? + So I think it may be time . +For me , family is where it is at . +And if they do ? + She 's the only one left . +She would know I was there , but he would nt . +But is nt this as it should be ? +This is nt right . +But that is it . + We are like a little family . + That is , to do good . + Not at all like this . + And we do with it what we will . +Never been there in his life , he said . +I did that all the time . +But what does he know ? + I was going to take one of those two . + We did nt have a home , but this is our home . +No , but they know about me . +That school would get their state money . +It 's all over for us here . + But they still do nt know what I have , he said . +That 's the way the school was . +And we put up with that . + And I do nt think we are going to see that . +And they are both right . +I know we can do it . +Where would they come from ? +It was my day . + How you say ? +And that 's him . +It was about us . +And what was life in New York like these days ? +What did nt you like about it ? +How much of each was in us ? +People do nt have the money they used to . +I want what I want . + That 's where the big money is , he said . + It is not just good business , it 's the law . +Who will play second ? + I did nt think about that today , she said . + How many other people did they do this to ? +I say All right . +He does nt like New York ? +They will , and did . +I know because I made it . +But how many of each ? +It 's because I have to go to work . + You are up all night . +And there 's more . +I think I found the right one this time . +He could use some of the money . +That 's the best way to do it . +It 's going to take a little while . + But now less and less . +Then they come right out . +There 's no way a director can do it on his own . + So it had to go . +You have been part of our family . +It may take years . +It did not last the season . + But not today . + I do nt know who is right . +They said no , not now . +Not so on Days . + It 's up to me . + The president of the university ? +Because we know less . +Not as a way of life , though . + How big is your office ? + It 's just the way I play this game , he said . +One day we do , one day we do nt . +But that is what he does , over and over . + I do nt know of any other way to put it . + It did nt even work . +I know what you say . + But those days are long over . +We are all in the same country . + And you know where they are now ? + That 's when they are at their best . +But it will take years . + Show me the money . +The West may have the money . +It is about less state . +And so does she . + It is all women . +And we are going home . +I do it today . +That 's all the people know . + I like them very much . +If we can make it work here , we can make it work around the country . + You play every day . +There 's so much you may never know . + It is to some people . +Until there is nt . + Where did he go ? +Where is the best ? +This is nt for us -- it 's for our children . + We have time . +And in very little time . +It is where all the children get off . + Should I have it ? +No , it 's good for me . +They work with what they have . +Have you used it ? +But there is no way to do it in . + Where does that come from ? +He found no one . +It 's his family . + They like our music . + It 's against the law . + She does have a life . +Do nt get in the way . +More today than any other day . + Have you been here before ? +They want the money . + Do nt go out of the house . +One case after another . +Most of the time it 's not . + It 's too new , she said . + Those that work and those that do nt work . +I did nt even know who he was . + There is some time left . +You are going to . +It was not the case , he said . + That 's all they say . +All is well in this world . + I even have one in my office . +How Much Is That . + That 's not the case at all . + First in , first out . + And then the show was over . +He 's a big part of their life , as with me . + I said : I do nt know . +You will know it when you see it . +Because we do nt have to . + This is what the people want . +Two million of them . +What do they use it for ? +Now there will be three . + I like him very much . +Now , we are too old . + And you should be for it . + That 's as good as I get . +One is what he had to go through to get here . +Most people say it is . + How could I say no ? +This is the way it 's going to have to be for this season . + They will have to be , he said . +It would take about a day . + Every day in the market is a new day . +But they were there then . + Now we are a family business , she said . +They are used to them . +This is no place for children . + Who 's It Up To ? + We may never get over this , he said . + You know , this and that . +BEST TIME TO GO : Any time . +They do nt come to see a game . +He will be out for a few days . + But does he know the people ? +Who were the first members ? +It 's never over , you know . +And we do nt know how to do that . + It 's good to be home . +It 's such an American play . + All of it . +We want to be where they are . + There is no other place for it to go . + Well , I should nt say that . + I do nt know - but it could be . +No , there was nt another way to do it . + We do nt get government money . + I do nt want them . +They are with the family . + They do nt want us to . +Is this good for the American people ? + How come there are so many of me and so few of you ? + It has nt , he said . + Some people do nt want you to be your best , you know , she said . + It 's a part of me and a part of my life . + I did nt think so , she said . + He 's here , one of them said . + I did nt know what to say . +And I think more people should do it . + But it 's not that good for business . + But now it 's over a year . + People just have nt been around . +That 's all over now . +Then take the day off . +And do they get it ? +He would have been good at it . + I just do it . +This is a political case . +Will we all be back ? + But you are never going to get there . +Some have two or more . + We are not used to this . + Who would that be ? +This part of your life is over . + I do nt see how we can do that . + I think that 's what he 's so good at . +I do nt think , at all . + Get out , she said . +Well , we do not . +This year , New York . +Last night , they were nt very good . + I think he 's the show . +And I want that . + Which does nt say much at all . + I would if I was him . + That is up to us . + I should have had it , he said . +But in our world it is . +We did nt have that . +But it is our family . +Well there you are . +Where would they get it from ? +I did it , too . + I want it to be over . +Would they be like me ? +He 's just not going to go down . + It 's been a long season . +Or so most people think . +Not to one , two or three . +Well , he did it . +For several , this is the first time being part of a team . +It is right that it should come . +Do nt they know what is going on today ? +Just not right now . + I know the political will I have , he said . + I just did nt make it . +Some days are nt going to be very good . + And he left with them . +But they still are for some . +As much as many would like to . +So that did nt work . +No time 's a good time . +Today is the day , and it 's over with . + And I still do that . +The show will go on . + It has to last . +That 's good for the company . +This was their game at home . + What will be next ? +For team members , as well . +It is that as well . + You are the one , he says . +We have all night . +That 's not what we are . +I do nt think it has to get that way . +How can you know ? + Who can do this in New York City ? + But he said he would want to see it first . +So it 's just as well . + It could be in many years . + They were right . +Who would have found him if he could nt get home ? +This is part of the business . +Did he have a right to put them up ? +Or New York now . + You just do it . + This is all about her . +But she does nt see them much these days . +It was just a very good day ; not every day is like this . +It 's not only United . +And he does not have much time . +It can take a long time . +In a way , so is the show . + It 's not the same , he said . +A little more this way . +Or it may be a little of both . + And that 's that . +What do they do with the money ? + But there is nt any . +I say get over it . +And how do you go about it ? +Us against the world . + We have to end that . +You have nt , have you ? +Who and how much ? + In a big city like this ? + She does it on her own , he said . + Well , he said . +They all do the same . + What is this music ? +THIS may or may not be the week that was . +He will be one of us . +You are who you think you are . +How could he do that ? + I want to do this at home . + We have the will , he said . + You are on your own . +It is the First , not the Second . + What I could have been ? + Well , what did he get out of this ? + It should not come to us this way . + We want what they want . +And it 's long . +So we are going to be here for a while . +It 's our show . +They were both right the first time . +That was not the case this year . + They know how to do that . +And out of what ? +I go about my business . +You have to know that . + About the same time , he said : I could play every day . +Now , he does nt have to . +We all left it out there on the court . + But how can I get it out ? +I think we would have had it . +How long can the good times last ? +That 's what it 's like here . +It was the best against the best . +In the good old days . + I would never go for one . + We did nt get it . + Now I want to work . +Now they are going public . +It was like that all day long . + No way , I said to her . +What did he do today ? +Does he even want to ? + You just have less money . + How are the children ? +You do nt see any of them here . + That 's how we all want to go , he said . + Then he left us . + It only has to do with us -- as people . + There was a time when this was so . + It 's not about next year , he said . +They have country , too . +It was put up by A . + It was nt the case at all , he said . +You have to do the best you can . +We know what we do . +They are his children . + I have no say one way or the other . +You take what you are with you . +Only you can do it . +And because it was so good . + And who was the director ? +And that 's all I can say about it . + I just left it . +But are they me now ? +He should be all right in a few days . + But we are nt . + There was no market . +And it was , and it is . + But that 's about all we can do . +No , not him . +There is no life without it . +We can get it out . + But I did go on . +But this is no game . +And our music is so old it 's new . +I think it is , she said . +It was the times , he says . + At work , we are one . + It 's all about the children . +So here they are . + But it 's not just that . +Would that have been a first ? +He has been a big part of this team . +I have a family , too . +Just not all the time . +Their home , that is . + There 's no one down there . + He did not say by how much . + Out With the Old ? + Was this state business ? +We have come to this . + I said I would not come back , and I did . +One in a million ? + It 's your family . +It was more like a . +But , he said : They are not . +And many do go on . +Are they still found in the city ? + They did to us what we did to them . +Now we all know . + This is a court of law . + First , you have to be there , he said . +Then there was the money . + I think that it 's people like me who have to go back . +That 's just for him . + I do nt know who he is . +Not you , too ? +Four years ago - or was it five ? + It 's time to get going . +And you do nt even know it . +This would not do . +That was how it was in those days . + It 's a good place to work , he said . + He 's still the president and has every right to be here , he said . + That 's what I set out to make . +You are too old to be here . + But what are you going to do about it ? + It 's not much , he said . +I did nt last very long . +I do nt know how I did it . + That 's where this team is going , he said . + It 's up to us now . + I put up the money for it . + And she said , I can do it . + I do nt know what is going on over there at the State Department , he said . + They want to make money and they want us to make money . +How do you like that ? + Do nt even think of that . +He may take it . +How could he , though ? +If they can do that , what next ? + It was right here , he said . +They did so last night . +If not , you are out . + He 's not that . +In a good year , I get three right . +And she was nt the only one . + Last year we had three . +YESTERDAY : The family . +I did nt want to say . + You never know here . +How long does it take the people to come ? +That 's not what our game is about . +That 's the only time you see it . +To his left , to his right . +I never want to go home . +I want to be a President like you . +You are with us all the way . +How much work are you going to do today ? +And where do we go from here ? +If so , what does it have to do with me ? + He did very well today . + You are the one who said it to me . + It 's my country , she said . + It 's a part I play . + But he would nt do that . + He said that he had not . + We did nt play our best . +If you do nt want it , do nt come . +It just would nt work . +Today it could have . +This is what we have come to . + It is such a high . + This is one more . +Some people are not good at it . + I say , You know . + They had it for three years . + They are both American . +We would nt be here without him . +For many , it did . +It 's not the same with her . + I think he would want us to . +So there were five . +It 's just not that way here . +There was not a place for me . +Can we come out ? + That part of my life is over , he said . +It 's a law , but they do it . + Go right at them . +The next day , they are the other way . + The big one is still out there , she said . +There are nt many who can do what he can do . +Or it could be all day . +They are not going to get it . +It 's the same old business . +But it will not be . +Not in my day . +He did it , after all , not so long ago . +I can still see it . + I said , What would you like to do ? +How many times can you do this ? +I just go with him . +But in his case there was more to it than that -- much , much more . + It 's not a place where you want to play . +If I was him , I would . +For that money , what could you do with it ? + I do nt know what was going on , but they were going in . +And when do you think we might see them ? + And , How can I do the most good ? +The children are back in school . +This is a now business . + I do nt even want to think about it , he says . + Like he says , Just do it . +But here it was every day , day in and day out . + We are going to have to do more of that . +We do not have this today . +She had been through this before . +I show them I can do that , too . +Not that there was much more to see . +Could they come back ? + It 's my best time , he said . + See there , that 's what it used to be like . +But not this old . +I had made more than that . +But you want to make it . + Here are more . + First Week of Season ? +And how does it work ? + I even like it . +I have nt found that . +But what if He did nt ? +But I do nt think I could . +But the two children she had with the other man could not . +I do nt think that is right . +There 's a game here . + I said , What 's it about ? +It 's a big game with these people . + They should nt do that here . + There is no more time , he said . + The more you know , the less you know . +That is to the good . + But I want more . + Then we could take our time . +Now it will be . + Well , that 's because we are the only one . + Where they will take us , we will go , he said . +But he did nt like it . +Who would nt like it ? +Then the program was over . + I was down at the White House the next day . +That 's any business . +And there 's a new show every day . +And for the first time you can see it . +I just do nt know him that well . + After all I did for . + They get into it . +It 's what I want to do with my life . + He said , Money . +It 's just what I do . + That 's the way I do it . + I do nt know any other way . +But there was no place for them to go . +I get four or five . + Go to war ? + Like , what 's going on with you ? +And what might be found there ? + So that 's it . + I do nt know too much about them , she says . +And then they do it . + I do nt know what to do with it all , he said about the money . + We were like a big family . + But it 's all about money . + I know what you are up to , though . +If not , what then ? + What do they want to do ? + I do nt want her to be like me , he said . +You think I do nt know what 's going on ? + There is no one at home . +Where will the money come from ? + What will be , will be , she said . +What made you do so ? +They still said no . + And right now ? +I know that very well . +CAN I work through this ? + If I can play , I will . +So how will it all end ? + I put that up against them any day . + It 's game day . +We do nt know if it will work . + I think he found it in the Police Department . +I have so much to do . + Well , who are we to say that ? + I would like to show more , he says . +And the next day still more . +Now , Group , What Do You Think ? +Then come down here and be a part of it . +After three years , they did it . +What if I did it ? +Play it over , he would say . +This is your city now . + How long were you here ? +They have a right to go to school , too . +And you are right . +But that 's New York . +And we are like : Good . +How are you , how 's your day ? +We can say that we are not just for old people . +There is much to work on and little time . + He 's made the show his own . + Say he said it . + My life now is not the life I could have had . + He 's been around a long time , he said . +They say , Right on , man . + And I said , I do nt know . +That is to say , not at all . +Can we do more ? +I do nt know where she 's from . +It 's the place . +It 's business , after all . +All of that is part of the game . + I did not do that , he said . + It was as good as it 's been in a long time . +That 's not for us to say . + If I get it , he said , I get it . +If you do nt have them , get them . +So she was the one . +I do nt want them to know what I know . +It 's not a place to work . +He did not last even a year . + That 's part of the work . +It was five years . +I think it 's still the same there . + As for me , I work out of my home now . + How about the good years ? +We did nt play as a team at all . +He should nt have . + But it 's not about that , because he can do it . +Then where can I take you ? +But she does it every time . + I get my five . + It was a big day for him , he said . +There was not a day when I did nt want to go home . + How do you know us ? + So it 's the best we can do . + There it is . + Say no more . +But she also said more . +How did he do that ? +But he said he had to think of his family . +We all want that . +But you have to come to that . +Who can do it for them ? + And so is this . + You should be . +But it is not all work and no play . + How can they do that ? +What 's my business ? +Who 's in that one ? +I just could nt show it in New York . + They come here and they want the best for their children , she said . +It was good work . +It could take days . + We see most of them . +She had one last year . +It was only me left . + You have to go through it , he said . +IT does more than that . +But that 's what I can say now . +But when he is good , he is very good . + We go to them . +Well , he did nt have any . +The next , he was going home . +It does not have to be so . + Want to know what I want ? +He may play more , I may play more . +If music could make us good , this music would . + No one is going to be like him after this . +If it 's there , take it . + It 's going to take time to get back . +I was nt political . + People like him do nt do well here . +Go for what you know . +In the end , he did nt go through with it . + That 's a life . + Where is she ? + Then I will get the money . + How right they were . +What is one to do ? + No , she said , because I do nt want to . +Some of them just are nt going to make it . +Go out of your way so people can see that . +We know he will not come down . + And this is what we do . +People have found his house , too . +What 's too much ? + We are not all like this here , a man said . +What will I go out of my way to see ? + Did we even play out there ? + We would do it day after day after day . +You might think about it that way . +Who 's had it all this time ? + Who would do this ? + I know there 's a war , she said . +Get off the street . + I do nt think about it at all . +You never do the other . + It was nt just that he said it . +It would nt be the first time . + So what are they like ? + It 's high end . + These children , it 's a new world now . +They will not get more . +But you have to get the first one . + And I think I have . + But most companies are so big . +They just go on and on and on . + Do you not like me ? + As we say here . + We think it 's going to be a little of both . + We should be one city . + No , we do not . +But it has not been so . + I did nt think , she says . +I just have to go out there and play . + They come at night . +IF IT WERE NT FOR YOU . +I do nt think so , he said . +It was time to go back to work . + I was there a long time . +It was all just music . + Well , come on down , then , he said . + They did nt take it down , he said . +But now , there is little they can do . + We put them out of business . +There could be more of those , too . +No , no , no , no , no , I said . +They were like us . + It 's only one game , though . +You might say it did nt work out that way with me . + I left now , because in a day or two they will all go home . + We are what we are , he says . + We were nt going up . + And it 's not over . +It 's for a long time . + Too long , he says . +I know they are not the best of the best . + It was like they just had to do more . + He did not say is nt . +There is nt much to come back to . +I see this all the time . +After one year , no less . +Which way did you come in ? + We do not . + It 's just not the case . +But here they do , and they have it down like a four . + That was too long ago , he said . +It is time to play . +This could be his year . +How is this going for you ? + But I did nt know it would be me . +Just a few here and there never says very much . + I could play right now if I had to , he said . +But that is not to be . +How long is a while ? + We do nt know what to make of that . +He had nt called . +That 's just how it is . +We will you very much . +All of them have left . + It 's like show time , the first day . + That 's how people would get over and make money . +It 's a good time . + That , to me , is New York . + They left a market that 's still there . + Did nt know it would be you , man . +We have so little left . +What will it be today ? + We were nt going to get them . + I would nt say that , he said . +What 's all this about ? +Then , they said , they had to go . +Not at all , he says . +You know what to do . +I could nt see any . +He will never know . +Or it was back then . +It 's even more than that . +But how do you do that ? +It could take two , three , four , five years . +What are they about ? +But you may not want to . +You could go or not . +He will play most of the game . +May he use it well . +It was time to get back to work . +My house has three . + This is good . + They come over . +Or , in this case , to two of them . +Time will be up . + I just do nt know when it 's going to end . +And that 's still the one that 's in use now . + This is me . +But it does not work well . + We do nt want the state to just take the money , he said . +I want to be the best man . +His case was not there . + That 's not for me to say , he said . +We think he did . + You know that . +These people do nt like him . + What does it say for us ? +They did nt know if it would be his last . +We have just had Take Your Children to Work Day . +I was good at it . + This man did not take them . +It 's not at all . +And when I could nt go on , I said my children would do it . +But it just would nt end . +We did nt want to go there for another game . +New York has it . + They said , Go back to your country . +It has to be used . +We want to come back . +But how do we do it ? +Now they all know it . +This is not me . + I know what I have to do now . +It did not go over well . +That 's not the end of it . + I think I can do it , she said . +But it 's not the case . + It 's not like that . +He said , it was . +Your life as you know it is over . +We do nt know how many . +There 's not as much of a show as there could be . +Is That All There Is ? +He might not have to . +Here I come , here I come . + Just the way I like it . + We have no children so there is no one even to think about us , she said . +But they did do the work . +He did nt come out . + This is like another world . +And that is what I want to know . + We would nt have any . + You see , this is what we go through every day . + We have no office , he said . +You do nt see that this year . +You know those people . +That might be a long way off for us . +That 's not how you want to play . +Five children were among them . +And that 's that . +I do nt know where it 's at . +We just did nt play very well . +It was too high . + So what 's new ? +I know I could . +Can we go now ? + They just have to have them . + We all know who they are . + It is nt right now . + He just did it . +You see what you get . +The other could not be found . + We are not going after any family , he said . +I know all of its members . +It 's just one play . +And they should nt . +Do you think it could be me ? +So where do they go ? +Every team should own one , but not many do . + Now what are you going to do about that ? + They could be my children . +But where are they ? + I think of all the years we have had war . + I do nt go out at night , he said . + Just to get in a game . +And I could nt . + That 's how he is . + What is it they want to know ? +We were , big time . +That time he had them right . + They did nt want to know . +It 's just in me . +What 's next for her ? +They are not the same children , but they are our children . +I do nt have that . +You never know when . + We did very well last year . +That one did nt . +That was nt there . + I did it , he said . + Well , do you ? + It is also just right for him . +I have a good time out there . +And it is American . +The place , the people , the time . + It was more than business , he said . +That 's what people do here . + It could be a long year for us . +Such was the case yesterday . +He said : Come here , man . +That 's all I want to say . + They have two children . +I have no time . +What country is it ? +Take Me to Court . + But it is nt because of me . + People are like , Is that still going on ? + Our market is here . +That money should last . + No , one man do nt do it . + Or one for him , three for me . +So how about it ? + There is a new way of life today . + It 's been a while . + They are good at that . +No , they were not . +It was nt on the street . + But I do my work . +This year , that is not the case . +How can he do so ? + The way we are going ? +It is not - how could it be ? +Who 's like us ? +This is just a show , a big show . +She 's a man . +So the new place . +You can do it , too . + I do nt know how you do it . + But I still think about how to get high every day . +She left , too . +But they do nt know . +Where might this be ? +That 's what they are up against . + Your time is up . + And did nt , did nt , did nt . +Because it is nt the end of the world . +Was there a right way to do this ? + But I do nt want him to know that . +She did not have much . +What we see is all there is . + I said , Go ? +It 's never been day to day here . + They can come in here and say they want to take , and they have the right to do it , he said . +Even he does nt know . + Did they get him ? +How could that be ? + He said he was going . +The other would not . +But I do nt think about going back . + So it has . +All in all , it was still good . + And they know me and what this game is all about . +I just come and go . + It 's about : How did you get over it ? +They may not want to see people . + One day it had to come to an end . +It 's not what was said yesterday or a week ago . +Only if you say it is . + And that was not very good . + Some days you get it and some days you do nt . +What , then , should we do ? + I should nt say me . +Now we are going back to work . +And that would be right . + What 's it all about ? +And he had a way with women . + People do nt know , he said . + They are all over the state . +What are they going to do for me then ? + He does nt play like he used to . +It was nt all work , though . +But first you have to get in . +I think I could get some money for them . +But that will come . +They will have to get used to that . +It was nt our day . +You never think they are going to come at you . +Our people just get to be , she said . + It 's over , he says . +It was work , work , work . + This is not even about that . +How could she do this ? +It would not be the first such case against him . + We will show good will to those who show us good will , he said . + I said , What did he do ? + Because if you said , What do I do best ? + So I do nt know what our team could have been . +Was it a good day ? +As long as I get my money . +There are years like that . +And just as there are no children , there is no music . + What are these people going to do ? +It will take a while . + I come in every day . +You know that , and I know that . +I have my house . +He did nt do it , we think . +You do nt have to like them . + I have to do well . +They want to see me do well . +It 's been since May . +Is nt it time for us ? + But I play music to be with other people . + You never know what some women are after , she said . + I said , Well , how much did it take ? + It 's money in and money out , she said . + She could go now . +You had as much to do with her as I did . + We just want to do what is right . + That you never get used to . +I will now though . +The public has not . +They put them here and left . +You are going to like it . +I know him very well . +What do women do ? +Today , they were . + And if it does , he said , where do we go from here ? + If I can , I will take it all out , she said . +It is still a war going on . +It also said your on your own . + Most times , I just go . +You have to work your way into it . + But that 's just the way they are . + Are You Going In ? + I use it every day . +But I just do nt think I should say much more today . +Now that has come . +He did what I did nt do . +Should nt I take it ? +And he might just be right . +And there 's been too much of that . +I do nt know what we are going to do . +It 's a big business . +That 's their right to do so . +I do nt think about it at all . + I just have to play , she said . + We left it up to him . + We did nt go without . + We did the best we could , he said . +I had no money left . +And she 's right . +What should West do next ? +Now what will they say ? +I have a little house , man . + I was not one of them . +They think you should do it ; they think you should nt do it . +Most of them are going to do what he did . +But I have to work . + That 's the way we can see it . + But the market has not . +We know you can do it . +It is only about if you are good at what you do . +And did New York have them ? +How did I get here ? +After this year , I do nt know . + This is that time . + I said : People . + Many , she said . +You have to go through it . +I was with him . + What do you say to her ? +And most of the time , he would have . +But I think one of us should . +That 's what they did today . + But when is the right time ? +What 's more American than that ? +They will come and go . +There are five other companies in the game . +Both of us want to play . +It 's all too much for them . +I was with a good group of people . +And the director 's . + At first they did nt know what it was , she said . +She called the company . + What did they do ? +That was little more than five years ago . +He is there now . +I have too much . +It is nt all of them . + Where are we going now ? +You just go and do it . +He may not play . + How do I get down there ? +That 's what it should be about . + All of us think about this all the time . +I want him to get through the season . +There is a little too much of each . + But it could nt be . + I , I , I . +But now it is not this way . + That does nt take more money . +It never had to . + Back then , she said , it was all right . +Both women are white . +Come on , he said . +He said it 's a place for people like you . + We see that man every day , he said . +You never know when the day is going to come . +He can even play center . +We are going to be around for a while . + Who does nt want to go home ? +At the end of a few days I had it . + I think that was the best day of my life , he said . + You just have to do it . + You want that first one . + I said , Not you . +Not the Federal Government . +And , Mr. President , do it in public . + I know where it is , he said . + Every now and then it 's on the money . +But do nt be put off . +The only one in the country . + This is going to be a good one for me . + You think that , too ? +But it does nt end there . +What do they do there ? +That 's what she does . + He has to be . +I said that 's what I was there for . + It did nt have to go there . +What would you think ? + It is up to me to do it . + Now you know . +But where is our new place in the world ? +But you never called back . +They are right about that , too . +But it 's the new season . +I think you have to come back . + It 's not because I could nt do my work . + How do they put it ? +During the season , I would . +It 's the right time . +Not all of it . +But he was nt , and he 's back . + So there you are . +They think this is war . +I want my children to see this . +Because I think I can . +He did it right . +If it 's any of my people , I want to know , and if it 's not my people , I want to know . +What would we do without him ? +The women were all over them . + It was the best time in my life . +That may be so , but the work has a little to do with it too . +You could just see it . +And I think : What is this ? +There 's no other place like this in the world . + But it 's not all I want . + I said , In the house , not on the house ? + And what 's Down Under ? +She also had a home . + I never been out of this city . +But it 's a part of me . +But how much time will it take ? +And what about now ? + It 's not who we are . + Where is this place ? +But now that we have you , here 's how we think we can make it work . + I want to know , he said . +I know she is . +This is what I have . + There was no way . +We are good to them . + How much money does he have ? +Both are in this show . +It was two , not three . +Would nt we do just the same ? + We made it up . +But do nt have too many . +We just did nt get to it . +This is a big country . +Some work and some do not . + You could get used to it . + You do nt know that . +It 's all they have . +But never more than in the last year . + What do they have there ? + That was two years ago . + What did you just say ? +I have nt had any for three years . + Well what do you think of that ? + I do nt think we know each other that well . +It 's their money . +It could go on for a while . +You can come out of it . +They do that , they are going to go a long way . + At the end of the day , he is what he is . +Back then , it was nt should we or should nt we ? +But the company has . +The man was nt there . +But who is she ? + They are not here , he said . +That 's how I like it . + I think that would be good for me , he said . + I think it 's going to work out well . +But that may take years . +That 's just the way people are . + And so they did . + People come up to me all the time in New York , he said . +But even that was nt the end of it . + Good , I think . +Set you down this . + There may be one out there that you like even more . + He is the second of five children . +Who would play where ? +You will get it . +You see what it does to family life . + I had to come back . + We do nt know what 's going on . + That 's a long , long time ago so I do nt think about it . + I said , I think so . + It 's just like a family . + We just go out to play . + He said , No , I want a will now , today . +I did nt get to it the first time around , so I will this time . +Are we going to make it ? +Some people did nt . + It had to be her . + But I do now . +Under the new law ? +There is no time to think about it . +We can see it . +That 's a good business for us . +Before that , who ? +You think this is the one . + At home you get to play . + It 's going to be four or five more years before we are out of this . +They never know who they are or where they come from . + No , she says , I could nt . + It 's not there . + I do nt know what to do , he said . +They could play in May . +But what 's in it for us ? + I said , How could that be ? +Too big , she said . +Now , that is not going to work . + What do you think we are ? +That 's the way we all are . +You want to take them home with you . +Other work is new . +I do nt work out . +His family was put on the street . +I think about my work and what I have to do next . +It was like that for two days . +And they all go about their own business . +I want to work for what I have . + I just do nt know what to say about that . +There 's a new world out there . +And it will work . +What should I say to her ? + He may come home . +That last time , was there music in the house ? + This is all good for our city . + I want to have more children but not right now . +In that case , you can not do much about it . +But would she do it ? +But I can play , too . + Well , they are not going to be there for you . +I just did nt want to be there . +I should get one , too . + You were too good for me . +That 's what people want these days . +I have never used them and I never will . + I get up there . +For now , no . + No , she said . +At first , there were just a few . +He is not about to back off now . +Do I or do nt I ? +There is no end . + This will never work . +You just do nt want to have to go out like that . +Now we are going to see even more . +Because you have been . +It has to come . +They like to be with the group . + Where to go now ? + But it was good for me . +This is nt another day at work . + It does not . +Who was or was nt ? + Now I have just one , and my children have one , too . + I do nt like it . +He 's good at it , too . + Four years ago , I would have said I could nt part with any of them , he said . + These people do nt know me , she said . + I did nt want to do it at first , he said . + It 's a good program . +And I do nt want it to be . + I think that 's what they say . +Is he all right ? +You are one of us . + They know who they are . +Not that I was right . + I think we have a good team here , he said . +THAT was good , he said after take two . +So how does she know what is good ? + So a year ago , the government said , if you want to go , go . +One 's or two ? +But for the most part they never found him . + Even our director does nt know . +And , for what ? +And we are going to come back . +But when the game is over , it 's over . + I can not say who . +He is never the same after that . + This is their life . + All right , he called out . + It 's a big game . + How are you ? +I did nt want to think about that . + And then they say , Who are you ? +No one has said no . + How many is more ? +But now , he said , was not the time . + You want to get out there . +For us it 's about a way of life . +You know what you are going to get . + We do nt , he said . +The next will not . +But you do nt know me . +This man is our President . +That may be the end . + It 's just that it 's not them . + By the way , I was in his office the next day . +People do nt know what to do . +And that 's the law . + How was school today ? + It was not for show . +He does nt know me that well . + But they do nt know what to do . + I do not think that 's right for New York or our country . +There I was and here I go . +What will this money be for ? + And it 's not good . + I do nt see it here . +Then I know what they are going to do . +You think I can do it ? + Second is best , after first . +I do nt know how they do that . +We are a public university . +No , it did not . +I will just go play . +This is our place . +How long will it last ? + What would she do first ? +Now , just two are . + At the time , you do nt think much of it . +It was no show . +How had it come to this ? +But this is not another world . + I say , He still is . + It 's all part of it . + We did nt have a second to think . +This was one man . + But I think it 's going to take another day or two . + That was me . + But they do nt want to know . +This one is not for you . + He did not work on it . + On second down , too . +Many were here today . +Or is that just the way he is ? + Who 's with you ? + Business is about the same . +He 's good at what he does . +Now , he said , he does not work or go to school . +That 's where I come from , too . +A program is in place . +He may be among them . +We are going to do that . + And he did nt . + And she does . +You are going to go through it . +Now we are still in it . + And he had no way to get over to us . + I do nt think that was it . + There is still time this week . +We are still out here . +I think it 's the world . + We do nt know who they are , but we know they are there . + But what about this ? +They are in company . + And here we are , and it 's the end of May . + Then you are all right . + Not in New York . +If you want it , you can do it . + Now it is just called business . +Some think the best of them all . +I should have been there in the old days . +How do you know what 's what ? +I want that in the show . + We did nt know they were there . + It 's a part I can play . +But he will now . +I think of them every year when I take them out . +That 's how good we have to be some day . + For me , one game is too much . + It 's not just the money . + And what did they take ? +That will not be the case . +I was nt out there . +I know what I want to be . + I could be on the A team , she said . +This does nt do it . +I think that 's what we did . + This is just the little I can do . + Where did we see it ? +We did nt want to do that at all . +Not so , he said . +What would they think of all this ? + And I think , Me , that 's what . +I do nt know who did it . +He 's here for them . +They do nt know who 's going to be there . + I do nt come here for that , he said . + And it 's not just in New York . + I said I think they can . +But it is nt that at all . + It is my country , she said . + I do nt think she 's too old to play . +You do nt play the United States every day . + We want to go back to work , he said . + Under the old law , it used to take this long , he said . + It 's going to get . +It also made money . + It 's all for the people . + And this was every night . +What , then , would he have us do ? +I do what I want to do . + We do nt have all of it . + No one can . +That 's not now . +If only they did them when they get in office . +How do I get up there ? + We put a little too much on him . + Today there 's both . + But I do nt know what day . +And if it 's not ? + I do nt see it as such . + No , that can not be . +This one did and it just did nt work out for us . +And I would just say . + They did not do that . +But where was it ? + I think this week has been too much for me . +I want to play every day . +Some for the money . +He said , I like it . + That 's where they are today . +Who can say just what music is or is nt ? +Well , we are their children . + It 's a place to go . + At the end of it she said , How could you ? +Which I did , and which I did . + She also does nt have much money . +I did nt see him at first . + No , it would nt . +A : That would work . +But it 's not home . + I never have , he said . +Here we say , Do you like him ? + There 's so much more that we can now do . + It 's like a little family , he said . + Well , we were first . + What I can I say about him ? + I do nt know how much more can be said about him . +No , but that 's part of life . +But this is a man 's game . +They did nt go to school when I did . +We have nt said no . +They know what they have to do ; they go out and they do it . + And so we had to go in . + But for children , there is very little . + We have to get back in here . + I did nt think I would make the team , he said . + All I want is to get well , she said . +We play for one another . +I will not put up with it . +We are going to New York to end it . +It is not a war . + They come from all over the place . + We do nt know how to do it . +She said , They said no . + It 's not the same , is it ? +Because we are not going to do that . +If that 's so , then what ? +What time do I come ? + That 's the only way I work . +Now he does nt . +I might as well just come right out and say it . + You left it off ? +What do nt they know ? +It was right at him . +Did her family own it ? + I did nt want to go , she said , so I called up and said I could nt make it . +And it is going on . +Now , I do nt know . + They have one , that 's all . +Are nt in my life any more . +It 's the same ? +Who is me -- ? + That says it all . +We want people to use it . +I would nt know what to do . +What would it be like ? +People do , too . + And it made us . + They just do nt know about it . + He 's been around all this time . + Then you do nt know what to do . +That was not the case at all . +No one would know . +I did nt own one . +What do we do about that ? + And it could go back the other way , too . + They never get back to me , he said . + For me , he was the show . +He said it was a Government office . +It made me American . +It will put people out of business , she said . + You can do all right by your family here . +Then it was that . +Or so it is said . + I never want to use them . +You were here first . +Did you not have it ? + We can make it . +Much of this has to do with the way it is made . +But I think I will know . +They did not say that . + We just did nt have the money to do it , he said . + This one is about family . +But such has never been the case in music . +So do many states . + This is our national game . +The people who work for me can . +What did that do to you ? +What should the government do ? + People like it when I do it . + It 's not us . +It is with me . + I know this game . +I was nt used to that . +This is how it 's going to be year after year . + But they did . +He could nt even play New York . +And that 's it ? + But it will be in four or five years . + We do not have that . + No , I did nt know . +The general may have it . +It 's part of who you are . + And they are like : What ? +It 's not the first time . +It is a very big business now . +We have said that for a year now . +So that 's for one day . +That 's the best way to put it . +The West is the best . + This was nt going to be like home , he said . +Here , here , what 's all this ? +That , he said , could take some time . +When will this end ? +With my part , we did it one , two , three . +It was his day off . + I have to work . +And she has had them all . +And they were , for a while . +We know he 's going to play well . +But I do nt want to be president . + But we know that he does . + There is not another one like it . + What do I think of all this ? + They are the same people . +They would like to have the day off . + We are in there three to four times a day . +It did not have to end that way . + So we did it , he said . + Where did you get it ? +And take your time about it . + I did nt know what the group was . + Many are called , few are called back and only one will get the part . +What did you do to it ? +He said that the last time . +And you know they are right to do so . + All I know is that what I had I did nt like . +How could he do it ? + We will go to New York , he said . +But they only had four years . +I just did nt know what to do for a second . +I just did nt know it at the time . + They did not . +There is some business . +They should have one . + That 's family time . +I do nt have that on this one . +And they from him . +How much do you have ? +He was just a man . + One time I did nt see him . +He said he would get back to me . + I did nt get in ? +I want to know what they have to say . +What 's up with your team ? + It 's not like I have nt been around , he said . +But that 's a big if . +It said white down . +So I do nt know what 's going on there . +But Who Was He ? +This is what you see . +These are good times at A . + No one would know . +But we do nt know where that money will come from . + Next time when you come back . +You work through it . + He has to be there . +Is there any way around this ? + I do nt know what they are , and I do nt want to know , she said . +I think he did . + I like how you do that , he said . + We are still day to day with him . + She just said : He 's not right . + They are too good not to get going . + We are in first place . + I just want to do my best . +I think I have all three . +Well , she was nt . +Today , they called them on him . +No more and no less . +It 's about who we are . +We have no money . +And I think I have to do it . + I do nt have it , she said . +Now we can do that . + It is not that way . + No , she says , not until I play there . + We would see them in and out at all times at night . + I could work all the time . +Mr. President , are we in a war ? + I want to play you this , he says . +There is a part of her in me . +It has , every time . + I said , We are nt here to see a game , we are here to see you . +We are going back , though . +It may also be one of his last . +What does this make me ? +We did it last year . + That 's where we go . + And so she does . +And it 's going to come . +They are very good at what they do . +Was he in New York City , New York State or even the United States ? +We used to be a family . + I do nt know who he is , she said . + How many would this be ? +In the West we do not have to do that . + Even though it 's big business , it 's still a game . +I have to be there . +You can play with them . +But do they get it ? + Do you want this ? + How did they get up there ? +On women and children . +If not this week , next . +We only know what he says . +But some are not . +It 's how most companies use it . + To show them that we are here . +If it could nt we would nt do it . +I even like it . +THE house had been on the market , on and off , for years . +It may be time for another . + But I did nt think so . + Who would do all the work ? +If I can , I will . +But life is nt all work . +In any case , it 's not against the law . +Where does the play go now ? + This was the only . +When will he be back ? + I would have left . +You do nt do so well . +What will they do with it ? + That 's just when it would . + Is that the best they can do ? +You have to go out and play . + You do nt want to be one of them . + And so she did . +That 's what we like . +I just want to get my money out of it . +Only I did nt know it . + That was more for me . +Five years ago today . + I see what the business is here . + This team is as good as last year 's . + I said : We were never out of it . +I would nt take second best . +AFTER THE WAR WAS OVER . + They could put it back on . + What did we think ? + For me , this is the best . + I would nt want to do that . +But he was not there yesterday . +A : -- take long . + This is a high for me , he said . +There was nt much of a game left . +And by the way . +They do not say how . +But I did nt . + We say , No you were nt . + We did nt know each other well . +Because that 's what we do every day . + We all know each other , he said . +Would they like that ? +And that 's good , too . +For a long time , he was right . +It 's just not what we would like . + But he never did . +And he did not last long . + And I like it . +We just do nt think we have to be there . +That 's the way this game is right now and will be . +I would nt do it . + Now we go every year . +Well , come and get it . +They have four children between them . +But , so there was both going on . + He has said it for years , she said . + We can make it . +But in the end there was no there there . +I did nt see that at all . + They know us . + Where would that be ? +I used to know . + We know we can play with this team . +All its members are women . +See how much there is to know ? +This is not just one case . +This was not a game . +But no one did until last week . +You just show up . +She is for them . +How could we not be ? + It was nt just the money , he said . +I did nt go out there and do what I had to do . +We have our government . +I just want to see him . + It is a good team , he said . + I do nt know what to do now . +You have to work with them . + Would that be New York ? +He had his own business . + He did nt have to go through all of this . +And then , back home . +I still see that . +There is no game in the world like this . + I do nt know if I should say that now . + But they said , We want you for what you do . +But this could be the year . + He was before his time . +I can just do my work . +The Police Department said he had . +They may well all be right . + I did nt play all that well . + I think we can do more there . +And today it 's still a big part of my life . +If I did nt think I could , I would nt be here . + We have this place . + It 's not their money . + It 's you and me . + Just think about it . +I work with people . + Take it , she says . +Here , you take it . + How will they know that ? + See how I did today ? +It 's going to get three days every year . + But I know him very well . +I know it can work . + There can be and there should be . +Take a set if you have one . +That 's it , she said . +His team 's , not his . +This was our first time there . +And was it on time ? + This , he said , was two children . +Take in a show . +What is the law in this case ? + And we did nt even know about them . +Would you go over there ? + That was my game . + And then we come in here today and play the way we did . + There 's only so much money . +We are not a part of them . +Do nt come back . +We are not going to do well . +It was about us as a team . +I like the city . +But it was nt his for long . + It does me no good . + It was the music of the day . + And we have to do more . + I said : Where you been ? +Is it just as good now ? + Now is not the time to do that . +Not big , not big at all . + That 's just the way I think . +I just did nt do well . + Should take , I do nt know , four years . + You should never do that in our business . + But I do nt know that this is such a good place for us . + But not for long . +She will not even say where it is . +It will end with them , too . +They make all the money . + What do you do about that ? +And the one after that ? +We think that 's the best time . +That 's just how I see it . +I have a house there . +The two are made for each other . + Just play your game . +What in the world could be going on here ? + I have another life and I know I have to get to it at some place and time . +It 's their country , after all . +And then more will come . +I never know what day it 's going to be . + They are good , he said . +Still , it is a big game . + But I do nt know . +You are not used to it . +We are going after them . +But that 's what life is . +And he did go . +They are just not here . +We said , It 's time to do this . +But they could not own it . +It did nt last long , though . +That 's what New York is about . + Because we will be here . + But I like to play one . +So we go back a long way . +Because I do nt know me , right ? +So we had to get back to business . +They are just going out right now . +People should know about it . +We are not all like that . + This is New York . + I do nt want to get into that , he would say . +New York is the place . +He 's still out of it . +Is nt that what you would do ? +I did ; more next time . +I put him back down . +I would nt have him any other way . + But they are all four years old . + It should be good for us , he said . + I think he 's being set up . + We can come back here any time we want . +This has to be a first . +And he 's not the only one . +It was a new world . +We did nt do this . +Not just for the public . +But today he was on . +That did not last long , though . +It 's not your business . + We have been all over this city , he said . + They are just like we are . +There was no one at home and no one at work . +There is no way around it . + I did nt know I was . +I would nt say too much . +In the end , I could nt take it any more . + This is not a time to be in government . + What do you think of this ? + I used to play here . +They see it every day . +But it 's a team game . +In a way he was right . + What 's the case ? +There is no one to do that . +Would he go today if he were called ? +I do nt have any money in between . + Though I do nt know about that right now . + We all are . +We did their game . + One way was through the music . +So , they come here . +There is a market there . + And I still think of that . + Mr. Long said . +She 's come a long way in a year . +He had me there , all right . +And not for the first time . + But there 's no place for them . +Both are with him in his business today . + I just did nt know what to do . +What has been going on all day ? +But they would see what they could do . + I know my team , he said . +Is it for you ? + Because she 's old . +So we had to make the show work for them . + This is my second one . +We were going for it . + But I do nt have time right now . +She said , This world is over . +And it is not about you . + We will do what we have to do . + No , I said . +Those who do , do well . + I want a good life . +There is more to do than there is time to do it . +Many more want to . +Now I could nt see . +I never did that before . +And in a way , it was nt . +Many do it year after year . +Now , for the first time , I have a family of my own . + We could never do this at home . +They would nt do at all . + There are so many good people , she said . + What about State ? + No , no , I did nt , he said . +Those who do nt , do nt do very well . + Does this go out , too ? +If I have to play second , I will . + And still is . + I had to be here , he said . +I did nt like him . + You should know who it is , he said . +Think of it , so many of them said . +They have less time for their business than they might like . + I would nt say it , he said . +But there are not . +It 's about what we do . + So what can we do ? + He had a way about him . + They think they know it all . + It is the right show at the right place at the right time . +If she can go , she has to go . + He may be right . +The government would have to police it . +Both of those are going well . +I say that over and over . +No , I did nt put it that way . + You were our home . +The last of those days has come . +We are going to get this . +All they have to do is do it . +But you have to play the game , too . +What if she 's not ? +That I will not do . +But there are three years to go . +And we do nt want to see that . +He would not say how much time . +There was so much to take in . +There is no one like him . + How good is this man ? + I like New York , she says . + We are still part of the old school , she said . + That 's what we play for . +And then they will get even . +I do think there 's a place for me . + You are in and you are out in a take . +One is where it 's at . +So , this was good for them . +What will these people do ? +And they market , market , market it . +But I do nt want to get into that . + It 's just all I think about you . + You think he 's a little off , but what do you do ? +That 's a long way off . +What did nt you like ? +I think it 's that I have nt been to school so much . +But there have been some . + I think most of them are good . + It 's not just in one part of the state . + How can I get it ? + We had to make money every year , he said . +So I just do my business . +Only big business can do that . + But in the next few years ? +Like any other house . + Is that the best ? +Law can do it . +It 's in the music . + I think we know that this team is a good team , he said . +So what do I want to do ? +I do nt have no family . +And want to be . + You do nt get but one time . +And then , he left . + I can see where you could think that , she said . +But in this case , there is no other way . +And he was on time . +Most of the world , but not all . + No other place in the world is like New York , he said . +But no , Mr. President , it is not us . +But he 's also good people . + That 's John . + Who did we get for him ? + I do nt know what it is these days . +But that was nt going to do me any good . +This time , though , they may be right . +His team did , too . +And do nt think he does nt know it . + I just would nt do it , she said . +They are home for me . +No time this week ? + I said , What time can you make it ? +That was all well and good . +For all I know , he does so still . +If so , A . +Those are not these days . + He was right , she said , and they did . +But that was the first time . +Could we make it up ? +He would nt want to do it . + No business , she said . + Because I like that one , too . + And there should nt any be now . + But I said no . +It 's now here at home . +You do nt get the game back . + It 's not that , he said . +But in the end , you do it because you want to . +I did nt think about it at all . + But the children are nt used to it . + It 's good for the people to see this , he said . + Today , people do nt think about that . +We are not going to put him out . + They can do it all they want . +After that , she would like to go to law school . +I can still play . +He could nt go to work for a week . +It was her first day back at work after a week off . + The season is nt too long . +And he was nt around that much . +It was the first time . + Both , I said . +When I did , it was for business . + I just do nt know when it 's going to end , she said . +This is a part of our life . +He was at home , he said . + We are going to be the next to last . + But I do nt think it will . + We never have , and we never will , she said . +So , now where do we go ? +How are you , can you play ? +I think we would see that now . +We could do more . +So here it is . + He did nt have to do that . + It was all I could think of . +I want it to be us as a team . +And it 's about time . +At the end of the week , we go home . + Now , we can , too . +He may as well have been home . + I may never get there . +He did nt say how . +He is what he is . + Today , that 's as good as he can be right there . +They did nt work . +We did nt have time to go around to get to him . + It 's going to take some time , a week or two . +Then , if you do nt want to do it , you do nt have to . +Well , it is nt . +It may have , I do nt know . +Only for the other team . + I see the game more . + I did nt make it up . + But we are like a family . + You have to play up to it . + But people can see through that . + But they make good money . + Money is money . +What 's that all about ? + I did nt see him for years . +It 's a life . +All in all , though , it was a good day . +He just does nt know how good he can be . + And on their day off , if they have one , they come here . +And it is the law . + Can you show us where we are ? +They are in my place . +You Do nt Want to Know . + It was too much , he said . + It 's a police program . +This team is more of a team . + If I do nt get one , this could be the end of it for me . + We had some good times . +If I did nt think so , I should nt be here . +He is one good man . +I just want to be home . +But the case will not go to court . +We are not in a war . + I do nt like it , he said . +We have both of those . +But we have to see . +We used to work at night . +How much time will it take ? + By how much ? +This is the big time . +He would one day be one of them . +I can only be me . + I said , Me , too . + There is much for these women to do , she said . + He may have been right . +It will be a long time before there will be another one like him . +And what a show it is . + I like the people . + I do nt even do it . +People will not want to know . +And it could be . +It 's been a few years . +But people want to know . + We are used to that . +One does one 's best . + It 's my department . +You left all that at school . + That 's about all I will say about it . + I did my best , she said . +I did nt say that . + It 's in there and it has to come out . +But he does nt know how or when . +Every game has them . +By law , it should never have come at all . +Now I see that we are all just people . + It was nt about money , she said . +This could be before or after they left office . +Did I do what was right ? +It 's a team . + We all do what we can in our own way , he said . +He had no family . +I want to make people think . + How could he not know ? +She has two children , she said . +But how to get from here to there ? + We would nt be in it if we did nt think it could work , she said . + And she was . +Well , who does nt ? +And those people are our members . + How could you do this to us ? +For a long time . + That 's not this play . +Just like the old West . +And will you see them from the back ? +And do the will of the American people . +I do nt want him to like it . +You know how much it made ? + They say to me , Where are you from ? +If that is what you want . + How did this get here ? + There is only so much you can do , he said . + We could not think . +Go , go , go . +Now get me what I want . +As they might well be . +But I also like to play . + I did nt know if I could do it . +For the well off , that might work . +People like it out here . + Did I do one the first time ? +He 's not through . +After all , they were made for her . + Since then , there is no place for us here . +How come they are there ? + It 's only other people who say that . + I know what it 's like , he said . + They can do both . +I want the old me back . + You see that game ? + She 's the world 's best . + And if it 's still there , we go out after you . +And the people around him know it . + You make do with what you have . + We did nt do what we had to do . + There 's less state money . + This is part of a season . +So what is all this about ? + How do we do the same with less , less , less ? + Do I think it 's my last year ? + If we did nt like it , so what ? +And what have we here ? + And we still do . +I want people to know where I should go . +I do nt think she was there . + How Big Was It ? + Most of us have been here for every game . + How would he do it ? + He 's a very good man , she said . +It might take a while . + He might have been President of the United States . +I did nt know they made that . +It may not have . +And they show up . +It 's more on us right now . + This is not part of the United States , he said . +That 's on us . +She had a long life . + That 's the way we are . +They just say , Do what you have to do . + They go , Who is he ? +Do you have it ? + We can do without it . + In a way , it is too much . + I just take it one game , one year at a time . +How old is too old ? + There are so many , she said . +But he did all that - and more . +He did little this season . +This team , you play every day . +I did nt want to know . + But that 's not my case . +It is not the Big House . +It was of no use . +But now it 's a business . + I did very well , she said . +I should get back . +After all , what for ? + We are here for the game . +I did nt know her at all . + But not this year . +You have to know who you are . + Well , it did work . +We do nt want this war . + They said they know . +Could it be this is the way out ? + If I can do it , I will , he has said . +I do nt go out very much here . +Still , there is much to do . +Not at all , the company says . +We could take them out . +She did , and left him . + That 's how the game is . +Does the state have a case ? + This was our day . + We have a long time . + I did nt know that . +Or is there more to it than that ? + This is the life that I made . +People are going off very much on their own . +That is nt what he is about . + Well , I do nt know about that . + How many times can a man say no ? + I want to be here through the good . + I did nt know if we could get here as a team . + We could nt do that now , he said . +What do I think ? +And few people did that . + They were three years ago . +Or : He was what he was . +It will not be the first time . +It was nt any good , though . +It 's not for them . + And she said , Come on over . +But what do I do then ? +And then it was . +If you want to work , work . + You go to work . +Should have me set for life . + The best part is we get to come back and play this week . + It 's not like work . +He was to the end . + As though other people do nt have to go to work . + When it 's good , it 's good , he said . +And did you come from me ? + My children are there . + Now it 's all good , good , good . +But those who are into it are very , very into it . +How do they get them ? +That could well be the case . +BUT now they are . + Now they are here . +Most of the time it does . + We did nt know what to do without her , they said . + He was there . + He called the police . +We do it our way . +And they have nt left since . +But what more can there be to know ? +Because here you can have it all . + I did it for me . +And I think that 's where we come from . +It 's going to take a long time to get over it . +But man , I do nt know . +What do you take from home ? + And I would say , No , this is not just a game . + I have to go , he said . + They do business in there . +It does the world 's work . +He 's a little old , you know . +What have we come to ? + We are going to have to make it on our own . +And you are going to see more and more of this . + That 's good for them . +So how do you know ? +It 's up to us . +It 's not like this . +Your children will see to that . + That 's right . +I had to show them . +That was another year . +Some people do nt like this . +There was no way around it . +It 's their business . +What would it take ? + It was also about not going to war . +Life just is nt that long . +Or three or four . +And for the second time , he did nt show much . +I still think of it . + But there is no going back . +And how 's that business ? +What would that say about me ? + But they would nt . + What is it they want to do ? + Did nt you know this was here ? + No one in this city would know what to do . +One in the police , one against the police . + But after that , no . +So what do we see ? + You know him . +So what in the world would we do ? +The last of life , for which the first was made . +Today there are several . + He said , All right . +So where from here ? + This much we know , he said . +Is it going to be three ? + Get off me , he said . + It was a man 's world back then , she said . +He would have to . +They want to go out at night . +All over the place . + It 's never been my company . + That 's not what it 's about . +I do nt want to have to do that . + But I know what I see . +To him , they did nt . + But he did what he had to . +Most said there were three or four . +So another way was found . + So today 's a big one , he said . + What do you have against me ? + So you never know . +I do nt know that we could today . + This is what I know , she said . +This is for me and people like me . +It is life that is long . +I would have put it up against any school . +It 's a team game . +That is the best way . +But it will not get in here . +At their best , well , there was no best . + How would I know that ? + It 's just there . + That 's for you . +They may be to the next . + They just left him there . + In the other , who 's this ? + I did nt do that . + You would nt get there . +They never see each other . + I have three children . + No , they are not . +Now I do nt . +This had to end . + We have to work at it . + That 's war . +But now they were back on the street . + Some of it is being in the right place at the right time . +But this was and is not the case . +Every day she does not want to go . +But do nt think about that . +She would never come on when I was on , he said . + It 's not just on the court . +It 's about me . +We did it before . + The second was nt . + This is part of my life . +That is where they do their best work . +This is a place where she can do that . +Who is the best ? + And then that 's what you have to work with . +It 's year after year . + And this year there was nt . +That was in May . +There is more to life than what I see . +I still do nt get it . +The Court is right . + We are where we were yesterday , the day before and the day before that . + It 's like this every day , he says . +And that is what it is . + If he 's on , he 's on . +I know our president very well . + Those days are over . + I said to him , What if we do nt like each other ? + She said , The same way . +And how old is she ? +The police have been called . +You know I would . + I do nt know if they are . + Who is that man ? + This is what we do , she said . + We still have work to do . +She has three children . +What , they said , could they do ? +Did nt even see me . + We found out that was nt going to work . + They are not going to get it . +What does it take ? +But those days are over , state officials say . + We know no other way to go . +But no one is going to do it in the next few years . + So what did I do ? +But it 's still a family business . +The world will not be the same without her . +Is it not the same for us today ? +So now I do . +This is for me . + It 's much too big . + It 's all going to come to an end at one time or another , he said . +We go around them . +We do nt have the time for that . +That will be the next war . +How can it work ? +After all , they were little then . + We found a way . + This war is over now . +Less than you think . +That 's not New York City . +So that 's where we are . +This is nt what it 's about . + But it 's not going to come back . +People said he did . +Do you know where it is ? +For one , there are nt many of them . +We all have those . + Not since my high school days . + That 's what I want him to be . +And then you think about it some more . +It 's one year . +Or so you think . + What 's he want me to do ? +But I would nt do that . + But she 's not at all . +You just have to go out and play . + I said , So , when are we going out ? +It 's just right now . +Know where you are going . + You like to have another life for a week and then go home . + Go on , then . + She did and she was . +We are being used . + They were all there , he said . + I never had to . + Does he long for her ? +That is all I can say . + This used to be an in place you could nt get into , he said . +There are many that have left . +It 's the end here . + It was the only one there . +And I was here . +Should I get it , or should nt I get it ? +And that 's the same this time . +We want our money . +So who 's to say no ? +And music can do that for them . +But it 's very much like the old West . +What was not to like ? +I just want to think . + I know now it does nt . +You do nt even know he 's around . +Did nt or could nt ? +I said to him , Did you do it ? +That is the business they are in . + If it 's there , I will see it , and if I see it , I will get it . + Now , there is . + I think there will be . +That would be the end of them , and they know it . + And now I do . + He just did nt make any . + That way I know more or less what I have in each place . + You say , There go I . +One could last you all week . +She did very well . +This was as it had to be . + I might come back for one more year . +When is the best time to go ? +They know us well . +Then he would know what to do . +It was not to last . +Me , too , but not them in me . +He 's good to his family . + Never , never . + I do nt think he was part of it , he said . +Which Game Do They Play ? +I just did what I had to do because I had to do it . +Well , then what do you want ? + I do nt know them , they do nt know me . + I never know how to do this , he said . + But right now , we have to just go with what we have here . + This is more like it , he said . + But all will play . + What would you think ? +We do nt know who can play . +I think that 's what it is . + It did take work , he said . + They were nt very good , he says . +For him it still is . + It 's not good . + I do nt even want to go into it , but it was time for me to go . + It could have come from any of them . + What you want with me ? +But this is our night out . + It 's part of what I do now , it 's not what I do , he said . +Every one of them is the only one . + It 's good to get out of the city , she said . +John said he did that for a while . + No , she said . +What to Do With It ? +But he did not last long . + I think this is it , she said . +He would never say which . + What did you do with him ? + I still have a few years to do this . +They are not all like that . + But he said , That 's not for her . +I like to go out . + It 's the best in the city . + You can only use it one game . +In this game , the did . +If he did , he would nt be the first . +And it 's not the same with people ? + If I do nt ? +This was the world that was . + This is a big department in a big city . + They take them back . +Because they are good ? + And no one can see them here . + It is not over , he said . + Well , what 's next ? + Are you still ? +But then , how can it be ? + They say : But you have no family here . +First , the program . + That was one of them . +I see some of that now . +I put too much on it and it did nt go in . + If they would take me , I would go . +But how much a part ? + They do nt know us . +I know this house . +We do nt have many women , but there are some . +Are there times you do not want to get up to do this ? +He will get around to all those . + You had to see it . +All from one team . +You are the very best . +Just going on and on and on . +I do it for me . +And that one 's for business , too . +I know where the money is . + But he 's not here . +But now we can . + I like both of them , she said . + That 's good , she said . +I was just like he is . + But it does nt work that well , she said . + But now I like this school . +Do nt come here no more . +He does nt go out in the street . +Do people come to work when they should nt ? +This team is not out of it . +And there may never be one . + What 's it like ? + But when was the last time we did it ? + Think about it this way , he said . +It 's the end of a year . +And he said , Well , I do nt know . + It was more than a game . + He 's going to be out of the country . +And there have been many of those . + Are we going the right way ? +Not all of them do . +They have been on this . +Do nt do it . +The children do too . +Life does nt work like that . +They are not us . +It made for a good show . + It 's good work , he said . +I never think of it as they do nt want me . +But for the last three years , he has been in one place , more or less . +You do not want to know what 's in them . + Even four is too many , he said . +And what , then , is the United States to do ? + You know what they want most now ? + I was here , one says , where were you ? + And it should have . +As we see here . +First is first and second is last . + I been good to them . + What 's it for ? +That 's what we both have . +And I do today . + Today was one of those days . +I was nt going to say that . +Not on what we did the game before . +I will be there for you . +He has a home there . + How do you come back now and say we do nt want that ? +No , it may not . +And I was home . +They know what is best for our children . + It never should have been said . +First , the law . +Those days are over . + If it did , I would nt be here . + This is the best place for them . +But only two did . +And so , after all , may the President . + But that 's what he did . +So the good times are over . + I never see this . + Because I said , You know what ? +He 's not the only one . +They are also said to be good for your back . + Little did little John know . +Most are in the United States . + Is this the right time ? +But life has been good here . + We had time to do it right , he said . + Where does this end ? +But that was several years ago . +It just does nt work , she said . + He would have still had his day in court . +They said , Go back to your country . +He has one , all right . +He says he does not . +This is how he is . +I would like this ? +What were those like ? +I then left the Government . +He will never be . +She was not there long . +That was every day . + They are there -- I do nt know how many , she said . +What has nt there been to like ? +It 's a good time to work on this . + He does nt know what to make of it . + It 's a part of you . + It should nt be that way . +You just come out , you want to play each and every day . +What does he say about this ? +It 's not going to be the first one or the last one . + How do I know who you work for ? + It made me want to go into this business . +So he 's in . +But that is the law of the state . +And he left us , just like that . +It 's not good for the country . +He will play this season . + You want to get high , he said , you come here . +And that 's just part of the game . +Now , this is my home . +How did it go today ? + From The Life of . + What is that ? + And I want to know who that is . +You just want one . +You have to get as much as you can out of each play . + What are you going to do with your life ? + We are not and will not . +People just do nt like it . + I do nt have to get the most money . +He 's over that now . + Being in the country . +They may even work there . + They said , You want to do what ? + Not at all , man , he said . +They know we are there , and we want them to know . + Could be , he said . +Well , the money is there now . + That 's my other life , he said . + I do nt know if he can take it . + But that has not been the case . + That 's the way he is . +Now they are so few . +Who does nt go there ? + Right now , people say we can be a good team . +We know what we are up against . + How can one take it ? + It was just like it had been , she said . + All day , he says . + I think of this as New York City . +But that that 's not what it is about . +But if it does , it does . +He put on a good show . +One way or another , it will go to the West . +Who 's the best ? +But what can you do ? +We were the right people at the right time . + There was a long way to go . + That was never the case . +I want them all back . +He 's with you . +I did nt know how to do that before . + I do the same with them . +Well , this you do think about . +He 's down and out . +That we have come to know . + We did nt do well at all . +And what about today ? +Can one do both ? +They also own a home in New York City . +If you were president of the United States , what would you do ? + And that 's what it was . + He 's going back all the time . +It is their game now , their team . + We are in it to the end , he said . +We should not do that . +Many have had that . + We said , We do nt think so . +What Is Best for the Company ? + When they get this big . +You say , How about him ? +It 's not what people think . + I do nt know what was said . + But I said , So is life . +One is if the country were at war . +What do children want ? + It 's the way they do business . + My best times are family times . +How long should he go ? +The market is there . +This was not the right place for him . +Well , she had one . +It was right there . +Get it out , get it over with and get on with business . +All I know is that they were here before I was . +But if not now and if not you , when and who ? +That 's what it was all about for him . +There is no they to me , because I know about being they ; I have been they . + No , it 's New York . + We had a very good year last year , she said . +He may be the last in his family to do so . +Well , one of them . + Now she has one . +It was not so much you against them as us against them . + I like it just the way it is , he said . + This is the best we could get . + I never have been . +This is how every game is going to be for them . + We did the show our way , he said . +Some did , but even more did not . +No , no , no , he said . + If it had , I would nt be here now . + Many people do nt know who we are . + That did it , she said . + You also have to have this , she said . +There are some Big Women , too . +COUNTRY MUSIC LEFT HOME long ago . + This is just a game , though . +He said : I know what you people can do . + This is the team where I want to go . +So that 's good . +Or so they said . +It was like we had to work for it . +Is that the American way ? + Where is it going to go next ? + They have no right to the children . + I think it 's where it should be , she said . +Only at the end , though . +He had been around . +But most can not . +He could nt be . + But it 's good to be here . +In the next state ? +No , that 's not the case . +You have to go some way or the other . +It 's what he does . + I think that he is . +Would nt we all ? +We also know that I want out of this big time . +First , the family . +She can do this because she has the day off . +But she may have to . +They should be all right . +It 's on my back . +Get on the officials more . +He will get through that . +What is your country ? +That 's for the public . + And I have -- people should know that . + We are both the same . +This is my right . +I do nt want to know any more . +After all , this is money that I , not the government , made . + People want to work that off . +This is the case all over the world . + I just do nt like the place , she said . +There was no way you could . + We had all the right people . +But he had not . +This is over here . + Did you know that ? + This is their country , and this is what is best for them . +And they may do more than that . +He was just a big . +There 's a war going on in this country . +But there is some . +I think we just did nt get it . +I take time with them today . + But I do nt know what I can take out of this game . +She did nt want me to go . +Some just are nt very good at their work . + It 's their home . +But I think he 's going to get one . + Do it some other way . +And one might be . +And this time it will be the last . +The street has a long way to go . + That 's what I play for . + It 's our children that are over there . +I like all the people . +No , it 's all right . +That 's what this last year was . +And it 's not just that . +What does he do every day ? + What about my money ? +I do nt think I would go . + That 's a long time , too . +Those were long days . +Not much of one . + That 's his right . +I want some now . +We were here first . +I just do nt know how well it 's going to work . +How did you get it ? +They have what we want . +But I can do it . + You do your best . +They have been for a long time . + We do nt know , he said . + They said I did nt have one . +I just take it one day at a time . +He 's one of the best . +We just do nt know how good he is . +He had two years . +At a good time . +But it 's like any family , and this is my family . + People say , What are you ? + That 's just how he is . +That was a good day 's work . + But I had more time then . + This is not going to be a war of two or three years . + The team has to come first . + But he did . + We just could nt get it . + I did all right . +That 's the way it was last night . +I had to go back and get him the second time . +He 's been in the game . + I do nt know where it will end . +What should one do with the money then ? +People know in this business that the end will come some day . +For many , it was . +I just want that to come through . +We do nt know how to get it . +It does not work . + The market is about the same as last year . +They are going to take the game to you . + He does nt work here any more . +That is my program . + All of it , he said . +So how come we do nt ? +He said , I know . +It has been five long years . + But he was not about to . +There 's no place like this . +There are very few people in the world who only do this . +All are in the department 's New York City office , he said . + I still do nt have him back . + Not only that , he said . +It still was nt . + We are many years from that . + If it had been the other way around , we would have had to go up . + If you do nt want to be here , you do nt have to be here . +The people here are family . +And not just this season . +This time , it was an American . + But that 's not what this is about . +If you do nt have it , then get out of the game . +I have it all . +That was a big one . + I do nt know what to do , she said . + But he was a good man . +But never in one . + We think we can do even more . + And that was the end of that . + All four said no . +We did nt like him . + Is nt that what they want ? + It 's not what our business is . + It 's been good for them , she said . +They did nt say much . +Not that we want them to . +He was nt called . + Now , it 's out of business , he said . +You should do that . + It 's all business we have nt had before . + That 's not right . +That 's not what she 's about . +We are going to get there , one way or the other . + I did nt think it would go out , he said . +And they do so . + I want to know how . +After all , most of me is here . + You are going to do what ? +It did much more . + I do nt see as many people on the street as I used to . +They are like one . +But you have to get used to it . +How many companies are in this business ? +You would never know it today . +And much of it has to do with time . +You could do that . +He said he did nt think so . +We called it a day . +Four years and we do not know him . +That will come out of a can this year , she said . + How could you do it ? + But we did nt know . +You never did that before . + They know and we know . +Her : I do nt know . +He had only had one before . +That 's what 's going on here . +Did I play with their children ? +It 's not a place to go to . +That was not to be . +We will never go . +But what to make of it all ? +And I could see them . + Do you think they would like that ? + Here , you go first . + I have no family . +Or Did you see that one ? + He is what he did . +It 's not out on the street . +And it does nt . +But there 's a time and a place for it . +The police are called . +They are good at it . +That 's not their life . + I did nt know any of them . + No , he does nt . + And I think there 's more of it . + Today was another case . + She never did . + While it was here , it was home . +You have to play through it . + But that 's the way we do it . +Many people take their work home with them . +You never want to come back . +And we do nt want that . +But many of them would nt have it any other way . +Where will we put it ? + You never know how you are going to be used . +And two years from now ? + That 's all I have to say to you about that . +You are in the business . +He may be right , though . +We will get through this . + No , I did nt , he says . + So I said , From now on , you have me . + People want to know what to do . +Now he had no home . +It may be the best way , but it 's not the only way . +But that did not work out . +No , they say , they are not . + That was the best day . + Where Will We Go ? + I just do what I do . + No , I do nt think so . +Do nt be put off , though . +But they had been there for years and years . + This year , that was nt the case . +I know they want to go all the way . +So are the people . +They were all over . +Can he not do it ? + He 's not white , she said . + It is home , too . + What made them good ? + Is he in the house ? +There is one way out . +Could nt you say that about any year ? + That 's our money , he said . +We have to see how he 's going to be . + You are only going to have them one or two years . +That 's what the city is all about . + Which one would you take ? +What was in it for him ? +They may well be . + That was the way she was . + What did the President know , and when did he know it ? + You just do nt see too many of those . + We think about it every game . + So what 's up ? + I do nt like it at all . +You are so this and you are so that . + That 's a good way to go out of business . + They think it is the country . +That 's how I think of it . +We are going to make it work . +But no , that 's not it . +Now it 's so up . +They never found out . +That 's about the way my year has been going . + It 's all new to me , he said . +That 's what we know . +How do I get into them ? +Less than we should . + She never called me back . + I do not know , he said . + I could go on and on . +My life will never be the same . +That 's all I could do . +But I can do two . + They have to play the game . +But this , they had not . + President of the United States . +It would not be him . +It 's only a game . + She said : I know who you are . +We can not say . +But we want part of our own market . + It 's not the government 's money . + We would nt do this if it was for the money . +But it just is nt the same . +He might make it ; he might not . +What could take its place ? +This is the way it has to be . +That 's all I had . + But you never know until you go through it . +How do we get out of here ? +They do nt think like us . +We are way down at the end . + You do nt get this in any other country . +But how would he know ? +That 's how good he was . +Should the United States go to war ? + The Government will never say so . + And what would this new state be called ? + It was all set up , he said . +They are yesterday 's business . +Three years he was out there . + But I do nt think this is the end of the game . +The two of them own the little place . +The market where we are , we own . +Well , was it ? +They were only in it for the money . +How will it end for him ? + It was the only way for me . +Just go all the way . +I did nt even see her . + We are going to have to work through that , he said . +He had to come out of there . +The work is big . +People like it that way . + You too , it says . +No , he says . +Well , it 's just not so . +You go to work . +So I left the country . +People do think it does . + Not that they want it -- they do nt , she said . + You are going to get it back . +But they do nt want you to get out . + That will never be , she said . +Who are these children ? +I said , How do they know me ? +She did all the music . +They said , How come you do that ? +But business is still business . +Then it is show time . +People in public office ? +It 's not for all women . + That is what the United States can do . + That 's just not what we are . + It 's like this all day long . +They left him off the national team this time . +At first she says she does nt know . +That was last May . +I have nt had it since high school . +I should be good . +It was just me . + It was just the way we do business . + Well , some people do . + I did nt know about it . + He could nt see . +How do I work through this ? + I do nt have the money , he said . +How can I do that ? + So there you go . +She does nt want me to get down . + I just know I want to be with her . + But these take time to work . + More people are going out also . +I think this was both . +What did he have ? + I think the very best team in the country can come out of our game . + We are good people . +So much money to be made . +It 's just that now is the time . + What would be second ? + This is one of those times . +Where do they come from and where do they go ? + This was all new to me . +It was as it should be , for both of us . +But there are not that many of them . +He says there is not . +Who was to know ? + You do nt think about that , he said . +It is the law . +We did nt know how good he would be . +Would she like me ? + When I get out of here , I like to be with people . +I do nt want any . + People say they do nt have time . +No one called the police . + There 's still time . +It 's that time . + But they are good for you . +This is my home now . + It 's just not the right time for me in my life at this time . +And the money is not found ? + Know who they are with and what they are up to . + Where were you today ? +Might you get in the way ? + Did I see him ? +And more than no . +But that 's just not going to work . +We are not a court . +He said , You do nt like me , do you ? +Do nt you know ? +So that 's what we were going to go with . + You can do as you like here . +But this is now . +Will he do so ? +That 's new , too . + All I can think about is the children . +I just did nt have it in me . +And on and on ? +What can we do about them ? +It may take more than that . +We can work from there . +After all these years , we are here . +NOW , WHERE WERE WE ? +Now , what 's next ? +I would nt , he said . +I should say so . + How many was it ? +I only think about us . +Who were we , and what did we want ? + I think so , he said last week . + If there is the money , then I will do it . +I can do what I do . +But not many , if any . + It 's been my life . + I just like being out there , he said . + Not your business . +That is what this case is about . +I like what I do . +So it should be . +And it 's me . + Just to make them think . + You do nt get that around here much . +This is for you . + He is a good man , she said . + Does it work ? +He said , Think about it . +It could take off . + He did that . +But you want one now ? + It 's not new for me . +It was a good day . +But when we come to work , he has to be here to work . +The end will come one day . +You know where you are . + I did nt want to go , but I had to go , he said . + But I said , This is what I want . + I know it 's not good . +My country , my people . +It 's all day long . + If They Were White . + And so we did . +I may have to get out of this business . + But we can not do both . +It was all good . +And it 's just like that . + That 's just me . + I was the first to get to her , he said . + So can we all . + I do nt think that was the case . +So does a New Year . +If the Government does nt have the money , it does nt have the money . + We had been had . + And then she said , Every time ? +And for the time being , that 's it . +She 's going to have a say . + You get used to it by now , he said . + How can you not want to do it over and over ? + It is all over the country now . +And I do nt think we do . +We did it , he said . +Where does he work ? + I did nt see it . +And what was that ? + War is war . +From time to time . + I know where we are going , he said . +Today there is one . +Then they were at me . + But I know there has been some , she said . + And now it is this group of people . +Which one do you want ? +But , you never know . + But I would not . + We all will . +That 's what I play for . + When do we get to go back to New York ? + I see him every day , he said . +But what about all the women who had left ? + It 's never going to be the same after that , he said . + He called last week . +Every game is the same . +Which is what they did . +And what did they see there ? +So how do you make a business out of that ? +But I think there 's more to it than that . +You can not see it . +That 's the way it should be . +And I could nt do that . + Now I do nt have to take it off . + That 's the big one . +If not the best , then one of two . +And a new house ? +What was I going to do ? + How many can there be ? +There was no more left of him . + I just called it off , she said . +If I can , I can . + And we are the government . + We all know what he can do for us . +For me it was all right to be left as I was . +It 's all going to come . +Could nt it be that ? + But I did it for me , too . + There 's no other way to do it , he said . + What to make of it . +It 's not every day you can say that . +Since I do nt know when . + To the last day ? + I will , he said . +See you next season . +And who do they think they are ? +I want to do what she does . +So what can we do ? +They should nt do this to us . + It 's much more than one day . +Here , it 's not the same . +The program did nt work . +They were not the first . +But it is still a good place to be . +But it never is . +How would you like that ? +New York in five . +Now he has both . +Just as well , though . +They were like , Here we come , here we come . + They say : Well , I do nt see that here . +But you did nt do that . +So where are we ? +The house is on the market now . + It 's just like old home week . +No , it 's the other way around . +Is nt that long ? + It 's all here , all right . +What would be a good time to go ? +It did , though , and still does . + There 's more to come of this , he said . + I want to see what he 's going to do , he said . +Then he had another . +But that has nt been the case this year . + I was never that good . + Just for my family , I said . + We do nt know where they are , he said . +But it was not for him . + I would say this will take a while . +And even if you could . +When You Say That . +Does he like it ? +I was nt going to go for that one . +Now , the best part . +I have only to think about that time . + And I should be . +Or was it the first ? +It 's after five . + We do nt know how long it will last . +They are not going to make it . +Then , No , a little to the left . + It 's best if you come every day , he said . +They know it , and we know it . +So what do they do ? +That 's the way it 's been since I have been here . +How 's the show going ? + It 's the end of my day . +All they could do was think . + Where do they get all this money ? + We see this every day . +But that 's not what they see most of the time . + She said : So what ? +Next year , it 's all business . +Until the end , that is . +Well , he was . +Because that 's just not how life is . + So how can you know ? +How right he was . + It was no more or no less than that . +We never found out . + And not only that . + What do you do in a war ? +That 's all we are going to do , he said . +It is not very long . + Not in a week 's time , he said . +I think it 's good . + It was four against one , he said . +People know him more than they know me . +I said he had . + They do nt know what to do , he said . + But I do not see . + You should see this office . +President to city : New who ? +We all know what he 's going to be . + But in a good way . + We do nt work that way . +We just think what we do is a good way to do it . +That 's what people want to see him as . + They are going to be good . + This is no place for you , he said . +That does nt work any more . + Should we do the same now ? + She said , That long ? +How many times then ? +It just is nt there this time . +So what is So . +We were in first place every day of the season . +But in the last years of his life there were only a few . + And she had no money of her own . + That 's not the case now . +I think they are right . +Will you do it ? + And he did so . + We know it when we see it , she said . +This is a big game . + But we do nt want to be all over the place . +It 's a little more American . +Did you see this ? +Because if he is , he 's going to be very good . +That 's right , too . + When you are not with me , she said , you do nt think of me . +Here 's how to do it . +He was in three . + This is a new team . +This is the same . +There should be one in every home . +That 's what I did . + I do nt know which one they want me to go to , he said . +And if so , which one ? + What are they going to do to me ? +Think of the children . + He does nt even know where he is . + But he has to do well in the First . + Do nt you get it ? +So what did he want to do ? + That 's us , too . +So what 's going on here ? + Here and here also , he said . + You can only work so much , he said . +What will they do to me ? +Could I do it ? +Much of it is . +But she never left her home . + I said , Do nt you get it ? +And when will I know it ? + It will work out . + It 's part of it . + I did it on my own time . +No , they are not that good . +The show might as well go on , too . +But all is not well . +No one can do more . + They just were nt my people . +We could get more work in . +And I think he can do it . +People know who we are . + In police work we are one big family . +You do nt want to do that every day ? + They have to , he said . +But that 's not what they are used for . +The money 's just too good . +And then , no more business for me . +That 's the game . + I did nt see it , he says . +And there 's so much of it . +It was about going on . +You will be back in . +We know where we want to go . +All of them are . +He will , in time . +But what do I do now ? +And know that they are because they have to be . +So you just get to it . +There were too many if 's . +It was only yesterday . + I can never get over it , she said . +Did you see the game ? +Is nt that how it should be ? + But now you never know . + They have been there . +People know you all over the world . + What Are We Going to Do ? + Now , what can I get for you ? +We found another place . +We did nt know each other . +I do nt want them to just be a part of the game . + We are going into a new season , he said . +I had last year . +Just how does this come about ? + I did nt think I was that good , he said yesterday . + She has to go work , he said . + She 's like me . +So is the season . +But people have to get to work . +It is what they do best . +It 's not a good place to be . + But that 's many years off . +I think that is it . + We did not play well . +Do it that way . +Do you want to be back here ? +But we do it all here . + All she could say was , I do nt think so . +Now they want them out of there . + Well , do you want to play ? + Other companies are going to this , too . + HAVE you been to New York before ? +That man had it all , but only for a time . +Well , it was nt , was it ? + And people just do nt have time . + But I know more now than I did . + I know I can do it , he said . + It could nt have been very long . + And it could be a long one . + They are not the Government of the people . +This is his year . +It is the end of the world . +But you can work with it . + What would she want me to do ? + We just go out there and do it . +He did , and he will . +It could get in there . + What was I going to do with it ? +They know how to do it . +It was five , not four . +He 's part of me . +We had to get out . + Also to my music . +And play it and play it . + This was his office ? +It 's what I want my life to be . +There 's more than one . +Then they come on . +But at the end of the day , they are all the same . +But there you have it . +We are not going to do it right now . +Every week , every week , every week , every week . +What did we know ? +The man did not come back . + What would he do right now ? + It 's not my war , he said . +Then he made a business out of it . +The United States can not . +I like being with people . + I will be in New York next week . + You just do what you have to do , she said . +This one is it . + That just was never the case . + We were the first to go out . +They know it all , and they play all of it . +And he said , Just do it . +Come on over , they said . + It was nt too good . + I did nt like what was going on , he said . +And three , it can do both at the same time . +There was - had no business being there . + You know , I do nt know . + At the end of the day , we would nt go into this market if we could nt make money at it . +There was no way I was nt going to get that first down . +Make an old place new ? +We should know this week . +It does nt have to be this way . +We have to take of business right now . +He would just go down . +The will may be there . +Was there another way ? +If you want it you can have it . +That 's not the place to be . + Then they do that to us . + It 's an American say what ? +He said that he did not . +She did nt think it was too much . +We could do it year after year . + I did nt want to go in there . +I do nt think we will . +It was now or never . + And here she is . +That may or may not be the case for some other people . + But is he or was he ? + If we are not here , there 's no other place for them to go . + People around here know me , he said . + If they do nt , I do nt think I want to , he said . + It 's going to go on , he said . + Now you know what our children think , he says . +But what do they do now ? + But then there are some people . +That 's over now . +And this was very good . +But you never say never . + They come right at you . + This is so old . +No way you can do that . +All right ; that was then . + That 's how it 's been all day , he said . +The next day we were . + So there we were , she said . + Who are you , and what do you want ? + He made the big one . +Well , think about that . +But that was then , this is now . +We do this every year . +There 's only so much I can do . + We know what we are against , he said . + You get to Who can I go to ? +A case could be made for -- or against -- each . +Who would be there ? +They have two children , she said , and no time . + You just have to do your best . +For just how much , he will not say . +The other found out there . +But get over it . + You know that and I know that . + That 's the only way I can do it . + That 's not very much . +I do nt know how to put it . + How old is too old ? +It is the New School , not the New School University . +I see it here every day . + They want to know what 's going on . + What did you do when you were here ? +But it was nt on . +And that should nt be so . + I would nt know how to get any . +They come to my home . + I do nt know if I should get into it ; if it 's right for me to get into it . +This is what it has come to . +There does nt have to be . + Money is all over the place . +First I called the police . + That 's right , he said . +He 's going to get it . +Every day they did that . + This is his country . +You should nt have to . +We had to go out and take it . + It may still be there . +As if we did nt know . + How much more ? +They called the police . +No people , though . + The police do nt like him . + How about this ? +Put it that way . +Well , it was . +So this is what it has come to . +Is there any way to know ? + It 's money , that 's what this is about , he said . + So , it is up to us . + And I was like , Take what off ? +Three is a big one . + This is my new life , he said . +Now it 's back on . +You did nt have to be . + I did nt think the city had a case . +He just put in the work . +It found no one . +But we do nt want to just get there . +But they did know me . +They may be on the way . + You are not going to have a life , he said . +It would have been big . + I do nt have time , he said . +I want to know what they want to know from me . + If we are not in first place , we are no place . + It was just like old times . +After all , it 's only May . +My family still did nt know where I was . +Some of the time . +We do it our way ; we like it . + Where was I going ? +Now it 's up to you . + I said , What 's going on , John ? +Do nt say this . +They did nt know very much about them . +But if it was nt for me , she never would have come today . +I said he may have , I do nt know . + But I say no . + This is a good man . +They do nt know what they would get . + After that , he says , it 's up to you . +But she could nt do it . + I can not go back . +Next year , they will be good . +Today is my first day back . +We do nt get there . + We can do this . + This year , he said , has been just like the old days . +He made so much money from being here . + And we do nt think that right now . +One is the same as the other . +That 's only part of what I said . +How can it not be ? + It 's , Can I be the best ? + We used to , back in the time . +LONG TIME NO SEE . +Now that time has come . +This is how they were all day . +I did it for money . +No going out of the house ? + You are still old , he said . +It was first down . +No one will say . +Now he says it will take until the end of year . +That 's the way it 's been all the way . +But it is long . +After all , they were there . +But he is , now . +It just would nt go out . +We were put here to be here ) . + It 's good for me and it 's good for them , he said . +This is what a city is . +And if you are both . +Today , it 's work , work , work . +It is way up . +It 's what she was . + Get to work , people . + It 's your place . + I say , What ? +But just who were those people ? + People said : What next ? +There 's home , and there 's home . +All right , what can you say ? +It is about time . +I said , No way . + And I did nt know how to do it . +He did nt do it . +But then , they had to . +He did and he did nt . +They never used to be . +Just get on with your life , so that 's what I did . +And it has not . +Some of it may be . + It 's not the place to do it . +And that 's where we are now . +For that , they are family . +But my will -- that 's not for me . +So who is it going to be ? +Will you come with me ? +But I have time . + That 's it , one way . + They get it all the time . +But you have to have it . +They could be us . + That 's still the way we play . +We can do it the right way . +Well , here 's the way I see it . + We have to work it out . +I know that it is not . +I was only in it for three years . + You think I should ? +New York City is right there . +Now you do nt know where you are going to be . + How do you get there ? +I can show what I can do . + Did nt say no more . +Some do , but most do nt . +And where did all the people go ? + Do you want to see a few ? +Not one was to be found . +That was too much for the director . + That 's just the way the season has been for us . + I think they do . +And just go from there . +We do nt put each other down . +Can you still do it ? +Many too many ? + But there 's much more to this than that . + When are you going to see him ? +You do nt like being in their company . +They have to go all the way . + He 's good at it . +We are music ; music is us . +It 's their life . +So it was here . +She has a long way to go . + It 's just not so . +It is not like the old days . +I do nt even use it . +They were all there . + It 's not like work for me , she said . +That just was nt the case back then . + I do nt know if I can do it , he said . + If they are going to play , they are going to play . +What 's it good for ? +So what will they do this year , when most people do not think they will ? +Or right on the money ? + It was good for me . +All right , he says . +Now , what was I going to do ? +I do nt know what this place would be like with all that . + How can there be ? +Never , never now . +If not , what can I do ? + But that 's all I know . +Some of those who are . +I did do that . + That 's for New York , she said . +In his first year in office , he did both . +In the end , there 's little to say about him . +The play was there . + It 's not like your own family . +You are a family . +That 's what this country is all about . +So we see each other . + I was just there . +And so they are . + I think I did . + It 's a long game . + Would I have said it that way ? + I think that 's what it 's still about . + Not right now . +Music is part of life . +I want them here . +And they are off . +You are used to this . + Come up here and get me out of this . + That was part of it . + That may be so . +And I will be back . +Do nt get in . + Think about that one . + Do nt they all do it ? + This is for me , she said . +But they were good company . +Many at the school did nt see it that way . +It was - was nt it ? +I was among them . + Or , even by that same day . +He could do this three , four more years . + But I have to take them as they come . +But we are a team here . + Never in my life would I do that , he said . +But what about the back ? +He left after just two years . +I like what he had to say . +Get back to work . +But there was nt time . + He says , They are . +We have just come out of the war . + We did this on and off , she said . +The public , they do nt know too much about music . + The way I did it , it 's just the way I had to do it today . + I do nt know that . + We get three days off , she said . +But that can take a very long time . +Children would have a good time . +They are good people . + But I want it . + No , I think it would be best . + It 's what I know how to do . +If he does nt make it ? +This is another part of our business . +Not for president of the United States . + She was out to get me . +Some people do nt even know of The New York Times . +And that was her . +Now I want to go to them . + This is our right . +It 's our people . +Or so she says now . +What does the company do ? +This was in high school . +This place is all business . + All these people have a place . +What he does know how to do is make money . + We could never say . + So I said . +And I know that about me . +But I could nt see a one . + Those did not work . +If I could , I would . +Would you like that ? + I could nt see , he said . +The children were still at school . + People just do nt get it , she said . + That 's part of our game . + No , not in my life . +You do all you can . +I still have to work . +That 's what they said to me . +I would nt want to have to play here . +You could nt see . +And that 's what this business is about . +That did nt come up . + It 's in her . +And then another one . + You are here all the time . +But the next year , he left . +I do nt even know where it is . +There 's more to it than that . +Where do I go to ? + He can say , No , I do nt want to play . +That 's too few . + I do nt know them , she said . +Make it through she did . +What do you think . + I just want to play . +Is there life after work ? +Then , How much ? +It was just like a big family . +How could I not have ? + But this is more than that . +It just is nt right . + I do nt take it home . +And all we want to do is make money also . +This is not going so well . +Where is the money going ? +Well , I think that 's what I just said . + I just do nt want to be in the city , he said . + That 's good , right ? +But it 's going to take a long time . + You have to do it . +I think it was what you said right before that . + It 's just going to go on and on . + What do you do now ? +But I did nt want to . +The House did not . +He did , three at a time . +And if this show is nt for them us ? + This is all I have left , he said . + That 's what all of this is , he said . +The case is in court . +I did nt have that place . +Now he 's going to come back and play . +But What Do They Do ? +They do nt want to be out there . + What in the world did she see in him ? +But would he do it ? +That is all he can see . +The music business will never be the same . + It does nt work for me . +They get what they want ; then I can do some of what I want . + I could do it . + I can work with you on those . +Just like he did with the music . + Not many have had less than us , he said . + And I think they have . +And this is a good one . + Is nt that what you want ? +But he will have company . +We work with people . +That would be all right , too . + And is the center of my home . +Then , there is more school . +Did nt work for me , so I do nt know . + It 's what you make of it . +But no one called me back . + That 's very much me , she said . +We think it is not . +They did nt know what to do with it . + No , it is not . +It 's like this . + I like to think we are . +If I can play it , I do nt have to do it . + I think too much . +The people around them do nt know what to say . +What do you want them to do ? +It 's the last game of the season . + It 's not one or the other , but both , he said . +How long do you think you would last ? +Life has to go on at my house . +Who is he , or she ? +He 's not on all the time . +I know what is going on . + Where they going to go ? + I like how they did it , she said . +I do not think so . +I can go and I can come . + How does that work ? +He can do more . +But there have to be three of them . +Who were you with ? +But the President said no . +But you see , I was here first . +For most people those were good times . +What do you play ? + Of all people , should nt I know how to get around it ? + They have no will to work . + By the way , you are the first to know , he said . + But it 's never been that way for me . + This , can you do this ? +But then that was it . + Would we do it that way now ? + He 's not going to . +But it is not made up . +They do nt get him . +What is there left to say ? +Where are most of them now ? + And I like them both . +This is not our home . + But I think this is our life now . +With me , this is where I want to be . +But they do nt see a game that their children may play . + We did nt think about it that much , he said . +In the end , it was just about music . +There will be so many of us . + There is no there there . +I play with him all the time . +Like you see it . +We were not one of them . + They do nt know you . + See how you like it . + And we did nt want that . + But it 's more than that . +For now , it 's all right . + Who are these people today ? + It should not have been . +Did you do that before ? + One each of what we have . +You are out of here . +It is in New York . +This is where I should be . + There 's no place like home , he said . +I think in your program , too . +It 's not about me , me , me . + It 's not his . +Companies could do this too . +What 's what with A . + I would nt want to be the one to do that . + He said , You are going to be with me . +Then you do nt . +But that year is over . + It is against the law . +It was just so the other night . + And I do nt like him now . +And there he had me . + This is the team we are going to have . + It 's the end . +So which is right ? + Where do you want it ? +There was just so much going on . + You do nt want to go in there , he said . + I do nt know what I would do without it , she said . + How could he do that ? + We had all been there many times before . +These are people out of work . +But you do nt do that , do you ? +That it was for us . + And we have the same people , he said . + We are still at war . +Here is one case where it is not . +But like I said , I do nt even think about it now . +And that did nt work . +The A 's have . + Their time has come . +And it was nt even that good . +We have to be with you . + He said , Do you want to come to the United States ? +But first it has to be found . +Still , life was not all work . +It 's their president too . + There 's too many of them . +But there will be more to come . + Did you have to do that ? + If you are the police , be the police . +She has two children . +But our team will be right there . + And the first American . +It 's like yesterday . +No one would take her in . +It is a new political world . + So I said , There 's my house . + Just how would he do this ? +You just do nt even know . +But this is not to say they are not at work . +I want to get him back out there . + What do you do with them , by the way ? +It was just that it had nt been said before . +And you would be right . +They want it , too . +Most did , he said . + But she has come to be such a big part of our family . +That 's the way this game is . + I could nt do it at home , he said . +This is New York . + What do children like to do ? +I did nt know who did it . +It was not just the money . +That every place is the right place to be . + But it did nt work for me . +We all have each other . + The president did nt know what to do , he says . +We do not know him . + I just know he is going down . +Then I will know . + Who is he ? + Every president has used them . + What is it about me ? +He is the one for you . +This is the world . +There were and there still are . + It 's her last day of school . +And no one did . +Have you been this way all the time ? + But we are not going to use it . +There is only so much you can do about them . + I see one in there . +And I know , from the work we put in , that we are going to do very well , and we have . +But not out there . +We can make this a long way from over . +Because they could make more than that , he said . +He was one of those . + People come here , he said . +Also , she 's a man . +That should be it for the year . + Who would nt ? +This was their first day out . +That 's all you have to do . + I know it when I see it , he said . +It 's good for the world . +He 's not going to do that . +But he does it . +Part of this time of year . +And she was right for it . + Where are you off to now ? + What are you going to do with him ? +The market just does nt like that . +But that is about all they know . +I know he 's right . + But for not going to school ? + They say : Good . +It was what I had to do . + Do you know what a second is ? + I work , and so do my children . + I have no more to say . + Could we see ? +I can see them . +I just think about me . +No , not now . +It is the way they think . + Now this is not the end . + Who Do You Know ? +Do it our way . +It would nt take you or me more than three days to make it . +Who 's going to play it ? +He never has been . +WOMEN AND CHILDREN FIRST . +How would I know him ? + So , what are they like ? +You can say what if all day . +I did nt want to come down today . +It was one of them . +We can work with New York . + I just did nt have it . + I said they were good . + I do nt have much to do with the place , he said . +I do nt know how to do much . +They like good music . +So where do I go ? + From your center ? + His day off . +Children do what we do . +I never found out who she was . + Last year , he could nt do that . +How long could that take ? + What , what , what ? + We should take our time . +He 's in each of the four children . + We are like a house in the country . +For him it was . +He 's been set up . +Then what would you do ? +So he just did . +And I had to do it . +But we do not think so . +So that 's the show . +They want a new old house . +WHAT SHOULD I DO WITH MY LIFE ? +What if its your way ? +That 's not what you do . +Well , I do , but I do nt . +So did much of the world . +Do we want more ? + It was my time . +This can not be , he said . + I know how to make money . + I just want to take it day to day . + They only make them for me , he said . +There was no other way . +As for last season ? +We used it for the first time in five years . +We have a right to do that . + We are going to do the best we can for them . + In those days they used what was around , he said . +These days , they have it . +That 's what we want here . +I will do that . + I like to be out this time of year , he said . + And I think that 's me . +What I do is what I do here . +They are still on the market . + I have to be with her . +It should have been . +Could he do it this year ? +We were the first . + No one should be left out . +But only when they work . + If not , it 's going to go down , down . +That could come next . + We are like family here . + I think he would play . +It 's about our right to be here -- in any part of this place . + This is a war over our home . +Next day he did . + He had every right . + But you have to see . +But he is not the man he was . +They know what 's out there . + Now what can I say to that ? + She 's of no use here . +Do you like any of them ? +The house did nt work . +One by one they said it was all right . +Or it could not have been . + People come here for a good time . +It is nt going well . +You know that -- right ? + That 's it , I think . +It was there for all to see . +So -- can we , like , go home now ? +I said , No they did nt . +He 's too good at what he does . +But then we do have our own . + How could we not know what was going on ? +They were nt against it . + I did nt go through that with them . +But my family is here . + What do you do here ? +And what did I do ? +And that will be never . +You know he was out . +All of them did . +Now is one of those times . +You just do nt know what it 's all about . +In her work , she 's on it a good part of the day . +He never says no to them . +We have so much work to do . + This is the way it should be , he said . + Any two or three may work . +This year was not my best . + Not people , he said . +And that is what we did . +What will the President do ? +They can , and they have . +No , I never did . +And we all know which one that is . + It has been very good to see , she said . +They know what they do nt like , too . + Do nt you want to do more ? +Still , he says . +I just want you to know . +Only it does nt . +Who said you could only have two out of three ? + Has to be one or the other . +This is my second time . +You could nt make this up . +I never have and never will . +People say we are like last year , but that 's not the case . +That 's what 's left . +It 's about the here and now . +Who is to say ? + Do you want to go back for it ? + I do nt know what he will say . + Get to know him , she said . +It 's the only way I know . + Because that 's all you are going to get out of this . +If only more people would do it . +How could you go ? +If he did nt , I would nt be here today . + We are in the political business now . + He 's not old . +Where do they get their money from ? +It was and it is . +It should nt have been that way . +And he said , No , no , no . +It 's like day and night . + Some days I get two people . + If not for him , we would not be here . +He was right there with them . + But we are not . +Was it going to end like this ? +No one is left out there . + I did nt want to think about it at night . +IS it the Big One ? +When do you think that might be ? + And that 's no good . + I had no place to go and very little money . +But she is well on her way . +This is the best country in the world . +I could nt take it any more . + I would nt like them here . + I said : That 's not me . +So , too , in New York . +I would never go for that at all . +Or not at all . + I was going to play it out . + There are nt so many who have such money , he said . +We just want it . +How many people would do that on their first day back ? +That is not the way it is . +It was not his day . +And I know I can . +But can we come back ? +All night long they come and go . +How could it be ? +Come to think of it , no . + This is how we are going to play . + They had their way with us . +You did nt make me . +Even if you do nt play well ? + He just made it in before the end of the year . + We have to make it work . + It 's no good . + You do nt know what to say to them , he said . +This is my last year here . +But we are few . + So what 's the game ? +All right , more than a few . +What do I do about it ? + And this was another one . +And there were a few . +Where is all this money going to come from ? + I did nt go on to high school , he said . +And then he left to play the game . + It can not , he said . +The good old days . +He will at his new one . + I want to know more , he said . +That was nt like him . +They are going public . +And if there are , there should nt be . +After all , she had the money . + I have family money . +I have nt had any work since . +They come to life , too . + So he did . +And there was little to go on . +He is at home . + You did nt make her do it . +Well , I may be . +What 's there not to like ? +I do nt want to think about that no more . + It was nt a part of me . + They want to see what is what . + I do nt know where I would be without him , she said . +Today , that 's what it was . + Most of us do . +That 's on them . +And where was the money ? +Play , she did . +I want less money . +But he has to want to do it . +And we know this is going to work . +What should I do next ? + What did you get ? +I do nt think this is it . +What about those who do ? + What 's it called ? + I like to think that we are not only in the world but of the world , as well , he said . +He 's been here three or four years . +They say if only . + But she never did . +Where is it going ? + We are all part of a team , he said . +Just not too much . +And it 's not the only one . +But the program was not long . + Do nt be one of those five . +He was the same with people . + This is just business . + That 's as good as this case is going to get . +The second was up and in . + What 's around it ? +And the family did it . +Not that it was a good time to do it . +They all want more . +She is right to do so . +They do nt even know that . +But the world does nt want it . +I : I know . +I did all that because I could do it . +He did all the music . +I know they are going to be used . +You just do nt see them . +He was an American . +The play is not . + They are all into it . +And then , there he was . +He did nt have much left . +They were against the world . +What does she want people to know ? + Only in New York . + There is nt a state that has nt called . +I do nt have one now . + Just did nt come up with it , he said . +I had no right . + As they say , it 's not what you know , but who you know , he said . +It was three , not four . +But he did not say where he was . + It will take some time , he said . +We were just two people . + It 's never going to be over . + What might these be ? + Make it more like me , he might have said . +That 's never been the case . +We will work with the states . +The city said it would . +There 's a game every day , day after day . + It has nt had that for a while . + I do nt see it that way , but I can see how other people might . +What is this play about ? +They are so much more than that . + This is not my night . + If you are going to do it , do it right , he said . +It 's about the President . +He was its first director . +They are just there . +Most people are nt that way . + HOW DID I DO THAT ? + That should all take place in the next few days . + And that 's a very long time . +That 's what we are in the business of . + I just made it up . +See one or see them all . +So they know what it 's like . +They just see women . +There was still so much to do . + I want to do this as long as I can , she said . + So the play was on . +I like this one . + They want to work . + It 's a big part of life here . +Can we put people in there ? +You just go on and on . +So , I just go with it . +These are my family . +And it is still there . + Get me out of this business . +I could see it . +This is how they do it . +Never had a home . +It 's just you , though . +She 's not even in the country . + It was as if it did nt want to end . + He never said no to you . +How can I get it there ? +I do nt think it was right . + How Does It Get in the Way ? +But that 's not going to work this time . +The Federal Government put all those people in one place . +They have it here . +But he does now . + I could see it . + He said , No , I have nt . +We are going to play the game right . +And then , when they are through , some of them will go work some more . +And now , there are . + If I could go back to that day , she said . +But there 's another one up the street . +Just think about what I had to go through . +They go after your children . + Some should nt be here . + Our Government did nt like it , she said . + As it were . +It 's about five years from now . +Well , that 's all over with now . +It 's not going to be here for very long . +Well , for a while there was . + That may well be the case . + We can work with it . +Do you like country music ? + It 's not the first time . +If you want to play that way , play that way . +He 's in good company now . + The office is not such a place . + You said it . +But no one is . + I know only one way -- all out . + This is going to go on and on . +You had a good old man . +We are going to have to go to war . +And we are right . + This is what you do , she said . +I have it on right now . +What should he be called now ? +We do not make them come to us . + We are not through . + Never did see one . +I would nt want to be part of that . +But now I can say that . +And he did not know how much he did nt know . + And it 's not just us . + Who is he now ? +He has said as much . + They never say : How 's it going ? +But it 's a big one . + That 's what women do . +And he made the most of it . +We do not know who did it . +And what can we do ? +There 's no place like home ? + Will it be used as that ? +Just in one year . +He is still new at this . +I know you want to get out , but this is not the time to do it . + That 's what made me want to get out of there , he said . + This could be my last game , he said . +You could nt take but one at a time . +I do nt want much . +They are in the play , too . + Where we are now is not where we were then . + We do nt make much money , he said . +I did nt used to do that . +You can do all of this today . + Because one day it might be you . +We are too old for that . +Business is still business , after all . +If not , that 's all right , too . +Now they also use our money . + I do nt get out very much . + But he did nt . + But it 's not like the end of the world . +Many as its president . + That 's what they did . +That 's a first for me . +He will have to work for that . +After all , they did do it . +This time , it would not . +You have to have been there a few times , and he 's been there . + But there were not many of them . + But we do nt have to do that . +They should be high . +Not at her place . +She left after two years . +He was not the first . + But we like it the way it is . + Well , would they ? + In a few years , I want to have my own business , he said . + Well , I do nt think it was . +Do you think this is going to work . +Is nt that what children do all the time ? + If he had , we would nt be here today . + It 's their right to come back at you . + It 's just that . +It 's not going to be the same . +We like to play here now . + This is a place where many of us might want to be . + You have to show it . + But I do nt see this going on too long . +I have to do it for me . +You think about it day and night . +How do we know this ? +We do nt know how to do it . +Where do they think they are going to go ? + He said , I know you will , but do nt . +I never left the court . +To him , it was another world . +On his own , he found the way -- just in time . + That 's right on the money . + I think you have to . +We are in it . +Even when they are not . +When I was there I called for a time out . +There is nt a way . +Then he said he might have . +But I do now . +The people around here do nt know what to think when they see you . + I want to play for a good team , he said . +Several times I was one of them . +You play for your country . +But I think you should . +Because I was there . + This is the law , he said . + Which , she said , they never do . +You are still the one . +He left the house . + This is not a war . +I do nt think it should . +He 's used to it by now . + They are going to be there . +That 's a long time . + Just up there on the left . + Our season is over , he said . + Our people have come , he said . +How many and where ? + That 's what I used to do . + That 's about all today . + You are The New York Times . + But they have nt . +Who is that me ? +At the time , both were well , he said . +Then four by four . + I want all of them . + But , she said , they did . +So that 's what it 's all about . +It 's like a big family here . + I made it , he said . +For a long time , they did . +From The Second War . +They made it the way it was , for them , last season . +And the president did nt back off . + What do I have to do with this ? + They had to do it their own way . +We all say it . + They think of us as . +I know no more than you do . +It just was nt us . +Now , what do you think of that ? +It was now up to West . + They all did , she said . + We are not in a war between the two of us . +So he made one . +You know how people are . +It 's not over . + Where is it ? + Now show me what you can do next year . +They said we were less than white people . +It 's a part of his life . +This is also your country . + And if it does nt , the government has to go . + I would get it . + I do nt play around . + I do not think I have to do that . +He said it was not . + But for the time being , our life is here . +We still do nt know . +But for now , it 's good . + He was one of the best . +We put up with this all year . +It 's called So . +The government was right . +It 's the street . +It does nt do any good . + I want to be President . +But we are still not there . +It 's how we get by . +And I still think there 's time . +He and I do nt play . +We never had much to say to each other . +That 's all there is ; there is nt any more . + But this was after the game , not during it . +This does not have to go on . +But what did it do ? + I never go to another place . + I do nt know what they can do . +There 's also another way . +The next time , what ? +We have to get back to that a little more . + One has to show it . +I do nt think it will be more than a day or two . + Now I could nt do that . + If he were nt with me , I would nt go . + It 's what we do , she said . +We have to get over it . +You see that you do nt have to work at it . + But more than over here . +But , he said , there is only so much he can do . +Not that I would nt like for it to . + This is not all good . +I just never do . + She left five children . +So what does he do ? + How does it come out ? + But that is me , he has said . + He did it all . +It could have been any of us . +And we say it to each other all the time . +They said he had nt . +We can not do a one . +And I think you can see , more or less , that in there . + It used to be a few a day . +I was the last one in . +How could we not like it ? + They just did nt go in . + They do what they do and we will do what we do . +But , he said : They are not going to . +We are not going to have any more of this . +It 's not even how you play the game . +The Music and the Man . + And What If ? +Think all of us want it . + You know , no . +Well -- of all people . + They said , No , this is nt . + It was just one of those days , he said . +There 's no place to work out here . +But they do nt place it . +And I said , That 's not what I want . + He said that she would have to go through it too . +There was nt one . +TO BE OR NOT TO BE . +How do they know each other ? + We want to be where we were last year . +There should be more of them . + Now I like it , he says . +I know that is the way I play . +He said , Who are you ? + He said , How much ? + I just did it . +They know the law . + Who was the man before him ? + Would we want more ? +Well , it is him . +How can he come back ? +We are back at her house now . +They are on to the next season . + She says , no . +First of all they are a good company . +He did not say much more . + But just do nt know what it was . +He was , so he did . +It does nt do it well . + Good , very good . +We should nt have been down the way we were . +It 's all about them . +And not many get by me . + But then what do you want us to do ? +Make as much money as you can . +So for the most part , it is only the women we see . +It 's a family business . + I have two left . +All that is good . +He did that , too , last night . + How many people do you want to take out on the way ? + What 's a Good Until ? + It 's just not the right place for it . +It 's all the same for them . + But there 's more . +We should only go to war because we have to . +But it was just yesterday . +Do I have the right to know when he does nt ? +You just do nt get it . + After all , they know what they like . + And does so . + I do what 's best for the team , he said . +You just take what you get . + Three days , he said . +What do I know ? +That 's where we come from and that 's where we go back to . + But how would I know ? + Is it too big ? +But you can also make it at home . +But she was all I had . +It 's the business . + Just go on a little way . + I have it now . + Then we found out that much of the work made no money . +They all know it , and they all think about it . + They just did nt know what to do . + Then he said , I know who you are . +Could they come and get it ? +Our people just did nt want to do it . +Some think there will be few . +Go and get it . +They know all too well . + I could go on . +They all know it . +But people say , What about us ? +He did not know how to say no . + He did nt want to go to school . + I do this very well . + We take it a week at a time . + It does nt show it , she said . +So here she was . +And what did she like best about it ? +Did you know that it was . + I like that . +I do nt know any . +It 's right next to you . + That 's the only way I can play . + She 's going to do well . + If not , that 's the way it is . + But where is the music ? +How can you say No ? +And for a few days I was . + That was a first . +I do nt want it to be for this season . + I do nt know what to do with this , he said . +How is that going to work ? +But I do nt want a new one . + How could it not ? +You do you what you can . +When did you come to the United States ? +So has New York City . + But it 's just part of the year . + And not the other way around ? +This is a long time . + There 's just no way to do that now . +I have come back . +We know they do . +But I do nt take them . +We like it that way . +They just could nt get in . + For each of those , you say : That 's it . +We do nt want any . +If not , I would nt be here . +How many times a day ? +I just did nt play well last time . + I had found my life 's work , he said . +And who 's going to do it ? + They do nt want to come out and play . +New York City did not do that . +And which is the best new work ? + I do nt do that , he says . +People just want to play . +But it 's my time . +I do nt know how long it will take . + They are who they are , he says . +What do these women want ? + I can do it every year . +I think about him when I get down . + How did we get to know one another ? +That was until last week . +Would I like to play here ? + I do have those . +Where there 's a will , there 's a way . + They only go out at night . +But not on this day . + We will have to work on that . + He did not work for us . +But that 's all I had time for . +He says it never left . +Where are my children going to go ? + There 's more to do , she said . + Now you think , Who will use it ? +They have to say that . + They want to get back . +I do nt have to make money off this . +I do nt want that any more . +Does he still think about it ? + He can not go out over there . +He was what he had been before . +Do we make too much of all this ? +What Do nt They Know ? +But this week has been a good one . +What would the President say ? +If they had , there might never have been a New York . +Who would want to be in such a play ? + He does nt have to . + I have nt been on one since . + And if it could , should it be ? + We want to go out and play well . +Many people just left . + I think we are back . +You would nt want to do that even if you could . + Which is good . + We go up and we go down , he said . +There is still time to think about it , but not much . +He never says , This is what we should do . +She did , and it did . + Some people make that in a year . +It was nt war . +So to us that 's just not a business that we are in . + Even I know that . +Now it is a way of life . + We are on our way up . + I think we just have to go on and make the best of what 's left . +But it should never come to that . + If they come for me , I will take some of them with me . +There was still life . +I do nt want people to think it was like that . + There was only one way to go . +Do nt get too high . + That 's what I did for years . +I do nt see any way out of this for them . + I had to get it to him . + People say time is money . +Could you do it ? +You do nt think . +Some people get it . + This does not work , he said . +They are part of the game . +But there we were . +How well does this work for us ? +I think it would . + Well , I was nt . +There is only one left , us . +I do nt know what that is . + Two , he said . +And for me this was also new . + I know I said that , he said . +Because you still think that it 's a good company . + But big does not make you good . + But we are not going to do this . + And so on . + He was going , with or without her . + It 's been a good year , he said . +But she is nt here . + I was like : What 's this about now ? + I do nt play for them . + We play our game . +Most women work or want to work . +I think we should have more of them . +And that 's about where we are today . +It is about you . +Many of them do not . +But another case does . +Though not for long , he says . +I can do that and I will do that . +I just do nt know which one . +They did nt want to play the game . +We do nt want it here . + But it will be . +She had to go to work . +There is nt time . +If you do nt make money , you get out . +Do we have a government for the people or a government for the government ? +This is because there never was one . +Next time , next time . +And what does he say to them ? + That 's all we want him to do . +You just do nt get to see them . + It does not have to be . + I know what we can do . +But most of them are nt . +Even if it 's not . +That , though , is about it . +I know what I said . +It 's not the only one , though . +There are times when I want to go . + These can do both . + We all had to be up for this . +I think that 's the way to do it . +You have to have it on . + You said it was as big as the old one , he said . +That 's all they were going to play me for . +It 's going to be the same this week . +It 's what you think about . +He 's not one of us . +I think it would have . +Or does he take a week off ? +If he did nt want it that way , it would nt have been that way . +Where have we come from ? +I did nt know where to put it . +Who do you have on the show ? + How good is that ? +And it was nt . + It would have been over years ago . +That still is the case . + This is all so new to me . + Then you can work with him . + No they do nt . +This was a group ? + Because that 's all I would do . + He 's been at this a long time . + We all a part of it . +But they are nt and they are nt very big ) . +No , he could not . + He said , You all right ? +There was no back . + It 's the best we could do . +It does nt get much more American than that . + I do nt think you can take him out of his game . +But can you see it ? +There never has been and never will be . +Then it 's on me . +They are not people . + It 's so up and down . +If I do , he 's out . + We are old , he said . +Back up a second . + So we set it up . + They are our children , she said . +That was never the case here . + We have children , the children are in school , when do you have time to go ? +We think it 's a good one . + He say , Where you going ? + Good for them , he said . +We had to get them out of there . + People say : It 's too much . + I was not part of it . +But they have nt had that now . +He can have it all . +They may do it this time . +That 's what a family is all about . +The next one is a long way off . + But she 's just like me . + Do we have to do that ? +They did nt even get a first down . +He did not make it in time . + She has this way about her . +The two are not the same . +Two years is a long time . +And that 's all you want . +We will all be back at work next week . +I do nt know if my team is . + We do nt have any , he said . +Who does nt in this business ? + They would say , Where are we on this ? + The next day she called . + Very good , he said . + What was that for ? +I said to him , You have to take a day off . + What you see is what you get . + Would it put me out of business ? + What do you think about that ? +I did nt know who these people were . +And what did he say ? +It 's one another . +That 's what we are going to do . + But we left them in . +No , it was not . +I had nt been there in a while . +I do nt think this is it at all . + I know my country . +I could go on and on and on . + And they do nt like that . + What will you do when this is over ? +For now that is . + If it was going to come up , it would have by now . +It does nt take that long . +You called every play . +But he was right ; he had made it . +What he says is going to go . +What I should do . +And you do it over and over and over . + For days like this . +Not that most women have it all . +What do you do with it ? + It 's part of the business . + Think about it for a second . +You know that , do nt you ? +Both have two children . +But he did more than that . +Take the Police Department . +That should nt have to be . +We left our country . + It 's not that I want to go , but that I have to go . +Now we all do . +Any time at all . + And we say , We do nt have one . + No one was into it , he says . + I want them to think , how could he know so much about us ? +Because they are from New York . +You said you would see what you could do . +But what about the second game of the season ? +He does nt back off . + It is the market . + Now you , he said to me . + How much money do you have ? + People have been good to us here . + We are going to get that out of the way . +When do you know it 's over ? +And I think that is good . +And so they have come to us : How do you see it ? + No , she was nt , I said . + It was a long way down . + No , next week . +It was , like , it 's over ? +It 's been some while ago . +I did nt know what time I was going to get home . +Then I said , Can you be on it now ? + It 's not a game , he said . +She has a life of her own . + If they are not , they are not . + I just had an off night , he said . +Now , they do . +That was -- when was it ? +They said so all week . + New York is here , he said yesterday . +Do nt you ? . +It did not go well . +The state police were called . + When you go in and you have new people , you see what you have . + I want to do more , he said , for more . +But I think there is more at work here . +That 's what this is about . +And in the end he was nt . + It 's all they know . + Several , he said . +Because I know what he can do . +That 's what she and I like about it . +They just like him . + That 's it for the day ? +I would nt be here without them . + There is no going back . +It 's what I want to do . +It used to work like that . +That was all I could do , so that 's all I did . + Now even some of my own people want me out of the way , he said . +THIS is , after all , a national team . +They want to see if they can get money from me . + If you do it right now , it will last a while . +Or many you could say . +And that was it . + And under the new law ? + For what good ? + It 's a public university , he said . +Who could he be ? +That would be my last . +That says it all , does nt it ? + Where do you want to go today ? +He was the one who was going to go to law school . +Each day was more or less the same . + Just like New York now . + No , I do nt want any part of New York . +Think that 's the end ? +But they did nt like that . +You do nt even get it into the country . + It was the only way to go , he said . +Last year she did not . + But women like her , too . +I do nt see any use at night . + But that is only for next year , not this year . + It 's not about the money to me , she said . +But it just is nt . +You do not think . +My Life and Times . + That 's the way I play every night . + You know it when you see it . +The city is still here . + He can go his way and I can go my way . +You want money , money , money . +It 's our game . +Get her to go for you . + To show that I can still come back and play . +But that 's what it did . + I can use all that . +Not only that , but who would want to ? +I do nt know him very well . + What 's that all about ? + As long as we are called to do that , we will do so , he said . +You do nt want to think about it . +There 's more to it than you think . + This is my first time . +Best be still , as in other days . + I could nt get to where I was before , she said . +What 's Under the House ? +She made them that way . + We should nt have come to this . +But he can not go back . +So for me , it 's the right time . +I work in the White House . +Take me to him now . + What I did , he said . +We are up for it . + I can have it , it 's good , I can have it . +Same with a house . +So , time to get up . +No way he can do it next year . +Which did it all . +This is the best one . + They were both a long time ago , he said . +There had to be more to it . +No , he did not have to use it on any of us . + That 's about as New York as you can get . +Just for one more day . +That 's what 's so good about New York . + But no one did . +How could we best use our time there ? +What would I do now ? +That 's the part of the world I know best . + But there you are . +But where does the money go ? + He could do it . +And they did not have much to say . +This year it was war . +It 's where we are in three or four years . + Some people like it , some people do not , she said . + This is their year . + It will be more people . + Where the company was a year ago and where it is today is like night and day . +I would nt go back for her . + In what way ? +Where are you going to get the money ? +I play the same way out there . +Then it 's up to us . + It 's still May . +Where 's the good in that ? + What can I say to those people ? +They were out of money . +Not so in New York City . +Do nt go by what other people say . +I said , Right . +Just play your game . +And part two , so what ? + Would nt do any good . + You do nt know what the city will do . +But it 's on us . +Then you are there . +I was going to play for less . +What had she said ? +In my case , this was not so . + We want him , she said . +I do nt think so , no . +But I want to do this . + I never said no . +The first time in a long while . + I think it 's good for them , she said . +We can , and we will , he said . +Just like his old man . +Three are still on the market . + That 's less than one second . + Or your last one . + They can have it . + It has been here a long , long time . +He said that he could , not that he would . +I have to get that back , too . + And so he did . +But this is our money . +He might come home . +She will be back . +You do nt get over that . +But I have to do it . +He might have all of these . +I think it is for me . + First of all , it is about the team , he said . +That 's where I come in . +For now , life is good . +But there was nt much time to think about it . + But I did nt have any way to get back . +That is , until the next time . + People are not out that much . +I did nt think it was good for the people to see me with him . + I did nt know how this was used . + That 's you , is that right ? +He would do his time , and then what ? + We just do nt know when . +They go way back . +This is nt like that . +A case of being in the right place at the right time . + It is all about the money . +What about street life ? + We do nt want them . + How many can you take ? + I did nt go . +I just do nt want to think about this one . +But , man , where are the women ? +We play Game Show . +Not even for a few days . +It could be , but most of the time it is nt . + But he said I would have to do it by that night . +It was going to be a long day . +It would nt be the same , but it would still be good . + And if the women can do it , we can , too . + If you want good people around you , that 's the way you do it . +What Is it about ? +We want more than the five days . +How long that will take , though , I do nt know . +What could they do ? + I know her , the president said . +But they did come to us . + What made John go to his right first ? +I see him every day . + But it 's just one game , one game out of the year . +What does this have to do with the law ? +Then it was this . +They do nt want it there . + So good of you to come . + It 's time to get to the end game . +Do we have one ? +It has been a long time . + It 's their country , he said . + You , she said . + Like this year . + What does that do for me ? +Where will we get the money ? + But it 's his house , she said . +This is no way to do business . +I do nt know if we could have found them . +Now , it 's up to him . +But he did not have to . +And he has found it . + It 's not here , I said . + Not just with her money , but with her time . + It 's just the way it is . + This is nt about the money . + You know they take the children before , she said . +And he did so . +He said , I want New York . + And so it will . +There should be a law against that . +But we are not like that . + We had no other set to go to , he said . +You get money and that 's it . + I do nt know how this will end up . + He did nt have to go to that , she says . + I do nt even know what 's in this one . + But I do nt know if I should do it . +Now it is our home . +Well , you know what ? + American , are you ? +A place in the city . +But it 's never going to be the same . + So we are going there next . + And now is the right time to do that . +But he did nt know that . +And if we do that , we will get more of what we want . +And what is this ? + Where 's the work ? + I did nt go back . + Get it out of here . +And there is A . + This is nt about me . +She has one life . +I do nt want to have to think about this , too . + That says it all right there . +WHAT is going on ? + That was not her way . + It 's new . + They just said , What do you want ? +I do nt think he does . +Now is such a time . + We had them . + It 's not a government , he said . + The company was our family , she said . +If the work is as good as you think it is , other people , when they see it , may think the same . +Some days , one . +What did they see ? +So what do you want me to do ? + I say What for ? +What did I say ? +I was on my way . + They do nt think so . + You get out of school , and what do you do ? + Now it 's big time . + Women did nt have too much of that . +If not , get me out of here . + But I can not do this any more . + Who 's going to want me ? +One does nt go with the other one . +I was in it . + I do nt know where they are going . + Where are you from ? + This is my time of year , he said . + Mr. New said . +How did you take that ? +So they are just going to have to place it around . +What about what we did nt see ? + He has a little to say . +After all , he was now President of the United States . +And what of women ? + I like to see what 's new . +This is the time you want to do it . +Like , Who are they going to come up with this time ? + I have him right here . + If you know what you want from life , you should go for it and do it . +We do nt get many . + We are still at war . +It was a big one . + It 's our home . +That 's what this is all about , I think . +But I think I do it well . +No , he did not ; only the best part . +It has been the other way around for some time . + He said what he had to say . +That was not the case here . + But you should go , I get it . +And so it is . + And he said , Four years . + It is nt like that at all . +He said I could . +I do nt want to be in their way . +I did nt know what I was going to do here . + That 's what that game did for us . + You never know who is going to be back . + It 's a new time . + He 's the same man . + We go to her house . + To come here is not good . + It 's old , he said . +Get used to us . +Even if he 's not here , he 's part of this team . + Where is that ? +They want their own business . + But I never have . +He should use it . + I want to see him one more time , she said . + The home used to be the center of family life , she said . +Do nt put it on him . + I do nt even know the people . +But how many of them do you see these days ? + We have to work at it , he said . +We had nt set it up that way . + He was the same way on the court . +He did nt say what it was or what it was about . +They have to play the right way . +How will it come out ? +What was he now ? +There is no President . +What if they are both right ? +No , there is nt . +She called out to him . + But they did nt . +You have to work it through . +But what can I do about it ? +And some do not even have those . +Now what we have is war . +And it may work . + What more could he do ? +It 's a man . + But Who 's Going There ? +We are still around . +You were the music man . + That 's not very much is it ? + Three times , I said . + It 's just the way they do it . +But he will have three years left . +It could have been the end of the game , but it 's not . +You do nt like that one ? + How could they work ? + What 's Going On ? +But not last week . +We are here and we are not going home . +I do nt know I would want to . + How Much Time ? +And you know what they said ? + I may get to them some year . + I did nt know it was like this , he says . + It 's going to take a long , long time to get there . +Or for what they are ? + And they can all play . +Or was it the other way around ? + We do what we have to . + We know it 's not . +We only have a day to do it . + They could but they do nt . +But which was the best ? +Who would want me like this ? +This may be my last year . +Now what do I have ? +That 's five years . +All that is not here . +And you can not police New York City like that . +Most of the time they are nt . +Not too many people around . +Over all , what do you think of American business ? +You have no place in the world . + But He 's Not as . + And I do nt get it . +And it may be . + It was time for me to go , he said . +There 's no in between at all . +Just put it in . +Or so he said . + What if you do nt ? + I want to be around for that . + But what can you do ? + What we see is what we get . +If you are going to do it , do it . +They do not do so . +I like New York . + I come , I do what I have to do , and I go home . +But I do nt see it . +Four out of five are women and children . + And , for the most part , it does . +HOW DO THEY WORK ? +There were very few women . + You never get there . +He did nt see it that way at the time . +Where is our national government ? + But I know she did nt . +How he will do it , I do nt know . +He said I was nt his . +There 's a good team in place and it can make some money . + I do nt want to think about that , he said . +By last year , the time was right . +He was the first to think of it . +I do nt know , I do nt know , I do nt know . + Right now , we do nt . + And here we are today with our children . +What do you make of them ? +He does not get out much . +He does nt have to be any good . +Well , like that . +Not so with us . + He 's been around for a while . +At last , it is made . + I did nt think it was going to be me , but you never think it 's going to be you . +But I could see he was around . +Still , he said , It was a good day . +This is New York City . +But when we go . + That 's what it 's all about : they are there , but they are not there . +He was nt about to take him out . +He never had to . +You do nt know what we are going to do from game to game . + People want a show , he said . +Can he make it his own ? +This is out of this world . +How does he know all this ? +In this case there was little to go on . + There is no money for me , he said . +And then , one day , she does . + Is nt There Some State ? +What do you do with the children you work with ? +It 's all the time . +Out of the game . +I did nt see the public . +That is his world . + He said , Who are you ? + They want you to get in and get out . +How is she going to get out of it ? +What should we do now ? +I can do all three . + First I did nt know what to think . + That would be too much . + I did not want to , he said . + No , after you . + I work with people all day long , he said . +But this is a new day . + I did nt see , he said . +Go back in time . +That would be good for them , not for her . +Does it come out in his work ? + What are you all ? +What do you want us to do ? +He did and it did nt . +There 's money there . +Are nt we all on the same team ? +That was a long time ago , no ? + This is just for now , he said . +They say so much about us . + No way , I said . + It 's just night and day . +But there 's much less of it . +You would see me , but I could nt see you . +I called them more than they called me . +That 's the way you have to be . +But there may be some other way to do it . +The other was its president . + He 's not going to back off . +I like to play with my team every day I go out there . + This is for our children . +Do we want them ? + I just would nt want to . + Well , it was my money , he said . +I play just to play . + I want to be around for a while . +WHAT time is it ? +But he was out of them . +Not in many , many years . +But they go on . + For five years , for the most part , I did nt say much . + He did just that . +But we did nt have him . +And that 's all I said . +But he said his place was in the Police Department . +But she did what she did . +It did nt last . +But he never see . +You could nt get it made . + Women over here . +They will take you back . + There 's still some money left . + That 's what she is all about . + I think they are going to be too much , she said . +Three up , three down . + Without it , I do nt think our program would work , he said . +If they did nt know , I had to know . +I made my money . + What 's it do to you ? +You can only take one day at a time . +What about the money ? + I do nt know if they are any good . +I did nt have children just because . +But what of those who back them ? +They do nt know as much as you think they do . + It is nt me , he said . +Officials did nt like it . + You just have to get over that . +And so I was . +They get into the game . +They want you to come out and do it for me one more time . +All time and no time are the same . +We would nt be where we are today without him . + Where is she from ? + Where you 's been ? +She just did nt . +They do nt even see it any more . +Long may it be . +And in a way , it was . +But it 's like , I did but I did nt . + They are my family , she said . + And now it 's time to take it off . +If I was in it I could make you a big man . +What are we like ? + People will come . +But many still do . + You think I want to be here ? +You take it and go with it . + It 's time to go . +We did not have that in New York State . +It 's still that way . + It did not . +Does it have that ? + I should have made that play . + But I will still want to have my own business . + This is the best country in the world . +If the big man says it 's good , I say so , too . +It 's your place . +That 's what this is about right now . + But we also know there is a long way to go . +The next time , he may not be around . +I think that 's the American way . +He 's all right with me . +It will just come . +NO END TO THE END ? +Just make the team , he said , make the team . + He said : No , no . + Many come and go back . + How do you go back on that ? +How best to use these new old years ? +This is the team that I have . +But not much has been said . + That 's what I would like . + This just is nt the right place for it , he said . +We are so used to it . + So it 's we like where we are right now . +He used to do it all the time . + That 's it , said another . + But few people do . + That is all over , he said . +What do you like about your work ? +I do nt have time . +And it 's every day - several big . +But what about a year or two from now ? +Or is it less with more ? +It 's new to me , too . + If they take it , they take it , she said . +Not many at all . +We would like to work with them . +Then you are on your own . + She is there for me . + What do you do all day ? +You could make money . +Like , what is left ? +How would we get there ? + I was at the right place at the right time . + I think I did good today . +He may not be the same all season . + How long are we going to play like this ? + When you know what you want , you are going to get it . +What would he say to me ? +But that is not how people here think . +And he had to use his own money to do it . +And this is how it has to be . + It 's been me , me , me . + They have as much right to be here as we do . +Well , it 's still here . +It has to be very white . +And how to think . +Now I do nt want to go home . + We were one of them . +He says , How many do you have ? +A family is no more . +Then it does nt work very well . + How can it be so little ? +How did I end up like this ? +She was not about to say no . + I did my best , they do their best . + I said : That 's it . + I will never have more than two children , she said . +Not one 's life . +Take a show like this . +But you have to do what you have to do . +For many of them , it was not the first time . + You know what I like most about it ? + I think this is going to make money , he said . + And it 's just not like that . +We did nt even know what it was . +And what do you have ? + And you know what ? +But they had been used . +Get him back here . + What , you did nt like it ? +And if so , when ? +We would nt know . +But what has come over them ? +You have to want to do it . +Our country is at war . +And how much was that ? +They had five days off . + But it could not . +Because it is them who did this , not me . +What more can we do ? +It is time to go . +For a while times were good . +They play with us . +We do nt want you here . + I do nt think it did ; it just could nt . +I think , Is this right ? +He will never be home . +Then , go on from there . + I have a family to go home to , he said . +Now , we can get down to business . +First place is still first place . +But not New York . + What are we left with ? +We were like a family . + But if I had to , I can . +Did he get there ? + Who do you think made out ? +It 's us against the world . +And we are going to go after it . + But I think I like women . + I just would like to get home . + We just take it day by day . + You are one , too . + All he did was work and go to school . + Where does he think they are going to go ? +What would you say to those people ? + But we do nt see it the same way . +Where have I been ? + Around here , he was good . + But he called me and said he could nt make it . +They all do it well . +Some people , that is . + I want to play every day . +And never in a game . +Every team has them . + I like it here , he said . +Many may say , Who ? + It 's not about you . + We have to do this . +Our home is here . + The game 's over . +A big , big game . +I think they have that right . +And where are they now ? +And he would nt have it any other way . +But there it is before you . +But you do nt , I do nt . +Do they even know how much ? + We do our best and go on . +One should know that in the West . + But I could nt do it . + Now You See It , Now . + I do nt think this family can take any more . + You know any of them ? +But he is not . +They had been here before . + And then he said , We are all part of the same family . + This was the best out there . +Well , they are still here . +They have to do it . +But do you think they do ? + And if it was too long ? +That 's our business , every day . +How could they not be ? +I want to go back to work ; that 's all I want to do . + You have to take it day by day . +The play had no time for all this . +We do nt want to put money into a new well . + Three times a week , he says . + I know what you are going to do with this . +You Can Come Back Now . + I did nt know where I was . + It 's part of what I do , he says . +If he does nt , who will ? + Some people do nt think of us at all . + It was if he had never left . +My children are going to be her children . +And what does one think about at a time like that ? + It could be a day . + But how did he get it ? + It 's like a second home , he said . + In any year , some are up and some are down . +This war is a long , long war . +We are not going to get into that . +I have it from The New York Times . +They did not have to . +Is there more money we could use ? +There are nt many left . +That was all right . +That 's what this group is all about . + I know what he 's made of . +But that is then and this is now . + Can I come home ? + My life just does nt work that way . +Federal officials said no . + I play the same , and they play the same , she said . +What more did she want ? +It is still their home . +I do nt know what to do with it . + How did he know that ? +I did nt know what I would do without her . +Who was in the house ? + Good night , he said . +You never know where you are or where you are going . + Where 's the good ? +But it was good to be in there at the end . +How will it all play out ? +Which team will do it ? +If I said day , she said night . + I did it , he said . +And by a President , no less , of the United States . +It 's about what 's best for the American people . +Say what it is . +It 's here now . +I did the very best I could . + Is it time to say it 's as good as it 's going to get ? +After all , so many had before . +But I do nt even know you . +What is best for all of us ? +But how long will be play ? + She 's still a part of it . + That is not how this is going to go . + We are just about where we want to be now , he said . +This is a good one for me . + That 's just it , he said . +So what could I say ? +And I think they know that . +I just could nt get it . + He was a good President , and he did nt do much . + I know some people who do , he said . + And there never has been . + I would nt have had much of a life , he said . +But if they do nt make it this time , it may well be their last . + Then what do we do ? + Is she one of us ? + You might go off for a second . +They are against the American way . +It was a play that I have to make . + It 's good for me , he said . + And he said , You should have found another way to get here . + I could nt even go there . +Because the public just does nt get it . +They should not be . + Today , there are two . + You know , they do nt want me in there , he said . +How much or for how long , I do nt know . + It 's not just the people you do nt know , he said . +But it is a long time until then . +Not over the play . +And I do nt want this to be one of them . + I do not know that . +It was not for the money . +I think I might just go on . + You can say it and say it and say it , she said . +But there 's a way you should do it . +Do nt say any more . +And when it 's all over , it 's the place to end up . + It was him , she said . +I get way too into it . +People want to see that . + People come by all the time , he said . + Well , A . +There are nt all that many next times . +But is this the right man for the right team at the right time ? +You just do what you have to do . + Where have you been all this time ? + What will we do ? + I never had a life with them . + I was one of them . + I do nt think I can do it . + I do nt want to think that . + I said , What 's that ? +Where will this end up ? + I do nt want to put the company out of business . +I do nt like it and I do nt do well . +How would that work ? +That 's just what he did . + He has been this way before , he said . +And I want it now . + But where was he ? +It was a family . +I do nt think it 's good . +He is also good . + Think of me , he says . + It 's me against you , he would say . +I have nt been . +But it will be home . +But if you are not there , you are out . +But there is so much more to do , they say . + I just do nt know , he said . +Second , this is my life . +It was time to go . +But you know , get a life . + I know what I can do , she said . + You are not with it if you have nt been there . +But I have come back . + It 's there , he said . +This place has it . + But I just left . +This time , it was not found at all . +I do nt know how I made it . +A few did not come back . +What did she get ? +We have to do more of that . +She was like , what ? +But I do nt want to see it now ; I want to see it in five years . +You have to get used to it . +It 's the then what ? +This is nt police work , this is . +As for five years from now ? +Where 's he going to go ? +It was only me . +And today it may be even less so . +Do this or you are out . + What do you want us to do ? +We could have been there all night . + We are going for less , she said . +It should , and it was . +Now it 's on us . +We are not going to play that game . +Well , not too good . +That was big for me , as well . +Some of them do . +They are all over the world . +And that 's just as well , too . +In the end they did not even do what they said they would do . + And it 's the right time to do it . +But it should not come to that . +It has nt been that way for a long time . +You can have her . +What do they say ? + How did you know about us ? +And they know it . + So what did you think of him ? +But that 's all part of it . +The same people see the same people . +People do not have any more time or more money . +I do nt think so ; I do nt think so . + Would nt you want to be here ? + But I have never been to that place in my life . +Who is the public ? +But they do not , he said . +That 's part of your world . +I did nt know about her and she did nt know about me . + Or can you ? +But now she 's come back . +Does he know as much as me ? +We get into that on the show . +They want him out . +They did nt know how to get the most out of them . + They have to know what day it is . + There was just another world out there . +What in the world do I do now ? +You have day and night . +Then , the game . +Is it that good ? +He does nt have it there . +You are going to make it . +They do nt have that now . +Well , white used to be white . +Her children do nt work . + They are more on the go , she said . + But were they ? +It might just take a while . +Are any still left in New York ? + And so on and on . +I do nt think that would be the case . + But this will take time . + I know what most of them like to do . +I do nt -- you know what ? +I still see it when I go back home . + And they have that . +I used to be against them . +The group then will go out of business . + It could be , I do nt know , he said . + How Will We Make Money ? +They go their own way . +Will I see it ? +There is more at play here than money , though . + It 's up and down . + Some will say , It was nt me . +He 's had time off . +If he can last that long . +What if we make it up ? + We are in a new world today , he said . +The next May , we did so . +He does not have that right . +You do nt want to see me . + I know it 's going to come , he said . + One , it 's a big play . + But I have to say I like this company . +You do nt think about it . +I only do what I want to do . +And , most of all , that they are . +I want to do it this way . + No , we do nt do that . + It 's life , he said . +I used to , too . +There is that and more . + How did you know I did ? +We are so out of here . +Life 's like that . +Now , there is a way . +Because where are you going ? + That 's what they should have said . +But he did nt know that at the time . +We have no place to go . +New year , same as last year . + It 's about our children . +Should nt we be out there ? + It 's just out there . + I did nt come here to not play , he said . +I think we all know that . +Where will they go next ? +Are you going to set this off ? +It 's not as good . + You have to work for it . +They do nt do much of that . + It 's going to take some time . +And that did it . +He 's the one . +But what does man want ? +Then it 's back to work . + I think one can make it , though . + It 's not their business . + How long does it take ? + It is up to all of us to do that . + Who 's me ? +For a long time , I did nt know what I was . + I was , and I was nt . + I just want to be part of this team . +What 's going on in there ? +A : No , there was not . + But this is not the end of the world . +But one day did nt come , not for some time . +Still , there is little they can do about it . +But right now , I still just want to play the game . +The next day I found out . +Is it the director ? +Such a time is now . +The more you get , the more you want . +And they never did under him . + I should not be here . + But right now , no . + What can you do all day ? +That 's under way . +But they would nt do it . +Are nt we all . + They are so good . + Now the case is over . + I think it will be all right , he said . + There 's going to come an end to the world . +It is four , not three . +They are show business . + What do you think of the house ? +Children do nt do that . +People do like me , do nt they ? +From then on , it was all him . +How many we just do nt know . + That 's not how we do business . +We will be the second . +How many people work for you , and where are they from ? +So how do they do it ? + We have no say in what we do . +Then I go back and work on it . +If not she , who ? + Then it will even up . + I did nt know there was that much money in the world . +They do nt have to have it . + I would nt want to have it any other way . + Here we are in a war . +There 's no other way to put it . +I think we know that . +It can go on and on . +That 's how it is . + And so we set out to do that and we did that . +She is just so good . +What more could he say ? +Now it does nt . + I could nt get up , she said . + They did nt know me the first year , he said . + He says , I want this by this time . +I was at school with four of them . +So what did we know ? + They know me , and I know them . +And not just from New York . +But will it work this time ? +What did they do with it ? + Only three made it in . +How could it not be ? + But now is not the time . +The work will never be over for us . +Just as good today . +And you know when you do nt have it . +Way in the back ? +It 's all business here . + More people want these , he said . +The first three , made by me , did not work . +A game is a game . +I do nt think that would go over too well , I said . + This has been my life for so long . +I want to go back to what I was . +There 's a long way to go . +Then you think , Well , no . + She does it for the children . + Do you know who . + Now what do we say ? +I have no children . + It just did nt work out , he said . +It 's over , and it has been for a long time . + I want my own house , she said . +Not during the first year . +We back it up with our work . +I do nt know how it 's going to work . +Who in the world is that ? + From then on it did nt work . + Well , no , it does nt . +Or not even that . + They are what we should be . +You know these people . + He 's not . + I like it , he said . +What does one say ? +He very well could have been . +But there was no way around it . +And this was his last first day of school in New York City . +He could and did . + Now they are being put back . + So much , he said . +No , I said . +Are they still there ? + I see it all day long , she said . +It should be used . + That 's how people know me , she said . + They know who did it . + I do nt know that , he said . +She is also a director of The New York Times Company . + It was and he did . +He did nt have to say that . +But there was nt any . + When it 's going good , it 's going good . +He did not make it . + But you just play . + Is this your first ? +What about the first game ? +All right , they are more like you . + You just do nt get it , do you ? +This is not how school officials see it . +But my year is up and it 's been up . +I said : That 's not me . + I have no time for that . + I do nt know what good we are going to get out of it . +What if he did nt make it in time ? + I work day and night . + He just made a good play . + In other years , we would have been . + It 's not about the money . +But that was way back then . + But I had to go with it . + You can play every , every day , he said . + This is not a big team . + I know this business . + What does this game say about us ? + This was not my life . + That 's just not it . +It may go to court . + If it does , so be it . +Because it 's not going to work . + They are new at this game . +I do nt know where he was from . +The Government , too , had a say . + So this is BIG . + There was some , he said . + It 's about the music . +I have never been . +See what 's going on . + What , you , too ? +Are You Here , Too ? +This has been said . + But it 's home . +That was then and this is now . +That 's what it 's going to come down to . + I would nt know . + He was just a good man . +He did nt say he had . + Not such a good house . +You are more than that . + I want to work a few more years . +But you do nt know what you are going to get for it now . + That 's all it is . +Here 's what we should do . +No , not that I know of . + I just never think of it . +But he did not do so . + This is what we know . + What do I like more ? +What should I do about it ? + I do nt know how they did nt go in . +Who would he be ? +It 's not the right time for us . +Have a good one . + If it was nt for you , I would nt be here today . +To me , then , it 's over . + Here , what do you do ? +At other times he might think so . + But it 's part of the game . +But it was out there . + But then , you never know . +Not because of me . +Not just this season . +Who are all these people ? + It 's how they did it . + It was work today . +They had five all of last season . + We did nt know that at all . +If only , if only . +Me : What is it today ? + I like my country . +It just does nt work very well . +And I think they both think there is a way to make it work . +Now I did nt make that up ; that 's what they said . +This is it for him . + But we did nt have any . +Did he get them ? +It did last night . + I do not think so . + And he said , Come right over . + Because less is more . +This is what we are up against . +There is a time and a place . +We do nt know what 's going on out there . +But he 's still here . + He never made it . +We can make it work . +She had to do it that way , she said . +Just the way he is now . +I had to get them all off of him . +Say it and own it . + Do nt do what I did . +Because they should come . +People do nt know one another . + And she was , like , Want me to make you one ? +For the many , not the few . + We are in May . + I know , I know , he said . +But it 's still one in five . +Those may still come . +We are just another family . + He should be home with us . +It 's been years . +But is his time now ? +So what good is it ? +And that 's the way you like it . +A man going to work . + Is it a law or is nt it ? +And which did he most want to be like ? +All that is still to come . +What about music director ? +You should go about your business . +And this is how we all think now . +What did that say about me ? +They do not like him . + I do not think that . + They are Big . + He was one of us . + He does nt get it . +There was very little on the man . + Well , I know . +John can come home now . + We are all in it because we like it , she said . + We were his family . + So no one does it . +Because it does nt work . + It 's one on one . +We can get more . +I left it there . + One way is when I say it is . +I do nt see it like that . +What does this have to do with music ? +Those that did nt know do now . + How many do I have ? +It 's not another world . + For both of us . +You made it through another year . + He 's a man for the people . + Now we are going to have to . + It could work , he said . +But what do we do ? +I did nt see him that much . +Or he could come back this season . +Now that 's not so . +We work as a team . +That 's the one . + I like it more because she 's from my country , she said . + They still have nt made any . +There are women and children up there . + What good does it do you ? + Out Here Like This . +But what would I say ? +Think what you want . +He just said it . +He just did not have that . + I said : I know what they are going to say . + In the end , they are just people . + But how will we make money if they go ? + But it 's here and it 's about time . +How do you get from one to another ? + It 's too big for any one use . + We were going to make it , he said . + I have to do this , he said . + It does nt want to go out . + But do I know which way they would go ? + I have to do what I have to do . +He just has to play . + With the way the war is going , how could you not ? +THIS is the big time now . +The family had little money . +The time is up . +We only found her the next day . + We do nt have that here . +Where can he go from there ? + I know what I want to say , but it does nt come out right . +That 's not the way to do it . + Did it go on too long for you ? +You can not go around him . +I have my business there . +Know this , he said . +It 's good there are two of you there . + But I would nt , she said . +Last year he did just that . +Such a big world . + This should be against the law . +I want what they have . + It 's a long time . +He is nt very good at it at first . +But money is only part of it , they say . + Now , not so much . +Where will it be ? +There may have been more going on than that . + I take it one year at a time . +But that 's about all I know . +Just one another 's company . +Another to see it . +If they do nt get you the first time , they get you the second . +The play , Children of . +And if it does nt work , it does nt work . + He 's part of your team . +The next game is today . +He might still be out there . +I see him , I see him , I see him . + And he did it . +But we like that business . + But it 's the right way to go , he said . + He was right -- we can not do business this way . +I do nt want to think about last year . +What did he think of the Government 's case ? +Now you do nt have to , so you can . +But do we know who he is ? +THIS is what you would do . + If I go now . +Up one day , down another . + I said , Well , I did nt see all that . +This game was over . +And so the game 's over with ; we are through with that . +We have a Government that does nt work . +What can you do with that ? + I did what I did , he said . + Too old , she said . +We know the law , too . +Then it will be back to business . + I have them all . +But they are only there to make music . + We see it more and more . +That 's just what he says over and over . + But I still get by . +We like to play them . + That was as it should be . +Then he did the same on the left . +I have nt had too many . +What do we do then ? +And who would nt want that ? +But these two make a good team . +What you get from me now , you can get from your other women . +That 's what the play is about . + But in a few days you get over it . +They are between the two . + Does nt do you much good here . + I said no . +But we would like one more . +But there are so many more of them . +You know what you have to do for the team . +Now they are here . +I just go out and play . +It did not work so well . + I do nt get it , he said . + That 's the way we see it , he said . +But who is it for ? + I think he is , too . +There 's so much going on right now . +And they know what to do with it . +And do you know what it was about ? + We have the House . + I say if , if , if , all the time , he says . + It 's been the last three years . + It 's a big state , he said . +There 's only one way to go in American life . +It 's what I do today . +Still , you say : But so what ? +Now , there will be two . +I would nt want to go back , but I would go . +It 's good to get this out of the way . +No , I was . + I will go for the most money , he said . +Not in the world . +People will see it . +What will they think of me ? + The second was for his country . +But I do nt want to be like him . + Did I do it ? +They want to make it . +I do nt know what he did . +Where are we today ? +One is made for the other . + Where were these people before ? +We had been here before . +I go through this every week . +There was still some work to do . +But no one was . +Do you know when it was put up ? +And when might that be ? + This is the way they think about us . + He 's the only one who does nt . +And we did nt play our best . +That 's how good she is . +You and no other . +We just know that that 's a part of it . +It 's not just children . + This is what I do best . + They make too much money , he said . + Only in New York , she says . +So what can I do ? +Same time , same place . +It will do well . +I know , because that 's how it was for me . +It was nt to be , though . +She 's not here . + Or the other way . +But there 's more to it . +Who are the two ? + But this time I do . + I said this is not me ; this is not me . + How long can we go on that way ? +Are you like this all the time ? +But this is not about that family . + We could use it . + It 's just that I do nt want any more . +It 's all the same to me . +Today is not your day . +I think I can do well there . +It might not be the first time . + But that 's not the end of it . + I did nt do it until there was just no other way . + If so , we want to play too . + Who would want that in their home ? + That 's what I like about him . + They did all three , he said . +But what 's it all about ? + I could nt take it , she said . +Go on to the next one . +You just have to do what you think is best at the time . +We used to have the best . +She 's going to back to school . +Or did nt say . + We only have one . +And that 's a long time . +And he 's right about that . +We know you are big on that . +Where 's the Money Going ? + They all want to see it . +And that was my life . +And they are there now . +And at what time ? + I want to be your president , he said . +But not this group . + I just know where it is . + At first I said no , she said . + It 's only one game . + So what do you want to see ? +But now , he said , there could be more . +The war is over now . + That 's very big money . +It is not play . +There was money found . + There was no way I could do another . + I have to get out . +Well , I do nt know that there will be . + That did it . + So she does . +The second game of the season . +I did nt do it five times . +Who 's going to do that for her ? +People will like that . +It 's for the good of the country . + He can have that . +And I see where you are going now . + I do nt know how long , he said . + That 's the only way you can do any of them well . + The people will just say no . +Here 's what the President should have said to them , but did nt . + I said , Well . +That is all it is . +Who would do this ? +He does nt want it . + I said , That 's it ? +She was still there this week . +It will also be the last . +There 's one place . +It 's just good . +The days go on without you . + That was nt his team over there , this is his team . +I can be like them . + But I did nt know what it was . + I says , No , to New York . + I said : I did . +But it did nt come out like that . +I was right there , and I had it . +If you do it right . +That 's how high I know . +I did them all . +So that 's the way it was . +He said he had just found them there . +So what does one do ? +People know me now . +But it still had a family life . +It was good , very good . + Some people have . +She never called back . +It 's about how much . +The police know it . +You are going to get an A for that . +No one was down . +Most people said , That 's good , but I would nt do it . + Will you be on my show ? + It could just be me , he says . + He said he was going home to think . +That 's just the way it is , and it 's over with and we have to go on . +But it did nt end with them . + I was nt very good , he said . +Yesterday 's over with . +THEY do nt like each other . +But not at all . + We are going to get there , one way or the other , she said . + It 's too much for too little . +You are now a new you . +This could be you . + You may as well get used to it . + It was a good play by him . +Today that is not the case . + Put it in it . +Every year is a new year . +That 's the part they like about him . + It 's just all over the place . + And we do nt know where we are going to put them , she said . + That 's what he does best . +They come in , like , What 's up ? + Do they have the right to do that ? + That was his world . + It 's not , You should do this , you should do that . +We are in a war . +If so , this is the second time . +They know we have a good team . +Here , you know what you have to do and you do it . + I do nt work that way . + So I want to have a good game , but not just for me . + Now my time has come . +He did not know which day or show . +She was nt going to go . +And if not him , who ? +There is no set way to do that . +But that day is a long way off . + We are the first , he said . +I would nt not come . + Where are we going ? +We have to do the work . +I come to play as a team . + This is how we get work . +You could see it . +What do you know about them ? +And it can also work for New York City . + It is a business . + You never know what you do nt know . +You think that 's what 's going on ? + How big is it ? +And what do they do with the money ? + Because I think that 's not our game , he said . +Where Will the Money Go ? +Should they or should nt they ? +How do you that ? +You are only going to see what they want you to see . + They just do nt have time . +This too will work out . +The work is well under way . +Still is , he said yesterday . +The old way does nt work . +There was not much to say , and she did nt . +I did nt know what to say to them . +But they have nt been part of what 's going on for a few years . +You have to know when to get out . +Life is good , is nt it ? + But this is all I know . + Now it 's four or five . +He said , I do nt want to play that way . +And on this night , if on no other , that 's the way it should be . + All you do is think , think , think . +I do nt know how she 's going to do it . + Last year , I said to him , You still want to do this ? + You know it 's him , he says . + I like a man 's life , he said . + You do nt want that , he said . + But that 's not the way we do business around here . + We are all over , he said of his own company . +I play for the man . +They will come down . + It should be a place people want to go to . + I would nt be here without them . +Three years or two ? + It was nt what we were here for . + Well , I will be going now . + They should nt have to go through this today . +That is what we did . + It was part of it then , he said . +As such it is both in and out right now . +We know they are out to get us . + We just do nt know that . + Too much work , she said . +It 's never been like that . +He is not and never was . +Not for another three years . +I think that it would . +They now have both . + It 's law , he said . +He does not think so . +I see a few . +This was his last one . +It 's like you are in another place . +Which team is that ? +And he did it well . +My time will come . +I did nt know what to think then . + That 's right , the man said . +I just do nt like them . +Which was not to be . + And they should be . +The President on the left did not say what the President on the right said he said . + Now I can only go up . + When were you there last ? +I do nt know what that was . +It has been here before . + But I do nt have money . + I do nt know if that 's all that good . + Women are like that . +Then we do more . +The one before us ? +We did the same . +And he 's not like that . +The White House it 's not . + And then he does it on the other end , too . +They may want the next one . +They never have and they never will . + I just did nt play . + Do you know what this is ? +But not back there . +Life will go on without him after all . +I want us to be the way we used to be . + That 's good , he said . +Some people never do . + But at the same time , we like where we are . +This is what I do . +He said they had nt . +Now we will have to see if he can . + Even if he did it , she said . +But how to do that ? +Go to the office . +What does this say about women now ? +And more than this . +It was still night . + How do I get my business ? + I did nt think she would do it . +The work is here . +But I know it 's not over . +But I could nt say that . +So if he does nt have that I would say no . + That 's my home over there . +Some people may do that . +But he was not there . + People do nt know each other . +But there are no women . + This one might take three years . +I can , and I will . + You can do that there . + We want to be here for a long time . +Can he make any money this way ? + I would think so , he said . +Good times were had . +This much he did know . + He was in show business . + They could have been right . +Still they can be very good . +Who Know Him Best . +And how long can it last ? + We do nt even think about it any more . +They do nt have to be . +We know he has them . + Know where they had put it ? +We should have more people who do it , but we do nt . +I want to be out there . +I have been up and I have been down . +It 's just in me to do that . +This is our home . +He will do it . +Two years , a long time without you . +But that was nt the case at all . +There is not much time left . +If only I had some money . +And is nt that what we do best ? +Now , I do nt see the people . +How much more should I play ? +Do nt make me do it . + There 's no one best way to be . +I think we are very much a part of the city . +And so there is . +There is no other way around it . + How many times a day ? +No other country does this . +This is how it used to be in this country . + He 's in the family . +We are not there . + We want the best for each other . + I made all these when she left me , two years ago . +We should have a good season . + Is this the one ? +THEN there are those who have too much to work with . + These and more , many more . +That is the law . +It was a new way of life . +I know it 's not . +I would like to go like he did . + We are here , she said . + It 's not over until it 's over , she said . + How much more ? +It was , after all , a school night . +He 's the old school . +He could play the game . + This is not just about money . + This is the only case we have . + That 's the way John is . + Do nt say , What can I do ? +But she still has her house . + It was a little place then . +The time has come to put an end to war . +I could do a little of each . +They did not say . +If it is nt , what is ? + That 's what this is like . + We do nt know how he is , where he is . +I think it does not at all . +We are not at war with these people . + It 's good to own a house . + I think we should . + Not for me , no , she said . +That 's what we are up to here . + Think about what that says . + It 's not right . +It may be time for you to go . + But I want it to be here , he said . +That 's good for us . +There might be some , you never know . +Very much , she said . + And I did nt know what to do . + I like John . +But now I know I can do this . + I did my best . + It 's him , she said . +It was good to have it . + We were never going to make any money . +I know they think that . + I want him to come home . + I know a little about their music . +Now , the children have a place to come after school . + We will be back , he said . +I do nt think there would be that many more people that would come . +I do nt know how long it 's going to take . +I never had to do this before . +It was not that way five years ago . + How did we do it ? + What did you know and when ? +What 's next for him ? +We did nt take his house , by the way . + We think they should get out . +He made that one , too . + That it did . +I said , Have him come in . + Did you do that ? + This is our life , she said . +It 's all for them . + And think what I have . +He is now back at work . +These people want to get to work . + So we are back to the old days , he said . +Can you play it this way ? + We do nt know who these people are . +And you can not do that when you are President of the United States . +CAN this be the place ? +How long that will last , we do nt know . +But when , he could not say . +It was about money . +HOW OLD ARE YOU ? +What will this do ? +You are with me . +This year it 's . +They know that they are not people . + What will they want from me ? + This is like home , she said . + But I would not do it . + Who had her last ? +The People 's Game . +I want to show people that it 's not just about the money . +THERE WILL BE NO WAR . +We , back in our country . +He was the best . +He did that , and he did it his way . + All I could think of is , That 's not what you get . +It 's on the house . +No one is in there . +This war is not over . +And then we are off . +Not one , not two , but women , women , women . +This Court has said so . +I do nt think she can . +I can still play the game . +But there is no one who can be there all the time . + I did not know what . +But right now we have it . +I would like to . +That 's how I want to be . + Yesterday was my last day . + That is what you have to do to be good . +And how much might that be ? + He is among the best . +And that 's all they do . + I think that 's what some of them did today . +I think I did very well this year . + There 's no way I can get out of here . +Put it out now . +We are here all the time . + If not , then they will not come . +This is new for them . +Do you want me to say more ? +I work with them . +Still , he made my day . + I said : Who are you ? +I still have them . + And I think that 's it . +So we did that . + Well , he did nt go . + He should be here . +It 's more like the country . +What team does she play on ? + I could only go up . +Is that it , then ? + What can one say ? + We can take what we want . + This is going to be a very good year for me , he said . +Well , Is She Or Is nt She ? + They said , Are you still there ? +That should have been that . +I see it all the time . +What he did nt have was money . + That 's what I said . + We still may have it , he said . +He did all three . +He has since had three . + Where will you put it ? + Get on with your life . +Where are we going to put all these people ? +He was nt like that at all . +That 's the way it is with us . + I just want to know what he 's up to . +All is well , right ? + You want no one down there ? +It was like being in the next world . +What did they think about ? + And what are we ? + If I have to , I have to , he said . + That 's not how you want the game to go . +Now it is in New York . +One or the other of us has to go . +We are more than that . + We did nt know where she was . +If you go under , you go under . +There was no one . +Where 's my life going to go from here ? +You just do nt know until you get there . + So , I did what I had all of my life . + No , he said . + We have a good team , and that 's what it is -- a team . +For those around them . +You get two for one that night . + We would like to see some of that money that you take out of New York come back to New York . +It 's been all over the world with me . + Who would want it ? + I think that the war is still on , he said . + So one more time , he said . + She said , What ? + He only had one . +I do nt think that this is the case . + It 's just like home . + Here , he is no one . + I have to think , where is here ? + How did you know it was me ? +He has had his week off now . + It 's over . +Some are for show . +And we still do . +I had two children of my own now . +If we have too many of one its not good . +Just like last season . +What do we have left ? +Not good for business . + But he did not say by how much . +Because now I know I can do it . +You can see that . +But this time it did nt take as long for them to get back in the game . + How can you know this ? +Put off by them ? + But we had the money . + At long last I know what to do . + What are you going to have to do ? +It may not be the last time . +I think , The next one 's going in . +Man , that 's good . + We do nt have any use for that . +A good time to be in New York . +I have to be . + We want to show the world what we can do , he said . + Just do what you think is right . + We do not know where we going . + I think A . +But where does it get us ? + This is the best country , he said . +And they could nt get up . + But we like that . +Now , it 's up to each of them to play their part . + I get it about other people , but not about me , she says . + He does it , does nt he ? +This year , four made it in . +We are one company , not two companies . +I did nt know how . +Think a little of your little one . +If I had my way ? + There 's that , too . +It was , but only because of his work . +I think he did it to show us all . +Do I take this street or that street ? +Now I have my life back . +So we would nt do that . +They say the women are the same . +Best of all , they work . +It 's come to an end . + I just want to be in the business . +I have it still . + It may be another way to get there . +That is what she did . +They should come over to her . + There are many , but we do nt know how many . +But I like her . +So what has he come up with for his first season ? + He said : That 's all right . +But it does not work . +That 's where I should be . +How does one get there ? + The only way we can go is up . +HOW DO WE GET THERE ? +When they are not there , it does not . +Is this what we are like ? +Think about this too . + She was right there . + We see it as a way to get money . +Now that he has , what 's next ? +When I come home , it 's all on my back . +And those who do nt ? +After this , that 's it . + This is not the place . +Is it my time ? +Our world will never be the same without you . +And then we made the most of where we were to get where we are . + We did nt have a place to play ; we had to play on the street . +It could take only a day . + It did nt work then . + It would nt be right , that 's all . +Most people have not . +It 's not part of our season . + They do nt know what to do with you , she says . + But how do you know that ? + I was there , he said . +For this game , that 's all there is to it . + But I have to do what 's best for my family . +They are not the same . + Are you all right now ? + They said : She 's a she . +This is nt the year to do it . + To see if I can . +But it was not , and there is . +Some people do nt like him . +It said to them : This is what you do . +You should have said . + It 's because you can show more in it . +And if not that one . +I would not have said this a year ago . +That 's how big he is . + I want to be around it all the time . + I was used to that place , she said . +That 's the way I play . + What did they come here for in the first place ? +But , as I know in this game , I know we have one more left in us . +It 's not the same without you . +I know what I did . +We are in a long war . + A man said , Are you still here ? + He said , No , it 's you . + I said : And you ? +But I know , I know . +We know what each other is going to say before we say it . +But in a good way . +I did it before . +If you like what you see , go for it . +And then two more . + There is not just one right way . +I do nt know where we are going to get the money . + The war is over . +And what money it is . + Without us , there 's no one left . +They come from around the United States and the world . + She 's had it all her life . +More than four times over . +We did nt know what we were in for then . + I know how good they are . +For us , he was the best . +So what is it with us ? +So , what 's going on ? + So that 's that . +And then they work out . + No way , he says . +We do nt want it to end . + It 's one week . +And he does that for me . +They do nt see it that way . +That is the best that can be said . + You come see her now . + Where are we right now ? +Will he be on it ? +He never had it in him to be . +He 's had his day . +But I did nt get it all the way up . +I know what he can do . +We are what we are . + Who Should Police the Police ? +We called the police . + Even among our own . +That 's where we are at right now . +Would not or could not . + This might be it . + There 's so much work , he said , I do nt know what to do . + We will not back down from that . +I have nt been there in three years . +But it 's all we have . +I do nt know what it 's about . +He had little work today . + And I do nt know . +I do nt think she said . + I have nt been up there in a while . + But there 's very little work . + I do nt think we want to get into that , he said . + What do the people want ? +They just would nt . + And they were . + Or , I did nt see it . +Not that day , or the next , or the next . + We do nt have the money , he said . +There was no there there . + My game is good . +Not after the game . +Do you know what he did ? + But what 's he going to do ? +Well , now he is in New York . +He might as well go home . +It had been a good day . +It 's what I did nt do . +And so I never did . +Now they know what it 's all about . +It 's just the law . + We think they have many more , he said . +What do you have to say about that ? + Women , he says . + I called him up . +We have come to know as we know it all too well . +What do you think you have ? +Is it one of the year 's best ? +We could nt get much going . +Should we even be there ? +But they were also back in first place . +And if he did nt . + That 's where we want to be . + It 's good business , he said . +How does that play out ? +I did nt say I would nt do it . +And now we have it , or most of it . +We had just been back home four days . +We do nt want it to be us . +Is that -- is that ? + I think we can do it well . + I did nt know who did it , he said . + Most do , some do nt , he said . +Two years is the right way to go . +We did about all we could . +But that did nt last long . + And this is the right way . + He could nt . +It 's like a house . +I do nt know what we could do . + People know who we are . +Well , I see . +Go out and play like one . +That is too much . +They are both the same . +Still , it is a good life , he says . + People are just there to do their work . +It was , Have a good game , how 's the family ? +And then what do they do with them ? +He just said I like this man . +I do nt want to do what you want . + I do nt see that . +I do nt think we could have said that before . +It was just one game . +But it did not end there . +But that day is just not going to come . + I said , Where are you going ? +I was in here every day . +You are little , you are . +It is never as good any other time of year . + It 's all you can do . + But we put in even more . +Will they get it ? +Where does he get them ? + It can take years to make . +Like it or not , that 's just the way it 's going . +Come on , get out of here . + I just want to know what they are going to do , she said . +The people are back . +Her children did not . +I just do nt know who or what . + You have people that you know and like over there . + This one 's too little . +But he should not be . +You made us who we are . +It 's not the way life is . + That 's what we are all about . +It is still there . + They are not going to do that . + What are they up to here ? +I think he 's been after her for years . + But how do you get it ? +Well , until yesterday . + It 's been a long time now . + This is going to be big . +He is old in his way . +And well they might be . + I could see I could do it on my own , he said . +So what is left ? +But they did not want to . +This could be very good for us . +It was the President . +No , not at all , he said . + That may be . + And I do nt even know who they are . +But that , as they say , was then . + It 's very political . +It is nt all he does . +They do nt have to know it . + Because it 's down there . + But we are still a have . +You have to be a have . + I like it that way , he said . + People have to know about this place . +Do you like her ? +Now it was over . +But that was a year ago . +That was just to set up the game . +They had five children . +For or against him . + There 's not much time left , he said . +Here , we do nt know what to do . +It 's not just the United States . + But I did nt know it was going to be like this , he said . +And that 's today . +How good of you to come . +We do nt know that today . + This is business , she said . + But I did nt want it to end , she said . + Take it from me , he said . + There will be time , there will be time . + I was in a good place . +But he was not the only one . +But it just was nt the same . + But New York is a place like no other . +This is about money . +And he could see . + I do nt know if I want them to do that . +I can only do so much . +That game is here . + They put some big people into the game . + I know now that he was nt , he said . + But we said that last year . +What does she want me to do ? + I did it that day , she said . +What about the city in all of this ? + But now I do nt . +And I think he does . +If he can play , when ? +Before , it was not like this . + I like to work . +There is no home team . +The last is where you do nt want to be . +But after all , the world is the world . + And do they ? +It 's a part of me . +That 's the way it 's going to be . + If I take the money out , what do I do with it ? +But we did nt do it . +And if one does nt work , it does nt work . + I think it 's the same for him . +We have nt had a New York President in a long while . + What do you want me to do for this ? +But he said yesterday that was not what he had said . +I never said , If you do nt do this , I will do this . +All was for the best , though . +But I think it will come back . + I did nt do this for the money . +Right now there is nt . +Is nt that just like a man ? +I do nt have time for that . + It did nt . + It 's not for us . + I want to big them back . + It was still there . +I said , Any time . +I have nt all season . +I was nt there for her as she was for me . + I would have been all right . +I do nt know what to do . +This was our life . +What might have been ? +Then , we make another one . +It 's time to play now . + We work , he said . +I did nt think I was going to work it out . + Last , he said . + That 's when I play my best , he said . +I could nt make this up . + But he did not get it . +Well , are nt they all ? +Here are four to know . +Well , now I was at the other end . +But it can work . +But it 's also how you work it . + You should have to play well . + Now , it 's here , he said . +Well , he did what he had to do . +But for New York , that was that . +No , but I would have . +Well , it can be all of those . + The play was all in one set , he said . + IF AT FIRST YOU DO NT . +Not because it is the best way . + But I said : I do nt know what you are going to get . + This made up for it . + And we said : Know what ? + And what does the public see ? +We were both right . +They want it back . + It 's what they think about it a year from now . + These two are good , he said . + That 's good , she said . +Not what you go for . +So you know who is there . + They had not . + Where did you get this ? + I can get you as many as you want . +We think this is the best it can get . +He has been here before . +It 's not their time . +Not so much any more . + The team is down , he said . +New York , that is . + I just want to see her , she said . + But I do my best . +But I did all right . + We did this on our own . +Here , you are in and out . +We are still a team . + It is the one I like most , she says . +It 's been this , it 's been that . +This is the best time of day to be here . +How can I say that ? + To him , it 's just business , she said . + People did not like that at all . +I want to come home . + I do nt know any other way to go about it . +There is nt much you can do now . +They do nt know what to make of it . +The show is good . +This is a new team . + But then it was over . + We have no place to go , he said . +And if so , how to go about it ? + I know most of the police , she said . +And more and more people want to be there . +And this is not the time for me to do it . +That 's not new . + What 's the use of that ? + You know that ; I know that . +It is not as if the war here is over . +This was not so . +And you do nt have to . + That 's just the way it 's going right now . +She said she did not want to . +I play for my family . +And we are a family . +We all know this to be so . +Now they are home . + We are going to have to do more with less , she said . + They could not . + Can we get that , too ? + I do nt know what I will do then , she said . +This is nt me , but it is me . +It can be both . +No one called her . +I have for a long time . +But it 's just how it was . +Should I know you ? +Most did nt have it . + The first time , I did nt know what was going on . +A : All right . +That was all a very long time ago . + How do you want me to do it ? +We have to do it for more than one year . +No one has called back . +Then , one May day , they did . + She : That was another life . +It 's not our money , there is not much here . + I never know , he said , until I get up there . +I may never have it all back . +But she did get there . +I know who you are . + I think they know what we did here . +Some of them more than that . + You have to see this , he said . +And not only that , but they are good . +We know what is right now . + I was all on a high . +I think the people of this country know it . + They are about people who should be here . +People , they see . +We know he can do it in left and right . + You think this is a game ? +I do nt know if they can . + I think about them all the time , she said . +For the time being . + It was nt the case . + What , then , is the American , this new man ? +That 's where they are now . +I had to be home every night . +Have the family over . +It 's just all over . + And we have nt had any of them . +She 's right ; they will . + In this world you never know , he said . +It can be right at the center of life . +Where were they going to go with it ? + But I do nt think that 's the case here . + It was what he could say . +That 's all I know how to do , he said . +Both are of New York City . + And they do nt want that , he said . +They do nt want to be with you . + We could nt do it . +Put it another way . + It 's the way this season has been going . +That 's what we are all about . +His first play , A . + They say , What 's that ? + We might have one . +They are there for us . + What is he going to do ? +I was with her all night . +He was the man . + It 's not with us . +But it was for the best , in a way . +But they can for a season or two more . +I did it many times . +How well did he do it ? + What time should I be going out ? +They do nt do the political part . +I know I have to play well . +He said that was good . + She 's my family . + I do nt think I have to say it , said Long . + But we know very little about how to do that well . +They are people who have been very good to us . + Right , left , right . +I was nt very good today , at all . +That 's what each life is about . + I had to come , she said . +Every school has them . + It 's such a big place . + I do nt know who put that on there . +It is nt a big part of what I do . +For most , it was the only way to get home . + That 's what it is . + I can do it . +Not just to him . +It 's not very good . +And on , and on , and on . +It 's still us . +All of us should . +But then , it never is . + And I think I was the first to do it . + What should he have said ? +What do you want next ? +Now I see he was right . +Can we have it now ? + Because that 's all we have left . + Have we set it up ? + So that 's what I have here . +But we want more . +That 's just how it 's been . + They never take a day off . + Then we could go from there . +What do we get for all that money ? + This is New York City , he said . + I did nt have to , she said . + The money 's too good . + Are you going into the city ? +Or so we used to think . + Can you see them ? +SOME were left back in their day and some were not . +Well , I think we should do that . +But it is nt all there was . +I have nt said that , though . +Now is not the time for war . +In a way , they are all right . +That 's what he 's best at . + They say , Have a good game . +The money is not there . +Not like the old days . +I do nt even go see my own work in New York . +Well , I know I was . + And it does nt work out . +No , they say . +All this , John said , is new for him . +But it 's not about me . + Would nt you like to know ? + That 's where I want to go . +So what 's going on ? +I did not think much of it . + That 's his way of life . +Some other way had to be found . + Well , not only for money . +There is also less of it . +They do nt have to think about it . +Who might want it ? + You know it is . +And you know who said it ? + This is not their home , she said . +You never know , man . + But we are , he said , like this . +I do not like them in a house . + What could you do if you were here ? +So is the United States government . + It has nt . + We were going through it the other day . +All you want to do is end in a good place . +Two of the three were women . + Way before my time , he said . + They could be all going on about what they did nt get . + They do nt think that they are people . + I did nt know when . + I do nt have time right now . +You have to know what you are going to do . +They were both right . + We are here , and have been here . +They said I was of no use to them . + There 's no way . + I think we have to do this , he said . +But it 's not just me . + This is a place where you can just be you . + I still think we can be a very good team by then . +He would have been the first to say so . + Or they say , These women , they just want it all for them . + Right here , he said , would be a good place . +Government does nt work that way . + I just do nt want to play . +And he can still play . + It 's going to be a long , long night . +We do it for you . +To first make it the way it was . + Would we like to have it ? +Because they have been out , women are in . +Did it for me . + I know I can play against them now . +But he said he never was . + He made his money . + They were last year . +I could nt even make that up . +All that 's well and good . +Well , you know what they are about . +We are the same team we were then . + I want to see my family . + We want to see out , we want to know what is out there , he said . +It was up and down . +His next game will be next season . +They do nt know how he did it . +What can you say ? + I think you can . +Your team can not do that . +There is a time and place . +Now they go to three . + Are you going to the game now ? +It 's been going on for years . + How long were you in the house ? +I do nt know who they will be . +He was nt the same . + It might not work . + And he is . +I do , too . + Is he here ? +Used to set up -- were they ? +Still , he was out . +And they know that 's what we are going to do . +It is , though . + This is what I like to do , he said . + It 's good for business , she said . +He has said this before . +Now it is time to go home . + No , May , he said . +You would say , What do nt you like ? +There are days like that . + You can take it . +So I had to make him up . +I do nt know what 's going on with him . + I did nt have that in New York . +At first , business was good . +That do nt work . +They had no right to do that . +There are no children . + That 's just as good , he said . + There is just no way around it . +They know what they have to do . + He said , Days off . +That 's not the American way . + It 's time for it to end . + May I have . +We only know it 's there . +Do nt even go to work . +And with life , too ? + As much as I have to , he said . +And you know how to get there . +I might have said that . + The police know it . +It does nt have to be more than that . +Does nt have the time . + So I have my life . +If they want those people , they would nt want us . + Did you see me play ? + He said , No , who is it ? +That 's what he does -- you have to go with it . +I said , For what ? +Not like these here today . +Like the one the other day . + Do they all make it ? +You will do this ? +And work with them all . +I do nt even want to play . + But it does nt have to end with us . + Well , I do nt think we can do that . +I do nt say that . + We have to go to both . + I never did that before . + But there is nt . +And they say , Who are you ? +For several years , times were good . +I never do this . +You would nt want that . +HOW LONG -- One week . +It was never found , she said . +They do nt have a country . + The time is right , he said . +Can he get it back ? +That is , until next year . + There was nt much more to think about . +He was right too . +She used them , right ? +But will this last ? +We are here to see one another through . +But we go way back . +I have called the police three times . +It 's us or them . +If I do nt get out , no one does . +If I did , some other people would have as well . + Here , it 's just work . + What do you do about it ? +And I have been . +Then , you are all set . + You never know about that , he said . +But do I go to the police ? + What more do they think they are going to get from these people ? +You could not get in or out . + I should nt have . + If it does nt , I do nt know . +All we know is that we are there and will be there for a long time . +But we do nt have much time . +It 's what they like . + But that 's just how he is . + With this group , that 's not the case . +And I know how to say it . +You were among them . + We are one city and our children are part of one city . + You do it because you have to , she said . +So what 's in it for you ? +That 's what he said . + That 's all he did . +Are we where we want to be ? +And I was nt even all that good . +What little people ? +Some people , that 's just who they are . +He 's not a white man . +I say they are both right . +And they might be right . +The show is over . +I think they should . +You do nt want it to end up that way . + That 's what I want to play . + We can do it in one day . +We did what we set out to do . +Of these only one is a public company . + We will see , she said . +Then it did nt . +He says , He 's right . + To see my family . +So where do you get your money from ? +So this is what we are up against . + I could nt go through with it . +But they were just children then . +Think back a few years . +Can I show it to you ? +But among them was the city of New York . + And he 's very good with people . +Both are still out . +We know what we are up against next week . +From the very first day . +But it does nt work out that way . + This is not a war between our world and their world , he said . +I do nt know a way out . +And then I said . +For about a week . +Only the United States does . +But that 's all over now . + Do it now , he said . +Now you do nt know . +But only one at a time . +In this case , no . + So that was that , he said . + Three , more like it . +He may never go back . + Most people have nt been out of this country . + There 's just no time . + Those are a first , he said . +And to their children , and their children 's children . + He said that about me ? +It 's more , and it 's less . +This was too much . + But it 's the law . + I use it all the time , he said . +And is this all there is ? +And there are five more days to go . +Who 's going to get that ? + Where is that going to come from ? + You do nt know it now , he said . + Now , they see it and want to know more . +That 's the way it is in show business . +That 's not to say it was right . +Do you play on the street ? + This one 's on me . +But not for all of them . + Which is just as it should be . + Their time is up , he said . + I have to go there . + We should have had that in there . +It 's like this after every war . +What do I do with my business ? + We are just people , he said . +But there may be , I just , I do nt know if there are some . +Then there 's this . +I will not make war . +And there would be more . + But that 's what we have to do . + I did nt even know when it was . +We are going to take it over . + The day has come . +What does that come to ? + It 's good ; it 's very good . + Do I want to work that way ? +Four , three , two , one . +Four long years , but you have been with me all the way . + This is not a family . + Every one could be my last one . +It is one day at a time . +They still may not be people we like very much . +He made them go . +In a few years , we just might do the same . + They were good , she said . +He might be right . +I like this group . + Do nt you want one ? +But I did nt think it was going to go out . + It does nt say . +Two years ago today . +Well , did nt I ? +And what does it say about us that it does ? +How are we going to get there ? +I would nt have had it any other way . +TWO days to go . +For the time being , it would have to do . + You want to be a part of that . +Should I take it ? + He was there before , he said . + I think about today . + I have nt been back since . +Then off into the night . +I do nt know who will get that . + If , if , if , if . +He could nt get up . + They are not going to make it , said A . + No , they said . + They are not in the game . + Those may not last . +They are all used to it . +They just could nt play . + I have been in this business for too long . + It 's not the end of the world , he said . +I just work like this . +But at no time did I do that . +This year you had four . + Did nt get one , I said . +Where could I go with that ? + But we think it 's very good . + You can do business . +We may even use him in right . +Yesterday , they did it . +Some were never good . + Now , every day there is a new case . + All of them are in the show , where we want to be . +We did nt have it . +He does nt know what 's going on here ? +That was the case this time , too . +But there 's no time for that . + Before long he was back . + They should have their day in court . +They may just have more . + I had the day off . + We do nt know , she said . + Now , it 's time to go do it . + You work with it so long , she said . + That 's every night . +But it will be good for them . +And what about the children ? +Should it get it ? +That will take most of the week . +Now he would nt have it any other way . +Some say too much so . +I do nt want to be in this world . +I know , I know . +Back off , big government . +He may still be . + It 's all for the first time . +We had him this year and we made it . + What Do We Do Next ? + It is used all over the world . +After all , they are our own people . + Those days are over . + So you do them last . +Now is the time to make up for that . +Many of the companies were no more than four or five years old . +We never had to think like that . +Would it be made today ? +But if you are a president , it 's not . +Many times I think about the old days . + It 's because they think too much . + Not the other team . + We want one of each , she said . +There is too much going on . +Where is the best place to see it ? + It 's a game we play , he said . + It will take two or three years . +You do nt know how you did it , but you did . +He does nt say much . + It 's up to them , he said . +And there 's money to be made . +What can be said of it ? + Since then , it has been . + I said the same about them . +Now he says , Do it and take the money . + I said , You are not . +State officials say it will not . + It 's for government members . +Every one of them is good . +How does he do that ? + You could do it like that , the man said . +They have nt said that before . +Not so , me . +If it is , it is . +But how do they get there ? + And she does . +And I called him out . +We used to have a good life here . +There was money to be made , too . +No , just those two . +It has been so for many years . + That is the will of all of us . +He says he may . +May we come in ? + How much government do you want ? + I do nt know you , she said . +But he did nt much like it . +Some were very good . + They would say , To what ? +It 's part of my life . + He was not at his best today . + It 's been like family here . + It 's still a long way to go , she said . +The director is not the first to do so . + Will they like what I do ? +It should be all about us . + I know , I know , he says . +And I say , No , it 's just me . + That 's what we called it . +We just want to put it off as long as we can . +But I had to be out there . +They just want to see the world . + It 's just been more public . + We do nt like it . +And it is more than that , much more . +And if they are not like me , I do nt want to be part of it . +A : We work five days a week . +How can you be ? +I do nt want to get too big . + This is my music . + It does work , he said . + Never had that many before . +It 's not about the money , he said . +This is all we do . + We do more business in a day than they do in a week he said . +And so he did . + I do nt think I could do it right now . + We have to go out and play them one at a time . +Then you have to part with it . +What do you think about that ? + If he was , he would have been on the national team . +Who still does that ? + They had no business down here . +That is nt the way it should be . + You just do nt know , he said . +What will you do next ? +Then do the best you can . +They are going down . +They are just part of the game . + It 's been going on for so long . +But can it work well ? +What would you have to do ? +How much , how little ? +But that 's not what my music is about . + How did it play ? + Where did you go to school ? + Where we going to go ? + I have a big family , he said . +I was nt going to be there three or four years . +But you do that , that 's not the way you play . + I think it will be a good game this week . +It 's one of the few we have . + I did nt know know that . +For some people here the war is not over . +But the first what ? +It was on us . +If I get him , I get him . +My children play there . +Still , it should not have come to that . +How do you go on from that ? +I do nt want to say that 's what the season 's about . +I can get it all at home . +I know what I want . +I think it 's up to the president . +Now , what did we see ? +We are here and they are at home . +I said I could . +I had been put in my place and -- how can I say it ? +I do nt see my family . +You can make money during the day and go to school at night . +It 's about what in the world is going on in your world . + That 's what we have to get back . + And what is it ? +And not only this one . + I was there that day . +No , their time is over . +It should not be like this . +Today , we were off and we were nt very good . +We are there , but we are not there . + Is nt it that all over the world ? +She could see that . +That does not make it right . +He 's going to play with it . + I like New York too much , he said . +But I think it 's going to come . +I think you are going to see that . +That 's what this business is about . + You might never see it . +That was his last play of the game . +What will people think of me ? +What use would that be ? +He could not do it . +Women , children and work . +So does The New York Times . +I have said this many times . +There will never be another like you . + What can they do to us ? +No one will make it . + Would you like to show us how to do it ? +Does he know what 's going on ? +That 's about what I can think of . + There 's more , she said . +They were not all that good . + But this did nt take place in this case . + But you know me . +Because they never are . +In this case he is I . +They are just children . +I had it the other way around . + Then he can get down to business . + That 's how they play the game . +It 's too much work . + That was like being home , he said . + I do nt think we have one right now . +In less than two years , he did that , but there was more to it . +It just would nt be right . +I have a family here . +There is not much left for them to do . +But in this game , you never know when you are week is going to be . +As is her new life . + It 's one family . +I did nt want to see . + This big , she said . + If it does nt , no . +The next day I was on it . + I do nt think it will , but it may . +I did nt like that at all . +Or we think they are not for us . +For me , it 's over . + I said , Another one ? + The house is too big . +How did she get here ? + You are like , There 's no way he 's going to get it here . +And we will get through this one . +To this day , I do nt know who did it . + But he never said much . +It was a big play . + That 's still the case . +I never said do nt take me out . + Do they know ? + Now this I do nt like , he said . +She 's good , too . +But that is now against the law . + We want it to come back to its old days . + It 's a long way , she said . +Each has to do their own work . + I like to be in my own little world . + It was this high . + This is where I want to make my home , he said . + This is the only way . +So there you are . +He was all over the place . +Well , a few . + But it does nt work . +And it is a business . +But I think in the end , he did . + Did nt work out . +How do you want me to be ? + You know it 's there . + They are a business to me . + Just us , he says . + We do nt know what 's next , he said . + It is , he said . +Now they are good . +They had little time . +But no one had called , he said . +Here , that 's where . +For us , this is over . + What you see is what you get , she said . + But if there is ? + There is no work , what can I do ? + But will it work out ? + We did nt have the money . + There was nt , she said . +He did nt even know what he said . +So what to make of this ? +But he did then . + And it never will . +He never made it out . + I do nt like to go out , she said . +Where does he go from here ? +It did nt work very well . +I like country music . + I said , Come and see about him . +It could not have been made . +So what 's he up to now ? +Who did nt know where it was ? + This is one way to do that . + They say : Will he be the same ? +I think it was you . +He was one of their own , after all . +What is next , though ? +The country 's too . +It 's about the work . +Some of them you may even get into . + Where are you from ? + Another says : I like it . + And he did . + You are up there for a while . +And when was that ? +He was out every night . + The court has said that is not the case . + But I think he can do it . +Or the next day . +But it did nt have to be this way . + In -- no -- way . +The Who , that 's who . +He never called the police , he said . + How can I get that back ? +Some people do nt see it . +Or it could be the same . + Those were nt the right times . +How long did that go on ? + They said , How about the president ? + All over , he said . + Then I left . +But we have no place to go . + They are like children , he said . +What 's he going to do ? + How long are we going to be there ? +And there 's so much going on in it . +I do nt think he is . + That 's what I did . + We did nt think he put much time into it . +My first time there . +Some said they still do . + That is not my take on it . + This is a family for me . +Who were the people who were there ? +Were those the good old days ? +We want to do it right . +But we have to get there . + We were up , then they were up , and it 's going to be that way . +He set out last May . +He was so big . + That 's only right . +But it is not the only one . + He did nt work on the case . + When my time is up , it 's up , she said . + We do nt want to have to go through that . +They work , he says . +He was nt us . + He said , Well , two say I should nt . + That is all there is to life , she said . + It will be good just to get out there and play . + I did nt know what I just did . +I do nt have my children . +But what can I do for them ? +And we are not going to do that . +Or is it just that we like it so much ? +Today it is more than one in three . + It 's like family here . +They did nt have to do that . + But it 's not like we have nt been here before . + It will have to be . + These are my people . + For us , it 's one day at a time , he said . + It 's good for the game . + They do nt have to like it , but they have to know about it . +They just do nt know how to do it . +I did nt have the life . +In my first year , you would nt see that . +Do you see it ? +You want to be next ? + Where is he going to school ? +You might as well do it while you can . + Ms. House said . +It 's on all of us . + If it is nt , we will not . + Where 's my money ? + I like it very much , he said . + I want to play . +Not many could do it . + People do nt know how to do it , she said . +There 's little money there . + It 's never going to be the same as it was , she said . +And they are going to see that . +But that 's not all I want to be . +At some of them . + Who Was There First ? +It 's to make money . +And he was , too . + They may not get that . + I come home . + We are what we are , he said . +They just said , He did nt know who he was . +If it 's not , I have two years left . + So how was the work ? + Come on , she said . +To do so would also be right . +She 's out there . + She 's not out to get them . +It 's not that way at all now . +He did nt say he would and he did nt say he would nt . +We are business people . + What a day this was . + Is that so ? +It 's about money , not about the game . +I do nt know what 's next . + I do nt know how long it will last , said A . +I think the time is right . + I would never want to work there , she said . + You know it , she said . + It does nt any more . +Them and them and them . +But some do nt and they want out . +It may be here . +It made us think : What are we going to do about this ? +He said there was more work to do . + But I do nt think its going to work . + But these are good people . +So you have to put it to work . +They are just a big business . +He would have been . +I do nt think it will among the good people . +I do nt do that too well . +I did nt know if I would make it through . +It 's not good for the team . +You are not him . +It 's that time of the year . +And they have come through for her . +As good as last season 's team ? +But it was not only him . +I was nt used to that , and I did nt like it . + What 's it like to play for my old man ? +And that can be a long time . +What do we see in the world around us and how do we see it ? +Do nt play it . +He has been a good one for his new team . +That made it the right time . +And this was my second . + That 's what we have to do now . +If he does , he does nt , and if he does nt , he does . + Just high school , he said . +They just do nt get it , she says . +I just have to do it . +You can not do one without the other . +It was all of those and more . +We are both just going to do the best we can . + But he could have been in and I did nt even know it . +But it was nt about that . +He has to go back to work . + There were times when I could nt see , she said . + There 's so little even to see . + I just show up to work . + He did this yesterday . + This is where I want to be , he said . +Most will be in the United States . + They come out to play , he said . + But you have to take it as part of the business . + What more do they want from me ? + I do nt want any part of it , he said . + I just made it . +Where does she get them ? +Last week he made it . +We are just going to have to go with it . +What are we to do about it ? +And what was this one now ? +They have to like each other . + More than a few times . + That 's just not the case , he said yesterday . +Or you can come here . + I do not . +Well , what 's that ? + Just one at a time . + Even if I was going to first , it may not have been an out . +She had used it before , she said . +And so it now does . +ARE YOU THE ONE FOR ME ? +I like the music . + And what can I do ? +It is nt in the school , she said . +The play was made . +Do you know what time it is ? +There is only so much time . + You want to come back , but you just do nt know , he said . +That 's part of the business . + People here know it 's not for them . + But that was nt the case today . +Now I just have to go out and play my game . +We are what we say we are . +That 's good for business . + I just have to take this into the season . +She did nt have the money . +What you are going to do , who you are going to be with . +You going to be like them . +What was she going to do ? + Now there 's a law against it . + But I still come here . + But I do nt want to be her . +What then to do with what was left ? +It is now second . +But I could nt get them to do that . +I said I would . + What are they going to do here ? + It was a game for them , he said . + What did he want ? +That is what I want to know . +And that 's what my program is all about . +Can I do this or not ? + I do nt like to be second , he said today , and he is second no more . +So we come to today , the day after . + Did you get that ? + I do nt even think about it , he said . +I will as well . + I did , she said . +It is not , if we say no . + It is too much money for me . +But we have a good life here . + They just found another way . +And now he 's under there . + What we have to do is get the show to work , he said . + What were you going to do ? + And I can . + And this would go on for a year , right ? + It 's all about you , she said . +I want them to know me . + They want to do their best . +But that was not the case , he said . + He said , Where 's the other money ? + There are very few who can do it . +She does not work . +It 's the police . +You are the state . + No , no , I do nt think so . + That 's the best you can have . + She just did nt get it . + New York is still the best city in the world , he said . +This is our day . +People do nt say that . + More of the same . + It 's not for the public to know . + Do we know where they are ? + Well , what 's he like ? + It 's just that no one did . + There 's no place for children to play . +That was for me . +Or on and on . + I have to get to work , no ? +This then was our world . +There , it 's been said . +We found the place , but it did nt work out . +Then we will take over . + And I said Who ? +He had a good day . +The end is not money , though they like the money . + Here it is the same . + That 's the only way to put it . +That 's what you think . +But this , this is big . + It 's not about that , he said . +Then they do it . +But there is much more . + Government people are like that . +And more money is on the way . +And if he is ? +What do they do then ? + That just does nt go down with me . +People who did nt know who she was a year ago know her now . + You do nt know how much he can do . +This is all new for the department . + That 's not going to get you any work . +I know they would nt do it . +If it is to be , it will be . +It does nt do that , does it ? +He has found a family , too . +But there 's just too many of them . +I was the only one . +But that 's not what I said . +But this school year may be the last . +But now is the time . +If only they could come out and say it . +They know that too well . + Is what is going on too much ? + I did not want to be here . + Now I want to go all the way . +They just want their money . +It was time for us to go , too . +But there 's still next year . + What are people going to do ? +She does it well . +Do nt want to do that . + I do nt know what it 's for . +I would nt take it so . +And the more people that know about the show , the more people will want to see it . + How did you know about that ? +Two are in this show . +But that was the end of it . +Some women think so . +But was it any good ? +I have to get there . +But that 's what it was like . +We did nt make them . +And where they could be going . + He never said it . +They would nt come here if I could nt play . +All you can do is go out and do the best you can . +And here is what I would like to say . +But to State the time is never right . +It 's their house . +I know my game . +But he 's right . + They did nt say , That 's no good ? +It just never was the same . +And if that does nt work out ? +I could nt see where I was going . + You could go first . +Then , there is the work . +Not going to do it . +I said I did not . +There was only so much he could do . +He could do that , too . +Little does she know . + We are at home , he said . +Here , we do nt have any of that . +But I do the best that I can . +But he does nt think the end is here . +And you are not . + Over there , they will say . + And I think the more they know him , the more they are going to like him . + This did nt do it . + Those are my people right there . +And we can do all of that . +I did nt want to come out . +I do nt know if I could . + It 's what should be here and now it is . + That one 's all on me . +That was good for us . +This is not their game . +This is all we know . +Also , they do nt have time . + I do nt have to be like them , he said . +You are the best there . +That was less than four years ago . + We were going to have a family . +What can he say ? + But I know he 's going up . + And I said , No , this one is not for you . +Most of them are women . + You get big in war . +That is your right . + The second one . + That 's all this is . +And they said no . +We are both as good as each other . +That is , they . + What are you up for ? + Who has time for that ? + I never had it . +It just did not go through . +Then I could nt get my game back . +But he did nt ; he could nt . +They know where you are . +In a way it is . + His play over all is good . + I want to take it all in . +That 's what we do . + We still have them now . +What should the White House do now ? +Is there still time ? + What 's in it for them ? +He had been there . +They said , We want to make you a part of us . + I do what I have to do . + It was some show . + He just does it . +We are just going to play it day by day , week by week . + No one out there to go to . +He says this , he says that . + A new house is not an old house . + It 's very good , he said . +But over in my country . +In one way he 's right . +But he was in the market . +His would not be . + The season 's going to be up before you know it . +You can make them see this . + We have to go get them . + Very few members of the family have . +It is less of one now . +And that is what it had to be . + Come , he said . +You do nt want to end up like these people . +We think he 's very good for us , and we are good for him . +They are used to it . + But where are you going to go with this ? +I can never just see today . +We say that there is no place like home . +Not a public man ? +After all , we work for you . + It 's what they see . +We did nt know it then . + That 's how you do it . +But should it be ? + That was nt me . +If they do nt get it in school , they do nt get it . + What it says to me is , You know what ? + They like to be with you . + I do nt know what to do with them . + What think you ? +But people still want to go there . +This one did not . + Where are you going ? + That was not all . +One day we will have this . +When was it there ? + It was nt just for me . +You can not do that . +No , no , not he , he said . +It 's about time more women did , too . +Their season was over . + And when he left he said that he would get even , he said . + He said , Go for it now . + What were they ? +I just know that I was nt going to make it back . +There 's a time and a place . + It will never work . +Some say , it is even more than that . + But they would not take that . +They just do nt want to do it . +He still has a long way to go . +It was our place for so many years . +LAST year , when the A . + I said , What do you want ? +This is nt a police state . +I do nt like this at all . +He should be next to me , next to his family . +Where can I get that ? +I did not see it then . +He 's not going . +There 's very little I do nt want to do . +Are you going to do it ? +Few will know how many members were for and against . + All right now , all right now , she says . + But then how many times can you do that ? +But that would end . +I want to play that . +Who will do the work ? + The week before . +They know what I will do . +You have to get it just right . +How could you say that ? + And that may have been one of them . +But who would want to ? + People in New York should do the same . + What do you have , old man ? + It 's where people come and go . +Then what was said ? +We all like each other . + But I did my best . +She was in it , too . +Second from the right ? + Now it 's Just think about it . +There 's a group of people who want to do it on their own . + I could not not have it up , she said . +Who Are Those People ? + It might even be more than that . +You want to play a game . +We only want to know so much . + This is big for us , he said . + His people did nt want it . + But this is not the way we want this to go . + That 's the way out , he said . +I said it many times . + Not good at all . +It 's what I do best . +Now he has made it more so . +Then I could make him out . +Not In My Life . +He was going for it . + The business is not very good . +Now there are many more of us , as you can see . +I do nt know what that was that day . + He will be around a long time . +He is not back there . +That will go down . +We are going to do our best . + They make no money off it . +How long did it take you to do that ? + I know who they are now . +You do nt get much time with your family . +Does she have children ? +That 's part of what music is all about . +It left without me . +But that time will come . + How they set it up ? +He did not play well last week . + What do I say if I do nt like it ? + But we had to say we work for the public . +Do nt know what it is . +It 's more the other way around . +This , she says , is her home . + I think it 's new only in the last year or two . +They are going to have to . +But this is nt good at all . + You are on , he said . +I do nt think people in general get it . +And not just to them . +But I can not put it out . + The American people do nt see much going on . + I never used to . +I think we should do it now and get it over with . +You did nt know what team was going to show up on what night . + No , they said . +What was that like for you ? +But it might never make money . + It 's not last year . + Now we are going to make it work . + You have to go out there and do it . +But he can still make it . +I think so , I think so . +What will be will be . +Then what was it ? +Here 's what 's going on . + From time to time I do a case , he said last week . + At first I did nt think much of it . +They have that right . +Or not , in my case . + She was nt just a director , he said . + I do nt want to think about that , she said . +She had made my day . + And then what ? + It was good , he said . + Family and work is next . + Well no , he said . + But how long will it take ? + Where was she ? +This one is nt . + We do nt do that here . + He should come home . +So how long did she work on it ? +He did nt say how we might do that . +They come when they like . +Both of them said they would . +This is what they say to me now , and to all the people . + We used to do that . +Today there are many more . +How much is the state going to take ? + How do you think ? + They just said it : I will go . +But not very many . + There 's just never been any place like it since , she said . +You do nt want to know what it 's like for me . + How he does that in a week , I do nt know . + We were there for each other . + They do nt know what 's going on in the country . +The West is very even . + Those were good times , man , he said . + And if they did ? +What 's this called ? + And that was years ago . + The way out is school . +We know our way around . + I know all of that . + What can I say ? +But you do nt think about it . +Back to school , back to work . +The place has nt been the same since . + But what 's the use ? + It is only going to be one more year . +I work well with him . +Where do these people come from ? +Because it is not . + I do nt know how long that 's going to last . +This was her family . +But we are used to it for a long time . + There was not . + How they did it ? + So is she . +But they did nt , and they were nt . +He says he 's not . +It did nt take two days . + The way it is , it 's not for them . + At times , you have to say , This is the way it 's going to be . +I just never go out there . + I had said it was nt going to take any time . + I did nt like them , they did nt like me . +But the President did . +As it did nt last season . + She was my life . + How did you get in there ? +I do nt want another one . +It will take us a while to work through that . +This year , they are . +Some were only a week old . +It was nt the money . + But you are right . +And this , too . +Did nt take any time off . +What would be the use of it ? + You are in our home , she said . + It 's not going to work here , he said . +These are good times now . + But it 's the president , so you do it . + It 's a year at a time . +We have what the people put down , but we do nt have one from the city . +West for just the second time this season . +You do the best . + We are going to have to be there for a long time . +New York now has a home team . +Now we can not . +Our game should be just as good . +And their work , they said , is their life . +He was out of the country . +If the next President would do good - and what President would not ? +That here is home . +And what did you say it was called ? + Was that the day ? +And this is not the first time . +In her case , it was all three . +He did not make it go I . +They have it all the time . +A : Two days . +It was nt much of a life . + But that is not what this is about . +I know what people want in a president . + I see at times what I want to see . + You could nt come here . +I do nt know if I would . + We are like that . + That 's not good , he said . + That is not so . + They are so old . +Now there are two more . +How does one get one ? + I say he has to . + I did nt want it to go in there , he said . +It was her night . +You are a man without a country . +But there are people . +And that was just the A 's . + It 's not over , he said . + We are here for you . + And what if it 's up to you ? +She called the police . + You know , they were right . + How do you like us now ? +It 's who we are and what we are . +There 's just so much there . +These can be good , just not as good . +So it may work only for a few . +Then , you can go from there . + That was two years ago in May . +You would have a good case . +He never did this before ; how can he do it now ? +They were good to me . + We will be up when it is time . + They want to play it that way ? +He said he did nt know what would come next . + There are four of you . +SO what was this all about ? + It was nt me ? +And who will never be who ? + For all these women . +But she found it . + What would I do all day ? + No , he has not . +Who 's going to know ? +Most of them work . +There was no end to it all , and he just could nt take it . + They are all going to be a part of it . +But now that I have less money , I see that without money you can not do much . +How could they like it ? + And I have to have my say . + They are not used to it over there , he said . +And I do nt want that , she said . + Well , so long as they are for show . + He said , There is no we . + That 's what we see now . + You are going to do this . + It 's just what I said after the last game , he said . +In the end he does nt come through . + No , I do nt . +They have such a good time there . + What do other people do ? +I do nt think it was about me . + Some of them did nt want to go home . + People see that around the world , he said . + Well , all right . +Is it as good as ? +The world does nt make people like that any more . +When is an off day not an off day ? +We are going to do this and this . +But will it be New York ? +We will work with you . +He did not play last season . + I have my will in place . +We do nt want to put them out of business . +But it is more than that , and a little less . +Go for it , he did . +Man of the Year . +That is two more days than last year . +If we want to be with our children , there is no other way . + How do you know what to do ? +I know what he did nt say . +It 's the first time in a long time . +Now they are going to say . +A : Of that ? + There was some work to do . +I did nt know if it was going out . +What will take its place ? +Now we have one of each . + I found these on the way over here . +This is our work . +They just did nt like it . +Can I still do it ? +It 's not like a big city . +It did nt come out good . + It was too much . +What will we do , each of us , now that we know ? + But how do you want it ? + He said that 's where the money was . +But it was also New York . + I do nt have much time , she said . +I just do nt want to go home . +I do all of that for her . +And what 's he going to say ? +This is the best place to be . + It 's not who you are , he said . + And they can take it back . +That was a high market . +It was nt -- not if it was made well . +Could nt be , could it ? +What do I make ? + If you do that , you might as well not even go up there . + If you have it , you can use it . + Are we good ? +For there is very little this left . +What time do you want to see her ? +But what if they were nt ? +And that 's just not the case . +That was then , but this is now . + We are going to take it . +And more , and more . + This would be against the law . +But who is this Us ? +We have nt had to do that against a good team here . + It 's our time . +Was it five times ? +Even if you think you know , you do nt know . +Do you do this ? +But it 's all business . + It was a part of him . +With him out , it 's time first . + This is so good , he said . +And there were children . +One down , one to go . +He 's a part of the family . +That 's the way I like to work . + Right , I say . + It 's up to him , he says . + What has this city come to ? + I just do nt know what 's in it , he said . + I have much more , he said . + It was the place to be . +And I do nt see it . + I said I did nt want to get up . + That would be good . +What do we get out of it ? +He 's in between . +People like it very much . + Not good , she said . + I want to have two children , she said . + School officials should never have called the police . + Very much so . +We are where we want to be . +Do nt you see it ? +So , what will it be this time ? +Where were the children ? + It 's good country . + They do nt want to see a show . + Now I think 's that 's off . + And I said , Right . +That is where we are . + I did nt know what to make of it . +It would be best if you did nt do that . + Not so today , he said . +I do not know where he is . +I do nt know if other people are . + The way they go down . +This is what I did nt want to see . +So where did they come from ? + That 's where I was today . + I know there are some very , very good people there . +That is New York City . +The state was out of money , and it 's been out of money for three or four years . +She said she could nt take it no more . +Around here , he is not the only one . +What made them that way ? +What made it so ? +Now , I think we have the best country in the world . +How good would that be ? +I could be you , right ? +Here it is , right here . +We do nt want our children going to school . +I was just one . +And it was not much . + I want him to play . +His last home was a Government center . +I know my place . +Now , there 's no way out . +Over time I think that will show . +Well , this is it . +I think they will not . + The old people have no place to go , he said . + But it 's not . + He did nt get up . + For every team . +To me that 's what it 's all about . +Now it is my time . +In a way , she had . + We want to make it work . + I go all out for him . + They had to do it , he said . + This year is this year . +Go back to your country . +So what can companies do ? + Just as much as they want me , we want them . +What if I did that ? + But there 's less of it now . +And no one can see when there will be another . + You are here all the time . + It is her way or no way . +He never made it big in the game . + Years from now , he said . + But this was big for us . + I did the best I could , he said . + He said : Do you know me ? +On with the show . + How could they know ? +I had to do it . +This is the end of the end . + When are they going to come ? + I said , I just do nt know , I just do nt know . + It was like a second home , she said . +But I did nt go that way . +I will work for the people . + Most of our time will go to work , he said . +Then he will have a new life . +That 's what it was like . + But we have to go on from here . +But that will take a while . +But it was nt , and they did nt . + If he does nt , he should say so . +And not long after that , he was in his own business . +That was also about all he said . +But would they be back ? +Or is it more than that ? + Five years ago , I would not have said that . +Come on down and see if you like it . +What Are They Made Of ? +So is country music . +But in any case , it was that way . +And that is what the law says . + That 's right , she said . +That 's those people . + I do it for the money . +You just had it . +But I also think it will set them up good . +There was no music at all . + It 's too much , too much . + But it 's your house . +It was down and way out . +Or if they did , they would not say . + But it 's still here . +Now he is back . +This is a way to do both . +He 's out there every day . +We had good years last year . + Best Use of Money ? + That is the way of life , he said . +But we did all that we could . +I want to make the best of it . +Do you know what is going on ? +And it has nt been . +He did not last week . +No one is going to work now . +He should nt have been . +That could take days . + How long should a family go through that ? +I do nt think I know it all . +You can get at what people think . +And much more money from business . + It 's all part of our game . + I think it 's what the people want . +How big is too big ? + It was nt about the money , she said . +So this is the year . + I could make money . + I can not go to school for another four years . + I do nt know what we are going to do . +There was no time for school . +I do nt even know what to say about it . +We just have to play all out . +That 's what this one is all about . +That should do it . + One of us used it every day , she said . + And we are not going to do that . +We said : This is what it is . +Was this what our life had come to ? +But that was not the end of the case . +And I think we know what they are . +That is the American way . + It would nt do any good . +There 's just too many people . +So many did nt . +Where does he come from ? + Not this time . +And there , to the right , another one . + There is another world , Ms. Long said . +How well did it do there ? +And in the United States ? + I do nt want to go into that . +I know about her work . +I think they do ; here they do . + All the off days have been good for me . + We all have to do what we can . +We do nt do that much . +It would make my year . +People say it 's good . +So what do you do ? +He does nt have to take over a game the way he used to . + You could nt make this up . +But I could not . +And so she was . +She said Good for him . +How did he get there ? +They are not made . +But it 's a new year . +I just did nt go back . +I was the same way . +How will I play it then ? + But I have nt . +The group set to work . + He 's been through it before . +So get over it . +And , you know , you never know . +Do you want it ? +You set your own ? + It 's the only way to go . +NOT with my money , I do nt . +You have to be good all the time . +It 's like family here . + And I want you on my team . +Who do you go after ? +Team of the year ? + Not so , he said . +You have to show what you are . +That was about two years ago . +You are there all the time to be with her . +It 's a man 's world . +How you get here . + He did nt know Will that well . + Or is he ? + But that will come . +Take it to the end . +It will be me . + Now , no , she said . +That 's all I can do right now . +The first is no one . +What is there to say , after all ? +They all know that . +He does not want to go to school . +But last week he was all right . + We are not very good when we just play , he said . +All of us do . +Can I have that one ? +I would nt if I were you . + Even now , after not all that much . + And we said , Well , do you have a play ? +In which case , he may well be right . +There 's no going back now . +Little New , but So What ? +This was to be his year . + This is what I do , he said . +Who would nt want to know more ? +That is a big if . +But it 's not what we are about . +There is no center . + That was a long time ago , he said . +It 's a big if . +They might well be . +And is nt it about time ? +Man without a country . +And I was part of three of them . + And on and on and on and on . +Because you are not . + You just have to work through them . + But I like old . + I had to do it . +But not as much . +Are there any left ? +Which is what I did . + You have to be . + Now and Then . +They have a home . +No , I said should ; I did nt say will . + The first part of the day is over , he says . +So I back it up all the time , right ? + We found a way to do it . +If you know her , you know this is the best of her . + And on and on . +And we are as good . + I like it very much , she says . +And , in a way , they are . + Just the way a day is . +I do nt know where we are at right now . +I could nt take it all in . +Most people are good . +And if you do nt like it , do nt be in it . +He was the second of five children . + That 's what you are here to do . + That 's what it used to be . +That 's what I do best . +He has two children . +It was not the first time . + He was going to work , he said . + And in way , he should . +And I think business will , too . +But it 's here . +And how many of those people are there ? +The world was not with us . +But it does nt work like that . +But I did nt think about it . +And we know now who was right . +This is our house . +What it has not said is when she will go . +But people do nt . +He found all but one of them . +I just want him back . +This is one more . +That is what she will do . +This may be one . +It 's who I want to be . +It will be a way of life . +So what 's he going to do ? +It 's Good for You . + Can you make me some money ? +And what 's that called ? +And not just from that . +Or so he said then . +And I did nt want to be that . +But we are out of money . +John was nt like that at all . +I want to make the most of it . +Still , I do nt want to make too much of that . +I did nt like it at all . +Can you say that ? +I was back at work . +The country has just under a million people . +I do nt want him to do it . + I was out of it . +After school , they should play . + That 's all I know . + Or what it is . + They have to have it . +But that 's part of life , you know . + That 's about it for now . +I said to no one . + He was A . +I was out and I have never been back . + And she said , Well , who would nt be ? + I have a year left . + And this is just that time . + It has nt been used much . +They just do nt like me . + Where you been , how you been ? +But he was not the last . + It 's not the only one , not the last one , but the first one . +But they have to play , too . +And this is all that 's left from them . + There come times in life when you have to say no , he said . +There is a way to do both . +That would do it , they said . +It is war now . + They did nt work out , he said . +He will be out in a day or so . +Can you do it all ? +It 's the night . +He 's going to do that from time to time . + In the game I do what 's called for . +She now has one or two . + Well , it 's not here . + You can only do so much . +He will have to be . +For a few days . +I want them back . + This case is about the children . +I did nt , so we did nt . + He called him . + This time , it 's you . + This is going to take a long time . +She 's used to this by now . +I did nt know he could play . + Just one more , she said . + Now we can have a life . + They just should not be going there at all . + He has nt had the best year , he said . + She 's not here right now , I said . + It was a game . +What can that do ? +How can I put you down ? + Not his own . +We are in the game . +I know I can . +You know what yesterday was ? + I do nt know of any such case . + So , what 's new ? + It 's my own . +So what 's out there ? +I want to know who 's going to take it from us . +I like you very much . +Also , it 's white . +What was it made of ? +But there they are all the same . + Right now , we have to go all out . + And that 's where I will be . +We know what they are . +But that was five years ago . +It should have been the time of his life . +And it had nt been . +Are nt we going to war here ? + What if they do nt like it ? + That would have been it . + The A 's only had him . + And he does just that . +As it may well be . +I never did know . +I would go back into the house . +We all want to get there . +You could get on with your life . +That 's not the way I think . +And we are in there with them . +But it did nt do much good . +It will have to come some day . +I have three children . + What would I know about that ? + Next time , it might not be that high , she said . +There was one season I did nt even do it . +Night in , night out . +Like it was going through me . + If you do nt , you say they are not . + I said , Who is this ? + Over here is my house . + They said : This is your life . +People are going to think what they want to think . + They did , and he did . + What 's he all about ? +Who said he was old ? +So I want them to think about it for the next two years . +It was a big , big night at the group home . +They are that good right now . +That 's my business . +We are in his office . +Their time would come . +I know what we do . +THE SECOND WORLD WAR . +I did good work . +He 's over there with her . + But I think people will see through that . + No , I do nt think I can . +One is new , the other several years old . + I have a little less time than he did and a little less time than I want . +But it did not work out that way . +He 's never said play me . + I would never be without it , he said . +If we are going to play , we are going to play the right way . +Do nt say much . + I do nt think it will for a while . + That 's all I do , he said . + But there is only so much we can do . +That 's just not how they see it . +But where was she ? +I had to be here . + We know him too well . + They want to know , Did he do it or did nt he ? + It never did work out . + What is this about ? + He could see it . + Well , that 's not us . + What would you have us do ? + I just did nt know when . +Now , You Can Take the Day Off . +It was time to go out and get it . +We just did nt do it . + There 's only so much they can take , he said . + It was a part of that life . + But this is not about the money . + What 's in it for him ? +So how do they want to do this ? + It 's not my country . + And it has nt . + The day would never go by . +Where do I go from here ? + I do nt know what 's going on , he said . +We can still do it , though . + And I would , too . + That 's about the best you can do . +We can go back to when he first did nt want to come here to now . + I like people , she said . + It 's been so long , he said . +You did the best you could . +We are going to . +Who do you have ? + It 's that and more . + I would nt know what to do with it , he said . +So that was nt for very long . + If they do that , what would they then not have the money to do ? +But was it white ? + Because it 's there ? + I have to be here . +We just play good music . +That will put him in good company . +But what about these children ? + I want no part of him . +Where does the time go to ? +I , for one . +I want to be in here for a while . + We do nt want to play you , because you are too good . + But that 's all I can say . + This is never about me , she said . +We know that it is nt . + That 's his game , is nt it ? +But it does nt any more . + How is it in there ? +Where did they come from ? +And you can see it going . + We have very little time . + But we just did nt come through . +The time was right . +What 's it like in there ? +It was never going to be the same on the team . +It 's part of me . +And this is one of them for me . + If that 's what we have to do , that 's what we have to do . +What do we want to do ? +After all , it is your money . +It 's not that we are at war . +There is very little night life . + They are not my family . +How did you set this up ? +It was the law . +But all this was before he left two years ago . + You know what it 's going to have to come out to ? +It 's not good . +And that is on me . +Where are the police ? +I think that 's what I have to do now . + Come with me , she said at last . +One does not even have to play the game . + You are where you are . +I know where you come from . + Not too much and not too little . +There 's more to us than some people think . +Should we do it ? + She say , Me , too . +They may go to law . + Who 's going to have me ? +Well , it is your money . +But that was nt all he did . +People in the United States do nt know me . +We should nt have to do that . +His life and work . +I do nt think I would do that . + How much , we do nt know . + I like going , she said . + We never made money , she said . + This is all show , he said . + I still have it , he said . + What could he do ? + How was I ? + And that 's what I do every day . +It is for all time . +My family business is here . + But we are going to do it . +Well , he did nt . + It 's a new world to me . +They still want me . +Is that all right ? + Now , was I right about this ? + Now we know , and it 's one out of five . + So this does nt make up for that . + It was like he was nt there . +You have to work with people in this business . + One of the times you are there , you are going to make it . + Then I want to know who did this ? +Too much time , they said . +If they are good at it , they do . + We are all family here , she said . +Four times this year . +That it 's there , I know . + They are not . +Man , that 's all right . +I was going to show them . +That , she said , will take most of this year . +Not a good day . + I would never set them so high here , she said . +That 's not to say we are going to back down . + And I do nt think I will . + Where would you go ? +And I still have them . +It does nt work for us . + How did one get here ? + You go on , he said . +I do nt think so , I know so . + He does nt . + I do nt think he had one . +But there is a way out . +Some do it , some do nt . +It does that to people . +It 's day by day . +I have been there . +That 's for the people . +Now it has it back . + It 's How You Play the Game . +They were all family . + What more can you say ? + We could nt even get up to the house . +It 's what we are all about . + Some people may come back to work , he said . +Until you see it there . + I want a day off , she said yesterday . +Well you know what ? + If you say , What about us ? +They do nt like it . +They are going to go . +But that money has not been found . + That 's what we did . +If not , so be it . +I put people down . +If Where Are We ? +DO we or do nt we ? +Your money or your life . +But there was some of that . +No way I can play out here right now . +We do nt know where they are . +I still do nt have them down . +But I never had . + We do , and my office is on it . +There 's too much out there to still play for . +What 's it to you ? + But I think people do want to get out of the house . + Now we are going to go out to them . + It 's just another business day . +And the old man said , Who 's going to make me ? +But that 's it . +But it is not all they can do . +So , I want to be a part of it . + That 's good by me . + We may not like it , but that 's not our business , she said . + For some of us , it was a little like that . +I have two like that . +He has made up for it , though . +What is in it ? +They come from money . + This I did nt know . +Now it 's with us . +You want to go back with money . + When it 's time , it will come out . +We have four children . + And it was nt . +You could nt be for that . +It 's much more about what is not said . + Years ago I did very few , he said . +But that is about all she does . +But he was nt right . + But right now I do nt see it . + But do nt you see ? +At first , that is . + We are part of the world . + They are here because they want to be here . +At the same time , they have your back . +But he had a right to be . + I want them all . +That 's not the case . +But that 's just the law of the street . + I do nt have a country . +My life is just out there . + It 's about us . + This is just the way it is . +But not with each other . +Many may never be . + It would be over in a day . + But never in public . +I want it now . +He had to be the one . +I do nt think they should come back . +Last night , there were . +Now he has the time to go there . +You get the music . +I still think we have a good team . +That was the best . +But she may not make it until then . +But I did nt know that then . +In any case , there is little time . +I found another way to do it . + There 's not too much you can say about it . +And on the first play ? + But I could nt come up with the big one . + And he was . + That 's her . +They may still not have it right . +How well does he know the music ? +There are four now . + I could nt put it down . + Right now , they are . +He does nt play right now and that 's where he is most of the time , right ? +A : No , I do nt . + Did they get it all ? +But what did I want to do ? + There 's only one way to go . +He : Very good . +How do I get there from here ? + They did nt like us before . +The program will last another year . + You do nt have to know much , he said . + When is it going to end ? +I did nt know that this time . +They get to know you . +Not much to go on . +It is nt me . +He was right about that part , too . + I think you will be all right , he said . +We can do this another time . + If this were New York , it would be just another day . + You just do what you can . +Every day off was family day , and off they would go . +Last year , I did nt . +But how big is the market ? +Well , is there or is nt there ? +WORK is not play . +But she said it did not . + It was just so big . + And there may never be one . + They would nt want me back , she said . +If so , good for us . + I know what time it is . + It 's about John . +It 's all for me . +It 's never been out . + It did nt work , he said . +Even if it is nt new . + She did nt want to work . +Not if his season is over . + As days go , today is a good day . +I will say this , though . + But this is me . + From Here to . +What do you so say ? + They have no place here . +That is how the game is . + We want you here . + We do nt want them to get used to us . +I do nt think we should . +This is a people business . +This is me now . + Make him work for it . +I never take a day off . + How many times have I said that now ? +Do nt take him up on it . +What is it , after all ? + But as a city , we have to say : What next ? +I do nt know that end of it . + It 's up to the police . +He did nt say no . + We like each other 's work . +Who did my people know ? +But you can only do so much with money . +Does he know her ? +How do you want your life to be ? + Very good , she said when it was over . +This is too good . + Could you show us ? +But they did nt . +I still had a family . +He 's a director . +And we are it . +But this has never been the case , and it is not now . + I know , but I think I can do it . +But the state can not do it . + It is a good company . + To many people , it was nt the first . + That 's just about it . + But out here , I do nt have to . +Now I think we all think the same way . + We have our own home . + Which is best ? + I have to think of my children , she said . +I do nt want you to go through that . + This is just too much . +How much was there ? +The world is going to see . + She said , It 's over . +It was his first show , too . + And it 's also made my family what it is . +But what is it good for ? +You are in business . +But I want to know where we are . +And play he did . +What do you do next ? + I think out there now , he said . +Then another one , and another one . +What do you think about the play ? + Now they say only , We Are Here . + So that 's part of me . +One of our people called the police three times in one night . +He has to do what he has to do . +That 's all there is to me . +It 's right that they would make me do that . +They are both so big . +And they have a right to be so . +They are back to work . + How long does it last ? + I do nt think they will be the same team next year . +He is now its president . +I can do it without you . + We were in the right place at the right time . +I did nt go there . + What would that do to New York City ? + You can have your money back . +It just did nt work out for us like it did last year . +It had to do with life . +We have all the time in the world . + And he can not do it . + What Do I Do Next ? + They going to do that for what ? +And she had still more to say . +It does nt work that way . + I said , Where do you want to go ? +And now she can . +Or even with it . +If he could only see the place now . +But what is down ? + And this is his team . + They do not know what to do and how to do it . +As he said : That 's part of my game , too . + We just did nt do it . +Did I know what to do ? +There is another way to do it . +So that 's that . +But was it right ? +Now she could use a little too . +He just has nt and is nt . + It could only be him . + He says , Never . + My day , he said . + I just do nt like that . + It 's a new day , she said . + That 's what this city is all about . + I think he is right . + That 's what people say when they come in here , he said . +Who do you think this is ? + It was good to see a few go in for him . +But it 's on you . +And some we do nt . + We could do without it . +It is also New York . +And that he has . + This could be her last game . +There was all the work in the world . +Here was the best part , though . +I think about them . +They were like part of our family . +The general : He had to be . +But that is not how people here see it . +But not our house , not that week . +So what was she ? +We should have just left it . + He 's good to have on your team . +Had it been that long ? + Then I come down here . +But not even those were the city 's first . +But it 's not for her . +It may be so . +It was the last case of the day . +All is not well . + I still use it . +I just like my team . +And who would nt ? + We have to do this every year . + It 's up to you , he said . +And where does it end ? +What should I do next time ? +It 's the game . + I do nt know another way . +I know I can work with people . + I never had a best school before . +And just how do you do that ? + Is it just me ? +You know how people say , Get a life ? + They never do what you want them to do . +He too had his day in court . +It would come with time . + I could have had one , he said . +There 's more money down there . +I did at first . +It was big for us . +But where do they go ? +But they were there . +If it were up to me I would nt even go . + But it 's not going to be the public . + It was nt very good , he says . + It 's called life . + Only a few can make it . + But this was a good day . + Who would nt want to do this ? + Here 's the play . +That 's what people want to see . + How can this be ? +You do what you have to do . +I would nt go in the street at night . + Not every night is like that . + I did nt do it , he said . +He left , too . + But I say : I do nt want it . +But how did it come about ? +That 's all there is for me . + That 's over now . +No , they could not . + This could be one way for them to make more money . +In the end I did nt . +You have to last through time . + Little did they know . + He was what ? +But in all , this show 's no good . + He just did nt see it . +He had come a long way . + She put it in Life . +But he does nt show that to me . +I made the best of it . +That 's where they are . + You have to like that , he said . +Is that the same ? +He is its president . + I had to get out of there , he said . + You never get out . +Some are going to have to go out of business . + Well , I think I know . + We go out of our way for our people . +Today 's the day , their day of days . +It was nt white . +This is the game we want . + It 's the best way I can think of for the people to get to know me . +If so , where did it come from ? + He did nt have it , he said . + And there are nt any . +That was what this was all about , right ? +If I called them , they called me back . +Many would come home , one last time . +In that way it was like another life . +There would be no second day . + I just want you to think big . + You can only work with the people who come to you . +This is all I will say on this . +People are going to be on his case . +She was not home . + We do nt like each other this year . +She never used it . + People say , But what can we do against the state ? +When I get money , I go to get another one . + You know , it 's just after a while you get used to it . +You are as good as your last show . +If not before then . + You are back . + I do nt have to like it . +But they may not be out . + Are nt they all ? +And they have company . +What has been his ? + But it 's not the end of the world , she said . + Most people do nt like us . +It may be the best year in a long time . +It will be big . +How long will that take ? + There 's no way to know . +This can take more than a week . +But they are a very good team . +I did nt know how to take it . +People get used to it . + It was long , she said . +At the same time , it is his life . +It was their day , all day . + And she said , Well , I just did . +It 's not like us to be that way . +We get no Federal money and no state money . +Just do what you have to do . +And all because of days like the one I had last week . + If I say , Is this good ? +It 's a long week . +I would be , I know . +I think we know . +The next day , they were right back . +But he 's not going to do that . +But people do nt know about us , so we go to them . +It will be a state . +That 's where it 's at . +There 's life for me . +It was just : Who was the best ? +So I think it 's all right to use . +This is not good , not good at all . +That they did not do . + He said she had not . +I do , I do . +Will the money be there ? +Like , he said . + Out , not in . +That 's the way to play well . +It was just out of place . +How can that be ? +But it will be one of those three . +BUT all that is for another time . + We were just like you . +Was the money put to its best use all the time ? +They did nt think much about it . + All right , do it . +How much time can that take ? + If I do , I do nt see it . + How much time do we have ? +So who did it ? +But just for this day . + You can see we do not have money . + It should be good , he said . + Just time and time . + Even one is one too many . + No one left . + Some people are like , I do nt want to do it . +And what does she say ? + You know what I think ? +It 's going to take us a long time to get over this . + I do nt know if he did or not . +If you do nt , it 's because he does nt want you to . +You have no home . + You are all right , I said . + I did nt know it , but she did . + I could nt get on . +Do you know how to set one up ? +It 's high time . + Do you have children here ? +I still do nt know . +Less , here , is much more . +We know each other so well . +Now , he said , she does . + They never think like that . +What 's it going to be used for ? +And I did nt think much about it at the time . + There are two people on a team , she said . +What are you going to do when its a President you do nt like ? + Have you found him ? + How does a family get through this ? +I would think about her too much . + And I said , you are right , how did you know ? + We had to come here . + Dr. House said . + My family is there but no one can get through , he said . +But it 's there . + So I called him , he said . + It may take two , three or even five days . +If you do nt want to have both , you are not going to have both . +The game does nt end there . + He did nt get to you ? +He did all right . +Now you see them , now you do nt . + What do you think I should do ? +It 's people like me . +It was over the years . + I like to think that this is your home . + So we know they are there . +They did nt get one . +Are you going to out me ? +And if we do nt ? +You may never go back . +There 's a market for it . +Where do you house them ? + That 's not the way to play the game . +You are not him , are you ? + What do I want ? +But he has no family in this country . + Could we do as well as that ? +Now they will know what war is . +Did nt she have children ? +I said it 's all right . + It 's just like it was yesterday to all of us . +We have to work for it . + We all know it . +Would I do that ? + What can you say about that ? +He 's going to play the same game . +She was not political , she said . + They said , What can we do ? +If not , who would he be with ? + I had to say what I did . + We know who we are , he said . +And I would do that . + But it did nt say that . +This is not to say that American do not . + You never get over it , he said . + For them , it 's not home . +Is this the case ? + And that 's over . +We want more than that for our children . + So the women have to work , too . +Here 's to one and all . +He made the most of them . +He has four children . +He is one of the best people . +And he does nt like me . + They said , Get here when you can . + See how they like it . +It was nt us . +They like to go there . + It could be all white . +Be the first one there . + I said I did not . + I want to get one . +If you have it , you have it for life . +That 's where it can make some money . +He is still that . + People in the United States just do nt do that . + It will be my last , he said . +So how did she get from there to here ? +You can say it . + It 's a no . +It is about me . + That too , he said . +Who would nt want me ? +I did nt have one . + You never know when . + They get to know you ; you get to know them . +Then there 's the house . +Do you want one ? +And it 's not just New York . +But we can get them . + No , he did nt . + They know the program . +You do nt know what to think . +We are going to be out there with the members . + I was going to get it . + That 's what you have to do . +But he was going home . +Should we want to ? +What 's on the program ? +It can be too much for some people . + If we want , we can not show people . +And we are one of them . +And so it was , the first night . +It is what you put into him in the first place . +We could nt go out like we used to . + There is no second place . + We say to each other , Who is that ? +But one game does not a season make . + And then the next day , What did you do yesterday ? +Over , under or around . +It 's been here . +Then he said , No way . + You were there , he said . +I said I had . +It is also against the law . + The people in the company were old , very old , she said . +After all , it was nt as if it had nt all been said before . +So we are even . + Many of these people have been with us for years , he said . +All of us were . +Where 's the play ? +We will do the same . + He could have said more . +Not so in police work . +Where does it end ? + It was the White House . +I think they have a good team this year . +You can take it from there . + It 's because of the way he is , he said . + It 's on the street right before you . +Yesterday , he did . +Is that I want it to come . +All the same , she did what people do . + Here I get to be with the best and make so much more money . +This is all new to me . +There 's no one up there . + We had to work with all of them . +But he was part of it . +No , it is not and never will be . +They have said , no way . +People do nt want to go against their own President . +I want to be here when we are back . +There 's no one here . + I do nt want to go back , he said . + Now it 's around two . +I want to have a life . +Is that what you think ? +It 's a good show , but that 's a little much . + No one has it right , he said . +He did not get them out . + Well , it 's not . +They had two more . + Now it 's every other day . + I say no , it 's not . + I think I know what to do now , he said . +Well , now I know . +We know that it will not work out like that . + That 's that . +He does nt just come out and say no . + That 's what people see in it . + They say What 's new ? +That 's what I want to do and be . +They are so very like us . +But they said they could nt . +There is a market for such people . + We have so much and so many people have so little , she would say . +If they say you have to go , you have to go . + But now , it 's all right . +We do that all the time . +But I did nt think we were going to play . + Does the state come up with that much money ? + She had nt come home . + Do nt get in it . +What if we did it that way ? +You can make money . +Where do you go for that ? +WHERE DOES IT GO ? + And I would say , Is she ? +Know -- and Does nt . +One way or another , every one of these does . + I think of the children she could have had . +But it just did nt work out . + People who are out of state want to come back home . + There just was nt no way to make it work , he said . + There are more women . + Our season is not over . +So I think that they are good . + How could you do that to me ? + I think we know where we are . +Where do you want to go ? + Where do you think he is ? + How can I put it ? +They are the best in the game . +And on it , THE GAME . +That day still is nt here . + It 's been four years . + That 's not New York . +We were all off . +Just the way I like it . + We were a family . +But with me , I know what I want to do . +Is her life as it was ? + I do nt like it , she said . +I did nt know what I did nt know . +If you have nt had that what have you had ? +He did nt have to be . +Her three children were at school . +But it 's only one way . + But it was nt the same , he said . + I do nt have children . + It 's the life , she said . +Where are these children to go ? +We have to have them right now . +He just will not say so . +What did the Court do ? +Not like in your day , the old days . + I said , How could you even think of that ? + I think this is for us , I say . + I did nt think it was right . + Now you see them at any time of day . + I do nt know if this is the right time , he said . +It was their game . + He did that , not us . +But you have to have good people around you . +And that 's our world . + That was his life . + We were like a family , he said . + That was me , he said . + Do you like school ? +You can see it . +My work is in New York . +He is the only one who can do it all . + That 's what will get more people here . +They are the new family . + And it will show it , in time . + I said : You can say new . + But how would they know it 's from me ? +We did nt know about that then . +I have no place to put it . +I just think about it all day long . +But it 's not going to be this year . + She has not been . +And , they say , it does . +It was nt that . +Now we just have to go out to our place . + But that was at night . +It 's every day , every week , every play . +The war was nt over . + That has nt been the case . +After that , you are on your own . + I have to go , she said , and did . +What is this , and what should I do ? +You just have to make it up on those that do . +And what did you get ? +Because this is nt last year . +You do nt see that much any more . +But he could nt . +I like to think so . +No , they are not . + Well , it 's not very good , is it ? + This life I have now , it is too much work for me . + I just could nt do that . +This is not your second home . +I do this for him . + It 's work . +It is in this one , though . + They said , go get it . + I do what I can , she said . + Who can say ? +And now they come from all over . +You want life to go on . + This is what we play for , he said . +She could nt make it to the end . + Business has not been good . +No man should know so much . +Make that five million . +People would think I make them up . + I want him back , she said . + How does he know that ? +So we did , just like that . + But Will It Work ? + We were home , he said . +Just do what you know is right to do . +For what are you come ? + But he did nt want to do that . +But you do have to think about how much . +She did not go . +Now , I have both . +And there are more . +It did not say where . +Way out to be in . +And she is right . + That 's what we want here . +But I do nt know who that is going to be . +Now it is here . +And there I was . + Now it 's work . +Well , not at all . +What to make of it ? +But if it does nt ? +This case had it all . +He had no time . +That should have been the end of it , but it was not . + Today was only one game . +He was one of us . +I do nt know of any . +I said , What is it ? +Get him out of the house . +You just have to play it . + They are very good , she said . +It 's not for the money . +It 's about what I do here . + Over all they are very well made . +But they do , they have . +Was that all right ? +She was out there for so many years . +He could do it this year . + We did nt know many people . +And it would work . + So much for that . +We do nt see it . +How does such a man get to be President ? +If not , just go with it . +I do nt think I could . + I had to take it with me . +How can they be ? +They can do all of that here . +The money part of life ? +And then what do you do ? +Our business is in here . + For me , that 's not the case . + Our life was so public , he said . + I just make time , she said . + And then he does . +When did you know it ? +This is all these people have . +So the game was made . +It 's my program . +And then they are over . + We have to be there for each other . + Well , what can I say ? +And that 's how they like it . +But both before and after there were other women in his life . +If you want to play , you play . +People are still on my back . + What do they think we are going to do with it ? +Come back in a year . +But it was the best we could do . +This is our city . +You do nt know that much about the company . +How did they know we would nt like it ? + Well , here we are , he said . +Come here and show me . +I still had so much work to do . +Or he does nt . +She was there , too . + We have nt had time . +But I take it . +It is much less so now . +We will do that . +I still do nt know what he said . +He did nt know what to say . +For him , more was less . +Most of all , you are such a man of the city . + It was like I was on my home court . + Now I know that not all people are like what I think . +Their season is over . + I do nt want to think about it too much . +This is when we work . + She did nt know where she was . +What might that be ? + I just could nt show it . +They want more than that . +But the one that can , may . + But there is no work . + See , he said . +Now it does not . + This is our war . +We never had that before . +So then , it was a year of . + Because they were his , she said . +Few people know what it is . + Where 's the police ? +She was back -- one more time . +But he said he would still play . +Of no other American city can this be said . +I think the Government put him up to it . +We could do it all . +They just left him . +One way or another , she did . +If they do nt know , you are not going to know . +How can you do this to me ? +The general set me up . +But I did nt do this . + It 's about now . +You can see it now . +That could work against them . + We do nt have too long , she said . + It was not good . +Say it a few times . + I think they get it , he said . +We know what we are going to get and it will be good for us . +Now I want to play as long as I can . +Well , it does nt . + Who did you go with ? +There is only first place . +I do nt see them up here . +Not being a good one . +Some do not want to go back . +It may well be the second . + I like this state . +It has been that way for a while . +It was the president of the company . +Take me to the police . +Are you or you or you ? +He might have been the only one . +But in the United States ? + Last year is last year , he said . + I see that as part of the business . + There are many of you who just do nt know who you are , she said . + You are out of state . + This is what this will come down to . + But you have to do it until you get it right . + I want my money . + Is nt that like life ? +And if he had ? +This was our game . +By the music , too . +What are we going to work on ? +How long you in for ? +But that is not the end of it for people here . +People are used to it . + It 's a big year for us . + You never had them ? +Those were her people out there . +One or two make it . +But there 's no more to be had . +On a good day . +It 's part of what we did . + How old were you ? +When is a good time of year to do this ? +They have not made it since . + He 's too old . + And he said , You do , too . +IS THAT ALL THERE IS ? +But what about this ? +How could you not ? +New York , after all , is a center of music . +Before you know it , four years go by . +And with it , the game . +Where should he or she go ? + That 's not good . + There 's no money . +There is still a long way to go , though . +Well , that 's all . + But no , not now , she said . + Today , people want more . +That 's second best . + Do them , one after the other . + You can see he 's all about team . +Like most of I . + Another said , Do nt do it . + We are not like that . +We are right where we want to be . +We think he has . +They did what they could , but it would nt work . + We will not go to an American court . +But it did nt last night . +It did nt come . + That where we are going ? +Life , he said , would go on . + Would it work in New York ? +What might she like it to say ? + Every time you think they are out , that 's when they come back . + I did nt think I was going to make it . +What do all these people want ? + Take it for what it is . +And even if there was , what good did it do ? + I do nt know what is going on , she said . +You do nt know where it 's going to go . +This year there have been two . + Not good at all , he said . + But I know I left him , she said . +Do You Want To ? +They know that , we know it . +That 's where we are now . +I was going to have a family . + Here , they do nt go for that . +I do nt think it 's because they do nt like me . +I have not the right to do so . + We want her to think so . + WHERE are we going ? + But it will come . +This time I was going to make them . + It 's because of people . + You can go home . +Is it good , or not ? + They are going to have to get it , she said . +And you can do that and have a good time . +I had to take him with me . +If I do well , I should play . + Like it 's home . +He said that first he would have to see who they are . +If so , for how long ? + I do nt have the time . +He did not play most of last year . + That 's the way he was , she said . + How do we do that ? + No , he said . + She did nt get it from me , he said . + That 's all ? + I do nt know where it is . +And then what would he do ? +It is all new to him . +Not so at all . +They just want us out . + That 's not the way it 's going to be . +So that was the game . + They were all over the place , she said . +The more you know . +But what about last year ? +She should be at school . +We like what we see . + Not so much , he said . + So they did . +And the Big Three ? + Some may go out of business . +We do nt want them . +But she never was . +What are you going to do for me ? +That 's what the house says about us . + This is what you have to do . +Where 's it from ? +It very well could be . + But I could nt not have him . +He is a former president of the United States . +But how will that play out ? +It would take him a while . + And she said to me , Is nt that the way it is in the play ? + You are not going to get those years back , she said today . +They are not long . + Now what do you see ? + All around the world people know that place . +At first , it was one or two . +It 's not that I do nt like him . +Not so the war . +So are the police . + How can that be the case ? + It 's all good , he said . +Good for the game ? +It 's like the white man in an American city . + The law does nt work here , as it should , he said . + And it 's still not over for us . +But not next season . +All were set at night . + Before that , I had it long . + But we do nt want him back here . + No , it 's not , she said . +What do you do about that ? +Several said they had been in court in just the last week . +Out With the Old ? +And Other People 's Money . +We have to do our own work . +I think that 's what it says . +We come back here . + This was not about money . + We are still going to be here . + What he says , that 's it . +It was like that now . + What 's there not to like ? +It is their first home . +And the day after and the day after that . +I work because I have to . +A : That 's right . + That 's the way I play the game . +I want an end to it . + I do want that . +A PLACE IN THE COUNTRY . +And they are not . + We do nt go one without the other . + He 's that good . +Many do nt last long . +I do nt know what they are going to do . +Some do not like him so much . +And I should nt . +I did nt play the way I should have . +It was never the same . +And I like them very much . +Most of them have no work . +And that is about all that is said . +Just the way it used to be around here . + It was a big play for us , he said . +You know what I can come into this market and do to you . +It 's been like that all year . + People know what they want before they come , and they go for it . +I could still go back there and do a show . + Because that just was nt right . + I think , Where can I go ? +Now it is just good . +So it 's up to them . +They all just want to be a part of the team . +And that 's where I want to be . +They are a good team . + I said , Are you still there ? + I think they only do this for money , he said . + Say , I like me . +We just know that . +Those were the people I would go see . + I know what it 's going to be like , she said . + What can we do now ? + So you get him while he 's down ? +The time for that should be over . +Do you have any ? +I did nt know what I was going to do . + I had to play . + Not as long as it can be the game of the year , he said . + They come to see me be them . +I do nt want to go out and then go out for a long time . +You should see this place . + This is more than I would like to have , he said . +But never in public . +It was some man . + They are all big . +It 's going to be the first of many , he said . + But we are on our way . + Never been there , he said . + He said that ? + I just do nt know how long it will take . +He was home for the night . + I want to do that less . +They have put me out in the street . +If it does nt , we still have a very good team . + Which is not the case at all . +To do what I can do . +The next year was more of the same . +We like the way we were before ; we like the way we are today . +But I had very little money . + It will work out next time . + I do nt want him to go , she said . + But it did nt work out . +There were a few . +Then go , go , go . +For us , it has not . + Do you know where he was ? +But he is right . +Now they have another new director , this one a man . + I said , What do you want me to do ? +So , in the end , will I . +That 's their life . +That , he could nt say . + It 's just to see what he can do . + It 's not like years ago , he said . + We have nt been . +Did nt he know any ? + It 's the only time to come here , he said . +His play has been up and down , down and up . +That 's not going to be the case . +To you , from me . +I have been there , and I know . +Would you still like to see the show ? + I would say : Do nt you get it ? +It 's their government ; it 's their country . +But there 's much more . +He was out of the country at the time . +And that may take years . +How long will it take us to get there ? + Did you see that one ? + We were going to make it up on the day , says the director . +It was time for . + Go and have a good time . +He may not come . +His children are here . +His night was made . + What might they be ? + And they do not . + This was now or never . + Is nt that right ? +No one would come . + I say never say never . +Now they have one . +We have what we have . + But it 's so much more than that . +It 's a way of going back . +There 's never been one here before . +And you know where she 's going ? +I make money off of them . +I think they want to . +He 's there every night . +How many members of the right will want their money back now ? + She said , I do nt want to do this . +He was and she did . + We said it was nt . +And it can not be so . + But that 's about it . +Some people have made a life 's work out of it . + No , no , no , no , no , he said . + Most of the people who come in , though , say : I do nt know what 's going on with my life ? +But her family does . +Because she had never been to New York . +They had made it through high school . +But you do nt like me . + But how do we know that this is so ? + I can not see a way for this to end . + How do I know ? +But there are more of us than of them . +People know what we are going to do . +She did that for me . +Well , they do and they do nt . + We did nt know where it was going . +Where do we go from here and how do we get there ? +The less you see , the more you want . + It 's all the same people . + They want their money one , two , three . +They did not know each other . + You know it could have been you . +And if she did not do it , who did ? +It was not his . + We are going for it . +But for now , all is well . + I do nt know him , she said . + I do nt know how you get around it , he said . + You could be set up any time . +The time is nt right . + Some people , she says . + But I do nt think that people are out to get me . + Well , I do nt do it for money . + I just want to see . + About Time , is one . +Then you get good at it , he says . + Well , I said . + To me , it was a good play . + She 's too good for that . +They do nt want to take you on . +I know him well . +Each one is the same . + When will he be back ? +Is it from the Old or New World ? +If people want to do that , as many of us do , there 's a way to do it . + He said , Do what you have to do . + Then what did ? +This is going to be a good team for a long time . +Children go off to play . +And what does one see ? + I just did nt know what we were going to do , he said . + They did nt want me before . +I can not do that . + I do nt know how he did it , but he did . +He has the money . + But we are in first place . +It was nt just the music . +I want , too . +No one here is , though . + But by how much ? + You just have to . +Today is his last show . +It was as though she found me . + But he said : Take it . + He was from the old school , she said . + How is it going for you here ? +Last in last year , first out this year . +But you do nt see all the years of work I had to put in to get where I have . +Because it 's not our way . + That 's the only right they have , he said . +But he 's very good at that . + The people are nt there . + And who might that be ? +If only he had . +What do they do for us ? + What good would that do ? +He just did nt say so in public . +What do they think we are ? +We should nt be here ? +I do nt know if he can play . +We did our best . + And he said : . +Who did this to me ? + And it was nt on the left . +Because this is New York . + You can see how much time we put into this . +That 's what you do . + I think you are right , he said . + Before and after and in between . +Well , he said them . +It was also a place for night life . +What did I do to my family ? +I want , want , want , want . + Well , four , he said at last . +You do nt know how long it 's going take this to work it 's way out . +How did they do against each other ? + Play your game , he says . +I think it 's just right . + Today 's his day . + I did nt want to take them back . + But that 's the way the game is . +If he could not , he said , he would not play . +You just want to be there . + Is he the only one ? +We are still in first place . + How long have you been here ? +And for most people , it is a time to be with family . +You know what that can do to you ? + She may be right . + I know I was . +So it was good . +Can the good will last ? + They were not all in one place . + Who is going to do what ? + What good is that ? +And so will my children . +I could not go to school . +I can get by them . +They come here to play for me all the time . + I said , Now what do I do with my life ? + We had two . +So it had to go . + We are family . + Every time we play them , it 's not just another game . +Come , come in . + But it was a long time to come out and play . + I did it here , she said . + The president says he 's all for it . +People said it was him . + We had to go around . +I did nt have to say much . +She was nt home . + I know I would . + And that 's all I have to say . + You have to show New York the way you want the world to see it . + But I do nt know when this will be . +Then go back home . + This is where my house used to be . + Today was just her day . + And this is it . +His family will be there . +He does not even own a home . +And then I did it . +Well , just do what you can do . +Now is his time . +He was still there . +The same might be said about me . +I like the way she is now . +Does it know even today ? +What company is that ? +We play our way . +Well , you would nt . + You know that , right ? + Then : I do nt know . + This team would nt be here without me . +They are going to get us out . +We know now what a big game is . +The place does nt work . +Me : Right on . +We are a business . +Now you think about this . +That is our way . +We want to get this program back to where it was two years ago . +I think he was . +I do nt think any of us were . + It 's what we do . +I would never go back , though . +It is never one to one when they say if they like it or do nt like it . +It 's not about us . +I did nt see that two years ago . +There is no other game . +And it 's a good one . + They should have been at home . +He may also be the last . +We been there before . + He said the program would go on . +This time , he did not make it . + You work through it , he said last week . +But not like the first . +For the most part , they do nt know about them . +Other than that , there 's not much here . +That would show them . +They are not in public . +It 's the first day of school . +And that 's what we are . +The other company will now . + And I said , You can use my house . + This is home , he said . +That 's what all this is about . + Last year was one of our best . + But I know how to do it . +And that 's just as it should be . +You see each other all the time . + No , no , no , no , no . +So , what about this new law ? +From all over the world . +How can I take him off ? + You were set for life , he said . +I would nt think of it . + This year , like night and day . +What does he do there ? + There 's no second place in our business . +Not after last night . +Still , she said , we have a long way to go . + What did I do ? +Who do you know best in New York ? +You can do another . + That I will do . + You make it the right way and they like it . +But this was too much . + Just think of what he can do now that he can see . + This is going to be around . +No , you know what it is ? + That was a way out , a way up . + It 's up , it 's down , it 's down , it 's up . + I did think that it could be big . +I want to see all of them out . +It 's much more . +I had too much work to do . + This is the man with the new music , he says . +And for a long time , it was . + They left out what it 's about . +I get those all the time . +Those are two big if 's . +He is not a family . + And he had . +Years ago , I used to do that . + No , I say . + It will never end . +Well , I would nt and this is nt . +You can see it in her work . +It was just like it was us three out there . +What about the there in there are ? +What would we do with him if we found him ? +There was some of that , too . + My company will go on , he said . + Good for you , she said . +How could she be ? +In my last year I . + It 's just not the American way . +Two , no play is over until it 's over , and then it 's over . +It 's the only way , now . +Come on out here . +It 's what they do have today . +Have you had any ? + What can I do ? + So we are going to do what we say and say what we do . + And we did not . +So what do I think about all this today ? +And in a way she is . + It 's over for them , but not for us . + I said : No , no . + It 's a business out there . + It was as if I had to go get him . +How did he get this way ? + It 's not the first time , she said . + No , not for this one , he said . +But he was family . + And the government will do good . +If so , how should this work ? + We all work too much . + I could nt play without her . +They do nt know me very well . + They have to make money . + It 's not right , not right at all . +That 's what it has come to . + I do nt know what that is . +It was going to be a long night . +But right now , I do nt . + There 's no police . +It said , No more work . +It had been some years . + They think about what they do . +I would go high , but not that high . +We do nt see it that way . +But that 's your business . +There is no game . + In this country , we do it the other way around . + He is going to have to work . +I did nt think I was going to make it . + There , there , little one . +It might very well be just like old times . + It 's your house . +Do I have that right or not ? +All that and more . +That 's how big it is . +But the war is over . + No , I do nt do that . +There was no one to see . + We are going after them , he said . + He 's as good as any in the game . + I have the money , he said . + They do nt know what to do , he says . + It 's never the same . + That 's not their business , he said , and I do nt like it . + It was the life , he said . + No , that 's not him . +What does he say ? + He would only say he was good , good . + It 's a team game , he said . + Where will it go from there ? + That 's it 's not over for me , he said . + If I have children , I do . +A : Never , never , never , never , never . + I do not have one . + You have to say , This is the way it is and here 's what we are going to do about it . + We have to do our part , too . + We are your family . + The children should nt have to see that , she said . +We can come back and be the way we were . + Not that way . +Where 's the President ? +I do nt think any of us did . + It 's not old , I know that . + This is old school . +Very little , if any . +I have my family . + Every house , that is , but one . + How did you know . + They have to , they have no place to go , he said . + I have nt at all . + It was his life , she said . +Just one big one . +It did not take her long . +What will they do now ? +Not so , he found -- and he is right . + Put it back , he said . +So I think that 's right . +It did not show . + He said , What 's that ? +IN THE WHITE CITY . +He 's going to take this country down . + What do you want here ? + They are not children , he said . +It may be against the law . + What he said was right . + I said , Well , it 's a part of us . +Now the time has come . +But no , that is nt right . +If it was , it did not work . +Come on , you all . + This might have been it . +I think people do nt know what it is I do . + She was so game . +I have it right here . +You can play with up to three other people . + I could nt see . +They have to go with the case . +I just want to do it . +The law does nt say . + We are going to do what we are going to do . +Both for him and for them . +Just because you say you do ? +Was That Your World ? + That was one game , he said . + There 's the man . +All from right here . + And we do nt have any money . +That 's all we can do , he said . + Then it would be like work . +But there are not very many of them . +But this time , we did nt have much time to get out . + Because they do nt like us . +Here , it 's like a home . +Until we do that , we are going to be up and down . + Never , the man said . +And it should do it this year . +Just not as much as one might think . + But people had a day to think about it . +That 's what made it so big . + He is the president of the country , he said . +All three made it . +What could they say about me ? +Women 's Team - United States . + And it still does not . +It is not a just world . +It 's your day . +Might there be more ? +That 's the other place . +Now the war is over . +That was my night . +The President and the law . +I do nt think he 's too old . +Would nt that be -- . + But it is not for us . +For This Week : Time out . +What good is it going to do me ? +This will not be the case . +That was a very long time ago . + That is your right . + And I think that is the case . +All in good time . + We are going to go to be with him one day . + It should be in use by next year , he said . + But I have to think of my family . + They are in the Federal law . +What do you think they are going to do ? + To us , it 's the world . +But after a while , there is too much of it . + I know what 's going on . + But they show it over and over . +A : No , I did not . + We are three years into it . +I would say no . +We should nt have to do that this year . + She was in between . +But not that much . + You can just do so much more here . +But she would not do it . +When 's the last time a team did that ? +So the Want some ? + I might be , she said . + But how do you get there ? +You would nt see that today . +My life is police work . + Put it this way , I said . +It is not a good place . +Is this a country ? + They want it so much . +Money is money , too . +And they said : Where did they come from ? +And which is right ? +It 's been my life . +And you are the war . +And , if not , should it be ? + And that 's what we should do , he said . +They said , How do you do ? +They are all over . +Where 's he from ? + I have nt had that in three years . +Also , I like the work . +For the most part , he 's right . +All day , every day . +And one way was the American way . + So this is a first for us . +He will not say much . +But these are not the old days . + I did it for the public , he said . + He does nt know what he does nt know . +There are too many children all around . + There was no there there . + It was very up and down at times . +This is his family . +What do you think of him ? + Business is good , he said . + This is my high , he says . +What does she say ? +Because it is up to you . + He does nt want it . +So what did we know about money at the time ? +How little we know . +But they did know . + That 's what it is . +If he had to play today , he could . +And if we can do it here ? + The end of the world ? +I was there at the right time . + They were so good because they were nt so good . +We know it 's there . +But it is now . + We are just going back home . +You used to work for him many years ago . + They are a team . +It did not used to be this way . + I want him to be . +But those days might be over . + But it was nt what we did in those days . +It 's the most life I have had in a while . +He was and he did . +I could nt say I did nt know . +He does nt have to . +It 's just not that good . +Who can be against that ? +But when John was still there , we had to take him . + You do nt know ? + It 's street by street , she says . +Then we will see how he is the next day . +Just get them out any way you can . +We are part of it . +I did not know what to do . +And so he has been . +The same could be said for many companies . + He 's not going to be here , he said . +So what good are they ? + First , we make good money . +She 's with you , too . + We will work that out over the next week or so . + You do know that , do nt you ? +But I had had it only two days . + But it did nt . + You see it , and then you do nt . + They still play the same way . + You know who was right . + We have them both . +She did not want to think about that . +I did nt have much to do . +If they get it , so what ? + Still , we are going to make it our own . + People here have money . + And that was all . +It is time for the United States to get back in the game . +So what 's not to like ? +Could it be more ? +I do nt think they do . +Who in the White House ? +You do nt see them around here . +But I should back up . +Not just an end to it . +This was their first time at the show house . + I do nt know when it 's going to come , and when it does , I want it out . +And this one is . +I do nt think he would have said that . +This is a first for me . + Now , this I did nt think I would do . + And what did he get out of it ? + But I could see how they could be . +Was that going to make her -- what ? + You want to go up ? +That is what people want . + People will get that , but that 's not what it 's about . +I called him today . +You do nt want that . +But it was nt the same . +Was he set up ? +That is what I did . + And they are so long . +This is the State House . +And more is to come . +It 's been four years now . + But it 's for the best . +So this is good today . +But I do nt think it was any more than that . +For the first few years after the war , each day was the last day . +It did not last , though . +Children are less so . + And , as we know , he did . + What about the good of the game ? +When he said it . +You think about it . +It 's all part of our game . + It is only here . +There are nt too many like that . + There is too much to see . +That is over now . +Where do people go ? + It 's good , good , good , he says . + This is about their family . + And I think he 's right . +They made the play today . +You do nt know . + I think we can get going . +They say they are in the world . + Did nt I come back and see you after all these years ? + I have to do it . + I like these . +I will say that 's it . + It just was nt there . +But it was up there . +And that 's what I would do . + We have to , she said . +What is he after ? +AT last the day of the big game had come . + But we did nt have time . + He would not be where he is today if we had nt . +We do nt know where to go , how it will work . +And is that the life I want ? +He is not one to take second place . +You get what you can when you can get it . +He made his own way in the world . +It was a school night . +So they set to work . +And it was nt long . +I did nt , but I could have . + All of us know you are not . +I do nt think it would . + They were there for me , she said . +I do nt think I could and also do what I do . +And I would nt do it . +And only one season . +For me , that was life . +This time it did nt work . + I like my team and I like New York , he said . +They do nt make any money . + It was the good old days , only we did nt know it . +Many make much more . + He had to come after me . + I do nt know where to go from here . +We will know them , and they will know us . + I just say it like it is . +You all know it . + We just have to get with it , he said . +As well it should . +It is about life going on . +There 's no way out of that . + That is , not right now . +That 's the way I think of him . +But it was nt good for me . +Here is a case of what you see is what you get . + I was good at it . +By that time , the game was over . +The West is another country . +We might not want you back . +So that 's what we did . +But we know how to do them . +And that 's New York . +After all , who is she ? +And she did not think it was . +Who has the best ; who does nt . + And that 's not good for my business . +I could nt do that last year . + Now we have the best from all the world . +The first is being there . + He 's a big part . +The best place has to be the school . + I do nt know how to put it . +There is nt any other place to go now . + She said , How old is he ? +They do what they can . + For us , it 's just been work . +We all work and play on the same team , do nt we ? +I never had other children to play with . +Or are we in a war with the Police Department ? + I think this is going to be more of the same . +Music is a big part of it . +But it 's that way . + We have the team that we have , and that 's the team we are going to play with . +How would he know ? +It will take me a long time to get over this one . +Do I want this ? +We were at our best . + They said you do nt want to be around the game . +In this case , it did nt take much of it . + Most people do nt . + You are going to have days when you are not going to have it . +It 's just the way it has been this year . +They had to get that show . +They are no more . +He said : This is your money . +It was the first . + You have to be in or out . +What if you did ? + This war 's not the same , he said . +You know there 's a family . +For about five years . +But it is not new . + Because I do nt like it . + Here it is , he says . + And the year before we did nt use any , he said . +But I said , I want it out . + This would be the end of that part of his life . + Now it 's a go . + She 's the last of the last of the last . + It 's like , what 's next ? +But there 's a but . +Made him a home . + He said , I want to get it over with . +How do you play ? +Or was it more than that ? +They want to play . + He 's never down . +But the Government does . +There 's only one place to do that . +So she was nt . +That would be the way to go . +I did nt know what to do next . + It 's now or not at all , he said . + What 's there to know ? +But today 's another day . + That 's all you can say about it . +If I do nt , this will be my last year . +But they are out there . + They want to make as much money as they can . +The war is on . + That does nt do it for me . +But he could not get another out . +There 's not much time to play . + You are , she said . +But we did it . +It 's your right . +You do know , right ? +It might not even be the last . + I did nt know it would be this good . + You just go on . +One has since left the department . + Do you know who she is ? +What do you think of American music ? +What would an old man do ? +Are we not being used ? + How long are you going to be here ? + In the end , we will get there . +Then She is not here . + Is that a state ? +But it does not have to be that way . +And both were right . +They are all over the place now . +The other is women . + And so on and so on . + But we have to work for today . + You can never say who the best is . + That 's the life of this place , he said . + This is my home state . +I want to say , Get on with it . +Just do nt take it out of my time . + They are on their own . + We have been here just three days . +He was right to go . + It should nt have been a public company in the first place . + What 's in it for her ? + We are with you , he said . + This is more like war , he said . +You made three of them . +But it has been a long year . +Where Do We Go From Here ? + But I would nt know his music . + You say that how many times a day ? +That is what they did . + We are part of this world . +Now , the same with I . +Is this just good business ? +He does nt want you . + You just never know when they are going to come , he said . +I see it all . +He was right then . +So what is a company to do ? +And what was the work ? + You know how I found that out ? + Is that what you do ? +Well , we do nt know much . +Where could I go ? + You have to take it case by case , he said . +I do nt think we have much time . + Because she does nt know . +He was in it in a way that I could never be . +But you know the people . + So what is going on here ? +So I know it can work . +People know him there . +That would be not good . +Then I would go out . + That 's your case ? +Also , you can take your time . + There is still much more to do . + It can be a little of both , he said . + They just did nt come , he says . + I want to go home , he says . +They could be you . +We are here , and we have to put up with it . + Who Do You Think You Are ? + It was a very good year . + Do we want to go back to that ? +But not all of them do . + That 's the way of the world , he said . + And he was out there until the very end . + It has no music at all . + I do nt even know what they are . + We just like the city . + What time was it ? + I do nt want to do this . +This has made them like family . +That 's the three . +Who would nt go ? +I want him to know we could do this at any time . + They come here like they own us , she said , and they do . +Them , them , them . + We made a game of it . +It 's so not her . +Right , Mr. President . +But then , she did nt have to . + This is a very big business . + What have I come to ? +But that is all right with him . + He said no . +Now I want to play these other days out . +There was no time for that . +What did you do to her ? + He 's been in them all his life . +He 's very much his own man . + That 's the only way you can go on . + For us , it has . + It was going public . + It 's my world , he said . + Come one , it said , come all . +He should play today . + And then we do nt do it . + When we do nt . + You want to get out there more so . +To my one and only . + You want first ? +It 's not about the money . +So , what do you want ? +It did nt take up my time . + They are so good , he said . +This is our business and life . +There are four , not two . +You have to do what you like to do . + I do nt even know him . +We both want to go to the same place . +But I get the same . + We are going to go first . +What does that show ? + Who is he to say that ? + IS NT HE TOO OLD FOR ALL THIS ? +How much time do you have ? +We have the White House . + And I did nt like it very much . +Where is he from ? +There was no music in his life . +A good one , too . +But this is what I want to do . + But not this week . +I did nt think so . +I would do the same for any of them . +Do nt I know it . +It will be years . +What is it for ? +That 's what a university is for . +But there are so many . +And just as she does . +I said , You can work it off . + He said , Come on over . +But it does this year . +The city do nt do right . +They did nt know what they did nt know . + How old are you now ? +He does nt see any of them out there , he said . +And they were , even then . +That is my time . +And it 's the first time in my life I have nt been one of them . +People say , How do you have time to do that ? +All he had to do was play . + He did , that day . + Come with us , they say to me . +The President : That 's what I would think . + You see the same people . + This is all we know how to do . +I just want to be here . + I think about it all the time , he said . +She was among the many . +No , do nt do that . +Work , make money ? +A : Very good . +I do nt think that 's what this is about . +But I know I want to play four more years . +It was not next week . + Without them , there 's no team here . +Then they go back , he said . +This has never been so . +And I like being that way . + And I say , You know what ? +I know you do . + Last year , I did nt , he said . + They do nt like it . + But they still have a long way to go , she said . +He does nt play . +That 's just the way I play . + I left to do my own work . +In the Where Are They Now ? +But with a good team , he was one of the best . +Life is nt the same without her . +Were they good for me ? +Two more down and only three to go . +But do they want to own it ? +We said we had one and did nt know who it was . + But he is nt here . +He should be going to the university . +It 's just you and me . +I would not have said that two years ago . +But there is much more to it than that . +It is two , not four . + I had it in my office for years , he said . +Where does the A come from ? + But you see from her house what they are . +I want to be who I was . +What are they there for ? + I may be here , he said today . +There 's not much to say to each other . + That 's the way it is , he said . +The government may have to play a part , too . +That is in place now . + I think we were . + What is the way out of this ? +It 's just you . +This time on Center Court . +It just is nt the same . +It 's not like it 's only New York . +If I can come back from that the way I did , I know I can come back from this . + What 's going on in this market ? + I did that one , too . + They do nt come to the United States . +Should we have one every year , every two years , not at all ? + I do nt like to say where . +But what a way to get there . +They are here more than me . +There may never be another . +Time : After school . + So this is my first year . +Well , it 's on the way . + Five , I think . +He made the play . +But you make money . +Never had one before . + She might be here . + It 's not my second home , she said . + It did not work out that way . + This made their season . + It 's not the market . +But there you are . +He said it was over for his team , and that was that . + You put him back out there in five days . +As long as they want . +She was all I could think about for many days . +It has been a very long time . +This was a man . +In a way she has . +At home , she said . +But that is nt the world I see at all . +You do nt have to do that . +I say , Do nt think about it . + That was man against man . +But you come , you do nt see that . + I do nt even think about last year , he said . + There is nt any other place like it in the United States . +The children come first . + That 's what we are about . + He said , No , it was nt that . + We do nt end today . +Just so you know . +It 's what so many of us have just now . +You are not going to see as many of them . +If only I could get it . +He is all over the place . + There , I said . + He did nt have to say any more . +But I just did nt get it . + It should be me going in there , she said . + They say We do what is best for our people . +Can you see how ? + No , what is that ? + But we have , some of us . +This is New York , man . +And that only for a while . +It 's all going . +He has to do what he has to do , and I have to do what I have to do . +It 's the way the game is . + They are business people . +And this time there were more of them . +I want to come back . +Now I go out of my way more . + We have all your money . +So it is back to work today . +Some are not there . +Its time had come . +It just is nt there . +But I think John is the man for the time . + How do we do that ? +Well , they work for him . +He 's not like that . + And it might have been . + This was not a big part of our business , he said . + Well they do . +I called the people who called me . + I do nt think I have . +How did we know ? +This is a business where we have to make money . +The next day I was on my way . +She may not know . + But they are our people . +We do , though . +We should nt be out on the street . +It is a public company . +He 's just all over . + I had one last week , he said . +So who is going ? +I did not see that . + You do nt want that . +This was not new to his work . + One of the two , or both . +How many people can say that ? + We are -- how do you put it ? +We are not going to do it no more . + But it is what I do . + We are not going to back down . +Some people even have two . +But he left for school . +They know what it 's like to not have . +Is the law right ? +Do it for them . +It 's what this country is all about . +It was just the government put it there . +Both are a long way off with not much time to go . +I said : What should we do about it ? +But that is what we have and now we have to make the best out of it . +He think New York would , too . + That 's not going to be me , he said . + You do nt get out much , do you ? + She should know . + Not with me . + It was the time and the place . +That 's a new one for us . +He 's good company . +But not in this city . +Some , like us , have children . +That 's his right . +After all , they now know best . +And where is she ? +They were on their way to each other 's home . + And have a good day , while you are at it . + You can go now . +You are still the one and only . +No , I do nt think that 's so much it . +The more you know him , the more you do nt know him . +Most said no to both . + It 's not only what the house is like but what you are like . +It 's not going in . + I did nt think it would work , she said . +It was one day out of all these many many years . + I do nt go around there , she said . +But what if it were ? +Do nt go there . + In a year like this , no , he said . +All I can do is be the best that I can be . +You might think that . + What do you have ? +And each one said no . + My two children were both in school all day . +Both the life of the city and the life of the department . +But there was little time to take it in . + She is the company , he said . +That state did nt last long . + That 's what I want people to say . +But that 's my game . + They are so big , she said . + It 's not to me , he said . +Some members were out of the country and did not take part . +She does nt like going there . + So I called . +I do nt want to be out of business . + But that 's what he had to do . +I did , I said . +How much , if we want this at our place ? +It 's not the business of the department . +There is no they . +I think I can play right now . +And what was your first one ? +They are going in . +They do nt know from it , and they would nt want to be in it . + Will There Be More ? + And I just could nt do it . +Some people think like this . + Where are all the other people ? +If we do nt , we do nt . +How then is this ? +I did nt think I was going to be in New York that much . +They just have to do it . + It 's a big one for me . +He 's an A . +Well , they are , and they are not . + It 's the same , the same , he said . + It 's very good , she said . + But he is one of many , she said . + We do our best . + But it was more than that . + But that 's all right with me . +Is nt that like going home to him ? + You play all year to get in . +Now , she did . + What did you like ? +Me : I do nt think so . + We put them out there . +Where do you want to go with the show ? + If it would be me , I would be down . + She did nt have a program last time ; she does nt have a program today , he said . +And now he is back at the Big Show for another go . +You did nt have to say it . + If we get to play in it . + If Only I Had . +It is nt in the place . + Did you see it ? + There is money to be made from this game now all over the world . +That is what they use it for . +I want to be like that . +But I do nt think that will last for long . +They have that , too . +Do you want to go ? +Now think about it . + At the end , you know what he did ? + How can I say ? +If the money was right , I would go there . + It 's good to have a team in place . + He is not . + You could nt do that next year . + What would I do ? + There 's three of them . +I did nt go back to New York . + It 's political , he said . +A : I did not . +But he will in a year . +It 's my time now . +With some children , they do . +Now , there are two . +That 's what 's going down . +He did nt go to school . +And it 's not good . + I do nt know , says she . + That 's what you want . + Now there is nt . + Because I do nt . +I had been one of them . + To New York City . + I did it the other night . +This time it 's work . + We were used . + There is no other way to say it . +That 's too high . + I do nt know how to do it . +That 's very American , I think . +His season was over . +Some days it 's in and some days it is nt . +That was way down from years before . + So where has he been all my life ? + If he had one , I did nt see it . +Right now , they do nt . +We know who you are . +And it is more . + Or who 's going to get off . + So they were like , Just go out there and play . + You do it because you want to do it . + Do nt come here . +I do nt think the police do . + General , he said . + It was more than that . + We said : Should we ? +It was not against white people . + But that 's what we do . +Still , we were five children and they are five children . + It was him , she said , but it was nt him . + It 's just one more way to get at one another . + It 's come to that , he said . +This is the place where they get it all . + But over all , it was good . + I had to see . + If they go down , they are going to go down with the best . + We want more money . + You do nt have that with these people . + You have to get over that . + But this is not the end . +He had little company . + That 's the end of that . + How about this ? + Out of it , for the first four or five days , she said . + He says that , but he is , you know . +She was my center . +What 's three to five years to me ? + Who 's going to take his place ? + And what does ? +So is he up or down ? +He says he may not do so this year . +But then , he might . +Which it was , in its own way . + And he was . +After that , we were all over the place . + This is my city . + He said , A few times . + If not now , then when ? +But that 's all I want to say right now . +And then all this will be over . +I just know most of them . + No , he said . +This time , she may do it . + How can you say no ? +He might want to . +I want the state to do it . + It 's not going to be out there on its own , he said . +I think I said , Now , who are you ? + It was the only money these people made , she said . + But how do you do it ? + I see him . +Then she was like , Can I go ? +We did nt do that . +I want to be the first . +There is no time for that . +What would we do without them ? +Then , he was out . +Had I , too ? + What 's one and one ? + There had to be more to him . + But they are just like us . +I want to get it all out of me . + What good will they do ? +Did nt used to be that way in her house . +Who are you to do that ? + Not much more , he says . +He did not , and he would not . +We know that this is not the case . + This time I did not . + And at other times , we could use more . + You do nt know her . + I have nt been to any other country four times this year , he said . + He 's too little . +I like that about them -- for now . + What do we have ? + They have it good . + I did nt get . +Well , how would this work ? +That is what this case is all about . +You have to play the game your way . + It 's a good city . + We are nt in it to make money . +No , he says . +If I did nt , I should nt even be in the game . +That 's about one in a million . +That 's a year old . + What were we going to have ? +It could be more than that . +Is it a year ? +But we are people as well . +But he had come . + Where do we put them ? +But there is nt . + That 's New York , she said . + I know I want to play against him . + That 's many years ago , when I left , he said . + But it was very good . + But many people say , What are we going to do ? + No , I do nt want that , he said . +We said we did too . + But , he said . +They have to want them . +But he 's like that . + We are back now , she said . + And where are we now ? +New York is only New York . +He is in my home . + I think there is . +And there 's no way around it . +And so did this American . +Is it , could it be . +All but one are from New York City . +But now he is here for good . + I did not , I said . +A few of them still do . + I said , No way . + So many did nt . +I did nt know that , the president said . +But how could he have been ? +Is this the same show ? + And she said , What ? + But we could have . + And you know it . + No way , is it ? +What do we think of that ? + It 's more than a man can take in one day . + After that , it 's another new season . +I do nt think he can . + I have to think about it , she said . +She made it big here in New York . +Or is it not to see these people ? +He did nt want me to know about his life . +What 's next there ? + Well , now what ? + They are the government . +They can go out and see the world . +They would be back . + If you want to be good , you have to think you are good . +But I know this . + All I know is she did nt want to be with him . +It 's still not the house . + What 's up , man ? + I like it . +Not just the first ; the only . + For two years , I never left the house , she said . +Get off his back . +Do nt even think it . +Or you can go to the country -- in the city . +No one will do it . +It never has , and never will . +They do nt do it here in New York . + It 's with you all the time , he said . +They will not be his first in the United States . +The money is there . + How do you think it 's going ? +Today will not end it . +Or it 's life as we do nt know it . +All three said they could do so . +But then , who would ? + Is nt that what most people want ? +Which is not to say that it is good . + If it had nt been for you , we would not have made it . +Good for him and good for us , but . +We want to do it ; we do nt have the money . + Just going out , he said . +She was that good . +Not just the city . +There is no way to do both . + Well , there it is . + I could never do that , I say . + But it 's not right . +I was two years out of law school . +I do nt know how to do this . +The way it all would go . +It was time for him to go . + Should nt we all ? + Every business they do business with , they own . +I have to come to play . + They show it to me . + Now we can . +How high is too high ? + Think about it . + You see , he said . + I do nt want to go , but I want to play . +If they are , they are . +This year I did nt . + I had to get him down . + He 's been in this business a long time . + I could nt get any work . + What does this one have ? +But we have nt . +We are from New York , you know ? +It 's what we all want . +All this could take as long as five years . +I want to see what they are going to do this year . + I work on it , he said . + It was just too good . +And I do that very well . +And that 's where we are right now . + I did nt think one day about it . + Before the game , I called her . + I was still in high school , he says . +What can we do ? + Well , this is what he 's going to get , she said . + I think there will be less of that . + It 's like what people think of their children , he said . +She has not been back . +I would like to be back with my family . +What was good for the people ? +It 's what you people do too . + And I think it 's good for the city . +I said , Like the day you put it up . +How are you going to do it ? + This is the way we want to go out . +It will have to do . +I do nt know about their work . +She had a good day last week . +But it does not . + I have never been in New York . +It should never have been in court . +We do the work . +During the season , there is no time for them . +Only then may it come . +It might as well have been last year . +My family did nt want me there any more . +She had it all . + It 's like being in another world . +But it 's good to know that , you know , it is nt his . +There 's some time left . + I do nt know how many . +But that 's about all he did . +It 's the same place . +They do , and then some . +She said she did not . +Much more is on the way . +HE : Me too . +I could not do that on my own . + But he 's a part of the team . + He was no good . +Do nt you think it 's time ? + I had to do it , he said . +They said he should nt play . +How will it do that ? + I do nt think it had to be this way , she said . +I do nt know where they are going to get the money . + What 's in its place now ? + How did I do it ? + Is nt it time ? +Some of them just did nt have the year they should . +And people want it . +But not in New York . +It 's the only way I can get back to the way I used to be . +But I like you . +We are not from the city , we are country . + And she said , You want to do it with me ? + Women make more money . + I do nt know how . + What is that going to get him ? + I have a long way to go . + What 's he in for ? + What do we do then ? +Not like you do . + It was to say , This is what is said , and it 's not the case . + That was last week . +Some of this we can do by law . +So I do nt know where he is . +It is not that at all . +It is not like that now . +One game down , five to go . +It is now only the world . + It was my life . +So that 's what this is all about . +I might not show it all the time . + I say that is good , he said . +Do you still think about it ? +But she found that she could not do it on her own . +And this is one them . + But that 's not life . +And both had the day off . +But I know that 's not so . +The second way is to use it to make money . +It 's just too big . + Today , no company is too big to say no to , he said . +Without it , there would be no city today . +She said he was nt home . +But little by little , it will take place . + I would nt want it . +He 's right now . +HOW do people do it ? + Then it 's over . + So he does . +They are still used . +We just did nt have the business . +That it was all a show ? +If I could see . + We are out of it right now . + They are just like us . +I get to see them all the time . +This season is new . +It 's more than that . +It 's been good for the state . + I did nt think it was going to go out . +For some it was . + I will work with these people . +He called me on . +But she does nt think she should be president . +You do nt have . +They play there every year . +But who is that ? + He 's good at that . + They are not any place , he said . +I just do nt want to go there . + How much are these ? +There , see that . + Who do I play next ? + He has been there . +Not many people can do that . +Could she make it ? + It 's too much to do at one time . + How did I know she was going to say that ? + I should know where I come from . +His team is never out of the game . +He has found it . +He would say , They did what they had to do . + What 's he going to do to me ? +It 's their day . + Is this how you like them ? +All this will take money . + It 's been my life for so long . +That 's where public money should be going . + So what 's not to like about it ? +But what about today ? +But I think there 's another way in . + It 's all over , I said . +And they will not be on their own . +Not in this world . +But we would nt take that . +You just go to the next one . + It just is what it is , you know . +We just show up to play . + I do know this , he said . + Do nt even think about one million . +But that could last less than a year . +You see the same people over and over . +It was one on one . +Or what was left of them . +How do we know they are made for each other ? +That 's what the show is about . + I did like it , she said . +So it 's back to work . + But he could nt do it . +Now it 's his . +Just in time , too . + You did nt have to take him for me ? +I do nt think I know him . +If Not Now , When ? +I do know this , though . +What you see is what you get from him . +That was a little high for me . + But it just would nt be the same . +But what if he 's right ? +It does nt have to be . +For the most part ? +We did nt use to do that . +I just want to be the best I can be . +That is , there is too much of it . +To him they were his life . +Those were the days , were nt they ? + He did not play well . + At the same time , the school has to see what it can do . +Time : Just the other day . + It found us , he said . +But he said he just had to get out . +Then he said , Do you do this every day ? +And he will have a good year . + We do nt even know where to go . +Where it is used ? +Says the Police Department , that 's who . +We had a good year . +State , are you all there ? +They do nt even know where they are . +Most of the time the play is over before you think about it . +They just want what we want . +Will it take you that long this time ? + We want to get them and go home . + Now that we are home , we are here for him . +Each of us will do what we think we should do . +Then they go back . +But New York is New York . + We want to do it , and get it over with . + You are not going to get in now . + What do I do next ? + And this is the time to do it . + So how high is it going to go ? + And that is what we did . + Which is how much ? +But they are all around . +It 's been that way all year for us . +It 's all about money now . + Just the right time . +And I did nt know how to get her out of it . +I can not say what we would do . + We know we do nt have the money , she said . +If I play another year , so be it . +And it 's just a few days off . +And they -- we -- do not like what we see . +Or they do some of each . + He does see it , though . +To be there and not be there . + That 's not the way we play . +I like them both very much . + I just did nt like the law , he said . +Now it was his . +What we do here is very much what we do back home . + I want to take you back , back . + I have my own life . +Over the two years , they did this four times . +You have to know this . +To get them out of the way . +This is not your home . +And what are we now ? + I just had too much time , he said . +They would still come . + And there it is . +It could nt work . + I never left , he said . + I can do it , he said , but will I ? +This is a good show . +Now we get it back . +And they are when most other people do nt . + And this is one of those times when I have to . +And then there was the market . +We did nt have it , they did . +Me , of all people . + I found it , he says . +Where will the money go ? + And so should we . +Think about that this week . +It 's you and him . +Well , if they still want me . + No , I said , I did nt . +Or even a few of them . +He was not around . +Can we see it ? +I still like to know what 's going on in the world . +Out of place here . +If it 's your second time , you are off the team . + We just did nt know ? +But they were good people . +She was not political . +It was end to end all night . +And if they do not ? + Here are more . +And there are many more like him . +It was new to them . + Right now , it 's not . +And in New York ? +She could not work at all . + So many of them say , This is nt me . +There is so much still to do . +There is more to it , though . +Come play with us . +But in what way ? +But they were not united before . +You are the best part of me . +In New York , you can and you do . +Will they get all that they want ? +He 's there now . +How many times do I have to say this ? + I did nt like it at first , he said . + It has to be . +Yesterday , he did just that . +What did he use ? +After all , were nt they all made in the same year ? + But we may not . + I do nt want to be your president . +You do nt want that , do you ? +What 's that going to get me ? +Who might that be ? + It did nt have to be me . +I Work With It . +But what do I think ? +It 's just business with them . +Have more to say ? +Not all that much . +With that , you can just go on from there . + But people do nt know the law . + There 's so many . + They are like part of my family . +She : How are you ? +I had to have another . +Well , I do nt think so . + I can play the game . +You will make it . +There can never be too much of that . +And the company 's president ? +Where do you take it out ? +I do nt have to go there this week to know what it 's like this week . +I know I did nt do it . +If they can play , you play them . +What will life be without them ? +That 's the day . +I do most of my work at night . + I was in it . + She called him back the same day . + Which State Is It ? + But she did nt , he said . + Some of these people are very into it . + He would do it to me . + She did nt say . +They did nt want this in the first place . +He 's still very , very good . +But it 's still your country . +Just do the work . + You can just see . +It is not just work . +I want to be back year after year . + We have nt made those . + I did those yesterday . +You do this , you do that . +And that he does nt do . +And how do I make life work for me ? +They did nt know what to do for us . + She has to . +And each company will do it the way each company does it . +No one does that here . + It 's the American people . + Well , you know what 's there . +And what did you say then ? +And I do nt think I have . +The President could do that . + The law is the law , he said . +And I like it that way . +I have work to do . + Some people do nt get it , she said . + I never found out where or when , she said . +What does the United States do then ? +I know what I like in life . + I see only a few of you she did nt . +He was the only one to do so . +Now there 's not many like that . +He 's going to be with us a long time . +It 's not just him . + A good one , she said . +But right now , that 's all it is . + We did nt do this for the money . + It 's not very American , is it ? +Did He Do It ? + Are you going to come too ? + He said , You do ? +I think he might have even . +How do I do it ? +Here , any business will work . +You know , she just was nt there . +But in these good times -- about the best we know of -- they have not . +We are a part of your life . +Or they on its ? + If it 's not , it 's not . + Here 's to us . + It 's so last year . +I did nt come down here to play . + Then what did you do ? +You have to know her . + It 's business , he said . +Do nt go in . +I just do nt know how they may take it . +It says here it is not . + That 's another one . +I could nt do any of that . +The other is going . +But it was just what was going on around us . +How old are they ? +What do we see ? + This is how you do it . + As long as we are here , she is with us . +But where did it come from ? + This is part of the game . + One , it is over . + We are all right . +What part does she play ? +But he can not have both . + I would not be here today if I did not think it was big , he said . +That 's what you want to see . +But what about then ? +No , you did nt . +So what should we make of this ? + This is the way . + In five days ? +But that 's not what I do . + It was right for me . + The money is not too much , he says . +He said they were not in use . +It was four years ago . +And that might be the best of it . +And I have to be there for both . +You can back up . +Not that all of them are so old . +Would he make a good president ? +We know so little of the old country . +They should have one , but they do nt . +And there were those . +And it may never . +You are in and you are out . +I would nt be for that . +There was money there . +You do what we have to do . +Him : I think we should see it . + Up and down . +But if he had to play , he could play . +That is not what we are about here . +It 's the team in general . +See what you like , see what you do nt like . +They are a team who 's in our way . +Play , play and play some more . +You are with me every day . +This is all we are . +What do they have against us ? +Some of us never left . +It has since said that it would do so . + A place out of time . +Think of who you can be . +Before we even get here , they know where we are going to go . +Who can be against it ? +It 's going to go up and down . + Yesterday there were more , he said . + It is not the way . +But he did not . + He was a family man . +That was the way he did business . +At the end , he was right . +The department said no . +We do nt know when , where , what . + I want to be back . + We are family , he said . + This is where I can do my work . +I want you to know how I think . +They were nt going to make it home . + How could I what ? +I want you to do it . + These are some very good people . +But that was not to be . +We had no money . + This is that day . +I do nt know how he does that . +A year is not a long time . +What did we do ? + I want it , she said . +That would have been over . + When he does that I just say , Good . +We will make it work . + We have nt had that . + It 's all about them . +Because that 's what I have to do . +They can be called in five years . + They have been there so long . + I think they will have to , he said . +It may not be the last . +But if it were today , I would not have said that . +They are all people just like you and me . +Not much at all . + He had a right to his own life . +It still is , or should be . + This is our business . + It 's just not us . + What was that about ? +What 's that the president said ? + It never should have been . +I did that the other day . + What would you say to them ? + I have nt been good . + I think we will come through this . + I do nt know , though . +And it was like that around the country yesterday . + It 's his team . +Is nt that the American way ? + We have to get some life into the game . + We are here for life . + Most people do nt know what is going on in the United States , he said . +It is what he is now . + Can I do two more ? + That is until now . +But not a big one . +We can do this because we go back a long way . +So we do nt know who we are . +We still do that . +This is a big game for us . +That 's all we did . +That 's one of them . + It 's like go , go , go . +But it was a good day . + And so it had so much life to it . +And it did nt work . + And these days , I just do nt see them . + I was at home with two children . +You and me against the world . + I said , Man , I do nt know about this . +Because you think you are good at it ? + To just do what you want to do , go where you want to go ? +We have to see . +But not at all white people . +But it would take time . +Most of them have to do with money . + That 's the only way I can do it , she said . + How big is big ? + But home is home . + Where Does That Come From ? +They want me out of here . + You are not going to play well every week . + And we are going back . +I think so , but how big it will be I do nt know . + I said , What do nt you know ? +Children , because they are children , come first . + He 's on his way , on his way . +Last May , a second made it . + She 's been all over . +If this were our last day we could do that . + That is the play of the game . + I said , Like what ? +This can go on for some time . +I Want to Get Off . + Think about it . +As for the house ? +Then when we did that . +You are not going to make it that way . +He has no program . +But how can this be ? +And it 's not the best of times . +But it was not to be his day . +What you see may be what you get . + What do you think we can do with them ? +I have another man . +But there 's still time . +This is what I would like to know . + I said , Do you know who we are ? +She may be the only one who has not . +And you do nt get it . +Some say it is , some say it 's not . +I should have had one years ago . + Do you know which way we are going ? + Now what do we do ? +But in this case we did nt get it . +It is , and it is now only . + What do you think is going on ? +That 's what they are in this for in the first place . +I want you to come to my house . + We are all old , she said . + I do nt know , what do you think ? +I found all of that here . +That 's what this program is all about . + I do nt know , he said . +It was , she said . +At first she did well . + Every day I get called , he said . +But who has time ? +He 's our general . + They do nt want to be left out , he said . + They are the same group , he said . +I did the best I could with it . +How could she not ? +I do nt have children . +I want to work . +Not with this man . +What did you do at the school ? + But next year ? +I do nt know how I put it in . +Both want what is best for the children . + I just go from day to day . +Every one of you have to make it . +So what is next ? +But in the end it will be good for you . +And I do nt think I should now . + Now we are a market . +But he did not , and they did not . +It was nt like him . +Should I go in ? +It may even have three or four . + Many said , We can . +We want to see it all the time . +They just do nt know where to go . + He should nt be President . +You have to get up and get going . +Now it 's one in five . + Which is more of the same . +See , I did nt know that . +There 's no place like the city . +But she was not the same as she was in the first set . + I think she was nt . + This is my first war . +Only in New York , she said . + We do nt have one . +This time it was my night . +I just do nt want that . + School is nt over when I go home , he said . + Right now , it is not . + To which company , I do nt know . + I was left back three times . +They know what they are going to get because they can see it . + It could be years . +This was the place to be . +Just three years ago , it was two to one . + And though we should have , we did nt . +It can not have both . + They never were there . + We want to be next . + I could nt do that last week . + You have to go through the best to be the best . + The people know me , and I know them . + It 's like this every year for me . + Well , you did nt here . +No one does right now . +I think I can do it . + They are the best team in the West . +Have just one or two . +How old do you think this one is ? +Today , they did it . +So he said , All right . +But that too is good . +Both work in New York , where . +They found a way . + Who said we could nt do it ? + That should have been our game , he said . + That 's not the case , he said . +It is another first . +But there was some good music . + I know this place so well , she says . +Because of the new money , they now will have five times as many . + And then what ? +The game was up . +So where would they go ? +I did not get it up and down there . + There 's not too many of us left of the old school , he said . +And if they had any , where did they go ? +How does he do it ? +That 's all we can say . +He said I could take off after that . +They do not have to be the same . +Here , take this one . + It 's going very well , he said . +If you do nt , what are you ? + It never will be . +There are just a few women here . +And this is not who we have to be . + It could be me , too . + It 's no more . + How many , do you think ? +What was the use ? +And what are you going to do about it ? +Just to see a game . +I think it 's in the center of the state . + It 's like music , she said . +Being from The New York Times ? +I had to say He 's going to do what he 's going to do . +Show me just one . + It is good for business . + I do nt know how long it will last . + I was the one that had to go . +How did they come to you ? + But he 's been in too long . + It 's about time it found its way in , he said . + But I did nt know . +Now there are three to four a week or more . +Could he come down ? +You see another way of life . +That was his last day of work . +They are good at that . + In New York City , that is just not the case . + I would have called , she says . +But just what will the public get the second time around ? +No , you are not . +ONE FOR THE MONEY . + There were times I did nt think I would make it . + It used to not be like this at all . +We can do no less . +But not his will . +New York has not . +It had to be the best man . +It was good to get it out of the way . +He 's in there now . +Now they all do it . +How did it all play out ? +But right now , it is what it is . +We have one year . +A Life Like No Other . +Not now , not next season . + We did nt see it that way . +Would he go home ? +What 's up with that ? +No , it 's a play . + It is just one of many . +Well , you have to get money from people who have money . +It 's not for me to say . + I see him all the time . + I want the best for her . +Just up and down . +He did , he said . +But time is money . +It would be the first time . + I like to come here . +We are over here , and they are over there . +How much money do they make ? +He is , after all , still part of the team . + It was made for me . +I do nt want it to come to an end . + What are you going to do ? + I do nt have any money . +We are not going to do it two years from now . + I want this . + I said , So what do you want to do about it ? +So they will know , I said . + It 's like a war , she said . +They make like it 's all white . +That 's all you can do , and I think we did that . + The general did not say when that would be . +But Does It Work ? + We are a team , we work as a team , she said . +It 's time for him to go . + You do nt go to the same place every day . +But the way we do it , it is . +This is a war over our home . +I think there will be one . + So we are even . +But work is good . + I did nt go to school to do this . +Many women do not see it his way . + We did nt know what or how . +I have children with me . + I get up to go . + But it 's been there for years . + I was with them over there , he said . +Where I go in between is up to you . +I do nt want to go with you . +Children from all over were going home . + Well , you know , she said . + So he not only does nt know , he does nt want to know . +You do it every day . + I do nt know how I do it , she said . + He did nt have to say too much to me . +But what 's one more ? +I know she would want that . +That did not work out very well . +Where has he been ? +It 's your life . +And you too know me . + Where have you been ? +A very long time . +If you do nt , you are out . +Out of time than in time . +And may never be . +I know we have nt . +New York is one of these . + That 's what it was . +Because of who he is . + We were still . + It could not go on that way . +He never found one . +And they are very good . +I have to have you . +I did nt know how much more that was going to be . +Where Are They Now ? + Every company is in it , he said . +This is my last year . + I think it is all over . +That 's about all . +DO as I say , not as I do . +But that 's what a good team does to you . +Where are you these days ? +If they do nt have it , they do nt have it . +Today , he would nt say . +That 's all well and good . + This is for you . +They are not like you and me . + This is very new . +But they do nt do that . + And who are you with ? +We are a good team now . + He says that ? + You go your way . +Did they want it ? + And we do , we do . + I want more life . +Or his own family . +It 's not in the school . + He 's been around . +You do nt like it . +It does nt even want me to know . +That 's still the case . +A little of each . +Right now , he 's up . +He did it because he had to . + Can you do that in New York ? +Such a good man . +I do nt know what she would do then . + They do nt know what is going on with me , she said . + Should I go for it ? + Part of the game , he said . + What good would I be ? +Well , which is it ? +If people said , What in the world is that ? +A little of both . + Two is two , he said . +And that is what he did . +They are up there . +You are never going to get this . + It should not be your life . + It 's for the family . +Because this has been what has been going on . +I did all right in the game . +Well , there is nt . +People want to be there . +I think he 's right . +This is not over . +If we do not , who will ? + We do what we have to do . + There 's no way I can do what he does . + If you do nt think I can , then I can take it . +They do nt think about that . +What did I do ? + But that war is not over . +So is this all a show ? + Are you any good ? +In this case , the money is here . +What does she think ? + How did he know I was going to be out there ? +If not , you are on your way . +I say , It 's not political . +So we know he 's going to play well . + That 's our public , she said . +So may we all . +But he does nt know the city and he does nt like it . +And so it has . +I do nt get into that . +I said , I do nt like that man . +That 's not good for us . + We have to do that , he says . +This year we do . +But right now , it 's not . +You might want a second set if it does . + Think of it this way , he said . +That 's what I like about it . +It would nt work ; that 's all . + There is , but there is nt . +Who is going to want to put up with all that ? +She never made it , the police said . +But I have to now . + It 's just there , it 's what we do . +But how much to make of each ? +That 's a big if . +They did nt come to play . +It 's all good music . +Then you can go from there . + I think we will . +What would it take to get you to do that ? +People think like that , and I did . + But what we have now does nt work . +They have not been the same since he left . + I do that all the time , she said . + I think he did that . +It does nt take money from people . +It was nt that good ? + We are not going to put up with this . + No - what now ? +Because they have nt the right to say that . + In court , he called me . + I want to go to New York , he said . +Back in the old days . +What 's a little more ? +You left our state . + What do you see ? +So is his team . +That 's the way I play the game . + We are one people , he said . +Some people do nt , some do . +When or by how much , they do nt say . +But we are going to be there because of what we have . + They can do this all night . + That 's the way it should be . +And it would nt work now . + We did nt know that . +I was like , No way . + I still do nt know what they are going to do . +Not at all , she said . + But that was nt the case . +We were nt in that for the money . + I do nt think this way . + I do nt know what 's going on in the world . + One more , he said now . + It is good , he said . + We first have to get through this day . +Last season there was nt even that . +It was New York Law School , not New York University . + He 's going to first see if you want to go back to his place . +The children were there . + Then I would get out of the way . +That 's the best way to do this . +And you -- and you did it very well . +If that 's what I said . + But we do it right . + They said back up . +How long does it take to set up ? + What would I do ? +He has one , though . + Three years , she said . +This year we did a million . + It 's been a long time . + They are an old team . +That was a new one . +So would the world . + I do nt know how that would go over . +What does it have ? +And I think there is so much to see . +And what is the right way ? + We do nt have to , I said . + Because that is me . +She said : That does it . +To do that , they say , he will have to work with them . +People can use it any way they want to . +But it does nt . +He did nt think I could do it . + But some are not that way . +You have to be right on time . +She did nt know how she would do it . +After all , they are children . +That 's what this is for . +If only , he says . +In this case it did not do so . +You are all good people . +I have no family . +The Music and the Life . +Well , there is and there is nt . + This is what I do , he says . + Never , not that I know of , he said . + You do nt want to know . +This is a good place for that . +He was in their home one night . +So long , American Can . +And that 's a big if for them to do that . + No way , in the world today . +I want them to do more . +People want to go out at night . +What he says is what you get . +But I do nt think they are that good . +But get with it with what ? +This is like a family . +But he would be back in a day or two . + And so I did . +It 's one or the other . + It 's part of life , but you have to go on . +But that 's in the city . +It 's time to get it out to the public . +They would have to make a case . +So I had to get out of that as well . +That 's the same today as it has been . + I did nt know this . +Now I think there are only two . +What does he want out of this city ? +When , and how ? +You make it on your own . +I did know a few people . +Even if he would not say so . +But we want what 's best for her . + He has the right to come . +But do you not like it ? + I think she might be . + We have no work . +Now you never know . + I like it more now . + Right after my family . +They had every right to . + She was against it . +Man , if I did nt have this work in my life , I do nt know what my life would be like . + But think about it . + The school is out of time , he said . + You have to show that you are going to use the money well . +Money , he said . +No team is that good . +But she is both more and less than all that . + I could do it today . + What 's not to like about him ? + It could be me . +I do it every day . +He is about us . +I do nt know how many more times I can say that . + Only the director can . +Just two of us . +It does nt have to be , not at all . +That 's what it is like . +You want to know what is going on today ? + That 's the way my family is . +I think about you . + What 's been going on ? + But he did nt say that . + That 's good for me . +That was then ; this is now . + You do nt want to . + We are here , he said . +We would never want it any other way . + In a way , it 's like the state police . +We do nt see it like that . +It still might be . + He would have been the first to say , What ? +You never do that . +I want to be with you . + I think you have to do it in one year . + It did nt do me any good . +No one does that these days . +It was all business . +They have to get going . +He will have no money at all . +What 's next for it ? +Do you know about it ? + Some same people , some new . + Not for a while , she said . + I want to work , she said . +Right or is it left ? + Could you take my place ? +But this may come to an end . +We get that in , too . + But do I like it ? +But it is what we have . +He will come out of it . +How can we use that ? + We said : No way . +I did nt see you . +There 's one here . + You never know , she said . +So what about it ? +What is it now ? +We could nt get going . + I did nt know we had that little time , he said . +Do these people like one another ? + It 's just music , music , music . + My two children were here today . + You want it to last a long time , she said . +And I think there 's more than that . +At the time , I . +Can I go get it ? +But there is no there there . + I want to go back into business , he said . +Or it would be if I had it . +Will he go for it ? +We are not a political play . + No other place to go after first , he said . +No , says he . +But here is another . +Do you see me ? + Just me , he said . +This is how we have to play . + You know , she said . +How long should it take me ? + There 's no other way to put it . + He was right , then and now . +The game did nt have to be . + With me , it 's never going to be over . + It 's like , I have to go now . + I did nt want to go home , she said , because I like it here . + Not all of them . +He is also a director . + Should they be ? + I just do nt see it that way , he said . +And he would think . + But this has never been about money . +But it 's so good for them . +It did , and he was . +Not on your life , not on my life . + This was not good , he said . +There 's not much left to see . +And then he had to go . + That was it for us . +Most people in the White House could nt come to work . +And money was being made . +They want what they want when they want it . + Some days , it 's not very good . + So now we are even . +We can do this too . + Get what you can get . +And many are nt . +But there is some good music in it . +We are so big that we can not and do not . + Work is life , just as much as children are . + It 's a business , he said yesterday . +More children go by . +It is the center . + But one day there might not be . +I made up my life . +It is good because it 's good . + And that 's it . +Just think of it . +You know you want to . +But he 's not well . +And this time it will be for good . + Last year , it was just me . + Over all , to have a game like this is good . +And is not this among them ? + He said , For who ? +This time it was his own . +It would have to be a play . +I would nt know how to do it . +He has another season to play . +It does nt now . +What was this day ? +They have nt found one . + She was nt the same . +After all , that 's what I do best . +Should I do it now ? + The White House does nt have to do much . +He is off his game , as off as only he can be . + What is it with you people ? +And still they come . +We have people who can do what he does . + What about at night ? + Do you have children ? +Now , there are many , and more to come . +It 's part of what we are . +No , no , no , not me . +I like this team . + That says it well . +By then you might even be used to them . +But he has not said where the money would come from . + And I said : How come ? +I was about to go on . + Little did you know , that 's the last time you are going to see them . +She said , You have to do it . +So , there you have it . + I want to do that . +We are still the Federal center . + There is only so much time . +They are all very well off . +Not much , they know . + He was in the house . +I did nt even know . +But who was to know ? +Because she was old . +You know , against the law . +I know he 's going to be good . +You have a good day . + We have to play every game like that . +They come at you . + I did nt know what I was up against . + Put it like this , he said . +He just does nt . +He said it was his best game of the season . +It 's going to be a long time . +But in New York ? +It 's still him . +Many of them did not . +But what of the police ? +So more and more of them did so . +You might say , So what . +Business and the Law . +We did nt know what to do or how we were going to do it . +There 's so many . + But they do nt know how to do it . + The same with my life . +I do nt want . +But the United States was there . +There is no them ; there 's only us . + They know this might be the last time . + Each year into it , I see more and more . +That 's what it is right there . + I did nt know what it was for . +School 's not what it used to be . +It 's all about work . + It 's big , he said . + But it was the other way around . + We have it . + I think they did . + That 's what it 's about . + So now where do these people go ? +Not at all , he said . +In her own home ? + But it was just the right time to do it . +They want to know where it is , who has it . + What is this all about ? +There would be no way . +After all , she did nt . +I want it all . + We even put it in best of the year . +It 's not that good . +Should I go to him ? +Because Now You Can . +And there 's another game today . +You are not around . + New York is not one of them . +Will it make money ? +This is music about other music . +You know the one . +It 's on all the time . +The people here have to say that ; that 's all they have left . + They still are nt where they have to be . +We are right where we were before . +It should nt work , but it does . +Every day I go between the three of them . + There 's not that much of it left . +I do nt even know which one did it . +And then that 's it . + You should go back because you want to . +He would know , he says . +The game is back , but for how long ? + And now they are here . +They have so many children they do nt know what to do . +Which well may be . +But how much is too much ? +You know what he can do . + I come from the government world . + I said , How can you say that ? + Well , some are , some are nt . +But it might be good for him . +This could take years . +I still play with them . + It was there before ; it 's not there now . +We know that world . +I never found one . + You see it every day . + It has been my family here , she said . +But after that you are more or less on your own . + She should get over it . +We do not know what they would do or would not . +We just do nt see it here . + How do you like war ? +A team is just going to have to go with that . + That 's the way we play . +It 's war up there . +In the end , he was both . +That may be the right way to go . +It was just too long . + It was more like , What do you think ? +It 's good to get out there , though . + Do nt say that . + That 's the way it 's been . + They did it right . + I do nt think they can get there . +We are going to do that . + One million , he says . + So , I come here . + But there 's no it to make . +But way up here ? + I do nt know what we can do . + I been around so many years , she said . +Well , we want that , too . +You go to him . +We did nt go back . +One year ago today you left us . +How do you see it going ? +He is not about to , though . +But that 's what he 's here for . + No one will say who , he says . +What is his big want ? +But what can we do now ? + We are this and this and this . +Three are in the show . +What were they to do with me ? + I want this one . +But it 's not as it was . + I said , New York ? +That may work out . +I did nt have to think about it -- I just did it . +But that was all over now . +We were the last . +After a while , he did nt go out . + This time they say : You are too old . +I want to see it all . +Not so , this time . +I was down for a while . +And it 's never over . +That 's good for me . + And still they come . +He has been there before . +You have to think that way when you do nt know . +If They Do nt , Who Will ? +Some is nt good . +There 's a game today and the next day there 's another game . + It may show up in some other way . +He still has his money . + That 's some of it . +And we know that . + I think about her out there . +We are all going to get old . +It should have been in . + And it was like we had never left . +This is it for me , after the last two . + Come and get me . + We were like a family . +So I do it . + That 's not my game . +I was nt here . +How much would it be ? + And some do . + You can see that . +Without me there would be no New Year . +This is the way I want it . + I think this is about it , he said . + No one could come in or out . +You never know what it 's going to take . + There 's only so much you can see . + It 's what you want to do . +That 's what people in the street want . +That is the case in country after country . +What might they be ? + They will be back . + Most people did nt go there for the music , he said . +So where 's the money ? +And she said , Now what did you do that for ? +They are not what they should be . + They just did nt know each other . + I think it was time to do this . +The way you said . +It 's war here . +They do well in school . +Not only was there , there still is . +How did he know where I was going ? +I know them many years . +You work and work and work . + You do nt like them ? + We could never get it to work . +He 's right there with . +We are not that good . + It 's up to you -- New York , New York . + You have to get up for every team . +Because they should nt . +In the first part . + We think we have the best of both . +You know what it 's like ? +I may even have to work for you . +They are what they are . + We are not going to back down . +This is not going to work . +And there he was . +Or both of us ? +You do nt do that in life . +When he still had one . +We are the police . +She was one of them . +There 's too much to do to make it good . +And they just did nt . + That 's me this year . +For me there is nt . + We know what he can do . + What would you do about it ? +And we go back with them . +What do you think about it ? +We are going all the way . +Still , that was way down from where it had been . +So what more do we want ? +We will go out and show how many we are . +That was the best part . +And then there is one . + We are in the same city . +The first year was good . + What we had can never be , she said . +They say , So what 's new ? + But I like this very much . +I think now there will be one . +He could be in the music business . +I think that is the case today . + Where are these people going to go ? +Would it be good for her ? +There is other work around . + I do my best . + We had to do it right . + It 's another year . + And this is nt one of them . +I just do what I think is right . +And then school is out . + It did very well . +Just where is it ? + How do I see it now ? +I want to be a big part of it for a long time . + We are family here . +A : I have said that to him . +I do nt have people over . +But , in the end , it was too much . +They do nt want war the way other people do nt want war . +They do nt want to know you . +How well did you know her ? + He has to put an end to this . +And there are so many people like me . +But it did not say much more than that . +When I go out I do nt play for money . + These were our children . +Right now he 's at his best . +It 's his back . +Now these women know . +It 's as good as over . +Now , what can I do for you ? + How many of you are out of business ? +And I would nt want that . +If not , then you can do it . + Very Good , it said . + Now I can have both . +That 's right , all three of them . + It 's all about money , she said . +Not so in this case . +If you do nt want to take it , you do nt have to . + You can come home . +And she has nt . +But could that be what this is all about ? +Does she do the same ? +I know the House very well . + Is This the End ? +It could , but it does not have to . +He was just here . + I did nt know him too well . + We will have to work for it . +We have to be , he says . +We all know now . +That 's life , right ? + But he did nt have to do all this to us . +It 's not just me and my family . +They just do what they do . +All three left the team after the season . +We are not in the States . +Is it because we do nt have people ? +How did we get here from there ? +It was he then , now it is I . + Not in the way he would , but in my own way . +No , you do nt see this every day . +But they are a little out there . + But it will not be as before . +So he 's off the market ? +But we know who they are . + We could nt get it . +Then his team will go back to work . + He 's an old man . + We know what to do and how to do it . + The companies are still the same , he said . +They work for a long time . +He did nt make the team , but I did . +It was nt so long ago . +It 's only for children . +We know they want to play us . +And is nt that what all of us want ? +I want them to see it . + They do nt want us here . +But that 's just the way it is . +Their own have nt . + What should we do ? +Make $ $ $ . +Some I do nt . +They are not going to make me do this . +And that 's what we did today . + If you do nt , I said . + It was the game . +But now that 's it over with , I have to get back to business . +They were all over us . + Not how many are called . +If they did , people would be all over them . +It was in with the old and in with the new . +What can you do when it 's over ? + It was time for him to go home . + But what does one do , when one does not know what to do ? + He 's not one of us . + You know how to use them ? +She said she does not even go to school . +Do you think it is a good time to get in ? +He just did it on his own . + What if they are the same ? + We did nt just put this up . +We still do nt know who the next president will be . +He can play center . +But we are big now . +That 's in New York . + That is not the case . + So we said this is nt what we want . + We know each other . +And if you could . + They are at home . +But I think people want to know . + You have to have a good team . + And for people to say , There 's one of us . +Some years ago one did . +Some still see it as a children 's game . +Now , he said , It is what it is . + But that 's not going to work in a case like this . +That 's that in show business . + By the end of the year we think we will have four million . + It 's not during school . +Do you think I should ? +For now , they are all right . + There 's a long way to go . +If you can do it , do it . + So they are . +The police are all around . +Some did come to play . +They should be good . +I get to play her -- I do nt have to be her . +So I could have a public life in some way . +I do nt know how many times I can say that . + I like to come , he said . + I do nt know how we are going to get a new one up , he said . +He should have been . + Where are we going to go ? + Well , I found it . + People know I have money . +There 's more than that . +We could have been down by four or five . +She was never well . +Today was nt my day . + Now , get out of the way . +They have their own life . +It is still on the market . +It was about time the people could take them home . +He would nt do it . + But we do nt have to own it . + But I do nt know for how long . + They are out to see the country . +You could say , So what ? +But I have to think what we are going to when he 's not here . +That 's it for me . + I think it 's good for me . +But right now that time has nt come . + But not this time . +It did not say how many . + Do it and like it . + That 's all he has to say to me , he said . + It 's about New York , he said . + I made a big war , he said . +I have to play my game . + I want to get him out of the house , she said . +Such as they are . +Think about other people . + It 's just not going . +Or because they know . +I do nt have to think . +It 's been my life 's work . + I have a family with me . +Not all of them did . + We are not . +And they do nt know me . +AND now there are five . + She did nt go to the program . + That was a good day . +He does nt come back . +That 's what you did then . + It was good for business , he said . + I do nt know much about her , he says . +There was no time . +He said , do nt you know me ? +But he does it well . + It was time . + We do and so do you . + So many have come at one time . + I do nt know about that . +There was no way any of us could go . +You like to see that . + But it just is nt me . + He would get the money . + At last , she said . +Not as much as he might have . +My next office will be my next home . + They say this is the best that we can do . + Do you know what you did ? +Where Does the Old Year Go ? +Two : It 's the law . +But it 's going to take time . + He should not say that . + How much money do you make ? +These are among them . + This is for them . + Think of it , he said . +To the people of New York , it 's home . +Be what you are . + What about this one ? + That was the play . +No one can be that good , right ? + This game was a big game for us . + But we are nt the people who did it . +It was nt there , not for any of them . + We all see it . + You are it , he said . + We want you to think . +There may not be . +And that 's all we want . + Can you think of what I could do for the children with that money ? +Well , here he is . + And what is that ? +He was right here . + And There is time in it . + This is not a court of law , he said . + I had my own company . +They are a team . +He has not found it . +You have to come back . + So I had to think of another place . + What if he does nt take that one ? +Just make it up . +No one 's even going there . + I said , Get out of there . +It is more than an office . + Some people do nt like it . +And it was also for the money . + Every week is like that . +But what to do with it ? + Well , she said , where did it go ? + What they are going to do is go after us . +And I do have that . + Do nt be like that . + It is going to be with us for some time . + No , he 's not . +If I do nt , so be it . + No , I never have . + There is no market . + We have many to go . +It might not get there . +They may be the best . + But I do nt know where to get it . +I said , if I can do it , you can do it . +The money will now go to the Federal Government . + Can I have one ? + They said this school was like the best for me , she said . + Do nt you know me ? + But the season 's not over . + But they are in there . +That 's too long . +Does he still want to go home ? + This is not it . +Business is what people do . +So he did nt . + In this case , she could see it . +It 's not right . +I said : Her ? +It was a long night . +And what does he see ? +The law school has been very good to me . +I will not say them . + Do you have . +We could use some right about now . +They are and she should know . + There it is , he says . + It 's not a would not , it 's a can not , he said . +There could have been more . +I think we have that now . + The money is so good here . +What 's the other group ? + Now , where were we ? +But you know where they come from ? + They used to come out every week or every other week . + Some people do not like what I do , he says . +The law says so . +What is it going to be ? + Did you get that ? +It is for our children . + The best part ? + That 's the way it is in that city . +They would nt come down here . + How 's the family ? +So what is it about ? + I would use them in my home . +But he would last . + This is my way of life . + Are we going out ? + I have a like life . + If you want , you can come with me . +That 's what this business is . + No , not at all , she said . +But no , I did nt . +You can get them now , today . + But there have nt been many of those . + Have you had children ? + I do nt know how long it 's going to take . +There 's no life . + But that 's just the way she is . +Much , much more . +And we are still there . +That is all he does . + I have two children , she said . +They both work in New York . +I think you did . +He says he 's all right . + They just do nt get it , do they ? +But that was nt the best part . +But who was this man ? +He was the best of the best . +We are new here . +But do nt make too much out of it . + There is no way we are going back . + We just do nt know who it is . + What time is it back home ? + It is not a business , he said then . +I never see him . +I could , but it would take me a while . + I was , like , We can make this work for a while ; it 's not that long . + That is not where they want to be right now . +And it 's all right . + They did nt do that . +I think we all are . +The two did not know each other well . + The other three , when is the next time any of them are going to be on the Today show ? + Get out and do nt come back . +He still has it . +Now the game is about money . + I think they know each other very well , he said . + And we will be back . +It 's never been about me . + Now they want it all , he said . + They have nt , he said . + We are going to get it , he said . + I never say never , he said . +To his children though ? +You come to play . + The people said we want both -- the new one and the old one . + We are going to be a good team , he said . +In much of what he did , he was a man on his own . +He would not say . +That 's never been me . +The White House says she did not . + I want to make it in two years . +I do nt know of another one . + I had never had that before . +This is how we get him out . +In that place that 's for us two . + I do nt think she should , he said . + They said , no . + But I was , she said . +I think I have . + What is in here ? +It 's not the only way . + She was my world , he said . +I said , First of all , I never said what they said I did . +I do nt know what it will be . + I was never the same after that . +Most called it a night . + What 's that you say ? +But she said : Do nt come over . + I do nt want to be part of it . +I still have to do that . +He was where he should have been . +I think that 's what you should do . +What was that like ? + The American people do nt know me , she said . +How could you not know ? +That did not work out . +It was too much , he said . + He would nt come in here , she said . + We have nt had a good day for a while . +But they could not . +That 's not the case right now . +But still you have to play well . +I just did nt think they could . +At the same time . +We think he can do more than that . + There , he said . +This will not be one of them . +How could you not be ? + You know who it is , he said . +Should they still be here ? +This is the end of the world . + And not this year . + I want to , he said . +It still was nt me . +Here 's what I do nt say . +He did not use them . + But that 's not all . + How could I not go on ? + Not much at all . + Well , I do nt get it . +But now , I think of him and the good times , you know ? +There is more , too . +I just could nt get by him . +He was going to make the play , one way or another . +But now that 's over . + He did nt have it his own way . +Has been for a long time . + Some do nt go back at all . +He could not take it . + Now where 's the Government in all that ? + And they all work . +It 's you , is nt it ? + I never said it . + And on , and on , and on . +That is what they will get . + They know their way to court . + WHAT IS IT THEN BETWEEN US ? + It 's not in one place . + No , the other one . +Only the first one . + How well we are going to do I do nt know . +It could be a long time . + That 's life in the big city . +It 's time for you to come home . + I did not think we would be here four years . + How do you get to work ? +So I will do it here . + To get money for what ? +But he did nt know where the man was . + I could nt take it . +Now , what will I do ? + He said , Where do I know you from ? + You know , it 's not every day we get to play this . + We think we can do it . + This is not a new market , he said . + And how would they end ? +You are going into another world . + I said , What do you think about it ? +But all in good time . +It 's all the first time in a long time . +And like the money . +I do nt want to go home until we do it . + What are you going to say ? + Women do nt know how to play the game . + This place is the last of the last . +It should nt , and I do nt think it has to at all . + We know they do nt want us here . + Well , that says it all . +I want to show that I can do that . + But there are so many of us . +Can you just see it ? +It 's good for my family . +It 's about the money . +So what are we left with ? + Even the women . +He 's out there . +I just did what he said . +The play is called Home . +What did they like most ? +For most of them , it is their first public show . +Then there 's this one . + Would nt you know it ? +These were people that were good people . +I like where we are today . +I know that was it . +I had to get out of there . +My children would nt put up with that . + She is all over the place . +What will he make ? + It 's about more than money . + Now I get to be in one . + It 's back to work , he said . + You would nt think so in New York , right ? + So this is not new , he said . + Less about him , more about me , she says . + All he could say was , See , you can do it without money . + Now , it 's , Just think about it . + I do nt want to go over it , she said . +Now he does nt know what to do . +But we still have to play the other team from here . + When it is over . + After all , it would only be for a little while . + It 's my city , he said . + But if you want the business , you have to do it . + At the same time , I want to make the most of it . +Which is where it was made . + In the states , we did . + I know we can . + But we want much more than that . + So we do . +I like it here . +It was not just for show . + It is my life . +Me : How so ? + We did all we could . +But it 's good , is nt it ? + Who 's going to work ? +And I say , no , no . +He did nt have any money . +That is , it was . + It just should nt be there , he said . +We are like a big family . +Just , you know , what I might do when I get home . +I did nt go to work the next day . +That can be way too long . + But what could I do about it ? + Every show is like a new show for me . +Do it like this . +You did it for your country . + Then another , and another . +We do nt even know who most of them are . + That 's the way we work in our family , he said . +And if they did know , how would they get to it ? +It 's not over with . +I said no , I did nt think so . + Because they are all over the place . +He is nt about to say . + I want to do it . + They take your money . + Now , people think , This is war . +What is this law ? + That 's where people go to school . +But these people were nt part of that . + It has been so long . + You never know what might come up . + I can work through it , he said . +But I like to think he is . + How does he know about it ? + They want to get out of here . +You are going to want to make money off of me . +I just have to go out and play . +Then you get there . +We can go now . +If I did nt have the time for it , I would nt do it . + That was good . +Well we have to . +As many times as I can make time . + If I show up the night of the show , I know I can do it . +Get it out and get it over with , he says . +That game should have been over . + They have the money . +Some people , I do nt know what is with them . +Where does their money go ? +The way I used to be . + There is more for me to do out here , she said . + This is not , after all , the center of the world . +He would just take off . + I have very little , he said . + Not that we know . +She could nt be . +How long is it going to take ? +That is what we want . + No , but you know what ? +All I said was I like her music . +I think we will . +I just like them . + See over there ? + They have to , or they want to , he said . +I do nt even know . +We are going to put up the money . +This had to come out . + People are people , as they say . +But does he like him ? + We want to see how good we are against them . + Will he be back ? +You are going to like them . + We see them all the time . +Now you too know it . +And just how will the city do that ? + We get them in one by one , she says . + That 's not me , he said yesterday . + I do nt know what he 's going to say to me the next time I see him . + You do nt work , she said . + But when we do , we are still one of them . +But it might just be right . +He has a little world there in that home . +This is what people want to see . +He did not do well . + We can see it . + We were all like , Who are you ? + I did nt know what it would be . +He will have to think about her , and what he did . +It will take much more than that . +You could just own it . +A Long Way to Go ? + They know who they are , he said . + I said , All right . + It was a day much like any other day when . +What was it like then ; what is it like now ? + Without it , what would I be ? +Can you get out of there by then ? +That she did nt say no . +Day by day , that 's how I take it . +So off they go . + The world is nt made for people like us . +I said , Who 's she ? + All they want to do is play . +And we back each other up . +But it will not be the same . +It is no more than that now . +Now could be the time . + Now you do nt . + We do nt want to know about it , he said . +Where can one be found ? + Well , is nt that for us to say ? + We know we can go up there and play well . + They come in every day . + I could not do that . + What would they say ? +What 's it made of ? +And on this night , they did . +And he says so here . +When will you come home ? +I know they are going to do it . +Here there is no more play . +Will he do that next week ? + If you get one or two , you are set for life . + I did nt take it that way , he said . +Get in and get out . +Is that what we are about ? +So , if you are going to do it up with this company , you will have to do it up in a big way . +People do nt even have to say it . + Well , no . +There 's not much I can do about it . + Life has to go on . + We all do it , she said . +We did nt have one . +The place has nt been the same since you left . +These are the same as two years ago . + He says , What can I do for you ? +Was it right of her to do it ? + But that one was nt one of them . + It 's been like a family here . +What could there be to say ? +This is my life 's work ? +Has it been two years ? +It was about me . + It 's not been that way for a long time . + But they do it all the time . +Not many in New York , though . +I do nt have any more . +And that 's one for me . + I know I have to do it . +We are going to see how he is . + May I see it ? +And we all said , That 's it . +Did they , did nt they ? +They work through the night . +I never did it in my life . +It was a good game for all of us . + They just want to know how to get them , he said . + I did nt want this to end . + Then I had another . +Or did in my day . +But that may not be for long . +I want to do it while I can do it . + These are my children . + I did nt want to come home , he said . +That is the way with me . + You have to work at it . +We are too big for that . + We think we have a good team . +We were out on the street . +You see , that 's what he is . + But it has to be that way , he said . +It 's not the end of life . + It 's been in my family , he said . +But how about one game ? + I know I never did it and I had people to back me up . + But I do nt know , he said . +What would you like people to know about your team ? +But what will the children like the most ? +This was about as well as we can play . +Ms. May said she did . + They are going on and we are not . + It 's a new school . +Do I have to go to the school play ? + He had a week . + No , man . + Until next time , he said . +This might just be our man . +How long can you last ? + I think they like that . +What 's in there ? + I think I know who did it . +Do I like this ? + Which I never did . +I have to do well . +It 's good now . + I did nt know how she did it . + What I like , I like , he says . + It 's not political at all . +They would nt do . + And so do we . +It was like being there . + How much is too much ? +So I had to come back to be with her . +And back to New York . +It was a big , big country . +Me : And it was a good one . +It 's going up all the time . + He did nt have to do it . + Have a good one . +How about right now ? +I do nt know much about that . +It 's time to get back to that . + I like city life , she said . +Business is good these days , she said . +We want to will them to our children . +We had a first . + Well , I do nt do that . + It 's just not me at all . + Be what you are . +But where were we ? + And you will see it more . + How about this ? +But this year it is not . + How long has it been now ? +To the old man ? + People do nt see it all the time , but he does . + People want to do this show . + That way we can see them , she said . +It will be good to get back home . +We do nt see the right time in another five years . + I did nt have much to do . + So it is many in one . +You think you are going to go all the way . +And I think he 's right . + Life is life . +It has no business being there . +Should I want to or should I not ? + That 's not up to me . +Just as they did a year ago . +It does nt have to be , but this is home . + She 's going to do what she 's going to do . +What is it today ? +That was nt what I was after . + Time , he said . +Where will I go ? +Like who is nt . + But for most people it was not . + I would never do that . + We were not there , you know . +As will New York . +They are used to it . + Some of them will go back , he said . +All this may work . + What do you like about it ? +I may be one of them . + Not very well , she said . +But if he has , you would nt know it . +This is very big . +What is a man ? +How much to make of this ? + No , who ? + They have had it . +Was he or was nt he ? +They know more than you do . + We do nt want to take part . +That 's also good . + Where he is today , I do nt know . + But I did nt like it . +Will people make this or that of them ? +They had to know . + For the good of the country , he said . +But that 's me . + It was his day , he said . + There will be a war . +Is that what it will take ? +If we do not , we will not . +I do nt know if he found it . +But that was nt what we found . +These were her best years . + But I just do nt know where they could be . +I want her to know what I now know . +No , take that back . +Those people are with us . +That 's part of the game , too . +The play of the game . +At first I did nt know what to think . +Is it to me ? +These are the people this is for . + But what would it take ? +What does he think about his ? +Most of us do not long for that . + I had it every day of my life . +So what was it all about ? +They have the right to do that . + We want only our own . + One in a million ? +It was very long . + That was the first day of school . +I said , What is that ? +This is me right here . + So we had to do it now . +You just might not want it . + I could nt get through it , she said . +Where 's that city going to be ? +But it was one of many . + This was his home . + But we do nt want it to be . +People out of work . +Home for the night . +Get in the well . +There 's so much right now to play with . +Not that she has to . + That 's not the way he is around here . +Do nt come here . + All right , now . +He did nt want to go back . + That is the white man 's way , he said . +Because it can be last your last game ; any night can be your last game . + What did I get out of it ? + How did I get this way ? +What would be next ? +So , what should we do ? +That would have to do . +You may not have to . + You do nt know where it 's going to end . +There is no other music like it . + How do you like the work ? +Today he 's what ? + But we know it will take time . + And there are so few people who do what we do . + He said A . +It is , after all , the family business . +No way , he said yesterday . +They do nt have the time . + We do it for him . + And I did it . +And that is just what the market did yesterday . + We are going to go for it , he said . +This should take about a day . +I do nt know how you can say that . +It is time for war . +No , not like . +I did nt see them for five years . +But it was that time . + No , not even so much that . +There 's no way it could be . +The music is over . + I can do what I want to do now . +That was a more than a year ago . +I will be here next year . + It 's still with me . + We are new at this . + You can take it from there . +I do well with it . +I want them all . + That 's what 's going on here . +And I have this one . + It 's so big . + We had this game . + But that 's a long way from where we are now . +It 's not , I will do it . +I found I had them during the season . +But we are his children . +Do we do it just because we can ? + But they also like it . +How many people in the world do it ? +I was just going out there . +It is not long before he is too big for the house . + That 's New York , White said . +The two of them set off . + This is what it 's all about , he said . +He 's been here all his life . +I just do nt know what more to say than that . +I put it back on . +We are just women , you know . +They will never know what might have been . +He 's one of them . + I want it all , he says . +It 's still here . +It was the first time she had been there in about five years . + We would have it no other way . +It 's not like you at all . + I know , she said . + But not for long . + What are they going to do , not police then ? +Will it come back ? + In New York ? +How do I get one ? + We are good , he said . +People still like me . +Take from that what you will . +He may play today . + I just think it 's time . +So this has to be a first . +But he says they are just that . + He said , Can you do this ? +This is just one game , though . +Now she is back . +But I had to do it this time . + Here it 's more like family . +They all do it . +I play with them all day . +You make him up , like I did . + He was and did . +I have a home . +If he can do it , I can do it . +I like his family . +And they do not . +Such is now the case . +What do they think ? + Less is less , but more is more . + Most of the people work in the city , and I know them . + I have been here two years . +So I just did it . + But he does nt know when that will be . +But that 's the last time . + And I just had to work that in . +This is part of the life . + It was just like the old days . + This is my man , he said . +But what to say ? +This is your place . +It was nt the case last season . +I just want one play . +But that was another country . + Now some do , some do nt . +It 's been such a long time . +Where do I get that ? +Most of the time I was high . +So what is he up to now ? + They know what they have to do . +But it should nt have . + This was the only one left . +How about a year of life ? + Now I think about it more . + There , up there , they said . + Well , which ? +We want you to do more . + I was there , but I was nt there , he said . +But will there even be a next year ? +His work was his life . + He is so American , he said . +I can make it on my own . + No I said , but I do . +Or , in this case , up . + But you did in the second . + Now it 's the other way around . + And because it just did nt do any good . + This game will go a long way for me , he said . + Because all of us know we are going to get out . + It 's not just the money , he said . +This year it did nt . + Could I do it ? +That 's what he does best . +More than this I can not do . + Now , if you did nt like it , what would you say ? + This is a big city , he said . + You get up , go to work , come home . +But war is not like that . + But it does nt get called . +Or if he does play , how well he will play ? + All they know is other people just like they are . +Are you going in like this ? +There are more of them here ? + You know how it is , he said . +Do we like him ? +He could , and did . +It did nt do it last week . +But what if he does ? +But not this year . + She said , We can . +But what does he want ? + One is in the city . + How Good Are They ? +Not because I want it , because I do nt . +Just who will take it , though ? + Life would go on . +But we have to do our part . +Is that what they do ? +But she found that she could not do it . +You think this is the end of the world . +The season is not over for us . +The school was her life . +Might as well be now . + All in the day 's work , she said . +But I do nt think it 's even that . + But it did nt come about . + We are going to play our game . +I just did nt know how good . + They say , What have you been in ? +Do nt any of them work ? +So how did he do it ? +Very very much so . + How long are they going to take ? + You are not in season . +How did she get the way she was ? + If he did , it was nt much , he said . + No good , he said . + But there is more . + That 's no good . +Take that as you will . + How do I know ? +He does nt know what . + So what do we think of this place ? +It just was nt a good day . + What did that country do to us ? +That she 's not the same as me . +It was all the same to him . +Would they go back ? +We are nt that . +This was a war against the Man . + That 's where the money is , he said . + I did nt know where it was . +Not this year , though . +We want in , not out . + It 's what I like best . + You know it does . + They just come at you , he said . +I know where he is now . + I do nt want my family to go through that , he said . +They were going to go home , and they were going to make money . + These people work for you . + They are right , but they did nt know the New York before . +And the time has come . +You know , for me this is the best country . +You do nt have to think as much . + It 's been too long . + It 's just not right , he said . + Here , you just go out and play . + One day she 's here , the next day she 's not , one day she 's to the right , one day she 's to the left . +He was nt and did nt . + What do you do there ? +I did nt know which . +You know what it is ? + I get it every time , he said . +I have my own work . + This is not high school . +That 's the way they do it here . +That 's all he had to say . + It 's been back to back . +They say they are . + This would be a good time . +It would not be the first time . + What do you think ? +Have a good show . +And she may just do that . + It 's a team . +In a way , I have . +But I did nt want to see them then . + I do nt like the war . +I do nt want him here . +You do nt know who you are . +And how many in the house ? +Where do we want to go as a group ? + Is this your last year ? + They may very well get it . +That 's good for him to know . +No , she says . + To me , he 's the best . + Not one of us has not . + They know what my work is all about . + No , there is nt , I said . + This year has been a good one for us , he said . + It was like going back in time . +Under the new law , he could not . +The place is night and day from what it was . + But people do it . + I do nt have a program , he said . + We are not at war with you . + No , this is for show , he said . + I called the police three or four times . +We have the people to do it . +It never used to be this way . +What 's New : Not much . + They want to have their own country . +She : We want to . +And now I have to be there . + No way at all . +They like to say it 's the same , but it is nt . +Right , and right . + New York City , I said . +If so , now is the time to go . +That 's good for the game . +This week , more of the same . + You did good , he said . + The police were called then , she said . + I know it 's a business and we make money at it , he said . +He just did not know what to make of it . +They come over to my house and see me or I go to their house . + This is the best way to do that right now . +I take this home with me . +But not in one game . + What 's over ? + How do I know ? +And I did nt want to have time . +So that 's where we are at . + Where Is the Money ? +Well , I said , you come next week . + He will never do that . +You come back home . + I did get one , he said . +It can take a day . + I will if I have to , he said . + Well , he said , that 's good . +He would like to do that as well , he said . +And some may know more about it . + We had to get out of there . + And we do nt know how long it will be there . +And there was nt much for us to do . + I said , What 's that , and what 's this ? +If he does , it can work . + I do nt like Government money , she said . + You just have to know . + I want them with me the next day . +Can we get back to the war now ? +My time is up . +In a Court of Law ? +This could be big . + It was one , not two . +But this is not that show . + That 's what I want , he said . + Then you take it public . +It 's all I have . + I was more than a little high . +Women have a right to play this game , too . +So they do nt want to get out . +What can it do ? +He left the company last year . + It does nt work , she said . +You do nt have one . + We are in . + I think I will be . + They had the money . +Did I show you my school ? + He did not even have to go on . + This is all I know how to do . + People who say that do nt know me , she said . +We could use it . + That 's what this is about . +But she would nt . + People would nt work for her . + So , she said . + No , I did . +And we play them . +It did , though . + He : What 's that ? +Some say women do nt . +What might some of those be ? +You want to use my work ? +That may be good for him . + If it is to be , it is . +Every business does that . +You might even say they are over . +That made five for the game . + Not too many , she said . + Law school is not going to be my life , he said . +And then there were the children . +It 's one year since you left us . +It 's been that way all year . +He could not get back to his house in time . + I think they see us , he said . + You are part of the game . +I did nt want to back off . + They think they have a good case . +So where does he go ? + It 's about the law . + I want her to do so well , she said . +But he does nt have to like it . +And you have them all . +I want the world . +What about this year ? +I do this because I want to . +I do nt know when this will end . +They know me , man . + You were for it last week . + I want to be the first one to go in . +And I think that 's good for all of us . + What 's he like ? + I do nt , I never have . + That 's the best you can do ? +I was just left out . +Just two , this season . + With these people here , he said . + Just like law , she says . +I get into that . + Do you see what life she had ? +All right , what 's going on now ? + She 's of no use to me . + He 's still here , is nt he ? +There are still people in there you like . +The Man Who Was nt There was nt there . + It 's not Where do we go now ? + But you are not here , she said . +She called him up : How are you ? +What 's he to you ? +What will you do with them ? +I would nt know . +Big war , little war . + Did you see me ? +She might come out against it . +Some are good ; you want more . +You do nt want to be the one that does nt get it for him . +So I was like , no way . + I want to go back to school . + At our first game , he said to me , All right , what do you want to do ? + We are going to get it out of there , he said . + We can get through this too . +But it 's not the same here . + It 's your life , it 's who you are . +For us this is new . + The other did nt . +Your time 's up . +This is in part how it should be . +They put you in the right place . + It 's out there for the public to see . +But not here , and not now . + But they know me . +I want you to do this . + But it did nt work out that way . +But he does not have the money . + And you were there , too . +You know what I think ? +So , what will he do next ? +But no , he 's not . +No , it 's not the place . + It was all that and more . +It would last three days . + It 's a big , big business , he said . +Each and every time ? +He had no use for school . + Then they would come to us . + That 's her . +Do we have the will ? +We never had a new president like this before . + We do nt have a life . +What is next for us , what we will go through , that you will see here too . + If you do nt get this , he said , you do nt get me . + Before , I could nt . +At the end there is a show . + We are here for the money . +Last night , he did . +How did you think of it ? + I think she 's right . +I was like : Who are you ? +Where should they go from there ? +I did nt know it was going to be like that . + Just go for it . +You are here now . +What could he say about me ? +What does one have to do with the other ? +No , she said . +They just said , What do you want ? +But that is how it was for us . +We are going to be very good . +But I think more is going on here . +Not as much as you might think . + I would never go for that , he said . + This is all for you , they say . +Said his business was way off . +Would it go through me ? + We could nt get out . +And how much time ? +More money in less time , he said . + What would they think of us ? +How did they know ? + Where do you get this from ? +During the first week , the police used to come . + He did nt want me around . + They should have left it the way it was . +What did we use to do ? +What he made of it I do nt know . + Good , very good , he said . +What was the school like ? + My children did well in school , she said . +He would have to do . +What 's that going to do ? + What was going on here ? +It 's time for me . + I said to her , I did my part . +We may not even know until game time . +Well , it 's life . +After one more week . +And what do we do then ? +That 's his home now . + You just know it , he said . +How long will the war last ? +Use it with all your might . +But still they come . +It 's not only as a team , but on their own , too . +But I did nt know that at the time . + Here we could get three a day . +And that will be for the best . +A : That 's it . +Are those days over ? + Want to come in and see it ? + There 's only so much you can do with them . +The Government says there are not . + I want him to have his own life with them . +But there was nt much she could do . +But he does more than that . + He had four children . + This was my day off . +That , I would not know . + He did that all the time . +Which one do you think is going to make more money ? + This is what 's out there . +Next time , they will be . +And what if they do nt ? +I want to go all the way some time . +The law is the law . +That 's not what this country is all about . +We are not , as you put it , at war . +But we do nt know about it . +As if to say : See ? + That 's not to say I would never do it , he said . +She 's all around me , now . + You do nt do it in a day . + No , was all he said . +If I did nt have him I would nt be here now . + Well , she said . + I do nt know how you are going to do it . +How about the President ? +Who will be the first to get there ? +But was last night 's just another ? +What 's it going to do ? + The women said they would . + But I never had the money to make it work , he said . +In this case , they did . + We are over there all the time . +About people who are nt there . +You could work with it . + All of them , he said . +Who are the members ? +We should go about our business . + This year , we are it . + Not even the West End . +They know they were first . + And what about me ? + That 's the one . +It should be said . +It 's been a long four years . + Around here , I was the only one . + That I know of ? +This is way back . +We are here because we are here because we are here because we are here . +And then it did . + I would nt even know how to go about it . +There is no other way to put it . + Some of which she made last night . +I had the game . + I was a good get . +But there we are . +I know my way home . +The money is good , she said . +Now I think he 's going to be . +It was , he said . +So this is a big game for us . + Can I get back to you ? + That was then . +It 's not that I would like it as a way of life . +But that 's the only way that this team is good . +Who was nt here ? + What did you think ? +It is there to be found . +I had to say it . + There 's just too much time back there . +Where do they go to school ? + I like the city , he said . +The last day of school . +They do nt know the game . +If we want to work , we do . + Before , you could not do that , she said . +He does nt , though . + That is all she was in New York for . + She made money , he said . +I said , I like this . + Was it my best day ? +It 's a big country . + You just do nt know how much we want this . +The one that should be ? +If they come to the United States , they may or may not . + I could come here every day . +It 's play by play . + But How Many Like Her ? + I do nt know what it is , he said . +Is there any way this can still work ? + They were right there last season , as it was . +We own New York . +There is money to be made . +It had been his home for so long . +I do nt even come home to the same home . +You can take it off . + That 's not the way to think . + Will it go on ? + Would I take it back ? + Not the United States . +How did it do this ? +It is what this place is about . + This may be one more , he said . + We have to do each game like we are in first place . +We may want to do some of that . +I was like , What a day . +That it 's for the old . + Then , he said , we can have a government . +He did nt take it to the house . + Do you want to go home ? +But in our case it is not . + You are in the street . +Do we think it 's right ? + Then I could have a good life , he said . +He 's not going to get in the way of that . +You just might like them . + I just do nt think the season is over , he said . +And I was the only man . + They will not be the same like before . +Come by any time . +And they will show up . +I used to think so . +You are not all there . +It 's around you all the time , so you do nt think about it . + There 's times I come here and say there 's no place like home , he said . + And it was . +I just did my work . + What could I say at the time ? +I would think so . + It was not on . +But she did nt say that . + I know her work , she said . +But most people , she said , go to work out . +No to the first . + I called the police . +What will she show us next ? +And do it now . + It 's like being part of a family . +My life is still good . +We made more money than both of them that year . +It 's not just about my life . +As it should , it says here . +Or will they not ? +It was nt about him . +But she did nt want to make law . +You are going to make the next one . +I think of him as family . + It 's not over . + Now they are old . +You just do nt come back against a team like that . + But he 's so big . +I said , Where ? +Know where they are at all times . + We are at war . +This is the first group . +I want to know what he 's going to do for the country . +I should nt have come back to see the way it is now . +Are they with us or against us ? + We know the way now . + When it said it could nt , that was the end of that , he said . + Way in the back , he said . + They all want me , he said . + They have not come in . + Come on , then . +If I like it , I like it . +And the way he 's going right now is the right way to get out of it . + So it 's going to take a while . +As we like it . + That is their business . + It was nt . + There will be more . + It was not too good , he said . +I like being in New York . + In a way , it was . + And there were still times when I did nt know what was going on . +We did not want it . +Time for only one ? +Just get through it . + This is the only place I know . +I used to see that . + We see other people . +They should nt do it . + Today , it 's not . +And if so , is this good ? + I do nt even know where I put it . +He 's right on the money . + Where can you make more money than that ? + I do nt think it will work . +I had never been . + This time is the last time . + They should know that . + They do nt have the time . +Now I want to do that . +There is the world before them , and the world after them . +This should nt work , but it does . + That does it . +We then had children . + But it 's New York . +He has to go in there and say that . + They are just being the man , he said . +But in New York City ? + You want to know more about that . +And I had one . + Not much you can do about it . +They have so few . + But it just is nt so . +It will be all right . +Well , not all of it . + Now I say what I think . +They were in and out . +Just not for us . +They just do nt . + Is that what I did ? +You are right , it 's not my team . +This is as good as it 's been for some time . +It did not make it . +Can he play with it ? +That 's all I want . + You never know where he is . +Who do you think . +The market was down . +I had to go out . +It 's there in him . + But that was not to be . +And then where would I be ? +IT had been a long week . +No one could come up , and I could nt come down . +I do nt like what I see out there . + You know , it 's not the only case I have right now , he said . +What does it come to ? +I know when a game is over and when a game is nt . +I had to be out there as long as I could . +Do you know where your children are ? +Well , they could nt make it in , right ? +First up is A . +Way , way up there . +Only she was nt . + This is my second home , he said . +They had no way to make money in the first years . + I say , Like me ? + Take your time , he says . +She was not about to do that . + This is the place I want to be . +Where do we go ? + But that game is over . +But are you a . + You do nt have to see him . +All women are nt . + He did nt know what to think . +The work just was nt there . +I LIKE YOU , IF YOU LIKE ME . + They know him from the game . +You do nt have to think about it , you just show up . + I do nt know what you do about that . +But I come back at you . +I would like never to come back . +But not if they play like they did yesterday . +You know as well as I know who did it . + That was the first and last of it , he said . +They do nt take on the world . +Who is in and who is out ? +Today , there is only one . +But it should nt come to that . + Now she does . +That would be it for the night , he said . +You just do nt know how to say no to your children . +Well , it should . + People did nt know what was going on a year ago . +That 's also police work . +It 's where we are . + How should I do it ? +Now , it is his time . +What a man would nt do for a market like that . +One would think not . +Then he said : No , no . + I did nt even get there . + What was your day like ? +But such was not the case . + He made do with what he has . +What 's she like ? + That 's all he could do . +Now , it 's time to go . +We will be all right in the end . +I think it did . +So that part is over . +What will they do to get that way ? + You did what you had to . +Would nt you know ? +I do not want company . +At first he did not . + It did nt , and we are . +Would that we could all say the same . + We could nt get it , he said . +I do nt like to be too high . +This year they are going to have to . +I do nt think we are into that . + And so they were . +This is their world . +Years ago , we did . +In a way , he is . +Not so , he said after his show . +It was the best place . + I do nt know ; it 's just me . +There are two of them . +And that 's what we did . + You never know if you can get it . +It did for us . + I know what people go through . + I was like : He did nt go to school ? +This time she will . +In a way , they were . +We are not about your yesterday . + It will take a long time . +Little good it does him . + There are many who do nt know . +You want to be with us ? +She said , You do nt do that to me . +Well , I do nt . +How 's his back ? + He 's good to go . + I never think about it , he says . + We may see that some day . + And we should make use of them . + There was no market , he said . +She said , There is one , but it 's not for you . +It will not do . +What 's in It for Her ? +This was not one of those . +I want to be in there . +And so did we . + He 's not in it for the money . + Which it was . + Well , I do nt know , he says . + I work at it all the time . + We are an American company . +What 's it like there . +We put it into work . + I know how people are in New York . + It is my state . +He can see it . + I did nt even think about it , he said . + I do nt think I would do well at all . + It is just a game , he said . +He 's too much like them . + I do nt want to . + But I do nt want that . + We want to make it work here . +That is to say , all over . +I do nt see it that way . +They will make more . + Our world was never the same after that , he said . + But I did nt get it . + All she had was money . + Or will never work . +One , on the women . +Well , it 's about time . +But I can do that . +That 's what most people do . +I think that 's about where we are right now . +If they were nt , it was nt . +I think about it . +But so much more . + Take it , he said . +I know what it is to work my way up . + But it 's good for them to be here . +So I could never do it . +And will they make it in time ? +A : How are we going to do that ? +Know what 's on it . +Do what you want by day . + But it is no more . +But we are going to go at it that way . +He says it in public . +I would want to have a say , and get some of the money . +If so , here 's what she might have had to say . + And what do you have ? +It is nt , though , what it could have been . +He had little money . +It was more like a family . +He did nt think so . +Could be a team there . +I back out of his office . +You can see that they know that this is going to be over . +If you want to see it . +They do not even work . +How could you do this to them ? +Well , one down , one to go . + I do nt know if I can go through with it . + We are going to court , he said . +How do you do this ? +It was a very long day . +Now he 's down to one . +They would , and they did . +Is that what it is ? + This is my company . + That 's not a game . +But , even so , there is not much to see . +And for a while it was . + He said , I like four . +You all right , then ? +Which they now are . + I could have been there . +What 's it about ? +This is not a high school game . +Will he make it or not ? +It is his way . +I do nt want to take it off . +They do nt want to put it on his back . +So what do I do ? + Say three or so , I said . +It 's not where we want to be . +We will never be the same . + I said I can not do it . + This is going to take time , he said . +But what you see now is what you get . +And what about next time ? + But there is only so much you can do this year . +I want to come back next season . +They do nt like it and you do nt like it . + People in this state know who he is . +Would they have said no ? +What Should You Do ? +Who Was Where and When ? + I think that 's right for now . +And he was a big man . + I called him over and said , This is what it 's all about . +Did he do that ? +Some of them are also big . +Well , that was a long time ago . + But that just was nt the case . + This has been going on for years . + We had been at it for a long time . + We do nt know what to do , she said . +They are too American . + Where Have You All Been ? + By right these children should not be in the school today . + I think the city did it , he said . +I like it when we play good . + It was much , much too little . +How could I say no ? + You have to take him back . +No more , no less . + The team has been through this so many times . +I do nt want to play that down . +Then you can have him back and take it from there . +He would nt be here if he could nt play . + That 's what it is , she said . +And who 's the next President ? +Can he do that ? +That 's not good for the game . + We should nt . +It 's not good , though . +If you are not , he 's not going to play you . +But she would not have it any other way . +He should see that . + So , what do they do ? + But it 's so right . +Do you have any more I might see ? +Where Do We Come From ? + But I do nt know , she said . + I can only think about today . +It was all a game . +Most have been with him for many years . + This is not the time , he said . +And who will they take with them ? + I do nt think that 's the way to do it , he said . + I do nt think it is going to come this time . + They said , We do nt . + This was our first . + But this is just the first game of the year . + Who could nt say that today ? +I think this year has been good for both of us . + Who are you without me ? + It 's a team game . +They think of it as the place to be . +But all the people do nt like them . +They come right out and say they are against it . +It was what they did . + She did nt , so . + Could be , he says . +So , where are you ? +AT HOME WITH : . +Now he was off . +For two years , they were right . +We had no country . +They are good for you . + We did it on our own . +I did nt make the case . +Well , no , not at all . + You never know who or what may be there , she said . + What did you do last night ? +It had the music . +He called out to her . +I know they are there . + How many times after that ? +They get so little . + The President has been there before . +You have to get your money the best way you can . + Both , he said . + That 's four to one . + THE LAST BEST YEAR OF MY LIFE . +But it did not last that long . + And they play that way . +Most people have left . + Do you like what you have here ? + It was his family . + It 's not the one game . +He still has work to do . +We do nt do that . + We just called up , he said . + Where do they go ? +And you are all right . +By going for it . +He said , It 's you . +Same as last season . +Would he do it ? + I said , What 's going on here ? +I never go out during the week . +They are very good . + She was the best . +I said , You did good . +They come and go , come and go . + I did nt think we were going to make it . +I think he still does . + Do any of you have a family ? +You see it all around . + I said , How are you ? +And we did nt have any money . +What Will President Do ? + And I do nt know about war . +They had their home back . + I did nt know what to do with him , she said . +He has nt had to make those . + To make it like it used to be ? + There is no money , he said . +He is a director of both . + How can they do this ? + You do nt have to think through the game . +And I think you will , I think the American people want it now . + I have no children . + I had no money for it . +The city does nt have that money . + And I did nt because of that . + They are people just like me , he said . +We are going to go for more . + This time it 's up to her . +A : It might have been . + It 's like a family . + We are going to take our time and do it right . +And for now , they are not going back . +Where is the law ? +I would nt want to think . + But it just did nt work out that way . +So he 's right . + We may very well do that . +If it does nt , I do nt know . +I do nt know what they think . + This will be its home . + He said he did nt know . +I do nt like to do that . +But there was no music yesterday . + But now , this is how it has to be . +She has nt left him . +He said he did not know what would come next . +These people just do nt get it . + We get our money from the other end . +Now the time is right to get back in . +It is not like you . +We see him all the time . + She 's in her own world . +I think they just want to be part of it . +What if we do nt like them ? +And in a way it was . +There was no other business like this . +We know this business very well . + We are here to see him . + He 's still here . +I called him More . +I like them all . +We have to think about the day after . +Even if I had time , I would nt do that . + This is not a good place for a school to be . + It 's not the same as at home . + We did nt play very good in this one . + I was as well . +All we could do is do our best . + I did nt know this , he says . +I think that way . + This is just political . +Who are they after ? +I just want to play my best game . + So we did nt think about them . + I said , If you want to do it , I will work on it . +In his own time . +The White House will not say . + I like being out there , he said . +It is a little of each . + There are very few people there , he said . + I called her up the next day and she said , So what do I do with it ? +This is nt about the money . +And I did nt . +We do nt want money . + They said , What do you have ? +I know the way I play best . + This is my first time here . + We are not a team without me . + I do nt think people know that . + It 's just good to be back . +The play was not over . +What are you going to do next ? + He did nt like it . +Well , you do nt . + I do nt want to see you go . +It should nt be so . + This is the place for me . + There 's still work to do , he said . +This program is the way . +Where 's it going to go next ? +We are both from there . +What 's left to do ? +He said : The best part ? + It 's all about how long you can be out there , he said . + Every day , he says . + But he did . +And I do nt like to do that . +After all , it could come at any time . + That was about it , he said . +But then , it 's still called the United States . +They have to go home . + And they know who he is . +I had my own business . +So if he did nt do it , who did ? +That was only yesterday . + I did nt want that part of it . + This is the first time for us . +Then a second night . +Now I have five . +I would have had my own house . +You can see in other people 's work what you do nt like . +We would like them to , too . +A case can be made for any of them . + But it does nt have to be this way . +But she would not say what any of them were . +Is it good for them ? + A , one man said . +The next was too long . + He would like to think that he did . + Would I go out there and do it ? + I may come back to New York . +And we want to make money . +That is not so now . +What is she going to say ? +But I do nt think it is . + I would never do that , he said . +I have children , too . + I do nt know how much more we could take of this . +That , after all , is what it is to be old school . + Well , they are not going to go back . +You do nt like to see it . + We were nt going to do that . + It 's not so much them , it 's more us . +No one can know . + It 's the first game , he said then . + No , I did nt say that . +Which one will come first ? +We are not a court of law . +He was back home . + Is it you ? +But I could nt . +How do they like me now ? +How can you not do that ? +Many of them work . + I have one . + He 's the same way . +We do know this , do nt we ? +I never did like them . + It was , like , what ? +You just do the work . + We are just not for him . +There 's no other place to go . + I just go by , he said . +They want to play us . +She had been there before . +But that 's up to him . +It 's all part of not being out there for two years . + Or because they do nt know when to go home ? + I had to come back and do it . + This is when I said , I did it . +I say it 's not . +We know where we are . +This is a play . +We are all us . +Still , there was much they did not know . + Another , He 's for all the people . +If so , which one ? +We should not say that . +That 's it , he says . +Which were just right ? +But she will not take part this week . +But today is a good day for that . +Is that all there is ? + But they do want to do good work . +We do nt know when it will end . +But it 's not like that at all . +There 's no other way around it . +And how American it is . +You do nt get that at the office , he said . + We do nt get in the way of each other , he said . +I think it 's good for the game . +Are you high now ? +Just so as you know . + You and me ? +Now I know what they are going through . +He had come here on his only off day . + No one had used them before . +Well , first they do nt know what a market is . + Now , no , he said . +No , I could nt not know . +Well , I can do the same . +I did nt get it . + No , no , that 's not it , he said . +And who would that be ? +That just has nt been the case . + And some days more than that . + But he was the one who left . +They did nt have to be . +They know they can do it . +Many of them were women now . +But is it also political ? +If I do nt now , I never will . +He can do so much . +Only until next year . +The president has said this war would last a long time . +And that 's what I want to do . +Not one , he said . + And she said , Well that 's what I want to do . + They never know where they are . +A good place , too . +Not a one , he said . + What day is it today ? + Play time is over . +And today we are all right too . +For me , many is not too much . +But what if it had been more ? + He can be the other way too . + That 's what we have to think about . +It 's just the way it was ? +He can not make up for that . + I know every one . + He 's the best in the game . +What do women want now ? +They make a team , not play on a team . +And that 's where it 's at now . + How did they get them ? + Women say , That could be me , but it 's not . +That 's where we are today . +And so it does . +We like this one . + That Was Then . + We are going to have to work it out . + Well now I do . + Does he like to make money ? + But there you have it . + We go all year if they want to , he said . +She does nt know which . +And what is in between . + How old was she ? + But we are going to go on . +It 's where they were . +It 's not like that now . +No , I do nt know this man . + I would nt , the president said . +I do nt want to play . +How about children who want to know how you get around the world in one night ? + Do you like this ? + You just do nt do that . +I did the best I could . +And that was only a few years ago . + This is who we are . + The police have been here , how many times ? + That 's what not to do , he said . +You are right , I say . + YOU know what ? +They do nt think they are , but they are . + When you use it like that , how long could it last ? +He made most of it at night . +We all have a say . +Where could she go ? + I do nt think it would be the money . +And , in a way , we have . +The more I see it , the more I want to see it . +And good for them . +You want to work for and do business with these companies . + I would nt , not at all , no . +There has been no other . + The money will not be there . +That 's just not his way . +It is still new to me . +But it may be the best they can get . +But there 's a long way to go . + You want to say , Do nt want it so much . + That 's part of the game . + Do we want to put them out of business ? +But this is just not so . + It 's good business for the city . +Now one has been . + You just want to know more . +What does nt it have ? + Do You Know Him ? + How did you know I was here ? + He said , You will . +But I want to know what 's going on . +We are all people . + They said , What do you do ? +So where is my place ? +Is he around here ? +When are you going to go ? +So see it now . +So what 's this about ? + How long can this go on ? +She said she had called the police , but they did nt come . +No one can play them . + Do you work here ? +For a very , very long time . +It does do that . + I do nt see it as good for the game . +See you next year . + He had too much work , he said . + Even people who do nt like him . +And they are not all . + We have a very good home , he said . +It does nt come like that , he said . + Then they say to me , Who are you ? + He did nt like it . + Well , you are going right back into it , are nt you ? + I think you have to do both . + Or they said that 's just the way it is . +But that work may not be there . + What if you do nt have one ? +That 's what she said . +But he had nt . + We only see them at this time . + It 's their business . + You see him , you see me , he said . +I had three in one season one time . + Was I not right ? + I have to have one . + And they are , in a way . +So I want you to do right by her . +They are , too . +She did nt see me . +This is for right now . + You have to see them every day . +We have to make it for them . + This is more about what he can do for us . +People who know her like her . +And that 's the way it should be . + That 's it , he said . + Is he right ? +It 's been a long time . + That 's a big part of their game , he said . +All we had to do was get out of the way . +And I want to get back to where I was . + It has never been that way , he said . +Little does he know . +It did not come in time . +It was because I did nt have time . +He will , you know . +People did nt know what to do . +It 's who we are . +I think that more is going on here than we even know now . +What Do You Have ? +This is the best place to play . +In one case , though , it was not . +There may come a time to put it back . +For now , though , it is about this season . + Does He Get It ? +He did nt say what they were . +What do you then do ? +How good was her time ? +And there is more , he said . +Do it , just do it . +They are our police . + It 's not all like that . +But it 's not the end . +If you could set up a school , what would it be like ? +You can be the best you can be . +White would have put it . +But he was so right . +He had it right the first time . + Some people do nt come back from it . +We come here to get what we can . + They would say , The world does nt know you are here . +She had not , she said . +Then they did nt come in for a while . +And they never will be . +Big play after big play . +This is not the way to work . + No , no no , he said . + That does nt work . +You are going to have a big game today . +Who are we going to take down ? +This is my home in this country . +Now come on , come on , come on . + And then , in the end , they do nt get in . +He did his part as well . +New York is not one of those states . + I do nt want to be down here if he 's up there , she said . + And we like it . +But we do that all the time . +It was not found for several days . + It 's been around for a while . +Well , I think it 's the end of World War I . +And he with her . +You would think we could not have had a family . +We get to play for another day . + Good , he says . +We have to work with her . +But that 's for now . +But what 's old is new . +What 's your best time ? + I did nt see it , she said . + We just did it all game . +Then more and more of them . + It 's the only way it can work . +Not too many more . + If the market is going to be down , it 's going to be down . +When it left after a week , he left with it . + We go by him every day . + We are not there , she said . +How would it work ? + I still think we have work to do . +Now she 's the director . +That is so right . +The law was the law . + It 's about life , not business . +They are nt good . +Where are we going with this ? +No , no , he said . +No , it 's going down the street . + I have to . +I do nt like to think of it that way . + I do nt know , I do nt know , he said , over and over . +To her last day , she did . + It 's time , he said . +She was very , very good . +I like the people very much . + It 's back to the way you want it to be . +If you want to have a good time , you will . +I want him out there . + It was not like that for us . +Can they all be right ? + It was nt my place . + Or how they do nt . + That 's all you have to work with . +I DO NT GET IT . +And I do nt want to be out until the first . +These are our best people . + But we did nt know it at the time . +A : On that day , no , she did not . +He 's here today . + This will be it for a long time . +You would nt play me . +How did that come about ? +And also how many did not . +He says they did . +And I did both in one game . + It 's just not the way we do business , she said . + I do nt know how much more of this she can take , he said . +I want some more . +People do not know us . + We have less money for more people , he said . +I would like for it to work here . + I have to be there for him , she said . + And then in the game , there it would be , just like they said . +It 's still a business . + It is a game , he said . +And what will come of this ? +What day we play . +You did nt know ? + We have nt had one in a while . + Can we come see you ? + Who has the right of way ? +And I will do that . +Now I want to see you do it . +Who Has Time to Work ? + It did little good . +I will do my best . +I like them both . +A little house music . +I do nt want to say , Get out of here . +They could have had both . +Will you get out of here . +I do nt have that right . +We would not want it any other way , now would we ? +What will be your life 's work ? +I will do this . +What 's it like there ? + So now what ? +How did he end up there ? + That 's not the best way to do it . +So I do think that there is some of that . + So how are you ? + It 's up to him . +It had never been used . +And he or she should . + But not last night . +She says that was the last time she left the house . +He just did nt know when . +The other day I called him . +The President did it for us . +I do nt know how he was with other people . +That is not American . +For there is no other way out . +She 's the only one . +If so -- so what ? +Still , when you are right , you are right . + There is a place for both , he said . + That would set the market in that case . +But there are those who do , or say they do . + But they said no . +It may take up to a week . +She 's out there , too . + That 's the right way to do it . +What could they do for you ? +But the women are very today . +We just all have to make the best of it . +This was not good . + No , she did nt . + Well , you never know , he said . + Where are you going now ? +He may be right . +Most of us do nt want to think about that . + You never know what it 's going to be up there . +It will take over , if it can . + Many were not . + That was last year , they said . +If the street is for it , he 's for it ; if it 's against it , he 's against it . +They are not going . +In There Was an Old Man . +But then , they have to . +Government , which is good , he said . + I did nt like any of them . +They did that for me . + No , no -- it 's not like that . + That time is over , he said . +But it 's only one game . +Go back to school ? + We are with the government . + If so , they should state it . + As you can see , they are not . +We have to get up . +But is that all there is ? +Because they are what they are , and they know what that is . +They say it , and they could nt be more right . + They take a while . +Now there are only two left . + But this one did nt . + People want to do that now , he said . +No , no , never . + I used to have one , she said . +But to do it well . + You are not even from around here . +Then there 's his music . + Now we have one more . + This is how . +It is the first in New York , not in the United States . +You know how they are . +Until then , she had been . +If it does , it could be too much . +He was good today . +It 's just that they do nt know . +Which one is not ? +More than that , even . +I do nt play for other people . +Who would set them up ? +He should be here with me . + This is good . +If he does nt get high through this time , he 's not going to get high . +I might not play well . +That was the end for me . + What 's your A ? +There is now another . + I do nt know what 's going on , he said before the game . +It did nt go my way at all . +And I still can . + People are going to say what they are going to say . +Or you or me ? + Well , it all has to work , right ? +It was about the game , and about the people . +Come and get me . +You have all day . +It 's up the street here . + I did nt like the program . +Then , back to work . +Do I have to go to court ? + Now , he said , I can get going on my own . +She would not see me for four years . + That 's how we are going to play here . +So they just do nt do it . + But we have some work to do . + He did not want it . +But I know life will go on for them . +This could be last year , or the year before , or the year before that . +That 's where we want to get to . +It was not the same last night . + They do nt know what to say . + I have the right to be here , he said . +How can this be right ? +If so , get over it . +I also make music . + Not one of them . + I would think of you . +I do nt him . + No , the president said . +That 's what my family was like . +So what can I say ? +There 's not much more you can do . +People think they know it when they see it . +I have to do this . + I might still like to have some . +And there is more . + They are going to do what they are going to do . +This was what I had come for . +It did not work . +That 's what I was . +Do you want them back ? + We were never in it . +And what do they want to do when they get there ? +It 's not over until it 's over . + Now we do nt know what to do , he said . +What 's new about it ? +But think of it . +But she never could . + No , no , she said . + No , I say it , she says . + He said , What do you want me to do ? + Not any more , he said . +She may be back . + It 's going to come back to you . + I do nt know what it is , he said . +Would they like it ? +You want the best team of all time ? +So for them , it 's found money . + What do you want to do ? +And yesterday there was more of the same . + Now that they have left , we can go back to work , back to school . + That 's what they have me here for , he said . +I do nt know what we are going to do from here . + It 's for those who do nt know . +I do nt know if that 's what they are . +Here 's how we know . + They never did , he said . + There 's no place to go but up . +I could nt take it . +People did , and people are . + As one I . +He will not be back . +I said I would be right over . +And who 's not ? +But we do nt know when . +We had a good time . + But up to now he has nt called me back . + Where Do You Go ? + It 's all I have . +They were at home in the city in a way that I was nt . +Now , he has good days back to back to back . +Few people do that , though . + But not on my part . +In this case there were three of them . + But there was nt much more after you said that , he said . +As in , So what ? +And this work does that . +And it never has been . +And so what , and so what , and so what ? +But there is more to the work than that . + And it is a good business . +They are a good group . +It could have , but it did nt . +But only for a second . +We think they should be . +I never did He did nt know me . +And you can be him , too . +Been here less than a year . + It is all these . +But Ms. New did . + A year ago , it was nt like this . +Because they are nt . + Life is life , she said . +One , Two , Three , And Who 's First ? + The time has come , I said . +Or is this the last we will see of them ? +I do nt think they can . + When I go to work . +I did nt know what it was going to be . + There is no way to know . + That was so good . + He does nt want to ? +No , I never had it . +If not , we want it back . +They have to get to work on time . +In the end , he did . + I do nt think he has to . + Where 's the show ? +Most of the women here work all day , every day . + Where did he go ? + I never used it . + Here , there is only this . + You go when you want to go . +On the last day of the season , they did it . +You just have to play well . +There just has to be another way . +We are here to work . +That 's not very much . +You do nt say . + We were going to do well . +What does New York think ? + This was my war too . +It will take work . + How did we come to do it ? +Now we do this . + We could nt think . +And you will never come back . + He was one of them . +Now , as to how we are going to get home . + Like new world , she said to me . +We are going to get him . +That 's all I know right now . +A man 's man . +But I do want to know . + And after all , they own the company . + They would nt ? +But I think we can get back there . +But it 's not that . +But there 's time . +Five years was more like it . + It was just so new , he said . + What more can I do ? + Is it all about the money ? + That is us . +This is what you are going to take . +Our time will come . + We may work for the government now . + We have to do it . + You have to think about it for a second . +She 's not the only one . +Does he want to go that way ? + It 's just the way we want it , she said . +It 's a big market . + There is money and there is money , he said . + They are with us . +To him , it was just business . +We could not see each other , he said . +I play a big part of it . + I had four children . +I said : We are not at war . +If not last year , then this year . +There is no more we can do . +And there 's a -- a what ? +No one said he would be . +It does , and then some . +People said I should nt do that . +It 's a big game now . +There is , after all , only so much time . +It 's not the same team . +We have nt all year . +What is in this for you ? + It does what it will do . +Do nt even go there . + She said , When you left . +Some of them were right . + What do these people think ? + I want their business also . + One day I would like to get up to him . +We know it ; we want you . + To me , that 's being a man about it . +It is a long way from that . + What is it now ? + That 's what does it . +He then set up his own company . +But it 's not much more than that . +He 's so good . +But that was a while ago . +Just one will be made each day . +He never was and never will be . +They are all over me . +Or I may just not go . +I do nt think I can . + The show may not work . +It 's only that day -- it 's not every year . + It is nt a court of law . +It was not the end of the world . +I can only go with what I know . +Of which he was a part . +More than in New York ? + I should be out there with them . + Not any more . +No , not this year . + But up until about a year ago we had no work here in the United States . +The first , but not the last . + Get out now while you can , he said . +More than that , I do nt know . + What are they going to do up there ? +She was in a good place . +And he did nt have the right . +This can take days , it can take years . +Does nt like him or her at all . + I think we would . +It 's just that that 's not all he is . +Would she even want to ? +Its just one city . + It was a house that was not a house . + We do nt want them in New York . + They just want to take your money . + He said , If they want to go , I will go . +I do it on the court . +He has to go . +They say : But where did you get this ? + How about the world ? +He was good at it , too . + And I said , I do , too . + We were not . + I want them to think about what we have to do , he said . +And -- they did . +Many people just can not come up with the money . + They are back in , you know , she said . + We are not in this to take the money and go home , he said . +All I can say is , they work for me . +What a city this would be . +They did nt say . +He could nt see much . +One or the other , you get by . + But no one has called . + Now I have to go out and do well . + What do you use ? +Many , many times . + I do nt want to be found in the street , he says . + What if it 's three of us ? +A year or so ago . + First , he 's big . + Good , good , she said . +But I know me . +It was big on big . +If you have nt said it before , do nt say it now . +If he has time . + What did I just say ? +But no one called . +I know where he is . + Some do , he said . +I did not do that . +Where can I put these ? + You have to today , he said . +That 's what they are all about . + We have to get on with it . +How did you do this and that ? + It 's more like a family than a company . +They could do more . + We have our own house . +I do nt have to think about it ? +Where and how does one just put up a show ? + It 's the only way they know . + How did it come to this ? +You know when a show is good . +It is all there to see . +And we get over that . +Now , it is the other way around . +That 's not to say he 's no good . +He said come on , just do it . +And it 's just going to be us . +Do nt just take one ; know how to use it . +We have to see more . + Are you all right , are you all right ? + She does now . + They did the same as the American government . +The world is more and more with him . +Then if I want to do it , I will . +I like it , though . + It 's our money . +What are they going to do then ? +He should be very good . +More than this I will not say . +They do , they do . + All right , I think . +And I think this will work . +But only one of them is right . + Be on time , she said . +It was too good . +Other states do the same . +We can do little about that . +If they do , then I do . + When do we want it ? + It 's only been two days . + Now I know it is time to go . + I think they are too high . +But there is still much we can do . + But what is nt ? +We are just going to play the game . + He 's not against business , she said . +But it 's what I do best . +But this I think I know . +How do you say it ? +Are you going to take the money ? +I did nt like them . +ARE the good times over ? +In a way I did . +So that 's what that is all about . +To come or not to come . +They never said when . + I did nt even see it go out . + They have to do that , she said . +I think we still do . + We were nt used to that . + Because today they do not do that . +But I do nt get into that . +HOW could it be ? +It 's in here . + So , do you think it 's too much ? +Where would you be ? +Little , if any . +Come the time , I will not even want to think about that . +The game was to be had . + And just like that it was over . + I said , So just go out and play your game . +Did you see it ? + We know that the market is there . + The show is nt about me , and it should nt be about me , she said . + I did nt say one time I should be on the team , he said . + All of it , she said . +Because that is what they do . +We do nt have them . +He has been to my house . + What do you think I think when I go home at night ? +He can use his own . +He does not want to take his companies public . +How do we get back ? +He does it every year . + So we are right here ? + I do like it , he said . +I did , I did then , I do now . +What in the world was going on ? + And they called me . +We know about him now . +They are out there all the time . + And I like it like that . +It 's what I do . +There was so much less to see . +That 's not the way to go . + They just are nt used to that here . +But I do nt think it 's going to work out that way for us . +And then , one day . +I could as well be back in New York . + I like a city . +It is that way for some . + That 's not me . +We have it today . + Women do get out . + You do nt know what it 's been like . + Then we go to business . +And now -- would nt you know it ? +It may be both . +And There 's More . +Only a few less than on this street . +We think it is . + That was nt the case at all . +Take it , take it all . +This is it for us . +They do nt have any money . +But , that 's our business . + This was a time I did . +This time , it just was nt us . +And you just do it . +Could that have been the case ? +And what did she get from any of it ? +What I did was for her own good . +Or so they used to say . +This is the end . + Just right at me . +He would be right to do so . +But they are used to it . +But many people do . +Which is what he was . +It was not , but there will be time for those . + If we are going to do it , we have to do it right , he said . +I do nt go to them . +So do nt go there . + Every night is not going to go your way . + He had to be there at that time . +He would nt say too much . +They would be with me . +After this he said to me , You can have the money back if it does nt work . + He should come here and see . +But there 's more to it than money . + I think about her before every game . + It 's all about show . +All of the time . + Good , said the director . +I think I have to think about this a little more . +He says he is the best . + It 's about , well , you know . + Now they can . + It 's what is he going to do next ? + We had it out several times . +Or put another way , what good are they ? + How about you ? +I had about a week . +And on the way home . +But it 's not your own money . +She can do it , too . + But she was nt me . + That 's what they are about . + We do nt work against each other . + It may take a few days . + We are still here today . +This time , it did not . + If I had to do it over , I would , he said . +He does not know how to it . +It could have been World War I . +This did nt work . +But do we know , too ? + It 's like the end of the world . + This is our home now , he said . + Do I like her ? + It was us against them . +Who were all the people in it ? +If we do not know that , we can not know him . +Just go for it . +It 's the same as last year . +That will take more time . + No , but it 's what we have to do . +And there is not much you can do about it . + So , what does he do ? +And now that I have it , I want more . +Does that make it right ? +He was never called . + I do nt think I can do that . +But is nt that the way it was ? + We have a good team . +But he will still say and do them . +Do I want to do that right now ? +The years go by . + I do nt like it at all , she says . +There 's so little of that around here . + They are part of the family . +It is nt and it never will be . + What do you think that says about me ? + I would not want more companies to do this . + I was nt in that department at the time , he said . +DOES she , or does nt she ? + I do nt want to think he 's not and then have him show up . +You want to be the first , or the second . + Now they may not get it . +This is the time and place for it . + How can you do this ? + I do nt even know . +I was like , just come on and do it . + They are just too into this . + Since then , he said . + What does it have ? + I still have to play my own game . + She does nt want money . + And after all , is nt this what it was all about ? + But I know it will never be the same . +But not for long . + It 's work that 's not work . +The season has been long . +I can go back . +YOU When did it come in ? + The people who go there , go there . + I come here every day , she said . +It 's just we did nt know it at the time . + Can we do this ? + She said : This is a life . +She was not there . + That 's what we are here for , he says . +It just might take five years or more . +I do not know if I will still want to play . +Now there is no end to them . + They are good at what they do . + Here , we have them all over the house . + All we have to do is work with them . + Both are good , she said . +It 's all part of it . +And now it will end with them . +If they get up on me , I can go around them . + That 's all I want to know . +What a New Year that would be . + Do nt say that , she says . +What was it good for ? + We have it now . +He was nt the only one who called . +It 's down to two . + I said , My life . +That 's what I can do . + I do nt know who they were . + How Do They Do It ? +How can people think we are not going to show up ? + If they are not , they do nt say much . + They are all right . +A year is a year . +And what was it all for ? + I do nt see any way out , the man says . +I think I can play well . + We will have a program . + And how can I say no ? +Who would say no to that ? +I will at the end of the season . +Do people like you ? + That 's not the business we are in . +That 's what they say he did . +But we use all three . +All two of you . + That was about it . + What does that take ? +And that is very political . +How long can you do the same show over and over ? + You are from my world . +Now some of them will . +It never was , until now . + I DO NT THINK I CAN MAKE IT . + What did you like about him ? +You did nt make it . +Want to go all the way ? + When was the last time you were in the White House ? + I do nt get what they are about . +I do nt want to come back . +I think it can get there . + They go to school , and they go home . +But then most do nt . +If they do nt have it , they are not going to get it . +They are all we have left . +Between what is , and what will not be ? + They should be there . + I have a house in the city , he said . +Might this year be his last ? + You are on your way . +I want to get to where they are at . + They are the best now . +What about other companies ? +How did he get into the business ? +I take them all the time . + You never get used to this . + You are going to get that . +And that does nt last . +Most white people think I said it . +That 's what she 's after . +But he did much more . +It 's not political . +Just a long one . + We could do that play . +I just go from there . + They are part of the people too . +Come back every day . + That 's to own New York . +This , you know , is what we are . + Go with it , he said . + We still have a long way to go . + But I would nt put any money on it . +They come to us but there 's not much we can do for them . + That 's our life today . + I do nt think he has been home . +Will You Take Me Home With You ? + I just did nt know how to get it out of her . +Not you and me . +Most , but not all . +And I think that 's new . + To get even . +Business is still business . +They say this is our year . + I want to be here . + So that was the end of it . + She would say : What do I have ? + We did nt come out and play the way we should have . +That 's New York for you . + And I said , It was you . +There is no place like it . + And I think it is . +Put them to work . +It does not take much . +But it 's also only part of the way . +I do nt know what 's going on here . +They said they could come over and get me . + Do you know what day it is ? +He can do this . +First , she said , know what you have . +They did then , they do now . + We are very old . + I think I do , I said . + You do what you have to . +Here 's how to make the most of it . +We have one now . +That said it all . +The world is not what it was . + We had to do it . +No , I do nt think that . +But for some people , they are the only way to go . +I did nt know him that well . +This place is all her . +So many of us do nt know . +They make your day . +After all , people still like music . + But it was New York City 's best week . +I was right on time . +That 's part of what 's going on . +Could be a week . +At first , he did not want to come home . +The good old days are back . +I just did nt know what to do . +When it 's your time , it 's your time . + I do nt know how to say it . + He could nt take it back . +And that should have been the end of it . +Now that 's not the case . + Well , now they are nt there any more . +What did he know ? +And I want to see more . +If I do nt get in , I do nt get in . + It 's very old school . +We are all going . +Only one in five said they had . +There 's just no place to go . + It 's all set . +That 's so good . + I have no time to think . +They did nt have it a few years back . + We want to go back . +We are still in that time , come to think of it . + What good is it going to do you to go there ? + That 's not good for this country . +That 's where you should be . +I do nt know if there is or not . +Well , there are nt many . +And it can all take place in a few days . +We have a right to know , but do we want to know ? +And what does she do ? +After that , he said : It was nt me and them . +The time to think about it is now . +He 's not going to be around here . + I did nt get it . +I called him the next day and said . +No school for the children . +Other than that , I do nt think about it much . + There is no state right now . +Which game was your first ? + It 's part of our business . + I said , Not at all . +It 's a part of her . + I have to work to make money for my children . +We think he will do that and be as good as he was last year . + Well , he said , there are three of them . + It was that way yesterday . +They did not even have a very good time . +A few of them have . +I have used it . + I think he can . +When can we go back home ? + But that 's all . + If they want me to . +But then , so what ? +They , too , are right . + Here , it 's just more one on one . +We are from the old school . +But that was nt the case today . +There was nt any center . +I can still see him . +Or has it been ? +But it 's not going to be . + You know what about him ? +No they do nt . + Do you think we should ? +The last is about him . + He would like to play one or two more years . +We have to go out and get it . +We are too big . + Every one of us can . +So you just never know . +But we did nt . + It should be here for a long time , he said . + And not many people are . + You never know where he is going to go . +John had to be out there . + Take Me Out to . + So you know what we did ? +How was your day ? + But it 's not here . +They did nt have the will . +But there is more to it than this . + When are you going to take me up to your place ? +You come to work every day . +The world will be a little less without him . +But you do nt go to work every day . + We did nt make it for them , he said . +We still do not know . +It did nt go . + You just do what you can do . + But every year it 's the same . + People will see me and say , Is that him ? +It 's about him . +That 's my life . +But should it have been ? + It has to be made that way . +This is what he does . + You can put it in a will . +We want the other one to do well . +Now what do we do with it ? + I just want to play this year , he said . + I just had to get out of there . +But they have a right to come to our city . +I said , Both . +He says , . +They do nt see it for more than a second . + We do nt do that here , he said . +Your time is up . + Is it the end of the world ? + They do nt want to see me , she said . +Just like in the old days . + Too long , he said . +The money was the same . + What 's Going On Here ? + They know me , he said . + They were big . +Now we are going to see how they do . +No , not at all . + I like to know where my children are , she said . + They said that ? +There were five of us . +And yesterday he did nt play at all . + New York is my city , he said . +Do we have to ? + Not the people , I know that . + If you go to the office they say , What can I do ? + It does not go over . +Their own money , too . +I only have two . +The one he had last season . + We are not going to be the first . + Not one , he said . +I just could nt think about it . + You do nt want to see it . +Well , you can . + I would like to see him go . +You have to be a president . +He would not say how long it would take . +Who is it for ? + Which it is nt . + But this year we will . + But that 's about it , she said . +You never know where you are with them . +As it does for us all . +He should have called police . +If there is a next game . + But it does nt work that way . +But do nt do it . +You have to know who they are and what it 's about . + Here we are , he said . +But this is a big business now . +The school had to take every one of them . + Were nt you just here yesterday ? + Until now , he said , we have nt found it . +But we get used to it . + I do nt know who it is . + So that 's what we did . +Few will say they are for it . + They do nt even know what is going on . +Is nt it about time ? + We want him , he said . +Do what you have to do . +Now we may never know . +It was too high out here for us . +And what 's after that ? +And we are off . + We are well on our way , he said . +He was too old . +They all know after they are two . +It 's part of what they are . + This is big business , he said . +What can one say to that ? + We just are not used to it . +The night was not going well . +It was nt for him . +There are so many of us , and there were like five of them . +And for that , there was no place like home . + You think we will make it ? +I have that , too . +So has the Federal government . +Both can do that . +We could nt get in there . + Not every team is that way . + What do you want ? +Can you do more ? + But it was like What ? +I never did get through . + No , they do not . +And who he is . + If I can play , I can play , he said . + We were all one family . + Now , we have two . + It was the first day , she said . + So get out of my house . +We are going to make it . +He 's been good . +I do nt think that 's the case this year . + We never said never . + We know it 's on us every week . + I know I was nt the best , too . +No , no , I could nt . + He has been there every night . +That 's all him . + That is the game . +But it did nt come . +Here , I do nt want that . +I know all those people . +For me it was never like that . +He made the best of it . +It was a long day . + But not in the way you might think . + Now , well . +They just did nt get it . +How big will that market be ? +How old is that ? + I think it 's just in the way . +But some of it will be . +They did nt even think about that . +Our war is nt over . + The American people will see through this , he said . +Another time , another year . +Do they do any good ? +It was made by A . +So does The American President . +Did you get it right ? +There is much too much to take in . +Now it 's not . +I just do nt like that . + But it 's not that at all . +No , no , no . + It 's going way more down . +It will not last . +What world is this ? + I do nt know how you can make it one . + The game is there . + Because it was like they did nt have any say . + But there will be new money . + I know we do nt have to , he said . + He 's for the people . + I do nt want much . + What more can I say ? + But they can be . +She said , They just do nt . + This is the way we have to play . + Take my own life ? +So is the money . + I do nt , he said . + Many people do nt want it . +They do nt want to be here . +I could nt think . + In our way . + That 's a first . +Because the money 's good . +Then what good is he ? +You think , Man , that 's for other people . +And that was it for law school . +After this , we can go back to what we are . +So , too , would New York . +They do what they want to do . +I would nt , but you might . +And so he made his own . + He 's against those who do nt work . +Same year , all four years . +He was my university . + And the way he said it , I think he was . +That 's the game right there . +We do nt see much in this country . +But how and when , I do nt know . +Three more to come . +We are on our way back in now . +You want to know where the money is in this business ? + It 's where I want to be . +So what are they out there to do ? + People say , How do you last so long ? + You can do what you want to do . + Not too much I can say about that . +Do they want to be against it ? +He 's not where he is because he has nt been . + It has nt been the case . +But she did one big . + But I know how to get an A . +But now I think I can . +They know me , and they know my times . + No , it does nt . +I want to be a part of all this . +So who was who ? +Do you take it off at night ? +And it was more than that . +I know what it is . + If they do nt know me after this many years , he said , they never will . + I say : Do nt do that . + I want a new life . + Where did she go ? +He did nt have one . +Any program will do . +If he could go , he would go . + That 's what we are to them all , you know . + Where was he when he did nt show up ? +There was not much to do . + And you see how well he did . +We do nt have much time left . + They never did come . +If she was going home with me . + All this will take some time . +There , they do nt want you . + There is no down time . + Just , you know . + He 's been here less than I have . + But what good would it do ? +I said , You see what he did ? +And there could have been . + Take us with you . +But it may be . +Even if he do nt want to . +Do this , do that . + The team will do well , he said . +It 's not the way . +We just do nt have the money . + My city is no more . + That 's all this is about . +If I did nt want to be here , I would nt be here . +It would just be too much . +It was , it was going to be . +The people who like me ? + What 's going on ? + This is what I used to say . +I do nt think I had it . + But we do nt know what we are going to get in his place . + How do I see my place ? +It did nt last very long . + Well , he 's not . + That 's just the way he is . +Here 's it 's the other way around . +Does nt he know how long that will take , how much work ? + It 's good , no ? +Then it was time . +If so , by how much ? +It did nt end there . +Who would do that ? +There was no second . + How can I say I like it here ? +But it can , and should . +And so it did not . +Take over the world . +They do nt even want to play . +What is the White House ? +It is more like life . + Where were you before ? + It was here before me , and it will be here after me . +And he does nt even know it . + You have to have that . +But I did not . +They may not even know what it is . +Made His Way in the World . +They have nt called back . + That is what it has been called - and will be called . +That 's it for now . + I just play , he said . + This is what he does . +How would I know ? + I do nt know what I would do without it . + Where do we want it ? +But they did nt want me . + What you see is what you get right now . + We made it , after all . +That 's the way it will be . + Want me to come up ? + Those were the good old days . + How would you know ? +I did it my way . +This could be a first . +Who would want to ? +So I know how it can be . +Could he still play ? +They would not know how to go to work if they had work . +It 's the people who own the most . +And that was all too much . + I do nt know if it will work . + When people see that , they like me , he said . +What to do with these children ? +She has a right to know . + Who do we want ? +Where 's the money going to come from ? +And then it 's all you know how to do . + Where do they think all this money 's going to come from ? + We do nt even like this place , she said . +I never have , she said yesterday . +But I would nt want people to get used to it . + What does it all say ? + We are all going be like this . +Because they are that good . +If you do nt , what will you end up with ? +Only the first of several . +Life in the big city . + We did nt go very long . + I do nt think I should right now . +What do you think this is ? +What are we going to have ? +How has this come about ? + I know we are at the end now . +But then what would be ? +And if they are not , we will see them in federal court next week . +You have no one to play . + We want him right when he 's right . +But he was of the team just the same . +This is the big one . + If you have that and you do nt want to work a day in your life , you can do it . +So what could I do ? +He did it his way . +And it might not even do that . +But I said : Well , now there are two of them . + They did not show . +When is the best time to do this ? + We know more than people think we know . +There was nt any . +It could be a little . + How much I make on that one ? +I know I would have . + I do nt think about them . +She just does it right . + He was not the president to me . + They do nt know what they want . +I do nt get the time back ? +I like life now . +What is American about it ? +This time , he made it . +On to the next case . + I have to be out there . + If I could have , I would have . + There is a government . + I could play . + It 's going to be a long , long time . +Still , it was a good day . +They have had too much of that . +No place like it . +What about on you ? + That is what people are used to . + It is over . +It 's time to get out and show people what we can do . +So what does he want ? +That 's where the money is . +Or to do without it . +He did nt want it . +Me : How long is that ? +Last year was last year . + New York is about business . +We are going back to work . + Now what can we do ? + They have children ? + I will not play around . + It 's not what it was . + No , not all the time , he said . +Business has not been the same since . +Now We Have One of Our Own . +Is that still the case ? + It did nt work very well , he said . + Will he get one ? +If they are not going to be there , they are not going to be there . +We are on the right way . + You see all of this ? +What does that say ? + I just go out there and do the best I can . + He does not . +They have to work . + But they want to come . +I said : He would come to New York . +It was nt for us . +But I do nt want to do that for too long . + That 's not how it was . + People have more and they want more . +Here , we are in year two . +It 's being back . + The right one is the one that 's still with me . + It 's just the way I play . +It 's about the market . + Now it 's not if but when . +You could do it . +It 's all about the war , I know , I know . + I do nt know who they are after . +The night of the day before . + It was all being put on me , she said . +It did nt say you could nt . +Some days never end . +The case can not be made . + We have a set . +And we go on from here . +This could have been it . +Where is it and how do we get there ? +He says that it 's women 's work . +I would have to say no . +I did it and it was the best time of my life . +The old days were the best days . +To which I say , so what ? +I have two children . + I do nt even know if I want it that way . + Right now I just did my last game . +We are going to be there . +She can go to the market . + We are used to it , he said . + That 's not the way we want this to end . +Without them , we might not be where we are now . + You know what it does ? + It was all right , she said . + People would take his money . + You can get them out one time , but you might not do it the next time . +No one was called . +Women see through this . +And we did that . +It made my day . +If not then , then never . +We think now is a good time for that . +I take her out three times a day . + But we had to . +And we did though not -- in the end -- with each other . + He said , What is this ? + How can I get people to come in ? +What Should Women Do ? + This is now . + You are going to get through this , I say . + If we do nt do it there , we do nt do it . +They are with the United States . +That would make her day . +I do nt have but one . + We are with you . + What more can a man go through ? +You know what I found out ? +I said , No one ? +They are just there . +Most of them were about the money . +May there be more of them . +And you made me like you . +But now it 's all about money . + The war has been going on for three years now , she said . +It 's in the business world , too . + You think I know ? + That 's just going to be too many . +I want to see that . + The game is not over . + Going out with the director ? +This is the time to go to work . + I used to be , you said . +I do nt know if it was right . + They are all over the place out there . + Just take it one at a time . +Or most of it did . +But what do we have ? + What will be , will be . + He said , No , no , no . + Are we going to war ? +These are the people that go to work every day . +Because it could very well be . +In business , that 's good . +And it was nt just about her . +But the next one is . + You are not police . +But what about her own life ? + That 's what it 's going to be about . +It did him little good . +And if it does nt work ? + The way they were when ? +Not that they would have it any other way . + I would nt want to do it . +This is what they get . + He still does nt get it . +They are in the big city now . +You never know that . +Even the best among us . +He does nt think about it . +Mr. Last should know . + I have to do what 's right for me . +That is for the best . + That will never be the case . +How do we know they did nt make it ? + This one , it 's money . +And that was all right . +When did he play ? + But it 's only -- what ? + You know it was . +And that 's the way it 's been . +I make good money now . +What did we see ? +Do they want to be a part of it ? +I did nt know about it . +I say , Just like you . +The money will not be there . +Many have been out for more than two years . +He said : No , no . +It was her last . +Or so I did . +It did nt work the other way around . +It should nt be like that . + They know what they like . + Like all of them do . +Some said they could not see . +But there has been little , if any , of that here . +What good are you to me ? + I think more people are against it than before . + But where is your family ? +You think you are set . +But what would she do next ? +Where are we going to put him ? +But they left them at home . + Best of the Best . +Still , he had a big game . + It 's not just me , she said . + The market was there . +I think we both do that too each other . +And it should nt be that way . +You said we have to do it . +It was more than that , much more than that . +How come she did nt take me ? +You do nt know who made it . + Not much , she said . + But I do nt want to go into all that , he said . + What was it then ? +A place to go . + I do nt think I could do that all day , she said . + But they are here now . +But I never have . + You are a man now , he said . + How did we do ? + There are those who want more of it . +Who might do that ? +And he did nt like war . +He is not the first to see it . +He 's part of the street . +What would I say to him ? + I can be next . +Then another man and another . +Now I know it would nt do any good . + I want to know if I might have it . + We are against this . +To me , it 's both . + You own this country . +It 's not up to white people . +There were those who said it was too much and those who said it was too little . +It was a group he called family . +It is now back to three . + No , not for three years , she said . +For much of the week , there has been a war before the war . + He did nt want to go , she says . + You had it here ? + It 's like so good , she said . + The law is the law , he said . +Say what you like . +This was what we had come for . +We do nt have time for that . + No , we want him now . +He said that would take a week more . + It did nt last long , but I like this team . +Not many women want to do it . + And he left . + I have a good life now . +They are now out . +And who they were . + Very much , he said . + That 's like the one about . +Last year was not good . + People from all over the world . + You want to be American . +A new season , he said . + There is not much I can say , he said . + I just do nt see how that could be any good , one said . +But that did not make him right . + They should own this , he said . +If not , what can I do to make them take it down ? +What in the world was going on there ? +Or the year before . + That did nt end up being the case . + I take him with me all over the world . + I said , That 's the way it is . + I had never had a program . +But what can she do ? +Are you among them ? + What can we do for you ? +Is the war just ? +That 's going to take more work . +Here 's how that would work . + No , that 's not him . +But this is my only house . + It 's good to know that this was a new day . + We put them in office to do what is right for the country . +Show business , show business . +The same could be said of many people , if not most . +Does she come out ? +What 's good and what 's not good ? +I do not want for us to have to part with her . +There are nt that many children around . +What was there to say to one another ? + But they come back . +She has been out of work since then . + They can get it all here . + If it 's to be , it 's to be . + This is it -- this is the place . +There is a way around all this . +I do nt know what this team would do without him . +Do now what you did then . +What does he want ? + I think I have it all right here , he said . + Do nt do that . + What are there , five of them ? +That 's what it 's going to take . +He 's not going to do it . +But we are a team . + All in all , it 's been a good life , he said . +We had found the place . +And I still do . + They know it . +I think I know my way around by now . +You are not the only one . +They know him up there . +Which they do nt like me to do . +If they do nt want to do it , they can say no . +I did nt have much work . +And when it does , what will the United States do ? + And that did me in . + I do nt want to go in there . + But that will never come , she said . + The New York Times , she said . +Well , that 's good to know . +Do we get that money back ? +And by how much ? + I do nt think so , but it could . + It was not his best work . + That 's what people want , he said . +But then , what did we know ? + I said , Well , I have . + That 's just life . +Did he do it the most times ? +He did not say who they were . +But not for most of us . +The old days are over . + I do nt know how long that 's going to take . +Not much you can do about it . +I never have , never will . +There was so much of it before . +But what does he do ? +It is war -- this is a war for our home . +I just do nt know . +They had to go . + But I like it here . +And not that much . +And you know it . + You can too . +That 's all there is to that . +FIRST they had no home . +We did it well . +They want to go home . +What 's the year ? +I do nt know how . + I know it . +He was in the right place at the right time . +She would be good . + It 's only right . +How did it come to this ? + This is a long war . +This is the only office I want . +No one could have . + What is this show about ? +I do nt even want to know that . + That 's not what we have . +He 's a big part of our team . + What do they do ? + I have children . +And his Who , me ? +We just want what they have . + That is all it was . + New year , new season . +She did not want to play . +And it will end . +Well , all right . +He did nt want that . + How come he has nt been here ? +And it 's not only them . + We do nt even know this man . +This is my family . + That 's a no . + We have people who want us to be here and we want to be here . + One day we were in it and the next day we were out of it . + We have each other , he said . +Not after a day like yesterday . +That 's not all they are . + She 's not in the office every day , he said . +It was not just a few people . + That 's just the way it is there , is nt it . + We like it very much . +He would show her . +But where will they come from ? + It 's big . +I will not put him in the game . +But that was long ago . + You never used to see that . + They still have it today . + I do nt think I do , he said . + We are as good a team as they are . +That was the way of the world . +So this year , we said we are not going to do that . + I was like : This will get her . +This time , he was said to have left the country . +We do nt think that way . + Even if they do nt like the show , they are going to say , Where are they going with this ? + One game was nt going to do it . +When you are down , you are down . +It could last a week . + This is the center . +Can I get off ? +Not just the music . +You know how it is in New York . + What are you going to do with us ? + Then he said , Do nt come back for a while . +So where will you go ? + It 's not about that and it 's not about money , he said . +I said it last night . + Mr. Long said . +She does nt have to . + It 's not my life . +Today what is going on ? +It 's been a year and a day . + We did nt do that last year . + Do I think we are going to take it back ? +She did not have any money . + I do nt know if it was because of that . + This is not the end of the world , he said . +It could be that way for a long time . +If you can make it here . +That 's what the team did . + That 's two million . +We are on our own . +Never has been and never will be . +I do nt even want to think about what our country would be like after four years of that . + That 's what I was after . + This is what he does , she said . +But that will not last long . +And I say , That 's right . + He made a good play . +Most do not get it . + We have to do what 's best for our business . +Well , last week it did . + It 's a new part of the business for me , he said . +This is your man . +He had a good time . +I think I can take it . +I did nt say what they said I said . + But he just did nt show it , that 's all . +That 's all you do . + He never called , though . +Not that any of this is new . + It would take us years , he said . +And some people like it this way . + Out to get me ? +Home : New York City . +Just put up with it . +Who can do that ? +He said he then left . + They are not going to do it , he said . +I would nt have to think very much . +An End by Year 's End ? + What do I think about it ? +This was the first year in a while that the market did not have a good year . + That was about three too many , he said . +We have to go there . + Well , you did . +After all , we are a family . +And it does nt end there . +It 's going to go down . +It 's All We Make . + I been there , he said . +You just do nt want it to go out like that . +It 's all over for us , is nt it ? +These are some of them . +There is nt another one like it . + How is your business going ? +For One or Three ? +They were the best team . +They are still there . +I do nt like it , but I go . + Would I like it ? +So , do we . + That would set me back a year . + It is not about me . + It 's the game . + He did nt say , You are going to be with the president . + No , before . +People know if you do nt like them . +But they do nt think they can . +They say there is no other place to go . +First : Do you have a case ? +Do you want to say who ? +They know that I can play . +I know you do nt back off . +Before it 's over , I might have . +We want to get him in . +Do it right every time . +Who will I use ? + That 's the only way you are going to go out and play well . + In a way , this was good for them . + But I do nt have the money . +Should nt she be out there ? + There 's no work . +I do nt know what to do now . +I know he did all he could . + Any new company is good . +I do nt think that way . +Still , at the same time , that does nt make up for it . + I do not see New York that way . +It might not play any part at all . + It 's all right for me . +Well , you could say . +Or , you should not have . +I would nt want them to take her from me . + This is good , he said . + It is a way for people to get to know each other . +And it was through him . +It 's just up to me to go out there and play on it and see how it does from there . +But they were there before me . + What is the United States ? +It was over for him . + We do nt know each other that well . + I would say there are three . +And then you come back to it and you are like . +You go from there . + Would that it were so . + So where does it go ? +You and I will never part . +It was that good . + But how can you say that ? + He has to go . + I do nt want you to have to work . + He did nt last long with us . + He is the one ? +I did nt go to work today . +Can you come and get me ? + Get out now . +More than you know . +Most days , it is . + I do nt know how he does it . + With this , they can go to a show and be part of a show . + I left there on a high . + I did nt have the money . + If we can do it , they can , too . + They may not know it . + They are going back to the way they did it five years ago . +That 's because there is no one who has nt been here many times before . + It is all about me . + What I can do , I do . + I just want to make him think . +I do nt think we should do it that way . + I want very much to see it , but I have nt , he said . + Are you going to do that ? +I was nt even good for a team . +I do nt say we will now . +What would you do about it ? +He was a white man . +I left it at that . +So is this it ? +Many times that 's not the case . +She still does that . +How could you not come today ? + There Are Too Many White People . +This is going to be our place every year . +You can not go back to what it used to be . +He 's just been there for me . +It was all there . + But you should know . +We had school the next day . + Do nt take it from me now . +That 's a long day . + That 's my business , he said . + I think they all want it . +It 's work , work , work . +But it could nt have been . + There 's no way , she said . +Take the day off . +But the first day of school is our second New Year 's . +He is a good man . + It was like the play was over . +You want them to be who you want . +But can they get there from here ? +But we are here . +It was nt like the old days . + What if he were right ? +Because there is so much to be found here . +You never know when your time is going to come . + It was nt in . +What this is like for his family . +And when will that be ? + We are here to what ? +And here you are . +I just want it over . +Is that what they are ? +I found out only the next day where he was . +Will no one work with you ? +I want to make my own music . +A week or two ago , I might not have . + To go from place to place to place . + I think people just did nt know what to do with me . +We are just going to go out and play . + This is the end of the war . +I do nt do that . +I do nt think people know about it . +But we are not out of it . + I did not do that . +What is it that you can say ? +They were used so much they did nt last long . + Well I do nt know . + Never , she said . + Life in the big city , he said . +We may not use it all , but it is there . +So they should be . +Do they have it in them ? +She had work to do . + As was the second . +They play that way too -- in a good way . +That 's all I have to say about it . +Is that what it 's going to take ? +That 's not what I was there for . +And for how much ? + How did they do ? +And I never have . +He is also the group 's president . +But now it has a place . +So what will it be this year ? + But we also know him . + They have to do what they have to do . + What is next is for me to make this right , he said . +He does nt know where his children are . +It 's day to day right now . + When 's just . +Do people now know what the State University of New York is ? + She did well , he said . +What could I say ? + I want that one . +Or , it may not . + You just have to be here , she said . + Never get used to them . +I never could get it right . +Not one of them left . + That 's too little . + Where is he now ? +How long is that going to last ? +All people want is to make money . + Now , the other said . + We are where we want to be , he said . +Here it does nt . + I just could nt , she said . +That 's because she is one . +So what do you know ? +We do nt have to go to it . + Where do I have to go , where do I have to be ? +There were not many of them around New York yesterday . +This is the Big One for both of you . +Where are the people ? + Which he does . + It just did nt make it . + And do what they want when they want . + You can never say never , he said . +But it does not say how . +He said , Did you get all of that one ? +You do nt know what you will end up with . + That 's what I think he would say . +Your life is what you make of it . +It 's not what I see , it 's what they are going to get . + It has to work . + For those who make it , that is . + He would never take a day off . +It 's one game at a time . +What she did was that and then some . +We had to part . + An American , me ? + It 's like we do nt have a team this year , Good said . + I want the world to know . +But that 's what he is . +Do this for us . +Do nt think about it . + I still may , he said . + How much more can we take ? +Then she said , You do nt think so ? + What was my life ? +He may be at home , he may be at work . + I had to put four children through university . + They can think what they want . + They are all over me every day . + His life was good . +The children are not . +But this is more than just a big group show . +This is a game we should have had . +It was called The Life and Times . + This year we had two or three . +It 's a good day , I would think . +Well , do I ? +Not that I was so much like her . + I do nt know if he 's going to be back this year . + They know that , he said . +Never in one place for too long . + It 's the same business . +I like my work . + What does it take ? + Well , they should . + This is not about us , he said . +Was he too old ? + I do nt know how long it will take to make money with this , she said . + They all do that . + I said , Where did I come from ? +You know how they get . +And I think you get on them big time . + Not at all , he says . + What state are we in ? +Then there would be three , on the way to one . +What can we do about all this ? + All in all , she said . +And it 's only to the good . + I know it 's a big year for me , he said . + You never want to play that way at home . +New York should do the same . + There 's going to be so many people out there . +Now , he 's on the team . +So we have that . +Come back for me . +But then it was time to get down to business . + Who did you say ? +I did not take it that way . + This is for my family . +He is not all work . + I was like , man , what 's next ? +It 's not if , but when . + It 's not set up for that . +I say , Go for it . + If so , good . +This is a good business . + And they can get it to you the next day . + But it does nt say when they get to know . +What 's it going to take ? +But the president does . + I just want to get off it . + It 's just the two of us . + Not so good . +This year is my year . + No , they never did . +So he called her . + We are going to take it to them . + He said , No , I have to work . +There are , though . +This is what I found . +I like to see that . + To you , it would nt be . + We are going to see more , not less . +No , they would nt . +Who are the people ? +I do nt think it 's my right to do that . +By now they know me . + Well , it was nt so little . +But that is a big if . +They do , and they do nt . + In case of what ? +And he is still around . +That will now be his home . + I think we could play today if we had to . + They make it for you . +He will want his own man . +I said , You just do nt like me , right ? +It 's all from that . +No , just me . +I know my own children best . + If we had any money , that is . +Then what would she do next ? + Is five too much ? +Will the Government come up with more money ? +You have to do more . +They both do what they do well . +But , he said , That was five years ago . +It was more us . +The government is here . +DOES she or does nt she ? +It 's good for me right now . + This was what he was . + And then I left . + Are we going to be around ? + But if you could , it would be high . +He was high all the time . +This has been going on for several years now . + It may or may not work in New York . + We still have to make the play , he said . + If it was the week before or the week after , he would do it then . +I do nt get out much . + There 's not much you can do about that . +Today , he still is . + But that 's life . +So it is , and so it was . +So what about the place ? + It was nt for me , he said . +She is against it now . +But there 's very little I can do about it . +He is good all the time . +She said she did not know the other one . + Can you go back ? + But I do nt think the world is up to it . + We do nt want our people to think we do nt know who they are , he said . + This group does not . +I come in here two times a day . + May I come in ? + Go and get over it . +This is not a political family . + That 's how you work it , he said . +I like it that way . +But he did nt use it as much as he could have . +And so , they said , she was . + I do nt go in there , not since he 's been there . +I can go on and on and on . +I did nt have the best year . +You have to do it ? +It will take time . +If you do nt like it , you do nt like it . +We all want to be first . +She was in her own little world at times . + She has it , and you do nt . + You are not very good at it . + Does he know me ? +Can I see it ? +Most are in the West . + Well it is nt , he said . +That it has been . +But New York is not just another city . + What are they good at ? +You want to play , and now . + But how can that be ? +I did nt know that , he said . +Do nt I know ? + Put them on the street ? + I did nt know that we would nt be on the court at the same time . +So , who is this team ? + But it did nt work out with my family . + I like to set it in a place I know . +He has been back only three times since . +Just as well though . +There is never a good time for a life to end . +There are only four people in it . +And it was , he says , but there is more to it than that . +So , no , no , no , not at all . + But that was a long time ago . +I take that back . + Is this what it 's all about ? +This is only today 's work . +So can you , right ? + How did I do up there ? +You see so many companies come and go . +I still see her . +You do nt get to see that . + I do nt have any say in that , he said . + I want to get on with my life . +It 's that time of my life . + You like people ? + They make too much money here , he said . + It would only last a few days . + Well -- no . +BUT back to me . + I would have to be with him . +That was over a year ago . +I do nt think my children will take it over . +He did not know what to do . +Would my life end if it does nt ? + I do nt want to know too much , he said in his office . +I did nt know which way to go . +It 's all a long , long time ago . +I never go out at night . +And it 's not in this president . +How could this be so ? +There 's a how much can you take ? +And I have to think so to be very , very good at it . +This was several years ago . + That 's what you said last time . + But it 's not like that today . + We are still in all three , the president said . + I do nt even know if I will get what we are here for . +Did you like him ? +How much are they ? +What do you all think ? +But it 's the best we have now . +For This Week : Time off . + But it may take time . +It 's never been like this . + I just do nt think it was the right time to say what he said . + And like the money . +We have to get more police . +You would nt want to go through this . + I know how people are here . +If you do nt , you know what to do . + The market 's there , he said . +But they never are . +It was too much , all of the time . + He used to say , If you do nt have time to do it right the first time , when are you going to have time to do it over ? + It 's the end of the world . + You never know what they are going to do next . +Part of it could not have . + I did nt know about the house , he said . +It did nt do much good . +But she would nt say which one . + So that 's my way to come back , he said . + They are in the same business . +Do I get it back ? + They come into my office , and want to go out , he said . +I had to get on with my life . +But they would nt be . +You only take out if you put in . +It 's just all , all right there . +But it is a new day . + We think we can do that . + No one said no . +I should have , but I did nt . +Do what you do best . +We were nt up to it . +But we did nt have much time . + What does it come down to ? +She said , I can make you one . +If you did nt , you would nt be here . +We go home every night . + Because they do what they do very , very well . +What day is good for you ? +What 's Going on Here ? +How does one go about it ? +Other than that , it 's just another game . +But what is nt these days ? + But now they do . + You made it , she said . +We were all the same . + There was never one of those . + It was too big for me . +Well , of what president could that not be said ? + Now there are only five . + Some think it will go back to the way it was , he said . + But this was a good game . + This is like his second home . +That was only the first time . + What are they going to do when they get out there ? + But that 's what I had to do . + It has nt even come up , he said . + Can you get me out of this ? +What would they do without this ? +That 's not the way the country is going . +It 's just take , take , take . + If it does nt , we are never going to get out of here . + We will take some time , he said . +You never know when it 's going to come . +But what will they do next year ? +She 's out to be on the best team in the country . +But that was his last big season . + Three , I think . +So , what 's it about ? +Not so much money . +That is , after all , what work is for . +The show does nt come out one way or another . +Who 's going to be left out ? +But he has been the president of both . +He said , What about it ? +I think our time will come . +She had no more children . +What do you want to do ? +Same time this year . + What , then , would he do about it ? +That is about it . +That 's what the President says as well . +I do nt want your business . +Up to now , she has not . +Where do they go now ? +People do nt see that . +He 's my family . +Well , there did nt used to be . +SUCH WAS THE SEASON . + I do nt have any life . + Well , now , he said . +You are going to have to come home . +This is the man . + You know what 's best about it ? +But there was too much time left . +So , you never know . +Would they say that about a man ? + I do nt know what it was , he said yesterday . + I did nt think about it at all . + I think we still have it . +No , no , I did nt . +I do nt know how it could a second . + They have to and they will . +That 's what you are going out into . +That 's how it 's going to be . +Would I have it in me too ? + He does nt like it . +Are we at the end ? + There 's no game today , she said . + They should play well . +So this is it . + He is one of us . + How did my country come to this ? +That 's where the case is now . +This is what we can do . +It has to do with the people . + It 's not the first time , it 's not the last . + You have to get used to it . +So this was it . +Because he has been there before . + How do you get that to come back ? +Right now , we do nt have it . +But they do more of it . +And what they said to me was . +Is this the right time ? + I do nt know what 's there , she said . +It 's all in there . +I may use it . +This was the year . +It was a good day all around for A . + How could you not want to own this team ? +But that was then . + We would just go like this . + Who could say no to that ? + So now they know . +Very few people have that one . + They do nt make them like that any more . + What can he know ? + They are around still ? +I do nt think it 's that . +No , we do not . +He said it 's about the same as here . +I think she is right . +Many , though , are not . +That was too much , even for her . + Not that I know of . + And I say , No you do nt . + And he does the same . +Then you did nt . + It 's out there , he said . + That 's me , he said . + This is not that time . +Who or what were they made for ? + In time , it might not be . + It 's still out there . +Will there even be one ? + Never did , he said . +In the end , they did nt . + Just another week of work , he said . +He said he was , too . + We were good in the last one we had . +There was no time to get off . + Now it 's a business . +One of them days . +That 's me up there . +UP , down ; up , down . +We are here all year . +Some days it 's like that . + But that 's not so . +All they have to do is be there . + He said a long time . + I work in the back . + But I will take it . + You do nt know what it 's going to be like . +Or he might not . + Law school , I said . +That 's when he left . + The game was nt over . + I do nt think any time is a good time . + But we could not get there . + What did you do ? + They are right . +I work well with people . +Its time will come . +I have the time . +Could I do that ? +Well , who would ? +If you go now , he 's not going to know you . + The next day there was more . + More of what ? +He said it was best for his family . + They did nt make it ? +The president has just a little more than two years left in office . +It is all up to him . + What are we about ? + She was good at that . + It 's what it 's all about . + I think he could . +I did nt make them . +And what do the Big Three think ? +You are in New York . +Not only is he the first director , he may also be the last . +What are we going to do in the next four years ? +That 's what you think about . +I know that 's not good . + So how do we get there ? +We are back home . +I think we even get used to it . + Have you been there ? +I have been both . + We could another day or another three . + I said , No , I do nt think we will . +They think I make it all up . +They said they would make it up after the war , which they did nt . + How could one man do all that ? +They see only their children . +I want to be there . +But to the play . +It then says Have a good day . + What can I say about it ? + This is not about the war . +But it is home . +He would do what he could . +That 's what we have to show . +Not until last night . + Part of it has to go back to that . +Where do you go next ? +But not after that . +Get them right the first time . +But I would nt like it even more if I could nt get any . +When he 's on , he 's on . + This one can take it . +And I have them all . +But I do nt know what it is . + No other way to do it . +I just play around it . +What do you have to say today ? +This week could be more of the same . + But she is . +It is also home . +And I said , you know what ? +Just the two of us . + I take my time . + They did not . + They say , Will you go with me ? +They just did it . +She did nt know . +I know it 's me . +That 's what I did today . + It is the people who make it . +And it was more than just a game . + You go on to the next one . +But what they did they did very well . + What 's that ? ) . +There is so much more here . +Where did she come from ? + But in this case , that 's what we found . + It was my first one . +Where did he put it ? +So I would like to see them a part of this . + But we have come home . + But not back then . + It 's not that , he said . + It 's the other way around , he said . +You make your own . +But it 's much more than that . +They are not my own . + Do nt make it out to be more than it is . + I want that . + It 's work , man , he said . + But you know what 's the best part ? +It was such a high . + I say that every year . + No one is here , he said . +But we also want street life . + What do you want to go as ? +It should be as long as it has to be . +But was there still more ? +And I would say , You are right . +I do not know what this war is about . + I do nt know when that will be , he said . +That 's what I do . +It was what 's best for me . +Right now is the best time . +That was it for me . +But that one was one of the best . + Which way did she go ? +But all was not well . + It was just my first day out , he said . +There , but not . + I had to go . + They should nt be . +He 's too big . +But this time it was because of his play . + She 's up and about now , he said . + It was nt like it is today , when you are in and then out . + We could be out of here in less than two years , he said . + They are good , you know ? +But that is not for him to say , or even to know . + Here , he said , and left . + It 's the way they are . + But I will some time . + But they are not . + Now he 's not the only one . +What is it like ? +So what are they going to put in ? +Or Just for Money ? +They are not there all the time . + And how long will it last ? + It 's going to take a long time for it to go down , she said . +To them , the United States is a place called over there . + We do nt want to be used , he said . +There is not just one way . +Now , you get that one , the next one I get . +There will be more of them and the law is the law . + I did know that , he said . +And if it was nt , so what ? +What do you do here ? +But how new is all this ? +I do nt even know most of what 's in it . +There 's no center . +You never know what you are going to get . +I do nt know where he is at . +There are some who do nt . + You want it , you get it . + But they are still out there . +It 's going to come back . +To him , it was . +That 's what we did . +Now I do nt know what you have and what you do nt . +People know they have money . +What did he think I was ? + That it is . + I do nt know what to do , he said . + We have to put up with this until the end . + One day it 's here and the next day it 's not . +We have never been at war against each other . +She did good in school . + That 's way out of our way . +Now I had to get back down . +Those who get it and those who do nt . +He 's right there . + I do nt know what I can do with him . +Who has them now ? + It is nt just the money . +That 's not what he 's about . +Could I make this up ? + This is business , man . +Had it come to this ? + I said , Do I know you ? + I says , You can ? +How will they do that ? + IF NOT NOW -- WHEN ? +That was not it . +There is the United States . +But that would never do . + He is also the play 's director . +They had children , and the children had children . +Or where it is ? +I had to get through it . +That was a while back . +Well , it is nt so . +Now you will have it their way . + He could play another five years . +Is this what the American people want ? + It could be one a year , it could be four a year , he said . +What was I to think ? +See , it 's good for you . +He left business school . + But I may have some use for it . + I think it 's too much . +That is where the money is . +But is it going to work out ? +Then so it is . + Think about it , she said . +She said he had not . + Here you did nt have that , he said . +And for a while , it was . +Then what do you do ? +And that is all -- for now . +It 's very good . + Might as well use it if I have it . +This game was the second . +It 's all for show . + I have had it , he said . +We play well , we do nt play well ; we play well , and we do nt play well . +And I think we did that . + These people go on and on and on . + It 's your show . + The times were against him . +They did nt see us at our best . +It 's just down the street . + You know , he was nt very good , he said . + This time we are going all the way . +I want to go with that . + The time has now come to an end . +That is her world . + Where 's he been all this time ? + It 's just not a good business , he said at the time . + It might never come off , he said . + And she said . +And in my case , they work for good , not just a little while . + But people know about it . +I want him with me . + And they were out to get me . +It 's just not like it used to be . +I will get my life back . + He has the money . +Yesterday , there was no place to be had . + She said she does . + But what can you do about it ? +It will go on this week . +He did not get to play in that game , though . +Now that 's what we have to do . +What About That One ? +We only have so many . +Do with them what you will . +That 's what he says . +He does this now . +And they did so . + Women do nt do that . +You are in another world . +What is left for her to do ? +The former do - but not for long . + But I do nt think the best people do it for the money . +He was so good for the team . +What is it and what does it do ? +It 's how you say it . + It 's all right with me . + There is nt much . +You have to have both . + That 's part of the game , he said . + People do nt come . +He 's very , very good . +What , are you all the police ? +I do nt know about several times . +WHAT if no one called ? +He 's not white . + There you go , he said . +If there is one . + It 's just good to get the first one over with . + And she said , I just do nt have any . + This is not who we are . +What was he after ? + We see her all the time . +Think back to last year . +We are not the same . +And on and on . +She does nt have to do this . + What do you get for that ? +They are all over us . +He said it best . + It would be a country of the world . +Most of the time , it 's for me . +He had a little money from his family . + It 's been three years . +For the time being , the team will have no president . +This is a court of law . + He did that ? + They just say , Well , that 's the way it is now . +And it might even make you money . +That 's about all I want to do . + I said , John , so did I . +What is he going to do with them ? +And all to the good . +Do this and that . +So how to make it ? + The White House just called , he said . + We get it from him . +So how could this life end the way it did ? +And that 's in New York . +Big government and little government ? +And it was not just the American government that did nt want to know . +It said : Been There . +I do nt have the time . +It is my city . + We do it all the time . + It 's not going to work with me . +He said he would not . + It 's like new life , he said . +You just might want to get out of work . + I say , I know who they are . + But it 's just not what it was . +Where in the world can they go ? +They are just there to have a good time . +And we were home . + What 's going on over there ? +No one I can think of . +She says it was the other way around . +After all , what are you going to do with people ? +I think he will get off . +He did nt think he was going to make it . + And that 's all she said . +They should be made this year . +In New York , who has time ? +So , what do you do ? + You have them because you have to have them . +Every school is good . +What is there to know ? +The country is the country . + That 's our house , she said , it was our home . +He could have an off day . +It was last season , not this season . + It 's just good for business , said one man . +They also want to get off . +We did do it . + He was among them . +I did nt want to know them . +And you , too . +It 's just their time . +The country does nt have much money today . + This is my street . +You can just do this . +What will they do ? +But there used to be more . +FOUND IN THE STREET . +There has not been another since . +And also , where is it that you are from ? +But it was still too much money . +Did nt we just see her there ? +It 's the American way , or one of them . +It is not that . + I do nt think that 's good . +You go there , you do it and you come home . +I want to do this and do it right . + Me too , she said . + He was right about that . +I like to do my work . +And it did work . +If they did nt know , they should nt be there . + I did nt play as well as yesterday . + But what could he do ? +Who are you for ? + It did nt work well at all . +The man did not . + But if that 's the way it was going to be , that 's the way it was going to be . +I do nt think my family will put up with that . + People still have to go out , right ? +But these people could nt do it . +You can have a life . + This is the world 's best country to be in , he said . +Where have they come from ? + We make it work , she said . +WHAT THEY ARE : Not much . +No other like it . + The police do nt know these people . +What Are nt You For ? +But he just did nt work here . + You have to do what ? +What was it before ? +That time I get this . + Good work , if you can get it . + They were the old school . +That may not be so . + Now they want to take this from us . + But he does nt see it that way . +But not right now . + No , no , no , she said . + They are going to come down . + I did nt like it , he says . +I think all of us do . +If only they had been . +He has nt said one way or another what he 's going to do . +A : I do nt say . +How would you like that . + Will there be more days off ? + To make a way out of no way , she says . +But she 's also right . +What if I was nt there ? +I never want to see him back . +There was no second place . +Some did , some did nt . +But it 's big . +I think , Well , you just do nt know much about it . +He 's on my left . +How does it work ? +WHAT did you say ? +They are not going to be that team the next time we see them . +She 's had it all . + And one over there . + But we , just like every other part of this country , still have a long way to go . +I think that 's a big part of it . +I did nt make it . +We have some in the United States . +I have one more year left before I can do that . +That was three years ago . + That 's the way we would like to work . +But there are times when you would nt know it . + That is still there . + A company should be like a family . +He was nt going to come out . +What if they do nt like you ? +Music , they said . +They make do with what they have . +We had too much work to do . +That 's what he 's going to have to work on . + They just would nt , she said . + But I have nt been there for a year . +Know where to go . +We have to play as a team . +So you never know . +But he did nt do so . +Well , get used to it . +I did nt see him that way at all . + Is it just good for us right now ? +We can not say who will come . +They might not like me . + Then she called the police . + But that 's what it 's all about . +It used to not be like this . + When are the first people in here ? +Put me there , too . + This is World War I , he said . +What I did is what I have to do . +Are you going out ? +It 's because of who we are . +It 's not just us three . +That 's all we can do now . +It has come down to this . + Good for him . +How long is best ? + They think they know it all , he said . +I only know he 's going to go there . +That never left her . +You are on one team or on the other team . +It 's a group of people who all know each other . + We had nt been very good at that , but we were today . +That 's what 's at work here . +I have no one . +Many times , that 's me . + I know , I know , I said it before . + We see them around here all the time , he said . +But we are going to back off on him . + There is a right . +He would go back to war . + There were only two women . + My house is new . +What will they think of next ? +Where do you work ? + Go on , she said . +I just said no way . + That is not my money , she said . +I can do this , too . + There has to be another way . + I know what I know . + Now all we have to do is back it up . +This was part of the game . +They want the Government to do more . +That 's one way to do it . +This is our team right now . + There is no law . +Next year , they want to do more . +Just how I like it . +And they will work . + They are not for me . +You think it would . +And so will he . +Now I know it is nt . + Is this all of it or is there more out there ? +And they do , all over the world . +And at just about the same time . + What do they know about music ? +When I see you can do it , you are going to play . +I do nt know where it 's going from there . +And then there are days like this . +How come I was nt good at it ? + She made you think . +It was last year . +Then I had this second one . +The president is the law . + And I was like , All right . +There , they play for the money . +And we will not . + It was just the two of them . +This would have been a big day for any man . +They come because they want to play for her here . + Life was going on . +If that 's what they do , that 's what they do . +For what , I do nt know . +You can play it for me . + There , I just said it . +Where were we now ? + You think about what you did in those years . +How does it work out ? + We are just like A . + They make the market , he said . +They all have it . +All is well now , he said . +This is just one of many . + I like it , I like it . + Where Do You Put Him ? +Yesterday was one of them . +They were not at the office . + You can get him . + I do nt know what I did . + Did they come back ? +That 's not how I think . +We are at war right now . + No , she said , not if I do nt have to . + It was a big play . +His work was good . + I have to get on this team . +I was here a few years ago . +The show never made it to New York . +How did you do it ? + We do nt do that , he said . + This is new to me , this is a first . +Well , there are three of them here . + I do nt go . + And it does all right . + No one would come . +You see this all over the world . +No more , though . + It 's going to go one way or the other right now . + I do nt know how , she said . +It did not work out so well . +They do nt make up . +That 's the way we are . +Or even less so . +But it is nt the same . +I do nt know how many there were . +You know , so what ? +We could have used him last year . + Do nt you want that ? + You do nt have to do it . +He 's going to go to them . +Can there be a second ? + Can I go in ? +What should I see ? + I know , I know . +What you going to do ? + But is good for me . +What would he do about it ? +But even now , I do nt think I could have been any other way . +So , what is she up to ? + But I did nt know what to make of it . + This law would put them out of business . +Not so in my house . +And what do I do with my business ? +I only go by what I see . +And I can do that . +That 's what I said I was going to do . +But when they are not very good , we are not very good . + We go on ? +Or even people who do nt work . +But that was one play . + But some do good work . +That was the last time we could do that . +Because you say so ? +And how has it been ? + How old was he ? +How many times a day do I think of you ? + They are my own work . + They think I make too much money . +You want us out ? +Very few people can do that . + It does nt just come to you . +There is no way people will put up with that here . + Is that what it was ? +It was up , not down . +And I think that was good . +These are good people . +Just do it the way you want to do it . +I do nt know where I would be without them . +Where will it go ? +If I made it , they can make it . +He did nt know about it . +I should know what to do . + I will not work that way , she said . +But he just about made it . +What do they say to you ? + It do you good . +How can we get out ? + He did nt today . +I do not like them here or there . + I was right back . + And then they put her under . + Then he said , It 's not the end of the world . +Same time , same day . +I do nt know how this is going to come out . +There were too many people . +But that 's up to her . + I was with her all the time . +It could be put to any use . +You can use them . +Still , we have a long way to go . +I do nt know how much it had to do with me . +Get what you can while you can . +All that was at play . +I do nt even think about that . + Those days are over , he said . + They have to be on at the right time . +But it does nt have to be that way . +We are with you . +It 's all of us . + And I said no . +But you know how it is . +We all know what we have to do . + This program is good for them . +So what are you up to ? + Not at all , she says . +How good was that ? +But you would never know it . +I do nt think we have that here . +We are on our way to it . +What did you do at the home ? + I do nt see how they could nt , by now , he said . + You want to be there ? + But that 's what I do , he said . +But not much less . + This is not a war , he said . +We have to play every game like it 's our last . +I had to make it . +I never found out . +I do nt like my school . +And it 's just like that 's it . + If you do only one , it 's the one you want to do . +He does nt have to think as much . +And that 's what this game is all about . + Business is business . + And I did good , and he did all right . +If you do , it is . +It is as when you were with us . +We know how you do nt . +I might go back and work with her . + Where do the children play ? +Now we all work for the government . + IS THIS going to be a war ? +I do it with two companies . +But how do people know what they want to see until they see it ? +No more next times . + Now , how much is that now ? + You want it to be over , she said . + I do nt want to go , but it 's time for me to go , he said . + I think I can get it down . +As they should have been . +She is here right now . +But I will say this . + Like last night , he said . +This is his show . + This is not about money , he said . + You are the center . + Many people come back , she said . +It does nt know how to do it . +The world has to be about more than money . +I like the people who are here . +That , and more . +I can think of that now . +I do what 's best for me and my family . + And you do nt have to use that . +She can still see . +If there is nt , we do nt . +It is more than that , though . +She did nt want to . + Should I take him out ? +You just do what you do . +And we did what we did . + I was there three days . +What do I have ? +Will : What can I say ? + That 's the first day of school in New York . +By then I was . + How could it not ? + But what you see is who they are . + But some people around here can . + For the A . + This is not play for me . + I was nt around my family . + As for this season , he said : There 's no way it can go like this all year . + They did nt know what it was , she said . +So there it is ; go for it . +You are still the best . +So what do you do with a house like that ? +And they both said no . + He said if I did nt go , those were years I could nt get back . +People do nt see it every day . +He 's been here so long . + Today 's a good day . + As long as he can do it , he should . +It would be just like old times . + It just might take me a little while . +So we can end up like you ? +You can do both . + The first time they said no , she said . +Many people will go and should go . + And it 's going to be my last . + But I do nt know when . +I had more to do with it . +It 's a long way from New York . + When we do that , we can be a very good team . +They are good , too . +Where did we come from ? +Which may never be . + Do what he could nt do . +I do nt like it , I do nt like it . +You are nt American , are you ? +This was nt one of them . +If only , if only , if only . +A market is a market . +No , they do nt work . + But I may come back to it . + I want one of those . +You want to go out ? +My home 's here . + She does nt have five more years , she said . +How would you do that ? +It 's all about show me the money . +There were only two of them . +John did , too . +How they get here I do nt know . +On and on and on . +All children can make them . +Who says all this ? + It 's just not right . +He said he did nt want out . +That it is not for white people only . + I do nt know what it is , but he has it . + You have to go every week , he said . +This was good for all of us . +And what is he to the two women ? +It was part of your day . + I think we are going to be a good team . +How 's the house ? +It 's too high on the family . +How can you get to them ? +I do nt know where he is . + And I would be right . +They work when they like . +We have to see what it is . + But , then , what is nt ? + We are going to get you , he said . +It would just BE . +Today , not one of the best . + Here we were in the same business , and we did nt even know each other . + It 's not going to be like any other game . +Where would we be without him ? + Not for this , he said . + Come back next week . +And where might that have come from ? +That was nt going to work . +What does the Court think about that ? + She 's now into music . + If only it were so . + That 's the best I can do . +And I will be out of business . +People who want money . +A second year of life without you . +But there 's only so much you can say . +That 's for next year . +It 's not on me . +We want to get it back . +We think they do . +It is four of each , not three . +But he 's right up there . +So what , you say . + But they say : I do nt know . + How did it go ? +What did this do ? +They did just that . + We had to be there . +I think I know what it is . +These are the very last days . +It 's me , is nt it ? +What can I do about this ? + It 's their business , he said . +She 's been left back in school . +I will be with you . +I said , He 's not going to come in . +What would you like to have ? +Where do you think you are going ? +We have been for most of the year . + And who 's in most of them ? + There will be no law . + I do nt want to go in first . +I do nt know when it 's going to go off . +That is nt right , though . +Well , do nt they all ? +But is he right ? + I just did nt have the money , she said . +Now they can take another . +Is it still in use ? +What will he do ? + I would never say , This is the way it is . +So she called me . +They just could nt make it there . +But he was there all day today . + How much can the school do ? +But if they did nt come , that was all right , too . +We should end it . + But I did nt come back , he said . +We may not be what he is used to . + It 's all about this week , this day . + I do nt want to think too much about it , but it 's there . +I had to do it and do it and do it . +They do nt come to see me . +They will know what is going on . +But five 's like , too much . + These are street people . +So I said no . + What are those days like ? + There is no way to get around that . + But you are not going up now ? +Every one of them is a man . +And so we want to do it . + I know people did nt think I was going to get that , he said . + To go , he said . +And he 's both . +We are a day business . +Was , all was . + He said , Get the best . + I think there will be some now , he said . +She 's still here . +You know -- I know you want me to . + I like her , he said . + I do nt think this game was about last year , though . + She does nt show it . +Other times , I do nt . +But he can never make it now . + I play with them . +She has a home . + So what do you have left ? + In his own time , she said . +That 's how we are going to play . + If we would just get back to where we were a year ago , she said . +We do nt know when it 's going to go off . + Like family to me . + I would say that it has . +We do nt want him . + I know who it is . +That 's what 's been going on . + I do nt like it there . +I just do nt have that money . +We have it all . +There is a place for all of us at work and at home . +But there is a way around that . +We all said , What is this ? +I think it might come at a good time for us . + It 's just like last year . +Now , who 's who ? +And where you put them . +In the end , he did nt . +It 's against the law here . + That 's what I do , he said . +Who is the public in this case ? +He 's been there , and he can say that . + That 's what it 's all about this year . + I did nt like that at all . + What did he say ? + Well , it 's New York , he said . +But he said it should not . +They are united on this . + I think it 's going to be a long one . + People had a good time , he said . + We did nt like each other at first , she said . +You did not see them . + It 's , Do I have or did I have ? + Is nt that what it 's all about ? +And not for the good . + It 's not about me , or the company . +But you might not see him at first . +He was into a good one . +I never know if it will come out . + I know how to work with people . + I do nt think I did so well , he said . + And that is how it should be . +But there are just so many of them . + What do you think of it ? + Well , she was right . +He is who he is . +Some had it down . + Three years does not end the war . + They are a good family , a very good family , he said . +But that has not been the case . + He is one that can do that . +I want you back . + Well , they can think what they like . +We have to have money to do that . +So I have nt . + Now we go home . + The American people . +That he will do . +But not all that much . + We do nt know what to do . +As every American should be . + There was no one around me . +How much will there be ? +It should nt be too long . + That was one we should have had . +We will never be the same without him . + It 's in him . +And there you have it . +They did it here , and if they did it here they can do it out there . +And we are going to make it all the way to the end . +Do you know this man ? +We come for the people . +How does he do so much ? + We are not against the government , he said . +Then , he left for home . + They know when I come and go . +Some days you do nt want to be in it . +There were so many . +Being a good President to all the people . +We are a big family . +But how can it be both ? +I want to make the most of that every time . + She said she did nt know . + I know people will think it 's about the money . + It does nt take long . +So I do what I can . +We have to get him out of here . +What will we do about it ? + We do not see the world as it is . +But I did not know that . + Still , it 's not . +That is still against the law . + But there is still a long way to go . + When I go out there , I go out all the way . + He was on the money today . +I work in the world . + I think I can . +We are going to have to do it . +I would have to . + It was only for a little while . +This is only as it should be . + How about two ? + Just in the back . + No , he does nt . +At first he was not very good at it . +But it is only one of them . +And we did last year . +Where did he or she get it ? + They know what I can do . +I left for the house . +After this is all over . +It 's high and on my right . + It 's part of my life , he said . +And I do nt know the last time I used any of it . +Today , it 's a new day , a new state . +He has the program . +I just play , man . +I like to play the game the right way . + He 's one of the three best . + I said : You want me to what ? + They play off what you play . + You know about that . +It can get by on its own . + Would you like to come in now ? +It 's a good business here . +It is nt money . +A : I do . +It was a little of both . +He says he never had one . +I would never do that . +MAN : They are . + I do nt want to use that one . +Who 's in , who 's out . +First it was on , then it was off . + What 's it there for then ? +Now we know it never will . +This is my day . +I do nt know if he will . + And New York is the center of it . +Then this is the place . +And of being the other end ? +But some do , say those who should know . + That 's work , too . +But would you do more than say ? +And they want that now . +I did , and I will . +But I do nt think very . + We say no . +I know what the people want from me . +Like I said , if I could take it back , I would . +I think it does . +Just because you think you can . +I do nt know what 's going on down there . +You take your time . +I was here first . +Do they do it ? + Is that what that was about ? +But it 's also about much more . + But I did nt want to have to have that all the time . + We want to be part of American life . +We only have to do it right . +I just could nt get up . +It is about one million , not two million . +You can see them all in this show . +All was very well . +What can be said that has not been said before ? +But I think we are , too . + Have one on me . +And you did nt have to be there . + Now we are going to get back to work , he said . +In what way , we will have to see . +But it could not . +They go up all the time . +But this was his day . +How will you go about this ? +And it is nt . +By the way , where is he now ? + It 's just another day at the office for her . +You come out , too . +Now we will all be one . +They were all I had . + How did you get this ? + How did he get here ? +And they do it all night . +If there is , how will it go ? + It should have . + It 's all so old there , she says . +These days he has even less . +But most of them do nt , he said . +Were they that good ? + But I do nt think I could do that . +And the game was over . +One is one too many . +They have people down there . +We want to be the best team . +But it 's not the only one . +I did nt want to see it . + It very well could be . +You can only have one President . + It 's not my team , he said . + I think it 's our right . +We want to do that . +I never have and I never will . +That 's the big if . +There is no way we can come back from that . +Could this be the year ? +Some of them go back years . +No , there is more . +It does nt last . + This man is a general . + But you can not . +What will you do then ? +But if she could not , he would . + And for right now , it 's all I have . + There it was . +What 's your life been like ? +It had come from me . +It 's also here . +That 's come through in my music . + Well , which is it ? +They are all I had . +He does well , but not that well . +Just , This is what it is . + He does nt know me . +So , here we go . +It was all his own . +I do nt know if it 's going to come to that . +I still do nt know what 's next for him . +After that it was on its own . + What does he see in her ? + Just get them out of there . + People have to go back and say , What if this were their own company ? + He 's going to be there for up to two years . + I take it home . + That 's the American way , he said here . +And they made it work . + It was only for the money . + Here , she said . + They were all good , good people . +Is nt that what you are about ? +Still , for many people , there 's no place like home . + And Could we do it ? +They may also be among his best . + Should I make this good for one year ? +For him , it was about the family . +Now we know that he is . + People just go in there and do the best they can do . +I do so now . +So there was a war on . +Or so you would think . +You just never know , do you ? +There can be -- there is -- no law . + We have been for a long time . +They know the city . + I said I would . +We will see who we are and go from there . +My second would be to . +One would be too many . +I never want to get that way . + But you do nt see them in my business . +Today was one such time . +But war is not a game . + Was it May ? +I want to see him . +Which in a way we were . +We can do more . +Or do you work for money ? +That 's a first down . +That could not have been the case . +Do you want him ? +But all she could think of was that he might . + Now , you can do good time there . +We did nt show up . +He will make it . + But I do nt want to . + They said it . + I know people who think that 's the best way , but I do nt , she said . +I do nt know what 's right , but this is nt . +Even in the man 's own home , they do nt know . +And no , you do nt . + I was at that first game . + And he is right . +I did nt think much of it at first . +The season is not over . + This does not have to be the case . +Would you like to play there ? + That 's the way it 's been and that 's the way it 's going to be . +That 's what made him the best . + Where does that even come from ? + They do nt know what to think . + People are out to get you , he said . +But I did nt know what to do . + No , he 's too . + All over , I say . + I do nt get it . +Now I think it 's time . +You could get used to this . +Who does nt have them ? + So it did nt work . + He made the most of his . +And we can do that . +They only have so much money . +I do my business . + Get out of there . +That is not what I want in life . + We say , No , we are not . +This is New York ? +They just come out and play . +He has all year . +There 's no place for them here . + All right , he said . +Still , it can be a little . +I do nt know where it 's going to take us . +He 's old , and he 's been around a long time . + Just like we did before . + Over there , he says . +But is he on the up and up ? +For me , it 's home . +Where and when does it end ? +Some from here have left . + He can do it all . + But it 's here , it 's here . + I could nt do that to them . +It has to do with money . + I think we all know that it was up and down . + We have nt found that . + Come on , not me . +I was one of you . +But did he do it ? +No way is he going . +How about all three ? + But it 's just not the case . +We do nt have to go there . +They do nt see it . +But it 's good to have him back . +I did it , you can do it . +But we are not . +And another one after that . +But there is no other way to play for us . +Each of us would have had one . +I think they know that I want to be around here . +That 's what 's going on now . +Will people get used to them ? +Just play your game and just do it . +But every game is not going to be like that . +What 's the take at the end of the show ? +I just want to get back in and do my best . +They are part of me now . +That 's not going to come back . + There is so much in the world to see , he said . +It 's all about you . +Would you like to see it ? + One year does nt work for us . +If they are going to do that , they are going to want me there . +But you would not know that here . + If you do nt know it by now , you are not going to know . + They say , That 's it ? +Now how we are going to do this ? + Well , I do nt know . +I come from New York . +Even the federal government . +I do nt use it . + I know where it is and I can do it . +But we do now . +Did he make it ? +You know I do . +Do nt show me that . +It may have to do . +We do nt know until we use it . +That 's not what this was about . +Not from me though . + You may say , It 's as is and that 's it . + We did nt even have white out , she said . +Who put up that one ? + She did it well . +I use it all the time . + I do nt want them to go . +I do nt play for the money . +Or if she can , she does nt want to . +The first game is over . +This time is all you have . + You are not the only one . +Only they did nt . + What is all the money for ? + Most of them come back year after year . +So I did nt go . +They may not like what they see . +He said go for it . +It should have been the other way around . +They put me out . +Now we have to . + I said , You did . + But this time it did nt go down . + He was nt back . +But it does nt last long . + It was nt the best in New York . +I say , right on . + We have both , and we do nt use both . +But it would nt . +As well as they do . +And she will be back . + That was it for me . +We had to go home . +There 's more on the way . +But now it 's like it 's in our own house . + You were down three times . +But there may be more to come . + You know , like , you know . + So we both did . + For him to go that long was good . +We say what we think , and they say what they think . + Well , what about us ? +It was not a good day in the office . +They are my children . +There we all are . +I did nt know what to do with them . + You know what they want ? + We just play another day . +He said he might . +It she , he ? +They see too much . +They were out of it . + It 's time , he said . + I work every day and I come here to have a good time , he said . + I do nt know , since I have never been in that world . +So where will he go next ? + It did nt have to come down to the end like this , he said today . + Can I take this home with me ? + I said , What do we do ? +You take your world with you . +We just have to put those in place . +He left New York yesterday . + You are the man . +That 's all , right ? + I think she did , he said . +And for many years they did not have it . + For a little while , he said . + She did nt know what to think . + The people know me , he said . +But how could I ? +But every now and then , I just have to get out . +I do nt like it at all . +It 's there or it is nt . +Still , you would nt want to be here today . + A very old one . +We are there to get it on and get it off . +That 's so part of my life . +How much does he make ? + The last two years I did nt do it . + I think I still have a way to go . +He is all of us . +This can not be . + There was not very much more I could do . + There 's not much I can do . +It 's about them . +What would you like to do next ? + I did nt know much about him . + But they do nt know the way . +We are going to have it our way . +I never could until now . + I would nt know , he said . +But it never is , is it ? + They were never the same . +If you know who he is , you know who he is . +Companies have come a long way since then . + That would set us back a year . + But they do not know where they are . + At first , I did nt want to do this work , she said . + They want to make it on their own . + But I never do . +But over time , some did . + What did you put . +THEY work all day . +This is about what is good for the country . +What would take their place ? +That 's when I did . +There are people back here . + I just have to come out and play and do the very best I can . +Then use a new one . + It 's all found money . +They get to go . + People would say , What do you want me to do ? +So they get it . +I know that now . + How much is four and four ? +Or , in this case , any at all . + So this is a good time to work on this . + You think he was good ? +That 's what this is about or should be about . + But I like to see what 's going on . +But what are they going to do ? +The one it could , it did . +That 's all you have to say . +I do nt know if that will do it or not . +Make that way out West . +It 's about to go up . + It 's what people want . + She does nt know , he said . +It was all about the money . +I think that 's not the case with most other people . +How much could that be ? +Next , there is money . + No , he said , it was a long time ago . + It was like they were going to war . + He did it because he was good . + I was like , Well , what did we do before ? +How did I know so much about him ? +This time , we are going to do it . +It 's a big game . +I like the people . +That 's too much for one man to do . +All at the same time . +Were they more children ? +They want my money . + There 's no other way , she said . + Go , he said . +It 's the same war . +This year it was not . +If they did nt , you were out . +There is much to see . + You can still get out of it . +But each week we get more of them . + I do nt even work here . +I think there is some of that . +Not all of them , but some . +It 's for you . +Should we do that ? +Where is my life ? +We could nt get much out of him . +How did he end up the way he did ? +Not much time left . + He used to come to my house . +They too are back . + She put it out there . +But these days , who is nt ? + How do you know so much ? + If they did nt , we should have . +But we know too much . + I know we will . + How can I not ? +It 's year three . +I do nt know if we will . +They have to play at night . +Still , I have nt been out this year . + When , I do nt know . +I said , no way . + Other states have it . +There has never been time . +We are not going without one . + That is what she did . +I did that for a week . +I did nt know them that well . + I was going to take him . + What 's that all about ? +But you still have to play well . +Do you know where you are going ? +I do nt have to do too much . + She is so little . + Where 's that money ? +Play in it , have a good time in it . + You work for them . +After that , they can go home . + There is nt much to see , is there ? + That is good , he said . +But I do it every day . + It was very , very big . +We are a good school . +How are we going to do it ? +He says it 's a school night . + No , it 's not so much that , he said . +Time is not with us . + This is not the case . +And there are many here like me . +I did nt have that much . + Last Time Around ? + It will make money . +This is what it 's all about . +I did not like it . +Take them up on this . + One at a time . + My life , she said . + They are still here . +How come you did nt get them ? + You know this one ? +These are nt just people . +Get over it , people . +They are in a war . +Where can it go ? +We made so much money . +He 's a team man all the way . + You go there , and it 's like you never left here . +They we ) are not . + We have to take it one day at a time . +What does he want to be ? + Your children should be in school . +They are part of a team . +But they make money . +But we did what we did . +We do nt think about them . +What was I going to play ? +It had to be my way . + She could do that , but she does nt . +Get one while you still can . +Where the money is , we do nt know . +It 's like one of my children . +Because that is what she did . + But is it ? +He was , too . + Very many of them , he said . + They did nt want to think . + How do you make them ? +At the end of the day , who is nt ? + Do you have these ? +You do nt even think , you just do it . +What do we all do ? +But is that what we want ? +I still go out . + What 's he get ? + I say : I do nt . + That 's what I think of this . +So get at it . +And she can play . + But where is she ? +What 's in it for us ? +What should we think ? + Where There 's Money . +I did nt say this to her , but it could . +Where is this program going on ? +What more could we want ? + I did nt even think about that , he said yesterday . +What do they know that we do nt ? +It does nt make them the best . +But this is nt like that . +Only you do nt . +You see what you like and what you do nt like . +Well , it 's not . +Today was my first day with the team . + Are you all right ? +But it 's too much . +You do nt know me . + The public may never come back in . + Day by day , he said , I see it going down . + We have all been through too much , she said . +I would only see one every other year . +This is my game . + As if I was nt there , he said . +We have a long way to go . + I did nt want to be here . +But there is another . + This used to be a united country , he said . + I know , I know , I said . +But can I say any more than that ? +But some people like it this way . + Now that they are out there , what can you do ? + It 's a very good business to get into . + I think that is not the case . +That 's all on me . + Her place is here . +No one should be put out of work because of this . +We were never to know . + This may be part of that . + You can go to school for this . + What did you think ? +How much more do we have to take ? +I think that says it all . + That 's what I want to do this year . +We just did nt make it . + I was nt at my best , he said . +Just who 's left on the left ? + I said : How 's it going for you ? + But it can . +At the end of the season I will . +We all play with it . +It 's her , all right . +In How Could You Do That ? +It was not only family members . + They would nt take our money , she said . + He 's only been on for two years . + You go with what you have right here . +I may take you home with me . +Who 's going to do it ? +You just do nt do that . + They want to know How does it work ? + They are nt going to go home . +But even that did not work out . + And this is all I could get . + It 's money now . +We have one week left . + It very well could be , he said . +What should you do today ? +What do we see , then ? +That 's what we are in this for . +All we have to do is just get out there and play . +But not in New York City . + This was new . +What do they want to know ? +And what about the Man ? +He 's a good family man . + You know more than you think you do . +And that 's just the way it is . + It 's going to take a while , he said . +It is going very well . + It can come and go at any time . +And that 's not part of me . +We did it the right way . + You have to do it year after year . +You know , that 's the way it is . + That 's been going for a while . + We were in this . +Or do nt go home . + I have nt made any of them . +We had no family but the five of us . +Until today , they had been . + I did nt know you could nt . +But he 's back in school . +But they found out . +And you want more . + I said , You know , he 's right . + The only place we could go was down . + Last season , we did nt have that . + And this : There will be no more there . +And have them work with other people . +Because he 's right . +But this is how life is . +We do nt go to a country for the good times . +More than I had . +I think I did it . + That 's what it should be , he said . +But think of it this way . + Do you know that now ? + So it 's not like I can say , It 's over . + It 's all part of the show . +You just do what you are going to do . + It 's not his way . +Did I want to play ? + And they just left . +But the money and the center have never been there . +There 's no time . + What was old is new . + It was right . + He 's the one . + I do nt know if I have to do more . + But he 's a good back . +And I think I would be two years from now . +But he does not do it . +Now it 's time for me to do what I want to do . + When I did , I left it up . +They should be in school . + We are all business . + You never know when you are going to come back to them . + And after that ? +Two or was it three ? +And then one does . +Here you are your own man . +You can own it . +I think it 's going to take time . +This is his time , now . + What is it going to take ? +So did his three children . + I do nt know where they are . +I have been , and will be . +And by the way , what do you think we should do now ? +For a week or two and then go back . +This new music has little life of its own . +Some days I do nt . +Well , for the most part , no . +You know they are going to make it . +It is their home . +She said she could not even think about what she might do . +It was the only one they had . +How can this be so ? +But was it music ? +And a very good season . + There 's no end to what he can do . +They do nt have time for this . +A day does not go by that we do not think of you . +And we go all out to make it work . +But how to say it ? + It 's all about , How much more can I get ? + It has been a good year . + But this will not last . + Did you know it then ? + We did what we had to do , and that was play well . + But what do they want us to do ? +You see him over there ? +He was nt , he said . + Most of them only have one or two of them . + I do nt know if they want to do that . + You have to go home with that . + I said , No , I do nt . + Over time they will . +Each day of the year . +It is called The Way We Was . + I was nt out there that long . +Because there is nt . +But if there were , what might it be ? +That 's what I think about it . +From there that 's where I own them . +Did he know about it at the time ? +The United States has many . +How much did she know ? + It was nt a life . + What is it you see in him ? +First of all , they had no business being here . +Then you do nt have much of a business . + So many people get to see it . +But it was all I could do . + They know what we are about . +And that 's the way I think about life . +Not much that is good . + There is no time for that , he said . +It was the Public . +That 's what I play this game for . +I go to my work , make money and come home . +There is no going back now . +Some people should make it who do nt . +The time is now . +That it would be . +Who will want to do business in the state if they do this ? +It 's like your own business . + But I did nt have much left . +Have you had one before ? + We see this company as being around for a long , long time , he said . + But I think when I go it will go too . +It 's still going on . + You know what I do . + You say , What 's up ? + And some people were like : When can we go ? + I think it was a good show . +He said he did not know . +I Do , I Do . +And you play your game . +They want to be here . +I said , What was going on out there ? + I do nt think you should do that . + I see so many people here . +This does no good . +Now it 's , Where are we at ? +Because we say what we think , people think more of us for it . +Now you know that you should nt . + He 's here with the people . +It has to be no . + We should have been there a long , long time ago . + Which is the way to go ? +They take their time . +That was last season . + I just like to have him around . +No , we are not , he said . +She has more say there . +In this case , there were two . +And the off season ? +And that was the last of him . + It is four , not three . + It is nt , is it ? +They are going to make you work . + It 's not like that , he said . + They take years out of your life . +And then that would be it . + They did nt have to . +He was very much a man of the people . + Little does he know . +Because so many of us do nt know . + How about both ? +How big is big ? + We do nt know from day to day how they will go . +How do you play it ? +And that 's what I like . + Three , the man says . + They see all of us out here , he said . +They get down on you . +They did nt make the law . +They do nt like them . + We will take time . +Not right now ; I may . +It 's not that they Just Do nt Get It . +Did I know it was going to be like this ? +I could nt play . +Today , the state 's police are being called back . +It 's all in what you see . + Where is he going ? +But it is also about business . + He called me the next day . +It was like he had another family . + Well , how was your day ? + But we have one more . +At just the right time . +It 's New York at its best . +It 's still the same between us . +It 's all here . + They do nt have what we have here . +If I was there I did nt do it . +We are in it for the money . +A : I did nt know that I did . + We never , never , never , never had one , he said . +It 's the only house I know . + These are the children of New York City . + And he said , I might have one for you . + Now , where do you think you are ? +All right , but which one ? +It 's only been days . + That 's their game . + We had to have the first one . +They know they can take their time . + And they did . + You going to the game ? + Next time be on time , he said . + I do nt think they are as good as we are now . +But he has nt said what it was . +How did it come into being ? + I come to work , he said . + But we just did nt think there was much there . +That 's when it 's best , when you do nt know where you are going next . + That 's never been the case . +But I think it will come . +This was all new to him . +You do what you have to do when you have to do it . + This is part of it . +It could be you . +We are in first place . + It 's not because we do nt want to do it . +But where is the law ? +Is it the end of the world ? + They have to , she said . +I think business is good . + No show , no business -- but it is a business . +But they will never have a Home Game . +It was the four of us , you know ? + But this year , he was nt there . + This is only the first one . +But the two go back a long way . + I just do the best I can , he said . + No , that would nt be it , he said . +But this time was nt the right time . +That 's going to be it . +Because there just is nt any more money . +He is still at it . +So we do nt do that . +It 's how life is . +And what did it say ? + It 's big for him and our team , he said . + Not me , he said the other day . +How many of you are in there ? +But I do nt like this life . + There 's no other place like it in the country . + I said , That 's me . +But where has he been for four years ? +We know how to do that . +But what would they say to each other ? + I had to go out and get him back . + They did very well . + Many of the people who could get out did . + I never said that , he said . +That 's how we play . +Then he said : Well , that 's it . + They want it to work . + No one does this much work just for that much money . +And right now it 's not . + Now we are a little like the city . + I do nt know what that was , she said . +They were like , This is your home . +Now , through his work , he can . + People have said no to us , he says . + We have to like it . + Was there any other ? +If that 's what they say , that 's what they say . +What was going on there ? + We can now . +Well , we could do that . + There are too many other people . +There 's still work to do . +You think you are going to be part of it . +Those are the people I use and like . +Which program is the best ? +But where do we want to go today ? +What to do next ? +But the day still was nt over . +But is this what we have come here for ? + It 's good to get it over . + It 's too much , she said . + I will do that and I will be all right . +It was also good for business . +He can do both . +There are too many of us for that . + We did nt think we were the best . +What is it you see today ? +It was also last night . + People do nt know this . +It was who we were then . +That is what music is for . +But , he said , It could work . + But that 's all he did . +New York is still going to be the center of the world , more so than it is now . +If he has any . +I just had too much to do . + Now that would be good . + I want to be in there all the time . +But where is New York City ? +Never more than now . + Well , I said : I do nt know . +Or do nt they ? +But she was right . + You do what you can . + You have to put people first , he said . +We will have to see what is going to be . + I do nt think that much about it : I just play . +I do nt know how many times you can say it . +Now it 's what ? + How do you think that 's going to go over ? +One was , What do I do ? +He never was one . +So they take what they can get . +It 's all up to him . + That 's all I do , she said . +Both could come next week . +I own my own home . + You would nt do it any other way , he said . +They do not come to us . +It does nt so much any more . +But what would those be ? +And it 's not just the American people . + You get in your own way . +But those who do it say they would not have it any other way . +They like their own . +They also made money . +They say , Not us . +Some do and some do nt . +Life is like this . + So she 's never been on it . +Still , a good day . +There was more than just money . + He was right , he said . +It 's a man 's game . +That 's all the family has . + Any program will work if you do it . + And we found out we were going to the same place . +This is what it 's about . + How could they not ? + I think so , I said . +He was the only one to get one . + That 's when she did her best . +If you want people to like you , that is . +Yesterday he found one who would . + Today 's my day . +At first , she said : They did not know how to play . +And that was nt all . + But I did nt know who he was . +I can see him . +Would he want to come back here ? +He was not going to school . +But I do nt think about it . + There 's not much night life . +There is no market . + The people are going down . +We will know if it does nt . + He said he would and he did . + Not too many people would do that , he said . +They do nt have to say it . + They could use a few more of them . +I want to know what they have that I do nt . + I do nt want any of that . + It 's never going to be the way it was before , he said . + But , he said , the more I see it , the more I like it . +There is some of that . +But they should nt . +They did nt make it out . +Some work out , and some do nt . +I want to get high . + That we do nt have . +I was too good for it . +And so had we . + He did it all the time . +But that is a big if . + So I said , What 's going on here ? + Well , if they are not here , where are they ? + On the Way Out ? +I want him to just come over . +It was just like any home . +For him , it 's not about who 's who . +They do nt make them . + No , no , she says . +And I think I have . +It would be good to know . +Who has the time to take one 's time ? + If it were , we would know more about it . + But its time has come . +Will he go back to New York ? + This is her day . +Here , in part , is what they said . +I do nt think I had a play at first . +Being there for me all the time . +When will we get it ? +You know what time it is . + He did nt even make it through the show . + Have a good day ? + It 's not it . +But most of all ? +It was nt like that in New York . + What are you going to do for me ? + I was never home with my family . +What do you like about them ? +It 's the best . +We are not a good team . +You just go back out there and show them who you are . +I have my family , my house . +It 's up to you . + It 's a part of the game that they do nt work at . +And where are you at ? +And for those who do nt get it ? +The police had come after all . + Going , Going . +First , how to do it ? +I do nt know what to do there . +I have good children . +Where is it today ? +It 's very good for her . + When she left it , she left it for good . + It was a game we were in . + We were in a man to man . +I did nt want to do it . + We are , she said . + I see it all the time . +He just did nt do it in the right way . +Me : You do nt want to get off here . +Not here , no way , no time , never , never , never . +And that 's all I have to say about that . + This time that is not the case . +Go there every day . + Now it 's more business than family , he said . + I do nt even know how to make it , she said . + What is Next ? + This year , it 's back to business . + We just did nt come through . +And I do nt want to go back because I did nt want to be there in the first place . +And so had he . +Now it was business . +I just do nt like it . +WOULD he or would he not ? +That 's all the court can say . +We were going to get her . +Here is the world . +Same way with political money . +Well , that was then . +We are going on . + It 's not up to me to say , is it ? +That 's a long time ago , that 's not yesterday . +It 's in New York . + It 's not just New York City , he said . + So what , he said . +Which is all well and good . +Take me out of here . +He is part of us . +Go On and On and . + They have been good to me and the city 's been good . + That 's not for me , the director said . +But it is more than that . +Well , every other night . +I could go on , but I do nt have time . +There was no money for one . +People should know , the world should know . + But it 's good . + It did nt have to , he said . + If you want it , here it is . + But I do nt think it 's going to work . +Now , this is New York , we said . + That 's not us , is it ? +What is he to do ? +What do you make of the day ? +And they want them when they want them . + I know that , he says . + I do nt want to say that , he said . +She 's had those . +I would nt play here because of my back . + There is no other way around it , he said . +A very good one . +I will be next year . +It 's just for the money , she said . +My time here has been good . +This is my show . +Never , he said . + But we did nt want to get into it . +It 's part of our life . +I say we may have , but so what ? +We are after them . +She says : What ? +Should have , could have , would have . + Every game could be our last game or his last game . +Then you get your money back . + I had one case . + Too much time , too much time , he said . +It was like , His money is our money , and my money is my money . +That was nt the case with me . + In a little while , I said . +And I know it . +This is the only place in the city you can do that . + Who should I be ? + We all want him to play . + It did nt do that . +That 's not what it 's about . +But would it be right to do ? +They even like each other . +And women , too . +It 's not that way . +The night was still . +But I do nt play as much as I used to . + You get by , he said . +And that did work very well . + We do nt know what they are . + No they were nt , he said . +And there are many more . + It 's a big day for us . + They could use much more than that , he said . +But if you want more . +They did nt last year . +Second man : Me , too . +We know we like it . + No one still does . +I did nt even think about it . + What 's one more than that ? +We go home and they go on . +It 's just going to take some political will . +The people did not have to . +He did nt want to play here . + I still want to work here . +Do nt know him . +There 's not much time left . +Then : The New York Times . + They were here before us . + Where can they go ? + How much more , it does nt say . +So it may be right now . + Did you think at all ? +Know what you can do . + It was not in me . +Just because he said so ? +Could it be that there 's another one like this ? + Do you think they can get it there now ? + Which one is the President ? +Is this any way to do business ? +When that is , though , I do nt know . +And where is home ? + That 's all they do , all they think about . +This was his street . + I never left the house without her . +What was it all for ? +What is one to make of that ? + This is the best day of my life , he said . + Now it 's back . +And he is white . +Too long , for many . +If not , what will he say to the United States ? +We could only go up . + They have to still be there . +I still do nt think he does . +He is with us . +It was a good year . +That was then , this is now . +This time , I could nt play through it . +You are not here . + And the game was over . + But she would say What can I do ? +But if you were to come back next week . +How about university business ? +And it was so . + There 's so much to see . + I could use the money . +This is all I know how to do . +They want him now . + Just think about it , he said . +It 's never been the same since . + I want to be with them . + Like , would I be here if I did , you know ? +It has been three years since you left me . +That is not good for us . +And some still think that it is not such . +He 's your man . +What might be all right for New York would nt be all right for the state . + We are in first place . +And for now , it is nt . + Well , now you do . +They are the work of my life . +That 's not good for our country . + We did nt play one good game , he said . +It 's a long off season . + Would you still be with them ? + How can he say that ? +There is much to do and so little time or money . +But we should nt have been . +I think I had the second . + And so was I . + That 's what will get us through this . +But he said he was all right . + I could nt be around people , he said . +So , what 's new ? + So many have left . +And what is up ? + But I know that children have to be children . + They can be had . +One for me and one for the house . +I did so in this case . + I can take it , he said . +A few are from government . + Very few did that . +You can make much more . + We want the best for him . +But I do the best I can . + There 's five of them and one of me . +And so does his team . +We will not see another like him . + It had to be more than him . + No , I do nt think that , he said . + This is going to get us . +They just play with her . + We have three children . +There is little time to think . +I do nt know what game it was . + It 's not us , he says . + First we have to show what we can do , he said . +But you did nt have to like it all . +Will you be there ? +Where had they come from ? + People want it now , but we have a long way to go . + Now it does . + It 's in , it 's out . + It is the same in my country , he said . +It 's what you think . + In New York , he said , most of those people do nt know each other . +The game was long over . + We are used to it , she said . + What IS that ? +All I can say is it 's about time . + And I go to school now , just like you . +It is his first public work in the United States . + And what do you do there ? +A : I do nt know about that . +When was the first one ? +There are too few of those . + What is a government ? + He 's a man now . +There 's more to life than money , you see . + The public says you can have both . +But it is nt what it used to be . +This year we are going to be up and down . + I do nt know if this was the case . +I did nt think too much about it . + Have I been in a game like this ? + What can be said ? +So , what is it ? + That 's life for you . +I do nt know what I want to do . + Put this way : how you know what you know what you know ? +There were so very many of both . +Last year , two did . + But I did nt say it . +But he does want it . +And next year we will . + That 's all they said . +And I do what they say . + That will be all . + It 's a game , he said . + If you can work , you should work . +Would I like to go ? +I just did nt get it . +Should he be here ? + Back , he said . + They just come , he said . + We have more to go . +I should go there . + And we are still what we were . + Then after that , you do nt know . +It did so for me . +What about the United States ? +But , so what ? +He 's been right before . + After all , he said so . +We know we can play in there . + There are just too many . + Then I said to him , I do nt know what I did . + Now where were we ? + But we did nt go all the way . +This is where we come . +We have a little time to work on that . +When might it be ? +Now I know I can . + It 's all about money , he said . +And that is so . +I do nt know what it was called . +Where does he think they will go ? +I like to be out there all the time . +He has a life . +And I have to say it . +Who put it there ? +No , we do nt have no World and You . +That did nt work out too well . +How do you get up there ? + Where can it all end up ? + But it 's just part of life . + I can take it . +There 's that much to be said for it . + Little did I know . +Then there is to be another . +Three years since you left . +Most will be up for a year or so . +There is nt much to see . + There 's time left to do it and show me what they are made of . + But we are so over it . + It is a day off . + All they get is good government . + That 's my man . + The time has come . +It does nt last too long . + I think it 's going to be all right , she said . +So that 's where it is . + I think we all are . + Are they still out there ? +That 's all this is about . + Where are your children ? +Do you know what you did to me ? +The country still has a long way to go . +But just more in one place . +I want to see them all . +As it should have . +But how about never ? + He said he did . +He says he has not . + We know who you are , he said . + But are they the best ? + It 's right there . + I say : What for ? +They want to see if you can take it . + You want to come ? +Now we are right there with them . +Could nt you just not ? + But that man , I know him . + Most people can not do that . + But here we all are , right ? + It will do you good . + Here , you work . + He said : This is what you are here for . + It has to be just another game . +It was for A . + That 's life . + It 's not only me , it 's these people , too , he said . +You had it all . + He said the I . +They did nt like each other . + That 's all it was . + What do you do the next time ? + He did nt get one . +He 's the man . +But that 's this business . + Were children used ? + Come one , come all , and come as you are . +They all know me . +He put it in . +We are new here . +What 's the end game there ? + I was all over the place . + For me , it is all new there . +I did nt have that before . +Every American should know . +But not much time . + It 's the only way . + And he has . +If not , you work around them . + Well , then , there it is . +War is not a game . +She does not want to go there . +But now , he was nt in here . + All of us are one . + It might get us through another year . +Or who he was . +We had to take it in , what was going on . +All the children are in school . +She does nt want to see me . + But he made a good play . + We are in it , first of all . +What right does he have ? + Are you all right ? +They are not going to take you . +They know where they are going . +Is that where you are from ? + AS YOU LIKE IT . +There 's more there . +He said he was day to day . +He did nt play . + How can I do this ? +I did nt go out of the country . + We do nt have members . + Is this the house ? +How about : I know . + What it 's been all season , he said . +Now think about that . +That 's his best play right there . +I left because of him . +There was in life , though . +I would nt be in business without that . +We do nt know what to think next . + But we still have a long way to go . +There 's another one . + She still is . +What 's next for you ? +I know the officials . +I was the only one here . + Who they work for . +A : Where is that ? + I want to put up more , he said . + We do nt know how many are in there . +But it was never to be . +I did one of those with him . + I found out today that I do . +As long as it 's for business -- well , then , that 's all right . +He said we had to be there . +Then I was up . +This is a big game now . + Now is the Time . +I was like : What ? +And there could have been more . +Which day was that ? +What does he know about it ? +Just what is going on here ? +That , as they say , is show business . +But it 's not over now . +What do we want from it ? +Go to your office . +It 's been like this for years . +That 's what we do back home . + It was his own world , he said . +But it just does nt work that way . + He says he should work and I could work part time , she said . +That 's what I have nt had , and that 's what I have to work on . +He was nt around much . +After all these years , it should . + This is the life we have . + What you up to ? +I do nt know , you do nt know . +Never did I think he would do it one more time . +Then he did just that . + We are on the way to the White House . +Yesterday was the day . +It 's only our people . +This just was nt one of them . +So I have to make money . +That 's how it is there . + We still do that . +I want to make that . +That 's what people want right now . +It could and should end here . + He just put us on his back . +For the money will have been there . +It 's his first game back . +And how was it for two days in New York ? +We do nt even know they are here . + Who can say at this time ? +You will know who these people are . +There should be a way to get our money back . +She can not not do what she does . +Who has the right to say she can not ? + What do you have going for me ? +But most people do nt take the time to see it that way . +I did nt say them . +And that is our game . +Just because I did it last week ? +Should they do that ? +But that was not this case , he said . + But it is not . +But what will it be ? +At first , he did not like her . + He 's had my back for a long time , and I back him . +He does not , he says , know where to go next . + I think that 's what the court has to do , she said . +But that 's business . +I think the three days off will be good . +They were good and we were nt very good . + It has to be our way . + Can we go now ? +He 's up next . + We were with the president if we had to do this . +He just does nt know it . +Now , if they say it first , he does nt have to . + That 's what we want to do . +They never do , he said . + I want to be there for him , she said . +He was his own man . + That 's what you do . + This is what we do this for , he said . +But he was nt there . +Do you think so ? +But will they now ? + Now is the time to use it . +You said for a family of four it might work . +We are right now . + He has nt made us , the public , know what 's going on . +But it 's not over . +You may think you do , but you do nt . +I have my family here . + Some were very good , some were not so good . +Or it could go the other way . + I can not go , he said . +BUT not all of them . +A : In the House . +They do nt know how to do them . +Might be another use here . +You just do nt see that now . + I did and I was . +That is , now . + This is a new year . +It left no way out . + That 's the way I want it . + More and more of the same . +Is this the law ? +And what is that , for her ? +But it just did nt work . +Not many people can say that . +Because you do nt have the money , right ? + You are not here because of me . +She does nt know what to do about it . +They would nt , would they ? +I would do that every time . +I go out there all the time . +The people were into it now . + Do you want to play a game ? +It 's not what the American people want . +But they have to have a life . + Over the years , he 's had his way with women . +But he did nt want to go . +And that 's all I have to say . +Next : The state 's case . + I do that every time out . + That was all him . +But if that 's what they want , we have to go that way . +There 's not too many people that can play in New York like him . + I still think that it will . +It is time for all that to end . + That is not what we were about , he said . +So is business good ? +So that 's what I did . +That 's the way we think . +We do nt want that . + My back , he said . +I want to go . +I did nt see it go in . + You should see the people at my company . + She would like to be back in the States . + We are back in business , he said . +He 's going to be all right . +I just do nt know what it was . + So it may not be . +He said he would play today . + I said , That 's not right . +It 's time to put up . +And has nt been since . + It has nt been good . + And in another way , it is nt . +Most people do nt want a war to take place . + And do your work . +It 's not like back then . +Should I Do That , Too ? +He is with them . +How can I get that back ? +They were at home . + Is this on the up and up ? +Today , how much is too much ? + I do nt know what his life was like . + Are we going to war or are we not going to war ? +If not , what can we do ? +How do we do this ? +Has nt had the time . +The work is going on . +What should they be called ? + We just did what we had to do . + It just will not work . +Until you do this , you do nt get it . +You have to go over there . + It 's not many people now . + I think they will . +There are not as many of them left . + They have a right to get it . + I did nt know them . +And which still are . + It 's not our way of life . + That was it , she was out of here . +I did nt see one . +But if so , where are they ? +We do nt have to be there all the time . + There are just so many people here . +He said they did not . +She did nt do much ; she did nt have to . +You might as well get used to it . + He was there for us . +We never did get around to that . +What they going to do ? +How can we do this ? + They are into every game . +And then a few more . +But , he said , I know this is going on . + And I found it . + Do you want one ? +Not only in our country , but in the world . +They were good children . +You know how it is in high school . + We are in business . + This is where I can make money . +But she says , Come in . +This is not like him . + Well , that 's so be it . + What could he say or do ? +I know what he 's going through . + I know , I was there . + Not much , I say . +I will take it back . + At other times it did not . + They know where you are going . +That I can not do . +No more than three . +Now we do nt know what we are going to do . +I had to play him . +Our house may be there or may not . + Do you know how big that would be for us ? + People can say what they want to say , he said . +And then I do . +I had him before . + I think that 's the only way to do it . + And I like him . +He 's had this every year for the last several years . + It was , but they did nt . +It will take a long time to come back to what it was . +In the end , no . +Now , New York officials want it back . +It 's what you do during the game . + I do nt , I said . + This will show us . + It 's here now for us . +So what is he in the end ? +Which one will I make President ? +Is it the same game ? +He even said as much . +I know he has a family . +But for the most part , not . +We did nt today . +On another it was not . +We know what we did and did not do . + I could make it work . +I did nt know if it was going to go . + We want the best for our children just like them . +That 's what I want you to do . +This is no good at all . +It 's not a big market . + I do nt think about that , she said . +That 's what I would say on that . + I like to be in the game . + We could all do this . +I never said any of that . +Which you are , are nt you , Mr. President ? +What would he do there ? + It could very well be , he said . +Did nt take long . +We are on our way now . +What , then , should people say ? +It 's good for the country . + He is not the only one . +But you get used to it . + I think we have to do this , she said . +It or Not It ? +What were they called ? + I know you are there . + We had the game . + That was more than three years ago . +And who will get an A ? +We are going to have to do some work . + There 's just no way for it not to be . + This is part of the business world , he said . + It 's not what we see . +With him , we do nt know who will show up . +It is , too . +If they did , it would be a first . +Work , work , work and work . +But I have been through it before . + Like , what is law for ? + We did it our way . +This time it did , big time . + We are just like them . +This place was very good . +If I take money , how long will it last ? +It 's not the company 's . + I have found a home here . +But the country , the people -- it was home . +There has to be more than that . +They said they had come just to say they had been here today . +And more and more . + I do nt even want to think about it , he said . + But there was no one there . +These days , some people say it is . + Business should nt be like that . +That 's what we have to do . +But not here , not last night . +They are not too long , any of them . +Law did , though . +So , what do we have here ? +Then he called her at home . +But how can it be ? +She did nt say . +They said that last year , too . + I do nt know what they own , he said . + This is a new one on us , he said . + I know what I can do . + We were at our home . +I do nt think she 's there . +It was like that all week . + I do nt want to just say no . +Where was she going next ? + He 's out and about . +Do nt you like it ? +You want people to see it . +And just what is that ? +We made a market . +We all did that . + How much time will that take ? +Well , he 's right . +That 's all I can say about it . + And the people are like you . + It will never be the same . +It was a good place . +But it can be . +Or your money back . +And I want more . + He said , You come with me . + It 's We want more of it . + They do nt know how big it is out here . + One of us would want to work ; the other would nt . + I had to go out and get it . + It just did nt work . +But I want to think them through . + He still says that , she said . +The women said it did . +But it did not last . + No , I do nt know . + I want to put an end to that . +And if he does nt ? + But I could nt go back . + You are going where ? + Just like during the war . + I just did nt use them . +He did not say how he used the money . + I had her come in three times a week , she said . +Then you will see . +We might as well get this over with . +We said it best . +One or the other . +For him or against him ? +Would you like to go there ? +We just do nt have it . +That 's what it was like back then . + You say it 's never been that high ? +Even in New York ? + How could you not be ? +So , that 's how it is . + If it was the first , how do we know ? +There has to be a team . + He is this week . + She had no time for me . +The game is not for children , it is for me . +But what if he can not play ? +But use what you have . +So people go about their business . +So what should women do ? +That may be so . +When I get one , I can do it there . + It is not political . + That will take money . +They are a team . + We are people . +Where Are We Going ? +Now they see it 's not like that . +It 's in the United States . +But I did , and I do . +When she is good , she is very , very good . +They might just be like that . + We are out of here . + He still did this . + This is the last part of life , he said . +But what about five years ? +Now most of them are three and three . +By now she has , though . + And you never know . +But no one has found a way to do it . +But it 's right in there . +I do nt want that . + I , I -- -- , I said . + It 's not about him ; it 's about us , she said . +And he in them . + When I get up I want to put this on , and when I go out I want to put that on . +For the American children -- in all of us ? +They will not be in there . +The team does nt work that way . +How did you get them ? +It is , he says , all in a day 's work . +But we are just as good . +And now they can . +This was one of the times . +You do nt get over it . +I did nt have that . +But who would want to do that ? +So on with the show . +Come on , come on . +You are never first ; you are never last . +And not many women have been . + Some people just want more . +My family is here . + Because we can come back . +That 's how we have to play . + I do nt think in this city you can do it , he said . + But up to this day I have not found them . +But this was one . +But they did not know who would be called on . +They had , he said . +That 's the way we want it . + They are in school even when they are not in school , she said . +What 's left are the people who do want to be here . + Just Me to You . +That 's what I see . +He would know too much . +He was a general . +She 's just like me . +And they do it . + You do nt know , she said . + The money 's there , she said . + But this is not the case . + Do you want it ? + I know he 's here . + I do nt even know what I like . +This is not the way we do business here . +I have never found university work . + I think I did very well there . +So where did all the money go ? +Two years in a world without you . +It 's in how we work . +But I do nt have the time . + I do nt think so . +I know what that is . +And see it they did . +It 's about the music . + You would nt want to do it in New York City . +But they are going to play next week and we are nt . +But he 's not one way . +Her time may come . + Her children are less so . + But I think it 's more than that . + He 's been on your team and now he 's on the other team . + And this is the back . +Where do I have to go ? + You can go home in a few days , he said . +Now we know it is nt . + What about the people they did nt like ? + That would be us . +He 's there for us to be what we can be . +I think it 's going to work out very well . + I said : I do nt do that . + They just want to do their time and get out . +He could nt end his life . +How did YOU do it ? + Was it good for you ? +They know us here . +You do nt know what 's up , President . + I would say after , he said . +Because the people want it . +It 's every day . +But where does this end ? + How could it not be ? +I want to take it one day at a time . +That 's the man he is . + I like American money , he said . + I would and I should . +And what about him ? +These are your children . + If I have to take off work , I have to take off work . +I was the last . +That was a long time . +They said they did nt see it . + So what did you do ? + What could be with me ? +There was more to come . +How to put it ? +How many should we have ? +There is no one like her . + I would say so . +I may not like the law the way it is but it is the law . + I do nt want to get into that , he said . +Even if you did nt want it . +There should be more people . + She has no right to say , Do nt come . +And it was , for a time . +You will never know . + Get out of here , he said . + Some of that is in place , but we have more to do . + Then , Go on . +I said that I had to . +They own a house and have children . + But I do it for me . +It 's not like that . + I called after him . +But I think it 's just going to take time . +And that 's all right . + And that is what he did . + And we do nt . +But I did play the game . +But if I can do it , when is the best time ? +Because they did nt have to do it . +So what 's up this time ? +That was all long ago . +Who was it this time ? +She left him , she said . + Is that how long it 's been ? + The money 's still there , he said . + It is a game , a political game , he said . + He said it was not good . +It was nt as long then . +That was my time . +It 's time for the man to go . + It was like a family over there , he said . +And there is some . + We say that all the time . +But it is not just this . +We did this several times every week . +And it was that . +People want it to end . +We are all even . +All day for three days . +I did nt like it very much at first . + We are going to have to come up with some money . +In a way , he had . +They are not very good , but they are there . +I did nt get this one out . +It was because they were there . +You know , there have been times in my life . +To say : It 's not just out there . +We all have to do more with less . +No , she 's not here . + It 's going to be around . + I do the best I can , that 's all I can do . +In a way , they are right . + But this is where I play . +So do many business people . + And we found less . +That 's just it , we do nt know . + I did nt like them much . + He : It back . +If not , they do nt . +It was what was nt there . +We do nt want to be like that . + It has to be old . +But not too much time . + What can I do to make you like me ? + They are going to say : No , no , no . +Money has two children . + This could be the end . +So what was this ? +I have to say no now even though I do nt want to say no . +It 's part of him . + And then there 's me . +Women do it with each other all the time , right ? +She can not work and be at home . +This was not another game . +What is in it for us ? +It might as well not be there . +For most people , no . +They do nt want to be you , and you do nt want to be them . + We did nt do it . + I have been out of state government for five years , he said . +I just go and play and go from there . + You have to be with them . +It 's one of those days . + I do nt think a good case has been made . +She could get part of her life back . +How can I get them back ? +The A 's president does nt know what to do with this . +When is the best time ? +Where did you want to go ? + I know my children know their way home . + And what were they ? + He 's going to be around for a while . + Do you two know each other ? +I did nt play . + I have to go , she said . +Still do nt have one . + We do nt have law . + Who will get less ? + What 's that set on ? +Another is his work in school . +You have to be on your game . + Then I did nt . +Where did I get them ? + I do nt know how he could get by that , but he did , she said . + What do you want us to say ? + See what he does , she said . + It 's never a good time . +Today , it is . +You get out of it , you get on with it . + There 's one -- one in -- in back there . + This time of year ? +But it just does nt work for me . + This is all political , he said . +But you all know this business . + I did nt know how to get out . +Right now I do nt know . +We did nt come to play today . +But they should be . +It has been this way for years . +What did the school know about them ? +That is not the case today . + I have a family at home that 's going through what they are going through . + He 's now a man . + Well , if you did nt , I just did . +Here 's what you can do . + He did nt say , I did nt say that . +Who 's Down and Out ? + But we do nt see it . +We were the last to know . +When they play well , I have a good game . + They are right , she said . +It was like high school . + The second was the people . +It will take a long time to get over it . +Where is he going ? +It might want to , but it can not . + They are new people . +That 's the way it is right now . +And this may be it . +And that 's the way I see these people . +But that , too , will take more time . +Is he going to make it ? +I said it was time for us to work . + Me and white just do nt work . + I want them to know that I can play , he said . +They have to have their way . + What they do or do nt do , that 's their business . + But that 's over with . + I did never go back , she said . +He was out of my life . +They are not used to it . +People like to say it . +For he 's out of the game . +He had it , he had it . + But right now ? + I do it through the year . + Do nt think so , he said . +That 's just the way he is . + Some people did nt want to know . +And if you get out , get out for good . + But he 's not . +But then I did nt like what he did very much . +And , by the way , she was over it by the next day . +And now she does nt have to . + Even more , he said . + He would nt be here if he was nt . +But she is only one of many . +All I want to do is come to do what I have to do and that 's it . +He never said , Here it is . +They are very well made up . +He 's one of the best in the business . + So , what 's up ? +That 's here , too . + There are still three of them out there . +The street is not . + Who 's we ? +I did not think of it in time . + She can not get one because of me . + I said , It 's you . +Now we can do both . +Say it is nt over . + But we all are . +The second did work . +It will be back two years from now . +That 's as good as we can play . +It is the world 's second home . +We did do that a little while ago . +That 's not what you have to do here . + Did you get any ? +We were with them all the time for five days - day and night . +It did nt work for him in New York . +Now we will get it back . +But to do so would . +What would a good day be ? +When I left I said , See ? + I said , We have to make that show . + I was here the other day . +It set him back . +We know it 's a business . +Do you want to get a place ? +I did nt take him up on it . +Today he is his country 's president . +I have too much to do . +There are nt many of them . + I will think this through . +Since then , there has been just one . +The City University of New York is one . + You had to have it . +They can also be all white . +He did not get it . +And I do nt like him . + Come on , she says . +The night will end . + Then it 's , How did he do that ? +And it just would not have been me . +But it 's our family business . +I did just that . +You never get over it . +On , then , to New York . + They go up and down , up and down . + They will not work . +I just want to come back . +How many people get to say that ? + This will make me come here every day . + But what 's that going to do ? +Never has , he says . + It 's there and you use it when you want to . + But what I want to say is , In time , I will be the same . + It would be up to her , he said . + Do nt take it that way . +How long has the company been in business ? +Last night they did . +I did it on my own . + I know who my people are . +It 's like night and day here . +Because if you want it you will get it . + We see so many little children , he said . +When can we go home ? +I know what we can do . +Old Man : He will come . + They can be now . +He : What if I had some with me ? + It 's just not the place for it . +He is one year old . + Or : I do nt know how to do this . +I just could nt do that . +He did not say where . + I did nt have any in the first place . +That 's what you want . +He can work a game , all right . +They are at their best . + But at the end of the day , they know we have to do it . + They get the house . + When do you want me ? + That may be too much for him . + I know I should , he says . +This was all they had left . +It was people I did nt know very well . +So does our country . + I did nt even know you could do this . + Can you see a little now ? +It 's like going back to school . +I think some good can come out of this . + They are one and the same right now , he said . +I think it might have been . +That day will come for all of us . + I did nt know what time I was going to get to work . + But what can they do ? + If I can work , I can make it . + This is my second time . +It should do very well . +There 's not one of us would nt want to be back . + Is this your first time ? +And no , not at all . +But you are never the same . + Right now , there 's too many people without work . +Would the American people ? +I know it 's going to be good for them . +Even when we were . +But the part has to be right . +That 's what we have to do here . + And I said : We could . +But he was a good man and still is . + We did nt , he said . +He has to be . +SO , does it work ? +It 's about all . +Time to go to work . +And about time , too . + That 's up to the team . + Get out of there , man . +I think I know . + Or this city . +We are going to see how much we want it . +No , it is not . + It 's not so good , he said before yesterday 's game . +How do I know that ? +But what could they do ? +I do nt think it 's at all because of my play . + You think you can do this to me ? +But they are over now . + I had to get out of there . +You have years where you say that was his year . +That 's what life 's all about . +That was not my life . + I do nt get into that , he said . +So I do nt know where we are at . + They had to take me . +What 's the right way ? + No , I never think about it , he said . +She had found him . +In this case , they have . +I called him yesterday . + Who 's on first ? + I do nt think I could say that . +So I said , It 's over . +Now , he said , he does . +If this is so , how should I go about it ? + That 's what it will be like here . +But she 's been all over the place . + For me , it 's not about that . + But that 's what he does to me . +He would never want to do that . +But I never go back to see . +And there are more and more people who want to work this way . +Which , when you get down to it , is what New York is all about . + I did nt want to get here this way , he said . +Now we have to go to our court and do the same . + And I should know . +It 's show business . + It 's my first . + He did nt know me , I did nt know him . + I want to do this , she said . +So what do women do now ? +Big as in , well , long . + It was just like any other day , he said . + But they all know each other . +But that 's all he does . +But he 's a man . + Some I called and some called me , he said . +What 's so good about them ? +We did nt , but next time , we will . +But that is not where the big money is . +But it is nt now . + You just have to be there . +We do nt want him back here . +What did she do ? +This is what we know how to do . +I have made it . + In this case it did nt work that way , he says . +I know that because they say so . + He 's good , and I was nt . +Our country was the best . + This is also our court . +It 's my money , is nt it ? +The best time to go may be right now . +I was like them . +He has a right to be . + Did I do all that I set out to do ? + We have come to get down to business . + How much is this ? +If you have to go public , you go public . + That 's for us . +He had never been to New York City . +There has not been much to go around . + I do nt see any other way to do it , she said . + And I said no , she said . +I can see it now . +He could not even do that . + I like to think so . +This time might be the last . + I know it is . +But there 's still time before then . + Do you see this ? + The money 's there , he said . + It 's the war , he said . + You have to show us you can do that . + He was up for the game . + After all , it 's New York . +They are people -- they do what they do . +A few did nt make it . +How do we make it ? +But was that all there was to it ? +She says , I can do one . + The day is just not with him . +And how good can it be ? +They just want to see what I can do . +I do nt know what we are going to do without him . + You know he is . + But there had nt been a good one that day . +But now it has . +And you come back the day after that . + What about the President ? + It is what it is , she said . +He was with me five years . +There are so many people out there . + I did nt even know how good he was . + And that 's the end of your life . +I made it through . + In some , we have nt . + I do nt know of any other state or city with a law like that . + Are you man ? + Could it go back to where it was ? +We are in between . +I think she 's right . +It was a war out there . +In the year before the A . + How long have they been used ? + Did you say that ? + I said , New York . +They are on their own . +It 's from another part of the world . + Just what is going on here ? +You do that every day ? +You have to be in it to get it . +I want my family . + Well , said the other , because we can . +We want to have our say . + I was here all day , she said yesterday . + The United States , he said . + You see New York right here , he said . + Last week is over . +Just how high , though ? + It 's not right , he said . + That 's what I still like to do , he said . +But not by much . +So he could see this . +Even one is one too many . + This is going to take a while to get over . + We can play , she said . +On and off and on and off . + Now , you just do nt know . +But it 's not the case today . +It 's not about that . + What do we know ? + And because I have no money . +One is the President of the United States . + I should be home by now . + They play the same with me , she said . +And I do nt think that 's the case . +How could they do that ? +That 's not what people do now . + All I did was work , she said . +But last year he found one . +But they will not be the last . + But they are there . +Did he or did nt he do it ? +I was the best . + I would not do that now , he said . +They play with the people . +They should go back to school . + I said , Are you going to be all right ? +You never can think it 's you . +Do nt go out . + This is their home , she said . +We have nt had it in the last five years . +And they should know . +We know very little about them . +But it is not that way any more . + I do nt think we are one of them . +President of the United States : Down . + Now go back out there and do some business . +I did nt think it was . +We do not have one . +It was all she had . +Just take my time and do it right . + Right there until the end . +You have to be there . +We do nt know from where . + So I say , Get out of here . + It 's just not where we want it to be right now . +As well she should have . +We did , too . +She will never know . +Many said they did nt . + This is a business , he said . +But what can I do . +It has no life . + How much of that can you take ? + We think this is our year . + We did nt know who they were , he said . +Did you think I would nt work it out ? + That 's what they are going to do . +I can see this way , too . + I do nt know what is going on , he said . +And he 's new . + Many of them do well . + It was not about street life . + That 's what they said the last time , he said . +For me , I . + When the season was over , I did nt even think about it , he said . + You Know Who You Are . +Last year , it had two . +All in a day 's work . +She said no four times . +I do that most of the time . + There is money here . +I could go for three . +We did nt get him . +That could take a year . + We know how you work , I said . +Is he about more than the war ? + Two more and then four . + All those people , he said . +And after all , the company had been out of work for more than two years . + We do nt know where he is right now . + They are going to want to show us they can . +I could nt make it if I did nt get these . +Do nt even think about it . + It should be your own . +And who should get it ? +Will they come back ? +Today , they are my life . +Do you know who he is ? +It 's all about us . +But , you are who you are . +That 's so long ago . + There is little you can do about that . +The company 's president , A . + We do nt know . +That 's not his way . +We have a right to them . + They all made it , he said . +And one case like that is too many . + I had to get out of there . + After a while you get used to it , he said . +How Did YOU Do It ? +Where was I going ? + But it 's just one game . +And so it is with life . +The President did nt say . + I work in the Police Department . + It 's only a way to have one . + He said Who ? +Center Court is not what it used to be . + I do nt have to come back no more ? +I can say what I want . +But it may not be there for long . +That 's what she has been to me . +It 's my life . +He now says he was never there . +That 's not me , she said . + It is going to put all of us out of business . +I do nt know much more than that . +It was nt very much . + It is New Year 's Day , not today . +It 's not the same down there . +It did not end well . +It 's a show house . + Here , they can just be . + But what I want you to think of is what you are going to get into in the next four years . + We get it , he said . +All New York was his office . +I do nt make them for money , he said . +I do nt know if he would have made it . + I do nt see any time as my last time , he said . + He 's not like that at home . + They would nt even take it , she said . + There was no way I was going to do that . +I did nt want to get off . + I did nt like it , he said . +It 's the season . +But he does nt know this . +So was the game . +Is this the one ? +We are going to come play our game . + At times , I do nt . +All was going well . +This was one of many . + How could you not like it ? + This is their school . + And I was , like : How did I get this part ? +I will do it for her . +What 's good about it ? +In the last year . +There is no now . +But they did not . +People know each other . + But this is it . + People do nt like to go out then . +Now you do nt like it , but what are you going to do ? + This is just what we like to see , she said . +How would I go and see these people ? + I was just going to be back . + That 's what they do out there . + Will they be in my way ? + But I think he was . + And we work on it , she says . +And what might that be ? +He just did nt make it today . + This is nt the way we play the game . + I would not want to do that . +Or , you were . +He had to have it . + We have to work with them and they have to work with us . +But what could we say then ? + Because what we found was the public was right there with you . + One day there , the next not . + There it was , in the street . + Our members see we can do what we say we are going to do . +But how and where ? +She did nt even have time to get that . + So I can come back ? +That 's where we make the money . + That case is over . +It 's just the same as it was last year . +They have four children . +It 's the end of life for which the first is made . +How could they even want me ? + And some of us , he said , never will . + And that is what he made of it . +Are you going to come ? + I just do my part , he said . + Think of what we could do with the money , he says . +So all that is to the good . + You take that day by day . +This was like three days ago . +They may own it . + It 's going to take some time for us to get used to , he said . +And that 's what he does . +Children might like this one , too . + I do nt even know you . +They see him , too , he said . + We do nt have any . +A : I do nt think about it . +It is not what the President said . +We can even go there to do it . +There will not be much to go around . +Where do they work ? +It was nt the only one . +NOW you see it , now you do nt . + Here , we get to do it the other way . + This is the first time . +I was their world . +He said , I never do this . + How did she do that ? +What was left out ? +We did what we could . +Three go out and three come in . +But who was there ? + Time is money in this business . + And it was nt just one man . +Was it their first time ? +They did not get them today . +How Long Is the Show ? +We might do it . + Do you think about him every day ? +No , it is just what you think it is . +I never think of it . +I know how to go about it . +Well , there was a little more to it . + I did nt know what it was going to be , he said . + You just work where you work . +They do nt want to come through . +We want more of that . +Where it 's all going to end , she does nt know . +I do nt know how I did that . +That 's what we are after here . + Because he is the public . +I think it 's called my life . + What 's to like ? + He did this with the President . +If you want to do it , do it on your own . +In a way he did . +How about some money . + I do nt think we should be here , she said . +Can this be so ? + Both are right . + What are you going to do with them ? +That was not one of them . +But I do all the time . +You go or you do nt go . +They are just not up to it . + I could nt do any of it . + If the government does nt have it , they do nt have it . +Now , no way . + You do nt want them to know , she said . + We may not be here next year . +It 's not just a business . +Here 's how he does it . +These have made him . + That 's all he said to me . +Because I do nt like him . +But only after a year . + That is all they know how to do . +Did nt he used to be in New York ? + What does that have to do with this ? + I want one . + Some of them were white . + We are a good school , he said . + They will be first next time . +Which it was time to do . +And that will come . + I did nt come through for my team , he said . +It was a place for him to go . +But the day did not end there . + I just had to do what I had to do . + I do nt go out . + I did nt have time to get into that . + I did nt think I did it well , he said . +No one left then , and they have not since . + I never had a year like this , he said . + It was a good time , a very good time , she said . +Only a few people would have the right to be out here . +That would be good for all . +I did nt want to be in the way . +It 's about time . + That 's what the American people will have about me . +What about two or three ? +Same old , same old . +I said no way . +But what were we here for ? + That 's what we did , he said . +I think of this house that way . +It was nt two years . + What can I do with this place ? +Should the state come in and take your business ? + It could have been me , she said . + This is all new to me , he said . +I said : We do nt know where they are . +And if that does nt work . +My children are here . +What if it 's not so ? + I said , you know what ? + She said it and I could see it . +You want him , here he is . +Could New York City government do even more ? +Both of them work . + I do nt know what we would do on our own . +When I left you . + It is nt so . +You can have the music you want . +It 's time for them to go back . +There 's the law . +Does she want to see him ? +They want more money . + But it should nt be the only one , she said . +And the other way too . +Little do they know . +What will come of this ? + They know that this is my life , he said . +I did nt want them to know . +So , here we are . +I know that should nt be the case . +I would never get it . +I want to work every day . +How do I get by ? + His life is going to go on . +Do nt they know what 's going on out here ? +You want to play so well the next night . + No , no more of that , he said . +But is this American ? + But that 's because we are a big company . + Here it 's more like family , he said . +We can use each other . +That 's the time to put it down and play . +So it 's going to . +It 's all around me . +How does this market work ? +It 's like you get there and then , That 's it ? + It was all will at the end . +But this is nt about money . + These are people that have been around so long . + No way , no way , he said . + And I do nt know what to do with the other five . +We are not going to take it . + I have a big house . + Well , I was nt there for that . +That 's the same . +But not most of them . + I do nt think there is a place in this world where you can see so many people . +He was nt even in the play . +But he was right because it still had a long way to go . +It 's like one after another . +So what did he do last night ? +It 's time to get over it . + This is a new day , she said . +People are what they were . +But this now will never be . + Can you see me ? +What 's he like ? + I think it 's even , he said . +It was nt over though . +But they will be there , like it or not . + For me , it is very good . +We have three more to go . +And it 's big . +It was a good time . + That 's what they did in the old days . +And so we would . +Did she think of him ? +Most have left public office . +It was good , man . +From A Place for Us . + We did nt play our game . +And he said , Go . +This they can not do . +How do we get them ? + I said I did . +When and where can he be found ? +But that was not for me . +But I just do nt know it . +It was a way of life . + We had people out here who should nt even have been out here . + This is my family , he said . +Three made the team . +I think , for me , it was both . +That 's been his life . + Today , it 's all about the money . +Or how did they ? + But most can , he said . +And we will be back . + We are too good a team not to . +It is not just one or two or three people . +We know these people . + There 's a before and an after . + This is what I know how to do best . +We are all out . +And you have to go off to school . +Which do you think is the best way to do this ? + No , I did not , she said . +They do nt know which way to go . +Well , this is war . +You never know what play it 's going to be . +And he has a game that can do that . + I think there is more . +But it is all over now . +But there are two of them . + She said : That 's it . +What will the state law do ? +And that 's right . + You see how many people are in it . + How could they not be ? +That 's the good part out of it . +I do nt know if that will be this week or not . + Too Big for Us to Do ? + Now , we have both . +And it is still going on . + I will never have what I had . +What would they do here ? +I made them for you . + You are out . +Or will it be more than that ? +Just one or two . +Does nt it though ? + He had to go from place to place . +Now They Have Him . +Now , we know . + And he 's like , I know . + But it was nt like that . +She does nt have time . +She did the same . +No , you do nt , he said . +What was this for ? + You know you could never go out with him . +We know the people around us . +So we are going to use it a little more this year . +The last year has not been good . + Where did that come from ? +We are on our own now . +And in a way , he had . + We said no . +This is a long war . + With this one , you do nt . + We all go through it . + I was good to you , was nt I ? + I did nt think it was that good . + Each one of them is a little country . +I do nt think now is the time . +He could go as high as second . +He was going down . + We were here last night . + What good does that do ? +They still own it , just like every other American . +Where did her people come from ? +It is who he is . +HOW BIG , HOW GOOD , HOW MUCH ? + I do nt know what that 's about , he said . +If it is , what do you have at the end of that ? +IT may have been the best week of my life . +There 's so much we do nt know today . + Where will you be when this is all over ? +If they take to you , you can come back many times . +Game of the Week . + It 's not just us , you know . + There are some good women out there . +A few people said she should nt be on the show . +Do nt do it for them . + I want to go out there . +I could say it 's just another game . +But most do nt have one . +And he had many to make . +That 's not how it should work . + It 's work for her , she said . +Did I like it ? + I did what I could today , she said . +And this is such a case . +It 's been three years . +I want that , too . +And I do nt think it 's the last . + And he said , It 's over . + How Did You Make Money ? + Down a what ? + And I said : I can . +He said , I just had to see my old house . + What made him do what he did , I do nt know . +Could it have been both ? +What do I want to play for ? +Is He the Man ? +Not long ago , that would not have been the case . + Where was he going ? +I do nt even know who we play next week . + And I said , You do now . +Well what do you know ? + What if we had nt ? + Do you want another ? +Or I can make as little as I want . +That 's what you want to show them . + You know what I want ? +No , not her . +There 's more money around . + What more can this family do ? +Would it work for me ? +I should nt say more than that . +Some were at the market . + That was nt the case today . + And the people who have been here for years -- there 's no place for them . +Get it over with . +At first , she did nt know what the money was for . + If he had nt , I might not be here now . +Next , get out of the way . + The next year it might be back . +What is in their way now ? + We are not going to do that , he said . +But you never know until you go . +How did we get that way ? + I did what I had to do , he said . + Most of these people work . +We are all just one country now . + Do you think ? +I never had this before . +But the law is the law , he said . + It 's about us as a team . +It 's good to be back . + That 's what he had going for him during those first few years . + They did nt know how to say no . + All right , he says , this is what I did . +This may have been one of them . +It 's still our city . +I do not know any of them . + It 's our first season . +It had to be there . + But you could do it . +In our case , people know who we are . +Is that to go ? + You are not set for life . +Or should the police be called ? + And he was there . + This is the part of the game he 's best at . + How long will it last ? + She was here ; she was there . + But you know that . + He 's not going to have her for another day . +You would nt have much of a case then , would you ? + I do nt think any of us could . +So how could this be ? + Where can we go ? +After that , all they want to do is go home . + I have nt been through it . + It had to come home with me . +That would not be good for me . + But what are they going to do about it ? + You want more . + I have a family . + There 's no life in it . + What about you ? + They play good when they have to , he said . +Just like that it was over . +I have had my life . + It is -- I know it is , he said . +She could not go on . +I just do what I do . +Well , for me it was . +That 's about all there is to say about it . +They would not say where . +It 's just you have to know how . + BIG -- What 's this ? + But we do nt know where the money 's going to come from , he said . +They will never know . + That 's what this team is all about . +I have to say I do nt know . + What does he not want ? +But there is more to it , I think . +In the end , there are children here . +It 's just out there , for the best company to take . +Time to get up . +That 's the only way I can play . +It 's not a law . + I should have had much more . + But it 's just like us . +What do you know ? + I just want to get it out of the way , he said . + The people in it work , right ? +These people have money . +Even less do they have to be very big . +But she never said what they were . +It 's where are you going to be in two or three years , and that 's about it . + She said , To play . + The New York State Political Police ? + This one is not . + We are going to make it work . +How do you put that on ? +So the country has a right to know about them . +It did not get very high . +They said , No way . +New York will not be the same without her . + They never were and never will be . + If I make it , good , he said . +What , you say ? +Know that you are , and are not , your work . + I say , Think of your children . + That 's the game . + He had a way out . + So we did it . +In a way , they did . +So was the President . + What do people think of when they think of New York ? + New York does not . +But part of it would have been right on the money . +That 's what I called it and that 's what it was . +Now it should and could have been more . +And now , so many women . +When he 's good , he 's good . +That 's the most we can do . +Well , it 's all over . +This year was nt the same . +How did this program come about ? +That is all they know . + I do nt know about that . +I still have one . + I do nt want to go out there . + He said : It 's not about you . + That 's a long time ago , he said . +We think we know him . + I think today might be the day . + What 's going on ? + With my life . +It does , does nt it . +But is it good for us ? +It was one day , not five days . + I said , What is this ? + Not all these companies are going to make it . +And for a long time they were . +So I think I can get used to this . + They should not have to . + He 's very good at it . + I said , No , get a life , man . +You might say , What new market ? +They do nt get it . + I did nt even think about it . +It 's a good business . +We made the right one . +And we want it to work . + It has to be big . + I want to be white , white , white . +There was more to it than that . + It 's not a business to us . +It is going down . +Where will that come from ? +It is my house . +That 's all they do . +Back off and get out of the way . +I still want to come home . + This did nt . +You can do more with them . + It 's the best life in the world , he said . +But music was a part of me . +Do come this way . +In what part of the world were they found ? + There 's no place like home . + But at the same time , we like our team right now . +A day , a week , a year ? +I think if people know who you are . + They did nt want to end the war . +Come back , come back . + You do nt see him at all . +And that 's not us , that 's not what we are about . + I did nt like that at all , he said . +That 's what this business is all about , for some people . +So where did she come from ? + No , what ? +And you know what I see ? + How Did You Do It ? + It was just me . + She said , What for ? +You are with one or the other . +For us , it 's city and state . + But I do nt think of it at all . + It has nt been that well . + It 's his time now . +And it 's the same here . + He 's going to be here for a long time . +Just like the world . + And what do they get for it ? +We can have both . +The way of the world . +Well , what is it ? + It 's the only one . +At home , who 's to know ? +I say that every day . +And it was his day . +And so can we . +Too many of them have not . +It could nt last , and it did nt . +I do not have a family like this one . + It does nt do any good now , he said . +But for many , there have been . +It all had to go . +This was : You are next . +We did nt know what they did with it . +He said he left after a year . +If not , they will have to come off the market . +It 's been so many years where it was about us all the time . + They are going to get me now . + But that did not work , he said . +Can we say that ? +It was a big game for us and we did nt do it . +This man is a man . +We can work it out . +I could get used to this . + Well , how much of it are you in ? + That 's how life is made . +That 's good , he said . + And Take Me Out is nt . +It was about a year ago . +Not too good at that . +There were no public officials on the program . +You know , what most people do . +You just should not do that . + Where 's he going ? +He said he did not know how he would get home . +But I think that 's the American way . +They did so last week . +After all , if it was nt for you , we all would nt be here . + No one has called me . +This is the time of year to do your best . +All his companies , he says , are a part of my life . +What is the White House to do ? + Will he work at it ? +In one case , there may be . +We are all like him . +I still see one . + I did nt want them to go to war without me , he said . + They can say what they want , he said . +I would like to say that is all , but it was nt . +So this is good for both of us . +I think that this year there is going to be more than that . +I think you should take it . +But that 's how it is . +That 's all he can do . +We were in the country now . + But , you know , you go on . +But it 's over and we are still here . +We can say very little about the music - so we say little about it . +DO NT even think about it . + What you think ? +He called me at home the next day . +Go over to her . + I do nt want that for them . +That 's all right , though . +We are in New York . + It 's like we put some of the street there . +They may not like it ; that is their right . +It 's not a game . +They were , though . +But that 's not all , he said . +Right here , right now . + It could be family . + It 's not a set . +That was his life , she said . +I just do nt have that in my game . +Not the same , but it will do . +We made it up here . +Other than that , this was just another game . +Does it to you ? +But this is where it 's at . + But that 's their way . +I think I know that . +How old are the children you work with ? +He 's the best there is . + That 's all that does . + The play , he said . + All we had to do was be in first place at the end of the season . +If it 's no , we will see . +But this is the first . + It 's no more and no less than that . + We will have to see who they get in there , he said . +That is not the case at Out . +And that is the children . + But she did nt want that . + They go their own way . + Could we do it ? +Me against the world . + That 's all we have left . +He says and she says . +When 's your season ? + It 's just one of those days . +My family did nt have money . +It 's all we can do . +Who 's in there ? + They said no , so I said no . + Now I can go to work . + But what is the right ? + This is going on and on and on . +What do you say at a time like this ? +Another year down is how we put it . +It 's like night and day . +If one has to go , does nt the other ? + We know this show is nt for us or this show is for us . +We will now get on with it . +And at any time . + But how would we know that ? + I want my life back . + You have to do what you have to do . +He can do that . +I think they should be here . +He has children of his own . + They can do what they want . +Take the other day . +You could nt come out . +AND WHERE WILL YOU BE FOR NEW Year 's ? + That she was . +This is all as it should be . + But I also know that that 's just part of it . + They do it very well for you . +I go back two or three times a year now . +How could he though ? + This city is the best there is , he said . +I did nt just show up . +And when did she know it ? +You can come to a game . +That has never been the case here . + Work is where you are . + They just do nt think about it . + It 's not my place , he said . +You said it 's not when , but if . + Now I never go . + What should I make ? + It 's been up and down . +Can you see it ? + What was it ? +Those are what 's best here . + So what will you do ? + That 's what he has . +How did you do them ? +In a way , it should nt . +You would nt want to know . +But that 's just as well . +Who 's going to be first ? +He was never the same . + It 's time . +What people think about me , I do nt know . +Are they people at all ? +They come from all over the country . +But time was up . +I have come a long way . + It did nt go very well , he said . + That 's the team we have . +And that was only one of them . + You see , he said . +Some people see it and some people do nt . + That 's not all , she said . + As long as he 's here , we are going to be good . + But it 's all right . + He said : I have a play for you . +How long will it take ? +That could nt be right . +So , who was the best ? +But you should nt . + It may come to that . +But there was much more to come . +Some did nt want to play here . +They do this every day . + People just did nt know about them . + Here they do nt think that way . + How many people can say that about a company ? +We will not go back . +Both her and me . +One of the very , very few . +He 's like : No you do nt . + What can you do about it ? +In The New York Times . + But right now we are not . + Now people want to know what they are going to get . +I do nt know , I do nt know . +From Our Game . +But he did nt know the work at all . + That 's what women want you to do , he says . +Come up to New York . + It 's their money , and I do nt see how this can last very long . + And that 's not who we were . +I would nt think that big . +Know what it says ? +But if we have to , we have to . +I can have a say in . + But we could nt get him . + And so on and so on and so on . +Then he said , Can I have some time off ? +Not long at all . +It said , For you Mr. Police . +And this is more or less where we are now . + I should nt get into . +At the end , it 's me being on the court . + Go right at her . +You have a right to do it . + That is how it should be . +We have no home here now . + It 's not , though . +For a while , that is . +It 's a very good one . + They are at home . +We know the game . + She has never said it was . + So what can you say ? +They do it on their own . +You have to do more than that . +What did the other team do to us ? + But I do nt have one . + What did he do ? +When he was nt , he said : What do I do now ? + I do nt know what to think right now , he said . +They just get on . + So - is he for this law ? + One never says never , she said , but this could be it . + At the end of the day , he said . +There was much to see . +On the second , well . +My day is my day now . +Most of them are women and children . + They said No , no , no , not you . + This might be the first . +How many more to go ? +Should I want to know ? +I do nt even know what that would be . +That 's there every day . +Three years without you . +It was good any time , all season . + There are no people . + Out of New York , Out of It ? + They are not used to that . +One work , What Will He Do With It ? + He did this for money . +And their season , too . + Because of you and because of my music . + But now they are too old . +Little by little , you have to get used to it . + For now , we are going to work with what is here , he said . + And what about us ? +Not now , but it might have been . +Until this week , that is . +We could see them . + I had no company , she said . +It 's not my money and never think of it as my money . + That was five years ago . +How old was it in that year ? +How Ms. can you get ? + He could be right . + Do nt , do nt , do nt , do nt . + But one does not know how long it will last . +Not that he would nt want to . + He said : That 's a house . +There was much , much more . +We have just this . + We did nt do that today . + It 's the other way around . +There was Country Three . + Could nt they have left me one ? + This school has so much going for it , he said . + So Where Can We Go ? + I would never do it . + Will you be here ? +Have It Your Way . +It 's in him . +And this is what we end up with . + Well , it 's my best , too . + I would nt put her through that . +When you think about it , they are one and the same . +What was the President to do ? + Around here it is . +More than a game . +Today : More of same . + We had a day game . + Are we going to go into war or are nt we going to war ? +You know , that 's not me . +And that was not all . +He 's for government . +But , he said , I do nt know . + Not today , the man says . + How about over there ? +I just do nt want to get in their way . + I do nt know how long it was . +We know he can play . +And I had just under three . +I could get out of there . +I own this place . +If you are part of him , you are part of us . + It 's still a game . +We would be back . +This was not the first time . +That 's what we work for every day . +Will they do so ? +But this is New York . +I could see that . +They have it , they said . +It 's good for New York State . +But Will It Work ? +That was last night . +Where were these people ? +It will all come around for him . +I make the most of it . +Come to me in five years . +How does that work ? +I think that I can . + But that 's not what was going on out there . + That does not work . +But this was the one time . +And two , over . +That 's what we are after . + But we are still here . + I did nt have a show for it , he said . +At the end of the first game you did nt get any money , did you ? +And I did nt work out today . + And that 's the way it was . +And I think you can be both . + The city can not be in every business , he said . +How big is it ? + Where would you like to go ? +Been there and back . +They were never found . +Every university should get them . +The other was the White House . + I had a good one going , he said . + Do you want some ? + But I want to see who 's out there . + He said , Where 's New York ? +But that 's in another country . +It should nt work out this way . +It was the place to go . + What business do we want to be in ? + But that 's what you get into it for . +To each his own , I say . + I like what I do , she said . + How can they have the women in one place and me in another ? +Two years too many . + That 's the way I work , he said . +Last year , there were two . + People do nt have money . + We go two by two . +But what can we do ? +He would just play it off . + That 's what the second part of it is . +They should take it out . +But now , she said , she had to take them back . + They think it 's , it 's . + I did nt have much of that before the last two or three years . +But that may not be where they will go . +What he is , is over . +They are just not going down . +Now he might be . + I said , All of you ? +I do work for him . +There should be some other way . +I did nt like it . +So does the team . + It 's the Government that does nt have the money , he said . +So it did nt go well . + I do nt know what it is . +It 's his day . +It was some game . +Not in the next five years . +You may think you see it before , but no . + We want to work ; what can we do ? +What did she want ? +Now it had come to this . +But I had to . +There 's only a few of us left . +We say , do nt do it . +They can get me . +I think the same can be said about me . +What does he think ? +I think she does . + This city will never be the same after this day . + The first year it was . +And it is time for all that to be public . + It 's not the best , he said . + I said , How about four ? + You have to know more about it , she said . +She did nt know what to do . +But it is nt all they do . +And people may not like me , but that 's the way I want it . + It 's just the same as any other play . + It 's just another day at the office for me . +It was the day after . +But that 's what they did . +And he said , No , man . +During the war they did . + They may use it for . + There is a way to go , he said . +Get it out of the house . +No , it would have to be all four . +So there it was . + I can not do more . +They was nt there . + I think he could do it . + That 's what the world is all about . +She was the first of many . + And then some , he said . +I did nt know what . +If not , what does that say about us ? +Less money for all of us . +She called the house . +I know me -- and me is not she . +Who says war is nt good for business ? +He had to do it , though . +I also know not all of you will do it . + He does nt want to know . +What was the city like then ? +I know we will . +What is the public good ? + And after that ? + How many has it been ? + I think we are , he said . +They did nt want to work . +There 's no business like show business . +They want in and out . + They are family now . +Music was a big part of that . + It 's just part of the program , he said . + No one at all . +It should nt be that long . + How will I know ? + You just go on , you know ? + For me , this is the last time , she said . +You should go with them . +He just did nt want to come out . +Because , you know what ? +That 's part of what I do . +That was all new . +It does nt have the people . + I said I was . + Well , he was right . + On the second night , I did nt want to go home . +How many might not do so now ? + So I said : You know what ? +But she made him think she was . +That 's not going to get it . + Well , it was nt that . +Then what about this case ? +This year , they well could . +And we do nt know if we can have him on the court or not . +It had been a good night . +Could he do it ? +But you did nt , did you ? +That 's just the way it 's going to be . + Could they do it ? +And there 's still money left over . +But how did he get it ? + He said it just was nt right . + He did not take it . + But who would he have been without me ? +Because they do nt have to . + She said no . +But most never do . + She had to do it on her own . +He 's for it . +Do it for all the women in your life . +Do this a few times a day . + He is what he is . + Is this about money ? + Now they want to make it one . +I do nt know what they are like . +And then you say , More what ? +And where did that money come from ? + But that 's part of the game . +On the same show . + He 's been here a week . +It is not just a game . +She 's been in her life a long time . +It was not me . +I want to go home , just like you do . +One game into the season ? + I did nt want to get in the way of it . +He 's a show on his own . + They were from all over the world . + It 's more than the war . +You have to work at it . +Then he would come and see the work . +I said , John , how big is it ? +There is that to be said . + Who is he going to get ? +But we know more now . + I do nt think so , he said . +No , I was not here . +He said he might put one in his long program . + But I just do nt know what they are right now . + We did it in four . +He did nt like it . +But we were still all right . +You are from New York . + I would say it is not going to be as high as last year , he said . + Now , for those people , you are going to play ? +You know , the A . +That 's the way we want to play . +For most , their time was not their own . +We were one of those . + But a few are new . + What a city . + Do you know who that was ? +We think there is . +They were nt in the home . +People want to have their say . + This is the first week , he said . +It was all so public . + We had one three years ago . +All right , it 's not New York . +They may not even be that . +After all , they only get one . + I can never take it all in , she said . + I do nt like him ; he does nt like me . +Now there is no way to know . +But some good has come from it . +But they did nt go the other way . +Last year they also were second . +He had been right . + Where are these people ? +He had no right . + They say : I do nt want to see the same people . +Still , we were in . +We want to put on a good show . + That 's where we are at right now . +It can go the other way . + And she can . + Then I had to see that . + How , I do nt know . +That might take two years . +There was no way out . + That 's just John , he said . + And I was a part of that . +And it 's not even his money . +It is what 's left of his office . +It did no good in the end . + It was all right , she said . +But that 's the world , is nt it ? + I think he 's not . +We do nt want to go to war against you . + I did nt think he was this good . + But I see him less . +So while you think about it , you just go on with your life . +There is one now . +It is time that one did . +She has her children . +She never used to do that . + But the law says we have to do it that way , so we do it . +Will I be left out ? +Are they going out ? +It was just another day off for him . +First me , then her , then her . +It was a new house for his family , their first . +First of all , you do nt know what it is . +He did not make too many of them . +But it will be less . +It 's like that before any game . +And that 's not all . + But we can . +I never did play for the money . +He had more than one life . +I do nt even know who that is . +And back and back and back . + People do nt know what we have , he said . +But we did nt think we would nt be back . + This is not that . + Who or what are we ? + Because you are through . +It might come back by then . +Would he like to go home ? +It just was nt a good place for children . + Does she or does nt she ? + It does nt have to be . +The company is not new to the state . +You do nt know what do do . + New York is also where the money is , he said . +They never have been . + It 's going on all the time . + I want this to be over today , she said . + He said , Do you still want me ? + It was , What will he say next ? + It 's a big part of the game . + But most times , never . + Or in it . +And that 's what I want to do , too . +He did nt get one . + If not , they know what we will do . + I would have said : What do you want ? +I did nt know where to go . + I will see to that . + I said , What was in it ? +You know about it . + We said , No more . + Well , he does now . + And I said to her , What ? +Go see the show . + It 's up to him , he said . +Not that he would know . +That 's what they think . +We did nt know what to make of it . +Women also do it . +It 's who she is . +Being an American was not one of them . + And I still do nt know how we are going to do that . + I think we are going to get back to business , he said . + It 's not about me ; it 's about the team . +Then you get used to it . +He said the President 's with him . + But what of it ? + It never will . + This year , we do nt have as many . + But I think it 's good for the game . + But they were right . +He called the police , and the game was up . +The other officials were A . +I just could nt get it out . +What will be , will be -- after the season . +He could get the best out of you , though . + She : You like it . + And do nt you think it 's going to ? + But then it was there . +At first we do nt like it . +How many do you have ? + And he will . +He did nt want to come out of the game . + Who can say , I do not like women ? + And he used the money at will . +I was never well . + We just had to play our game . +That was not even the first time . +Will he know what to do with it ? +They are , after all , at my team 's Home Game . +We know it did . +He made the big three . + It 's the best , he said . + We do nt go out at night . + You do nt know who it is . +At that time , many people left . + She is one of us . + What do we know about him ? +And that 's to the good -- or is it ? +The company is not going to go down without me . + We are going out . + It may go game to game . +I can use that , too . + One can only do so much . +She said she had . +But he can not go back now . + And he has . + They used to say , It 's a war out there . +Make them do it for a day . +I had been the only one . +And he still did what he did . + But we also had to play the game . +Second , that 's not what we want to be . +But can he take it ? + It was not what he said , but the way he said it , she said . + Who can do this ? + Then it 's just a war from there on , Mr. White said . +But when the game 's over , it 's over . +They know how to be in the right place at the right time . +It would be good for all . + They are not going to do it , she said . +No one has said . +It was all she could think about . + Life is good , she said . + These were the very best years of my life , he said . + Do you know what she said ? + For how long ? + Take them to court . +We could say , Here is what we want and this is how we want to do it . + I think we are very much in play . +Then she did too . +You do nt have that today . + It 's been going on for much of the day , and it 's still going on . + How Much Can You Take ? +I do nt think it 's going to be . + I never like to see that . +And I like this work . + I think the public . +Even I do that . + They are one and the same . +Right now , we are just not a good team . + There would be . +Where is the money ? +Is nt it time ? + But when we say , What do you want ? + Just to see what it was like , he said . + I like them too much . + We did nt know where they were . +You have all day or night to work on them . +What 's one more year ? + What about the people ? +They would not do this if the times were nt right . + Good people make good companies . +But is it so ? +Because that 's what it 's about . + This one is going to be good , he said . +But in this game , he did not have to . +It was nt his day at any time . + I would nt think so . +I do nt want this money . + We want the business , he said . +If they did , they should be out of there . + Who you going to be with ? + That 's what business is about . +Not many can do it . +I may know too much . +They are out in the street . + That used to work . + I think we are going to make a good team . +What can you say . + It has been three years . +And I like the money . +And with all the children out of school . +For now , he 's not there . + And it was . +It 's no use . +So what can you do to me now ? +I like the work . +So who should be there ? +He said , Are you all right ? +But you might as well go to work today . + Not many people do . + It 's a little high . +I did that for those people . +Up there , he 's in his own world . + I do nt see how we could . +They are not there to be a part of it . +What could I do ? + You of all people , I said . + We were a man down . +He would want to go this way and I would want to go that way . + Do as you like . +He is the only one who can . + They come here for the money , she said . + But you know what I like best ? +The American public does not have a right to know this . + I do nt know what people want from us . +It 's all we have . +It 's my family and work . + It 's not going to take as long as people might think , he said . +It would nt play . +What if you do nt like it ? + It just did nt take . +They do it to you every time . +But we like this country . +That 's not what I said . + I think the government should think this through . +But I think they should go . + Who would want me ? + I have so much left to say and I do nt know how much time I have to say it all . +Here are three of them . + We have nt been down there , and they have nt been down here , he said . +But what if they do get it ? +What other President would use them ? +That was the end of that . +But then , it was just another game . + What good does that do you ? + I was out of work for a long time . +These are good times in New York . +Just like the city . + There are nt many people like that . +The Best for Last ? +We did nt know there was any other way to go . +And first down , and second down , and . +What other university does this ? + I did these , he said . + We have a part to play . + And the last out of the game -- who was it ? + I do what I can do . + What is he going to be for us ? +How many are there today ? + I do nt think any of us want this , he said . +That 's what it 's come to . +The people were just : I do nt want them around . + I used to go in there all the time . +They are this week . + And I think that 's right . + I do it every day , it 's part of my day . +You never know what you are going to see . +They were going to a show . + He said , That 's so good . +He never made it . +You have to work for it . +Well , he would think that . +Now it 's more about Me . + How much can we take off ? +And then right back out . +Then I did it . +I think I could come back . +I know what I have to work on and I know what I have to do . +Do you see it over there ? + What did you just get me into ? +You just had to play well . +Money 's what it 's all about . +This is just another . +They so program your life . + But we are going to get on with this business . +You see it all the time there . + Can we do it ? + We did nt know it , he said . +Time 's up , people . +Now was it or not ? + Who do I think is the best in the world ? + That should be that , he said . + I want it all , he said . +She did the best she could . +When is this going to end ? +The play is here . + I did nt go to the right school . +I said it might be . + Where have they been before all this ? + But we want you to have one , he said . +And you come back . + I just was nt there , he said . +No two are the same . +But we might not see it in a year . +And good for him . + It 's my way in . +And that is very new . +I do nt even have one . +That did nt do much good . +But what are you going to do ? +I do nt want to see any more . +But this is city life . + I said , Good . +What to do when she does not show ? + They do so today . + It 's not very good . +You want to do good . +How could he be for and against the same man ? +And he 's good at it . +But here we are . +What do you make of him ? +But it is the same in all life . + This was a good night . +I have to say it . +Did He or Did nt He ? + I do nt have an office . +Is it going to be one more ? +Because that 's what we have here . + I know on this play that I had the first down . +In the old days , it was the same . +So she 's going to do it . +Is this to be his last play ? + I did nt know how I was going to do it , he said . +In a way that 's good because that 's the way it should have been and should be , you know . +But now we go on . +That 's for another day . +Own a second home in a second state ? +Would I take him to see it ? +They should , though . +I HAVE a country house of my own . + He 's come through for me . +They do nt and it is nt . +Many are in the United States for the first time . +Some are not so new . + But they do nt want you to know that . + So we called him up . +But that did nt last . +What one does with it is one 's business . +It does not work out well . +But he never made it . + Not more than that . + But most people made the team . + We should have had more . +A few had more work to do . + This year , I want to . +What 's the world to do ? +It 's all going well . +You never think it 's going to be you . + I said it should be the other way around . +But it may not work out that way . + How did they know ? + No one does . +Which is where we are today . +So you know what , we are going to see ? +If not , it will be a long night . +The game was on . +Then another and another and another . + He 's from the old school . + I think I know him that well . + There are more of them than you think , he said . +How do people do it ? + Do they know who he is ? + He is a part of us . +Now that they can , they should . + Our day will come . + They did not have to work . + It 's a big house , he said . +They go on with their business . +What do you do ? ) . +She was like , For what ? +So the company did . +Which is just as well , since she has nt the time . +Which it is nt . +Could you be a little more general ? +She said : He does nt want to see you . +It is the life of the law . +And also , an American one . + Those people are all over it . +You do nt do any of that ? + Do nt , he said . + We are who we are because of that war , she said . + They are just like children , she said . +But she has been in the music game for a while . + Now I have only one , she said . + I do nt have much time . +It 's good for them to see that . +She should have said , Is it we ? + If you are good , you are good . +But what 's going on here ? +There 's the same old same old . +But not to me . + It 's as good as I get . +They just do nt know like I know . + I want to get my money back . +I have nt in five years . + He said : Good . +But who was she ? + We are in it . +So is he in ? +I want them to know that I can do this . +I do what I do on my own . +You might think that it were about to end . + I said : You are going to have to do that . +She 's just going to get it . +They are just made that way . + How long has he been there ? + You see this here ? +Today , it would be the first one to go . +He have us all he had . +What do they want ? + What do you want to do now ? + Now we know he has . + I do nt like it . +You can not take it back . +I did nt know what to do . + But I never used to like it . +If you do nt , you do nt . + Now we work for the people . + At some time , she will be on her own . + I do nt want to be out there , he said . + You will get up . +He 's been through it all . +I called him several times . +But that has been the way of the world . + Her life is over . + Good , I said . + I was , she said . + If they do nt know what this game is about , they should nt be on the program , she said . +That 's what it is with her . +I had to take what I could get . +It 's still home for me and I want to play my best there . +You want it that good . +We never do get over it . + And who do you think you are ? + Come , she said . +One said : What do you think this is ? + I do nt know of any play we could have made . +And she has not left them . + This is my new country . + One an make money and do good . +Where had they come from , and when ? + Three of those were in the last year , because of the market , he said . +All in one day . +They have to go . +Music all week long . +Now I do nt see that . + But she had it . +He was said to be out of the country on business . +And that 's the end of it . + Would you like one ? +And I do nt know if it will come . + Who could know ? +For both of us . +You just do nt know which one it will be . +But they were nt there . + It is a state game . + I think it 's me being me . + I do nt know when it will be . +He would be out of work . + But it 's part of life . +But after all , who did nt ? + They are the first in the world . +So that is what it may come down to . + I just want to see how he 's been . + You do good , you can have good . +But if they do nt , they do nt . +I did nt see that then , though I do now . +What good would that do ? +I think about them all the time . + She says , You did do that . + It did not have to be . + You can go , she said . +What 's new this season ? + But then I said , You know what ? +I know few people who are . +Do nt you know me ? + There was no law . + And I say , Where are you ? +They know about it . + We are going to be called , he said . + My work was good . +He was right into it . +He did not do it for money . + It 's my life , he said . + They should get a life . + I could put you up . +People do nt want to be here . +Who will they go after ? +But do it right . +Well , that 's up to you . + It 's May , it 's still May , he said . +He 's my man . +I do know this . + What are they going to do next ? +Do nt you work ? +That is the same . +What Will the West Do ? +Do what you like in it . +That 's want they want to do . +It 's my home . +We just called family and said come to our house in a week . +So that is what they did . +It 's not how much money you have . +I say I will . +There is a long way to go . +How to do it ? +He was the former president . +All to the good . +Who did I think I was ? +WHERE I WAS FROM . +That 's more me . +Or even play well every week . +Is this the place ? +If not , he said , he could be out of business . +But then it did nt . +We have to be at our best . +You work it off . +I think of you every day . + This is the way it 's going . +I think I can make one out . +You would be right . + I do nt even know what that is . +But he did nt , not then . +But it 's all right . + What did they want ? + I do nt want to play them , by the way , he said . +You do nt say it ; it says you . + Well , I do have a family . +Still , business is business . +Where would you put it ? + It 's not about the money now , she said . +I put it back in place . +It is nt only about money , though . +That is your business . + They can do as they like to me , she said . +Business was good then . + We are united today . +What I would say . + I did nt want to do that , he said . +This time it was . +I do nt know what it 's going to take . +People come to see your work . +You will see them . +Not us , he said . + It 's all around us . + So , good night . +He said it was . + What business they are in . +I think they know their game is up . + And he has been for some time . +And that is not me . +And now is the time . + I have to play my best game of the season , he said . + They just want to go out and have a good time . +Not long ago , he found one . + If I did nt like it , I would nt do it . + In a way , it is . +But how much time could it take ? + She said , We know that . + Did I not say so ? +It 's still very much a part of the way I work . +They are like us . +And more -- and more . +But it is nt for children . + May I know your country ? +No , we have nt . +You work a day . +It was much more than that . + I could do it on my time , he said . +But we are not going to do that . +A new President might . +People had more money then . +It could take a while . +She has not been back much since then . + I would do it . +When you see one , you know it . + The United States does nt . + I said , With my very being . +He did nt do much at all . + We have been in this country for a long time . +Well , not all . +You take what 's there . + I do nt see much . +They are people who could nt , or would nt , make it in New York . + He is not . +But that 's the way it 's going . +And some still do . + So this is not a political game . +It 's come as you are . +SAME old same old . +How to make more out of less ? +And what do you get ? + I can play it back as if it were today . +I know I could nt do it . + It would be good for them , he said . + It will come back . +Then there was the season . + It did no good . + But now we know all that . + But the people have to want it . + We did it all last year . +Who would not be ? +I found that out after I left there . + He left it up . + I was like , No , no . +And on and on and on . + Now , we do nt think about it . + We are here all the time . +What do you say about it ? +May Company in New York . +He 's much more . + I do nt know , I say . + They are just like my family . +How did they do ? +Is there any way we can get our money back ? +And that 's not me . +There are a few . +But I do nt know what we are going to do . +I do nt know her that well . +As it had to be . + I make them up . + How can you not ? +He had work to do . +What are they going to say now ? +But it may have been a work house . +I can get used to this . +We are just going to have to get out of it . +There 's just so much time on the show . +Not on the court , but off it . +I think it 's good to work . + If a school does nt work , two years and you are out . +He said , I like you the way you are . +What do they do there . + But there 's more to it than that . +I was like , come on , come on . + This was just not our day . +No one does this . + I still think I can do it . +It 's all business these days . +From first or second . +What should one do against that ? + Two , she said . +We did not show up . + We were the first , he said . + We are here to make money . + This is more like home . +They do it because . + I may come back before then . +And then they would say , Do you have such and such ? + I can show you . +It 's part of the family . +And this we did . + I would nt be here . +Now , will they do that ? + But they were nt . + That 's my New York office , she said . + When your time has come , it 's come . +It was , If I can do it , you can do it . +That country is the United States . +But it was not the first . + Do you not know what day it is today ? + I just do nt want to be one . + No one , she says . + At last I found it . +If they could I would nt want them to . +I could never do it . +The one they are not going to have . + That is my life in here , he says . + We will go after the people we know we want , he said . +It was nt like that . +As they may well . + And he was right . +Do People Want This ? +That is how it is today . +Can it do it ? +And then we can see . +Now they have made the place their own . +We are used to him . +But that 's just the way they make money . +To New York City . +What will she do ? +He just does it all the time . +That may be one of them . +We were the last two . +Were they with me or against me ? + I did nt think we were all that good . +They do nt see me as that . +It was like the big game . +He was in between . +Then I said to him that a few people make more money than I do . +What 's Best for Her ? +He could not have . +It was his office . +That 's all they see . +It had been good . + Every time we play them , we are going to do what we can to put it to them . +Made in New York . + Today was a good day because we did nt do too much on the court . +The big market for us is the United States , and they know that . + Did nt think so , he said . + Only the Government can do that . +He 's now where he was . +So it 's going to be like that . +When are you going to play ? +But we have to show them that we are going to go on . +She still does this work . + They had a right to say what they want . + See , I said . + I said , it 's me . +He was a big part of our team . +But that 's our business . + No , but - But what ? +We just do nt go there . + He made his case , Ms. West said . +They do nt know where they are going . + I just want to go home . +She was also in I . +Can he do it ? +I might not be here . + He has been like that all year . + I do nt think about should . + I should nt do that . +But how did she do it ? + But we work , and we take of our own end . +He did it for the money . + How much more do we have to go ? +There was no music . + I put it on and did nt want to take it off . +She said , that 's what they did to me . +Where are all of you ? +It is up to the president . +I do nt want to go back , no way . +I KNOW , I know . +But that is a very big if . +Now I was on my own . + Though you are many , you are one , he said . +But how could I have back then ? +Where , and on what ? +They go home during that time . + He 's still one of us . +We just had it . + Well , do nt make too much of that , she said . +The best of the year . +But it 's going to get there . +We could nt get them in . +Could it be his last ? + We are going under . +He was just good . + Where do I go from here ? + That 's what we did today . + Would that he were . +This could be more of the same . + This is our very first year . + Now it will have to go . + He 's right there , he said . + That 's what I think this is about . +Business is business , though . +Not much new about that . + It is not our show , said one , but is for the people at home . +It 's not the same game . +But it is going to take some work . + What did you have ? +What did people in the street think ? + How about today ? +Even then , what you see is not all you will get . + I did nt even know who it was . + He said they were . +You know , she said . +Does she get up at night ? +Because it 's there ? + This man did nt know me at all . + But I can do it . +We did that , and now what does the government do ? + I can not . + I think it 's going to come , he said . +And the -- only the United States could do that . +Few , if any . +Just do nt go at him like that . + It 's good to be part of a group , she says . +That 's so over . +He said : Money does not make money . +She called me the next day . +It has come through . + They are good companies . + Just go out and play . + I was so up on what was going on around me before . +But that 's not the way it is these days . +I say just what I want . + But that 's about all I can say , he said . + No one would go , Will says . +We want them here . +Even if they have children . +These are the president 's people . +But he could not . + They are all the same . +Who could it be ? +So they did one the next week , and another the week after that . + And it 's going to come back . +We did nt know how you would do that . + But we are going for it . + I just had to come . +But they do nt know what that is . + You do nt know , he said . +I think that 's how it should be . +I had that right . + We might do that . +I have to be here . + People will think what they are going to think . +They were nt made for that , she said . +I want to go see what it 's like . +But would she want to ? + New York has , what ? + All we want is what they have . +This was not just a down year . + Which I did . +He 's right there in the next group . +What good is it if they do nt use it ? + So I think that will still be there . + I do nt know about three . + I know from being there , he said . +What did you do with it ? + We want those people , too . + It 's never like this , he said . + Do I like what people have said about me in the last two years ? +And there are more where they come from . +No one 's there . +But they should not be put out of business . +The war was not over . +You just do nt want to do too many of them . +But he will not like it . +What are these other members ? + He would want what is best for me . + Well , did you like it ? +What good did it do ? + That 's what I have and that 's home to me . +There was not too much to say . + You do nt want to take another one ? +Three in the group say no . +There is so much there . + It had been on the market for a year . +If not , we do nt . + That will be it . +But we still are who we are . +She has for years . +We were all part of a team . +That 's what he 's like . +She is , is nt she ? + The people will see through him . +I just go to work . +But that is only part of it . +All that is over now . +This is his second . +That is the right way to go . +But there was work for some . +There were just two . +These people are with me . +No it 's not . + It 's a home to me . +So they make the best of it . +This is good for us . + I said , What do you think about this ? +Only in the United States . +There may be some of that . +They put all their money into what they could do . +It 's our first home game . + We do nt have a house this time of year . +Some said too much . +And that to me is the right way to go . +It would be back . + I just would like to get the company . +What of the four who did nt ? +It still was here over the last few days . +But now he is back . +That he did not see . +That was all it was . + What we have to do is get them off their game . +It was a city of less . +But this is a business . +Now you want out . + I called to him . + Just get on with it . +She said she called the police . +I think they could go all the way . +It did there , and it will here . + I know about New York . +And here 's what 's out . +Do what 's right . + And what would you do ? + I know I can do it . +I do nt think it was that at all . +Some of it was me . +Not this year , though , they say . +Could he put it in two , then ? +Now we have a home . + Just go out there and put on a show . +You only have so much . +He 's the best of the best . +I like to play my own music . + People have had their say on it . +It can be put another way . +He might even have a good time . +Just do nt think about it . +If they make money , we make money . + It 's up and down , up and down . +He was so right . + But you go on . +We did nt know what to do . + He never used it . +Right now , there are only two -- his children . + I do nt know , she says . + You are part of this group . +That is what they did in those days . + It 's not the way to go . +I was who I was . +They are all over the place . +I used to be one . +I can come here with my family . + We want them to do it their way . + You never know when your time is . + I know much more about New York now . +But how and what ? +He does nt have the money . + Money , money , money , money , money . + Every game is a game you take one at a time , he said . +Who is he with ? + With them I can make a new world . + He had a good night last night . +He made us a team . +Come on , man . +We work for it . +It 's because that 's what I used to do . + It was our game . + She was nt political . +One says I should . +That was in May of last year . + This time , it 's here -- it is home . +Who are you going to see ? + It was all me , all me . +Two days ago she did nt even know him . + The money is over here . + Are these companies in play ? + We are nt , but it is . + I said , What were you going to do ? +They would be right , too . + It 's the first game of the season . +And even make money . +And they were right . +The center was the first in the United States . +If it does nt work out , it does nt work out . +There is so much of it to do . +They know it over there like we know over here . + And , this time , for what ? +You could put the A . + I would nt if I were you . +I have the money . + There might have been more . + He was not a big man . +This is more about use . +There 's no place here for them . +Second Man : That 's right . +And so much more . +More may be on the way . + But this is not one of them . +It is a first in the world . + That I was here . + She was like , No , you are not . +It was in business , year in , year out . + I said , Because you the police . +I want to be around a few more years . +It never is just that . +Right now , we are . + Well , I do nt know , he said . +He had very little left . +With this , you do nt know what it is . +So where do we come out ? +It will be that way for a while . +And then there was the first one . +We could make it work . + And what do you get ? + It could have been me . +I do nt know about it and I do nt want to see it . + And I did it on the next take . + And people like that . +I never said that before . +There , can you see it ? + I do nt think so at all . + Where are you going ? + But then the next day , she was nt there . +It 's about being in the right place at the right time . +But today will be her last day . +See there , he says . + I do nt know how they do it , day in and day out . + Is our country more united today ? +But we are not going there . + And I would know about it . + It could take years . +What 's he going to do now ? + That 's the way of the world . +There she he ? +Who 's with me ? +Or is it the other way around ? +That did nt work out . +But that was his right . + But it did not . +And I still do nt . +New York will come back . +How did that work ? + It 's what I do today . +You have to know where you are going to come out before you go in . + This big country is good for us , he said . + It 's my way . +It 's going well . + He could take three years . +What was it now ? + I can not say that it was good or that it was out , she said . +You can do more work if you like . + It 's not for me to say who they are or where they come from . +It would nt come to you . + We do nt have that at home . + Do nt know , he said . +And we were right there at the end . + But it is . +They just want to have it . +Not until the next time . +It was just another work day . + We have no other way to go . +You want to know . + How can you get it ? + I was nt going to be that way . + There is nt much left down there . +But if it does nt , what then ? + And I think there is . +We did what we said we were going to do . + We do nt do it for them . +How long could it take ? +How did it go ? +It is found money for them . +And that 's it . + We see them every night . + What you see is what you get in this city , he said . +If it 's good . + It can work , he said . + She 's good at going up and down , right ? + Good , good , good , she said . +This is what I know . + I should say . +And I would just say this . + But he does nt . +But they are nt . +Then there were three . + They are people , like you and me . + I want to see what it 's like in New York , he said . + They did nt know what to do . +Now , the last one over here . +It 's just too much . +Just do nt do it to this one . +They are on the way . + We may not even use them the next game , too . + I did nt know what they were for . +Where did he get it from ? +With the American City . + What did you have to do ? + She just said : Life . +It was not a good time in his life . +Now it was up to West . +Do nt have one ? + And what would that be ? +He has to see . +No , said the Court yesterday . + I do nt know if I would have made it without you . +This is New York , is nt it ? +And I think about it . + You see , they want you to think but do nt think too much . +Where will he play ? + But now that 's all we think about , where to get what . +The company still does . + There 's life after this , he said . +They can not make you . +Most people , but not all . +I found out who she was ; I found out who he was . +They are going to get on us . +There are more and more people like me out there . + What are you going to do in your long program ? +I did what was right . +But when did the work end ? + You have to come down here . + Where is it ? +If they do , that 's where we would come in . +It 's just so . + Because that 's not the end . +You go out there . +He does not like people . + Which is it ? +Some did not know them at all . +They will have to go get it . + They like what we do . +Now they will know us . +What is there about them ? +Or , in this case , more so . +And he has two children . +For them it was just business . +I want to play during the season . +We are not going . +But he was still there . + I like it this way , he said . +But not such a big one . + I think I can do it . +To have him right next to me . + If you have it , you can do it . +It 's about you . +There is more time than life . +When it does nt go in , it does nt go in . + We could still end up as the first one out there , she said . +Good , very good . + You have to come and get me . +Life is going to go on . +But he is nt . +Do nt take them . +Do I like it ? +They are for the little people . + She is with me all the time . + It 's the best one . +But the Government is not a business . +But would nt you know ? +It 's a what ? + Will It Work ? + Do nt do it , he said . + After that , he said , It 's up to the program . +And if so , from what ? +They still do , even today , even here . +They did nt have to go there . + It 's just us . + That 's what they called it , he says . + But what can you do about that ? +Both should be back by next week . +Was it also the best ? +We have nt found any . +It 's part time for them , too . +But so does New York State . +Because they made him who he was . +But what of New York ? + We can not go home . + Not at all , not at all . +We are right there . + We had to get it all back . + How old was who ? + That will just not be the case . +It 's so much a part of him . + I do that for the money , she said . +It 's her life . +If only he was here . + It 's not going to last very long . +But is it music ? + Well , so much for that . +I was nt good at all . + I just did nt think it was going to go that high . + This is not a family company . +What are you going to do for me now ? +But there 's just so much a man can do . + But I work with them all day . +They can not be . +Or , is it ? +And this time , it should be in public . +How old was she ? + But they like to play . + But it did not work . +I do nt even get that . + They all had , she said . +And it is not to say that women are not good at government . + There 's only so much I can do , he said . + It was like a second family for me , she said . + He said to the other . +The house does not know what year it is . +There is no other way . +They did not come . +But it was his life , he said . +So would a home court . + She 's such a big part of my life . +What might they have made of her ? +She says , this is a country house . +There will be new money ; there has to be . + This is his life . + Put it this way , he said . +But what do you do ? + Now , it 's just one or two . +No one is against it . +Some get it , some never do . + It 's that they just do nt want to . +And I have made it . + There is no law here , he said . +That there is nt . +There were just some days where he was nt there . +Each case was the world made new . +Today , there are only four . + We had women , she says . + Here it does nt work . + And this is what I can do . +Use it every way you can . +Or the director 's . +Well , what could I say ? +We can not do it . + But they have nt . +And now , you know what ? +Now it 's much more than that . + There 's more than one ? + It 's who we are . +Then I have to get a life . + I could have been . + I do , he said . +And you can see it . +I just want to do the work . + How good is she ? + So we go down . + Just family , she said . +I had to go to work . + I still do what I do , he said . + He could nt do that . +Now he has two . + It 's not going to be the last time . +Should it be white ? + He has nt been here , he said . +But I do nt see them . + I should nt say He . + In the end , it did nt . + I think my team can do without me . +For many of them , it had not . +It 's all on them . +This game is The One . +We are just going to have to work our way through it . +It would nt do them any good . +It 's another world . +Is nt it time to say that ? + What can I say ? +But this is nt the case . + Last year is over . +But think it over . + It 's not made up . +So that 's who he was . +I could play with that . +That much I know . +You are in the way . + He should have left last year . + I did nt want to do it , he said . +It will take him a year to get back to you . +You might want to get them while you can . +But we still have a long way to go . + It 's all right , though . + Is it going to work ? + They do nt think about that . + But they do nt last that long . +It could be much more . + He says to me , Did I get the part ? + Can I do it ? +What will we say ? + What are they going to do without me ? +Some of them work with me . +She said she never did . +I used to have one of them . +But that was long ago -- a year or so . +But today , she did nt play all that well . +We were right there , but we could nt do it . +He could do it this year , though . +Still , they are like family . +And that you should . + That 's what you have to do in a game like this . +Now we have to be . + You do nt want to go there . + I did a long time ago . +But we want to do much more than that . +There was no day or night . + It was the best part of my day , I said . +He had made it out . +What if that had been my life ? + Me too , you said . + I do nt know if I did . +When she 's on , she 's on . + I do nt think so , he said . +There 's no place to go at home . + It 's not going to be even . +The American people are good . + There is nt that much time left to do it . + The game is not the same as it was before . +He 's going to make it . + They do nt have to come to me all the time now . + I can see how some people would nt like to do it , she said . +We are too good a team to be where we are at . +They should nt even be in our country . +How long is long ? + They did so big time . +They do nt even know me . +It did not come . + First of all , it was too long . + That was it . + We did nt have that before . + It 's the way we work . + That is what the case was all about . + What does that do for you ? +They just come back . +What does she do ? + But I did nt know how . +But is this the right one ? +And we do nt know how to get out . + What does it go for ? +Is Me she ? + If I could play , I would . +But not out here . +But then that is not what it is about . +But you just do it . + Would nt you be ? + We all want him here . + But he would be right . +The time is three . +He says it has nt , but it has . +The music is back . +Not all the time , no . + They know what it 's all about , he said . +Is nt he too old ? +They do nt know what they are in for . +They want no part of it . + What did you think of it ? +That is all I did . + She did not see it , he said . +We are going to do it like you do it . +Not many people get to do that . + It is a big family , he said . + I said : That 's right down the street from me . +What was life like for you during those years ? +If not , he said , they would go public . + And he should nt have . +Down , up , down . +And you were right . +Now we know they can . + It 's a long way to go to the end . + She has to go back to court . +After one more game . +Well , we could use it . + They do nt know who 's next . + That 's been the best part of all . +For there is another . +If you can play , you can play . +Right time , right place . +That was the play . + So when people say , Can he play ? +They go to the same high school . +That 's it for him . + We are in the right place at the right time , he said . +I still do nt think there will be . + It was nt me . + And they said , It 's good . +Only she can be on , or off , her game . + I did nt make that much money . +Much of his music is New York 's . +They could be right . + And that 's what I want to get back into , he said . +What is one more year ? +And that 's all I have to do . + I think you did , she says . +And then what to do . + Today we can not . + I just do nt think so . + I play this way every night . +That , she said , was the case today . +Well , this is for them . + I just know you will . +Is nt that what you all think ? +These are nt that . +Where do we go now ? +But what 's a long time ? +He had two children . + I just did nt do it before , he said . + I think this may be just for this game . + But it 's up , he said . +Do nt go without me . +I think it would be good for our program . +Or if you have the money . + I did well in school . +I want them to be like family . +I do nt like you any more . +And you do nt know . +What should the United States do now ? +And you can take as many as you want . +But you did nt . + There was no other way for this to end . +We are like you . +That 's a little much . +And it was all against him . + Little did I know it was me . +How did I get here , and how can I get out ? +It does nt work the same way . +We may not want them to be . +I did nt know that . + Is that where you were ? +We are the only team from New York State here . + Because they can . +The last two times , no . +There 's no way that can work . +The What Can I Say ? + It 's all white . +So it 's all good . +Our world will never be the same because of it . + We still have to play . + It 's too big for me . + Do we have to say more ? + Even when we were little , he was that way . + It may not work . +What did you say ? +It has to do with that street . +We found that less is more . + You should see this place where I go . +We were in business . + I think it is , he said . + No , you are not . + You do it with the public . +Many did the same . +What to do then ? +I do think that . +That 's all we get . + I would say less than a day . +IT had been a long day . +So he called the police . + Is nt that it ? +That 's what I used to do . + There 's no if 's , and 's or but 's about it . +But they are more than that . +I do nt know who 's in it . +Because of the music . +But it 's going to take some time . +But but not the same ? + At first , I did nt know what she said . + It 's too good a team . + Because we have to . +Still , people had to go to work . +How many want to ? + We do nt know if it is over , he said . +I also have a life . + Very few of us do . + We did nt think we could make it . + Do you think they do it ? + If he 's not , he 's not . + But it would have to be that good . +So that left three . +I have a life . +Go out of business ? + He had been out of work for a while , he said . +We do nt think so . + When I was in high school . +He 's just put the show there . + He 's on and off , she said . + He did it . + I do nt want to be part of that . +He should be all right . +What would life be like for her ? +After all , he had work to do . + Today 's the day . +And we still are . +What would he say ? +As of last night , city officials still did not know . +You did nt know what to do . +And so it still is . + Not to have the women there ? + No , I did not , she said . + Well , we are the people and we do nt like it at all . + Where Were They ? +You have a house . +Here is what we want you to know . +It 's not going to work now . +And what if it does nt ? + We still know how good we can be . +This time we will go to the end . +He can get even , though . +Well , this one was . + I did nt say they had to show me any more , he said . +And right now we are not . +They have all the money in the world . +But how would we know ? +Will you work for me ? +But not being president . + What Can I Do ? + Might I see it ? +We had come to the right place . +It 's the one place I can go and work and no one can get me . +And how was I ? + It 's going home , he said . +We were the only people there . + But the place for what ? + And there was one we could nt . +Here , also , is . +We did get her to the last home game last year . + One World or Two World ? +This could be another . +Just what 's going on here ? +It had been a long week . +Here we had time to work . +It is a man . +So , where do you put your money ? +They are on the business end of the Business . +I say to her : It 's your life . +It is not that they do nt like her . + So I have to come back . +Some part of us . +Or life as we know it . +So , what to do with it ? +She was not in . +Do nt do it now . +And there are more and more . + We are what we do , not what we were . + Where is it from ? +You know that it is not so . + We did it all season . + They do nt like us , and we do nt like them . +But the Government has put them off because of the war . + I like to see what 's going on . +We have to do that . + That 's what it 's for . +But they did nt take it . + What the people want , we do nt have , he said . +No , this is New York . +Now , they go to him . + I did nt know he was there . + So what are they going to do with it ? +You never know how long it will take . +That 's just how it is here for me . + You could nt see . +It 's with us all the time . + We are good , he said . + That 's who we are . +Today was too big . +They go to school with it . +We have to work through it . +I want a family . + He can go on for some while . +Do nt say it . + It would have been this case . +So how long is too long ? + So I did . + Come right in , he said . + All we want is for you to get out of here . +And I think he will . +There was the war . +That was then and this is now , you say ? + I had never been that way before and have never since . +This one should do it his way . + But right now she does nt have any place to work . +Or the second of many . +Many of them did . +So were most of us , I think . + He could nt do it . + I do it all the time . +That 's what you have here now . + But this one is . +It 's where the people are . +But that 's not most people . +I have a new life now . +It was just like old times today . + That 's going to come to me . +What time is it where you are ? +There 's so much money to be made . +That 's not where it 's at for us . +My children would say , What ? +It 's up to them what 's next . + That was no money . + I do nt think so , she said . +So did the second . +What do I get ? + Do not be put down , he said . + And she said , Well , so what do you want to do about it ? +Both have been set before us . + Then they did nt even come here . +You know , it 's what they all do . +After that , I did nt want to be around him much . + And they are good at it . +But it may not be . + How much more do we have to take ? +This is my other life . +It does nt make you any money . + That 's what it 's about for him . +And so this is the time for us . +And he still does . +I know this team . +It is very much like that . +If you want it , you can be there . +And now the public should know who he is . +They had a good day . +He was not going to the game . +That was nt the case . +It was about my life . +We were on our own . + That was one world . +You can get it . +There would not be any more . +He is an I . +Now it is high . +How big was it ? + If you did nt , you should take it to the house . +And where did it get him ? +That 's the only way I can get around . +But we are not one with them . + What 's it like there ? + When I see my children , they want to come home , she said . +Now they are down to two . +This is the law . + They do this for money . +What do I have now that I did nt have before ? +It was like old times . +For us , that is . +It 's about what it was going to be about . + You said it was going to be the end of the world . + I said Just do it . +I do my best , that 's it . + That 's not what this was about . +Now I just like to have them around . +He was the group 's first president . +And that 's all we get . + We did nt do this to them , he said . +I have to know , she said . +It was good to be back . + Her life will be what it will be . +I do nt have much to say about it . + Go on , he says . +But , then , one day , it does nt . + It 's all going to come to an end at one time or another . +I did nt know how many I made . +What would I do if I was home ? +What if it 's our way ? + He 's big . +That 's what they did back then . +I would just make them without money . +I think of you all the while . +Does the company own it ? +I think he 's going to be . +What about next time ? +They did not want me . +We do nt want it . +We are here for us . + So much has been said about me . +It 's still : What do we have ? + People do nt like that . + From there you just play with it . +He said that he did , too . +Like we do nt know what 's up , he said . +Can you come back ? +Or do nt make . + It 's up to you , New York , New York . + That is the only way I know how to play . + What can you do ? + She 's called four times . + It has been a very good season . +We do nt have that . + That 's about all he would say . +That was the way it was . +If it is nt , then it should be . + We do nt want any of this . +People should be used to that by now . +And it was , too . +Can he do this ? +Some are ; some are nt . + Who it 's going to be , I do nt know . +I want to make it from here . + How can you not like this ? + I think that 's the way we did it as a team today . +So I could nt go . +He has been out of work for three years . +Because I used to think it was me up there . +But back then they did nt know . +You never know if they want you back or if they think you can play . +But he does not know them . +I did nt see it . +I have nt been the same since . + But they would nt go for it . + You have to get over it . + She 's going to be good . + What can I do with that ? +He just made it . +Not that he would want it any other way . +And people like him . + That is what we are all about . +We did some of both . + They do nt even know them . + How did we get here ? +But there 's no way to know . + It 's so much . +It is another world . + What are they going to think of us ? +He does nt know where to go . + How can this be right ? + Well , we do nt have to do that now . +You are on the team . + Some of them come right here to the office . +I want to be there for them . +It was just like yesterday . + I was nt going to do it . +But it was the best I could do . + What 's best for me is going to be best for my family . +Many found their way to the United States . + This is it , too . + What time do I get off ? + We had a down year , he said . +Even if they have not . +I know it and I still do it . + We did nt know what we were going to do . +And that 's for now . + We could use him . + I do nt think this is over , she said . +Think about them one by one . +So he has nt been around . + I did nt like it at all , he says . + What can the government do for me ? +And the day after that . +It will never be the same , no more . +Another week and no more . +We are not here without him . +This is the only business in the world like this . +Companies do nt do more , he said , because , people just do nt think about it . +What was West to do ? +A -- Well , I do nt know . + We are not a political company . +Is my man going to be all right ? +It 's not what you do ; it 's how you do it . +You should have said so . +It 's not my war . +No one does that . + What could you do ? +Should we take the money ? +Now he has it . +But they are very good . +Are you with him or against him ? + What do you do without him ? +I play the same way every time I go on the court . + Not any more . +I said all right . + We were nt last year . + That is so not me . + This has been my home . + We know where we want to go and we know where we want to be . +It 's all a game . +Had , have , we do have . +He used to be one of them . +I just said it . + It will be over before too long . +And they did , then . + Who would nt like to see a team like that ? +There 's that in it . + But is nt he one of them ? + This is nt just a place I come to work , he said . +Not many people know that . +But it will be a long time before we get back to where we were . +For me it was the very first time . + What 's this for ? +And if so , how long did it take ? + Where are they going to come from ? +And I know you do , too . +And On and On . +These people do not like each other . + No , I have nt been . +Most people do it all day long . +Is nt that American ? + It 's been such a long time , he said . + It 's up to you ; it 's up to you . +Until he does nt . +I do nt even place . + The next one would come in . +What is a good American ? + You can do what you want . + I said , Because of you . + And after it was over , she did nt do much for them . + He was very good . + If people had . + This is a public place . +This has been your only home . +It may be that they have . +There are nt that many of them . + Can you take us ? +And he would not have it any other way . +Now , he said , It 's over . + Will you come every day ? +Know him long time . +He said this was because of a new law . + I do nt think we should take that . +And , you know , he 's . +There was no school . + This is for all women . +You were our family . +You can do it for him . +She is my life . + But we also like to work . +That would be -- well , I do nt want to say . +The next time we play them . +You have to be in a group . +But that 's another show . +That 's what we are now up against . +And you know how they do go on . +Not , not , not . +But not so any more . + Never , he said . +It was us , too . +They just take and take . +Then it 's all over . +But this was nt one of those times . +And I said to the President . + They want to get me out of here . +That is the best time of all . +They are more set in their life . + Where will they go now ? +No , they did nt . + They are going back to where they were . +I do nt know how long he 's going to be out . +There is still much to work out . +It was a family business . +This week was not very good for me . +I did not take them up on it . + Well , now what do we do ? +Time , as they say , is money . +Do you know what it 's going to take to play in this game ? + Our place is not like that . +And she may be right . + But it is nt . + I did nt know where life was going or where I was going . +It 's all right there . + Do you know what that is ? + It was good to get it over with . +So I did that . +But he will take it . +Well , right on . + Well , how would I know that ? + One week we are up , one week we are down . + There was so much of it . + I did not want to come out , she said . +But there should be more . + You have to go on . +I just did nt know where I was . + He was never around . + No , it is nt . +Or the second time . +That was at first . +Work is what I do . + But then , you do nt know . +It 's all I had . + What Does He Want ? +But we do nt come here for that . + But -- what is it they say ? + They are a good team , also . +But he had to work for them . + Two years is nt that long . +That is the work of his life . +It would be there one game but not the next . +I do nt think that 's the case . + Never , one man said . +What is it with these people ? + It 's not the right time for that . + We do nt know them that well . + We set up a house here and a home , he said . + It 's a big part of it . +Go out there and just play the game . +We know that , or should . +Today , I do nt . +But then who did she think we were ? +AND they are off . + Because it 's there . + She was the first . +He was from New York . +But what can you do about it now ? + So I have to be here . +It just was nt his day . +That 's the only way . +A second time , they should know who he is . +What would you do ? + We do nt want money . + It was not the same last year . + I think this will be the same . + I like this program , the President said . + Who said that ? +But life does go on . +What do we here ? + We are in today . +We do nt know that right now . +And it may have been . +I was in my office . + There is much more to be found . +They know that they have to work . + It is not the end of the world . + I just take one day at a time , he said . + And they all just want the best out of them . + We can do business . +He had no place in her life . +Here 's what it is . +But we did nt have a city . + I just did nt want to get up . +That 's just the way we are . +Are you from this part of the country ? +This is a business . +Both did well against him . +There 's not much out there . +They have less money . + We come out here and have a good time . +Is this what we are ? + That 's the way the world is . +Now it is only a right . +You have to like people . +We want you to come back . +They would never be the same . +We had a war out there . + If the money were there , we would do more , he said . +What will he see ? + Do you know what that is all about ? +There will be no end . +Or should they do both ? +But today , who could you say that about ? + It 's right on the money , he said . + How could they do this to him ? +It 's all up to him right now . + I will not make it on time . + They are right , he said . +The new one has not , she said . + So what can you do ? +The week 's over . +We both are in business . +What you are is how you get where you are going to go . +But , come on now , what does that have to do with this ? + I want to go home to my people . + And I go , what ? +But it was not the right time . + When are we going to do that ? +This year , it 's the family . + You just go out and play . +But does it work ? +Come on , do it . +They are into it for the work . +Some of it was good . +Who would be against it ? +We have a good time . + The president has to work . +I know how it is . +And what does he get ? + There is no there , there . +It 's all about the now and the then . +But part of it could . +Where can it go next ? +Who 's the Best ? +All that might take time . + I want you on this right now . +But will he play ? +That is also the case . +They are like his little children . +What if he does nt ? + He does nt on this one . + We work against that play all of the time . + This is what he said . +Our children did , as well . + And how do you do that ? +But I did nt have it . +There 's very little money to be made . + It 's been a long week . + That 's what people should know . +That 's right where I want to be . +I might even go down there . + I do nt think she would know how . +That 's the way you have to work in this business . + This may be over in a year . +He is for them . + Where is it now ? +What can you do with a state like that ? + I do nt think it will take us too long , she said . +Come back and see us in a few years . +Yesterday was not the one . +And he has not . + We know this now . +There 's just life up here . +There 's one other way . + I did nt know I was going to do this , he said . +Well , you know , never say never . + I said : Not without me , you are not . + What 's it about ? + Where does he get off ? +How you get there is your business . + Then , it did . + How long do you think this is going to last ? +That 's been out there . +Do I think I could do it ? +It could be big . +It 's not going to be the same as it was before . + Women do nt , she said . +That 's his life now . + There 's big money out here , he says . + He just could nt . +How can he do it ? + I do nt think it 's his time to go , he said . +But that 's what he said . +That 's just part of it . + I could nt do it . +This is more about it being my own . + Then it was back to work . + We can not do that . +They were nt home . +What was he to do ? + But this much I do know , he said . +But I like it that way . +It 's night and day . + We do nt know where we will go and what we will do . +No it 's not new . + I think it was three , she said . +I think that 's what he 's good at . +I like to play . + I just think we have to be united as a country . +This team is a team . + Too many people think we can not do well . +And I think we play for that . + Just then was the first , he says . + What Can the Police Do ? + But it was nt for us . + Very , I said . + When is this going to end ? +Who was she to say no ? +And I have so much to do . +And in the West . +How will they do ? +Now he has to do it for a while . +We get no money from the United States Government . +What if it does nt ? +It did nt just end . + But how then . +What is a country ? +And all these were used against me . + Now they want to make money on it . + You are right there . +So is the law . + We go to them , he said . +That 's every day . + Even we do it when we are off . + But what do I do ? + We want our children to know what it used to be like . + I know what I did . +That is not the case now , is it ? +Now it is the same way also in life . +That is the only way . +It is what they are . + He said : I do nt know . +So that 's how I know her . +The last is the best . + That should do it , he said . + But they did not say that . + We are not going to take it . + Now think about it . +And what I would like to do . +You see me here today . +You do nt know , do you ? +But he was not home . + Do you go before ? + But at the end of the day we have to get it right . +I have to get up . + It was a good day today . + All he says is No , no , no . +He said it had not . +It was her family . +It 's time to say , It 's over . +They are going to have a good season . +Even when he could nt . +It had to be . +I still do -- and I still think of it as very American . +He 's found a place here . + I like New York , he said . +We make it through life . +Can you do this ? +The best we can do is work with them . + Well , who is this ? + We have to have it . +That 's what I want to know . + If not , I will by next year or the year after . +Most people do nt know we are here . +I did nt do this , I did nt do that . +I do nt know where they come from . + No , no , never , she said . +I know that , and you know that , and the people know that . + The place is right for me . + That was nt right , she said . + How did this come about ? +Which says it all . +You just know it . +This is what you play for . + I think he has some very , very good years left . +What year are we in ? +So , which is best ? +They have not been made public before . +But he has more to do . +It 's all I know , he said . +It is his game . + It also does more . + If I do , she said , that 's it . +It 's a program . + You have no business here , she said . + Are you one of US or one of THEM ? +Several times , no . + Few of us are . +But it does nt work this way . +It may be more . + I like the street . + Not that she was that old . +Just one more out . + They do nt see where the money will come from . +The game 's over . + I just did nt know him . + That 's good to know . + Or what 's around him . +But it still does nt take it back that I said it . +How can one take part ? + Well , they did . + But if I did nt think I could , I would nt be here . +And they last about as long . +I know they do nt like it when I say that , but they are not . +I say if you can do it , you go for it . +But what should they do ? + I do my work , a little here , a little there , he said . + There 's no law against it . +That 's what you say I said . + I said , How do you know ? +There 's no way out . + But that has not been the case this year . +People know where it is . + I have my own . +We called a few more times . +Will that be so this year ? + Do you see me ? +And I think we can . + I had to take time off from work . +Such is the case here . +She was nt there . +It could well be all three . +If you do nt , then it does nt . +And he has a family of his own . +We have to go to them . + Now , I know when it 's time to go . +No other state has that . +Now I just want to go home . +We can not have that . + Well , it had to . +It 's all right . +And many people did not . +When I called A . +Make the most of it . + But how can I get out of here ? +They know what they want to have , but they do nt know how to do it . +Do you know her well ? + Right now , our world is good , and the game was here , he said . + But that 's what I have . + You do nt know who people are . +But I think more like an American now . +You can put that in , too . +We have too many people . + It 's still new , he said . +They know they are good , and they like what 's going around them . +Here , there has been no time for it . +This is a big show . +He said he did not know what he would do next . +Never did know one , though . +How we want to set it up . +And if it does nt , what does it have ? +We could not have it . + It 's still the same , she said . +Some people want to go after him . +How does she do this ? +Are they here now ? + He said , Not too good . +The best of the best . + That 's just the way they are . +Does it do some of that ? + I did not want him to play , she said . +It should have said Very Good , not Good . +They were his team last year . + I do nt know where you come out at . + It made me think what war is all about . + This year was not like that . +But he says he does not think that much about his time over there . +They are going to get a house back . + I said , No , I do nt think so . +What should we do about all this ? + He is more than what they have been . + I did nt know him , she says . + He said , Would you ? +Have a year like that . +And I just want in . + And so they do . +Not because they will want to , but because they will have to . + We were just not used to it . + It 's not the best way to end the year . + We do nt use it . + No , I do nt think that was , he said . +The president was down with that . +But he does not say that . +There is no right way to do it . +School night and all . + We all know who he is and what he can do . + And then he did . + And they were right . +That man 's the best there is . +The city is going to get through it . +And what would he do with the money ? +Could nt they have said no ? +We want you to have these . +They want another one . +Many are in the country for the first time . +That 's what this case is all about . +They still think that . +That was not the case yesterday . +He , he could have . + Some people will like it . + We can not go on like this , he said . +What do we have to do ? + He 's the President of the United States . +But this season will be their last . +You are both right . +We did nt show that last night . + It 's all right . + It would nt be New York if you did nt get that . + You are still here ? + It is nt the end of the world . + I do nt know about today ; I do nt think so , he said . + We have to work on that , he said . + I did nt like . +I do nt have to do it . +I did nt know who he was . +What should one make of this ? +You were the best one . + I do nt know how to get around the city . + It 's just a good school over all . +But if it did ? +And until the very end , they did that . + They just did nt like each other . + I think the President is right on the money , they said . + I do nt know if it 's John 's last game . +How do you like that one ? +We did nt come up with it . +I think they know that now . +Many do much more . +I know you do , too . + It 's not that women were nt there . +And there could be more . +Some people have way too much . +A : Because it does nt do any good . + It 's what you should do for the state , he said . + You just go and you do . + This was his city . +How well did he play ? +He is the same way today . +I did nt get it , she said . +She just has nt made it work . +That was what we were . + I should know by the end of the week . +I do nt even know where you get those . + This may go on for years . +But then , I would . +He 's with you ? + I was the first one here , he said . +So who is right ? +First of all , who say it ? + Yesterday was the last time . +But now I know what I can do . +And for him it was . +Come one , come all . + I did nt know what was going on , she said . +It was put up only four years ago . + What did he say to you ? +What could they do for me ? + It 's good for them and it 's good for us . +I did not know that much about him . +That 's not where we are today . + It 's the place to be , he said . +Is this not so ? +I was right there . +I do nt know much about it . +The man just could nt get it right . + A LITTLE NIGHT MUSIC . +No , it did nt . +When it 's good , it 's good and I know it . +But that 's about all . +Now if they could only make money . +I do nt like to take money if I do nt work . +He could not get to me . +A : I do nt see it as new work . +He had to work . +You do nt want to do that . + It 's been a war every day . +But , they do nt want to do that . +But it 's all part of the game . +And they like it that way . + That , I do nt know . +Now it should be . + That 's what I want to do , he said . +Also , they are big business . +I did nt want the season to end . +I think so , too . +Me , I have a little more work . + We take it for what it is . +It was part of the show . +I just want to play the best I can do right now . +No one can say . +He said : I can not do that . +And this was one . + But I would nt be there . + Now I just have to play . +So I do them . + All those people in that office made it out , he said . +But that is not so . +One , two , three or four ? + It 's been that long ? + If I was nt going to play , I would nt be here , he said . + It 's a big city , he said . +You make them when you are not . + Now we are here to take it all back . + Did you get that down ? +But he 's still there . +Go on it all did . +And she was never where he said she was . + They get on me all the time . + I do not know how many . +I would just be in the way . + I could nt get through . +It 's all about me . +But should it do so ? +They do nt want to go . +Today , you do nt get that . +But there 's so much more . +But it will be made . + I do nt think I want to . +There will be time for that . +You say , Well , you do the best you can . +He would not last even a year . +He is in a good place . +Who 's going to be president ? + I did nt think it was at first , but now I do . +And what does he want of us now ? +It is both at the same time . + I want him to get on me , he said . + I want him to do well . +All this was to the good . +Only so much can go in or out . + But they are not set up for it . +Many times , no . + You come every time . + But if he has to go , he has to go , she said . +We did nt come after them . +I do nt even know that much about war . +But this is each country 's business . +It 's just not the same world without you . +Most people did nt . +It was a game to them . +That 's how we make our money . +I have a right to be in public school . +How did it get there ? + Then they had a few more . +But they did it . +It can and is . +Then it 's back to this business . + I had several every week before . +I think he will . +That was then , and this is now . + That 's my life . +They like it , they do nt like it ; at the end , it 's just about that . +I have much to do . +But he does nt do it . + I do nt think that there is any more that he can do . +Do they go with you ? +I do nt time people . + But so are we . + I do nt know if he has or not , he said . +That 's there as well . + There were only about four of us . +We are , and we do . +We only had one out . +But if he did nt know , then she 's on her own . + And I never know , he said . +She did what she could for them . + Many said they did not want to be the first , she said . + Which is the other ? +He 's not the same . + We have three more left . +Or , I should say , another day and night . +A man of the west ? +But they were nt in the same state . + What percent were you ? +For several days , it was . + There is not much left . +I think it was a little of each . + We do nt know him . +It 's about your children . +For her , too ? + That 's my other life . +Those were the days when children did not have to do , they could just be . +Some are still around , and they may be at their best now . + This is all new to us . + I do nt want that , he said . +Would nt we want to know all about it ? +No , I think it 's very much about the money . +That 's the way we are going to take it to every team every night . +But so are you . +But they might as well have . + I would like them to come back , because it 's been a long time . + Now there are three . + Ms. John said . +We have all the money . +How right she is . + I would like to go back to work . +Here 's what I want you to do . + They can come back . + I did nt know if they were going to be there . +But is that all there is to it ? + We know how to do it . + Where are we going to play now ? + No more than that . +Because what does he want to do ? +It is American music at its best . + I do nt think most of them even know about it , he said . +This , at last , is it . + She 's been here before . +She still has a way to go . + People are going to say what they want to say , he said . +That 's when they found her . +You want to do it right . +You could end up where you are on the street . + Who is this from ? + I said to him , You do nt know me ; I do nt know you . +How do we go about it ? + I could nt do it , he said . +There was no money in this state . +But I know how good he is . +But there is a very big market here . + There was no way around it . + But that 's only part of it . +Come to my show . + This is all very new . +We are not in the old time . +We have to do it . +People say you would nt want to work there . +It 's four years since you left us . + This I want , he said . +He said it would not work there . + You do nt know which way is up , she said . + And here it is . +They do business with the Federal Government . +And that 's not right . +But I do nt know what 's after that . +But there is time . + Make of it what you will . +But who had the time ? +Two women did not want children . + That will just about do me in , he said . + It 's what you make it . +It 's not that they do nt like him . + This has been a good day , he said . +I just go out and play the game . +This was my home . +They just take you . + Are you going up ? +What year is this ? + After all , he said , these are people with their own family . + A long , long time . + It 's just a way to be a family . +But right now we are going to do it my way . +Which to go with ? +And he just about could . +Who would come here ? +Some say that 's for the best . + That will be the best place to be . +I would nt have the time or money . +It was one time , and one time only . + Some people are like that . +That would be just about right . +I was on the street for years . +It has to be about us , no ? + There 's no place like it . + But that 's not one of them . +We want him in the game , all right . +He was in the know and out of the know . + It 's two people . +Could you go back to it now ? + Who would nt want it ? +That is the way of this world . + Which to me is what it 's all about . +They might even make some money . +That was the only play I had . + Some still do . +They do what they want . + We had it right there . +This is where I want to play . + There is no second . +But what did he know ? +So Where Do They Put It ? + They can have no life here at all . +The home team was here . + No , it was nt that , she said . + Back in the day , she could nt do this . + Come on in , he called out to me . +I said I did nt know if I could make it . +It 's all part of the game . +But then he did . +You are a big country . + I could go any time . +I did nt want one . +Not all of them , though , and not for long . + To see you . + They have not had to be . + What could I say ? +And there are that many more people who want to take you down . +I could nt even think about it . + This could have been big . +It was like , If I do nt get a show out of this . + I want to see if it will work , he said . +But there 's little time left . +It 's not the time or place . +But it 's not for me . + I do nt think that is right . +Well , I know where it 's going to end . +So what was going on ? +Now she 's back at work . +They want it to work for them . + This year they are a little old . + Is that what we did ? + You know what I do nt do as much of ? + That 's what we work on , year in and year out , day to day . + There 's not much we can do about that . + Every team is the best team to me , he said . + People say , He 's not this ; he 's not that . + And I said I did nt think so . +I had to see where she was . + And here it is , she said . + I do nt know her . + So we want to know . +His time would come . + I have not been home in two years . +In Little Man , What Now ? + What are you going to do next year ? +You have to be in New York City . +A : I did law in the end , three years of law . + She was not political . + This is his time , so it 's our time . + I just want to see who made this one . + You did nt go down there , did you ? + Some do , but most do nt . + But where will it come from ? +I have to see it through . +He 's going to be out here a long time . +Put it up to the people . +And here 's another . +Did you get him ? +Less is not more here . + I have nt had a home in two years , he said . + Me with one group . +He did not say how . +I was nt going to say who he is . + And she could not have any of that . +Back to the game . + It is not even a part of who we are . +I had to come back . + They do it from time to time . +He has not been found . +He 's the right man from the right place . + I said , I think so . + And it was nt like it is now . +To the people here , it is more than a business . +Many would say no . +This year , we are going for it . + What 's there to see ? +He was going to make the play on his own . +Say what you think . +That 's who we are . + That 's what it is , he says . +It did nt go on . + So should we be . +I will be going . +She 's very right . +Here 's what she said about him . + That is our right . +They are all good . +How much more time ? +I think there 's a little too much made of it . +But that is not what this is about . +The four years are over . +It 's been like that all year long . + I like it , she said . + I made it through , he said . +No , they had not . +She should nt be . + And we did nt know . +And then there 's the New Right . + Well , today we are back . +The game is over . +If I can do it , so can they . +Because we know where we come from . + I said how could this be ? +We go out and play our game . + Did you or did nt you ? + That will take time . + They take on a life of their own . + You see what it 's like today . +I do nt own a team . + We are just not used to this , he said . +Would she do it ? +If not , it does not . +He is over there . +I was like , I do nt want to do this . +Where do they all come from ? +I do nt think we are out of the game . + I like it there . + They are business people , and they do what they have to do . + He 's like , No , she does nt . + By the end , it 's back up to what it was . + You know who I like ? + This is what I know how to do , he said . + You want him on the street . +Who are these people . +John can not do any of that now . +And not just her house . + We go two up , then two down . + I know the law in this country . +So there you go . +What people want , that is . + That 's the game I play , he said . +YOU know what I like about this place ? + We want a government . + We want to be a team like this . + It 's like we are all the same -- but are we ? + I want them all to see what they did to us . + Most had come from us , he said . +And here at home ? +One day , two days . + I do nt think so , no , she said . +It 's all I have left . +There 's one , and there 's one and there 's another . +But it 's not what you think . +Do they have the right to do this ? +We just do nt have any . +That is all I would say . + But it 's at a high right now . + So , what 's going on there ? +But come they did . +And then he was back at it . +The man is now your own . +There would nt be as much . +They are with me too much . +And I say they are both right . + We are going to work it out , she said . + Because it 's about time . +They do nt work in New York . + I think it 's over . + I said , Is he at the center ? +Here we have one . + I think we all did . + Until you get it , you do nt have it . + She may be right . +In our school they do nt . + But I think it 's going to take a while , he said . +But I did nt think of it like that . +With John , the man . +You have her for a second , and that 's it . + We want him to know that he does nt have to do it all . + We would never do this for the money . + I do that many times . + And they are going to have to do that here . +And these people want to be part of it . +I know that 's not me . + I did nt know the law , she said . +And then there 's her work . +You should come to my home . +Think about that for a second . + He 's a very good man . +Well , not all of us . +And I will be until the end of my life . + What 's the game ? + But now he 's just part of the team , she said . +Who said they could come back ? +He is out for the season . + I think all of them can play , he said . + We had a man at first . + How many do you have ? +And if so , where and how ? +He should be here . + In the United States ? +So what do you think ? + It 's not what I would have put up there , he said . +How he said it ? +What time of year is best ? + It 's all about money , he said . + You can have them all . + To me , it 's the same . + It was their year . + You could nt even see some of them before . +It is nt just about business . +So , what does he like now ? +Little did I know it would come to this . +They were our children . + In the end , people say , What 's in it for me ? + I did nt know what street I was on . + They still are . + It was me ; it is never them . +That I know I can do . +But they do nt have to . +And that was him . +He was going out of his way . +To me , that was nt her . +This is a new game . + I did nt know who was in the game at any time . +The children have come a long way , she said . +I know I do . +We are the first . + All I want is my family back home , he said . + I want to be as good as before . +It 's been good going over there . +What if the good times do nt last ? +Are there still people out there who think that way ? +We are going into another time . +In An A Is an A Is an A . +I said , Get out of here . + I could nt do it now , it would take too long . +I work out at home all the time . +But who are the They ? + But I would nt want them back . +It 's good , though . + And also they were in your home . + I do nt think he can . + So who is he ? + They want to do it right , he said . + The game can last a long , long time . +You know you did nt see all that . +They do nt know what to do . +Also , he 's good . +It 's the world . +It was time to go back to school . +He has five , not two . +Now we just have to go all the way . +He said , You should do your own show . +Not very many of us who can do that . +This is a big game and he 's going to be there . + I made it ? +But this time , he is in them . +And time is good , right ? +How can we be ? + And he said , What 's that ? +There are times all the time the same . + We like people not to know that we are around , he said . + Now it 's the same . +But if they do nt want to use it , they do nt have to . + I do nt see that at all , he said . +But what about the first one ? + Every now and then I do that , she said . + I have had such good times here , he said . + But it 's like the president said . +It 's what we had in the old place . + That 's all I can say , he said . +That would be good for this country , would nt it ? + It 's life for them . +Want to work at home ? + You get used to it , she said . +If you could get money you could make money . +We are not going to go against it . + We are still right there . +This is the way the world is going . +And now , New York . +I think there were more people today than yesterday . + I would say that . +Take some for your own use . +Then it is political . +It was not the house . +Do you want to do this at this time ? +Most people never even see them . + Part of the time . +And what would they do without people like her ? +I know what 's going on . + I think that 's still in me . +It 's the other part that he has to show us he can do . + And he does nt want to go back ? +A million or more ? +It may be because they just like to . +We all like each other 's company . + That 's today , I said . + It 's his home . +What 's left to be right ? +Three for the show . +Still , he was at last night 's game . +It 's all up to us , all of us , now . +My place here in the company . + It 's too big . +It is my place . + This is political business , he said . +It 's there and it is nt . +What made them so good ? +She : My , how long has it been ? +They say , This is our home . +I do nt know too much about that . + It was time , he says . +Which , he said , they very much are . + I want to be like them . +Now what to do ? + It was a good play . + I should have never left , she now says . + It 's a house now . + I did nt know how good I was . + And it 's not going to work . + Well you know what ? + I never said that before . +I have too much going on . + Or that he used to . +He 's out of this world . + I said , We want only one . +How is this going to make its way into our work ? +I can say no more . + For the most part , I think people like it , she said . +They know where we are , where we are going and how we will get there . + Not that I know of , she said . +He 's still not as good as we want him to be . + Do nt play President - you are not . + I said , It 's not him . + If you get it , you get it . + They have been to New York . +Some were still there . +I should nt say any more than that right now . + And they will play . + And then he does it . + It 's never like with her , he said . + Do nt you know he 's the best ? + Is it going to end ? +So here 's what I want to do as your president . + That 's most of what there is to do here . + And now you work for the United States Government ? +But he is at home . + Well , it does . +It was just too big . +What Will It Do for Me ? +What if we did that ? +And we can all say that . +Children do nt like it . +They want to get to know us . + And in a way he 's right . +I was just there . +Time 's up now . +And they just do nt want us there . +But he did know . + It 's a little more down home . +That 's where my life is today . +They just do nt come back . + We were not people . + We can only go on from there . +Now he does both . +This is the American West . + Who does nt want to get out of school ? + And as he did last night , to make more than a play . + I do nt see how he does it . +After all , it 's about his own family . + It did nt go too well . + He 's been there before . + Is nt that so you ? +And it was all because of music . +He did not get his way . +I do nt think any company is going to go under . + I know I should have one . +It 's like they did nt play . +A little but not too much . + I will see , she said . + And I would nt have . + This is the political will of the City of New York . +I think we know what to do . + They say , No one will go see this . + It was nt like that . + I have nt called them . + He just said , Do it . +WHAT do you do ? +You know it will . +And he is good at that . +There is no life here . +That 's part of the game . +It would nt work . + It may never be the same . +It is now very good . +For the most part , he was right . +With that you are going to make it . +It 's one game , and we are still in first place . +Play where you are . + You are in center ? +But we do know what is going on . +This was one time it did not . +I said , I think you are right . +But he found a way . + What do you think of it ? +I just put it up . + They do nt even know who it is . +You will go there . + But that 's only one day , he said . +It 's not a good one . +That 's all we want . + So what I want to know is : How we do this ? +But it will out . +It was like , go to work , go to work . +But if we play well , we can . + Five years , she said . + There is no place to go . +But we should do more . + She 's good , is nt she ? + What game show are you from ? +For me , it 's the best place . + There was no way to get out of my home . + I will not back down . + We were with him all the time . +She left after one season . +You were my life . + And that 's how it should be . +This year we could not do that . + And it never was . + No , they should nt , the President said . + We do nt see any way around it . +This is who we have . + What to do ? + But this week they did . +We did nt get it . +Who are the three ? +And where are they ? + If they like you , he says , you are part of the family . +Then he called back . +She did not get it . +That can be good . +We have to make money . + I think about that , he said . +This show does that much . +Go with a group . + We are not a part of New York State , he said . + Where did it come from ? + You can not say this will take two or three days . + They are children , he said . +That may well be so . +Well , he was here and he was nt . +And I think we are going to have it . +One year since you left us . + But it was nt like this , he said . + We are the People . +But I would nt have it any other way . +To have a good family . +These are people 's children . +What should I get that John might like ? + What 's left of us ? + You are us , and we are you , he said . +And I said , It is nt very much . +Out With the Old . +Which should be used ? + That 's all it would take . + If there are , there are . + There , he said . +House members do nt even have to do that . +It 's just us . +No , she did nt . + You are so good at it . +She has good children . + Could the state do that ? +I have nt been there in a long time . +I could nt get over it . + That 's what it says . + I was nt going to go there . + And I was . +Well , then do nt do it . + We do nt know what we are going to do , she said . +Little did they know what was to come . +But if the game was today , I could nt play . +I was going on my own . +What are people for ? +What if he is now found . +Think about what you can do in a second . +Even during the day ? +WHAT ARE YOU UP TO THESE DAYS ? + I see through them and they see through us . +But most have not . +What does that make the old man ? + You do nt play this game for other people , he said . +But we have nt made money that way . +If he 's not that , what is he ? + We are used to it . + It 's the same , he said . +She can say very little to him . +Case is the best . +What would you have called ? + It 's a new city , he said . +So it is with the week . +Now he has it only at night . +People are not here just to see who is here . +I want to get on with my life . + Then or now . +Now we go on from here . +Well do nt , not when children are around . + And we do nt have that . +All of my family is here in New York . + You want to do it next year ? +We did and she was right . +I know where they are . +And it 's not about to go under . + The world is not over . +But it 's just not . +That 's where they should be . +Do you think it will work ? + I do nt know , what are you going to do ? + They say , You do nt work . +I still do nt want to be here . +There 's not much to say about it . + To me , it should nt have been , but what could you do about it ? + You never know around here . + As if , she said . +This is the American way . + I do nt like any of them , she said . + This was not the case , she said . + In their place I would do he same . +No one could go to school for years . +I said , It 's like this . + That 's the one that did nt . +But we have to do what we have to do . +They work for us . +They just said what they had to say . +But that 's not what this house is all about . + Not so much , he said . + No one has to like it , he says . + I would nt say no , she said . + He said he was , too . +He was good at it . +It was and it was not . +And I should have had another one . + She said : You should nt do this . + This one is the first and the last . +I want to be there for him . +You do nt do that in less than five years . +We will do this . + He says he 's not . + You never know what he 's up to . +The other night they had a home game . +The night 's show is over . + But how many is that ? +Says it 's all right , good . +Well , there it is . +Here 's where we are going to play . + This one did nt . +That was last year . +And so I could go through more . +Is that what you see ? +Well , this is where they play . +She did , we did nt . + We just could nt get to them . +He has been with us a long time . +Who 's Up First ? +The White House will then make its case . +You go from high school , where you play all the time to that . +It 's a good school . +And the year is nt over . +This is the only world they know . + It 's a long war , he said . +It 's a very good show . + I do nt have time . +There are only two of us . + It will take several more years . +I just did not know . +But that is next year . + I do nt know him , she said yesterday . + Do we have the money ? +It was just in time . + But I do know this , he said . +And as John A . +Who are these people ? +We had no family life left . +That she was very much against . + You are out there . +Other companies have never used one . + What they had before , it 's the same . +Now we are going to have to do it without him . +You do nt know what you can do . +I would never have found another one just like it . + This is not one of those . +But I also know if it does nt work for me , it is not the end of the world . +And I know how to go about it , three . +Because you never know . + But I do nt know , and I do nt know when I will know . +And if you are white , you are like us . + I go home at night , I think about what I have to do . +Is there life out there ? + Who does she think she is ? + But that 's part of it . +Or was it both ? +I want you to know more about them . + It 's like music . +But if I did ? +It 's like a man . +It was nt that long ago . + I did nt even think he could play . + Who do nt ? +They are a long way from that . + I just know I want to be part of it . +It was nt there today . + But after three times , you just did it . +So what did that make the family back then ? +He is very much still in the game . + She said , Do nt even think about it . +They were both in school . +If you are going out , you might as well go all the way . + But it will not . +And he 's the President ? +So I make my money this way . +The same with time . +Would it or would nt it ? +This was not the best of times . +This is my street . +But now they do nt . + But they know it . + When times are good , you do nt think , he said . +So who are these people ? + I think about her all the time now . +Some people said it would not work . +So I said , Can I do one ? +It 's very good , but it 's just not me . +But I do nt think he did . +We did it with our own people . +And for the most part , it is . +They never would , right ? + It 's like another life , he said . +You have to make those , though . + We have nt had that here before . +We did that last time . +They just did nt know who . + Where do all these people come from ? + If it 's here , it 's here . +That she is back at work . +Did nt know when to get out . +He would like to put out more . + I have nt been . +The more they get , the more they want . + We are all going to the same place , around the same time . + They did nt want women to work . +This is so much more . +Was it the last time ? + All right , where is it ? +Women 's work , she said . + It 's what I would want for my children . +But even if I did , it would nt be the end of the world . +They are in my house . +Could there be another will ? + It 's what they do nt say . + Now 's the best time in the world , he said . +It was yesterday ; it is not today . +But I do nt think it 's been so good for them . +Even if they do nt know it . + This is our president . + We are going to have to play our best . + What are they going to put in its place ? + I do nt think it can . +For the most part , it 's been good for our team . + As with most people , there still are . +Did I say we ? +That 's just the way the world is . + You are all right . + That 's what you play the game for . +You are not from around here , are you ? +It would nt take much . +It 's about time they do . +We do nt do as much of this as we should do . +If they want to . + What would you like after ? +So long , New York . +DO AS I SAY . + No , said he . +Is in New York with you . +Who did nt know that ? +She would nt back down . +I said yesterday that I did not . + Will I get them back ? + I have my own , she said . + They would nt say . + I take it a day at a time , she said . +What is one to make of her ? +How can I get to the United States ? + You can take him , one of them said to me . +He was so good . +Then a few more . + I will not do so . +More are to come . +I do nt want to go out . + And I said , Well , I know some . + It was like family . + This was a big day for me . +I do nt think this was my best game . +How many people are going to come to that ? + Some was not . + They are with us , and we are with them , and they know it . +It is just too much , she said . +This can not last . + You will not do it . +Do they still do that ? +All that did work well . +But one game at a time . +Some day there 's going to be an end . +Too many people do nt take the time to do it right . +One day is just like the next . +We are at war , after all . +They go up and down . + What does this do for the city ? + And we have a right to know . +He did nt play like it . +And there were nt that many of us around . + This is May , he said . + And I would nt do it . +We are against it . + This is a big business , he said . + To me , this is it . +Well , you know that 's how we are here . +Be among the first . +On the court , he was just as good . +But where will they play ? +He then said he had to go , and might never be back . + Then I can come back ? + I know I should get to work on it when I have a day off , he says , But we do nt have many days off . +And still are , to this day . +For that we have time ? + And he 's right about that . +I want you to know that . + When would he play ? +Many of them do nt know what to do . + Part of it is being in the right place at the right time , she said . +And what do they want ? +All we want is his day in court . +He is a director of three other companies . +If they did that . +We may have to have him back . +That 's part of life . + I say , I know . + New York City is the center of the world . +At times , I do nt . + I do nt like them , he said . +The money will come . + I do nt have any children . +She : So say it back . +And how could she not ? + Where do they go now ? +So what do women want ? + We are going after him . + They can go their own way . + But now my time has come , he said . + Not with our people . +They do nt have children . + We were nt family then , she said . + We just could nt do it . + He was never home . +He was going to see me in my first play . + He 's in and out . +You have to do what they want you to do . + I do nt see it that way , he says . +I do nt play the game that way . +You all know us , right ? + I did it right , he said . +But then , there are the children . +One very long day . + I said , What about ? +No one can do that for you . +But it does nt show us . + So now it 's here . +He would not say how many . + We do nt know who was here . +They were in business . +You just do nt think you are any good . +What is this about ? +But they are not here . +But they can not get out , they say . + But what is he going to say ? +And , well , you know . + He does it all on his own . + And where is he ? +It was the way to go , a long time ago . + But I do think there is a time and a place . + How do I know which one is the right one ? +Now , there will be even less . + This is home to me . +He 's not at all . + That 's just the way it has to . +Can she get back to you ? +But it 's all the same . +It might not have been best to do that . +Even if they do nt do so , they know it is there . +But this is right next to it . +It 's that it may not end that way . + I do it every day , he said . +Out there it 's for each other . +I have my children . + People come in all the time now . + I know there are some people out there right now who do nt want me here . +For us , it should be work . +No one could get through . +This is where we work . + They should get a life , she said . + They say no and do what they want . + With my own show . +This is what you get . +They did nt do that . + All of it is me . +They could nt come back from that . +So I think about that as well . +We just made it that way . +What can we do now ? +Still , he said , it may work . + There 's still a long way to go . +Does it go over well ? +It 's the country , after all . +But it 's back for next season . +And you are going to have to play well to do that . + No , no , no . +But you get over it . + I think they just could nt do it . + It 's way out there . +You are all right . +But that is over . +But we are up and down . + This is how it should go . + That 's all right , she said . + I do nt know , I would say . +What if It Were a Man ? +We do nt know what 's next . +All these and more . +What do you see right here ? + That 's just the way it is . +And for what end ? +Should you take it ? +But we did nt do too much after that and they did . +He 's just not that . +Well , so are we all . +I might as well . +Now , there is . + You can get what you want , when you want , for where you want it . + John is over there . +Just as he is this year . +Money does go out . +It 's just not here . + They have not been . +Or you might say : I can do this , this , this and this . +I said : I like you . +They are good at that . +A case can be made for each . + Can We Do More ? +But so can I . + The end is here . +This does nt take long . +That is good for business . +What do we do from now on ? + So you are good ? +How many times did you get up in the night ? +Because he did it . + He is now our president . + And it was good . + All they want is the best for their money . + We could have had this team two or three years ago , he said . + This was the only way I could do it , she said . + I will be back . +We see them every day . +It 's just business . +He has no right to be there . +And we will be there . +And now we know . +It was just right . +Well , who has ? + She said , Who ? + But this is my second one . + It will be good for me . +This is not so . +What do I do with all this ? +And now it has come about . +We did it to make money . + He 's after me . + That it did . +The law says they are not . +And he did nt show up . +No , she did not . +I just have to go and do some work . +Some people may not . +Right now , that 's a very big if . +A : That is nt so . + It 's the same show . +So , this will be it . +But the Old One was right . +We were nt here . +She does not want to do this . +I used to do that for him . +He 's too good . + I know it is only all right , she said . +Yesterday , it was . +Here , if you make money , it is all right . +You can have two . + You do not make any ? + They take it like it 's not a street , she said . +I never know what to do then . + This year or next year ? +That was before last night . +But he will play . +He said there were three . + As we would do in most states , where we can , we work with the states . +What if , I more or less said . +But never at home . +But that 's all they want to do : say it . + I like that . + No , one said . +They just want to go home . +I just did nt get to play much . + I think the time is right . +I just had to go out there and do what I do . + You think it 's about you ? + They said , How did you know ? +I just want to get in there and get out of there . +Is there such a law ? +We are going to go through department by department . +Part of the business . +Or in the night ? +It could be used today . +But that 's not the case . +I did nt know what it was about . + All we want is to work . +I want to play , too . + I just want to do well . +It should not have to do so . +I like both the best . +Most of the time , they do nt see us . +How could you have ? +There is this , too . + More than a year . +That could take a long time . +Some , they said . + I had one of my people get them . +But we are nt just going . + He 's just never been in it that much . +You work on what you do and not what the other team will do . + You never get over that . +How could our Government do that ? + Because business is good . + But we do nt know how . + I think those are the best , he said . +I will not come back . +And there were many . +I like the American way of life very much . + It 's a game . +President , and it was about the president of the United States . +They are not against me . + I was like , what 's that ? +I could nt be without her . +All I want is a place of my own . +I know that going in . +I think this program can do both . +This was nt a good time . +First it was that show . + I still have a long way to go . +And so they do , on and on . + This is what I want to do . + And they said , No , you did nt . +This is our second time . +I have been to the White House a few times since then . +Will he get to use it much ? +But I have a house in the city now . + But you would nt . +What Was It That He Said ? +He 's of the government . +They know them both so well . +It 's what 's there . + It 's all in a day 's work . +These , too , are now part of city life . +Is this all about him , or about us ? +THE school has said no . +I said that 's not what it 's about ; it 's not about money . + I want them to see me do this , he said . +She has been to many . +You get to like them . +Here , it 's not like that . +Now people from here go there . +If it did -- when it does ? +She was going to use it . + I know this . +They want to make money . +The Other was just another . + So , will you ? +We do this every night . + What might you say now ? + I play the way I used to play . +Or , Do nt play . + But he was nt . + He did nt do that . +And for that , I do nt want to play more . +It 's time they did . + Just to have it , he said . +This is not good . + I do nt know what they get out of it . + That 's all we can do . + We have to use this time . +And it 's as good for them as it is good for us . + I like work , he said . +It is my home . +There is time to have time . +Can I have another take ? +He was never found . + And he 's good at it . + I can not play . +But this is the game . +The right people are here . + I know it 's never going to be over , he said . +There we have it . + I want you , she said . +She still has a long way to go . + I know what it is like over there . +And if he can not play ? +Now he is going back . +And that 's what this is . +FROM TIME TO TIME . +And I think that 's all I should say . + It 's the way people are . + But we are not going to do that . + That 's all right , though . +And that 's right now . +Then they go back to work . +And you know that . + You have to use it . +And it 's not . +It 's more than I can take . + We do it all the time , he said . + Did they do it right for you ? +Where would we have been then ? + I could nt say . + But there it is . + It 's the same day over and over . +But , he said , it might take a year to see the money . + That is all I have left . +How did he take it ? +I just think it 's time . +He just did nt have it today . + What 's out there that we could get ? +They were nt there . + But , it was no one group . + I did nt think so . +What did he see ? +How can he play his best ? + We have no other way , he said . + Business right now is good . + But most of them do . + Then they are on their own , he said . +But only for another year . +It 's how much they do nt . + We are there during the day , she said . + We do it every year . + I have been here all the time . + What would he know ? +We do nt know what to do any more . +For all of them . + You have to know him . +If he does nt , he does nt . +I found out all about him . + There is money to be made , he said . + About you , right ? +Mr. President , there 's a war on . + But it was never the right time . + I do business in New York , he says . +It 's what we should work on . +Well , not with me they do nt . + How can you know ? +He does nt know me . +And not for us . + I was like , She 's on to me . + You may know her , too . +And how is the business ? +She know before they say it . + I was there for a year . +Here , it 's the white people who do nt want us . +She 's been around for years . + We just go out and play . +I think they should have to . + I know I would have , he said . +How long is he going to be around ? + He 's just not one of us , not of us . +I like it , I like it . +And at the end of the day , we did nt like that . +Not on my part . + She was never the same . + We do not want to be back in court , he said . +Do what I WANT . +It 's going to take more than that . +It 's where I want to be . +You just do nt know when or how . + What 's good about it ? + It 's just one game , though . + Will you come back ? +Here is what 's out there . +I know what they should be . +Here you do nt . +How do you do that ? + Both , he says . + Who is he ? +Can I say more ? +For me it 's not . + They are my children . +I had three children . + Right now , they are not so good . +Many want to know . + It was not very good , he said . +I do nt want to be a part of it . +You do nt know what to do . +They had to work . + Good to see you out there . +What do you make of it ? +Only for a while . +Most companies do nt even have one . +It has been for a year . + And he has never been here before . + They do nt see much of each other . +I could still say no . +And that is City Year . +She 's in such a state right now . + Some people have them , he said , and those who do nt , want them . +This was not It . + All we can do is the best we can . + At first , I did nt know what to say . +It just does nt set up . + That 's what it was , and we all know that . +They do nt know people there . +But I do nt think they are . +He 's part of us . + That is the law , she said . +They think they will get that . + I have been there . +Do you see an end at all ? + And I think it 's -- I think it 's time . +I want to know more about that . +But Where Are the People ? +I want my money . +It 's just that they do nt . + It would be so good for me . +Where was the president ? +Do you know her ? +It does a world of good for most people . +Five years ago you left us . + No more , no more . + The man said he would get one . +But this is where I want to be now . + It 's work that does nt know the time of day , he said . +I do nt know how big it was . + I work only four days now , she said . +First of all : money . +If she can get into a program like that , she says , she can get on with her life . +Well , I found them . + I had to know , he said . + They just say , We can do this and make money . +See you after the game . +First and second and two out . +Today , they are white . + I will take my work there and have a good time , he said . +It had a long way to come . +I just do nt know if it was good for me . + I did nt want that , he said . +I said , That 's not right . +It 's not the government . + I was nt going to just get by , he said . +They did nt , all right . +He would say , What do you want ? +What do you want here ? +That 's right , money . + After all , this is not just about business . +At the Government Center , he said . +But I could never do it . +I used it first . +Family , for one . + You have to come . +That was what he used to do , not what he was . + Until now it was the center of the world . +But in the end , to what end ? +That would have been all right , too . + Do we have that now ? +How can we know when and what we do not know ? +This is nt me . +Show me no more . + The man is on the money . + They are my team . + They are right to do that . +By the way , how 's school ? + There 's just too much going on here . + Did you see the game ? +It was over , though , after that . +Who should it be ? + But you never know when your first one is going to be . +This time , Family Court said no . + Would it work ? +HOW BIG IS IT ? +But I want to , more . + I think it says it all . + This will be a home for new work , she said . +She still does nt like it much . + He 's too good not to . + What did we know ? + Now I like it . +That was a good play . +No other place is going to be home . + He could nt be here . +That 's because it had . +But this is now and that was then . +But it was nt me against him . + We have nt had many today , he said . +Now he could nt play . + For how long ? + This is my second . +So who was she ? +So is that that ? + Money , he said . +Even I used to do it . + They are right . +You have no life . +Today they were back . + And he said no . +That 's all you have to know . +It 's there , but it 's for me . + He did not . +Will he go back ? +It has come to this now . +That is very high . +He 's very old man . + And that was it ? + When , next year ? + These are just as good . +But not as New York 's best . +It was the end of me . +He said he did nt want to go into that . +People will get used to them . + It 's just part of the game , he said . +He says he will do the same now . +That is , if it 's still around . + I did nt know who she was . +For years I have as well . +Then , one after another , we all go . +Is it another man ? +They know what it is . + And we think that , too . + It 's not me , he said . +Every white had to have one . +It 's the people who come back year after year . +This time , he was among them . +We said , What can we say ? +But when will they get him ? +Come to think of it , so was I . +Which one are you going to take ? +But there is a family . + What was I to think ? +But we are a long way from that . +It is what they know how to do . +I think it will be , but it may not be . +And that 's a big part of it . + It 's never going to be what it was , she said . +It might as well have been . +But now , get this . + They just do nt know how to get out from under . +But it 's not about music . +And how can we get them back ? +So they are both , you know . +We have to go out and play well . +What would they say ? +There 's No Business Like . +Now he has put it off . +You only play this game for so long , and then it 's over . + There are four people on that team . +He would nt do that . + Show up on time . +People just like us . + And how did you get there ? +It was over , but not over . +And then you have to think about this for a second . + That 's you , he said . + Put me down as against that . + You are not going to get it . +They did what they could . +No one was home . + And we , too , are still going . +Just a few more years . + That 's what people want to see . +It 's the way it is . + Our life is on the street , she said . +It could be a long day . +Where had it come from ? +They should come first . +I do nt know how many years I have left . +It 's our way of life . + Less or More ? +This has been my school . +And I said , I have to do this . +How Long Will It Last ? +But it 's more than that now . + I was nt me , he said . +How About Never ? + We have that this year . +And is that all right with you ? +After all it 's your money . + I just do nt know what it 's going to be . +It would be the United States . +He had one , not two . +It 's his company now . + I think about it . + But when she made that long one , I said , That 's it . +The Times : And what does she say now ? + So I made it . +If I did , I would have said , That 's not what this is about . +A NIGHT AT THE SHOW . + I do nt even want to think about it . + You get used to it , he said . + We do nt do that in this country . +How to get out ? + Every time , he said . +There were some who did . + You should see what 's going on there . +It could be one game , it could be five . + Just not to me . +Not where I was . + I said , All the time . +All was right with the world . + It 's going to take another two or three days to get back to where he was . +But there is so much more going on here . +Right now , it 's me . +Does government have a place ? +He has no home . + There is no way around that . +We had to get another game . +Too long for what ? + But for me , it 's not the money . + There will never be another like him . +That is not the case now . + But my time will come . +Most , like me , were on their own . +I was made to do this . +So what 's next for him ? + She has nt . +We are never going back . +So what is there left to do ? + Now get out of here . + It 's like us against the world . +We did nt have that a few years ago . +You just come out and work . + I do nt go to any other place . + They said , Because . +It is up to us to get it out of him . +Three of them are in the show . +Then it was show time . +What do you think of that ? +I just want to see more . +All will then be well . + You have to go for it . + Well , I do nt . + That is what my life has been about , he said . + I can do good . +But this is what I have . +Did he want it too much ? +I do nt know what it 's going to take to get in there . +I want them to own it . + There is no one in the house . +This is her life and these are her people . +It 's not a new play . +And that 's not what this is all about . + She 's not the only one . + I think I said . +Those were the days when children did not have to do but could just be . +We are not going back . +And they are going to do it . + And it 's only as good as what you make of it . +It 's never up to you . + In New York It 's Only Money . + I would just go home . +But we do nt think so . +And she said : No , I have nt . + What more do people want him to do ? +It says : Come here . +Not all of us . +Now , I do nt know what he 's going to do . +But this was more than just another night at the office . +That 's up to us . + There is more to do . +How has your life been ? +I did nt have it two years ago , but I have it now . + I think it 's going to take some time to get over . + He was the last one . + We all know that now . + I would just say this . +Well , that too . + We just have to get the right people . +This market does nt go down . + Where 's he been ? + It was nt that I was had , she said . + All of us say that . + He could go there . +And it is all business . +She just had nt had the time , she said . + We had that last year . +We know the way . +How can we work now ? + Where 's the money ? + What did you see today ? +That 's your business . +It 's like we are all family . +Where were you two days ago ? + This is where we come in . + We are going to have them , she said . + And has it ? +We should do show business . + If I had children , I would nt have time for all this , she said . +Well , no we did nt . +But that was nt the end . +But that was then ; this is now . +But it is not that at all . + If that does nt do it to you , I do nt know what will . + It 's a way of life for too many people here . +Who could get here ? +This is the best . + You are going to get who you are going to get . + I have two children here . + It 's too big a market not to . +So now , I never say never . +Where do you think they are ? +He and all those people know now . +It 's still going to take some time . +More people see us out of state than see us here . +And with this group ? +What 's this group you are with ? +But they do nt have it now . + This is all I know . +So they are back , right ? +That game 's over . +You know what he did ? +How many were women ? +What is going on here ? +We have nt made it . +But there was more . +People do want me to play next year . +Now we have it . +It did not do him much good . +I just want it out of my life . +This is just the way he is . +It 's going to take off . +I do nt think he will . + But it 's a long way . +But that 's how good he is . +I know it well . + Only they do nt want me to know . +She put that in , too . +If all does not go well , they might never come to market . +No one said much . +If so , then what ? +Family members never get over it . +American officials will not say . +If you did nt make your last play , you are no good . + What to do ? +Now I long for yesterday . + It 's not me , is it ? +But best of all ? +He made it up . + Can you do it ? + What do you think this was ? +Who 's out there ? +But this is New York City . +How much time do I have ? +He was as big as you could get . +That 's to get them out . + They are more than us . +It will also be the last , they said . + But where or when , we do nt know . +That 's what my life is about . +That 's not what we are about , that 's not what we want . +But where 's the house ? + He is right . + They say it 's good for you . + By the end , she had him . +They said they would be back . +Like many of you , I have had the . +This group does nt know about that . + But I want to be more than that , too . +He said , I do nt want you to say that . +We still have a president . +I just never said what season . +This is not the time or the place . + This is a people game . +But this is their team , too . +For all we know they may be right . + When did you get out ? + I think I should know . +Make up more if you want . + They are going to be with us all the time . + Not from this President . + It should nt be long now . + It was about time , he said . +You can take that any way you want . + That 's just part of his game . +He would want you to go all out . + It never used to be like this , she said . + She said , You do nt want to know . + I have been here for so many years . + There 's one over here and one over there . +No one had to . +That 's where all your money is . + But I do it . + It 's old , but it 's a good little house , she said . + You do nt like it ? + Not for them . + They do it just to show off . +It 's just that they are new . +Or what 's left of it . + It 's when , not if . + They do nt . + That 's old time , he said . +I do nt think there is another one like him . + It 's all I know right here , he said . + What can he do next year ? +And it will not be the last . +Because we are not . +All days of the week were the same . +If you do nt . +We could nt do that today . + What is that all about ? +What would it have been if he was ? + They are not there for other people , she said . +We want the money . + You , too , if you can . +Do more of it . +But so were they . +Three , four times a week ? + But they say , This is nt over . +Here 's what I think . + But he did nt make it . +Here is what we know . +And do do it every day . +He is all right . +I was there ; they were nt . + It was no place to be , he said . +Where were they made ? +It 's going to take some time . + No , not just this one . +So what will the new law do ? + But it does take over your life . + I take a day off here and there , he says . +I can not say . + You did nt get me . +But the good times are over . +I still have two more days to go . + We are not where we want to be right now . + But how can I be ? +So now we are with them . + You do nt have that here . + It 's out there . + I do nt know which . + We know them as members of our family . +No , but I will by the time I get to be President of the United States . + We are the people . +We are going to be all right . +Well , if you say so . +There was no way to get out . + But in the end he could nt . +It was nt so much the money . + We have found them . +No time and place were set . +This is a home . +Today is a new day . +It 's about business . +And she said , How do you know ? +I can not do it . + And it has come from all over the country . + But it 's my first year here . +I was going at another . +We all know it . + We know we are going to be in every game . +They like to come here . +But I left without it . + She 's still there ? +That 's not such a big if . +Not all of them , though . +All I have to do is show up and play . +He had not been well . +I do nt even know about me . + Because they never did it , she said . + They are going to be here for the first game . +She could nt have made them up . +There should be one way we play all the time . +But he never has . + Or was it the other way around ? +That 's what this team is all about . +They just did nt work . +What you do is up to you . +All right , it 's one too many , but still . +Do I have to do this ? +And there was nt . +No , his year . +If I can be as good one day as they are , I do nt know . + Is there any other way ? +Did she see what I see now ? +He 's just the way he is . + We might not have made it without them , he said . +I do nt think there was one . + There was no money . + It just does nt work , he said . +Can I make my own ? + But I had no place to go through . + I do nt think so . + This was one of those times . + You work every day . + Some way or another . +Or in no time at all . +I did nt come here to be here for one year . + I just do nt like it this high , he said . + Then I think you are going to see people say : I like this . +How would one know ? + All these people are good people . +And you might as well get on with it . + As it is , well , he 's not . + It was not to be . +It just a game . +But the show does go on . + I have never put it that way , he said . +We are not out of this . +But not too many times . +There was a time when he might have . +Did nt go over well . +The Federal Government did . + That 's what it 's all about for me . + It was one in four . +But now it is back . + It is time , he said , for the company to have its own house . + I think he had to play . +You do nt want to say ? +That was the game right there . +For a week or so . + I would nt want to be a part of that at all . +But it was nt just me . +But it should have never come to that . + She was with me all the way through it . +We do not take them off . + I know , I said . +I did it all . +They are there to be found . +Because they are going to want to get out of the business . + I did nt like who I was at the time , he said . +He said there could be more on the way . +Now they are back . + One down , two to go , he said . + I left out one . +He made an out with it . +We do nt have to do that . + Many times you do nt . +But little by little I found out . +There 's still a long way to go in this game . +They are such good people . +I know what it 's all about . + They still do nt . +We can do both . + What do you think about that ? +They are the best at what they do . + The second time they said no , at first . +But he would nt . +Last year I was nt . + Is she still at home ? +Then it 's just there . + Today 's the last time , she says . +I had it , too . + Our years are old , he said . + Just the next game . +Each man did what he had to do . + It 's time to get some money to these people . + I know what I can do , he said . +We know it can work . +You might not like it . + Me , too , I say . + It 's not going to work . +It 's time to have my time . +And not just today , but every day . +I want to be there for other people like they were there for me . +In the end , it did not take long . + Would nt get the business ? +Do nt get in their way . + So what do they do ? +I do nt know how much . + That 's not what you say . +That 's not us . +Could it work for you ? + They are still into that , she said . +Not in New York City . + It was nt about money , he said . + It is nt about that . +That 's just the way we were . +A very New York day . +It 's the way the game is right now . +To what end , I know not . + I do nt know what to do with it , he said . + I think people do nt know , he said . + The law does nt say it has to go on for years , he said . + But we are here for the children . +I think most people will . +Most times they do nt . + I would like to think so , he said . + I could get them down . +You own this country . +So much for being like us . +He does nt have to make it work . + I did nt think of it that way at the time . + It 's going down . + Not that I want to . +How should I know ? + We may be going there . +This they did not do . + I think I can work it out , he said . +So what will he do ? + I think he could be that good . + We had to be over there , he said . +I know it up and down . + You put work in and you take work out , she said . +This was the old man 's house . + I do nt even know what that is , he said . +Where did she get that ? + Most of it still is . + There 's not much you do nt like . +They are When I Get It Right ? +Do nt know where . + No , I did not , he said . +But when they go down , not much is said about it . +It is , after all , music . +He 's going to work . +It was way too much . +We are not into that . +We each know what to do . + What did he do with her today ? +All I have is the people . + They have a right . +We are some way from that . +I can not be still . +Who 's going to do it this year ? + There 's just so much money in the market . + People can say what they want . + It was right at that time and it is right now , he said . +It 's you and me . + Is this that all over ? +Where does she want to go from here ? + It was me . + How do you like that ? +I do nt think we have to think about that now . +But it is not , year after year it is not said . + It 's all a game . +How can I get them ? + She was into it then , he said . + Did you say no to her ? +That was a good game . +It just did nt come to me . +How does he play ? +And we all know it . +But I want to say it 's about time it 's over . + If not , I will be through . + But we do what we have to do . +It 's another day in the city . +It will last a long time . +I say , Come . +I think most people do . + He 's very , very good . +One for each of us , you know ? + They do nt know me . +I do like it . +They want us to work on their business . +Who do we want to be ? +They do nt have a home . +Not so , another said . +It 's going to put us out of business . +What did we not do ? +Where did that team from last week go ? +Then there are the other three . +What do you have to do ? + But we had to think of the children . +They do nt have to play . + It was a new world , he says . + I have nt been to a game for a very long time , he said . + But I do nt do it . +The game will be over . + They go to work . +And that 's what they want . +He has nt been home since . +That 's what I do every day . +I know what 's there . + His has been , too . +It is a part of the family . +It had been a good week . + And then two years into it , I did nt even know what it was about . +We had only to go up . +It 's about time he did some work . +But he was there first . + And I said , That I can do . +Down here it 's a war . + But that was then . +I go with it . + You can go out here and get money , any time you want . +It did little good . +They can do it here , too . + There is no one in his school like him . + It 's all the time . +It was like the old days . +Those could come at any time , or never . + Today , the world is not the same as it was yesterday . +I know you will do what is right . + But we are going to work on it . + That was a big three . + That 's the only way you can get by it . +I think I was the first . +We have to go back . + I could get it . +I think we did all right . + So here we are . +Then he said , Here . +Could I see it ? +We are the city of people who are not like us . + What he does with it is up to him . + It is not the law , he said . + We never had it , and we do nt want it now . +That was the case for him . + Now it is nt . + But how would I get it home ? +First one , then two more , then a few more . +You should nt have . +No , I can not now say who did what . + What will you do ? + That was the game . + I do nt know what 's going on . + It was just the two of us . +But its time is here . + They did well against me . +Out of first place . +This is what they said . + He has a life , she said . + Is nt that just the way of it ? +She is one of their own . +They never found it , though . +I see what it 's all about . +But if there is , I do nt get it . + They do nt get it . + My back -- I could nt do what I did three years ago . +I go to them . + How do you think their life is going ? + It does , at that , he said . +There never was one . +It was last night . + He 's back home now . + They are out there . +That 's not what it is , that 's not what it is . + It 's come at the right time , he said . +We see them on the street . +We know how to do more than we can say . +No , his life . +We have come to that . +Out with those too . + I was never going to work . +It said , Members . +He did nt even come and see . + This is New York City , I said . +Most of them have been said . +Because you are you . +Now both of us know . +How had you found me ? +If that 's who I want to be ? +The State Department said no . +It 's all about money . + We had been put down so long . +It should be both . + That was the end of that , she said . +That 's next year . + I just know that she did not have it . +But what was I going to do , put him back on the street ? + There 's no money with this . +It 's not my state . +So now is the time . +We are out there . +This is an American game . + It 's like night and day , he said . + That 's all . + We have to make this work for us . + What did we just get into ? +I do nt even know what day it is . + We are going day by day with it . +He made this school for us . +You could think of being home right now , but it will take you time to get home . +One night four of us did just that . +But you know all about her . +Dr. Good will see you now . + If it 's a big market , you go after it . +But I had to take it . + But this is what we do , he said . +That 's what we had . +But some have no family . + He 's so big . +So how do you do that ? +Then back to work . + I put A . +But it is even more than that . +And he did nt have to be in a group . + Last year was last year , he said . +Who 's is she ? + I said , What do you think of this ? + I do nt think they are the only way to do that . + People come and go , he said . +It might be the world . + My man , you with me here ? + It 's a way of life , he said . +What 's there now ? + New York office . +He now has both . +You are too good . +It 's not about them . + If we have to take it to court , we take it to court . + What can I do ? + I do nt think they know . +But she said no . + They want to make it . + But this is nt new . +And they can come home at night . +The American government is not a business . + I said that yesterday , I know . +How did I get going on this ? + This is all new to him . +And he never will . +I will never know what family is . + Get a life . +They work on time . + I think it 's time for me to get going , he said . +He 's a big part of it . +We are nt like that . +She said , What will I do without you ? +Then I was like , Now what are you going to do ? + The business center of the world is in New York City , he said , and we are part of that . +It 's a part of our game that we can work on . + It 's another world and we get to play in it . +So do I take it ? +It 's the best I can do for now . + That 's not just in the United States but all over the world . +Children like to know what 's going on . +He is the group 's president . +And she 's back . + I do nt know what to think or what to do . +And what of today ? +I have to do it . +They are a good team , and that 's all I have to say . +As it is in the United States . +What 's your take ? +Or so it 's said . +This was their first game . +Can I get another ? +It was the first of many . + What does any of that have to do with me ? +She is nt in it for the money . +Another said there was . + If you can think it , you can do it . +No , no , no , he said . + That 's all you see ? +They have a right to . + And who 's that next to him ? +You have to play the game . +That 's the way he is . +But what a week it was . +This one will not be the first . + But to what end ? + I do nt know how these people do it every day . +Some do not want this to work . +One week with me . +If we do nt , we are in for a long night . +And that 's you . +And there , it just does nt play the same . +That 's where we have to get to . +Our family is one of them . +But who could they be ? + But would it be right to do ? +It 's more of the same . +It 's where we were . +It 's just not about that . +You never know when that is . + No , she said , but how come I did nt get them ? +These are not good times for me . +You do nt know when it 's going to come . +You have to do it in between . + Then I can play . +What is life all about ? + That 's as much as we can do . +Are we going to make it through this ? +It has to be the best , and that 's what this is going to be . + It 's been up and down , up and down , and down , down , down , down , White said . +But I had company . +So it is all new . +We want to play . + I had no money , he said . + Best place I know , he said . +And there -- what do I see ? + So do you , I say . +Right now we do nt have that at all . + You want that . +And that 's what a director does . + I never do , she said . + It should nt . + Is it all over ? + He says he does nt think so . +He made it into that , in a way . + I still think it was good . +Only one man does nt . + Some of us have been where they are . +Is he a man ? +After a good game . +No , it will not . +In the end , not very many people did . + She just said , Do you want to play ? +But I do nt know where it is . + There is no other place to go . +That 's what he is about . + Is that all ? + But I just do nt play like that . +But we know , do nt we ? +But second place is nt the end of the world . +But I just do nt know . +She was down and out . +And they say they are not through . +We are to be first . +I just do nt think that 's right . +But since then , he has nt . +And how did you do ? + There is no way he can go back there now . +That is to say , it is nt . +Same old , same old ? +He may well have to . +There 's a way around this . + I just want to know how to get the time . +It could have been me . +They made their money . + That 's no good , I said . + Because we come to play every day . +A day was made . +And I want to do it . + But he 's the only one to say it like it is . +It was , and one of them did . +Go out on the street ? +One year in a world without you . +He has been for a long time . +He did nt show . +It 's one way . +That 's not what we are in business for . + It 's going to take a little more time . +This might be my last year . +That 's how it has to be . + You can have one or the other . +That day , I was part of that company . + It 's all made up , I think . + You do know there was a World War I ? +And we are nt . +You are with him . +So he just called him up ? +We just want it out there . +That is one of them . +I long for the old street . +Well , did he ? +It 's all new , you know ? +This is where I have to be . +Does it make you right ? +They know where they are going . +If only it were . +You can do this . +What are you there for ? + It 's over , they said . +You do nt have to be there . +I do nt have any . +The season has come down to one game . +What can they and what can they not do ? +I still think of her all the time . + We have to get them now . +They think about it most of the year . +But that day may never come . +I do nt think he said it . + But he was not being called . +They are going to take it right at us . +Well , some people like it that way . +It was going to be over in a few days . +Right now , the game is just up and down . +Now he is going home . +It 's not just music . +What I should do ? +This is about him or us . + The people who are out of work are all for it , he said . +But you never know . +There just is no other way to go . + He does nt have it in him . +But this is what I want to do for the next big part of my life . +Now the time is here to go to work . +But what do you do about it ? +And what will we do after ? +He made you work . + Is it too much ? + What if it does nt work ? +We just did nt play well . +But that was on his day off . +But he does have two more years to go . +But not all of them did . +Without one , you do nt have the other . + They did nt say which two . +Most people would have it no other way . +And now , so is their home . +That would make on a good day , but this was not a good day . +They do nt think I can still do it . + This has not been the case . + It was all on me , he said . + It 's found money . +The way it is now , that is not the case . + Is it going to be all right there ? +But it was nt today . +Some people have left . +Few are in it for the money . +And I do nt have it . +But this time it was up to her . +He has some way to go . +I did nt have a group of people in high school . +People , they good , they good . +He did well in law school . +We did nt know that there were people in there . + I could do the work . + I said , Good night . +We know we are good . +Money is still being made here . +Until last week , that is . +Most of them have . + What can I do for you ? + He 's been here for a while . + Those were the best years of my life , he said at last . + And so he set out to do just that . + Do one like the other . +People do nt go out . + They have to like him . +There 's more of them . + And he said , That 's what I do . +There has to be another way . +He may even do more than that . + I do nt know how long it should be , he said , but it should be less than it is now . + He is our president . + That if I do nt do it , another will . + How could it be ? + And there should be . + And I do nt think they like it very much . + One to the left , one to the right . + I think so , she said . +But he said they still have a way to go . +Here 's the way it has been . +That is , if you want me back . +That , I know . +And they may even get in . +And what about you ? +She made a home and a family . + I do nt know what I do . + I want to see them go out of business . + And she is right . +What would she do ? +If we do this every week , it could be a long season . + I used to have a place , he says . + That 's how I get business . +It has that man . +Even you can make it . +That 's the way you have to play the game . +Right now , it does nt . + It has been all year . + Here we go , here we go , here we go . + But there used to be a school here . + I just do nt know that . +It 's part of what we do . +I just had to go . +Should it have been ? + Was it just yesterday ? +It 's time to go to work . +And what about New Year 's Day ? +We are in a police state ; this can not be a state of law . +But we have to still be here for the next day . +But the good life did nt last . +I can get up on that . +I say , What ? +Even if he does nt think it 's the first . + He was nt on his A game . +Just like this one . + I like to think about what can go right . + But that was the end of it . + And they have since they were little . + Now there 's just one left . +But there are few left . +Not so , said school officials . +We think he can do it . +That 's what I do well . +She could be , too . +And in my world , this has nt been a good year . +We are all going with it because there is no other home for these children . + And we have them . + No you are not , he said . + I DO NT like children very much . + They are not going to get any more . +That 's just what it was . +That was a big play for us . +Where did we go ? +What will the program do with it ? + That was my life . +Who did that and how ? +But I do not know the man . +That 's big government . +It 's time for it to go . +We all know that and can see that . +And at times we have been . + I was like , Man , I do nt know what we are going to do now . + It 's going to take a while . +This much and no more . + I just want to come home . +It 's a good use of money . +HOW little does it take ? +But that 's show business , right ? + How did you know her ? +It does nt have to be so . +Was it just us ? +And so it is with New York . + And that 's what this is about . + You have to go case by case . +With more of the same . +Where did I even come from ? + We can take it national in a year , he said . +Would this be the night ? +Not his own ; his own he did nt make any use of . +She 's up and around . +There 's no other way to do it . +The man then left , he said . +You have to get them all in the right place . +If not , what should I do ? + Now what is it ? + We do not know what to do . +And no one was . + How could she even think that ? +But that is over now . +The President and I . +And it has been both . +The city did not . +New York 's could . +I want more than that . + So , what did he do ? + We will get them , one by one , he said . + This is not play , he said . +Do you know where that is ? + This is about the will of the people , he said . +I had him all my life . +One day , a million years from now . + People know when it 's good or not good . +We should all be against them . +What can they do ? + What we have now is what we are going to have . +Was this a new world for you ? + I think I can do it , he said . +It may be a little more . +Not that you can do much about it , but you can see it . + But it should be the other way around . +It has now been here three years . +That is not how they think about it . +To think that there might be people in the world like him . +But they do not , she said . + Not very , he said . + We do nt like it at all , but it 's part of the game . + I do nt know New York , she said . + Today is a good day . +But -- it was a home . + That 's all I can say about this . + How could I work for another team ? +Also in the house ? + They just want to work . +He had nt made them up . +But there is much , much more . +He is nt just like this at show time . +And what our own part in it may be . +What is the law ? + They only come two , three or four times a year . +She is a year old . +SO WHICH IS IT ? +After three -- or is it four ? +They would have it no other way . +I do nt know you . + Well , he can . + Is nt it ? +I know they are all going to play well . + It 's another world . +Not big at all . +She was there two days . + I just come out and play , he said . +And that 's what we are all going to do . + Come on , come through , New York , New York . +But he was nt . +They should , too . + It 's like you are still in school . +You do nt know what you are going to get . + It 's out there , she said . + We just had to part . + You know what I want to see ? +It was on the part of the government . +Is he up for it ? + They are in it all the time . +How would she know ? +But I think you have to do more than that . +It would have to do . +Today the money is very little . + No , you do nt . + And they did nt like what I did . +Does she like New York ? +They may be the last to know . +I do not know how many there were . +Which people are they ? + So what did he say ? + Go back five years . +That 's the way to go . +It is the New School . +So what is the President to do ? + There is a war . +But that could end . + We will be in court , he said . + Some people are who they are . +Not much was in this game . + Some people only know one way to go , he said . +They have not been found . +This is not a city or business that does that . + There are very few out here that have . +The women were just too American . + They did nt see John that way . +They did not want to go back . +What do we get out of that ? + I did not have the night of my life , she said . +I take it as that . + They are no good . +Then she says no . +They said that this is what they are there for . +As they did , as they do . +He 's our center . + I did the work . + I just did nt get it . + We know what we are about . +You could see them going up . +Now there is just one . +And they do nt have that now . +I did go back . +It 's like , where do you go from here ? + That 's more like it . +It 's not the same , he said . +And he is back . + What do you think about it ? + He still has nt . +In New York , that 's life . + I like to get out in the world . +You do nt want to just go out there and get your work in . +How could you want her when you have me ? +We can take this over . +They have never found her family . +But it can not . +We want him to come back . +A few would nt . + It just is . +They never had children . + But for me , there is just no other way . + In New York , he was the man . +Where would he be without it ? +I could get used to this game . + This is not because of the war , he says . + And now even more so . + That 's about all we want to do , he said . +What you see is what you get . +How does she like it ? +The police say no . + I have it down now , she said . +As long as it does nt go where you think it 's going to go . +That would still work . +It was time for work . +But he would not . +It was our best game . +It is the country . +I used it all up . +And how big is it ? +And it 's been going on for years . +How do you best put it to use ? + It 's just that people do nt do it . + He did nt say where . +Now , it 's him and us . + But I know that it will be best for all of us . +Now I have another one . + Do I want to know ? + I would not know , he said . + But it 's not my place to say when I play or do nt play . + This is our only business . + We have so much government . + That 's the way he was , you know . +Do you want me to put it down ? + And it may be . + They want to work . + But Do They Want It ? +For one night , they did . +But it is not so . + Some , he says . + It 's only a big game if . +They come to us that way . +And what do we do from here ? +As for us , we are still here , are nt we ? +They do nt know where they are going . + Was it you or was nt it ? +But the good times did nt last . + You can have it , he said . +And work they have , for years . + And just how does your play end ? + He did nt know how to do it . +What should one be ? +There are so many more people . +And all are good . +That 's a long way . +Which will she use ? +And that has nt been the case for two years . +He was until now . +They are not made to do it . + It was all set up . +But next time is the last time . +When was the last time they could say that ? + I did nt know what it was , he said . + You are right . +You do nt have that in New York . + Now I have to go . +They have , but only a little . +We are used to war . +We want to make a big one . +When might that be ? +They can not do it . +The A 's might not want to do so . +It could take a year ; it could take five years . +And we have to make money . +Less than two years . + We did nt think so . + Into the Night Life . + What should I do about that ? +People can see I have a good time . + Where have they been ? + It 's only been two days , he said . +Did nt get one . + There is no school . +I do nt want it that way . +That is this company . +But for them it had nt . +What did the President do ? +That 's been its home for many , many years . +I think he should . +I just want a life for them . + But we have to do this , he said . + I just do nt think he can . +He does all of that and more . +Being in first place does that . +Here are a few . + Who 's going to want to go into this work now ? +That was my first show . +I know what they like . +Not then , not now . + We could nt . +She put him under . + That 's what he says . +And if he does nt , you know what ? +They do , but not all that much . +This was his last first day in New York . +That 's the only season that 's been like that . + I do nt know about after that . + I want to see how well they can make it work , she said . + It 's been there for so long . + They play music every day . + What was it all about ? +But not for the same game . + I do nt know what we should do . +But there was nt one . + And not only me , she said . + What could that be ? + I want to go , too . +It was how it is . +Their season will be over . +So that was that . + What do I have here ? + I just could nt do it . +Not so this season . +But you would nt do it . + They said , What is this ? +We know when we play well and we know when we do nt . +This is the last one - way in the back . + Five , he said . + They are like my second family , he said . +But that was one long year ago . + They like us now , he said . +Last week was a very long week here . +But they are here , officials said . +The other three did . +But it was nt the end . +It 's not good for her . +That 's the way it used to be . +I do not know where I will be . +It did not come from your office . + They were right , he said . +What 's going on at The Times ? +They left here today the same way . +But there was more to come . +We can see that at home . + Want to see it ? +I did nt think it was as good as it could be . +When it was time to go home , he said , he did nt want to . + It says we found with him . + This is not about people , she said . +We will be there with you . + And I just did nt want to know . + Do nt say that to me . +So it 's been up and down . +But he was the best , no ? +That is the end of it . + I do nt know if they can go all the way . + But they do work . +I want them to see me . + What can we do about it ? + You do nt know if you are going to do it , but if there 's any group that can do it , I want to go at it with this one . +That 's not for me to say . + And then there would be no war . +I just know them . + That should nt be the case . +A very good man . + People do nt want to go to the government first . +How do I say it ? +I just do nt know if I can . +How high can he go ? +Those children had little going for them . + This is it , she says . +Or say they do nt . +And you know what she said to me . +And In My Country did nt do that much business . +You get over it . +This was one in my life . + How Do You Like Our Country ? +She does not come back . + That 's how it is . +We can make it , people , we can make it . +We have a home now . +It was nt just the money . +He 's that good . + And the other is I do nt think you can do this on your own . + You get over it , he said . +Can we work with them on this ? +And when did he know it ? + And it never will have . + It will take us three to five years to get out . +It 's only one of them . +So , much of what they do will be what you next own . +I do nt like any of them . +This was it for us . + But that 's what people like about it . +It is one we have a right to know . + What do you say to them ? + What do you do with it ? + Just like you and me . + So this is more of the same . + That is very good . + I think that all the time . +That 's what the game 's all about . +But this will be the last year they do so . +But does she say it ? +And this she does . +A -- I do nt know . + Now that we are here , it said , how do we get there ? + Is this your first year ? +So now we know how they are going to play it . + Then I said : What , it 's that big ? + Is this who I think it is ? + I did not get through that . + Not now , he said . + Now it is her . +And what will work out ? +Now it has been . +No , he 's the one . + But you have to go through it . +He may not get it . +Some have left the country . + I want to know . +And so on , and so on , and so on . +By law in all three states many of those days have to be made up . + And I said : For what ? +I do nt know if he does , but he should nt . +One of the best . + I do nt want a world like that . + You and me both . +Well , that 's no good . + This is your home now , she says . +He was not home at the time . + But that 's not how it is . +Life has been good to him . + If I can make it , they can , too . +I do as well , but he does more of it . + I did nt want to come here . +Right here in the street . + It 's for the good of our country , and for us , too . + I have to go . +It 's just More and the court , that 's it . +I say : I do nt know . + No , another said . + Now we have to play this same way . +As well as life . +Today there has been no one . +To me , that 's the best way to do it . + No one was there . +It is their first . + But I do nt think they are going to do that . +But this time , they had . +And she did not want to know . +But there 's still much work to do . + Today was business . +That 's their right . + All I can do is what I can do . + That and money , money , money . + We will make it . +If there 's any . +But it may be the other way around . +But I never think about that . +But this will never do , you say . +Do nt I know . +It was a part of me . +And it should never be used . +No , I can not . +Some say it is not . + This is made up . + If I have it , I want to see it . +I want to see them with a new school . + Where could that have come from ? +How would I do it ? +But what of next season ? +What do I have to do for you ? +This is home for him . + Never , she says . + It 's not what you think -- it 's not just because of the school , she said . + That was very good , he says . + A : I do nt think so . + But that is nt right . +But there is only so much he can do . + There 's just no more to do here . +Now it may take us a while to get there . +How did you think this up ? + Is that what it 's called ? + I think I made up for it , though . + I did nt like where it was going . +We will make it . + He 's been here what , five days ? + A year ago , many of the people who are in the center now did nt know one another , he said . + I just want to get out . + No one is like me . +He who can does . +To them it 's about money . +Did he not know ? +What will we do then ? + That was no time to come out . + My life is here , she said . + So , I think this is good . + We know where they are going . + They come with you . +And now we have both . +Can we get back to work ? + He 's right ; they should be . +It is an old one . + This will be it . + I think of it as a way to get to New York . +So we are going to do it as a team . +Both are so much a part of New York . +They have to like you . +I did nt think they could do that . +What did he do last year ? +She did not know where he was when he called . +After going through so much , I did nt want to be second best . + That was that team , last year . + And that was that . +So that she could have them . +So I just left . +That 's what you are . + I want to go back , he said . +We are going to say no . + Right here , the director said . +But it is just not a part of what I do . +So much had been said in those days . + And so what if they do ? + We do think it is going to go up . + They are not there now . + How long do you think they last ? +There 's so much to it . + Now there 's only one . + What I did was on my own , he said . + That 's his way . +He was nt like that . +But I do nt do it . +And it should be . + He was right , but it 's me . + That 's every day . +The other is not . + I have it , he said . +Do nt make them public ? +And many of them will . + You know that , he 's good . +But I do nt think that 's what they want to do . +It 's not their business . +They go all out . + I think he 's going to make it , he said . +I think it 's good government . +Get her out of here . +We did the best we could with the time we had . +Most people do nt get here . +How could it be any other way ? +I do nt think that 's going to be the case with us . + I said , I have to . + They think they can play with us . +Now she is one of the last . +It 's not like the city at all . +How does this play out for companies ? + Now we are like every other team in the country . +That was many years ago . +He does nt come to your home . +A little of each ? + People were like , That 's life . +But in a way there is . + But there was nt any time . +Not so the left . + But it 's not that way . +Then you are on your way . + I did business with them . + You have to make the best of where you are at , she said . + Now that he is here , it 's about him . +What about going public ? + If they do nt want to do that , I do nt want to be here . + She was with me most of my life . + Think of the children you know , he said today . + Who was it that set them up ? + Did they set it up ? +The high school is all we have . + Only so many times you can say that . + And I said , You do nt even know me . +If they still want me . +It can work the other way , too . +There 's still time . +What can I say about what I did ? +How long before we see one for people ? +This is how you set a man up . +What if he did nt have them ? +Well , here it is . + I do nt have to like it , you know . + How could they do that ? + Do you have to have all four ? + But they do nt want it , he said . + I do nt think about it , she said . + Not for me . +Which is to say not much at all . + What , I do nt know . +We are at home at home . + That 's the good part . +A little of both ? + I work on my game all the time . + He 's one of the best out there . +They could nt do it . + You would nt know , but he would . +It does not come to them . + So what is one to do ? +What they do there is up to them . + This is my family . +Does He or Does nt He ? + It 's for a life time . + He said this was the right way to go . + It was time to do it . +We see you all right . +What to make of it all ? +Now it may take less time . +But I do nt say much to him . +He had been at the company for five years . +How did he see me ? +I did nt want them to think that . +Go on out today . + If he 's not at home , he 's at work . +I would nt go in . + It will take another season . +And it is the same today . +That is what he is about . +The year before , A . + I do nt want to , it says . + Now there 's three here , five there . + And that is what he says . +Did nt used to be . +And it 's out . + How about next year ? +Where did he get it ? +Show him what you can do with it . +But , today , it does not . +People should get out and about . +Who 's up and who 's down ? + They just put up with it . +She is not the only one . + That was good to see , too , he said . + He 's been too good for too long . + We all would have . + This is not about you , it 's about me . +But how much , and how to do it ? + It was four against two . + I do nt even want to know what it is , he said . + I do nt think they are a very good team . +This was a Federal case . +No , it could nt be . + I do nt think I would be out there if that would nt be the case . +Now most come on their own . +They want what is new . + People did nt get it . + It 's where we want to be . +If not , so what . +The national team will play , but the people will not be there . + You have to be a man about it . + Only when no one was around , he said . +He just may get it . +And do they did . + I like people , she says . + This is nt about that . +They are like people . +I can play , too . +But you do what you can . + But we are going to make it through . +We say do more for the children . +They are going to go to the next one and the next one and the next one . +He 's right back in it . +It did nt just come up today . + Man , come on . +Old Man : He will come , he will come . +Or I get it . +They are no more so now . + You are not who you were before at all . +But how to get her off ? + They are , I do nt know , not American . +And what do children want ? +Do you think we could get her ? +It was about him . + We know where they are going to be . + That 's just it . +They make money on us . + I did not want those used , she said . +And that time has come . +But that was not so yesterday . +But this is a long season . +The President does nt want one . + What do you want of me ? +And we said we did nt know . + But , it 's still there , he said . + Me , too . +They want to know how could you not make that ? +Is that a good place to be ? +I might not have made it to this place . + That 's a long way from here , one said . +I would nt say no . +See you another time . + The team you have is the team you are going to war with , he said . +And all these may still come about . +We know he is here with us this week . +Now I want to be there for them . +In this case , it 's all about being there . + But it 's been an off day . + They did nt do it . +I could never do that . +You might be next . +There were three at the first show . +What if they all say , No , we just do nt want to do it ? + There are children out of school . +We still have one game to get . +It did , and he did . + He 's just the first one that we know about , but there 's going to be more . +He would do this , he would do that . +Until the other day . + Most of them will get out . +They could just play their game . +And what have we now ? +But to me , it 's just a show . + What work did you do ? +If he can play , he 's going to . + You know what we did most of the time ? + You have to do what you have to do to get by . +Today there is not . + I used to get on him for that , she said . +The White House says they will . +As has the world around them . +But he will also work . +And would you want to ? + But this is a new day , this is a new season . + I do not want to do it . +The people are the same . +How could we not ? +It 's their first time . +You do nt know it ? + How do I get out of here ? +Is it well made ? +Even so , he called . +You have to see that . + We never do that . + Which one does nt ? +So who 's next ? + My music was very new to him . + But that was nt all . + Who 's in Left ? +But we are not as good a team as we were last year . +Most of them are in New York City . + I want to have my own house . + You never know what you do nt see . +But this is just one day . + And they still said no . +But what to do with them ? + And I think that 's all I should say about it now . +But what do you do with it ? +And when it was over . +This was a good game . +There is no night , and there is no day . + Too American for Its Own Good ? + They are like me , he said . + What 's not to like about it ? + It 's how you use it . +I have to back it up one day , two days . +There 's not so much I can do . +I never know what they are going to do next . +Are They or Are nt They ? + I think he 's one of the best around . + What are they going to do to us ? +Do you have more ? + We were nt a very good team , he said . + So , what are you going to do ? + There 's only one way to go in this . + He was nt like that . + It 's a long season . +We all want show business . +You do nt know who he is . +Just like the old days . +But he is not there much . + I know they do nt . +So old and white as this . + It 's like people , he said . + All we can do is do the work , and do it well . +I do nt want money from the Government . +It 's not that he does nt want to do this . + This is the year . +I did nt like who I was . + Do you want me to make out with her ? +If you want a center like that , that 's me . + We just want her back . +I might not have her long . + That 's what they think . + The school is too big , he said . + He said , Here . +That 's not what you get . +It 's way off . +They are white too . +Even if it does , so what ? + All business , he said . + But I also think it is not good for these companies . +But there was much more . + It 's their place and they have you . +But few people know this . +In a way , she has . +He has been called up . +That 's the game we play . + This should be the center , she said . +But what of our own ? +And do they work ? +Some have found other work . + I do nt think it is . +It 's a game but it 's also a business . + Would nt you like to do this ? +Then you get out . +She would get her children off to school and go to his house . +More than all right . + It was right there for us . + What is that ? + Never will it end . +It was on the up and up . +But they are not going to get what they think they are going to get . +Who 's to say where it will end ? +That 's what I want him to do . +Who would know that ? +He was just there . + This was just part of another day , she said . + And so are we . + We set out to show that you could . + So that 's all right , then . +But that is not all there is to it . +I do nt know what it says other than I think we have a good team . + But I do nt think it 's going to last . +Think of music , though . +No , he will not . + It used to be center court , after all . +It 's not the old government . + But such was life back then . + It 's not the only Big One . + I want to see them go on . + I do , he says . + We have to be good . + It 's because they can be . + She said , What do you do next ? + But I know it 's part of the game . +So I put in white . +It had no business being there . + Well , it 's all right . +How New York is that ? + Right now , it 's the other way around . + I never get into that . +She did nt think it would work . + Right , she says . + They can get it . +This part is you . +What does she not like about her work ? +Now I want to come and see you . + He does nt say too much . +What did he do in there all day ? +But he 's here , I know that . +How many people are there in your family ? +There might be more to come . +I do nt even have to see them do it . + That 's what he does . +You do nt have to make them up . +What would she want to see ? +They did not know what to make of it . + I just want to see him in a game . +And who will do it if they do not ? +We should have had more . +He had been there before . + Do nt you think it 's about time ? +I take him home . +Is It Up to Women ? + Where are we going to get the money from ? +Who are they now ? + How does that work for you ? + This is not life , he said . +It 's just the way they are made . + But I do nt say it is nt . +They are like music . +An out 's an out . + That 's not the way to play this game at all . + What does she have to do ? +Still at the end of the day you are in every home . + I did nt know what was going on , he said . + They said , What are you going to do with your life ? + Put it this way , she said . +But even then where would the money have come from ? + It 's a she . +At home , that 's the case . +You are not that good . +HERE she was on her own . + I do nt know what 's going on in there . +But it was nt any more than that . +It 's as it should be . + We are all like one big family . +And he said he would not have it any other way . +I still want to play . +It 's not the end . + You know what I did today ? +They may never get back to where they were . +It 's up there . +And he did nt have much time . + I think it 's the other way around , do nt you ? + I never have to say , Do it this way , do it that way . + It 's like that for the other team . +One could go on and on . + You can see it . + We can now have our day in court , he said . +But he is a man now . + We are just not going to do that . + He did nt even have any money . + He was one of those . +Not that he had to work at it . +And we were today . + That 's what it 's about ? +I can see it . +He says : Come off it . + But that 's not what we do here . +But it 's the best we are going to get . + But we have to do it . +He said : Was I not right ? + She did nt have any money . + Who is they ? +It 's going to be a while . +It 's a new year . +But it is more than just that . +But it did nt end . + That 's one of them . +You will know that . +I do know that . + But you do nt know that going into the year . + Get over it , he said . +What does he know that I do nt ? +You are too old . +Is it the same man ? +When will you do this ? +People who know the business say no . + But you do what you have to do . +We could not and would not . + It 's not that he did it , it 's how he did it . +Did you want to see it through ? +I could do that . + Would you like to go out with me after the game ? +He did it any way he could . +He can make money . +They set out to know the world . +So I said , I might as well make my own up . + For me , too . + It is who we are . + This is what New York is all about . + I said : Do nt take me out . +What are they going to go to war for ? + There 's more than this to come . +Way in the back . +But after all , how many times can you do that ? + It 's all me . +Not so , says the department . + If you do nt you might have to work all your life . +That 's what life is . +It 's the same in life . +And this one will be , too . +I do nt want to do that to him . +As if I do nt know . + So what does he want them for ? + Think of your children . + You never know where it 's going , she said . + And they want to work . +He said : I just do nt know . +So I was going to do this next show about . +I do nt see how . + They have the political will to go after them . + It is west of the West . +Many of us do it for the money . +What is he going to play ? +They did nt even use him yesterday . + And the game is on . + If there is nt more than two , if there 's two or less , then those two should play . +I would not even be out . + I could nt see it , White said . +So what will this be ? +How right you are . +Is it because we can make more money ? + There was just no way to go . +Is that where we are now ? +Like , No , he does nt want to do that . +He did his part . +You know who that is . +He had to know . +At the time , I did nt get it , but now I do . +But it was nt just that . +And how old is the country ? + I just do nt want to even get into it . +What about your family ? + Now we are back , she said . + He said he did nt want to play here . +It was big business . + I do nt have to do this . +That 's what we are going to have to do . +And the work to come . +She 's with me . + They never used to . + He did nt have the time . +So it 's both . +At last it was over . + I had no part in it . +Home was never like this . +And the money 's good , too . +It 's so good . +We are just going , going , going . + But he did nt show . +That 's all we are . +Today there are three million . +This is not the end of the school year . +Some , I think . + They might even get to like them . + We are very much a business for today , he said . +And he would like to see more of his family . + If it was nt for them , I would nt be here , he said . + Now I just want him to come back . + Who 's up ? + My life has nt been the same . + Now we are . + Next time we come here , it will be out of the way . + I said : What do you want me to do ? +How might it end ? + It 's like my office . +That day has come . +But it 's not all . + It was up and down . +I had four years to think about it . + I did nt know he could do that . +I do nt want it out there . +We do nt know where this is going . +They did nt want any part of it . + She 's not all over you . + Who 's that going to be ? +That 's not my life . + That has not been the case . +I was on a national team . +And down , and down , and down . +One of them did nt . +I want to be up and about . +Some people can not even do one . +It 's how you do business . +He may never have . + What would I do without you ? +He had been president of that company . + Can you say it ? +That 's where I was last year , too . + I do nt know where I would have been , she said . +Most of them were of children . +This is it for you . +There is now , but there was nt then . +They did nt do that today . +You put it last time . +For many of them , the season is long over . +And there 's more we could do . + And I said , This is the first time . + And see it as well . +I do nt think I could be . +I have to go through it all with him . +Until the end , there was never much money . +I like the way you play . +What you see now is not what you will see in a year or two . + There is very little now . +They are not in it for money . + This is my life 's work . +They do not want a war . + We want people to come to New York . + You are my man . + Which she did . +Some people come every day . +And where there is not , they should not . +But he is going to have a very big year and be a big part of our season . +I was where I should be . +We want to do this right . + I know I will . + It 's all good now . +He said he had no family but that these people are like my family . +What was did was did . +It 's just not life as we know it . +Women 's music does not . +They should do that . + And so were only children . +She did it all , and then some . + It was the first year . +So I know she can . +Can he be right ? +He said , These people were . +They can go to work the same day . +And it may not last . + Do you have many ? +Where would he go ? +It did not have to be this year . + Like it used to be . +That was nt it . +But as of right now , I know what I want . +We are going back next year . +You did the best you can do . +I did nt like that . + That 's one . +And I do nt think I do . + Do nt know . + He 's still there . +You are not going to say which one ? + Is the White House white ? +I was the one who said no . +I think he can do the same for the state . +This is between me and me . +I will work any place in the world . +If I had to play today , I could nt . + Today was a good day for us . + That 's all any of us can do . +But they only show the way . +What companies are they ? +The house is for the family -- they have two children -- but not for work . +The game is about to end . +All I can do is come and get my work in . +Just think when you are out there . +I do nt think we know each other . +It 's his world . +Not even one day . +That 's where we are . + I know what you are going through . + Some people play like that . +And they did , about a year ago . +Come back next year , and see where we are at . + Some people have no life , he said . +The police were not called . + You do nt see the city that way . + But they did it today . +Or does it go the other way ? + That 's big for us . +Who are his people ? + It 's their city , too , he said . + How long do you think it would take you ? +That 's what people do nt know . +But they did nt know that . +It was there in the first place . +Is that what we want ? + Is the money still out there ? +I think we know what we have to do . + We are going the right way , he says . +You come here to work . + But there are not . +HOW LONG HAS THIS BEEN GOING ON ? +They may not even be the best . + We did nt want to . +You just have to know where to go . + Even then , he says , he was a little old for the part . +I want to be part of it . + What do nt you like ? + I said , you want to go back , do nt you ? +It 's not a show . +Do nt I have that right , too ? + Those were the days . + Where does he play ? + They are just there . + Who are these women ? + We were new ; we did nt know . +But much less money . +I do nt know her . +It did well for a few years . +So that 's where he 's going . + He was the first one I called , she said . + That 's how big I think it is . +You never know what she 's going to do . +With it you are in ; without it you are not . + He does that to get to the team . +Much of that made its way into the United States . + And then it is all around you . + But we did nt think they would come for us . + I do nt see that here . + I did nt know if it was going out or not . + Is nt there any other way ? +And I do nt think it would be as good . +He should get the most . + Well , there it was . + We have too many now . +Make it four times . +And I said to them at the end , I do nt want them to think it 's us against them . +That 's all I have to say right now . + That is not music . + You know how we are . + It 's not going to work out every time . +We had just been out of school for two years . + We think he 's up for this , he said . +Right , but for how long ? + That 's not you . + And he said , As many as I can get . +It 's do what I say , not what I do . +There were those who could not do it . +That 's when we are at our best . + It 's like being home . +That 's a part of life . +And do you know what he said ? + I put it back on , he said . +And that was good . + Most of our people could nt make it in , he said . + So where did the money come from ? + Then , as now , we did nt want more . +Today will be such a day . + They all know his old man . +He never has a down night . +But it is not over . + This is a big game . +Some people say they still have a long way to go . + Who do these people think they are ? +This is , after all , their home . +But not with me . +How will we get there from here ? + There 's only one way in and out . + Me , I found my home . + It 's not the end of the world , he said . +There was only me and the music . + But we still have more to do . +That was a long , long time ago . +They have no team . +But I know it 's good . +Can she be put out ? +But there was no American company . +Here there is much the government could do . + And I said : I did not . +I do nt want a big part . + You have one of these ? +He 's still very much a part of her life . +They know me , I know them . + My life is here . +I have a right to not put him in the game . +It is still used . +We have a right to know . +You want the world to know you are out of here . + Still , it is all about his children now . +That 's the way to do business . +Now , he has to make the team . +In the old days , he would have been right . + He 's new at this . +That 's how they want it . +First and second and one out . + You have to go back , she says . +There will be next year , though . +If we do not see them , where are they ? + I do nt know of another one like it . +I never found it this way before . +We know how good we are and how good we can be . +That was a long time ago . +She does all of that on her own . +But it 's going . +What in the world was he up to during those many years ? +Most of the world was with us . +But we are not . +Where have you been all your life ? +I think she can do that around here . +But it is a business . + Well , it is nt . + Because it 's a place I go to . +It is old , it is new . +But she is not the first to use it . +The game 's not over . + Should we do this or that ? + But they might be . +I also know what it is not . +It was his to have . + They were on the same team , were nt they ? +I was out of work . +I say , So what ? +But I think you can do it . +If so , can I do the same ? + It 's like , that 's what 's up . +I did nt get that . +I did nt want to play . +His Life and Work . +Any way they want to . + It is not . +It should nt take that long . +Very , very right . + How big is your family ? +How could it have been ? + This is not the end , she said . +Here 's how we do it . +I did nt want that many people in my house . + I want people to see me , she said . +It was nt like this last year . + He 's been there for us all season long . +You do nt do that in New York . + I think they know that . +We are going to get them . + He did nt want them on the street . +And I think that 's all I should say about it right now . +It 's just case by case . + But what can I do ? +Some have it , and some do not . +The New York office is the company 's first in the United States . + That 's what 's called for here . +When does it go out ? +That 's what I want to know , too . + I think we are . + Out there , you have to work at being with people , she said . + This is one of the last of these to be around . + I never did that . +Can you come do this ? + There is no , This is how you do it because this is how I did it and that 's the only way . + And he left . + And I say that , one day , the time will come and you will be like them . + I did nt know it was that long , he said . + We do nt have all day . + That is our national right . + That 's what he should do . +Then New York made another big play . +And they could nt . +We were nt as good as we should have been . + It did nt work in this case . + Now I have one . + There is no money . + And I had said that I did not want to be there . +A : I do nt like it . +We will not have it . +Get to know him . + We would know by now , he said . + That just does nt work . +People do nt know if we are going to be here or not . +We will not do that . +We want to get to know each other . + That 's not the case here . +I do nt want to go back that way . + Now they are out on the street . +What did they do then ? + He is going to make it . + I did nt think he was going to make it . +They do get to come to my house . + Right here , John . +We had a life . +That 's how we are . +The President should do what 's right for the country . + He left for New York . +What was and what could be . +It 's where you end up when the season is over . + It 's not about what we want . + If I did it right . +I think it 's more than that . +That 's the way they are . +And then they did nt . +I have no place to go . +But if they had it , how could I not have it , too ? + But it 's for your children that you have to do this . +They would like to come . +I should know it 's not . + We see that . + When they say it 's not about money , it 's about money . + But there 's a market for it . + See , right here . +That 's the way we would do it . +It 's not for me . + They do very well here . +I do nt know any people . +That 's not our way . + Here , I have found my life . + What Are We to Do ? +But we did nt know the last time . + They are all like my children , he said . + Is That All There Is ? +I think that is what all work is about . +Next season , if not this one . +The family made it . +I did nt even know that 's what he said . +Other times , he did not . +If I could nt play that way , I would nt come back . + You have nt , she said . + And in a way he had . +So what does that make us ? +But only for a while . +And we want it to be through . +And there will be less to work with . +I did not want to come home . + He was out , out , out . +She did not say . +It is part of my life . + How many people get to say that ? +Even that was more than I had , he said . +Well , that 's what we are today . +It 's been a long week . +There is more , much more . + It 's not the first time , he said . + When was this ? +Who put those officials in office ? +If you do nt want it , you may not have to take it . + It should nt be . +I do what I have to do . +Well how do you ? + I think we are going to see more and more . +I found that out . + It was time to go home , he said . + But what does that have to do with you ? +Is this what our country has come to ? + Just say it like you did before . + Even more so for the city . + I could nt work for three days , he said . + There was no program , no money . +I said I did nt know . + But this is a family place . +They were a part of all of us . +He says he has never been here before . +That was our business . + What can you say ? . +There is nt any life . +That 's not the way I think , and that 's not what I said . + There is work to do , he said . + I only work and work and work , he says . + They had to play it in the same way we did . +Today it 's four out of five . +No one is going to show up . + Who 's for it ? + What more can he do ? +For me , there is next year . + That 's just not the way we do business here . +By then , he had no play . +They do nt want to go to school . +One of these days . +How did he get in ? +Did he want to get right there and do it ? +This did not have to be . +This is the right place at the right time . + Most people would have said no in my place , she said . +She 's very good at that . + We have been there , he said . +He 's come a long way since then . + But I had to have music in my life . +Without music , there was no life . + No , I do not . +But I have to go . +She is the president , not the director . +And we could nt do it . + Some people like that and some people do nt like that . + What do they know ? +We do nt know it . + I go for that first . +That 's what we used to do . +I said it then and I say it now . + It 's a long season , he said . + That 's the only way to get to them , she said . + I know it much more . +There is nt one center who does . +I know what I do nt know . +And they had money . +But this was all about where you were . +This is now our government . +SO WHAT IS IT ? +They know what I have . + I do nt know where my work will go , she said . +She does not know what she will do now . + Will he do that ? + You can make it up . +If so , one way ; If not , another . +But you have to work at it , and if you work at it you have to want it . +They could have just left . +It was as if they were his own . +He 's not even American . + That 's my game , too , he said . + There is not a right way to do any of this . + We could nt get to them . + But it 's not the only part . + You just go in . +How can you not like this world ? +This would just be one more . + I do nt want to go into it . +We do nt have to do it . + Do nt use that . + One does what one can . +They were good to me then . + I could if I want to , he said . +It 's a part of my game . +Where will they be at the end ? + All the time , he said . +People just do nt know . +And then one more . +Who would get in ? +Very few know just how good this music can be . +But still there is business . +You get to know them . + It was me . +He 's just so big . +If you do nt do that , there may not be a case against you . +It is the way of the world , and it has been said before . +He called her the next day . +Now he is there . + We want to go for it this year . + What does he know ? +That 's been around for many years . +If not , state officials will take over and do it . + It was a long way to go , and we did it . + It was in no one 's way . +These years should be my best . +This is all I know . +One is a very big one . +The United States does not have the political will today . +Not well at all . +This was a life . +Know when to back off . +Well , it does . +That 's where I want to be next year . +They can be right one time . +They are high , but they are good . + I do nt know him that well . +So what if there 's no money in it ? +They did not do so . +What 's not to like about that ? + They were nt here very long . + Today was the first day . +The law is there , so we use it . + He said , Come right over . +We just have to play that way . + That should nt be used as a way to get more money . + I do nt like you , she said . + We all here ? + How are you here ? +What do we get for all this money ? +And life has nt been the same since . +The company is not going out of business . +And that was just one day 's show . +I can see what 's going on . + That 's my game . +That was my country . + Well , now you do , she said . +You are in my house . +Who was I to say to her , Do it my way . +And Will they be there ? + It 's every day , every day . +She was nt even from York . + That 's the law of the United States . + Because they are nt going to last like that , he said . + I think it 's the same in life , she said . + Just did nt have it . +As well it might . +But it did not work so well this time . +They put it in just for me . + He 's what ? +We just want to show people we are the best . +Where are we right now ? +Just one more week . +She was an American . +But we should be a good team . + It 's not about the first day . + And the other way around , too . + No man should know so much . +And if she was , she would nt want to see you . +Never , she said . +And there was the money . +It was at night . +What are people going to do ? +She did not like the way she was used . +I know how to see and I know how to think . + Just have your money every week , she said . + But those days are over . + That 's how I work , he said . + If I could do it over , I would . +I do nt know how I know , I just do . + But this is my home . +Did he know them ? +So where do you get the money ? +One is my office . + I do nt say it 's not good . +Those who were there know . + I play country , he said , because I like country . +You just want to go play . +We have no place now . +Here are some of the many . +I called him off . + A few people are . +And it 's right here . +I put all my money into it . +But now they are in play every year . +Such a good show . + It 's not a good time for us . +And so is the team . + What of it ? +But that 's this year . + I do nt know where , he said . +But it may not . +My money is their money . + When we left office , the state only found one , he said . +That 's just not the way it is . +What should the United States do ? +I just want more . +We do nt have to . +Then she said , I have to go . + It was not me , she said . +Will it be for good ? + We are left out . + And I did nt want to go . + It was his show now . + Our team has been up and down . +I do nt think of you that way . + Not she -- you . + I had no place to go , he said . +From that day on , I have nt . +But not the American Government . +But he did much more than that . + I do nt know what will be next . + He is no good . +This is still the same war . + He might be my best . + We know what to do . +Is it a week ? +No one called him . +But they have no time , they said . + It was us against the world . +We are all family . + I think it did . +How good could he have been ? +They were there to put on the work . +Here are the four . +So has the federal government . + I have four children . +That is about all . +That 's what I did all my life . +They do not want this government . +How many people can do that ? +But they were back in two days . + That is their work . +Do what it says . + That 's not the case today . +How many more of them are you going to get ? + I can take that . + Until it 's over , it 's not over . +And they said , like , What are you in for ? +If she does , then who does nt ? + It was so with this man . +We long for an end to war . + WHERE ARE THEY NOW ? + But the season 's over , he said . + Even I could do that . + What does he know that we do nt know ? +Where will you go ? + I want to go out now . + Can they do it ? + How Much Will He Play ? + What was that ? +I think that 's good . + In this business , you have to have a team , he said . + That was night and day , was nt it ? +Here 's to a new school year . +Such as yesterday 's game . +So what do you do about it ? +YOU know who they are . +And they are all women . + It does nt work that way , though . +She does nt get it . +Through yesterday , they had not . +I would nt have it any other way . + I do nt know how to think that way . + And I do nt know when that will be . +A : No , we do nt . +And then he was still . +The public did not see it that way . +Is it for or against old people ? +I just want to do the best I can . + They all are . + They get it , he said . +And we are going to work today . +Most people here say that . + What 's this all about ? + Have nt I been this way too many times before ? + I just do nt see that . +And that 's what I go from . +Here I have two people . +It 's like that every year . +You have to work for what you can get . +Next year is another day . +Will it be you ? + If it does nt go well , it 's on us . +You can even get it today , if you like . + They have no place left to go . +But what about on women ? +They said : This is your life . + I just did nt see any way out . +But the game will do all right . +That 's all I can think of . +And for a while it is nt . +There was more money in it . +Where were we last year ? +That 's just the way life is . +At first , it did . +Today there are two . +She 's back now , though . +You will like that . +I do nt know what that does for him . + Did nt like them at all . + They could go in New York . +HOW LONG CAN IT ALL LAST ? +Not long after , he was president . +Only in the music . +That was not so long ago . +More was to come . +And if not , which one will make it ? +They are still a part of our family . +He said he was not the only one . + I do nt know if they want me there . +It also was nt to be . +Think you had one too many ? + But she could nt get out . +This is my life 's work . +But the market may be there . +But it could have been the other way around . +It 's called He 's Just Not That Into You . + It does nt do much for me . + And that was all there was to it . + I do nt own one , she said . +It 's just about the money . + We are like family . + But we did nt see that here , he said . +Still , it 's what I did . +If so , how much ? + And we get left with this . +They just want to play . + He was nt that way at all . +But , state officials said today , most companies did nt . +That is their right . + That 's right , is nt it ? +That 's the way of the world where I come from . +This is not one of the good days . + He said , Is that how we are ? +What does he like to do ? + This is a family home , he said . +And she had it all . +What They Might Have Said . +He 's just too big and too good . +That 's the place we all were by then . +And they did not . +The program is the same each day . + I did nt even know I was going to be here until today . +Now , what is it you want from me ? +This is good and also not so good . +But not these two . +It 's the first time for us . + What is it ? + It 's just that I do nt know who you are . + He was like all of us . + We do nt know what to do for them . +This is our first year here . + But the time did nt come until now to say it . +You are not going to get it from me . +Until the other night . + What 's that ? + He 's going to come back . +Time for more political music . +It is , after all , the American way . + And I said , Well , I did nt . +And what of those to come ? +This may do that . +I said , I can do that . + He should nt . + How could we not do it ? + We just do nt do that . +Here , take it . + People take him down . + We just take them from there . +How do you do this every day ? +What if they do ? +This is their life . + What could you say ? +Come back to New York . +If I get called on , I say , I do nt know . +Here is how they work . +There is little one can do . +Take what you want . +There were many of them . +And I was left with so much , my children , this company . +People are going to say , What 's going on ? +People like to work for me . +It 's a good place . +I said , What is under there ? +He has one left . +Where to From Here ? +How do they know ? + It 's not even about the money . + But that 's what we see . +It was not a good day . +I know I could nt play with that . +He did nt say what was . +Then , as now , they were just too much . +Will he get it ? + It is about us as a people , as a state . +The State Police do not use them . +We are part of your life , we are in your team . + What do you think of ? +He has never had one ) . +No , it is nt . +It just does nt work . + It 's good for now , he said . +I did not know how to do any of this . +Now it 's how old he is . + There is no other way , he said . + I said : We are not . +I have some time at the end of the day . +It does nt take much work . + It 's over with now . +They were all on the court at the end of the game . + That was a big game . +And what do you think of it , after all these years ? + I want to have your children . +And just as well , one might think . +It is good for you , too . +They should nt have been . +But there 's no place for them . +If he did nt do well , he would nt be here . +We are not going back . + We work people out all the time . +I just do nt have the money . +That 's what I say , too . +But is nt that the American way , too ? + It was as if I had nt even been there . +It is one to two years , not every two years . + What are they going to put into it ? + So be it . + You know , not much . + That 's the way it 's going to be for the next few years . + It 's the people that are here . + It was what I did , she said . +I would never think that . +You had to say that much for it . + And if you think they do nt , they do nt . +Should they be home ? + And I just was nt up for that . +Then he said : Just being there . +The play of the game ? + No one would even think about it . + We would like very much for it to come to the United States . +But so what if it is ? +It 's good to know that he is back . +We are going after it . +Be more like me . + You could say that , he said . +It was nt very good . + You are going to make money here , was another . +This is not it . +I still would like them to make money . +Your people still think of you . + They did nt get many that way . + Mr. York said . + We put the money back and that 's it , he said . + It 's my team . +But she does not . +People have money now . + But he does nt take it . +It 's not just me out there . + It 's the same with our show . +That 's not just here . + We were here first . +If one of us does nt get you , the other will . +Right , it is . +The law is not . +But how did they get into my home ? +Today , they are in last place . +We did all we could do . +Less than you might think . +We are a few days into the second year . +So take some time . + This is what I know . +It 's because of the people . + It is not a game . + So he can get me out , too . +I do nt think like that . +But the work could take years . + I do nt think any of us had . + We all want to go back . + No , not too much , he said . +We are and will be there for you , as you were here for us . +We did nt want to be there when it does . + We will take this city . +It should just be part of the Government . + So are you . +But even city officials could not put up with this . +Many are on the market . + You do nt want to do it , but you have to . +That 's where you are going to make your money . + These police are part of the government . +It just did nt work out . +The What 's Up ? + It was his game . + Can you come ? +He did , he did , he did . + It might be because of the way it 's been going . +More on that next year . + It was the same for him . +No more so than right now . +This is not what we are about . + They made me do that . + And we have - just as he has . + You see it all the time . +They say it all . + He is nt . +That is like one in a million . +She did not get in . +You get in there -- you do well , you do nt do well . +We are still up by one . +This , is home . + I see it for the use to which it will be put . + You have to get high . + It was just too much money . +Our money is life to them . + Before we had one President , he said . +This was going to be it . + See how good he is . +They know what I can do . +Your time has come . +It 's the only way I know how to do it . + Companies come and go , he said today . +It does nt last long . +Think about it for a second . +What 's in It for You ? +Those are for the way home , though . + This is the right house . +And that could take more time . +Five years would do . +They just do nt know it . + It is up to him . + Could be , could be . +He made up for it today . +You are good to go . + This is what we are . + How many of these do we do ? + And play they did . + It is what it is , he said . +All of our people . +That 's what you know . +Then they go to put on a show . + Too many , I said . +But now there are two . + I want to go back to school , he said . +I have to work . +It will take some time . +He was right , but it did not go over well . + And no one did . + I do nt think they would . +WITH : members of the company . +But I do nt know if the other team will do it . +That 's all I know . + I do nt know where people would get that from , he said . +They were at his back . + Do we go in or not ? +You get to be one . +He 's there , but he 's not there . +What would life be like then ? +He 's a good man . +But it is much more . + What did we just do ? +This might be the time . + They did nt know who he was . +I just do nt want to go out every night and play a game like that . +That 's how it should be . +That will make your day . +Does nt she know that ? +It is about the president of the United States . +It does not have to be that way . + How many people you used to do a week ? +We might as well play it his way , so we can go home . +I want another house . +That 's where we are going ? + Is it just another game ? +And how did the children like it ? +But they did not see them . + It 's all about what you want to use it for . + No one would even think of that , she said . +They have said no . +But she does nt use it . +Now it 's time for me to go . +I did nt know you were the police . +I have that , he said . +To me it 's the best there is . +He will only go for three or four days . +You want to do this play ? + And they did come . + That 's the man he was . +It will not say . +It made all of us want to . + He does nt have what they want . +Like I know my way around here . +It 's not about the work . + I do nt think it 's all that good , he said . +She did have to . +Know what you want to do . +And not only on him . +It 's our house . + Another day in the big city . + But this is nt the way to do it , he said . +What is your take on them ? +It 's all about family . +When the country is at war , no less . +They did it the right way . +First and second , one out . + I think it 's more the man . +But it 's not about that . +So , too , with children . + But are we going to ? + I do nt have the time for it . +So what is a man to do ? +We just have to come out every night and play our game . +Did you see them yesterday ? + You did nt ? + He said , Who is this ? + We are going to do our very best . +We found that out last year . +He did nt take it . +What I did nt like was that we did nt play as well as we can . + I can do both . + What 's in it ? +And here two days . +But he will be there this time . +And so that was - is what it would take . +When he 's on . +And I said , what can we do about it . +She did very well with that . + These people come in . +Well , that 's about it . +It 's one game . + This team 's going to go all the way . +Then , two or three . + I say , no . +He was so up . + States are the same all over the world . +One year it was nt there . +She 's with me all the time . + We do nt think so . + Not the way I want to go . +But other people do . + At the time , I was the only one . + He has never said no to me . +That 's the way the game is going now . +It 's never about money . + I did nt say will . +One way or another , they will be . +We are who we are . +In the end , he did not . + After a What 's going on ? + That 's what I want to say . + And this is now . +What can one do ? +Then he did , too . + That is what you own . +He had to last night . + And they may have to . +I think we can play with most of them . + What are they going to do with us ? + And they did nt say no . +Here , you can just be . +How can we do that ? +Where do they come up with their money ? + What will we do in that school ? + Not much to say . + We could nt do that . +Is nt that what country music is about , too ? +This is one to see . +Good , those children should be in school . +They come because they have to . +So does this house . + I said , You are on . + In a little while , he said . +It did not , she said . + That 's all right with me . +She would not go to school . + They did nt , he said . + I just would nt do the work . +And they were nt . + Has it been going on long ? + That 's what the court said . +In this case it will not be . +We are going back home . + We did nt have much time . +Come to think of it , he never did . +I do nt go for them . +They see each other all the time . + I said it five times , and he did nt like it . +The police have said that . + Where would we put all these people ? +This is a good team . + That 's what it is all about , she said . + I think that this is part of what this is about . + What do we say to them ? + You think this is a good business ? + I do nt want it to end , he said . + And he said , It 's not me who did all this . + We are not where we think we should be . + If it is nt good , we are out of business . +This is not your school ; this is my school . +Not this time and not this year . + Is she in school ? + The government will do what it has to do . + What to do about it ? +But that was about it . + We know what they are going to do . +And not just in the United States . + I was just in the right place , she said . +It was one , not four . + They did nt say no . + I might have made more money by going from year to year . +I did nt know what I might say to them . +We will do more with less . +Work with what you have . + They did nt like my game , he said . +There is no business here . + I think I can do my best . + At the most , it 's two years . +What is going on ? +And I do now . + I was like , Say what ? +They are still here , and they never left . +We have our own way . + Every one of them 's me . +If he 's on , he 's on , and if he 's off , he 's off . +But it was nt over . + I know it , he said . +There can never be another . +We are a family . + Do they do work ? +And then there are the children . + That you do nt do . +But they are out there . +That I made them up ? +But then , when was nt it ? +It 's a big one . +It was just after that , it was nt very good . + But it might not be this year on this team . +After that , it 's business . + That could be too much . +There will be even less for the people to do here . +And this has been going on for several years . +The city is the best city in the world . +Because it is nt . +Is this the best one ? + If I was going to do it , I was going to do it here . +It 's the market . +I do nt even have to say it . +You never want to go home . +This can only be good . +We want him to do it every day . + Which is what we did . + They were all good people . +Day after day after day . +But only at times . + I could get people out when I had to . + It 's not what we are about . +He said , Well , that 's the way I want it . +That is , he was about to . +But that is not his business . + He said , No , I know you . +But what they put me through , I could never work for them . +I take all of it . + It 's all set right now , he said . +By Children for Children . +And those who did had little to say . +This is one of the best . + Now , even when he 's not there , I have it on , she said . +How could I have said no ? + I do nt know what to do . + You are my first . + I did nt know how to play the game , he said . + It was the same . +Or say , That 's it . +How might this be ? +I said that it was and we had . +That did not go down with the public . +That 's what I get to do . + That is the way it will be . +There 's no way around it . +First , how much is too much ? +But I had nt . +But no way are we here without him . + Not only that , we had to play well . +He 's going through it . + This time , it was the other way around . + Every one is . +Just out of place . +How much should they make ? +The state said no . + He did nt have it when he left . +Some do , and I think he did . + Only there is no school . +Not so this year . +It is very good . +From night to night , you do nt know . + How does it work ? + But at night it 's all out . +So we made the company . +I take them out and I put them back . +Now do your part . +Right now , not much . +He was in good company . +That was the game , though . +How can you do that ? + That 's part of their game , he said . + Most people here are new to the city . +I would not say that 's the case . +How does she go through life ? +Me , I do nt think about him . +But you know me . +And no , it was nt over . + We are not , he said . +I have no home to go back to . +One day is like another . + I just did nt think that was going to work . +But I want to think of it as one of many more to come . + You do have time . +Which I did not . + I have said it a million times , he said . + You do nt know what they are going to do . + But our country is like this . +But I have nt found it . +We know he has used them before . + We are the same way . +And who might they be ? + Could we do without it ? +Day did just that . +We will do what we do best . + Now what do I say ? +What you see is what they get . + But what does the President do for us ? + But not too much . +I said I do nt think so . +They are just there , until you get to know them . + Most of the people here are from the old school . +We say , Think about your children . +What 's at play there ? +We did nt , so we are not . +I do this as well . + I do nt know where they get it . +They are the same as we are . + But what 's a general ? +But this may have been the best he could get . + But we could nt do it . +It should never have been called . +I know how to get there . + There is so much money to be made . +It 's where we WORK . + I get all A 's . + They did nt come . +How well does it work ? +Today it has five times as much . + He just did nt have it today . +She called home only three times in the year . +They are not a family market . +But he did nt say no . +That part of my life is over . + This year I did nt want to come back . +But we use them . +That is nt all . + Or will people put up their own ? +And so it is today . +But that is nt all . +People want to know her . + You do nt know which way to go . + Where did those come from ? + You never do that , he said . +They just do nt do as well . + But , he said , They can not . + So did I , she said . + There you have it . + But we could nt . +That will be the game . + Other times , she does nt . + They did nt know her . +Or , put the other way : how good was it before ? +What should women do now ? +For us it 's not all money . +We know them all too well . +It should be big . +We do not know how , but we are going to do it . + I said I did nt know . + That 's where the money is , he said . +Come back next week . + We have to get the best people . + It 's what people want to see . + All I want to do is do business . +Are they in second or first place ? + Does this make my week ? +Of what , I do nt know . + My office was right next to John 's . +I did nt do that . +That 's not a government I want to be part of . + What is good for you ? +I had had a big year . + This is what we do , you know . +The way we used to . +So now we know . +And now I do have one . + We did nt show up to play . +Did he like it ? +I do nt know who to do that to . +It did for a while . +In this case , does it work ? +It 's also for the people . +Right after the war . +A little of that . +That 's what the work is about . + We said , We are going to see them through . +This one will too . +And they are good . +That 's how you make money . +They were still there , all right . +From Women and Children First . +He 's very good at that . + And this was the one . + He is not the only one out there . + I do nt know where they come from . + There is too much to do here . + We were on the first day . +This is one of those times . +Then not at all . + And that could be all it is . +But I had to do it . +I still think about it . +And it 's not much . + They are going to come in and make use of it . + It 's like a family , he said . +He 's still in play . +So go back to one . + How about , I do nt know him ? + So , he says . +This game should nt be like this . + She did not see it . +She just said , That 's good . + I was like , Since when ? + That 's what we had . + But how can I ? +We do nt have the time . + This is the only one I know about . +There you go where ? + And there they left it . +I think we were . + It 's way too . +Which is how my life is . +You do nt get what you want all the time . +I may have to go back to work ? + That was never me . + And I like the money I make . +But you do nt want to go there . + I can not take them . +Where do we go from here ? +Now , I do . +But that is not at all the case . + But I want one , he said . + I do nt know where the place is . +So I do nt . + It 's that big . +So , too , has the state . +And I think that 's new in New York State . +But what if it is not ? +Will I think about it ? +Well , not that many years . +Here 's how it would work . + What are you going to do with him now ? +It was nt that way before . +As you can see , there is much to do . +We now have that . + There are nt too many people who can say that . +But not the children . + That 's it for me . +Where are we now ? +That was nt part of the program . +And this is how we see it . + That was too much . + We are just going to do it another way . +Just did nt make it . + All we can do is get out of the way . +She did nt say no . + We want to go . +That 's what I want it to be . + I want to know what 's going on , he said . + The two are not the same . + What I see I do nt like , he said . + Here all they say is next . +Years , he said . +John : He does nt know me . + But you know what it did ? + It might have been . + I do nt think I know the man . + And who are these people ? +It does not have to come down . +No one can say how long that might take . +You might like that . +What does he think he is ? + Today it is me , she said . +It has set us back years . + It 's not my money . +Think of it this way . +We want to do well . + It 's not about the money , he said . + I do nt want to , she said . +They would never know it was here . +What does he think today ? + I like to get out of the house , he said . +What do you think it is ? + I did nt think that was right . +And How can we ? +Or is it just her ? +I just did it . +But how can that be ? +I do think she does . +It is too big , and too much . + And now : I do nt know him that well . +And if you can work with that , you can work with him . + It was nt a good one . + It 's much more the Government . +It did nt have to be so . + How about president ? +How could this be ? + But now I would like to . +You are too good for this place . + Those that did nt , they had to get out on their own . +As much as I want . + That 's all I have . + It was more of a family place then , he said . + It had to be here , he said . + What do you want to know for ? + He was a general . +During the year is not the time to get your work in . +There may be more to it than that . +That may be a first . +What do you do now ? +And , if so , for how long ? +If she called the office now , no one would be in . +It is the president . +I do nt know where the money is going to come from . +But they did nt have a good time over there from day to day with what we did . + How can I do that ? + That 's it ? + How did you even get in here ? +Do you know what we have here ? +One long year without you . +To my people , to your people . + Do You Know the One ? +It 's time to think of the next game . +His life is out there , not in this house . +That does nt work here . +Now they have to do them . +What would you do about them ? + You never think it could be you . + So what did we get ? +But even that might not do it . +If it does , we are going to make a go of it . + What is this ? +The American is for , the National against . + What more could you want ? + He made it a war . +What Is in Them ? +If you do nt , you go home . + People do it all the time . +What would you like him to see in this country , and where would you like to take him ? +It 's way out . +He would be one of them . + I know I can still play , he said . +She made him what he is . +They are still out there . + She 's like us . +It he , she ? +What was their day like ? + So all is well . +More on that next week . + I just said , So what ? + I get that . + She 's not well . +Which play was right ? +That 's what women should be . +And then there is . + He did nt want it to be about him . +Here it is against the law . +It has to be from people to people . +And how did he get there in the first place ? + Well it might . +Not for the life of me . + I do nt want to go up there , he said . +And I think it was just the other way around . + But our people know what to do . + I have a right to come here , she said . +It should not be against the law to work . +Are there any people like him today ? + This is a man 's world . + But that is what this case is all about . +They should all be like this . + That was the end of that . +Some members said that was too much . +This was the man who did nt want to be off this case . +Can they get there this year ? +No , make that three . +In part , this is because they are more American . +A : No , no , no . +Or get out of here . +No , I have nt . + And we are going to play the same . +Now she does nt like it . + But we do nt know when the war will end . +Then he was out of work for two more years . + I like it up there . +That is all they have been . +I do nt have to be that public . +I had my own office . + So he did . + In five years time . + Then he said : It 's me . +And that 's all right with him . +Will they be from the West ? + It is what we are . +Here are the members . +But the Government is against it . + It will not be the last time , he said . + We know what we are going up against . +You should nt be . +So was the season . + You think I have no right to be here ? +But we are going to do what we do and they are going to do what they do . + If I can do it , other people can . +It might be about to get one . + The police will be after him . +It 's like we are going back to the old days . + This will be big , he said . + That 's what you think about . +Well , there you are . +She has not had a home since . + And I think that 's what people want at the end and that 's what we are going to do . + Every night he does . + Will it be the same in a year ? +What did you say to him ? + No one is going to do that , he said . +Well , I found a way to get out . +And it 's just as well . + This is our home court . + No , not there . + That was there even in high school and before . +Here 's also to A . + Who is right ? +And he made it this time , too . +He can do it all . +About two years old . +Then another called out , and another . + Not play here ? +Can you come with me ? + Are they in first place ? +Director General , said . +We had to be there . + The police made it up . +They get the best of both and in public school . +He not only could have been , but was . +And this one was big . +It says you are good . +You are up and down . +Do I know her ? +The United States is at war . + We do nt know what we are going to do , he said . + This is the way we do business . +It 's not the other way around . +What is a few days ? +That 's the end of that . +Law was his life . +We are going home . + Where would the other one be ? + How many times do you do that ? +But you have to make it . +And they may have . +But I could nt go . + It 's not , You have to do it . + It 's the best time to go out . + I could nt put her down . + But we do nt want to have to do that . +It 's you , who you are . + I do nt want to go , he said today . +But would he use one ? +There is so much to do . + But it 's going to be big . +But he also did not want to go there . +But the money 's not there . +And are nt they all , in a way ? +And the man did . +Where do you go for that now ? +She says it is . +And not just in New York . +It 's up to us to play them right . +But was it a business ? +I do nt know who they all were . +Do you want me to go on ? + To me , it 's all we . +Last week I was all for it . + It 's about country . +She has to be up for school . + It was a good one . + Some days , he said . + This was our office , she said . + We are the law here . +I think you are . + She is a big part of my game as well . +That 's not what it 's all about . +Or they used to . +This is right now . + Or two or three . + It will come . +You get back in it when you can and go from there , and that 's what I did . +All right , be that way if you want . + This is going on all over the country . + He did nt know that . +SO WHAT DOES WORK ? +He 's going to get his . +It 's who you know . + I did nt like her . + Or is it ? + But then you think about it . +That 's what this city is about . + I should be now . +Here is a day in the life . +They know we are out there . +About any of it . + I do nt know what I said , but I did nt say that . +And she was with me while I did the work . +That is just what the city did this year . +Some of them are . +And the money can be good . + It 's not just me , he said . +That 's going to be about it from me . + People think you can do it in one day . +But they did not get him . +It 's to do well . +Or to go home ? + We are going after all of them . +I was nt a part of it . + People can come to us . +The money is also not as good as it was . +Not too many people can do that . +I work on my own . +Some days are one of those days . +New Year 's Day ? +Are they going to have money ? +And what of the children ? + I think this has been the best week of my life . + We should nt be there . +But how did it play back home ? + You know what we found ? + Here it is a good country . +And it is here . + Can we have that ? +What are we to think ? + I have to do some work . + You would nt want to be him . +He did and does . +Any place but New York . +I think they are all the same in a way . + I do nt own a home , he said . +It was not business school , but it would do . +Was this the time to do the show ? + This is not my business , he said . +They did nt know what to make of me . +That 's well and good . +Would he be part of it ? + I do nt know if it 's me up there . + They are used to life in general . +Come on , every day ? + I see this all the time . +They want to see us do well . +It 's not the way to go . +As a team , it just was nt our night . +So I had to go by there every week . +And he said , Well , two million before . +That 's not what you want . + They do nt see how much work we all put in all week , all season and all year . +And this is how they see it . +Do we like the people we see ? + They did want this game more , though . +They have nt up to now . + He called them what they are . +He 's still the best . + This is the new way of life . +He is the city , the city is him . +It 's found time . + It was just business . + Will we be there for her ? +Could you make do with less ? + This has been said to us , he said . + I have to be , he said . + It 's been like that for years . +And here there is no law . +And he 's right there . +There 's only so many of them . + I want to think this over . +We know what you are up to . +But we also know that we do nt want to be the first one in the market . +But these two could . +No , no , not her . +He did not get through , he said . +Today , it is one in four . + I did nt want to go with them at all . +We want to work . +And it 's never in the same place . +It was his second home . +They have too much going on . + For us it is to be and not to be . +This year there are five . + This was every other day . + She can use some . +He has more of the same . +But it can only last for so long . + This is not the right time . +And what do you own ? +At the end , it 's all about who you know . + Three people had it . +This has been going on for a long time . +That 's all well and good , but he was nt here yesterday . +I think about it ? +I do not know where my family is . + It 's just not for me , he said . +This is a new day . + I just think we can do more than that , and should . + I think they did , he said . +But she is much more than that . + It was never about money , she said . +They are out here . +I have nt time . +She said she 's not going out of the house . +It 's used by both . +If it has nt , do nt . +Now we have two . + There 's no way it could have been me , he said . + Well , we just found out how . +It 's his team , it 's his money . +But it 's not as if she does nt know her way around city government . +The city does not have much time . +We are just not on it . +So what do we do about that ? + And that 's what we made . +This too will not work . +This was his game . + It 's not just us . +WHAT should we make of all this ? +How do you do that with two people ? + There are times I think , It could nt have been like that . + If I had to be there , he has to be there , too . +It still has nt been . +Now we have that . + I think you know that . +Some people do nt like it . + They were a good team then . + Like here , during the American war . +What did she want from life ? + It is what we all are after . +You are not for us . + Come on , man . +And he has some time to make it work . + That 's what we are about . +You get out of school . +We have to work . + We still want to work . + But I know I can play . + But where to ? +He said only : I know . +If he does nt , what will he do ? +But what can you do about it ? +We will not be the same without you . +He does nt want to see that . + We do think about him more . + Next year is its own . + Then , he said , I want to be that . +You just did nt . +What can you do for us ? +They just want money . +Then there is , Will you do it ? + This was not one of them . +I would not want you . +He could nt go on , you see . +I just do nt know if they are going to get it . + They can go a very long time . +You did nt know that ? + But this is the last place I left her . +You have to do that on your own . + People know the game , you know . +I will see you all when you get there . +So I never say one , I say four . +And if you do nt know where you are , how do you know where you are going ? +We know who 's here . + What more can a man do ? +We have to get out of here . +We do nt know that , we do nt know that . + I did nt think he had the money . +We just do it . +What do the American people think ? + We have to take two of three or three of four . +Who said you could use it ? +But where do they go from here ? +I think we did . +We have found the will . + I do nt know what people like . +I know what to do . + He can do both . + We are the same people , he said . +Well , you are . + It 's going to be like this for a long time , she said . +It 's like a city . +Those who do nt ? +That is his right , he says . + But I also do nt want him to go down this way . +It could have been his last game of the season . +It is only the old people there . +I would like to see New York . + That 's a new one on me . + He has the right to say that . +But , he says , it 's my work . + It 's all your life . +I was going to play there . + But they are going to have to do it . + But you do . +But the music is still there . +It 's just money . +Now there would be a few more . +They did nt have to work . + They get to know you . + In here , he said , you have all the time in the world , so you work out . + He was at the house . + But she said , No , no , it 's all right . + It 's good to know what people think about me , he said . +They have to do with my own life . + He was a good man . + I did nt know what I was going to do from the next day to the next . +Yesterday is not part of their business . + I did nt know that , he said . +This is all about money . +She did nt like that . + That 's just not him . +But so was his home city . +I did nt do . +I called him Time . + I do nt know what more they can do . + It will be much more . +He has never left New York . + So what did she do ? + We do it his way . + And I was , like , no we have to get it . + There 's money about . + This is the big one . + THE LAST FIVE YEARS . + There are so many of them . +And so do we all . +It 's out there . +I never had that before . + The market 's going to go way down . + And he was that . +And he is right . + Did you have a good time in school today ? +They had a family . + The same could still be said here . +We were part of that . +It 's so big . +Can you get me that ? + I did not know that . +And one day , we did . +But there would nt be many of you left , would there ? + But there 's more money to be made here . +They only know of each other . + Where Did He Go ? + They will do what they will do . + Where I work , it 's all women , she said . + He 's going to say he 's American . +They were nt out of it . +And then it was over . +Here 's what I found . +They just want him to do well . +You should go see them . +On to the next . + I do nt think this will be just another show , he said . +I do nt know no other group of people who do that . +You take the money home and make no life here . +And I see us going down . + That 's what they are there to do . + Very good , very good , very good , she said . +Take your time , he said . +I do nt know if you know him . +I just go on with my life . + It 's what you have to do , he said . +But that 's what I want to do . +What do you get ? +It may be second best but it is a good second best . +So what will it take ? +It 's good , it is . + They said , Come on in . +Where do we take it from here ? +That 's what it 's going to be . + But it was a long , long time ago . +And he would nt do it . +To see this , it 's just not right . + And so should we be . +Now it is for the many . +But we did nt know it was that many . +That 's not work I have to do . + It 's a way to do business . +One way or another , there will be more . + I do nt take any money out of it , he said . + How much , I do nt know . +I play all day . +So , too , was his game . + He said it was one of his children . + Where was I going to put it ? + It 's not for me to say , he said . + They should have said : This is it . +We can just take her down . +So that 's what did him in . + But it was nt the case . + What do you do ? + They just do nt want to be there . +The house has been on the market a year . +They know who they are . + No more , she said . +She never found out who he was . +We were nt there a few days ago . + The money 's not there . + I think it was my best game , he said . + Just go out there and play . +All of which they did . + How should I be ? + If this is what I think it might be . +Now there was a year . +At first it was like that for most of us here . +They think about the money . + We make too many , he says . +That was more than five years ago . +That 's a state law . + I was in there only three days . + But still , what are we going to do ? +We make a game of it . + Her , I think . +They have been used . + Can I take this with me ? + I just think it was time , he said . + What have nt I said . + He called me at the end . +It was more than three . + I have my right , she said . +Too high , he said . +There was little he could do about it , though . +They know it and we know it . +It was just still . +But it is nt about him . +It may take two people . + Are there a few people I would nt work with ? +This one 's on her . + I know that 's not me . +If you do nt , you do nt make the money . +All they do is own it . +If it does nt and they do nt , he might not . +So you go after the best you can get . + It 's all going down . +Still , there was a long way to go . +What will I do now ? +Will I do this ? + That may take a little time . + We do nt want them back , she said . + If I never made it , so what ? + Over or through . + To which I have to say : So what ? +I just think it 's not right . +He 's going to play . + I did nt know who it was . +How do you get out ? +Next to them , what did I know ? +They want me to take my time . +And you do see it . +Or you can do it my way . + But I want it to be over with . + He 's just like you and me . + I never go down there much , though . +But then , what does ? +I know him very , very well . + You take it home . +It is nt so . + Good , I say . + They can not come here . + Play is the work of children . +We just never did that . +Well it was nt . +But that did not make it right . + I was on a good one today . + Is it our business to police them ? + I did nt think he did that much . +But it may take a while . + They did not say , Here 's how we are going to do it . +And how do we know when we have it ? + END OF THE WORLD . +It 's going to go off . +What more could we want . +I think that 's going on more . + It 's all out there . +You know you are not going to be out of it at the end of the year . +Was it the police ? +He did and they did . +Which , in a way , it was . +And there they are . +It could take two years . +And it did nt even work . +They get to like it . +But that 's what it 's about . +He said , I do nt know what 's going on . +That 's the best part of it . + I would not take it . + From The Way It Was . +But we all see what he does . + When will it end ? + There is so much to do , so much to see . + No , if it does nt . + I do nt want to go back there every day . + I left my country to come here . +But this is a business , after all . + They want us out of here . + Where are we going to go from now on ? +I was no good . + So I just think about that . +Good for How Long ? +It was the same year . +That 's no so . +It 's just the way I play . +They will be at home . +But some people just do nt make it in New York . +And that 's all you can do . + We are here to do business . +So people are going to come . +His team is the same way . + It was like , who ? + We did nt have much in those days . +That 's what we found . +Until two years ago , he had never left home . +How could I not ? + There was a war . + I want to go back to school , she said . + Do you like children ? + I just play the way I want to . +How big is best ? +In both you see when and where they were made . + The two of us on the same team . +Now they are out . +I do nt know if all of them think it or some of them . +His office has some money for you . + One of the very best . +There are nt many like her . + I do nt want him to . +But still , I do nt have all the money . +You do nt own her . +I know it was not . +Now , there are three . +For all that , where are you ? +Or has there been ? +We have some good people . +It was just too good , she said . +But they were all in school . +Not now and not then . +Is there too much going on ? +It 's a place . +Those are the only two . +But it 's not New York . +He does nt have it . + That 's what he can do now . +We are all the same . +SHE could be home now . +So you want to be President ? +This place is my family . +Where will it come from ? +Go to a high school game . +That will not work . +This is not what this is about . +We just were nt in the game . +He 's a big man . + He 's been with us a long time . +Or my life will be over . +I do nt think that did us much good . +Well , me for one . +One way or another more money should be found . + This is the way it has to be . + There was a time when he was right there . +But we are going to see if it can work . + They do nt have their best game . + What did we do ? + I think he could be there for a long time , he said . + It is also about good business . + People do nt see you in -- now it 's been four years . + How could you not want to be here ? +Not me , though . +Not at this time of year . +This is what it is and that 's it . +Where did all the money go ? +All said it would not . +How and when do I take it -- and for how long ? +Do nt make me come down there . + That is who we are . +It 's there for all of us . +I do nt know many people who do . +But , she said , it is nt about time or money . +But will any of this work ? + And I do nt know that we should be . +A : Me too . +What is it and what should we do ? +Is that how it was ? + It still does nt . +He would nt be here . +And the way it did . + He has to do it . +It 's like being in a big family . + If I could , I would get it three times . + If the city does nt like it after that time , I can take it down . + I said , Well , people do say that . + We know about this , he said . + We are going home . +He had a year off . +Where can they be found ? +We would like the university to put them in . +HOW long can it last ? +I think it 's like that . +I could not put it down . +That just made the game right there . + I do nt want to go back . +Make what you will of that . + We said , No way . +They were both there for the money , he said . + And now it is not to be . +Now there are four . + He never says , What should I do ? +Or it may not . +Very few people are like that . +It 's time to see it . +We just want you to come . + He 's a big man . +They want to do the same . + I think they like me here . +Want to see the show ? +You should , too . +Today , we were all one group . + We do nt have to do it and we should nt . + If she were , she would . +That 's not much to go on . + We are back , he said . + We are not the first to say that , she said . + They do nt see it that way against New York . + I do nt think that is the case . + It 's not about money , she said . + I do nt have all day . + They would like to have a big company do it , she said . +And that is what this is all about . +But it is nt right . +What do you think it was going to say ? +They say there is no other way . +They do nt have the money . + Is it me or is it them ? +But so did they . + I do nt want to say it right now . +What good does it do me ? + I know we are in first place . + And so she did . + It 's all over the place , she said . +Will it in New York ? +It was another time . +So I think I have it now . +I want you to work no more . + Do nt think about it , they would say . + This is our time , she says . + We put it out . +But it was so much more . +This is a new season . +But now he 's with us . +And we did , too . +She had two more children . +They also want more money . + So , how much do you want ? + Where have you been ? + Old , me ? +But not so here . +This play is only a play . +That will come in time . +Where will it go next ? + That 's the way it was . + I say , When are you going to know ? +It can not go on . + We should do more , she said . +Who , then , were these people ? +What Can They Do ? +If it 's not there , it 's not there . +Another did not know . + Well , for him it was just another game . + So it 's not that it is not there to be found . +It 's out in the country . + They do more than that , though . +I do nt like it out there . +But , you know what ? +He does know this , though . + I do nt think it will work out , he said . +I said no I did nt . + How could I work on this ? + There 's no place I want to put my work , he said . + I want to take this family out of here . +I said , What 's going on here ? +It does take some . +I never go out . + She would nt get in it . + I think you can as president . +Go back to it . +You Do nt Have to Be . +He will know as much about you . +He has not been the same since . + You only have so many years to play . +But not at this time of year . + But these days , you never know . +It 's going to take a while , but you are going to make it . +They do not like them . +But it 's also long . + It 's not . +DO they have to be there ? +Now we have one , too . +And I will do my best . +Now I never think about it . +So which are the best ? +It 's a big office . + He said : This is it . + You know what that is , right ? + It 's not his team . +We all have to work for him . +There are now three . +It never can be , he said . +Good for him , if he can make it work . +They are back in school the next day . +What does she think of them ? +For them , it was . +I was , over and over . +They have their best years . +But to go where ? +People get used to the place where they work . +But we do nt know . + You know , I did , he said . +And this you have no right to do . +We were never here to make money . +This is what this is about . +But then , what was there to say ? +And who are these people ? + It just was nt new . + Now , here we are . +This country is united . + That 's never going to be so for me . + I think we did . + He says it three times . + But I would have to go home and get one . +For me , it 's just not what I want to do . + I think he was , too . +This is not my team . +And that is when you have to do what you do well . + But it 's going to take some work . +He had little to say . +We have a few children who are here to see how well they do . +It just did nt work for me today . + I go through a case or two a week , she said . + Who 's after that ? +I work at it one day at a time . + And it will not be the last . + It would have been very good for them . +It 's our business and our money . + I think that should be the case , he said . +Who 's for it ? +And if I was nt , he made me want to be . + And you just do nt do that . +Who says , That does nt come out of my money ? + What Is Going On Here ? +This is still a family game . +It 's not my place . +I want to know all about them and get to know their music when they come to me . + It 's a long , long way down . + But I do nt see it that way . + We like to get up and do . + And I put up with it . +Go where you want . +As you like , then . + This is New York , she said . +Should have , but did nt . + He said , More money . +They may or may not see me . + It 's going to be a long time , she said . + But does it have to be that way ? +We are not going to have this . +AND then where will we be ? +New York could use some of that right now . +No , I did nt know her . +That we are old . + It 's there for times like this . +How does she do it all ? + And where do they end up ? + It does nt work , he said . +There is no second . +And last and last . +But we are in a good place now . +When will it all end ? + Which way did it go ? + You never say never . +Is the United States just too big ? +So I said , That 's it . +I said : What do you want us to do ? + It was his world . +Well , what was it then ? +It was four , not five . + What was he in ? +And I , all I know is what was said yesterday . +Is there any way out of this ? +You called it in , right ? +Who will be left out ? + How could I go all the way there ? +He used his last days in office to make it public today . + But I have to put up with it , she said . +You get up and play . + Should we have found one ? +That was down one . +We can take it through any day . +But how well do they work ? +It 's so old New York . +How new is new ? +It 's not like that all . +It 's not New York . + Take two , she said each time . + Now you can only see one way up the street . +So did the times . +But I did nt get out . + He had his own way . +And not only that . +I would nt make much of it . + That is nt all . +And the big companies have the money to do this . + But each time , they said he 's not around . + I know what we are . + I have no place to put it . +You and I do nt have the time . +But they should not have been . +I never had that in New York . +One in a million . + As if they did nt know what they had to do out there . + I said I could nt . +But I do nt think you want to do that . +That 's up to them . + I want to play well . + It 's all new . +If there 's a season . + And I do . + During the season , I had a good year . +But I have to get over that , too . +That was our first time . + Right now , I do nt know what that is . +He 's the same way with me . +But I can not do that . +That 's not the way we see it . +But we have more than that . +She can work no other way . + I do nt have to think about it . +It 's a big day here . +And she was nt . + That 's never been the case before . + Well , I did nt . +But this is my home . + What good does it do then ? +But I had a good time with it . +We did nt put up with it . +They do not know each other . +What if you do nt like their children ? +She should nt have to . +We think we know them . +But this is my life . +What was that all about ? + I do nt want no part of it . + There 's a market for both . +Some had two or three . +So is the other . + That did it , he says . + It 's not our way . + Because I do nt know , she said , how long it 's going to last . +I can do that . +It is out of the world . +So would other companies . +BUT how long can this go on ? + And who might they be ? +She 's used to it . +Then I did the same to him . +But it 's just one game . + He has so much going . +I have to do what I have to do . + He never has . +I know you left us when you made her . + What would you like ? +We have to and we will . +No more , but no less . +It did nt take much . +People have no money . + We just made it . +He did nt do that , though . + I do nt know you . +Here they do nt . +The game was to get out . +But we did nt want to set him back . +Then he had to go back to New York . +You know what that said to her ? +Or are they not ? + We want more than that . + I do what I think is right -- that 's all I can do . +Where did she do that ? +Where had he been ? +I would never know . +Now it 's business , all the time . +Get them out of the game . +And we want to do what is right . + They say you have to come , he said . +This set him off . +Just two more days . +Now she had to get over it . + This is where our people are from . +I have nt been well . +You never want him to get down . +I know I will work . + His time is up . +We will do our best without you . +The best , right ? + How come you are still at the office ? + They know it will end up in court . + It 's like high school . +The United States did not . + In this case , it 's not going to be that way , she said . + Where will they go ? +Had it been there before ? +There 's no more . + It 's very political , she said . +Some people can only be one or the other . +Did not know what to do . + They say , Where is the President ? +Today , the United States . +If so , what then ? +All were in use . + They say they did nt know it was so good . + Where are the children ? +He did nt even know me . +See you next week . +This is her game . +Which one are you going to use night in and night out ? +It 's our team , too . +It is , after all , what she does best . +Any of them could take first place any time . + It 's all about what you do with that time . +It does nt work too well . + Now they know . +No one could say that is not good on its own . +But where should I go ? + They just go right over it . +But she was there . +I do nt think they have any right to come in on us when we are not in school . +And not only did they come . + Do you know what used to be here ? +And times that we had to go around him . +That 's not what we want . +But it just would nt be the same . +But she did nt make it . +What was the game here ? +It was four , not one . +I do nt want that right . +They are not even in the game . +More on that another time . +He did nt this time . +He 's been around for a while . +But there is no such place there . + Well , was it ? +Most members do that . +It 's all three . + All of my music is very old , she said . +When are we going to go ? + It 's like a second home for me . +He had said it was war and it was . +And still , and still . + I have never used it in all my years of business . +It 's not even about music . +But we have nt had to do that . +Now , back to work . +We want to see them . + We do nt have to go to New York . +We know what they can do . + They do nt even go to the police . +All 's right with New York . +We know there is no case for that . + That 's as it should be , the general said . + I do nt know what we are going to do , she said . +It 's just part of my life . + We did nt want to take that from him . +There 's been way too little of that . +Where does it all end ? +This is one of those days . +And I do nt . +How good can they be ? +As well he might . +I think they did what they could do . +Now you have to work this out . +I may still do it . + I will be there all the time , he said . +There 's just one . + There 's no way I could have used that much , he said . +Not in this market , though . + This is where I come from . + We will be here for many years to come . +And it was a good one . + I never play like this . +It will go on . + He was never around , she said . +I had school that day . +I know that I will . + This is the one . +I made them take it down . +There was no time for it . + I did nt see him . +That 's what this game is about . + What you know about that ? +There are nt any at all . + This is one of them . + And we want it back . + I want to go where it 's best for me , he said . +I do nt have to play this game . + Do I have to ? +We want to take some time . + Were nt you the same company ? + You can do it . +That should nt work . + No , not at all , she said . + Well , they are not good . +Are you all right ? +It 's all over for you . +Now it 's time to go to work . +No other American should have to go through this . +Now , there are only five . + I want what we used to have to come back , she said . +No , I will not say that . +But what was that on her back ? +Some days we might be the only people they see . +That 's what had to go . + Back then they were just like you and me . +So that 's all there 's been . +It 's not good for you . + How long was that ? + And I said , We do nt know what to do . + People do nt have the time . +We just want to get back to first . +I think they like the music . +You do nt say ? +But there 's only so much you can do . +I said , Never , never . + If it is not , they do . + I do nt think it is , he said . +You could do that , what you do best . + Money , and More . +And they think they can make it , you know ? +They were not , but he did not know it . +I did nt like it there at first . +How many could there be ? + We were at war then , he said . +Where can I get it ? +But how can we know ? + Same over and over . +This man had come for all three . + They would nt take her . +Who 's on Second ? +And we just come right back . +This is nt about money at all ; it 's never been about the money . +Right now we are a team that 's never out of the game . +Get back out there . + I was at home every time . +I think it still can . +Last week there was more of the same . +I did what I set out to do . +The right to think . +It is not a show . +It 's what we are going to work on . +It 's just that not that many people want to do it . +I just have to make other people see that . +Each has three children . +But much more is still to come . +This one is not for us . +Well , they are right . + They are here , he said . + A good many people . + But you do the best you can . + And it 's called . +It does nt work that way when you are President . + We are about to do the same . + They say , What should we do ? +I just did nt like them . +I do nt know how high he can go . +For a team , how old is too old ? +She said , I put him through all the time . +So he does nt . +To the United States . +She said she had been in New York for two years . + It 's all there to see . +We do that too , and more . + But who 's going to do that when you are home ? +At this time a year ago , he had two . +Does he still play ? +This is our second season . + I still had money , he said . +I do nt think they have that money . +What did he think of the new law ? +They come out every game . +I do nt like war . + But I said : You know what ? +And they are big . +She does , and she did . +Then I make the team and we have a good team . +That may not be the case . +We are one people . +The country 's for it . + But they were not . +But this is what we are here for . + That 's not going to work , he said . +What might she like ? +I know it will be there . +It did nt work out for us . +The president is at the game . +It was his second of the season , not his first . +I did nt get that from him . +If they do it , it will be next week . + What should I say ? + He does nt like it much . +And they are nt . + When are we going to get there ? + This is the best way to do it . +Take the President of the United States . +I would get on another one . + I do nt know when , he said . +Now what are we going to do about it ? + So it was with Come On . +We did it as a team . + I said , Who 's that ? +So that 's what I said to him . + We know that , though . + Now most of my work is there . + I think we will go back some day . +Last year I would nt have said that , but this year I know . +But they were into it . +That 's what this is from . +That 's about all you can do . + I have to think about it , she said . +Work is what you come here to do . +It was because I did it . +Is this a business that we should be in ? +But what about her ? + So be it . + When he 's not there , we are not the same team . +It would not , he said , have to be a public market . +And that is about all he said . +They want to have it . + I can play with this . +I had my time and it was a very good time . +That 's not like us . + But I may have to do it . +That may not be the end . +How did they get in there ? +Do nt want to . + It 's very good . +But I do nt think I like him . +I know this is New York . +There is so much money in the game . + But they were there . + And Do you want me to go ? +But not much more time . +We should not go back . + I do nt do it all the time , he said . +I have all the music . + He said , Come on in . +What will the United States do ? +Well , she could have called . + I do nt have that . + But I would nt do it . +But where is the United States today ? +When did you see it ? +The more we know , the more we like . + That 's not my way . +Come to see me . +But that will take time . +Now they get around to that ? +I just have to go on . + But they just did nt know me . +I think it 's the other way around . + Up , down , up , down . +He does not get up . +I do nt like that city . +I do nt think you can . +But I did nt take them home with me . +Which way do we go ? + That 's new . +But for her , that 's the best she can do . +And that was all he said . + That is what Time does to us all , she says . +You know there are . + They say , Where have you been ? +Or so people have said . + We are right where we want to be , he said . +It could well be . +That was another day . +Last year , that team had to make it . +Until we are out , we are not out . +But they have nt been . + You know , so he could see her . + And do nt you . + We are not for war , he said . + We all know what this is . + Then you have to do it . +It was a war . +I could have been one of them . +This they do every year . + We get them back in school . +They think it will have them also . +I never was in there before . + I can not . + Some days it 's too much for me , he said . +I do nt think there is one . +People were going on about it . + Can this go on ? +But I had to have them . + We have to work through it . + They are not a team we want . + People know people here . + I do nt think we will be going , he said . + He 's going to war . + Could you get me out ? +I was just like , That 's it . +Some , but not much . + What do you want with me ? + It is the right way to go , he said . +Does he own part of the team ? +It also may not be here . +They say it 's both . + Just a little more ? +There 's no people out here today . +What is Old Money ? + Well , he does nt know the people we know , and he does nt see the people we see . +This year , they just might . +You could see it then . +Who 's going to back down ? + I do nt know what they did . +You are in New York . +I would have to think about this . +I want to do more of these . + Even he may not have been the first to do so . + We would nt do this now , he said . + They are too good for us . + I still do nt know , she said . + I just could nt get to them . + But not this year , she said . + We do nt have any of that now . + Because they are out of season ? + We have to get it right . + We will not do that . +Last night he did nt . +And that , was that . +Not much you can do . +Just do your best . +Not so now , though . +He has no business being on the street . + I do nt know which way to take it , he said . + Do you work for Next ? +We did nt have them . +But there was more to see . + And who 's this ? +WOULD that the state of world music were the state of the world . +I still have some time . +Last year , there were four . +The United States Government will . +And what could be more American than that ? + I said , It 's not for the money . + Do I have to do it ? + I think there should be women members , but it 's not up to me . + I do nt like to be around them and do nt like the children to be around them . +There was no one who did nt know that . +He had it all at the time . +I want my team to be there . + I think time is up . + But I do nt know what it was all about . +She said she was . + We are not like them . +I can see it all now . + What did you say to him ? +Too much , he said . + What did he get out of this ? + The people here I know , he said . + And I like it that way . +But it 's no use . +There was life here today . +And that 's what New York did . + We are not going to be on the same team . + You are too good not to . +I could nt say . + You are the best . + After a day like today I think not , he said . +After all , we are at war . +I will think of you every day of my life . + That 's about it . + It 's more like our second . +These are not my people . +You get more money . + He said : I know that . +But you and I are not out there . +I do nt want to think so . +Just play the game . +You have to go after it . +It is time for me to get the money out of there . + The government was like this . +That way I can say I know one . + They did nt . + That 's the way to get him . +Did nt we know that ? +But on his own , he did it . + The more I go home every day after work , the more I like the place , he said . +How well , he will not say . +But if it were , what would you like ? + They know me , I know them . +And where are we now ? + I like it here . +What is it for them to be a man ? +We get them through that . +You do your best . +And then he was called in . +We do what we do . +They did nt see it . +But I have not been . + We had to come this week . +It 's a good place to be . +There was no left or right . +You just have to know how to go about it . +So it has come down to this . +And the next one . + Some people say he 's still here , he said . + Most do , he said . + There were three people there . +We know who is who . +Will Any Be Called ? + This is the time of year to play . + There just is nt time . + He 's , how do you say ? +By the next day we were there . +And so was this one . +But it might have . +And he could not say no . + But not all , he said . + Did you know him ? +She can go out and have more children . + I was only on the set one day . + It should nt be like this , she said . + It will be too much for you . + So what could I say ? + People are going to say what they want , but I do not own this team , West said . + A game is a game . +Now we know who he is . +What he is , is what he is . +I would come around . +But there 's one that does . + We are here because you were there . +Another place to get off , but few did . +And so on and so on , country after country . +It does nt have to be a big man . + She did that for me . +We know what we have to work on now . + It does nt say ? + I do nt know how I made it at all . +Is it all about money ? + We just know what we have to do . +Would nt we all like to know ? +And we do not know in which way we are going . + All we know is that we play well here . +This was one of those times . +These women go out all the time . +I know that and you know that . +What was it like ? + From there , we do nt know . +But how could it be both ? +We are nt going to get it . +There 's very little left over . +One on her back . + We want to see if we can work this out . +A little much , you say ? +They do nt know what to do here . +Should we go for it ? +He said they had not . + Then I found out they just did nt get it . +So what should they all do now ? +That could take up to a year . + I found this way . + We are there . +Where 's our money ? +That 's just how this team is . +How did the Does make out ? + We are going to make the best of it . +He was so much more . +After all , this was not the first time . +I think this is about him going out big . + It just did nt work out . +And every one , she said , made money . +I will be back this year . + I said : What are you going to do about this ? +Their season might be over . + But I do nt want to go into it . +If he does nt want you , you do nt get in . +They may not know us very well . + Many of them do nt want to do that . +He would just go . +It has been there before . + That is what this is about . +There were those in the group who said that this was as it should be . +At the time , I did nt think much about it at all . + We do those , too . +That 's where we come in . + They are part of you . +And not just with people . +And this did very well . + They are too big . + And then school is over and you know what ? + Now I do nt know what to think , she said . + This is where it 's at . + I do nt think he is . +So what do you want ? +I do nt know how much other people work . + Where were they the last three years ? +He will be back . + That 's what this game is all about . +It is not right . +That was the best part for me . + One of many out here . +But she does more than that . + It made me think more about the game . + They say , Can I see what this is all about ? + After all , war is war . +So which is it ? + She had her time . +But I want to have good game after good game . + How do you know if people like you for you ? + And I do nt like it . +The week you are there . +She was the best . +That 's where he might be . + And when might that be ? + But it 's public . +This is about more than money . + Some days I do , he said . + You may go home . + You do what you do . + They like it here . + Not what he said , but how . + That many women on one street ? + I do nt want to go there . +People are going to say what they want to say . + That might be a little much . + If they want you , you want to do it . + It 's all there is here . +Where there 's a will there 's a way . +Now it has That House . +We just do nt think its right . + I can still play this game , he said during the week . + They are right . +We are over it now . + It 's so out of place . +Now we do nt . + Put this down , he said . + I do nt know what he did . + But you do nt know . +And they can all use one . +We just work him in . + So I do nt even think about it . +So what can this money be used for ? +After that , for three years I did nt play any music . +Well , some did . +Is this the best we can do ? +And that 's not good for our game . +Here we get both . +We like it here . + It is the best . +Then they said I could nt go to my left . + He can not take it , he can not take it . + It 's the only way they work . +The set was not right . +We are a team . +It 's just them first . +She was just too good . +I do nt want him in my game . + I would have to be a part of that . +And his group is one of many . +You have to , to be in this business . +And that 's what he did last year . + The two of us . +But there is less to go around . +It does her good . + What is her life ? +Now that 's Old School . + But not like New York . +It was a new country . + We have to be on this . + That just is not the case . +But it 's one game . +They were what they were . +Have two , come on . + All I want to do is do my work and then go home to my family . +I know I can play this game well . +So that 's the way it is . +This is what we do . +So , here is what I think . + That was the last time . + It was just not my time . + If they are not , you can still work on them . +We think of you day and night . +That 's what is the music world today . + I do nt do that here . +I just want to have a family . +But I do nt show it . +There was no money for school . +Did he like the show ? +You are who you are . +We want that man out . + Because we do nt know how many we are going to play . + It was going to be a long night . + Today 's the day , he said . +Can I come home ? +Here 's your money back . +You can see it in another state . +But you can never say never . +She would be the first . + You would say , No , I like it where it is . +She 's all right . + How would they know it was one of our people ? + She said , What are you going to do about this one ? +Even if he does nt think so . + But it was up to the city . + We said the public has a right to know what we have . + He said : It 's not right . + I should , but I do nt , he said . + What would I do in it ? + His family is like that , too . +I know where he is out there . + I do now , she said . + But that 's not new , he said . +And he was only one of many . +It 's not just us . + Get used to me . + I like it now . +And that would have to take time . + But in a way , life has to go on . +How did you know that ? +Me : Me , too . +We do nt know what it is . +Would I like to see it ? + That 's up to you . +And then it was show time . +And they do nt even like each other . + They want this to be their last place . +It 's still the West . +That 's how I should be . +But there 's even very little of that . + I say , that 's my life . + You just did nt see it . +In this game , it was . +How do we get that back ? + There are too many people just like me there , he said . + We are a good team . + Where would you put this ? +Here 's the first one . +It 's because of what I do nt know . +And they will be back . +I know what he 's going through right now . + I could make them if I had to . +These days people can get right into all that . +Is there a way to do this ? +But to a game ? +Or are they too old ? + He did nt know where he was . + Now , she said , they are going to think that every time they go to a show , they get to do this . +And they work all the time . +They are going to be up there , too . +I do nt think it was put that way . +That was the end of school . + I do nt think he 's that . + We do nt know what 's going on in between . +That is our business . +A : No , I was not . + Because I want to know . +But not many more . +I think it will be us . + Take this , he said . +But there is just one . +But less than before . + It 's the American way , she said . + I do nt even think about it . +They do nt put it that way . +What would your country be like without it ? +Over and over , he said , I do nt get it . + Well , well , well . +This is the last one . +There has been more since . +But that 's the man 's business . +It 's over for him . + It was the end of the world to me . +But where is that money going ? +There is much more in her life now . +No more , she said . + People get right down to business now . + I do nt think that 's going to be the case . +So would we all . + Know who was second ? + When you have people around like that , you think about it more . +And this is just her first week . + It 's made him a man . + He said , I do nt think I can do it . + The game , all of it . +Not after all he has been through . +We were down a set . +But then , he had nt been a part of them . +So you have to . +If it does , well , what can I do ? +The new is on its way . + They did nt think about the people . + That 's the way it would be . + I said , Good for them . +Are there people who do not like them ? +That was just about all she could say . + I can get out there now . +Now there 's only one . + So I do without . + No , it 's not , he said . + It was nt much of a business . +But the state did nt do much at all . + It was a new world to me . +Good people , he says . + I could nt do it , he said . +Which , come to think of it , they were . +That is what we want him to do . +That 's what I have to go by . + How should I know ? + And they are still around here . + We are not a public company . +Is that the best they can do ? +He still might use them . + That 's where I would put my money . +I do nt know how much more is out there . +We know how big this game is . +And yesterday it was all the more so . + Where can I make my money work best ? +For the last time . +But what will they be ? +But how could he ? +That is what we see today . +We did nt see him for five years . +And over several years , he did . + Well , you are going to know it very well by the end of the day . +This is about life . +I do nt think we know how good we are . +Did you do that in this case ? + No , no , no , that 's not right . + Every man is out for his own . +I want to do good work . + What should I do ? + I do nt want that to be part of this company . + You are not from here , are you ? +When and how we play him , I do nt know . +Many people could not . + They see it as government , she said . +You see it every week , if not every game . + I do nt see him that way . + He said , How would you know ? + I did what I had to do , he said . + They do nt know what 's good over here . +I did nt even know who she was . +Play for your family . +Even less than one second . + That 's just my way , he said . + What do women want ? +How much can we do ? +Well , not for long he does nt . +They come all the time . + It 's just that there were so many of them . + Just all of them , he said . + And you are still the only one , I say . +But I did nt know a way around that . + But he would not do that . +It was five , not three . + I think what they did was right . + But it 's just a little too much . +Well , he 's not , he 's not . + And there will be more . + Then so be it , he said . +How come they did nt work ? +I think these people know that . +It 's for his own good , as well as the team 's . +But this year , money has come out . + I know the man . +Just another family night at home . +I just up and left . +Could be ; I do nt know . +And would you know from good ? + I just could nt take to the people . + He is not one of them . +You have to set one . + Now it 's over . +Then it would be over . + I think this is a good time , he said . + There will be no more . +First of all , they did nt want it to go on . +With just a little more time . + He was not the first director to use it , but he was among the first . + There were four of us , she said . +It has not been a good day . +I still do nt know what that was all about . +We can do the same . +But there is more to them still . +And on their 's . + But do nt we all know that ? +Every man should be in his own home . +It was a little too much for some of them , not all of them . + Was that what he called ? +I know what I want to do . + Well I do nt know about that , he said . + This can not go on . +It could nt last . + So it 's part of the business . +I do nt know if we can . + I like my work . +So we have to do that . +They were going off to market . +That 's for old people . +What would his life be like then ? +We are in a good place . +Every time I do one I say , This is the last one . + As to what that might be , she says : I do nt know . + Who did it , you say ? +Now we do nt have any . + Do you think it will work ? + I will have a few days with them before they are back at school . + I just want to get back , and I know this is the way to do it . + Does he want it ? + I put it to good use this time . + The people say it is here . +It can take years . +But I think my game is there . + They do nt have to like us , he said . +In that case , less would have been more . + So I said , You know what ? +But you know all that . + But , he said , . + He was three days old . +A : Some of each . +We do nt see them very much . + There will be no new money . +They take people off the street . + He did nt have to go . + Some people would like to see that . +I do nt think you could do it today . + Here we go . +But he does not want to . +But what if that had not been the case ? + The school is nt that big . +A few of us , like me , work part time . + So she said , You know you are not that way . + This is not about big money . + I do nt think that this life is all there is , he said . +What does that have to do with this case ? +I just do nt know when that would be . +But what do we know ? + They are right . + He said , That 's right . +No one at the school called the police . +I did what he said . +I do nt want to do that , he said . + And he said , You see what I do . + Who was I ? + But what if they do ? +That 's the West . +That 's how good it is . +Last year , I did nt have to make it last such a long time . + One , one , one , one . +So you know what ? +And that 's where you come in . + Then what 's he going to do ? + You are right . + That 's the first time . + Not at all . +I do nt know , but I do nt think so , he said . +This is the place for us . +He is that good . + Now , he said : I want both . + Would they want to know ? +And I think you just do the best you can . +How do I do that ? + Next year is here . +We are going to make it through . +That 's a big part of me . + That 's what you want to see when you take time off . +It 's a new life . +And what if the next one 's not , and the next ? +From there , where do you go ? +They do well that way . +This team has been through so much . +Or their children will see it . +Now she 's back . +They know it best . +I can see it all . +Well , now he has one . + This country has been so good to me , he said . +If so , to know what ? +And so she did , and so it did . +If it did , what would we do ? +They are still there . + Do you know him ? + But I would like to . +It 's been a little too much . +They work for me . + You see that big house up there ? +I know we all are . +And I think that 's good . +You would think it high time . +I think it 's like life . +Where 's the money to come from ? + Is that all you have ? + Had school that week . +I do nt think we are going to see that next year . + It was this was the man . +What you want , man ? + I do nt know what they do with the money . + How would they do it ? + What 's this for ? +And I work at home . +We are just a few people . +So that 's what she did . +That will take you a long way . + Do you know this man ? +All I want to do is play . +Where would it take her ? +You did nt want to go , you did nt go . + There is a time to play and a time to work . + That 's who she is . + But it was nt to be . +How could he do this to We the People ? +It 's time for you to go . +The last two years . +WHAT is it about music ? + This is the game . + How good is he ? +But I know it 's a business . + You have to do this , she said . +It is time , at last , for a new time . + And he was right . +But we want to do it the right way . + I say how do I know , to this little . + It was nt between us . +That 's what we have . + You just do nt know when they are going to come . + We just have so much left to do , she said . + I know I have it in me to get out , she says . + I do nt know what it 's going to be like . + And we still do that . + This has been my life , he said . + And I think that 's where it 's going to come out . +It is part of our program . +No one was home at the time . + Is nt that . +Work with me on this . +We know how to do this . + But since they are nt , we are going to . +But music does nt have to be . + But it 's not all the same to me . + He used to come in every day , he said . +Could it be that many ? + How right he is . +Go if you can get in . + You should nt be . +What does it say there ? +So he was well on his way . + One more year , one more year . + About how much money did you make ? +I did nt do it . +So this is our home now . +Should nt the family of man do the same for its home ? +You do nt even think about it . +But we had to do it . + Did there come a time when . +Say it like it is . +Now it has found one . + And they do it all the time now . +So that 's what we do . + No one did . +And come it did . +If he does nt want to work for me , he should nt have to do that . +They did nt even know John . +But if this does nt work , that 's it . + We are not on it , he said . +Now that might do some good . +But he 's not going to make it . +Here we are , they say . + Do you know what you would do to get it ? +But he does nt like it much . + But they are not used . + I called last week , she said . +But that 's show business . +Who would nt want him ? +What is he like ? + A big show , he said . +That 's how we make money . +He says it 's his first day . +He would like that . + I could see that . +Get out of the way . + I just do nt . +That is what people have said about him over time . + I think that 's going to come . +It 's part of a long season . + You have to think about what 's going on . + I did nt like him . + You do nt think too much about it . +How do I get to your house ? + That 's the end of it , I think . +We want them to come back . +And I do nt know when it 's going to end . + There are good people here . +What would you like to see that is not there now ? +Not right now I do nt . + He did his best , she said . + We were there first . + They do nt say so , she said . + They would go home and have a family , he said . +But still we come . + In a way , she said . +It 's out of money . +I do nt think it 's good for the game . +No she 's not . + Will he go to court ? +And here and here and here . + How many people are in the house with you ? +They do not know city life , city work . +As of last year , so do I . + This game just was nt our best . +He 's very good . +It should have come a long time ago . + But I did nt want to . +In how much time ? + At the end , he said , This is what you want . +There are three , not four . + That is what I have to do . +All are from New York City . +It can not be both . +So that 's it . +So what could they do ? +There are two children . + She 's not so old . +But it is up there . +This is more for family . +But no one is home . +We are in this for a long time . +But is it the right place for me ? +Four years since you left us . +And to this day , I do nt know what it was . +He was not the only one . +He has come back , but he has not come home . + But he just says , No , no , no . + I did not like the life that women had , she said . +And that , they said , will take money they do not have . + It did nt work like that . +When do I get to do what I want to do ? + I would nt be without it , she said . + Of New York . +These are the good old days . + Now I work for the President , he said . +But he says that if he had to do it over , he would . +Still , most of these companies make no money . +You go out and play this game that you like to play . +But the next day , you see them on the street . +What do they have to say ? +Well , all right , then . + I did nt want to see him come . +I say what I want to say . +What should we do next ? + Who do you think ? + To me , they are like family . +Long may it be so . + She said : I do nt know . +Some day you will be with him . +How many right now ? +Not that we do nt think about it . + That 's not what we did . +But what can it do ? + Just like it . + You see , here we are a family . +I just do nt know how big or where . + But what then ? +On a day A . +I think I can do that . +He was -- how do you say it ? +But who were those people ? + We are who we are , he said . + They put us in last place . + What did she know ? + Who were these people ? +The man is right . + It was the only way we could do it . +Not for the big money . +You might like some of them . + For us , this is a business . +If not this year , next year . +But it does not do . +I do nt think . +If not then , when ? +There are such people . +I did nt play well at all . +They are the best team in the country . +So you do it . +Just take it for that . + I do nt say what for . + We are down but not out , she said . + I , he says . +We did this without you . + I was going to go back home , he said . +That 's part of it . +So how do we do one without the other ? + It 's time for me to be home with my family . +And these are only two of the many . + We know we are here , she said . +Because they are there ? + We are not that good . +People like to come after me . +Next is this year . +Or if they were all the same . +It did , did , did . +Then I go to the office . + But I do nt think you should do it for money . +Who can do it ? +What they may not get is what they can do about it . +It is nt to make more money . + He said , Do nt you know who this is ? +He 's just a family man . + Do you think I will ? + How many are in the street team ? +I do nt think I would go back . +It 's just like the Federal Government . + What can I do ? , she said . + I come here as much as I can . + Not only me , he said . + I do nt think about it at all , he said . +Well , just think about it . + But after they did what they did , can they come back ? + He said : Just go for the long one . + I did nt know much then , he said . +So we are right there . +It 's just the way it is . + And he is right . +But then she did . + And he said , No , man . + This is a new world , is nt it ? + The next day I had one . + I have to think about that one for a while . + And you never get used to the night . +But I do not think so . + It 's the back . + Did nt we know that ? +They play you off . + Does any of this work ? + I have many . +Did nt last long . +What does my director think ? + Now it 's time to get down to business . +You have to go out and get it . +I know I had nt . + Now all five do . +And that 's how we do it . +You do nt make it until you make it in New York . +The state did nt do it . + But it 's not the same . + They do nt know me like you do , he said . + He was nt going to get by me . + We do nt do that in the United States . + So I said , What 's the good ? + It 's the way I play , he said . +In the next , it may be about money . + What 's in there ? +And what do we want from it ? +Well , what do we see ? +You think I do nt want it over ? +It 's like he 's going to school every day . + You are not even where you were two years ago . +All I know is we are going . +At their best , they are very good . +It 's time for us . +There is nt that much money . +The game and the season would end with him . +What 's a President to do ? +How did you do ? + I do nt know what to think of it . +There is a place for this . +Where might it all end ? +This is where she would go . + That 's all the time you have . +That may well be where this will all end up . +From then on , music was his life . +There is that music . + We are going with what we have , he said . + This is it to me . +You are like : Where 's it at ? +It will still be the place people have to go to . +But we were out for a year . + Could I see home ? +But -- I think not . +Be a man about it . + It 's been out for a while . +He said he did . + Now I have to do the best I can to make it work . +But so what if they do ? + You did not get it first from us . +The End of Family Life ? +You are going against the market . +Do it as long as he could . + It 's just not what it used to be . + This is a place I want to play . +That is just the way it should be . +That 's a year ago . +We should have him back . +We just were nt good . +But by How Much ? +I think what she would be like now . +To what end though ? +There is no next time . +Some of us get it . +It 's a team game and we are one big family . +This is your White House . + There was no one down there . +And is he all right now ? +I could nt go any other way . +But now they have come around . +He did this now . + So I said : That 's it . + That is to say , not very . + We have less time than we like . + I could nt just play me . + If I work at it . +He said it was nt . + How do you do that , man ? +What are we to make of all this ? +There 's so much going on . + I come for all these people . + I do it . +Which one was it ? +And not only here . + But I do nt know where . + Does that set her back ? +And what will he do now ? +We are all part of a family . + The other team did . + And the same could be said about the police . + But I say , What for ? +THAT it is nt . +And then they are . +I think we all have . + Not all - just you . +Five years are five years . + I would have it no other way . +If not work , then what ? +You know how we do it . + How many of you are there ? + We all own it . +He never made it home . +What could come up ? +Now I was in . + Like in the United States ? +It did nt work out well for me . +I do nt know that we will . +That was as it should be . + I do nt back down , he said . +That is against American law . +No one said do it or do nt do it . + New York , are you there ? + I know he is . +And they did nt like that . +The old man could be him . + It 's a good way to get out of the office , he said . + If they do nt , we will . +For the most part , so does the show . + One by one we found them . +And these people do . + I just want to do a show . + But you have to do it all before or after school . +He said I did . +Last year , I would nt say I could nt , but at times I was nt . + How old is he ? +At times , it 's during . + Not for me , he said . + It does nt have to be that way , he said . +This is big for us . + People say : What is it ? +And what of their children ? +I did not think . +How would that set with you ? + This is what you do ? +Not that there was much to do . +And that 's what I do nt like . +And on the last one , I did nt take my time . + And today , I did . + It may take one year , he said , five years , two years or a week . +SHE HAS AND SHE DOES . +This is just one of them . + I just want to get this over with and go home . +But you do nt do it now . + Here , they can see them being made . +There is nt going to be any end to it . + I should have made it . + And how did you get your country ? +And that is about it . +If you do nt play , who are they going to play ? +What do they do before the game ? + She said she would , she would , but she did nt . + She 's off on her own . +You get back what you put out . +And then it was not so good . + You have to put on this political show . + But what does it say to you ? +Do what is right . +But where did all the money go ? +But this is not good for the Government . +I had to know . +How much of that is in you ? +He called him out . +Which way to go ? +Some people here might say it has been that way for years . + This could be the last one . +I do nt want to think about it . +They just do it very well . + I could do without the city . + Such as who ? + My old high school said I could nt come back . +And now three years . +As if it was nt there . +What is it that you do ? +So how did it get here ? + He did nt like war , she said . +But you are what you are . + I know that I was there . + Out for the season . + He found out . +But not at first . + We can work this out . +And that is good . +I did nt know people could get that way . + So you have your own little company ? +The city made the best of it . +Who would nt show off such a place ? + They never did . + I had to take them in . +But it 's not the same . +We are not going to know . + We have a good case . + I do nt go out with them a second time . +This is a war . + But this is nt that . + It 's just a long way to go . +This is our world . + Now or never . +Which is federal , not state . +It 's the money . + It could be any time , or it could be a while . +But that 's part of it . +She said she had to . +But they were never used . +What a life , right ? +Now , New York . +But he 's a good man . +They do nt have that . +I said : I want to do this . +I could nt get in . + When did I know I had it ? + Today just was nt our day . +I said , So you found out today ? +But we just were nt the same team as we were yesterday . +And that 's how I left him . +The team was the best one here . + I think it 's where it should be . +So it was over . + I just do nt like it , he said . + I did nt want to do it , he said . + But it did not go over well . + I was here all on my own , she said . +So we did our best . +It does nt work like that . +I do nt know what I would do without it . +What did the government say at first ? +And they should get it . + I did nt even know of it at the time . +It never left me . +No , he did nt . +I do nt know when that night will be . +But we do it . + But are they new ? +How does he work him ? +At night , John would go home to his family . + If I could nt , I would nt be in this business . +We have and they are . +I did nt know how to have a life . + So , can I come in ? + Do we have to do this now ? + There 's more money . +But I have nt . + That 's what they do for us . + You have to say , This is what we are going to do . + They have a little less money . + What are they going to do with that ? + That 's been my world . +But he did not use it . + And there 's going to be times when it 's not going so good . +Well , us , I should say . + And then it 's off to work . +What 's an American ? +Do you like me ? +Did they get it right on the first take ? +That 's more what this is about for me . + How could it end like this ? +This is all I could do . +It does not have to be . +Now she has five . +Or he could come back . + But if I can do without , I do nt go . +Can we have all three ? +So we might as well play that way , too . +I have a few of my own . +Well , if that 's the case , where does it end ? + We are in it until the end . + You only have one life . +He could have had five children . +These people come here with money to do business . +Who do you see ? + A year or two , he said . +So I called him A . +But it will take time . +You would nt see me going down there . +All were left on . +But who can say ? +Both are day to day . +He 's come a long , long way . + He never says no . + I just think about now . +Today was one of those off days . +So it is your own ? +How did it come about ? +But what of him ? +They are just another team . +He 's not very big . +What are we if not a family ? + You want to be first , but you want to be right , he said . +For about a second . +Another is about to . +That 's all they know . + Where did it come from ? +Get to know them . + It is just not me , he said . + You are the only one I want in my life . + I just do my business . + And you know how they are . + There is nt much to do here . +No it has nt . + But that is nt what it 's about . +This country has the money . +I do nt want to be the next to go . +Very few people get to know me . +The season is over . + That is just the way it is . + It 's the school of life . + He 's been around a long , long time . +She did some as well . + She 's been there . +By the way , that 's been going on for a long time . + Last year it was like What 's this ? +It is all part of who he is . + Me and you , he says . + Who was she ? +But that 's how they like to do it . +But who is he ? +He does nt want to be that way . +Here , less would have been more . +But most do not . + I found it on the street , he said . +We will put that right today . +He would not say what he did after that . + What does it say ? +Less can be more . +But we are good too . + Do you have to ? +We have a good family here . +It was music director . +I have to get on with my life . + What 's it good for ? + Do nt do it to him . +What did he get ? + We will get it going , he said . + It just did nt come out in me . +Now they can both get in . +And that would be the new way . + So you could see the city that never was . + What is it ? +People still do nt get it . +That 's two too many . + But every team is out to get us . + What can you say about them ? +Now is the time to be your best . +I just want him out . +I have to do both . +Put it back in . +I do nt want to come home to them at night . +AND then there was one . + It 's not our place to do that . + They had all that money . +But they only show you what they want you to see . + We play one game at a time . +It 's just a little more . +That I said it ? +Not on who should get them . + There are only a few left in the world . +What We Can Do About It . +They are nt all the same . +That will all come . + What are they going through ? + We did nt do that . + No , it is not , he said . +You know as much about this as I do right now . +You get him back up there . + Even if I could go back , what would I go back to ? +They work in New York . +Some were too big . + He was so good to us . + Now , that 's a big game , he said . + You know , I said . +How does one use it ? +But it may come to that . +Is it or is nt it ? +So have some states . +We have one more game . + See that house ? + Me , too , she said . +I do nt see it right now . +We have to get the best out of each other . +Out with the old . +But when and where ? +What more could we do ? +Are we in the game with those ? + If she was American , I think more people in the general public would know about her , she said . +She : I do nt ? +She : Did you see who that man was ? + We are all for it , he said . +That is his life . +If they are in school , what are we going to do with them ? + So , which is the one you do nt want to be ? + And I think we can . + Where is the money going to come from ? +But I do nt think this will be my last game . +But the United States is home now . + They were with me night and day , she says . +But it is not in some of them , too . + We have to show the world and the American public that we can do it right . +Some do , but many more do not . +In Now , Where Were We ? + That did nt last long . + You can do it these days . + It 's not ? + We have to . + There is a market for it . + I just do nt know how good we are . + But I go long . + Well , then that 's the way it is . +And now I think other people will . + But they also know we did what we set out to do . +We would nt think of going out of state today . + No , they do nt . + We will work with them . + Not until after the war . +It would have to . + I like life and what I do . +She did nt have much to say . +And so , we are all used to this . +We could nt do it without them . + I do nt come from that school . +It was nt much , but it was good . +But how long it will last ? + No way at all , he said . +That was my first year in New York . +How do you back it up ? + I did nt see it that way at all . +Just like we can . + The program just does nt work in New York City . + We do nt have any . +That 's what war is about . + He has that right . + What was this war all about ? + So what 's a good day ? +There is not much the police can do . +So this is a way out . +What do we get ? +But there 's not much I can do about it . +DO NT go back . +To me , it was nt . +But they had not . +And what if he can not ? +I have two big children . +So do their members . +So get out of their way . + All I can say is , it 's about time . + Has the time come ? +He will do that this week . +Well , you have to see it . + Who will I go with ? +Here there is more every year , not less . + It 's around here . + We might have some , he said . +He was that good . +There 's only four of us there . +One day , they may get their way . +Only a few were in on it , not all . +There is no we . + But it 's a play . + I know I can do that well , he said . +Now it is down to three . +I may even take a week off . +But they may not have a life . +In any other season , he would have . +But there are some . +When did you do that ? + There are very few people in the world who would . +Come , though , we see now . +Still Political , but . + We are them , and they are us , he said . + How do you get over that ? + You have to say , You are here and you might as well show them you can play , too . +Team -- United States . +Would you like to be president of the United States ? + Now I take that many a year . +Are nt we going ? +But it will take work . + We just did nt know . +It 's not him at all . +But , then , they do not have to . + But now this . +They have a good old time . +But I want more . + To think that it would be the two of us , no ? +But if you see the game , you know it 's not so . + I said , No , should I ? +But that 's just part of it . +Do I want to do more ? +The women were very down . +He just did it . +What will it do with it ? +I did nt know much about that until it was over . +But this game was the best of the three . + He was not into war , she said . +He 's called you at this time to do this . +That 's all of us . +It is now , though . +That was the good part . +For them , this is business , and business is business . +The Good Old Days ? + But we will do it when we have to , he said . +I will do what I think is right . + I said : I do nt want money . +If we go in , how and when do we get out ? +But there will be more . + You do nt think like that . +He did nt know where that many could be found . +You know what I think is going on ? +They are so much a part of you . + It is a way of life , he said . + What they did to us was more than what we did to them . +People want the best they can get . + I do like them , he said . +If I do nt , I do nt . +Is that about right ? +A : It was three million . +But we are used to it . + They do nt know where they are going . +This is his big time , his first season . +It 's not man against man , it 's team against team . + I want to be one less , she says . + It has to be their way or no way . +No way I could do that . +But the United States will be American no more . + How could she say no ? +So what if it did nt work . + It will not end like it did before . + They are good all the time . + Can we do more ? + Well , it is after season . + You have no family . +Can you come out to my house and do this ? + I said do nt do it . + All of it may not be good . + Because we can . +It is just business . +What year is it ? + There 's only so much you can do with it . +Which one should they put their money on ? +They are the only children in the family . +In the end , the play is the play . +Now there are police all over the place . +But you are not like that . +But that 's not all of it . +It is nt over . + It was nt what we had before , he said . +It should nt have been . +She has four children . +Was this the house ? + But I do nt know , he said . +I will have to be President . +Even that did nt work . + That is just what it is . +But we can work on it . +That was one of them . + He 's down . + It could have been you , he said . +They had a good game and I did nt . +It was her first time back . + We just do nt like to use it . + You see that one there ? +He said , I did nt know you did all that . +So it should be here . +How do you know if you did nt see them that they are nt there ? +She is not the first . +She is at New York Law School , not the New York University law school . +But then , we all know that , do nt we ? + It 's night and day . + That 's what people did in this case . +That 's all they want to see . +You never even say what he does . +He could be right . + It did nt work . + You should have been here yesterday . + What do you say to that ? +I can not say how many . + There is no one in the office . + This is the best money in the United States , he says . +Those were the good old days . + I do nt want to , but I might have to . + They say , I want this or I want that . +That is not a part of my life . + But how do you know ? +Is this part of it ? + How would we know ? + But that 's a big if . +It 's a good one . + That was nt all there was to this game , he said . + He said , Do you have to be there ? + War was nt a part of it at all for me . + I have to go home and think about it . +And I was nt the only one . +When , we do nt know . +In New York , all you can do is work . +It was never on time . +That is how it was then . +This is very good . + It 's been one day . +It is nt good for you . +It 's that the other team does nt know if I can still do it . + We are not there just to play . +After all , we are people too . + It is just time . +Show me where the house was . +What do they do with them ? +It 's a family business , and he 's not in the family . +To be one city . +I know right now it 's going to take time . + People come from all over . + That 's what they say . + But I did nt go . + Is nt that what I just said ? +Now back over here . +He had nt been there since . +Still , that was nt the end of it . + I just do nt think so , he said . +They are just left out there . + But it will be one , two , three . + He did what he could . +It 's about each of us . + That 's what it had come to . +So is the show still going on ? +And you can make . + It did nt work , she said . +What was said : He . + We have to go in there and play our best game , we know that . + You should see her . +It was nt that way . +But then , so we are . + He was like : Do nt do that . +They are going to take it to us . +Because they would nt ? +I do nt want a . + Make a right , then a left . + But that 's not who we are . + No way , said she . +I know they are not . +But that was my life . + You are who you are , he said . +But what do we do about too many of us ? +So when you set it to music , they would get what music can do . +This case had five . +I do nt get them and they do nt get me . +Still , there is a long way to go . + He just did nt . + This is big money . +Just who are they ? + They come and they go . + I do nt think it is right now . + Not on your life , he said . + What 's their program ? +That 's what their money is . +Today , they do . +Put us in school . +But that is where I was going . + It will not end , he said . +We are going right back to work . + I just like what I do . +They all may be . + We were just like this team , White said . +In a way , we had . + And in a way , it is . +But several are still around , and some still play . + They have it because they have the money . + I want to go out there and play . +Both had to go , and last week they did . + The last two had still to go . + Then what were they ? +Money is way up in the game . + And she did it . +But I could nt do it as me . + But I say this much . +I did nt know what I would say . +That 's all there is to say . + But when you play with each other for two , three years , you just know . +He said that is all he did . + I made three . +All that and music , too . +He would nt know . + No way , she said . +I think you know that . +He would say no more . + It would nt work , he said . + There were just so many of them . + It 's been going on for years . +Then we go home . + I do nt have the money , he said . + Do nt , he said . +But when I was in , I was in the right place at the right time . + He does nt know any other way to be . +She said : I do nt know . +And what would they say ? + I did nt see that . + We are one group . +You could see it in this game . + I did nt think we made that many . +But it could work the other way . +For me , that 's it . +The other part is you . +That man is never going to say no . +But it 's going on all the time . + I do nt know how much more of this I can take . + But what 's next ? + Life has to go on , she said . +I was like , I do nt want to . +What do you want me to say ? + I did nt know you could do that with music . + One way or the other . +You have to know when to go . +FROM there we were on our own . + We are all one , he said . +It was nt , it is nt and never was . +That did nt go over too well . + But we are the same . + Well , we did , she said . +This is their way of life . +I do nt know what I can do . +Was it too much ? +But we are going to get there . + That 's the only way I know how to play . +I did nt see her . +They do nt have one . +We did it in their home . +Time out , though . +Yesterday , he was . + Will you play that for me ? +But they could nt . + You do nt do that . + But it is here . + This year I do nt have any , he said . +But I know what I like as do you ) . + You see them all over the place . +But this I do know . + We have to make people want to come here . + It 's like home . +Then it was time to go . +It 's all over . +There 's not as much work as there used to be . + Now we are even . +If it was , then I would nt work . +We want to that to be right . +But how did they get here ? +Is it going to be me ? +That 's more like it . +No , he 's said he does nt . +They want to show off for each other . +He did nt say that . + But I did nt want it . +Then who is it ? +I think I have now . + They did and they have . +And that 's just not right . + That is also the most you can say for him . + Today was going to be the day , she said . +And only this President . + How about at school ? + And you could be right there at the place you want to go . + How long did that last ? + But you can work up to these . +That was the big play . + I want her . + I did nt know what to think , he said . +Do you know what that is ? + I think it is . +Did I have a right to do that ? + It 's just not the same , he says . +Was he set up -- or was he one of them ? + They just show up , he said . +That 's all there is . + Some was nt . + He did nt know them well . + What can he do to me ? +Now it has one more . +I might as well have been two people . +It had to be good . + I do nt like going through people . +I think he 's the same way . + Is this what you see at work ? +They have a long way to come . +All that 's over , he said . + It 's not my team , he said . +I said , You come for me too ? +I have found it . +How could I when there are so many ? + What do they all want ? +I do nt know how much more of this I can take . +He said , Do nt do this , do nt do this to me now . +But then , the department is used to it . +You are going to be a team that 's like this . +I should make the play . +How do you know here ? + If we found these people , we know there are many , many more , she said . +I say some of this . +For them , it 's not a city . + Some say they are not . + They just have nt found it . +But I do nt think the public should know about that . +Is it the street ? +There 's still time , though . +It was not to be . +If you were nt a man , it 's on you . +That 's still what we want to do . +There are nt any . +And I still have no money . +I do nt have much to say . + We have to do more and more with less and less . +But do it she did . +What if people found out ? +I do nt want to think about that . + Most of us are nt like that . +We know right where it is . + Where Will I Go ? +Still , it could . + But I would nt know how to do it . + It 's people , he said . + So we do nt do it . +We do nt this year . +I had one year . + People that want to go there are nt the people that you want to have in your company . +It was to him too . + How about that one ? + That 's all you can do . +How did I know it was so good ? +Against what , I did nt know . +Now they own it . +She did not want to do so . +I just do nt want to go there with him . + More every day . + When I come down here , they go up . + Every week I come . +What we can do . +And there may be more a year from now . +Two out of four would nt do it . +They all know they are going to play . +This is not political . +She could go on and on . +I see it that way . + It 's a way of going back . + For me it was like going to court every day . +Will , they were called . +This is the way we have to play . + It could have been . +So you like him ? +What 's going to be next ? +I think that can go on only so long . +That 's not the case at all . +I like me like this . + And the time was never right . +That it would say Come in . +Not to make money . + Music is what I know . +Until the last few years , that is . +Now they know what we are going to do and we do it . +We might not do it right . +People take their time . +But you know you are going to play it over . +This is what I can do . +And , that 's what we did . + You had to go , she said . + I could play here , White said . +But I can not . + What did the President know and when did he know it ? +No , I never did it . +And what did it do ? +Now I think people want to see this , want to be a part of it . +This was my time . +When it is nt , it is big . + No , your right . +Was it that good ? +It 's the best I can do . + You do nt want him around . +They just did not do it . + How about it ? +And more are on the way . +How much , we do nt know . +People are just like children . +That 's only four , five days . + No , that 's all . + I could nt do two , she said . + We do nt want to think about that , he said of his team . + What do you have ? +It would just take one more week . + What did she think of his music ? +And there is more to come . +And he was nt . + A day , a week , a year . + But he did nt say much . +It was only if he called you . + It 's all very public , you know . +I do nt know where it is . +It 's good to see you . + My family could nt get over it . + They have a life , too . +What your program like ? +I do nt want him to go to school in New York . +What is her own ? + I said : I do nt want to be around that long . +Which would be the end of him . +Until it was nt . + And that 's what we were . +I do nt have to play . +Would he do it on his own ? + Do nt I know you ? + But it 's the way we do business here . +Does he want her to ? + Come on now , he said . + They did nt make it . + I do nt think we do . +And she did not . +So in a city like this , you work . +But I like that . + Want to come over and have some ? + Well , not him . + That about says it all , he said . + This will take a little time . +I do nt think that 's the way to go . +Do you know what they were about ? + We did more business this year than last year . +By then , the game was over . +And that 's the right law . +I did nt say any of them . + I know what it is to be down there . + It was time , he said . +Well , we never made it back to the game . + But no , he did nt do that . +They could be a good team . +It 's one game now . +The night will be long . +She does nt think so . + New York is back . +Now we want to go after some more . +You know it was nt . + I see what 's going on there . +You just make money . +It 's time we do that . +We all know they can do that . + That 's all right . + I had to know . + Well , what was it ? +But life do nt work that way . +I would nt say that at all , he says . +Any of us would do that . + We do nt do it for money . +He is in good company . +I should nt have to go . +Not this , not here . +He 's his own man . +Not for long , though . +And there is much more to come . + As you like , said the man . + I think it will still work . +All year long you do business with me . +After what 's been going on ? +There have been more than . + What did we play in last year ? + We can only do so much . +We had to get to know each other . +What has family to do with her ? +Today there is a country . +What will the city be like this week ? +But that 's not all he 's up to . +But I still do nt like it . +They could say , If she can do it , I can do it , too . +I said , No , he 's right , you are on second . + What 's going on with you , man ? + It 's big , he said . + They are going to have to come back with much more than that . + She does nt . +President , what do you want to do ? + I do nt want to do this , and I do want to do this . + We did it for him . +New York City is my life . + It just has nt been like that . + Are you in school ? + I was , like , No way . +But that might be good . +This is about our country . + I used to have five , she said . + What Is a Family ? +I want to do this . + It 's not about play , he said . +And they come back . +They just said no . + I want my children to see it with me , he said . +We were , very much . + Now , it 's not . +We want to get people here . + I know I can play . +That 's what the people want . +The women had not . +But for years and years before that . +These are the people who are going to go back . +Who is nt good ? + It 's not a good use of public money . + It is like your house , he said . + I like when they say that , he said . + No way , no how . +It 's not my business . + Now he can also come down . +But for now , they will be on . + What you want me for ? + I think he did want me to go there . +He was a one off . +He will not say what . +Any of the three would do . +You never know how many more years he 's going to play for . + But I could nt take it . + This is New York , he said . +So , where were you ? + He said , No , no , it 's not . +I said : No , you do nt . +Did you know that about her ? + It was just the right time , he said . + How did you know ? +I do nt like this . +Is it too much ? +The two other children are in high school . + At the end of the day , I have to go with what is best for New York , he said . +You do nt know what 's good and what 's not . + It 's about that time of year , is nt it ? + Now that 's what I do . + It 's going to be a war . + This year we would have had to take it out , he said . + This is a first . +As do we all . +And so what did you think about those ? +How can I not have it ? +Then one day it was over . +I had nt called that play all day . + I still think about it . + It was money . + I should have had it . +But this may not last . +Your game just has to be there . + And who 's that ? +Now I can show them I still can play . +If I did , I would nt work with him . + There is still so much I have to do . +And they might not know what to say . + A few days ago I had had it , he said . +This is where I have to go next . +She said : No , no . +People were out to get him . + But that 's the market . + It 's good , he says . +One way or another . +There is so much this country can do . + It 's a new day . +For another , I was going to make it home . +Then you go to school . +He was down , but out for good ? +I just have to . +It was never going to be me . +Do nt we do that all the time ? +But where will people go ? +We will not be the same . +And now you know . +But he did not want that . +That 's the big game . +And that 's good , is nt it ? +I was there first . +They do not have money . + There were nt any . + I just want him home and that 's all . +I do nt want the city 's children there . +I do nt know if it was there two or three years ago . + But now is the best time , she said . +That was so much not like me . +A : I do nt think so . + Just one more time , I said . + Also , good . + This one did well , too . +We think it 's the way to go . + Well , I do , too . +You do nt have any money , I know you do nt . +But people did nt go see it . + But what can the police do ? + I do nt think that 's the case . + If there 's a will , there 's a way . +They have two children . + I do nt know how many more years I have . +Another may be on his way . +And so it has for me . + Then yesterday , I had another one . +That 's good -- or is it ? +A little more time , I think . +You will , until we get to you . + People say : Well , it 's your second . +She was nt the same when she left , she said . +It was five days . +It was nt before . +Not this week because the team has no game . + It is not for us to say . + To play all over the place . + If not , that 's life . +We do nt know how to market . +You did know that ? +I was there all the time . +They made her that way . +Now , it does nt . + Many of the people come back many many times . + I like that , he says , I like that . +He did nt have to last night . +We set to work . +Because you should have . + Most people will , she said . + They are both going to play . +See me work , see him work . +After it 's over ? + This is just another game , he said . +The law is with us . + Well , I do . +An out where there should nt have been one . + It 's my home and it 's our life . +And he did well . +What is it with you people ? + They could just set this up and have it play , he said . +In any case , that is how we did it in the United States . + People are second here . +I do nt take it home . + But that was not these people . +We just go on and on and on and on and on . + Where do you want me to go ? +So that 's what that was . + This is just a game to some people . +But it will be high . + It time for us to go . + It 's not good , he said . + How do we want him ? +That , he said , was over now . + She 's only been here a day or so . +Which he was nt . +It did nt used to be that way . + We did , all of us . +But I can say I did it . + We like it the way it is . +This time he does it . + I like to think back on them . +But we make the best of it . +But she did more . +We just did nt know how much . + That 's not what this team is about . +But we just come out here . +They had no children . +But he has not . +I do nt have a life . + He did nt say This is it . +We want you to go on . +Here was a show with all women . + It is nt like it used to be . +He is the man . +Over there you do nt even think about it . +There 's much more . + My life is my own . +And that 's what the New York law is . +I think there 's more to it than that . +Or do we want to go back ? +Do nt come at me . +How to take this country there . +But I did nt know that . +So what 's it all about ? + It 's just going to take a while . + This is who we are , he said . + I never said I could nt do it no more . +And we did , every night . +Which is most of the time . +This is part of my life . + If it does nt , it does nt . +You are very good at it . +She is a good director . +That was nt the team with us all year . +But now they are nt . + And it was out there to do . +There 's only so much you can do . + If I was nt , I would nt do it . +They are our business . +Who Are These People ? +If they make them , good ; if they do nt , that 's just the way I play . +And we are going to get him . + There 's only one first time . + It 's not good for him . +You could have had me . + They said they will be there . + They said : How old is she ? +The state was not . +Still , I did nt want to go into the business . +It 's what we had to do . +I want to see people . + Where do I know you from ? +They were out there every day . + There 's no one out there , she said . +But he is the one and only . +He does nt do this . +What 's the use ? +We have two children . + Was this my best game ? +So out with the old , in with the new . +But this time , it did nt have to . + And who would nt want that ? +Now it is up to us . +And now is not the best of times . +You do not know him . + I was with her . + This is your world . + That 's not his life , he said . + It was another country , he said . +But so are we . +Take me to another one . + And I did nt get it . + This game is today . +But that 's not who he is . +Now , they do nt have to . +There 's just no other way to put it . +About three years ago . + And that is ? +But the government does not want that . +IT could also work the other way . +Now he is out of the political game . +But how to get it ? +Now what are you going to see ? + Three , he says . +But he had no place to go . + I used to see him for three days a year . +And that was our world until now . +But they can do more . + But the market was up for the year . + It is nt over . +He does not own a second home . + Who does nt want to play here ? +But not during the week . +How can they do it ? + This was just another one . + Was it two , three days ago ? + I would never go there , he said . + He 's as good as we can have him . + That is nt it . + They should nt have left New York . +So , which team is on the way up and which on the way down ? +She did not say who they were . +And here she does go . +That 's what New York 's about . + He did nt have to say more than that . + So we are back at , what do we do ? +Do we want it to or do we not ? + Few people know him and now the world will have to get to know him , he said . + They are not in the market right now . +Who would nt have ? +But for the most part , you did . +Two years ago , you could nt get through at all . + We are not into war , he said . +We have this state today because of him . + That 's what I want to do now . + This just is nt a part of the city you can see any other way . + The more you get back , the more you want to get back , he said . +That , she said , would take more time . + It 's over with , he said . + How could he be ? +But there 's no way . + We own this one , he said . + You do nt know what we are going to do from game to game . +And so it can go . +It 's just put there . +But they did not know what business . + It could be his year . + Was he the one -- ? +FOR THE TIME BEING . + This is a good place , he said . +The money can not come back to us . +We would nt do it . + What good are they ? +The way he did . +He 's right over there . +United States , New York . +I just play the way I want to . + Do you know what day of the week it is ? + I said to her : What is this ? + I could nt get through the day . + Five years is nt a very long time , he said . +But it has all made her think . +Or would they take what they could get ? + And that 's how he was . + For it to work out -- that would be good . + He 's going to do well . + It 's not the end of the world for them . + What 's your week like now ? +But I still think we are going to do it . + I did nt know her . + People used to say , What good are they ? + I do nt know where to put it . +Where are they going to go ? +But how long is too long ? +He said that he had not . +I have to like it . +I want to play next season . + I would say : So ? +But this is part of being in this business . + It is for the country . +But it 's not the right time for that now . + I said , This is it . + We did what we could . + And we want to get this right . +Do you go after ? +They want you to come . + But now I get it . +On another night it did not . + No , no and no . +And how was the war ? +This is your time . +That 's a game you like to play . +Where did you get that ? +He does so very well . + And so I do . + We will have to do business with this Government . +Was that a first ? + This was my first time out of the city . + What can I do now ? +It is our world . +Every team has to show up for a war like that . + I have to have it , he said . +They said they had no work and little money . +There it is , he said . + All set , he said . +Not that he has to . + She will be the first to go . + No one will want me . +That was the part I had to get over . + If I go , so be it . + Not very much . +This show is over before it 's over . +Well , so do we . + He did say that . +And she was , and she was home , he said . + I think so , I say . + They left him on the street . +We made it so . + I want to be the first one off , he said . +We know each other too well . + So you do what you have to . +But she said she did nt know where he was . +I have more work to do . +Now , it could . +But they have not . +This is a business like any other business . + There is no place like home , it said . +In her own time . +But I found one . +And that 's good , though . + What did I get ? + I was out most of the year . +It 's that , too . +Like all of us . +If you do that , more money has to go to them . +There has to be that way . + There 's a life over here . +No , that does nt work . +What can the American people know and when can we know it ? +How did they do that ? +Even after play was over . +What does it know ? +The people there were very good to me . +They think of it that way . + This is between the two of them , she said . +Do it at home . +It was nt the best children 's part . +Does it even want to ? + I could be at work and be at home at the same time . + We are at war , he said . + How many people want to do that ? + For those who know it well , it 's part of the game . +And the year before ? +Today 's been a long day . + It 's all very new . +I do nt know if we were that way last year . + How good do you have to be ? +Who will police this law ? +This time , it did nt . +Where are all the people ? + We just could nt make it . + What do I want to do next year ? +As for New York , he says he will be back . +I might as well see what 's out there . +That 's all I can do . +Here is what they found . +But I did , every time . +They have had to . + There 's no one in my way . + They are like another team . + He is right . + I do nt , you know . +Do you know a good place to see them ? +But that 's not where we want to be . +See what she did ? +His team did nt get much before the season . + Because he can . +This is my first night . +The game was still going on . +So , what 's left ? +It does what his music does . +This will be with us for years . + It 's not new . + I just do nt think it was any of his business . +And then they did . + Now we do more of it . + But each to his own . +It was a show . +It 's me all right . +But now is now . + Who would that be ? +Will the West still be the West ? +It was not , they said . + It was all business all the time . +You know , we are used to this . + What you want to say is : This is my office . + Now this , he said , is more like it . + But I do nt think this is the time . +The season will be over before you know it . +He could play , too . + No way , she said . + Then , who are you ? +I did nt think so a week ago ; I think that today . +No one could say . + I was like , She what ? +They can play without her . + War is a war , he said . +I could nt see . + I should be on the street . +A Show of Their Own ? + When did he know it ? + After all , she said , where are you going to get another one ? +Right now it 's the other way around . +And where do I get them ? +And , in a way he had . +No , we are not going to do that . +We just work here . + You know what I think it may be , he said . +But it was not the end . +He 's a family man . +And more may be on the way . + It is the same old same old , she said . + What is a government for ? + He said he was here . + He said : What do you want to do ? + That is nt the time . + I do nt know who this set is . +They still have it . + I do nt think it 's that way any more . + That 's how good he is . +HOW DO THEY DO THAT ? +Where are they going ? +I think of it as me going against him . + But it 's over with . + But the people who work for him think about that more than he does . +So how does he do it ? + Who 's there ? + It will be against our will . + I did nt think that at all . +But is this a play ? + Well , how about that ? + Could I go back ? +He 's still going to make them , because he 's so good . +But I did nt have time to do that . + I would nt go in there , she said . +Then little by little they did . +Another said : Come on . +I think it 's going to be around . + Do nt just do it for them . +My life was over . +There was very little to do . +Well , how did he come back is what I want to know . +It is nt what it used to be . +It 's like you are never going to know . +This may be the only way to get money from them . +People come to them for money . +It 's just all music . +All but four are in New York City . +You do nt know what to make of that . + Three people are nt going home today . +Did they make it all up ? +With that , she was off . +One to two years . + If he said he will be here , he will be here . + We still do nt know where the money is going . +We just do nt know when that will be . +One day you will get it right . +It just has to be . +In his first one ? +You could get used to them . +She was part of me . +That 's not what is called for . +Still , some good may come out of this . + There is nt much to see . +It 's only a game , after all . + Then we can all get back to work . +So what was down ? +Are there more to come ? + And are you ? + And that 's not what I said at all . +There 's no end to it . + He did so well in school . +They did not , but now they do . + But this is his time . +You could be one of us . +This could take many years , or it might not come at all . +It will go on for two to three years . +What are they going to do with it ? + And that is all . +It 's not our market . +All the same , here she is . + The more I called , one had to come through . +I would be , too . + Is this all right ? +Well , not by . + It could be in several states by now . +What would I do ? +That 's not the way to go about it . + I just do nt know how you do it . +Are we at war ? + The next time , I go up for a long time . +He had to and he did . + That 's the business we are in . +No , but so what ? +Still the same to me . +If that is the way it is going to be , then that is the way it is going to be . +His family did not . + I do nt know who would nt want to work for him . + This is not one of them . +He had a way with people . +We had just one . +Like I said , he 's one of the best . +Some never come around . +Not a few times , many times . +And how does the Government know how much ? +Too many of them never will . +And that 's the only way I know how to play . + But it should nt be that way . + I just found that out today . +Life out here is nt what it used to be . + These have to be the same two that were here last year , he said . +That is the way it used to be . +The street is all I know . +He had his own company . +How did you get out ? +He has to go home . +And then get to work . + So how was school today ? +We have a team that can do both . +Now people come back with their children . +I do not know what it is . + But I did nt . +It was good for us . + There was nt any . +It 's for one . +Then we are back at home . +No , I do nt like it all . + This was one we had to have . +And you know it and they know you know it . + I do nt know my left from my right , Law said . +They were here first . +You have to get it out . + I do nt think like that , he said . +It was also good business . + Do I want to go home ? +But would they go out of business ? + He 's right , because it 's not my money . +And they found one . +It 's been there for years . + So you see very little , and you work very long . +He did nt want to know . + He just does nt work that way . + But we are . + Where will he go ? + I do nt think we have much time . + Now you see them , now you do nt . +It could be less . +What is it about ? + I just want to go home . + He 's into that . + But I think it was more than that . + I know I did . +They make the most money . +We want what we want when we want it . +I said , You should get one . +You know : Show me . +If they could make it , so could New York . +But this would nt come under that . +This is what we are here for . +I had to go on . + I do nt want to play . +And now I do nt have a place to work out . +But it is up to us to make it come . +But he 's game . + He just would nt . + Just not this time . +And by the way , they were right . +It was nt like , this could work . + How Long Can He Last ? +But even that would take time . +The only way is in or down . + Today , I do nt think you can say that . +I was never like that . +I think we are well on our way . + And there is this family . +We have the home court . +So now it is time for me to make my own way in the world . + They know their time will come , she said . +Put me in the game . +You do nt just do it , you do it right . +We are not where we want to be . + The market is my life , he said . +But I think I will . + And he 's still there . +And where do they all go ? +The American public has a right to know what 's going on here . +It should nt have to be that way . + There 's no one here . +It 's a way of life . +A few people did just that . + And they have nt . + How Long Is Too Long ? + She 's all over the place . +This is a white man 's country and a white man 's war . + They just want to be good people . + We do nt want people to know less , we want them to know more , she said . + It 's a long year . +Then , No , a little to the right . +But I did nt know . +To that , I say , not any more . + We know what we did . + In your case , I do nt know . +If it 's right , it 's right . +It might not be you . +There are so many people who want to do this . + It 's up to us . +The President said that was not so . + It could be , he said . +Well , he did and he did not . + He 's one of them . +You do nt think of them that way . +You do nt do that . +So , we are right where we want to be . +That 's a first . +How does he know this ? + You get to know people . +It was for her . + It is time for this to be over . +On a good day , that is . +You can put this game on me . + And he said , What should we do now ? +Make a left here . +And he called me the next day and said he would . + They were up there , not here . +And that 's made us like him even more . +This is going to take some time . +But it 's just like that . +They should not have to . +HE still does not get it . + Some day we will be with them . +Not only from my members but from my own family . + It 's still so long to go . + There are just too many of them . + He 's right to do that . + But it 's not up to us . +Case in New York . +They want to have it all . +I had to go after them . +If it 's not you . +This is good for me . +Well , every season has some of those . + But what about people who do nt ? + Do nt know what it is . +What has been going on ? +They were just too good . +Who will be next ? + There 's no one way to know what you are going to get from us . + I said never do it . +The money will come from the state and city . +But no one can use me . + It might as well be now . + He was on the street every night . + But is it good ? +Where 's the Market ? + It was during those . +Did nt he know how old he was ? + That 's not the way I do business . +It could nt have been . +It does nt work the other way around . + Is this the end ? + I did nt come through . +This could be a long season . +This was one of those . + You do nt want that ? +It is just there . +If you are not good , what are you ? +All the way in the back ? + But we do nt know that right now . +And it does nt even make money . + People do nt want to be in court , he said . + We know how to do them . + I want a house , she said . +Today , companies have to do much more . +That was a long time ago , man . +He said he had . +The women have this part down . +I think that is him . + Now he is . + If not , her time will come . + I work here , I know . + This is my last , he said . +We all know what 's right . +But they are among the first . + It 's their team . +I had had three . +What would be left ? +He 's not around . +But he would also like to play , if he could . + This is more of a business than a market . +But out here on the court ? + Very good , he said . +And they will still be here . + Well , this is it , she said . +It 's good out here . +It was a new world for me up there . +It was as though I was nt there . + It can not be both . +I can not make it without him . + Do nt know , she said . +It is the government 's . +And who is we ? + This will go on for a week . +It does and it does nt . +But not all of the world . +It is two times , not three . +It 's all about who we are as a people . +It has been in use for only a year . +Do we want to go back to that ? +See , this is what the man can do even to me . +It 's still only yesterday . + It 's my life , he said . + I have to see him . +That is going down . +It was nt there . +And they go up and down . +What 's it called ? +So he is out . +I just want it all to be over . +It was what the world did for us . + Because I have no time to do it , I do it in no time . + We did nt go over there to end up in a war , she said . + I have to think so . +But you know when you have it . + And he said , I want to do it . +Where had these people come from ? + How did I come from these people ? + I get up in the night . + Any place I can get in , he said . + And we had no money . + We were nt going to get it all in one play , he said . + And about me , he said . +But that 's John . +Have it your way . + I think that is right . +How could there be a show ? +They like you , they do nt like you . + I have four children , she said . +Could that be it ? +No one 's going to come out for you like that . +I know him now , a little . +They were just there . + I do nt think it will put him out too long . +It 's his office . +What about people who did nt ? +I know that was not the case . +There 's no money . + I do nt do much now that I do nt want to do , he says . +They are the same people as us . +But it is going to take time . + How can you get used to that ? + There 's only so much you can do . +They just think it is so . + All those years , all that money , all that work . +People come here to see them . +Would I like it ? +It would nt be right . + That 's where I want to get here . +But I do nt know what 's right . +But business , he says , has been down . + This is what you see now , he said . +It is not the first time . +And where are you going to get one ? +But that 's not at all the case . + There 's a week here or there , he said . + What 's up ? + And she said no . +I want them to think about it first . +When they do that , we get them . +How much do you want to get it . +You know it and I know it . + That had never been a market for us before . + What do we do now ? + And I have no children . +But in the end . +She could nt see . +Now we get it . + I was not here then . + There 's no other way to do that . +It 's been that way for years . + I did it for you , he said . +This time was more than that . +Not what they know , but what they do nt know . +And this is what we found . +No , they are not . +And money is what it is all about . + They should by now . +Now there are only three . + But it did nt last , he says . + So , then , may I go home now ? +President , What do you think ? +I work out every day . +Now I can say I have . +I do nt know how you get around that . +And this is what we get for it ? +It is about time , too . + Is she out of the can ? + I think that 's what made me go out with him . + We do nt think it was . +I say go for the new . +We go on to the next game . + They would nt know what to do . +And so I did and that 's what you have . +How do they think ? +I think he will be . + They say they take it one day at a time . +So we are going to work on that . +If so , How ? + There was life there . + One of those days , he said . +We did nt do it today . +We are like a family . + That 's the same as any . + I did it - that 's all I can say . +This will take work . + We will do it . +It was her home . +Still , he said , the company said no . + You can put that out all over the country , he said . + You get through to them . +They know what this is all about . +Before yesterday , but not after it . +What 's That You Say ? + This is a good year . +I just do nt like him . + They do it , she said . + There is nt much to them , is there ? +How has it come to this ? + We have to get there first . +Some would say too good . +But he say which team . + I only know one way to play . + How come you know so much about me ? + She 's not right . +That was the high . +Me , I do nt like any of this . +Now I just want to have a good season . +Five of their children work there . +I do nt know how he will get around that . + The people like him , he said . +I do nt want them to be like me . + It was like he was a new man . + And you should nt . +People may say because of me . + They should nt have , he says . +She said : I know . +It has to be part of the team . + Get up and go . +Can we go see him ? +Only it did nt work that way . + What did you do then ? +We know what it 's like not to have them . + Come back and get it right . + What 's going on now , I do nt know . +It 's what 's around you . + They can be right in your family . +But he 's American . + That 's not the case . +So who 's right ? +They were on to me . + This is just another one . +What to do with it ? +Who was I to do so ? + He has all that . + I do nt know what that was , and I do nt want to know , he said . +There have been many like it . +I said , You know what you are in for ? +Well , do nt . +And the President of the United States ? +There were no old people . +But for me to come out there and do what I did today . +As do his own children . +And they used to be down , too . + But I do nt like it . +They had two children . +But he still put his family first . +He was a good man , he said . +They were last week , not this week . +They said no way . + Where have they been ? +It 's going to come . + You have to do your work . +Or was it made up ? +Now it 's only me . +I do nt know if it is . +And that was only this week . + If I see people , I see people . +He would not say how he did it . + We would never have had this if he were here . +He did what I said : one year . + But this is nt just work , it 's life . + What is this one ? + But there so much more to it . +But he is a good man . +He just was nt very good at it . +Does nt he have a say ? + I do nt know how much time there will be , he said . +You can make a season out of each game . + I think he 's been very good . +And , you know , he does nt have to do this . +And that will be the end of it . +That 's not so good . +It is the only way . +Do I have to ? +She may have a case . + That 's the way people see me . +But not by her . +This one was more like it . +So it is like home . +It 's just me . +More like the good life . + I still own that , he said . +No , no , not at all . +She does nt get the part . +But I know that 's going to take a while . +I see some of that now , also . + Well that was nt for me . + Where do we go from here ? +It 's time to get to it . + I go down there for you ? + What use is she ? +What would you have your children do ? +Music was never the same . +It 's her program and it 's her team . +Way to come through today . +And she said , This is for you . + How could you not ? + Because that 's what it is . +And now for it . +I put it down . +And just in time . + People might say , Who ? +They might not be around in two years . + Our children are used to that . + But I do nt think they will make it at this time . +But just when will that be ? +You were just the best . +Then you can say all you want . + But we do nt know , she said . + It still does . +This one should be good . + We never used to do that . +I should nt have . +And when can it not be found ? +But she was not the first . +That does it for us . +And what do we get out of this ? + There 's no one . + Now they are part of the world . + If we can make it through one night , we can make it . +One place is as good as another . + What they say is between me and them . +The way he was so much a part of their New York . +They did the other night . +Now , it might be . +We have a right to . +He did it the American way . + Our best game all season , he said . +Does it all work ? +I think about him every day . +Is that what I did here ? +Now if we only could see it . + The year after that , there were a few more . +Some say it never will . +Now , this was more like it . + Well , that 's because they do nt know how . + I do nt have any money , she said . + Which do I want to do ? + It 's not for me . + It is all they can get , he said . + It will be good . +Some are on their way . +Now you take it . +They are just like you and me . + So you have to come every day . + We come to it at last . +Then he said he was . +Some have since come around . +It had never left , you may say . +But then , were nt we all ? +I did nt want to be left out . +You might never come back . +And it just may not have been his time . +What 's this about ? +We go to the same place , but not at the same time . +This year , there are only three . + There 's too much of it . +You have to get me through today . + You are right , I said . +Now , children , over to you . + I can go out at night , he said . +But what do women have ? +And that 's not all , as the man says . + It was a big , big play . +And it 's just like , What did you think this was last week ? +I could nt even see what it said . + So we are back , he said . + He had to , she said . + He say , I do nt know . +They are as good as any I have had . +It was up to us . +Go back to work . + It 's a good time to have it , he said . +I think they have to be . + We do not want war . + I think that was good . +I did nt have children . +So what does a family get for that money ? +But he 's much more than that . +This is about home court . +But for the Federal Government , it is new . +Or not to have it . +I go for three days . +Well , now they can . +Just all over it . + I say use it . +How can we if she does nt ? + But there 's still a very long way to go . +But what should we do ? + It 's a big family , she said . +So , that 's it . +What about their children ? + We did nt know how to do this . + That 's all we are here for . +The war 's come home . +These are just a few people I know . +But it does not end there . + I think about it all the time , he said . + Not this year , though . +But what about those who did nt make it ? +But that 's not the case all the time . + But only one to make war . +Now it is all over . +It is good for business . + Just say No does nt work . + Every week is the big game , he said . + Women , he said . +The money 's there . + It 's like we are in the same family . + But most people , what are they going to do ? + No , the President said . +Three for the money . + It 's what I did all day . +It was , and they did . +No time to think , much less to play . +And if so , how does it work ? + They come back every year . +It is the best part of the show . + The next day I did . + It 's not about me and him . +Well , I was nt very good . + I just do nt know what to make of that . +They have to get it . + He just did . +I say : just . +You are in another country . + But it 's going to take some work to get there . +And the next night too , and the next . +It did nt work out that way . +And then there were three . + We like it here , she said . +You know , here 's what I found . + That was the only way I could get a game . + But few other people have that . + More , she said . + And how do they play ? + He was with the president . +And what I did not know was -- I did not know that . +With a new First Family in the White House , where do we go from here ? + I think it 's part of our game right now . +When are you going to make some money ? + I was there , I said . +Until the end of next week . +Not that he would even have time for them . + You get people at their best . + I think we should have more of it . +You can do that in New York . +It 's been a year since you left us , Will . + It was his last new work . +I do not know one family that does . +By then she did not have to . + That 's part of life , part of being on the team . +He had never had that . + Most people do nt know that . +They want us to do it the same way they did it , and it did nt work . +It should nt even come down to this . +He 's been through this before . + But when they get back to the office , they still have to make money . +And now we are through it . +But there it is : go for it . + Not the case , she said . +But he was also the best . + I know you . +Now it is back . +I do not know what it was . + It was nt just the other team , he said . +This is where you end up . +I think it 's just the other way around . +What does go on here ? + I did nt like that very much . +This year it just was nt our season . +We all could have . + So it was said . +That I could do that , too . +How do they make any money ? +So what are you going to do ? +Does he know where she is ? + That 's good for him . + How long were you out ? +He did not have to . +I just do nt think about it . +Even now there are so many people around him . +She did it all . +I think I did that . +What is the best way to do it ? +And if he can not ? +It is a way of life . +You get to know them after a while . +I know I can do this . +But what can he do . +Two are in the show . + I was in New York for a week last week . +Does it do that ? +Not last year 's team ? +We have too many now . + I know I have the game . +We are going on with life . +And this was a day off . + That 's all she said . +We are a business . +That 's to the good . + To be or . + He 's not even going to be there , she said . + How did I not know that ? +But he called , just about every day . +Four were at home . + Now they get it on their own . +But no one said that . +What , then , is a good one ? +This is some city . +So you do nt have to do all of that ? +What does that one do ? +But we want to . +This is no good . + It was nt . + We are not out of it . +I do nt know what they do in there . +But they should nt do that . +He was not used in the game . +Who said they did nt ? +Do we go back to that ? +Not many people would be up to that . +But he can now . +It would be good for them and good for the city . + When does life end ? + I do nt see one . +Would nt do it . +If they want to be there , they will be there . + I had to do that . + You do as much as you can do . +And so the President and his team had some time to work . +When will that be ? + But it 's a long way from where we want to be . + Where are all the people ? + Last night they were still in the United States . +You did nt say you were going out . +It is for them that we work . +But these people have been good to me . +And that is what we had here . +They get used to it . +Some had more than one . + They called on me . + I put my own money into it . +Where will they be when I have them ? + I think it does . +You made our night . +If only it would . +I do nt even know where I can get into . + You know me , he said . +Now , they are not there . +It 's a long way . +I did what I could . + I did nt do that last year . + I know what they are going through . +They have to do their best . + In those days , it was nt . + He would be there for me . + We do it so many times . +No , not all . + I did that three times . +They are like my children . +Most of us do nt . + There is no way to make money any more , she said . + I know , I know , she said . + People would come from all over the world , he had said . +You make money , too . + They get to know me . +But not like before . + But she 's still the best . + We are still at the same place , he said . +More than a little . +And not only that , they put children first . +We do nt have any days off for a while . +Before then , too . + I want to go . + You are not going to . + This is not for children , she said . +For much of this time . +And there will be more war . + And who says they should ? +But I do nt know what that is . +They would nt come . +He just made a play . +If it 's my week , it 's my week . +I did not want one or the other . +In New York , there are a few who do . + But he could be first . +I do nt know what I was down about . +And she 's very good with children . +Yesterday was one of those times . +And that 's all you think about . + I should be there when they come . + We were nt that good . + And what do I get for it ? +That 's a new first for you . + I do nt know what to make of that . +And that 's what they are going to do this time . + It 's not public . + And we have nt been there in a while . +It did nt have to be like this . +It 's all one . +As well they might be . +And I do nt see that . + That was big money in those days . + It 's not that they want it . +Former President of the United States A . +There 's only the life that you have . + You want to know . + If it 's my time , so be it . + After all , these are children . +So what do you do with it ? +Even so , he used his time well . +Can you get it ? +And if she had not ? + But it has to be next year and not this year . + And many of them want to do it all and see it all . +He 's too old . + I never like to play this way . + We end up with , He said , she said . + But this time we are . + I know they put you up to it . +I do nt see them in the street . + You know what people say to me now ? +They were good ; it was good . +Now they have it . + You do nt know what they are going to do . + We could go all over the country . +They all think she did . +I think there 's a way to do it . +This is the place to do it . + But he did it . +That is just the way the city is . +He is not going to be our next President . + They do nt get it . + We have nt had to . +How did they get here from there ? + They just do . + We just have to get him home . + No but 's . +But who says that will work ? +And less than that . +We could nt take it . +But that may be a while . +It says , I know what 's going on . + There will be a few of them , but not too many . + It 's good for the world . +This is all well and good . + You see this , she said . +This one 's no good . +Because that is where the business is . +That can be part of it . +I know I was nt . + Where can I get some ? +What will they do next ? +I think we will play it that way . +That may well be . +Are you a man or are nt you ? +He used to get up and come at you . +We were just going to do it . +It 's the first time for me in a long time . + I said , Where have you been ? + If you want to go to school , you should go to school . +What was this war about ? +IT is a school day . +If he does it , he does it . +I do nt know what they do . +I have nt made the big play . + And I said : That 's it . +We are the children . +He 's in and out . +He 's more to the right than the left . + And I can not see her . +Who would be left off ? +But it is nt so . +And that 's what I did . +You do have to go for it . +He did nt know where he was . +Well , she can . +What would you like me to do next ? +Would she make it ? +When and where was she found ? +But it 's only a play . +That 's not what we want here . + But there was good in that game , too . +But if you are with me most of the time , you the man . + It was the best , he said . + It 's no good if you get there and that 's it and you are just up there for one week , he said . +Then they put it back . + Can we do this every day ? + It 's not how old you are , but how you are old , he said . + But I think they will do more . +It 's just another place for them . +He 's not here . +You say , Time out . +I had the right to a place in the world . +He 's been with us for some time now . +But he does not have as much time . + We do nt know where they are . + I did nt want to know . +He had said it all . +As long as he could see , that is . +I did nt used to get it . +And the very few . +Women are going to school . +We want to be in this market . + I did nt even think about it , she said . +I do nt know any other way to go . +Would nt you be ? + I can not go back there . +And in his place of business . +But they go during the year . +You get to see more . + From then on in , he did what he had to do . +There is no other like it , they said . +I also do nt think they can go back to what they had before . + I think if you can make the season work , you can do it this way . + Now , she said , people will see . +How did this play out ? + There was no life in here . +It 's not part of her life . +And what does he have now ? +I do it to do it . + I like to do that . +And just how much money does he make ? +The city was too big . +Most work in New York City . +I will just do the best I can . + Is there still a long way to go ? +Well , no , they are nt . +But then , he did nt have to . +But I said , No , it 's not like that . + What school are you going to ? +And we found it . + Is this about right ? +You are the Man . +What does he want out of this game ? +That 's what they do . +We are not a market . + What 's a Family ? +You think there it is . + We can do that , too , he said . + But you do nt have time to think . +But that will take three years . +One for all and all for one . +They just had to go out and play one game at a time . +I do nt know how to play any other way but the way I play . + But who would put the money in ? +And do you know , he was right . +There were three other children . + For the children , no ? +We are just going to do it . +I will make a good war . + But it 's good for us to have time here . +You do nt have to think about it . +That is , after all , her work . +But how do you make any money ? +We never say no . +Which is just what it was . +You might like it . + That would be good , he said . + Now they will be . +Now he 's going in with our first group . + This is nt going to work , he said . + I do nt know , it 's been the same people over and over . + Last year was last year . +But she has nt . +You do nt know much about him . + I do nt think I want to be in that , he says . +When it 's Big . +I will say that much . +If only that were so . +And we should nt . + From A City Year . +He 's a man 's man . +That 's a long time ago . +She should be up there . +I have a long way to go . +He and his family , I know all of them . +I have some money . + No , it 's us . + This is not time to play . +It is also its best . +He is also one of its best . + It 's the last game of the year . + I do nt know which is which . + So they go for it . +There were white women . + I just know how to do it . + See you then . +In the city they have the former . +Well , until his other play of the game . +You go out there and take it . + You do nt know what is in there . +And which was he ? + There were so many people who did nt have very much , she said . + I said to him . + New York is a good place for business but not for life , he said . +He did nt know her . +Will he be back ? +We have our own money . +But you never know in New York . + It should not have come to this . +We can play the game in every country . +And what is home ? +As for a high ? +Now is not the right time . +At the same time , all I can do is be me . + Now we are going to the White House . +You have to make it into a home , she said . +But where was that ? +Not good like you . +He did the other day and they called only one . +When will you be back in New York ? +Business is going well . + It 's been a long year . +They just want to make money . + They have no money , she said . +So they get out . + He made her two . + I did nt know what I was going to do ? +But still they think about it , of being out there . +There was more money around . + What does he get ? + There was nt any of that . + It is nt over until you say it 's over . + Only the music , she said . +This President is not like that . +They are him , and he is them . +People come to see them play . + But you know , it may work out for the best . + No one will last as long . + People may not see it as much out here . +Work , work , work . +And to all : a good season . + But we do nt want to be used . + May I show you around ? +But we can do that . + He did nt . +But that 's our way . + We did not , she said . + It was nt here . +But the case is not over . +But , you know , it will be good to see him , too . +We are where we are . + It 's the first to go . +Where will he go from here ? +How many women are there ? +I work from the music . +What 's going on back home ? +We had our day . +And it 's been a long season . + And he said , Only you . + I do nt do it well . +Or , he said , they did nt want to . +It was never the same the next day . +You just have to do it . + It 's going to take a long time -- more than five years . +So that was what we did . + I did nt even know it was him at first . +I would nt do that to him . +Most people do nt do it . + They are no good . + I had to put it off , she said . +I just know it . + I do nt know if it 's down as much as they say it is . + But , he said , he would come back . +But music , too . +I just know me . +I might not have . +It has to be that way . +This is my part . + I do nt know where he is . + They are business people . + I used to see them here every day , well every day until two days ago , he said . + That 's what I think , he said . +He has been around that . + That 's what this play is about . +He had one , so he did so . +But you have to . +Then they would own the company . +The Times Of My Life And My Life With The Times . +Right now , it has nt come to me . +I could see at last . + And two , this will never end . +He says he is nt . + They work all day long . +This was to be our home for three days . + Women , he said , after the show . +That 's the last of them . +But the game was not over . + It 's been too much for me . + To me you were the world . + You have to know about children . +He never will do it . +It 's a second life . +They do nt have time . + It is now , he says . +So , does it ? + But what are you going to do ? +And I do nt last . + Women would not want to be there , he said . + I do nt think any country in the world would do that . + Can I get through ? +This is going to be one of them . + He was going up and down . +He should be in center . +For now there is time . +But some of them get more . +Then there is the General . + But I do nt know how long he has been one . +What should the president do ? + It was just my day . + Not very much , he said . + How long has this been going on ? + What 's not to like ? + It was the only way I could get through it . + This is nt about money . +How could you do this ? +But it 's time for us . +I have to do just what I have to do . + And he said , I do nt know . +He was white , white . + I was up all the time . +But that war is over . +Where does she work -- do you know ? +But there is little they can do . + That was in the old says , he said . +How many does this make for you ? +Those will be back . +After all , he was the director . + But it may not be that way in five years . +You have a right to say , No , that 's not what I want to do . + One , he said . + When they say , What ? + She said that three times . + But I do nt think we had the company then . + Children make up music all the time , she said . +That 's what people think . +So who are these children ? + First , we want to make money , he said . +I put up with that for five years . +It 's too long for what I did . + And I said , That 's right . +It 's not where we should be , but it 's where we are . + And she was right . +He said That 's what I would do . +I CAN do it . + We have no way to go back . +And now they have it . +It should be a place to show people what our time is about . +It 's just , what do you say ? + It 's a good company , he said . +But it 's for the team . +I could have been a part of that . +And we know how to do it . +Than three or four years ago ? + That was the life . +And that is what they have . +I like man to man . + I do nt know how to be with people . +Too big for him . +He just might be . + It was more money , he said . + They had more . +It is not the only one . + We just did nt know what it would be . +The family is political . + Had nt she ? +But it would not be for long . + I think , over time , it should show . + He 's the one I was with . + We should nt do it now . + We are all over the White House now , he said . +What are they going to do ? +But could it work ? +It 's time to end . + This is what I want . + We were all set to go , he said . +It was his time . + You never know when you are going to be here or not . + We know that we have more work to do . + What can we do ? +She just says it to make you want her more , you know ? + I like that . +They are even going Down Under . + Who are they ? +Is it just money ? + It made my year . + It 's what you do with it , he said . +He does not know me . +Did he know about it ? +Where , When , If ? +But what do we do after that ? + And I said . + It 's not that . + That 's not on . +What is a life ? +I just want my life back . +But there was a way to do this . +There 's only one way to go . +Do they go after him ? +If they were a business , they would nt be in business . +He did nt back up . +And I like the music . +And how much is too much ? +Should I do it ? + Where do you want us to go ? +It is one game . + But we are right where we want to be . + He had him last year . + You do nt do it that way . +What was it that you said to him and what did he say to you at that time ? +Country people know him . + He 's been very , very good . +It 's What can I do ? +How does she know this ? + I do nt like this . +But I did nt know how to do it . + So few people know about it . +Not many have it . + She did nt want people to know she could nt see . + What 's this called ? +He is not going to be good . +As well she might . +It 's good to have them back . +Do we want to ? +She does nt have that . +Now there 's no one there . + There was no work around , we were all there . + That made my day . + I think it 's a little of both . + But it was nt the time . + It 's going to work out , he said . + So did the city , he said . +There is also a business center . + Can I see that ? +It does nt have the best this or the best that . +Is nt the Government back in business ? +And she does it to music . + They said : what could they do ? +And get them off . + But I would nt go . +How American can you get ? +He was , and I did . + They are in it all for show , he said . + He 's been there . + How can you have both ? + You do your best for what time is left . + And we say we are just us . + This is the right time . +His was just that . +And we will do it . + It was good , he said . +But people still want it all . +And , you know what ? + What 's going on in this White House ? + We have the money . + If we do nt , it might not be the end of the world . +Not one team will take you . + That white man , . +It 's been two years ? +She is still here . + I have the first , and the second in part . +And there will not be . +You should see him . +It does nt have to end this way . +This is what it was all about . + Three into two would nt go . + This was a little country , he said . + They did nt know what to do with it . +A few did not . + It is our country . +So it 's all in there . +Not until then , I think . + Work is for work , he said . + We have all come from one team , he said . + You can have your way with them . + How much should it be ? + I was like : You know what ? +But it 's never that way . + Money can be made , she said . + But we do nt know what best is . +You could nt make that up . +You have to do what 's right for your people . +May I take that ? +I go in to him . + So I come here not to be . + I want to play . +Which was just as well . + They only go one way . + People say , If I can get there . +Does it have any use ? +And if you know where you want to take the country . + There was no house left , she said . + When you think you have it , take it , he said . + That 's if you can get them . +This was two years ago . +I do nt know that I could do that . + I think very few . +It is and is nt . +And we did it . +I had to be the best . +One might be right . + It was one week before . + How many members does it have ? +You just were called into the office . + He 's part of me . + You use what you have . + You just did nt do it , she said . + That 's what we did , she said . +It is as well . + But what were they and who made them ? +This is a work week . +What should I do ? + I just did nt want to do that . +But they are few . + But I think he will . +And who will own what ? +It has to be good for him , too . + There is nt any market for them . + She 's in here . +We do nt all get what we want . +Then there has been I . + I was that market , he said . + They would never do that , she said . + I can take him . +So should other children . +You think I want to take him out ? +The second best is the Country Children 's Center . +It did nt last for long . +But not in high school . + I can come back when I like . + There is still money there , she said . +I do it my way . +What is the best time of year to go ? +I do nt know what they are . + We are all going to be old one day , he said . +It just is nt for me . +This was not the day . +It is there today . +Not the way you think it was . +But what could he take ? + I could nt play . +He said he did not know where they would go . +But no one was there . +So it has come to this . +Some never go back . + People might think they do . + This is it , the people said . +We would all like to do business here . +The people you work with . + What you have this week is what you have . + Not from me they do nt . + Most women do nt know to do that . + So should you . +She said : What ? + That 's not how you do it . +So she does , for a week or two . + They could nt . + But this was more than that . +I was a man about it . + And he does nt . + Put it another way . +I did nt get to play my game . +I just do nt want to get it now . + Both of them know they are going to play . + It is nt . +After that , it 's time to get a new one . + Like all of us . +But so are we all . + It 's my home . + Did we use all our time well ? +Now they know he is not . + We come here every day . + You found her ? +He said he could nt get out . +But not just any house . + But you know what they are like . +I do very much . + I do nt know what it is , she says now . +New York does nt want them . + What did they say this time ? +It 's the game they have to have and one we do nt want them to have . + I do nt know what to make of it . +They are going to go after people . + It 's his life . +How about more money ? + There 's no right way to play it . +They do what they do . +She said she could . + We know the life . +Where would you go ? +I would nt do that . + To get through it . + It 's going to take time . + For him to come on and go off on me , he said . +I will have to go back , and I know just when to do it . +So how good is this team ? +But you know , you do nt think about it right now . +But not the last . +They say it is . +A PLACE FOR US . +We know that 's where we want to get to . +It would nt be him . +They want to know about war . +You had to know who to go to . +I did nt make money for a while . + And we have not . +You have to get back out there . +They would play it every day if they could . +But she had to have it . +It was on to the children . +This is the new market . +So what were those ? +That 's not much time . +That 's not what I had him out there for . + I play because I do nt have any other work . + I would never do that , I said . +But that was not the end , he said . +Now the music part . + That 's the only way I want it . +I said , This is it . +But all was still . +In this business , you have to . +But we just did nt . +There are more of them . +Well , they have nt . +How did you know about it ? + They said , Have a good time . +But you do here . +And the time of day . +That 's what we were about then , and that 's what we are about now . +But this is not all . +Go back to what ? + That was all there was to it . +And so he will . +Some had been on the market for more than two years . +When did I know ? + Little by little , you just do . + But I think we are going to have a good team . + She has a life , and I have a life . +But our Government does nt . +And with the money , you know what I did ? + What do I get ? + Did you get it for me ? + But they come up because it 's like home . +This can only be to the good . + They know what they want , what they can do . + He does nt want me out in public too much . +How did I know ? +Are , not were . + It can not be . + I could never do that . +He was in business . +How did that get here ? +But it never does . + That 's all it says ? +It does nt have to be in New York . +I did nt think people would show up . +But he was not the same . + That 's not who we are . +Did I do it right ? +Not too much ; not too well . + But that 's all right , he said . + And I say , What for ? +But she was also right . + You get it out . + There is no next time . +I have so much now . + What they do , I do nt know . +They just go out . + There will be no place for them to go . + And people do . +But he may be the only one . + That 's just where we are at . +And then you come up here . + The man had all my money , he said . +I did nt make up that law . +I just want to be one of them . + That 's not it . +I want people to know that . + That did nt take long . + I do nt even think about it after the game when I play well . + I make it up to you next time . +If not , they would have left out other . +But that 's all he had to say . +That 's part of the game we play . +And the last one ? + New York is one city , not two , he said . + Are they going in , are they going out ? +If so , when and how ? + I was nt there , he said . + I play as well as I have to , she said . +But that was before law school . +But no , no , no , no . +They are not of the people . +But some people are . +All of us know how to play the game . + Big or little ? + I said , What did she say ? +There were nt many people about . + I may just do that . +They did more than that . + It 's just not here . +But he was not . +Well , those days are over . + It is the best , but we have not had it for years . + And we are a good team now . + Same as here , too . +I do that at home all the time . + The police were all over the place . +And so I have . +It was over just like that . +They say , Not my money . +If so , where is he ? +Are you with us ? + I like going . +And not just him . +Where did you come from ? +There 's so much we still do nt know . + So this is what 's going on . + I would nt want to know . + If they do nt , they do nt . +It is just what you do . + How do you like it here ? + I said : Come on , man . +Do nt they see through it ? +I had to see the world . +I want to do it now . + How old is that ? +THE man still has it . +We did nt want that . + What did she want with you ? +They are about four or five years old . + I like to know what is going on . +This was the place , all right . +That 's where our family has been for the last five years . +It 's been too good to me . +I had to work at it . + The people have not left . +It 's the only place you can be who you want to be . + Money , he said . +We are right there , but there is still a long way to go . + He did not say where that might be . +Not too many people say no to the White House . + We do not want a war . +I want it to be the best . +You have days like that . +It is only as to when . + It 's more like a family day , he said . + We do nt think it should be in play . +And so are you . +You see it day after day . +He said he did not know where they might have come from . + My family does come first , she said . +We do this for our own good and their good , too . + Can she do it ? +But they are here and there . +It was that and more . +It 's our country . +Will they take over the business ? +I would never do it . +People just did nt want to work for her . + The old is still good . +Only so much time . +What 's the State Department for ? +No one has it . +It is nt , though . +In the last game , it was the other way around . + We do nt get it . + They were my family . +They did not get much . +Well , more than that . +And some could be less . +And that was the end . +I did nt -- I do nt know then , I do nt know now . +As he put it : There would nt have been a war if it had been left to the public . +Some people have it ; some do not . +I do not state that . + He 's all right . +So here 's where we are . +You have it , too . +What do they think we should do ? +I never will be . +But you do what you have to do . +You have a life . +Home , for most of us , is not where we are but where we were . + It 's just one game . + I did nt know what to do , she said . +He 's still on the go . + He was right . +We do what 's best for you . + What time is it ? +There was nt much money around . + We are going to work on them . +That 's what I did nt do . +He does not know . +Now it 's up to five years . +I can play my game now . +Last week , the A . + I would like them to . + I do nt know how I did it , he said . +Do the best you can . + All I could think was : How ? + You go out and take what you can . + Have nt you been here before ? +But there will be work to do . + He did nt know what I was going to say . + I just like him . +But they were nt , and he did nt . +He 's with me . + Do what you have to do now . +I think that 's right . +They like to know what to do and when to do it . +But I had to work for it . +So this is all new . +One good night can last a week . +He never left the city . + But has it ? +Get into it , not just get it . + I think this might work , he says . + I did , he said . + I do nt have the money . +But New York is my city . +If we are not going to be there , who 's going to be there for us ? +We have a long , long way to go . +They do nt come out . + And she said , No , I do nt . +It has been one very long year since you left us . +We do nt have any of that . + But how will I get home ? + This is the way we do it . + Should I or should nt I ? +We did nt back off . + People are people . +People want to have one or two . + I see it as man to man . +That 's the only way it would set me back . +Here it did not . +It has to be the way that I want it . +The place is New York City . + I think this is good for my country . +I know she was . +They have more members right now . +What will it be like ? +But there is a but . + I know people do it . + He might not like you . +Do you want to go or do nt you ? +They will not be very good . + He 's one of the best . +They are out on the street the same day . +As long as you own your house . +If I do nt like you , I do nt like you . +Know who 's who . + That 's all right , he says . + Are we going to know these people ? +These are people that want to work . +He was nt there at all . +I could nt play for another music director after him . +She did nt say this before . +They did nt know what to do . + It 's good , he said . + Companies come and go , he said . + I said he might have . +And now you are on your own . +Now put your home on the market . + Think about what ? +And if so , will it end the way the first did ? +No , at home . +But what do I know ? +The House was right in the first place . +A war we should nt even be in . + If they take over government , we are going to have a war . + She did do some good . + But we had to go without him . + This is her time . +There are nt even that many of them . +If there was any way in the world I could take it back , I would . +I can see it as well as if it were today . +They were part of my being . + I just did nt know how much . + It was me , he said . + But we are not that . + People do nt like one another , he said . + That was all I could do . +He called me Country . +Could I come to see her ? +Should he take it or not ? +Where did they go to ? +Where can you get them ? + That 's not what it is . +That he is not . + This team is going to be there . +And I want to , too . + He could nt get out . + We do nt know what this is . +The women have since made up . + If they are on time , they are on time . + That 's my team . + It 's their time . +Our country should do the same . + That 's not how you do business , he said . +It 's just a game , people can say that , but it 's more than just a game . + And I do nt like that . +It 's like , you know , it 's just me . + So what could I do ? + Should nt say this . + Where are they from ? +He 's out today . +And then what will we have ? +Before long , I did . +I will be here for you . + I would be at the game if I was nt in here , he said . +And right they were . +But this is the end . + Most of my people do nt think that if we go to war , we do nt get to go , she said . +How long do you think we can go ? +Or she can do both . + Will they get them ? +But that 's life . +People can be here . +Would the state do that ? + And many more , all or in part . +He 's going to be around for a long time . +If that 's what people want . +How about this way ? + Now there is no way back . + Who has the time today ? +That 's all I have to say and all I will say . +I do have it all . +She does so several times . + You do what you can do , he said . +That 's what this game was like . +But this is all to the good . + But I know it was nt after me . + In those days we did nt know where we were going . +But will they have them for long ? +But the show will go on . +We can do business with this man . + I still have them . +I think they are . + Not in this case . + But you still like me , right ? + It is nt the money , he said . +We are all the same people . +He is on his own with this one . +He 's only the director , after all . + I do nt know if it is good . + Where have I been ? +They say they do . +So it 's , like : Here you go , man . + Been a little high , he said . +Who was he , in the end ? +But there was much more to him . + That 's what he is . +How would we know ? + A Case of You . + But it 's not the case at all . +How can I get another one ? +Now women want to do it their own way . +That 's what the people want , more and more . +The police were called , she said . +There 's not much there . +That could take until the end of this year . +I work , work , work . +But who has nt ? + That 's the way out . + I know that it was . +He should nt even be here . + Do nt be second . + I was nt going to go at all , she says . +I do nt know if it 's what we do or how we do it . + It 's up to him , he says . + If we had a week off , it would be a long week with these two . + How long would that take - about two days ? + I see people now . + We had a family business . + But in a court of law , she would never do that . +He had family in court . + But he was not . + That 's all I do . + This is home for me , he said . + I did nt know what to do any more than they did . + Some people do nt like this about me , she said . +But that did nt work . + There are only about for or five of them . +He used what he had to get to her . +You are in good company . +And it 's not just for the children , it 's for them as well . +Not next year , but right now . +It was more than well put . + It 's been like this all season . +People who will have to show up every day to do what is right . +I want to be in business with them . +How about the office ? +Less and less though . +They did what they had to do . +You see me here . +Because I could nt go back to the White House . +But it does not have to be so . + This is my season . + I say , good . +These are my people . +Or it may be next year . + About the same as before . + Could we get them there ? +And that is only the center . + It was nt right . +What 's your life like now ? +I know how to play him . + It does nt have to be this way . +We have to take it . +Most of them , that is . + They did nt like each other , he said . + Just think , he said . +Which was the first ? +I did nt know if he was going to get there . +And I think it 's a very good place . + But I do nt think of it that way . + It was just one big play . +What do they do that we do nt ? +It says : We Want War . +At first , they did nt know what it was . +How does he do it all ? + That 's what we are going for . +But that 's not for me . +We just put it out there . +You do nt have many . + Then it was over . + And where do I have to go to ? + I used to be . +It has been one year today . + Business is good , he said . +Do what you think you have to do . +And I know I did nt do it . +And well we know them . + This is like being in my house . +We are not a team that could nt make it . +Even after all that . + I was there and other people were nt , he said . +Or he , I should say . +But what is this ? +It was how he said it . + I did nt think that was the way to go . +No one is used to it . +What would they do to my family ? + If it will come , it will come . +So here you go . +Put it on and it 's all over . + All I could think was , That 's just the way it was nt . + New York -- who can work in New York ? +Who they are and what they are made of . + I play as many as they want , he said . + It 's what I do . + There is life after the White House , he said . +It has been when . + If too many people were to come here , it would be the end of the end of the world . + He was not . +I see it in my own work . + You may think it 's all out , but it 's not . +That 's just not the way he is . + No , we are not going to do that . + I have no family at all in New York . +This has been the best year of my life . +AFTER ALL THESE YEARS . +I just want to know . +It 's up to the two of us . +He 's just here to make a show . + I think the world of him . +We do nt have to be any place . +This is like night and day . + We own it . +Should be the same for women . +It never made it . +They are here now . + This may be . +She might have been the only one . +Now there 's too much and no time . +They want it every year . +But he does nt want to . +No , no one can do that . + I think it was for him . + Not just to do it . + They do what they want to . + Where do you think these people are going to go ? +I have to work at it . + They are a good team . +And there 's a place for all of them . +We had no money then . + We did this many , many , many times . + But they say no . +That 's good for them . +Our business is up . + I work here . + He did nt want to do it . + It 's a long time ago . +And more all the time . +Is nt it against the law ? + We would have never left there . +And that 's what made you come ? + That 's not what we do well , he said . + And you are not ? +He had to play with the team . +If they still have a home . +He has to get used to that a little more . + That 's how I see this . + But there 's much more . + Who has a right to it ? + When are we going to do it ? +We do nt have any other place to go . +I go to a show . +But I want you to have this . + How come you are not with him ? + That was another part of his life that I did nt want to be part of . +It 's not very good , is it ? + I had to work at it . + It 's not like being left back , she said . +This season will not be the second time . + This -- you -- take me out of it . +What if it does nt work ? +But I think he has . + And so it had . +It 's just that what you see is what you get . +That would be a first . +Many work at home at first . + What 's Going on Here ? +I think you could see that today . +That will be it . +It 's a family now . + That 's what she does . + So , How Come ? + I would never have come . +Because the money is there . +I say , Be a man about it . +Not many of us are . + We are just a little company without any money . + This is a team that is going good . +This season has been so good it has to go on . +There was no way he was going to go home . +But if so , it should be because we have to -- not because we want to . +That 's because he has had to . +We do nt even have to say it . +I can only say this . + It 's all over . +The President 's for it . + They do nt like to go out because they do nt know how many people like them and how many people do nt like them , he said . +I have this ; I have that . +You do nt know who they are ? +Now I do not know what to say . + But come right back . +There 's just so much going on . + Or , Do you want to go to school ? +But we do know that the world will be what we want it to be . +Well , are you going to do it ? +Then she put them down . + Do nt you know that ? + You , your people do . +Where are the other people ? +And now I had made it and he could be there . +I said : How can you do that ? + We get people who come every year from all over , he said . + We are all on the left , he said . +It is nt only one country . +I think this is where I should be . +This was their city , their country , after all . +But he did not , and could not . +I have found a way to do it . +There could nt be . + There was no time , she said . + We were nt here last year . +There has nt been much in between . +We have that all the time . + It was nt only the city , he said . + That 's too much , he said . +I may not get there with you . +I do nt want to be in your office . +He said that over and over . + So it 's over for now , but only for now . +They do nt like you . +They just want me to get out of their way . + I did nt play that well . +So what does it say these days ? + It was just white . + They know it 's us . +They will get what they can get . +But it has a long way to go . + We could nt say that a few years ago . +We are here the day after . +We do nt want to know . + So that 's going to be the big one for me . +It 's found money . +There was a war on . +It did nt take me too long to get over it . + They come out here they want to make a day of it , he said . +But I think it 's going to be a long time . +They should make good use of it . +I do nt think that was the case so long ago . + But , she said , this is all just too much . +We should be on our way home by then . + That 's no life . +Are they the same ? +This is what I want you to have . + But no money . +She might be right . +Most of us will have a good time . +They are also from the old school . + I like my family . + Take a right here , he said . +In the end , it did both . + But she does nt go all the way . + The business is there . +It 's just good music . + It 's a police state . + There are very few that are in the know . +This is my life . +I do nt at all . + So what should we do now ? +Not even the police do . + Every day had to be a good day . +Now my life is just work and work . + Not as much as he used to . + They said it was up to me . +First of all , it will not work . +That is as it should be . +Make it for us . + Had them all the way , did nt you ? +What does that do to us ? +What will it take ? +We are going to do the best we can . +And then they take off with most of the money . + He still has to do it that day , she said . + He was good with people , he said . +It 's out of time and place . +But she does now . +The same people are here and they are good people . + I never said this one , he said . +If so , how ? +It was never the same after that . +Where did you take them off ? +Or they think they do . + On the house , he says . + What did that say to us ? +Now they do nt come . +This school is like a big family . +Just go out there and do what you do . + For a long time , they could nt even do that . +It 's like a still life . +She could get her children back . +It 's only women . + It would nt work . +We know there 's a long way to go . +And when will it be over ? +The man with her had even more of them . +And then some more . +It is also good for business . + This is the right time , he said . +Program said last year . + She said , All of them . +A school house it is . + Like we were less . +They are the team of the world . + We want them to know us . +But it 's not today . +Then you can take that home . + We say that we are not their family . +We have to come to work but we do nt have people to work with . + What could any government do ? +Each day was the only day . +That 's what made me want to play . +So , what is not to like ? + And I did so . +That is how the team is . +You have to have that . + And they do nt like it . +There will never be a day when we do nt think about you . +It might work out to be more than that this year . + It 's the people 's money . +That 's what that was . + You would nt do that , would you ? + It is time all states did so . +The game was as good as over . + But do nt go by me , he said . +Just another day at the office . +With this I do nt want to have to . +That 's not what I do . +There will be less . + One man should not be that good . +He was the first to go . + They do nt have time . +There 's such a long way to go . + Who will I want to be on my own ? +I was off by only a few years . +I think that 's because there 's even more , is nt there ? + There just is nt work out there . + They want to be like me . +Like we used be . + But the second time was too much . +And they still did nt go in . + You know what ? +Around here , there is so much of it . + Well , she did nt . + We are not in a court of law , he said . +I did nt like it and I did nt want to do it . + But that was a long time ago , he said . +Only not as good . +Most of the people will be for him . +They are all right , though . +This was the country to me . +Was this a big game ? +We are going to do our best . + You do that when you have to do that . + The general said so . +That 's where we want it . + That 's all I have to go by . +It does nt work ; it never did ; it never will . +She was very good about it , he said . +I do nt like the music that much . + This is my place to do that . +Now we get one or two . +And that the law should nt get in the way . + I do nt have one . +But the game is the same . + He is right , I know . + It just was nt going to be . +I do nt come second . +At first I did nt . +No one made me do it . + But it was no good . +New York does not . +Well , he does have it . + They are a good team . + I think I did well while I was in there . +He is good at that . +We do nt get that . + So people do nt use them as much as they should . +But in two or three years , he will go back . +I so want to see this right now . + That 's how I found this . +But as for the money . + And this team is not as good as last year 's . +We do it all the time . +We are a school . +I think they are the best . +I just know I want children . +This time , they called him . + It 's going to end when I get him back . +A long day , then . + I should have never left , he said . +For us , that 's what this has been about . + What was I going to do with them ? + Well , well what did you say ? +He would go long . +If you do nt have it , get out of the game because it 's been too good to too many people . +How did I do ? + He 's his own man . + They want to see me there , he said . +Including the Police Department ? + How did he know how ? +Not in this company . +We can do both , and we will . + And they go all over the place . +The same people are there . +It is not good . + I want it very much one way . +She said , Get me out of here . +People want to own a business . +That is what this is . + That 's the big show . + No one has any more time . + People do not want other people to know what they have , who they are or how much they have . +It might as well be them . + But those are people who do nt know me . +DOES EVERY STATE TAKE PART ? +They are like , Who 's that ? +I think it 's that you are on your way out and they are on their way in . +Not here , not this season . +But it would have to go . +We do nt like them . +You can see where this is going . + We just had it four years ago . + It 's the first one to four , not the first one to three . +The case is now in court . + Man , he said . +That 's not the way you make good law . + That 's what we are in business for , he says . + She does not know New York . +Now she has it . + It 's over , she said . +He was the second one to think that - I was the first . +And as the people have come , so has the money . + But if it is , so be it . +This time of year , you are not going to back in . +Is that the case ? + No , I say . +They do nt even know who they are . + That 's the American way , he said . + When does nt it ? + We are a very good team this year . + He was nt going to make it . +Most said they did not know what they would do next . +We want to see what he has to say . +The time is night . + It 's there , she says . + It 's good we do nt have to go to school . + Did I Just Do That ? +I do the best I can with both of them . +People want to see him go down . +But she was not there . + But , he said : I do nt know any of these people . + And he said , Did you say , We ? +Other people know them . +It 's who you are , it 's where you are from . + She did nt want to see it go . +It was nt all war and no play . + I can only say that I want my life back . + It 's not the old days . +Two members are women . +But we do nt know too much about them . +This was his home and his family . + But we do nt think the members would like it . + I do nt know when I can go home . +For me it was not . + Can you think of five more ? +We are still up . + I just go out there and do it , he says . + Well , I do . + How do we get people in the game ? + It might take years . +Then , it is show time . +It 's what people want . + Well , if you had one you would , she said . +They had been found . +They know who they have on their team . + We have no place to go but up , he said . + You should have been here last night . +We want to get this right . +Could it be the last ? +Back off , said the other . + He made it his own . +But this is only to make the team . +Who were all those people ? +And we are all here to do what we can to make him the next president of the United States . + There is little for them to do , he said . + What can I do for these people ? +It has more now . + What can I say , man ? +I think about you every day . +He has , though , and we do . +They had their music . +If so , what is it called ? +But they are good . +But that 's just me , you know . +And so there it was . + I know it 's out there . + Did it work ? + You are going to have to do it all your life , he said . +They want to work less . +There are too many . + And who would they be ? +That was only a year ago . + Do they go all the way up ? + So you are the one , he said . +The second , well , was not . + We want to get it right . +Now , they might come back with two . + This is our year . +What did he want ? +That 's all they said . + You do nt want it . +Now , I do nt want to take over the game . + They would know me and I would know them , he said . +I want to get out . +Who 's On First ? +But that is one of the few that do . +And what can you say ? +He had , but he said he had nt . + They did nt do much . +If I go back , that 's what I want . + This is my country , he said . + It 's going to be with us for a long time . +She made me do it . +THE WORLD : WHERE NOW ? +Now , I do nt know what I can do . +I could nt even get up . +That 's me , the man says . +Where were you a year ago ? + We should say , This is what we want , this is all we want , no more . +But there was more to it . + Well , she did . +I was to be the best man . + I think about it all the time , he says . +We are all of that . +It was like a police state . + How much more can we do ? +I did , but should I have ? + We are not one of them . + Not for the money ; there is no money . + One does what one can , she said . + The people are all over him . +He 's not what he was the last time he was here . +And if it does not ? +They do nt know what the United States should do , they said . +There is a market out there . +Little did she know that how are you ? +It 's a time to say it 's over . +Do we like them ? +That was nt my game . + When this is over , that 's it . + What 's it about ? +And that is where we are now . +It 's just New York . + And it was good work . +I might as well have been . + And you know what it said ? + It was a day 's work . +How did you show this ? +You are not with family just through the good times . +If they last long , they do nt do well . +Most people 's are nt like that . +You are my people . + We are not in that business any more . + Very much so , he said . + That 's all I think about . + Many were women . +What are we to do ? + And then he said , think about this . + That 's part of the business . + It 's just Day One , he said . + That is not the case , he said . +If You Want It . +They had to be like that . + I do nt know you , he said . +But now it was over . + When could you come ? +Who 's the president ? +That 's the way it is out here . + All that is going on down there , he said . +Are you where you want to be ? +I could have said no . +What did he do with the money ? + It was a big play of the game . +There 's been some business . + Did you also do police work ? +There is more to it than that , though . + They do nt know what to do . +You will not like it . +Well , we are the little people . +I did nt know what for . + Should I do this ? +One way or another , it 's in there . + What about your show ? +That 's all there is to it . + And I know who they are . +No way at all . +Here is how he did it . + You have one week to do that . + She said : You do . +He 's the one that did nt make it home . + Were the police here ? + We want a home . +For the time being , it was . +It 's just a team . +Had to be , too . +And his own life . + Today was nt that much of a high , he said . + That was good for us . +They say they did nt have a place for him to play . +But it would not be . +Life on the street . +I did nt even want to go over there . +That 's what it 's like when you go to New York . +There 's no show here . + I just made music . + People say , How do you do this ? +Go play that one game . +You just do nt know it . +There will be no more of that . +I had to come back several times . +You just take one day at a time . + There is no other part I could play , he said . + But how did we come out ? + He did nt want to . + I just do nt play well that way . + What , we did nt know that ? + Has it been that long ? + I do nt think that he has . + I did nt have to use it . +I do nt back down . + There was no way back , he said . +And is that what she did ? + That has to be good for a country . + And you , too , right ? +You are still in the game . + I did what I had to do , she said . +Will he come back ? +But he did not say what that would be . +He did that today . +But a police department is only as good as its members . + I think they will get it right . + And they all know each other . + We have to go with our own . + What is it like right now ? +That 's what I want to do from now on . +Many have been with me for years . +They work as a team . +It going to get me . + If they take us to court , we will be in court with them . +When did he know ? + People said I did it well . + She says : I do nt know , I do nt know . + But I think the people of the city do . + I do nt know how to play the game . +It would be a life that many of us would not like . + And that 's all I have to say about that . + They do nt know where the money is going , he said . +And it was over for us . + I do nt know them . +I think people will see through that . +And where did we come from ? +What people would think and say . +But it might be . + They were his people , not my people . +Most have other children too . + You can just see it . +What do you have left ? +This was going to be his year . + He just has it in him . +We were not there at all . +We will get it . +I do nt want that to be me . +And then there 's us . + But we do nt like to do it . + I may have to put one up at the White House . +But it will do . +And if they do not , she will not . +Which is not to say that many of them are good . +They just want more . +What do they do about it ? +But not these days . +There are nt many like him around . + It 's like , You take it . + It would be good for business . +I never said that . +Now we know the way here . + It 's just the way it is here . +They want to put you to work . +I was with a group of people who were all going the same way . + That is what we did not do . +Because we can do it , too . + You are , he said . +We do nt want to get in just to be there . + I can see it now , he said . +Were we right to do so ? +Who we are is who we are . +This is about you . + He was just like me . +You never know how many times you are going to be there . + And where was that ? +There 's too much of it , he says . +It 's not like going to the office . +But it will take three years . +Do you know of any ? +But we have a good team . +He has not had many . + We said , what was that ? +This is all they know . +But that was then , and this is now . +I just had to have it . +You are never home . +SHOULD they have to ? + Only at the end . +She left the company . +We know where they are . +He did nt last long . +If they did nt know what I could do , I would nt be here . +We say all we know . +There will be more to come . +Or is it yesterday ? + No , I do nt think so . +We , the people , are the government . +What would they do next ? + That 's all they can do . +He never said , What do I do next ? + Now it 's all over . + They did nt know what to think . + Do you know how to get there ? +Over all , it was nt our night . + Well , they did it . +But not the only place . + People do nt just want the money , he said . +I think about this season only . +How come you do nt have it ? +It is nt all about money . + That could take a long , long time . +They did nt know from the national team . +And on each other . +But I know him now . +I was the first president . + That would be the end , he said . +They want two or three . + The United States ? +As well he might be . + If he can do that , he can play . + This Is Your Life . + How do you do it all ? +For me , it 's the best place to be . + And I do nt think it will be used very much . +There is , after all , a war going on . + It was the Old West . +I know it 's right . + The will is there . + But I would nt want to work for him . +He 's just that good . +It 's not like we are in another country . +It is the American way . +But he says it is nt about the money . + So it is not going to get in my way . +No , says the public . +And this was nt the first time . +So where is his money now ? +Well , Is He or Is nt He ? +He said , For what ? +He used to say it was all about his music . +And that 's what all this is about . + When do you want to go ? +Never , say one and all . +They would have no other life . +The only people who did nt know about it were the American people . + But they are not out . +How could I do that ? +And that 's the federal government . + We are all one people , he said . + ANY PLACE BUT HERE . + Or my children children . + I do nt even think about it , she said . +That 's about my game . +I think it 's not . +It may not be . + Without them , we would nt be here today . +She said , Who 's this ? +Now this has come to an end . +We do not see what they see . + Who made it ? +Not in this country . +Did you do it ? +Now , we go back in New York City . + Then she said , Did you see that ? +That was not the right way , he said . +Well , I would nt say that . +A man , at last . + It 's a big university , she said . +But we do nt know that then . +In the world of Where 's My Money ? +But to him it 's all the same . + They know that they do nt have any . +But no one would have it . +Many more did not . +And that 's , like , the way it is . +I could go on , but . +I do nt think he 's going there . + They do nt want to put as many people on , and they do nt want to work as long , he said . +Then we should get out of the way . + That 's where we are right now . + It 's still a business . +She is right on time . +And his last season . + We had no money . +So what do you do , say no ? + We did nt even know what it was . +That 's what I think of them . +He , too , is day to day . + When it 's time , I know it 's going to be there , he said . +That 's over with . +Now it 's their time . + It 's up to him now . + We will do two or three a year , he said . +When I was at the university . + Where will you go a year from now ? +This is the life I want . + I had to play every day , he said . +There 's no way to see how this will come out right now . +But you take what you can . + I want my own place and to be on my own , she said . +And he found it in his work . +But as with I . + And what did he say ? + It 's not like that at all . +There was still only one out . +We are part of the family . +But I was , a little . +I would nt say that we would nt . +Well , just a little . +He was my man . +What Time Is It ? +That 's what we are up against . +They could use it . + You know what they should do ? +AND ONE FOR ALL . +But it 's a long season , as we all know . +You have to show it to people . +Well , what about them ? + But many of them are nt . +You can do it right this time . + It 's time to use it . +The police had another four . +At the end of three years , I get the money . +You have to get out . +And that 's what I do . + It 's about who we are as a country . +When he is good , he is very , very good . + I had to do that all through high school . + These are my little children , he said . +But there is a long way to go . +Where have I been all these years ? +I want her to see it . +Still , this is New York . +That could be a first in New York City . + Well , it 's up to them , he said . +They just did nt go in . + But we are here . + I want to know what is going on . +That 's what you do in life . + Where were we going to go ? +Here , like this . + That 's about all you can do . +It had a new business school . + I did nt do much , she said . +I would like to go back . + This was our place . +Most have more than two children . + Several said they did not know . +Did we know how big ? +Take it or go to court . + And I still think that . +And where does it come from ? + But what can you do , such is life , he said . +Which part are we in ? + It 's not going to take long . + When she said it , I said , She 's out . + They are going because it 's good . +It 's like New York . +This is our school . +No , he has nt . +They all want to play on his team . +Other work was going on as well . + This year , we are going to take all three . +Because you do nt . +It never made as much money as it should have . +It 's that you make it the same every time . +What they want to say . +He has very few . +Women go for it . + They are going to be around for a long time . +But on this he is right . + He does it . +The same , but not . + You just want to get it out of the way , he said . +And what do you want it to say ? +The other two are about the same . +I do nt know how it will be for me . + But I do nt have that . +Do you think we can get it back ? + There is no other way to get around . + You are out , she said . + They say these people have as much right to be here as we do , he said . +He says he has . +It was too good to last . + Well , that would be the first time , he said . + People here go where they want , when they want , he said . +That could have been me . + But that was five years ago . + Now we are even . +And not just in the city . +I can see how you work . + Back then I could nt go , she said . +It is to be made public today . +But this year 's been good . + Come , come . +First one , then several . +There are very few people who come here every year the way we do . +That 's all I have to say about that . + No , not in any way . +What is it and what is it for ? +They know who he is . +I do not think it is that way today . +I just want it all and I want it now . +No , we are not . +Who Will Be Next ? + But they were there for me . +We did nt know how to think . + She is so good . + I know all the people . + I do nt know if he did it or not . + It was good to get the first one out of the way , he said . +One would not know that in this case . +Us , then , no . +But what can I do ? +But it was there . +Or in one another . +What does he know about country life ? + What you see is what we have , he said . +Do you think of them every day ? + What should I think ? + Your money is as good as my money . + So I did nt do that . +So I think today was good for him . +We are not used to that . +His World and Work . +But even that would be all right . +Here 's how you do it . +But are nt they too old ? + I said , Just go right up there . +She says , Who are you ? +It 's never like this . + And the other would say , What 's good about it ? +He did nt do much . +They get in each other 's way . +People have come through that . +He did nt at all . + I do nt think it had much to say . + I know who I play for now , she said . + This is business , he said . + Can you see through this ? +They both work in in New York . + It 's not good law . + People do nt show off . +One could see it today and the night before . +Not there at all . + They were all still in school , and I was nt . + We do nt want that this time . +They are very good at it . +We did use it . +But not as good a day as they think they had . +We are not , so it 's on me . +Some people think it 's good . +It should nt take long . + But he said she could nt . + I have a good time with it , he said . +It 's not been a very good five days . +I want them to be the best they can be . + We just could nt get there . +But the women had each other . +But I know where it is at all times . + But when they come to work , they work . +There is little we can do . +But it may be the best one of all . + Time is money . +All in all , it was a very good day . +You are both all the time . +Still , it is there . + We do not see such states . +It will be good . +No , this is nt right . + The public has a right to have this put to an end , he said . + That 's him . + At long last , he said . +It now has one . + So that time is over . + He said a week . +But it was nt to last . +It 's been like this for a while now . +I think it 's good for him . + But it was nt there . + I had a little over a year , she said . +But no , he 's not going to do it that way . + All I can say is , he said , you are going to be good . +But we were nt . +Another says , At long last , you found your country . + We are at war . + But she did nt get it . +May you make the right one . +It 's the music . + That 's all that 's left . +It is not the people out of government . + I do nt have a house . +But how much can one man do ? +You can get this and this . +They play to the end . + That 's what we do all the time . +They were all on them . +People should know about that team and that time . +I just never know when . +And back them up . + It was too much for me , she said . +That 's what this was about . +And she did -- over and over . +No one for now , he said . + But at the end , we did it . + He is very much a man of the people . + She never said much about him . +And be just as good at it ? + I never had a home in my life . +They also say he has a long way to go . +This week is not one of those times . +How many are in the business ? +So here 's what you do . + You want to make money , too , he said . +What country are we in ? + They were so big and so long , she said . +And they are right . + She used to say to me , I have no use for other people . + It 's music from our home , she said . + You do nt want to know , he said . + I do nt think about that , he said . + It 's good business for them , he said of the war . + We are still there . + I said , You want some of me ? + I do nt think you do . +And it 's good for you . +That 's where we were . +Because of what 's going on in this country . + It is not good for the country , he said . + There are the people who use them . + It did nt work , he said . +It was nt about that . +He was where he said he was when he said he was . +It 's a good team . +Her life was her family . +What 's next , then ? + That was nt so . + Or Into the Night . +I can get the time off of work . +So this is the way we do it . + That could take some time . + But they are not . +I do nt know how we are going to make it . + I have a little work to do , he said . +The public is going to take back their city . +But they still have work to do . +Some come from those who are still in it . + He said : You know what ? +I have been through much . +How should I do this ? +Get over it , he says . + Who had the time ? +Well , I should nt say that . +But not after today . +It was about people . +He had it all going . +And how do we do that ? +That was not the case and will never be the case . +She can not see . + But most people had left . + We did nt have music . + They never called back , he said . +We did nt have that before . +It is a war , you know . +If you are not going to do it , the state will have to . +I had to use them . + No , this can not be , he said . +What 's going on ? + No , no , no , he says . + I did not , she said . +How high should we go this time ? +But the game was over . + He did nt come in and he did nt go back . + We did nt . +They did what they set out to do . + To me , it 's the same , he said . +They said , If you do nt do it , no one 's going to do it for you . + You do nt know when it 's going to end , he said . +I like to work with people . +He does nt say much to us . +This is the only public one . +He 's going to be back for us . +And if it does ? +Well , do we ? +He 's made us family . +But he did nt , so they do nt . +How does a team do well ? +The white was good , too . + I do nt know who 's where , he said . +We did nt have that five years ago . +Only four have children . +Not much music is . +But he left after about a year . +That 's how the business is . + Here it was not . + In my country , I can make the national team . +So he had that going against him . +Just do my part . +But we are a long way from where we were a year ago . +At first , I could nt see where this was going . +I think there is . +Still , this is now their home . +But she called that next day to say , You were right . +But we also know what is not so good . + I said , Who is that ? +But who 's going to go see it ? +We just have to go back and work some more . + Man , you was there . +I think that 's what we want . +Every day is not the same . +There is only the right way . +Most of the time , we never get to them . + She said , I had to . + You want to go on . +They do nt come after you . +Just like last year . +I know of many . + So we just have to see . +It was like it had come home . +What will it be used for ? +But there was so much more . + Are you being good ? +Do you want to come down here and be a part of it ? +All right , good . +That is what life is about . +I should do more . + What could we do with them ? + But you never know , she said . +She was just who she is . +Go to work on time . +He should nt be there . + It 's a business , he said . +For the most part , they have not . +What about going home ? + The street was his office . + But we were used to that . +No , not today . +There 's no way I can play . +DO you know where your children are ? +But as of right now , we are over . + How could they say that ? + We know they are going to come . + What is this about ? + It 's all in there . + I just work for the people , she said . + I was all right for many years , he said . +Could you do some for me ? +She did , and it was . +But it is nt going that way . +Where is the state ? +This is nt all they get , though . +Then I say , no . +That was one game . +But times have not been good . +We put them back in the game . + We found the best . +It may not come to that . +Just think about that . +But how do you know we can ? + And what will you be ? +Here , he does nt have to . +How do you make it work ? + You do nt have to go to more than one place , he said . +We work for them . +It 's not going to be over for a while . +It was the second this week . +If I did nt , I would nt be here . + She just did it . +I know the people . +I like to think he would do the same for me . + And that 's what people never do . +What should we do with it ? + You do nt see them out here . +She put it in . +And they just do nt like women . +This is the way life is . +I did nt even have time to think . +And they did more . +But not the best . +They are good for you , too . + We the people was not then what it is today . +More is on the way . +It was back last night in a big way . + There were a few who did nt . +I think that 's part of it . + We do nt know what was in there . +Well , they do nt , if you know how to do it right . + There was no way around that . + It 's his country . + We are just about where we were three years ago . +But there are more . +I do nt want to do too much with him . +It 's been a while since we had one . +It was nt that at all . +He was a man like any other only more so . + That 's a long way off . + I think that 's where we are . +That 's how we work . + It 's still going on . + Is that them , is that them ? +I still have it . +You have to time it . +We are going to see much more work at home . +What was going on with me ? + I never used to get that high . + You are going to see it more and more , she said . +I could never do what they did . + I said to them , Who are you ? +But I do nt know -- I never think about that . +Now it 's that , and more . +Where are they going to take them from ? +It was not on . +Would you like to work at the National ? + What will be , will be , he said . + How do you want it ? +But it was good . +It was here that he found his second family . +You had to work it to see it . + But is he a good director ? +But you can still use them . + I said , This will never play . + Not here , he said . +I did nt see any . +A man of family . +They had one all of last year . + I do nt think it should come to that , he said . +We work out all the time . +To make them work . + Do you think I could ? +It 's been - what ? +They were not after high office . + Now it 's all about what 's next and what could be . + Or I think so . +Then just take off . +And then there 's the game . + Now he does nt know what to think , he said . + This is new , he said . +But there has not been . + This is not the American people . +But that is all they know . + I have never been off work , he said . +This is like that . +But , she said , she does not want to go back . +We want him back . +It does nt come to you . +He never put it down . + The family should nt be in business , he said . + Not with her , but against her . +We are a part of the show . + I said , Where are you going with this ? + Who is it ? +He should be used to it by now . + What 's going on now is just too much . +I do nt want to put up with the public . + They did not get them from us . +He 's been there night after night . +Do I think he can ? +I want to see what 's going on in there . +AND so he did . + We may not get any the first year ; we may not get any the second year , she said . +And they have been . +I did nt see who did it . +I do nt think it has to go that way . + We take them as people like us . +If they do nt , they do nt . +All five of them . +We do nt have a way to do that . +Over there , the public . +But now I do nt know . + It 's not that they do nt want it . + I think it 's the other way . + We are not out to get any states . +Because if and when you do , they are going to come back . +We are three for three . + Some of them do it because they like the money , he said . + This is for me . + It 's part of the business , he said . + No , I say . +We have that at home , too . + But he did nt say do nt do it . +It was only the second such in the state . + If we did nt have him , who are those people we would have right now ? + I just want to get them out . +It was a good game . + As it should be , no ? + I want to be with my family . + They do nt have a house , he said . + There would be no children . +He just was nt there . +It 's part of the game . + It 's said by people who are against me , he said today . +There are nt many people left . +But we have one game and that 's all we do . +Do I want it ? +It is that time of year . + But we do nt think about it all the time . + If you have a million , you want another million . +He will not say which one . +Do we want to do this ? + It should nt be like that . +Over all , I think it 's good . +She has no children of her own . +But the right time is now . + If they did it , they did it . +But in the end she did nt . + I do nt think people did that so much a few years ago . +But how do you get it back ? + I want as much as I can . + And that could be good . +And I like that they like me . +Where did you go ? +Now I do nt know . +There would be another . +That 's all it was going to say ? +That could be it . +He is another case of what if . +How can they do that ? + That 's one down there , he says . + And I do nt have a say in it . +And still I do nt know that much about him . +But people think so . +No time at all . + Some people like it . + What was there about me ? + I could use the money , but I think that 's it for me today , he said . + That was all it was . + But where does that come from ? +I just want all this to end . +Being with other people . +I did it last night . +But he also said : All of us have to do more with less . +This is how it should be made . +That 's when he 's going in . +We know what we do best . +And how many was that ? + Come on up , he said . + We still think we have a long way to go , he said . +That 's what has to come out . +It 's like a second home now . +There 's only Us . +What do you work on next ? + Some of his children do nt even know him . +It 's never business . +I did not even know how much I did nt know . +For me , there is nt . + There might be a few more . + Now it 's the other way . + Where do you take them ? +It 's so American . +Who I was , who I will be . +And there was more . + I say : Well , he can play today . +It 's not about any of that . + He was with me most of the time . + I have two children back in New York , she says . +But after that , what ? + How long can you last ? +It , too , is now used all over the world . + But it 's still a family place . + No , not at all , he said . +For them , it 's for all time . +Now , he can . +The Police Department does not think so . + That 's just not me , she says . +They would nt get it . + That 's how people see me . +Then there was last year . +Last year , his family found another home . +How would you know one ? + The city only called me to come up three times . + You can not do this . +For a while , she could not see . +I go in during the show and say , What do you think ? +If he was out , we were out . +What do you all know that he does nt ? + I said , Where do you go to do this ? +She was nt very high up . +And it 's good business . + How can you do this to your children ? +People , he said . + Today that is over . +They know I can play this game . +He could have said it five times . +He did like it there . + You will like it . +Like most of them , it was a long day . + He 's with the people . + We are used to it . +Well , he does . +Which way is the West ? +But , he said , I know he did nt do it . +They want it to be less and we want it to be less too . +We can come back . +Or , you could not . + And he said , I want to go home . +Well , I did . + But there was nt any . + They are all here today , are nt they ? +It was the best I could do . + Me , too . +They are out there . +More than he has . +It 's only right . +How did that go ? +How could there be ? +I never was and I never will . +I think there can be . + That did nt come from me . +Not here , not here . +Well , they are not . + The more I get to know her , the more I think she can do it . +Have you found that to be the case ? + We are where we want to be . +And then there is New York City . + I think they are both right . +Where 's the best center ? +I think that time has come . +They do nt know you . + This is the second . +But it will take some time . +I do nt want to do all that . +People know he is there . + But what can we do ? +The state should know . +They think the only way to do it is for the Federal Government to do it all . +But they are never any good . +He was one in a million . +Well , it was nt . + And if we do not ? + I want to come and see you . + No , they do nt , I said . + We have to make money . +What was he going to do next ? +I would not do it to my children . + This is where we are . + And I think I have a right to that . + That 's not what the law states . + What 's up with him ? +But he did it first . +What will you do with that ? +And he was very good at it . + But in a way I think it 's good . + The game does nt get old . +They do nt any more . +What will come of all this ? + And just in time . + You have to go where you can make money , he said . +The play I called did nt work . + You have to be a part of this . + You , too , I say . +How can I get her back ? + I say , Who are you ? + And of what it could be . + We just come back the next day . + Because he does it right . +He said , Who were the four ? + I called the city . +We are going to get going . +They are up and they are down . + I think they come because they like my music , he said . + I do nt go out much . +But of all of them , this is the best . + But they do nt say what they would do about them . + But it is no game . +You never know where you will end up . + No , I said . +A little of both I would say . +But then before you know it , you are back at it . + And I should have had another one . +And in the end , there 's only so much you can do with that . + But I may not . +But that 's not all . +They were , I do nt see it . +How did I do all this ? +Will she have children ? +And now you see it . + People think they know you . +He could not get it back . + But what do we do ? + You have to think about it . + You know , he said . +And those still with us ? + What city is this ? + She just did , he said . + More people should do that . +They are going back to school . + How long did it last ? + So that time was good for me . +I think there is a place for me back on the United States team . +What more can one want ? +How many this season ? +Then we come to today . + He was part of our world . + Have a good time . +When does it end ? + How could we be ? +What do we have to do to get where you have been ? ) . + You are going all the time . + We are what people see . +Other companies did the same . + You may get it . +Until this season , that is . +How did you get that going ? +It 's all about one day . +We should get out . + Is it like that all the time ? + But no one did . +There 's just a few of them . +For him , the war was over . +She 's the one that was going through it . +But it 's all up here . +They did not get it . +Only two people were there . +It will be New Year 's Day . + Well , I would nt know . +Year after year , they do it . +How do we do it ? +They come from all over . +And so now what do we do ? +In this case , a little too much . + We have another one . +I may not show up for that game . + If it is , so be it . +Where were all the people ? + If I have to . + I said , No , it 's not me . +But these days you never know . +She did as best she could . +That 's how we set it up , and that 's how it will be . +Well , we did it . + It was so , it was not . + But no more . +We are not what we were . +And what 's in in for him ? + So there you go . +There is no one who can take his place . + Today for you , he says . +This is one city I do like . +The first people to put first . + People do the best with what they have . + That 's how people are , he said . +He was part time . + But now they know they can play with them . +We only know what we know . +That 's the way we play . +This is a new market . + About this big . +She should , too . + The last out of the game , he said . +My life is there . + But I can say it . +It 's a part of my life . +How are you going to get back ? +We just made it up . +It should nt be , but it will . +There is no government . +I do , I like people . +But where is he going ? +It just did not go my way , he said . +He was a family man for all of us . +And many still are . + I can just be me . +Around the set of Who 's the Man ? + Then there was another one . + You see them and go How can you do that ? + War over there was very big war . +No , it was nt . + It 's had a life of its own . + I want to be a part of it . +No , I know we can do it . + Could be any time . + So where are you from ? + He said , How are you ? + I like my life . + I do nt see how it will be any other way . +The money has to come from the public . + They are just like any other children . + And it did nt . +We do that for them . + That 's the only way we play . + You do nt want to be around me at those times . + I do nt go over there , he said . +Even I was nt there . +But that does nt say much . +There was more to it , though . + It should nt have been . +Or play so well . +But that does nt work . +These are the last days , the last of the last days . + He was , he said . +Then there is New York . + That 's part of life . +I think it 's more right now . + It 's the way there . +My Family , My Country . +That would be all . +She said to me : You do nt have to do what I did . + Now , no . + I did nt know if I was going to come or not , he said . +But only for a time . + This is the best . + If it were up to me , I would nt , he said . +He was right about both . +Then what are they about ? +Here we go , here we go . + How did it come about ? +But some do make time for it . +But I like it this way . + That is not the case at all . + I think one should do that . + Which is good . +I had the game of my life . + What was your first ? +And so , do I like it ? + But I have to get there , he said . +It did nt go off . +We have family there . +I had nt used it in days . +One of them , A . +It did nt get one . + And I said : You know what ? + Not going to work here . + He did nt think so . +What I think is what most people think . +You have to take it as such . + We did nt think we could . +It 's not just for me . + What is new in this ? +No one would or could say what it was . + I do nt know how people do it day after day . +There 's another three left and it 's a long year . +I made more money . + No , I did nt . +Where is she going to go ? + Do you know what time it is ? +It 's in a world of its own . +These are not the good old days . +But we should nt put them and their children out on the street . +But he did not do well there . + I think it is very American . +The Man and His Family . +You are not there just for the game . +I do nt think there has been a time like this . +But would I do it ? +Is this the best place you could be right now ? + This is the only one of these we come to . +Some will never come home . +But he did nt get out of it . + How could they do it to me ? +They were nt at their best in their second season . +This is home for her . + I want to show people that even when you are old like me , you have to have a good time . +Some said as much . +Get off their case . +They say he did . +It was not the time to set about it . +And we can see that . +He was like a new man . +Think about your life . +So , that 's another four to five years . +That 's way too long . +That is all well and good . + Is it for you ? +Some did and some did nt . +You against the city . +But I have to go back . +Should I get it ? + And do well . +Can you come get me ? +And it might also be used as an office . +They still had those , back then . + It has nt in this case , he said . +You do nt want to be that . +I had a good four years there . +It 's like : You have four children . +There is not much that the city can do . +And what does he think now ? +But that 's what you have to do . + I was in the war , he said . +She said she could not . + That 's all I want to do , he said . + You can work through it , he said . + I do nt want to do that now . + Now , that would be too much . +You have to come out here and play . +I could do it , but I do nt know that I will . + I left him , she said . + But in a day or two , the market will go back up . +Now , it 's the other way around . +If I did nt have that , I do nt know how long I would go . + What can do you ? +What would I like to do about it ? + It 's not about the president , it 's about the government , he said . +Now I had to use it . + Now it 's only two . +Where is it from ? +He was not at home . +You have nt put in time . +And there could be more to come . +I said I would not do it . + Little did we know . + Where did you get that from ? + You never know , she said . +But they have us . +And not much of one at that . + Not at this time . +We do nt know how they were made . +So what , man ? +That 's all it is for me . +That 's our business . + I said , Yesterday . + If you do nt , you should nt be here . +I know her from way back . + That 's my life , she said . +Well , they did come . + So , which is it ? +Five , I think . +You have to be . + And they would be like , What war ? +What do they do best ? +Now the game is up . + What Have We Had ? + When you say , Does it work ? +How did it end this way ? + Who would want to come here ? +But I can do it all the time in New York . +They have been around for a long time , too . +Or a week or a day . +A : I do not know when I said this . +Now there will be one . + But she 's not . + He said , Would you like them to do it for your family ? +But that was another day . +And you had two children . + Every time we come here , we have to come back . +It will be back . +I do nt like the work . +Does he play the market at all ? + This is for business only . + He 's still the man . +We can get right on to it . +It 's the same with people . + They still want to come after us . +I said I did not know . + And I still do nt have a house . + Do nt get down . +That 's the way it 's been for the last two years . + I said , For what ? + There 's just times when you know you have it , he said . +Do it , man . + And you do nt have it . +I want my four years back . + People come in from off the street , he said . +But that 's just the way it is these days . +So you think it 's the money ? +Because he never did . +Did I get you right ? +Less than a year after that , it was over . + Do they even want to get up ? +I still have three more days . +It is a new season . + I like what that man said , he said . +And did she get ? +And it 's all good . +He said it was time for him to get on . +All in all , it was a good night . + That 's what I see in him right now . +We know it every time . +And that 's just the women . +It was the City University of New York , not New York University . +But this is not such a case . + It 's just as well . +And the game is on . +To me , each game has been like that . + Who is the best in the world ? +By then , we know where we are . +What should John do ? + Are you on the team or not ? +So it was last year . + They just want to do it . + I know the man , she said . +Most of my life . +They say , When you know , you know . +I called back a few days ago . + What could they do ? + We think he can do more and I say that to him . + We are in New York , after all . +What was there for her to do here ? +She does nt know how . + He does nt want more money . + How could they take him ? + I did nt know how to do it . +They can do so here , too . +It was just the four of us . +It 's just because we do what we want . + He does , too , in his way . +Here 's another one . + Did nt have to in the first . + That 's how good he was today . + There is that in New York ? +As for women , what can we say ? +We did nt get them . +But it 's not just that . +But that will take some work . + They are both right . +We do not know what they want . + Can we go with you ? + It 's not just long . + That may be , he said . +But it was one of the first . + That 's two years . +Is this their year ? +Without him we would nt be here . +They are all of that . +That is how it has to be , they said . +There 's still a long way to go . +I just had to come here . +This game is not my life . +Get down to business . +I just like to have some place to go every day . +I was out of school for three years . +It is the best . +She had been to them all . + See if I do nt . + Right , I say . +It 's too much . +I said I could nt . + All we want is work . +It 's not all about that . + People here do not . +There was one out . +Now we have three or four . +I just do not think it should be the public business . + This show is nt that at all . +He did nt know . +He did that last time and it did nt . +And it can be no other way . +And they are still made today . +And so , what 's that about ? + I like people who do what they have to do , he said . +Could I go in ? + So he said , Who are you ? + Who said we are too old ? + She does nt know what to do first . +It would nt be good for the team . + No , it 's not him . +We just do nt know what it is . +For this , too , I used the street . +It would take years to do that . +Did you know him before ? +I like being here . + They do what they want to do , not what you want them to do . +What do you have ? +His Life and Times . +But I just know that . +Other people left on their own . +They can get used to it . +And so it was for all . +I do nt want any part of him over here . +And there has not been one such day in the last two years . +And what do we see around us ? +If so , when and with what ? +That was before the war . +It might not be . +But this work is so good . +Get with the program . +Where did it come from ? + I do what he says . +Now it may be down to just one . + Can we go out there ? + What are they to think now ? + You may think you know what it 's like , but if you have nt been through it , you do nt . +We are not going to back down and we know he 's not going to back down . + I was nt at my best . +We were nt going to make this a big play game . +And , you know . + No , he said , that is for our use . + What is , It 's time ? +But I put him in his place . + How could she do that to them ? +We are all family here . + Just in case . + This is not their play money . +What did he make of this ? + It 's how much . + You are a good man . + But that is the case . +As several said , It may be a million to one . +We just have to . +They were home more . + I just want to get back to work next week . +But who set that up ? + It 's here now . +They are not after money . + I want to see this through . + You want more life ? +That 's what the game is . +Did he take her out ? + I have him come in here and I just say : What 's up ? +He 's right here . +Four members did not show up . + This is our show now . +WHERE -- New York . +Some people did just that . +We made good money out there . +And so , for now , had I . +One day a week . +It 's not what it used to be . + All we can do is play them as a team . +They should not have . +It is time for him to do it . +We say we want to go on . +I just do nt know what it is going to be like . +If it had nt been for that , I do nt think I would have made it . +There was time for one play . + What did nt I like about him ? + They want to be a part of that . +It 's good to see him back . + Then she said , What about you ? + I said because we work at it . +It 's been good for me . + What did he have over me ? + I do it all right here . +It has to have him . + I like to be out there , he said . +But there is more to it . +I have a life , you know . +I work it out , with all of us . + There were only a few people here , he said . +I do nt know where he was . + It was nt me , he said . +If not , then who ? +No way , the police said . + Can I take it home ? + After being Good for so long , I might like to be Best , she said . +No one will come that does nt want to . +No way out of that one . +We go out and play the game . +Not that they want to back in . +Not much , because we do nt have any money . + Do you think I can do both ? +I do nt know how old he is , but I think he 's been around . +Right here in New York . + That 's not the case today . +It may last , and it may not . +There was nt much . + But I do nt know what they want us to do . +It may be just as well . +Now it 's time . + Is that the Who ? +When we get it there , we can get him out . +No , I do nt think so at all . +Think of them as people . +But I like him . + You just have to go through it , he said . +That 's my New York . +What should we do about this ? +She says she still may . +I do nt know where he was before . +Then they go to work . +And , until you do , you never know . +But she is very much at work . +And he did that . + You never say never , he said . +Very few of them are left . + There was other work for me , she said . +I want you to be on my team . + But that 's what I did . +Should it be there ? +Did she take the day off ? +Still are , come to think of it . +Where should they be put ? +This is our first home . + It 's what we are about . +That was the case in New York . +In another , it did nt . + Not just on the game . +How did it get down there ? + We are where we are . +That 's one in five . +It was good to see her , and we had a good time . + I said : New York ? + Some people might say , is nt that the way all life is ? +And no one does . +It 's big business . + I was like , When is it going to end ? +It 's good for us and good for him . +But if this does nt work , I do nt know where we are . +On we go , without him . +I could use these . + You play for your country . +Could I make it ? + I think I did just as good . +That 's not what I say . +And who did it ? +But it 's still there . +That 's what we do here . +So what 's going on up there ? +I did the best that I could . + That would not be me . +This could be one . + I had too much time on my own . +Because there are too many here ? +And then we go home . + There are more of us ? + So did I , I said . +Where are we to get this much money ? + You know that it 's there . +So we did business . +I know what you have to do . +You do nt want to . + What are you going to be ? +That was big for us . +How do I know you ? +He was not , though . +When : all year . +Will he make it ? +It was just like him . +Never , until now , that is . +He did nt have it . + It is too high . +No one has to . +You are only as good as your last game . + But she was nt there . + Did nt want it at first , she said . +Without it , you can not play a game . +How might it all work ? +I know that place . + I think you will see more people in the game , he said . + And he is very good . +We get used to it . +I CAN see it now . +And think about what we should do now . +They were in this game . + It 's all about who 's in , who 's out . + That the game is what it used to be . +It 's just not like that here . +I just want it to be a game . + This is so not me , she said . +But not any more . + I have nt had a day like this . + Where will you go next ? +That has to be good for business . +But will there be another one after that ? + And they say : No , no . + We are going to make it , he said . + And so did I . +What in the world would she do ? + They just do nt get it , he said . +We are united as a team . + But we could never get the money . +They do nt even want her to go to school . +Do nt think about this season . + You and me . +Not a few of them still are . +But after that first game , that was it . +That was too much . + And I said , What ? + They make a very good case for that . +But one day he did not . +Then what will people say ? +That 's the way it was . +It 's going to take us four years to do it . +Just like this house . + They had to do what they had to do . +Any more than that is too much and no one will like it . +We want to know where she is . + They will have to work that out over time . +This is the way it was and is and will be . +I could nt go there . +It is like the Government . + It 's a new year , is nt it ? +What did she think ? +There are way too many of these in New York . +I - I will say this , Mr. President . +It 's so much more even now . + It was just right for them . + He said , I know you had to do what you had to do . +But the House did not . +The other was not . +I just want both of them to go out there and put a show on . + Until there was only me . + Do we do it just because we can ? + He said , So ? + We are going to get it . +It did not work the first time . +But that may not be the end of it . + But not all of them . + It 's Who 's next ? + It should nt have come down , he said of the house . +This time , they were not up to it . +He says we do nt know . +That 's what you are there to do . + Then I said , Which one ? + Do not take it out . +Not so , Mr. White says . +I said , I had to come back to work ? +If they did nt want to be with him , he did nt want their money . + New York did all right , he said . +I know just where he is . + So it is up to you . + This is nt a very big place . +I can still do that . +It used to be . +He did not say what it was . +And we do nt have that . +What will I do with it all ? +If you use them right , you can use some of that , too . +If this is what you are going to do , we should nt be here . +That 's what we had to do . + But it did nt do me any good . +How do I know ? + It 's a war of money . + That 's a political case , he said . +In that not the case ? +It 's never over with . + Would that be four years ago ? +He would not say where . +It was nt like that this time . + We do nt want to go back to that . + What they also do nt have is a show . + Where Can We Go ? + She was on her way home . + Well , we have nt had time , she said . +I like the money . + He did , she said . +They are part of my life . + I do nt think I want to say , she said . +But this year , no one does . + You play that ? +It has been that way for the last three years . + I think about it , she said . + But it was nt much . + How can you not like it ? + He did nt say which was which . + I made her up . + How did I do ? + There 's no way I did nt want to be a part of this . + We would nt know where it was going next , he said . +I just did nt play well . +I just want to take in as much as I can . + I can get used to this . +He will have three . + That is all to the good . + But it is nt . +People want to see the best of the best . +Then you see us year after year after year . +Which , in a way , they had . +I do nt think he has much money . + It 's all new to me . + You have to do that . +I know we do . +They want to know all about it . + So we left it up to each company . + But I think today was my day . + And I think we would have been before it was over . + Now , I want to get back to it . + So will I , he said . +Or where I would be today if she had her way . +What 's he do now ? +That was the way it was then . +She did nt say , Do nt do it . + This is our family . +You never know which way it 's going to go . +You will here , too . +Now I have to work for business . + It should nt have been left to me . + He said : You are on . +It was all of us . +That 's what you can do for me . +Most will be up through this week . +How could you think I was with them ? +How can this be ? +And I do nt even go out at night . + I was a man without a country . +She can , and she will . +So it did nt work out . +Will we get it ? +Think about what he said and did . + It 's part of the place . + They were not here today . +People did nt know each other . +But on this day he is off . +Go your own way . +And what do I want to be ? +The city does not have even that going for it . +But he is a former President now . + We going to your place ? +Or was it two ? +She did nt know what it was . + You know what it was like ? + I found it , she said . + The team is not down . + I want to go home . +Well , what was it ? + What , she did nt know she had children ? + He is in another world now . +But there was no one home . +Or no one will . +You know where you are . +What 's in It ? +I have one too . +Now , they can . + It 's just a game . +It 's all you can do . +I do nt think this is the right time . + With an i , she said . + The United States has been my home , my country . + Do nt you like it ? +You want to make the most of them . +YOU know how it is . +But they are not all . +How do they see one another ? +You want to like her . +I had no place to go at all . +For us , it is not . +Right now city government is too big . +I would have come . +No one can say no to her . + Not another will be like us . +But we had been through that a few times . +I do nt want them . + This year , you are up , you are down . +It 's my time . + I can get the money , he said . + We do nt know how many . +It 's never come up before . +No one I know does . +The police were called . +But this was too much for me . + But they could not make it here . +Another day in first place . + It 's like night and day now , he said . + But that 's only one team . +When do we want them ? + This is the way it has been , he said . +It 's not going to get me down . +That 's good , I say . + But it did . + And so it did , and so it was . +When is it out ? +This is all I do . + One , you come on to see if you can do it , he said . +We are in every game . + But we like it . + I do nt see it that way , he said . +Little time is left . +Where can you get it ? +It can go like that all day . + I do nt know what 's going on from one day to the next . + You are no more . + That she did . +But I found out what I like to do . +But it 's not only me . + Think one more time . +They are just too good . + Now we have a say in what we do . +Well , for him . + And they are very good . +It is for me , too . +It is just like that . +For days and for years . + And I was like , How can I not ? + It 's just like I found money , he said . +It is our business , the people who put them in office . +They are there but not there . +I think it 's more about the music . +Just what is he up to ? +At the end of the year , he said there was no time . +And just as well that it should . + How many are they ? +How would they do ? + This is what it 's going to be , but it 's all right . +He 's a case . + What do you do in your work ? +That part is over . +But never for too long . +There was nt much more . +I have and it is . +It is a one on five . +They are out there . +And now he is . + I know the people here . +Do what you want , he said . +And this one is a big one . +Then you are in . +Or part of it . +It is all about money . +I think I found that . +In any case , it is big . +And then it is time . +No , I know . + I used to , she said . +We could go on . +Get used to them . +But I have never had to think about it . +But would nt you know it . +Today , he found a way . + We did nt want to go to court . +Every house has a life of its own . +They may go in and out of it . +This is our business . + I was here first . + It was nt before , he said . +It 's up your street i nt it ? +It 's what we are called by our children . +This was the new world . +It was also a little out of place . +Not for her ; no , that was it . + What are they ? + Some take right to this , she said . +No one can say how it will all come out . + We have to do that . + We have nt found that at all . + They do nt want us . + It was nt to come in here and take over the show . +It 's not life . +As though we all know who that is . +That 's what the government says . +They never called me . + They did nt know who I was . + This is for a long , long time . +We were going to have a house . + We just like the place , she said . +It 's the show . +There has been some of that , but not much . +And are they any good ? +I have to be the best I can be . +What would you say ? + It 's not like today . + This is the good part . +So it did nt work . + That 's what we want to see . +I only know what I see . + I do nt know about that . + Where do you go ? +It 's going to you . + No , she said . +What was the use of going on ? +That 's the way the world 's going . +I think about it every day when I go to work . +It is two , not three . + Over and out . + You know what I think about second place ? +But was it more than that ? +I think he still will . + What Do You Want to Do ? +It is good company . + It was the first time I was out of the city . +All was right with their world . +We do nt know what . + It 's a very good life . + It was nt about the money . +We are a long way from New York City . +You get it next year . +A time has not been set . + No , I could nt . +He will get more than that . + That 's home for me , he said . + And that 's all he said . +This could be the year . +And he says , Get up there and show me . +But he 's good . +Or more than one . + What to do , what to say , when to say it . +It 's not our people . +But we are going to do what we have to do . +I think so , but . +But now , I just do nt know . + There it is , he said . +This is a big part of my life . +Even children know that . +All were made this year . + How Do You Know ? + I put my time in , he said . +You are good at that . + We go from there . +Are you all still out there ? + I do nt know how you did nt know . + On the other , In the life . +But if he could get to me , I could get to him , too . +We get it every day . +I still put in the time . + He will take it right to you . + I did nt get it there . +I have to do this the right way . +That is still so few . + At home you would never see that . + You get used to a place . +Do nt they get it ? +Some of it is nt . +But now it may not be so good . + But you do nt have time to do that in the White House . + You may as well use it . + This is a new city , a new time . +So how was it ? +So you might have said that . + Can I take my time ? +I just do nt know where . +It 's another day to another day . +There 's several who do that . + But the Government can only do so much , he said . + We used to do that , too . +Now it 's , What should I do ? + I do nt think it 's here because of me , he said then . + I have called the police department . +It 's like you never left . + But for which team ? + For me , this is like a second home , she said . +You were too , too good for this world . +For the most part , no one . +I want to get back there . +There is still more work to do . +Now it is us . +He 's been what ? + Just one of them days . + It was nt the money , she said . +And what did he get ? + He called it all the time . +We want a family . +Does he want to ? + If it 's good , it 's good . + We are not going out on the street . +Do you have the time ? +The public 's very into that . + It 's a play , he said . +The state does nt want us . + What 's in It for Me ? +Like , say , school . +I just want the same right . + Put me in office . +The officials never said if they had or had not found it . +Who could be against that ? +But it never was . +It could be this week . + Where would it end ? + What more do you want ? +It can , and it does . + They just come to me , she said . + If they see me , they take off , she said . + But that just is nt the case . +I would think it would be a good place . + There 's one game to go . +But it never will . +Could it be the United States ? + The time has come , he said . + Good , good , she said . +What 's left of us ? +Then , here they come . +Then it 's not you . +What 's your house like ? +And what did she think of him ? +I do nt know that there is a way . +In the end , all they have is each other . + They do nt have a case , he said . + He said where . + We know all about it . + What do you have to say ? + He has to know how to go home . + And they did nt go for that . +I was too old to go up and down , up and down . +It is to see that they never get in in the first place . + There , there . +I have to play the same game that I play before . +Was he all right ? +But even in my . +For now , it will not be much . +They are all in and they are all out . +What you have been to me ? +But we do nt want to get there the way they did . +Not this , you know . + It 's all there . +Take the office with you . +So what should you do ? + How do I do it ? + War , war , war . + We are still in first place for right now . +Want to get it over with . + You just have to get to them . +Where the people are , we will be . +But if we do nt , who will ? +I said : No , he is much more . +No , they will not be . + One , two , three , four , five . +We did not have much time . +What we do at home is our own business . + That 's not so . +Do you have a life ? +How many more are out there ? +They are not just against me . +So what is new here ? +I do nt know , he said . + It was like found money . +Where was it from ? + But I do nt think that the world is about to come to an end . + This is the time . + Those people do what they think is best . +They are : What then ? + I did nt know where I was on the court . + So we did . + I did nt see . + Come up here , she said . +And I would say , We do nt know . +They were just like us . +Well , there was one . + They like it the way it is . +But this is a big company . +This could be the case . + My family , he said . + Who 's here ? +I want to have a good time with it . +And what did it get them ? +That was just three years ago today . + But I just could nt do it . +They are still our team . + This is a good team . + It 's for the house , not for school , he said . +Where did I go right ? + Which is the way it should be . +So where is it ? + It 's like -- what can you say ? + Did you see that ? +But I did nt want to come out . +Some people were nt . +And we do nt know where . + In what way ? + But I do nt want to do this . +So was there one ? +Life is good here . +I just like music . +That is , until this year . +I did that in one day , yesterday . +And I have one . +That 's what we did first . + Is nt it ? +I was just out of it . +Was it , or was nt it ? +Do I have to go one by one ? + Is that good ? + I do it every day . +Then it was nt . + He does nt say much . + Not all of them , he said . +Did he like his work ? +And it will be well into next year before they do . +You may never get out from under . + This has to get to them a little . +That is not what I was . + Well , do you know what ? +But where are we ? + It is the market to go after . +Both on and off the court . +And so there was . +Do nt make me go . + But we do nt know when . +They never come out . +What should I do here ? + You are the Man . + You want to play ? +We put as much money . +But those who do it can do very well . + We do nt like what we see , he said . +And now -- this . +We did nt want this , but what are you going to do ? +With that , he left . + Did I say that ? +Now it has one . +But we found a way to come back . +And we are the federal government . +He has five children . + What should it be ? + Today , it did that for us . +It should nt just be one way . +He made four of them . + Who Will Be Next ? +But then what do you say about the children ? +How many people get that ? +And he made them . +What did he do after that ? +But they are also still very much in first place . +But he was at home . +School is going good . +There was a war . +I do nt want one . +So that 's the night , New York . + It 's just not there right now . +Today , it would not . +I know what the second is going to do to me . + Not with any old government , but with this old government . +And well he should be . +We still do nt know what we are going to do . + He did , and they did nt . +But it 's one game at a time from here on in . + It 's a time to get down to business . + I have to go now , she said . +But that is not all we did . +There is only one way to do this . + If I go down , I get up . + We are right next to New York . +But , if I have to do it , I have to do it . + You can make just as much money without it . + Where is the law ? + She 's right . +The next day , she said , she could not get up for work . + This is all new . + What was there to say ? +I do nt know who I would be if I had left last year . +We do not know just how good he can be . +He did not want more money . + This is a city where people come and go . +We have to do more . +Because if you did nt , I would nt want to go with war with you . +And he could be . + There are two of them over there , he said . +Now he does nt want me . +For them , it is about time on the court . +By , that is . +Then it was back to business . +Should I go on ? +What can we take from it ? +The play he is in ? + That 's what we have to get over . +And this was just one day . +They make it for him . +But is nt there more to it ? + Just a little . + But I will say this . + I say , That 's a what ? + No , never , she said . +We were nt used to that . +They had to do that and we did nt have to . +That 's what he was going to do . +But you should nt do that . +Now our team has to do that with each other . + It was all about them . +They did nt only say , We are the people . + It could have been called off , he said . + This is the way it has to work . +But not many are . +They will get them in place by game time . + You make your own , he says . +One in five in New York City . +How much more is it going to go up ? + I just did nt do it , she said . +Or So They Think . + How could I say no ? + But we are back in it . +What would they take ? + That 's what you did . + But I do nt see it right now . +It was nt then , and it is nt now . + We know our family . +Or the people who put it out . +And if he does , how well will he play ? +She 's good for the next three to four days . +Here 's a new one . +I do nt know who to be . +There are more women here . + I just put it out there and he put it in . +But he still does nt want it . +But you do nt like it to come out . + They want to know , What did you do ? + And I go out of my way to get to know people . + They are a very good team . +He 's in it at all times . + That 's new in this country , he said . + I just play . +How could he not be ? + How 's life in the big city ? + The American team , he said . + Last year it was the other way around . + You know what I do ? , he said . +I still have a little more time to get back . +But no one did . +But it was nt just money . + I said I was nt . + But I think it will work . +This is our home team . +For the most part , I would not go . +And to make money . +He will be back next year , he said . +And now the police want to police ? + That 's where I was . +It was a good time for me . +They say , He 's here . +But it has not . +They all know this , not only me . +But this is a new season . +We do nt know what they are going to get . + Every day it 's been going up by three or four , he said . + This is where they found me , he said . +We just had to have him . + Can you come back with that ? + For me , I just go out there and play my game . +It will not work . +It 's not like last year . +And two years is a long time . +It 's also the last . +I know this game . +He 's out to get the President . + And it 's what this team has . +Are you still down there ? +She did , and I was on my way . + He 's been out there . + You get to know people , he said . + They all come here . + This is the way of life . +And that 's your life . +He does nt like to say no . + We have how much time left ? +Just go day by day and see who 's going to be out there . +We should nt have to do it , but that 's the way it is . +They make their way . +The man was not found . +What are we going to use ? +Now , he 's there . +But they did nt see it that way . +He could nt see me . + Do You See What I See ? +But how long will it take ? +Is she or is nt she one of them ? +Would you like them ? +Only the last part , right ? + I do nt want to be left back . +It is two , not one . +If so , what did he do ? +No , not I think . +They think they will never get out . + DID you see him ? + I think about my four years there , he said . + Come back in two years . + No , there 's not . +It 's been good . +But then , he said the other day , Every year is a very good year . +We did nt even take them out last year . + We are right where we should be , he said . +They are never at the right time . +Today they do nt have that ; it 's all about money . + He says : Here 's what we are going to do . +It could nt have been good . + Now , we are both going for our second one . + Could you do it for us now ? + This is the best way to see them . +It has no place in my life . +I had to be here today . +Is that the best use of the money ? + What Do You Do ? +If you like New York and you like this team , you like life . +Do more of that . + How do they end ? + In state or Federal court ? +I think this will be the last one . +I want you to see it all . +He did what he set out to do . +We never do them . + First of all , it is big . +You do nt know what 's there . + It was my house . +Even one night ? . + I do nt think you can do that , he said . + And he 's right . +They are going to do it . +It does nt do me good one way or another . + I was in New York at the time . +Or do what I did in the old days : put it into the company . +No , he does nt . +Does she have to make it that way even though he 's not here ? +I want them to be a part of it . +But I do nt have that time . +But they did nt have to . + I get to work with them every day . + I like what we have , he said . + Who did this to you ? +No , I do nt think they do . +Or so he would have us think . + This one , you get in and out and get it over with . +That 's what we all know today . +This is a man 's game . +Time for a new one . +It was very much a New York show . + I just do nt see how it would work . + Never did get there . +You are on your own . + It 's new , he said . +This was his place . + That 's old business , he said . +That is the way we have to be . +The people are not . +Our house is five years old . +Who 's been left out ? + Down here , it 's not much left . + It does nt work like that . +Have a good season . +Because it 's there . +And I did nt think we could do that . +How did you get there ? +As in , go home . +I still say us . +How are you going to say it ? + What 's Next ? + That 's what they are for . +Some take the money . + What was I going to play ? + John says no . + And we found the best way to use him . +She had to go back to school . + I did nt know no one , he said . +I know what they are going through . + Then you go from there . +That was their home . + She never said that to me . + He should have been out of the way . +There 's no place in the Government to make money . +But now there 's no us , and there 's just all them . +But would nt you just know it ? +She said she had to think about it . +That 's the one place . + And he may be right . +It was never about him . +Now what do I do ? +There are few women in this business . +It 's up to us to do it . +How about in life ? + This is what we have to do . +We do nt make it up . + We are not out of the game . +What will we do next year ? + He does nt think it 's the way to go . + The team was too old . +But this is where you come in . +Many of them are there still . +This was just as it should have been . + How much was that ? + But who is to say ? +So is New York . +Last night , he was not . +But they were right . +We want the best . + I know where he is . +They do so every year . + This is too much . +You , too , will get old . +I want to be a part of every new day . + They are people who work very much and make very little . +You are not the same . +Here , a way of life is a way of life . + I said what play ? + Well , what of it ? + That 's all ; that 's it . +Today he has only one . +Many people could not get through . + You were not . +It could put me out of the business . + I know my place , he said . +I do nt have to be a man . +Where is the political will ? + I do nt have too much to say . +So I called him . + That 's not the way we do it . + And we like it that way . +That 's who he still is . + We have four more years to go , she said . +It is also the best . + There 's no center . + But that is not the case at all . +I just did nt know . +And he found it . + What do they want to be ? + At first people said , How can you work here ? + He does nt like to be second . + Until that time , they were not . +Do nt have it ? +He is with you . +And they were off . + The money is out there , he said . +I can use him three times in five days . +Not many people do . +But who are they and where are they ? + Also , just to be a man . + He was like , Who is that ? +But that does nt have to be the case . + Will we be back ? +I said , I want to . + But we are not at war . +But we will do it . +Take me , take me . + Well , it was . +And then , he was nt . + I say to them : See ? +He was on the court , but he was nt . +I do it or I do nt . + We know their people well , he said . + I think it can , and may , come back . +More than one million of them . +He says , I do nt want this , I want this . +That will be there for years to come . +He 's in New York . + I did not want her to have to come back . +One or two a week , all in the same city . +We can do all three . +But what about this year ? + Some people say you should nt . +It 's the only way I know what 's going on . +There is still time for that . + It 's good to be back , he said . +John may be right . +And just what are they ? +It has been a while . +But only if we put our people first . +Because you know what it is ? + If you want to make it in the music business , you have to be out there . + It 's right , he said . + Where has he been ? + There is little music . +It 's not like the business I did . +Most of the time , that is . +It 's just like being at home . +He could not do both . + I do nt think I did . +We just want that one . +Should they want to ? + Well , what are you going to do now ? +No , she has said . +They see that we do nt want to take over . +But you do nt get to go But , but , but . + They could do it . + It 's not good , she said . + They had them all . +That 's been used too many times . +They did not even get that . + Then what are you ? +He said : There 's a new program here . + But they can only do so much . + The people of this state own me , she said . +Who called it that ? + It 's our day . + How can he not be ? +What does that say about the program ? + I was there for him . +In general , they do . + They go out of their way to come here . +That 's just one little part of it . +I know it and you know it , too . +Some say that 's not right . + It was not and will not be until next year . +The money was just never there . + It is the same for all of us . +I think about the part . +They did nt want to just play the game . + I go there all the time , he said . + He never said that . +But there is no money . + I just do what I like . +We have to go on . +That 's the way I like to see you . +They do nt think the people own it . +But it can never be , because of my children . + No , there are nt . +I do nt see it this time . + Who can see him ? +He 's still one of them . +From the White House . +That 's just the way our season has been going . +I know I did nt . +THIS is a where are they now ? + I did nt know about this . + We are in our place . +Should we go at it or what ? +There is only one that does nt . + There may be more , she said . + This is what I play for . + But they are right . + It might be good for them , he said , but not for me . +He called time out . +The house was still . +What did I want ? + I called out . + But we will do it at some other time and in some other place . +You do nt know where he 's going to go next . +All of us think about this all the time . +Now I think people see it for what it was . + There are some people who do nt take the time to see you . +I made use of my time . +It 's your best way home . + It will be against the government . + There is a place for them here . + I think they are still there . + It 's all him . +He has said he will not do so . +But what was it ? +It said that New York was still New York . + So we put it out . + Now it is time to put it in place . +It has to be . +Is he going to do it with them ? + That is : if it is good for you , it 's good for me . +And then I see it . +And if he were ? + You get it . +I do nt have much more to say . +They are on their way . +So do the women . +What did I get ? +We can get it . +There 's no way . +But the money is not all . + Where you see him you see me . +You can not say no . + He 's been there a long time . +Where should I go ? +They may not make it . +There 's a time for this and a time for that . + It was all right , he said . +But will they take ? +I think this market has a long way to go . +Until it is , the law is the law . + Because it 's not , he said . +That 's not life . +It 's still there , he said . +It was nt my night . +And you know , where are we ? + Is this my last time ? + It 's just a show after all . +I have two little children . + Because it 's the last . +I could do without it . +It 's a war for us . +But we are not one . +They are out of here . +We are down to two . +You have your children . +The world will know . +They just do nt know what to think . +She had no money . +It does no good . +She was nt here . + They have to get around . +This is nt that . +It does nt play it down . +How did she come to be here in the first place ? +But how could that be ? +This is the way it is . +I said , Do nt do that . +We know he 's not going to do that . +It was never to be . +And you think all those people are out there going to work and they are all the same . +If not now , when ? + I did nt know what I was going to do , he said . +That was New York . +This is , after all , war . +That 's my law . +What can the President think ? +That 's how we are made up . + You think so ? + That was more than one game . + This way more people will get to know each other . +This was the world as it should be , not as it is . +What are we going to do here ? +But how good was he ? +It 's him , all right . + But now I think we go back home , too . +We say no all the time . +So , what is going on ? + That could be it . +He was a good man to me and my family . +Without it , I would have been out on the street . + I just go out and . +Every year is new . + Where were we ? +That is what it says . + We did the best that we could . +What 's in It for Me ? +He did nt have any work . +What more was there to say ? + And he said , I like it . + I think every state has a long way to go . +He was in another world . +This year , I do nt know . + It 's all that we have , he said . +You should see this office . +You were good to me . + I never used to be like this , you know . + He did nt want us , she said . +But , you know , we want more than this . + See where he is . + These have been here for a long time . + How do you like it ? +It was like I had never left . +She never even said good night . +And I think , This is what it 's about . +Because we know so little . + Well , not all the people . +Not just to see it . +I did nt want them to see it . +What does the President do about that ? +But he would nt do it . + We are from New York . +Big business is American . + We know what he 's up to . +Being with them is the only time I can do that . + But she did . + Some can do with less . +We have the team we have now , and we are going to go play with it . + It 's what you work for . +He has not said . + They come out here more . +Make of this what you will . + What Did I Do Today ? +Will people like it ? +But then the next day , I get up and come to work . +You are not going to get it out of there . + I did the best that I could . + You have not been here even one day . + You take it . + We were the best . +And we do nt want it . +There are many more of them . + It would do . +Too little for me . +This is their first home . +Now , we are going up . +We did nt play well at all . + This is a government that does nt have any money . +He could still play . + I was like , I do nt think so . +You do nt know how long it is . + This is big for us . + Will there be war ? + I like every one of them . +It 's just one of those years . +And that , as they say , is that . +I do nt know , he says . +But there may be more to it than that . +It 's not the law . +And there is more to do each year . +And they do nt know what to do about it . +But that 's just it . +It 's not for the people . + This is my time now . +What did you see in New York City ? +But we have to be out there . +But this was a first . +They were nt left there . + It did nt make it . +You should be at work . +So I do nt think I can say no , never . +He did nt have it today . +Is nt it time to do it ? + We know we are not . +Where do I go now ? + There is no other life than this life , she said . +There will not be another one . +So what is going on ? +They want it -- but they have to know they want it . +They just come down and say this is it . + If we could have , we would have . +At the time , If I Had a Million had been made . +That 's just the way it had to be . +Up one week , down one week . +But that would not be all . + It is time to take it back . +You know what you are going to get when you come in here . +Do nt do it to the man . +We are going to see more of it . + And he did , right then . + To them , family is second , she said . +And that 's what I did now . +Where to go from there ? +We have over three million people now . +It 's the place I want to go home to . +We may have more . +The same can be said of his own work . +On or just after ? +But then , he is a man . + Where can they be ? + At the time I did nt know . +And that 's good . +I was in it for a long time . + It does nt have to be that way , he said . +Are you for or against them ? + People see it as a way to get from here to there , she said . + That 's what we are here for . +It 's us , it 's the state . +And still is nt . +Do we like what we have ? +They have to be a little down . +This one 's for you . +We just go on . + It does nt work like that , he said . +And make money he did . +YOU Where did it come from ? + Now I want to play . + There 's only so much government money you can get . + He 's like family . +But that is as I see it . + That 's all there is . +His time has to come . + Just do it ? + He said he would nt do it , because he said he could nt do it . + We want a program , he said . +In a way , that 's its business . +His family could not be with him . +So here we are in New York . +It 's war , they say . +Not in a million years . + Can I have it ? +We get off , too . +That is how it should be . +No there was not . + Most of the children are all right , he said . + Now , it 's here . +To them it 's money . +But I like to play . +If he could nt , he would nt be over there . + It 's going to take a big one to get me out of there . + Do nt they know that ? +But I did nt want to be that way today . +It 's been there a long time . +Some people are nt going to like it . +Now , he is back . +But you never know about other people who come in . +We could nt make it without you . +The President said , Do it . + This is what people want . + You are back to where you were before you used it . + When does he come back ? + They never left me . + They all want to come . +And I think we will . +Five years go by . + But this day had to come . + What are they made of ? +It did not go public . + Would he do it ? +But I had five to go . +It does nt get more down home than that . + There are so many people here . +Even so , it does nt work for them all . +Now what is this ? + Do nt what ? + I did nt make them . + They say this is a war , but is it ? +The only life I have . +I can do it too . + I know that I do nt know . +I do nt know any of your music . + But they did nt see what it was like five years ago . + No one will be left out , he said . + I do nt think you want to do that . +They go right to you . + But we do not have this money . +We are not going to be in the market . +It can only be us . +But how can I ? +There are people who do not like me . + We are about people . + It will be right here . +We have to get back to that . +Or they used to be . +I do nt think it will go down . + What do you want to be ? + No , he 's not here . +Money should never be one . +It 's not about that any more for me . +It 's all about time . +I do nt know . +I still want it . +But , he said : If it 's there , I will take it . + Who said it is them ? +But today is one of those days . + But I did it . +It is two years , not three . +This may last only a week . + That was going on while the war was going on . +That 's our money . +And I do nt see . +It is , after all , a war . + He was good . + And you know , I have a new family . +Yesterday was a good day . +We do that every day . + They say , Get out of here , old man . + It 's not us and them . + It 's going to be one of us . +But we know there will be an end . +Which is where it should end . +People do nt know what they are going to do . +It 's not the best of the best . + Three years was a long time . +Not many people could . +Last night , they found out . +No one had much to say about that . +It was nt like that at all . +I could nt put it down . +But I do what I think is best for the team . +And then you know you are home . +That should make it the best time . +I know I did . +That 's what it 's all about now , is nt it ? + We still do nt know . +And it is about me . +That 's where we are at . +I will be that President . +But they are not us . + That is just the way he is . + They are going where the money is . +But home is home . +Also , they would not work , he said . +That 's too many , some think . + It 's just another day . + I say what I want to say , and they say what they want to say . +You have to do the work . +Some are , but many are not . +But first you have to get them back in . +We had the right people up there . + My children are American . + But she does it . +This time , it may be so . +Who will take their place ? +That 's not very good . +It should be one or the other . +But how long is long ? + I may say no . +I think all of us would . +All he said is , No , no , no . +It 's just not there . +You know who you are . + There 's just too much we do nt know . +That 's what the national government does . + That does not have to be the case . +She made it before today . + That was nt it . + We still get any game out there , she says . +He made three of them . + I just did nt know how to go public with it . +So I had to go with what I had . +So what 's the use ? +It could go back to the way it was . +You might as well get used to this . + But where did they get it ? +But then , so do you . +It 's one of the best around . +He was last in New York in May , he said . +The more you have of one , the less you have of the other . + And that 's what we did . + That does nt make it right . +The President will go . + I just go out there . +What would you do now ? + I work with it . +You do not want to work . +You see over there ? +You and I know that life is nt like that . +They did nt like this ; they did nt like that . +But that was years ago . + And I think that is all that is going on here . +We have to get through this . +That 's not very political , is it ? +I have to go back to high school for the last time I did this . + I have case law on this , he said . +But he did nt do it . + It 's like found money , he said . + Get in , was all she said . +It will be very much up there . +People said , What are you going to do ? +It 's all around New York , but not in it . +But if you make it , they will come . + It 's going to be all right . +I said , Who are you ? +If he do nt . +Can or should he do this ? + It 's over with , he said . + How are you , my life ? + I know I go on and on , he said . +Companies do nt like this . + What does The New York Times have against me ? + He just did nt say which home . +But what is best for the team ? + They are with you all the way . +They were right last night . +He should get used to it . + I have good company . + There 's no game today , she said . +But who would be next ? +But very few people here think we can do without it . + But we have her back . +This show does not work just because it 's there . + She does nt back off . +I do nt want to work at home . +How long has this been going on ? +But it 's not just the money . + The national team was all that was left , she said . +Or what was in the office . +He was never like that . +It 's the center of the world . +What 's going on out here ? +She does get around . +We will take this to the end . +The show is his and he is the show . +These are our companies . +That 's where we want to be . +But John never did . +We want people to come out . +And that 's what this was . +It 's called On and On . +Until you see them , you do nt know much about them . +How Did West Know ? + Well , she said . +There is no other place like it . +They are too good of a team . +How is that going ? + This is the little show that could . + That 's how good it is . +This is the year . +So we will see . + It has been here . +We do not know . +There is no other place like it in the world . +It was like music . +Now , who would do that ? + It will never be what it was a year ago . + That 's just how people are . +It is five , not four . +How would he take it ? + I want to be here , but I want to play . + That 's your business . +He was a man of the people -- the American people . +It 's what I have to do . +I did nt get much for it . +It does nt make up for this at all . + That 's what I did , every day . + At the same time , it 's my second year out here . + Children will do that . +What are they going to put there ? + This is the right time for me to go . +What did He say ? +Who says you are no more ? +And how will it end ? + You never know what you get , he said . +You did it your way . +Is this to you ? +It 's my war . +Then he said : You think so ? + That 's right , it would nt have . +Who in here would have said that ? +No one has , and no one is going to . +But that 's over now . +I have been there before . + It would just be too much . + You do nt say that . + But we do nt have to , she says . +They are my family . +We do nt know what they are going to do . + She said she could nt . + He 's on a high . + It was a big night for him . +Can we do so from New York ? + It 's to have a good time , he said . + Can we have that , too ? +He 's been there so much for them . +It never can be . + He does and he is . +But they do not . +So was this his last game ? + Well , we found her all right -- or she found us . +This is not a good day . +He said , I think so . + And to see if I could do it . + When are we going to be there ? +Most of them do not work out that well . + Before the war , she said . +You can play with it and then put it down for a while . +And I like the people here . + I work with people all the time . + So it was against the law . +This year , they know . +Now , they do nt have any at all . + But that will not be the end . + You never know in this game . + We show it every day . + WHO do you think you are ? +But now there are more and more . + Even today I did nt want to come , she said . +Here 's how to make it work . + I have to know it 's still there . +It 's not just my family . + But I do nt think he does . +I should have made time for him , and I did nt . +He says he does nt want it , though . +This is what he is . + Is there more than one ? + It 's not going to be about that . + Good , good , good . + I want to have time for my family , she said . +So many of them were so good . +The President said the other night this was not the time for it . + I do nt know what this is for , he says . + I was in the right place at the right time . + He 's the man . +Well , I did but . + Did good , I think . +Where are we going to go ? + He could nt take it . +But where did the money go from there ? +I just can do it . + I do nt say no . + And that is what the play is about . +I have a use for it . +How to do it right ? + That 's not a good place to be . +He did nt know what was going on . + How much for that ? +Me : Who 's they ? +I will do it . + They should know that by now . +That 's when I found out about him . +Would you even know it ? + I said , What are these good for ? +And I think now it 's our time . +They do nt know much more than that . +But she 's right . + I did nt see it , he said . +I can see him now . +It should be me . +How is his life now ? +They do nt last long . +But I was new . +It 's up and down all season long . +He would not do it , he said . + I like to think about the law , she said . + I did nt know what to think . + There was no way to know . + But this is just one of many . +But he 's not that old , so you never know . +She just does nt know when . +You never know what you will see . +He had been here for about three years . +What do people say to each other ? +So how do you get one ? +If it is nt ? +I still think they might . +I do not want to do that . +If I can work , I can make it . +Now , they have to . +They can do what they like . + We did it . + He will say , Where is it ? +There are some people who just do not want to do that . +No one called back . + But how can they ? +It was of little use . +That is what this play is about . +I know they work . +I want to see what 's best for me . + They did nt know it . +But where will the money come from ? +You will never do it . +If so , it 's about time . +Did you see one ? + It 's only good for about a week . +If they do nt like it , do nt come here . + It did nt come for him . + I said , Where did you get that ? +I would nt do it if I did nt . + The law is the same for all . + All of us have . +I had to do what I had to do . + We did nt know what we had , he said . + That 's life , she said . +She has to come back . +Right now , I play good . + It 's there - and it 's big . + That 's not going to be our game . +I do nt do it every day . +That was a new one on me . +And what was it about him ? + I said , It 's not about you . +What have we here ? +They are part of the game . +That has been the case this time as well . +There are five , not three . + Year of Women ? +Last year , I did nt play that much . +All of our team does . +That is my world . + I did nt like the people . +But it 's here now . +It was by me . +How does he get there ? + THE END OF THE DAY . +But this is a big one for me . + What could I say to him ? +When he does nt want to go , he does nt . + People said : That 's not going to work . + That being said , you could nt . +And we are going to play with it . + Do it , they said . + I did nt come for the money . +Will that good place last all season ? +I want to be the best . +Now , he was back . + It is their life . +I like to be called out . + It may be right . +We just do nt know . +He does nt even want to see me . +And how long is that ? +And what will they think about ? + That 's two of me . + I did not know . +They should nt be . +Today , it is not . +Well , now we are there . + I never did it in the first place . + We just want that one . + He said to me , Where did you get these ? +Just do nt have two . +I may have to play . + We will work with him . +That 's what I come out to do . +What 's the game ? +It 's that way with music too . + Two or three years ago , we had some people , but not like this . +We know there are . +When they were good , they were very very good . +How long do you think . + They want , want , want , she said . +I do not have to come here . + That was way , way back in the old days , she said . + It had to do with this big city . + But it was nt . + We may not like it , but we have to make the best of it . +So , it 's been all right . +So where does the time go ? +It was their house . + He 's there to do a day 's work . + I do this for the money . + And it can be his team . +I have nt found a group . + I have them right here , he said . + It 's over , he said . +But I do nt want to get into it . + It was all a show . +The end of the year . +I think it is . + I did nt think , he said . +This will take some years . + We do it every day . +But she would nt go in . +I had it all day . +Some may still be . +But during the day , not every group is called into play . + This year , I have nt had to do that at all . + To me , this was the big city , she said . + But you know what ? + I have a big case in New York . +Is that still -- ? +They will do what 's best for the team . +Come to my home . +How do I get that ? + But so have the other two . +SO , HOW COME ? +And the more we say we are nt , the more we are . +But it 's all over now . +I just do nt get it . +It did , and it does . +They are only going to go up . +They did what they had to . + I do nt want to be the next one ; I want to be one of the next . + That 's how the music business is . +It is less now than it was five years ago . + Who will take part in it ? +She was like an American . +Where does that end ? + But in the end , to what end ? +But not this night . + We just had . + I do nt want to go back home , she said . +This game 's not over . +That 's up to him . + But we have to get good at it . +It is our money . +And we do nt know . +We going to do business . +It was the money . + This is where the money will be , he said . + Now where did they get that ? +But another is for all the world . +We found out what it 's all about . +They are people like you . + He did that all the time , she said . +What more could be said ? +Which is not to say they did nt . + But they did nt know what it was for . +I do nt see you that way . +What is it called today ? +I think it 's good to do it the other way around . +They can go back down . + He said , Now , do you see those people ? + What is it you want to know ? +I will never get used to it . + YOU HAVE COME BACK . +Now more is less . +Is she from here ? +We are against this . +They could still have people in place around the world . +He says that should not be the case . + We should not have used them . + But there 's no money . +Now they have us . + Left or right , what does that have to do with me ? +They have more money . +So I do nt think . + Where are they ? +Well , they did nt . +There was nt more . +But if I have a week off , I take two days off , and then what ? +How long did he have it ? + And that was before I had children . + I think all of us can say that . + I think this is good , he said . +But we have a way to go . +Not if , but when . +We know it 's out there . +But we did nt do that . +He never left the school . + That did nt work for me . +It 's not like I did so much . +It 's a big part of my life . +WHERE -- York , Me . +So the country found out . +You have to know how the other team is going after you . + There is , how you say . +And then there is the music . +I would like to know . + They might even know we are from New York . + That 's it , she says . +It can and it will . +You would if you had to . +What was he for ? + All season , it 's been about us . + He said , This is what it 's all about . +This time there is . + We do nt know where it will end . + It 's what you play for , he said . +This is who we are . +The show does nt end here . +You do nt want to think too much when you are in the game . +Because I make all this up . +What if she does nt like it ? +Still , he said , people are people . +Well , no , but before . +We want to know more . +If so , which ? +They should last about a week . + How would I take that ? + At one time it was . +It can not be used . +You just come back . +Will it make them go up or down ? +The next day , I did . + What will it be ? +I can say I was there . +But I think I made it . +It 's in the work . +Not for a little while . + That 's what that was . +I just do nt know who they are . + I do nt know about him , but I know about me , she said . + But that was too long , she said . + He was the man of the day . +He should have been here . +They were going to make it big . + I do nt think so , she says . +I know that we have to go out and do it . +Where there is no will , there is no way . + But we do nt . + This is not a game . +But he said he could nt do that . + Today , that is my high . +It 's also about all they have time for . +That 's what I did it for . +But this year they are back . +It 's all over now . + Because I know my team and I know how I want them to play . + No , he said . +He said , What ? +Going to the left . + No , not that . + They like each other . + But there was no big house . + I want to show them I can do it without them . +He said , Never . +There were four in our family . +But for me it was nt . +Now she has to go out there and make the case . +How can you want to part of people who do nt want you ? +We are in his way . + It is a good way to go out . + But it 's not This is what I think you should do . + What about over there ? +That can get to you . + We said it was just a few people , she said . +He does not come . +He did just that . +You play through it . +We did nt have time . + I get in her way . +This is the first time . +I did it all to her . + The children are so American , she says . +And where would that money come from ? + We have a new government . +What is going on at the Times ? + And I do nt know how he can take it . +So , what is new about all of this ? +He may think he is , because I think so much of my people I want them to do well . +They want to work on it . +It 's what can you do for me ? +Both did so this season . + This is right after . +But not each other . +Where does he go with this ? + That 's when they come in on you . + But never in New York . +Today was nt too good . +But this I know . + People who do nt like his music know who he is . + It 's such a big city , he said last week . + And you say : Come right in . + There 's more to life , she said . + People know what I do . + It was a long time . +You are the one who did this . +She was going to see the world . +It does him no good . +Make that first , and only , time . +So , what is it that you do ? +I do nt think there is going to be one . +And at the end of this year ? + And they never did . +I might not do my best . + Now , I do . + Life will go on . +What will be best for me ? +If they are , they should nt be . +He did so the next day . +And that 's what we did from the first day . +But they never get there , or if they do , they do nt know it . +It 's up to the government . + You never have time to think about what to do with your life . +He does not know , he says . +But yesterday , he did . + What do they know that we do nt know ? +New York City ) . +For me it is . + He can not work . + It 's just like a game . +I do nt know if can make it that night . +They are going to do what they have to do . +It 's for their own good , you know . + It 's much less work . +That is what you are going to get . + And you can do it . +That would nt be a first . +Because , you know , no , you know . + But you know what I think . +What do you do in the program ? + I could nt , she said . + I do nt think about it that much , he said . +Here 's what I want to do -- well , here 's what I want to do . + The market will go down for a while . +Have you been there ? +It might last a week . + Very good , she said . + I would nt think of not being here , he said . + Where Did the Night Go ? +Today , that was not the case . + Man of the Year . +I did nt think it would be like this . + I want to go back to see some people . +Come to think of it , there are nt that many of them around . +It could put us out of business . +But in a way , she is . +If they do , then many of them want to come back . +With this , we do nt . + No , we are not , I say . +It is a place . +I want to take some time to see which way I want to go . + Does he even know what this is ? +He would not want it any other way . +They are not very political . +I said : How is this going to end up ? + I think people will want to come back . +Now , we can -- we have a good case . + I do nt think it will be . +But he does not have to . +And I said , They go or I do . +May as well get used to it . +What was it for ? +But that 's who he is . + It 's just all the time . +It can be that way in the city , he said . +You are all one team for the department . +She had -- was this after she had left the White House ? +That 's been my way of life , I think . + Which it did . + Right Place , Right Time . +How could she do it ? + They are just not used to this . +I think we are right where we want to be . + I can not go , she said . + That 's a market for us . + You are not the world . +This is still the case . + And she did . + But this was nt just about money . +What should they do ? +They work for each other . +When you get here , you want it . + Well , you can do that . + And that 's just not right . + He 's not at all . +By the end of the week , he was all right . +Who would nt want to be out there ? +It might also be his last . +She did nt want to go . +But they are not . +It was just one year . + I do nt even want to think about that , he said . + What do I get for that ? + It was all white money , he said . +Your war is over . +If they come out , they come out . +That 's the end of it . +HE was on his way . +But what is her place ? + This was one game . + People do nt like this . + You or I could do it . + New York was where she had to be . + I have not . +I said , All right . +But that is not the case now . +You want to know what you are going to get . +The money was still there . +I think there are two . + We go on as we have before . +Where you can work . +So this is the way it is . +You would know if you had one . + But it just did nt come about . + They could get there and we could nt . +One or two can play the game . +I want to get back . +I Do nt Like School . +Last night , it did nt work . + He did , too . +And the time is now . + So what was not to like about it ? +Not I and I : you and you . + What day is it ? + Well , you are one , he said . + What does it say ? +We have to make it up . + But I do nt think it 's going to do them any good . +So 's my department 's . +Now is the best time . + It 's not another world , it 's not another place . + I did nt want to come back here today . +I want to be back . + I say : Well , no . + You are not , she said . + I did nt know where I was going to put it . +But I have to do that . + But what can I do about it ? +But she has no children to center on . +And that 's how it was . +Did we go out of business ? + She does , but it does nt . + No , I would nt do it that way , he said . +But there was an end . +It 's about time we can do that . + We are at war , he said . + I said I did nt want to . + He said there 's going to be an American in the second week . + And how long has it been ? +TO go or not to go ? +We have work to do . +Other days , it can be all right , even good . +It is the best day of the week . +This is right up there . +But it was time to do this . + We just do nt know where , what . +And that was nt good . + How could that be ? +One was Mr. White . + We are going to go after it , just as they are going to go after us , he said . + We are not going to make that . +What good does it do ? + It was a used one , he said . +I would just go and work . + People do nt want it to end . + If it 's in me , it will come out , she says . +See you next time . +But he may be right . +But I just did nt think I could do it . +I think about what he did for me . + What does he see there ? + Time to go . +A Not at all . +All three said no . +That 's what we want them to do . +The work will go on . +I do nt know more than that . + You know , you are right . +And you see this . +But it does nt have to be this way . +Now they are not . +Now we can get on with business . + And it 's not about business . +But that 's what it was : her house . + How many of you are in business ? + But the times are good for me now . + But we were nt going to do that . +No , because we do . + But since when did we all have to be the same ? + So I said : What do you want me to do ? + You are in the city but you are not . + Say , what ? +And what a market it is . +They are like family . +We had to be there to make it work , too . + You can say that , he said . + It just would nt be right . + It 's a right . +But no country in the world can do that . +It was , after all , the only life she had . +How did she know when it would come ? + It 's my family . + I think I can do it next week . +And he did not . + There were people all over . +Could they do more ? +I have , too . +I think it 's because of me . + I was like : What ? +It is not about New York , he said . + How could they ? + I do nt know that we are . +At one time , though , he did nt have money . + You do nt see him around . +What about the children ? + And that was good . +How can it do that ? + Today was a good day . +Until you get there . +Still , it 's there . +And I want to be there when he does . + He would not say where . +Where are the First and Second ? + But I think he did all he could . + I do nt want him to go . + It 's still there . + We know what we have to do . + And we are . + It 's more in the here and now . +And now -- no more . +But we just say it . + We have a long way to go , he said . + Well , we do . + You have to go home . +That 's who we want to get . +Without them , I do nt know what I would do . + He 's not over her . +But after that , she was very much on her own . +And that 's not what you want . + Where do you take it next ? + They said , Well , we have a law . + That does not have to be . + It 's not that big . +She had no children . +And if so , what ? + And he says : That 's it . + When will that be ? +We could use more of them these days . +This is your time of year . + And he did nt have to . +But what if it does ? +They just did nt go for that . +And that was not the end of it . +For two years , he was nt . +You put me with those women . +He still said , We are going to go with you . +We are at war , and so are they . + It is not good for any children out here . +I would nt have much use for the game . + What do you know ? + He was here every day . +Who would come to see them there ? +That is going to be good for him , and it 's going to be good for us . +These are his people . +That 's not for me . +It just did not work . +Right now , we like where we are . +I did nt think about it too much . + This is nt over . +He says he can . +So this is not the same show . + There is no life here , he said . + Now we just have to go out and do it . +But it can be more than that . +This is not the first time . + But we did nt play well yesterday . + There will just be less of it . +Or it may be never . +He does nt want to be here . + We are day to day . + Today was our day , he said . +It could be next week . +And it does nt work like that . +What is the other ? + It did not and we have not . + You make the best of it . +It was three down , five to go . +Well , what have I said ? + Do you like this one ? +Is your life what you would like it to be ? +There 's just not much to do out there . +That 's the way they are going to play . + We did what we could today . + We are too good for them , she said . + If I were to do another one , he said , it would be that one . +Work , then home . + Can I be in it ? +It is nt that they do nt have the money . + It 's a way to work . + I like them and they know it . +Now there are three . +But it is not all . + One year today . + It 's where the new money is going to go . +It does nt take up all that much time , though . + So what 's new ? + Women have come a long way . +It 's just that you do nt know how long it will take . + How can you not come ? +We do not think so . + But we are all one people . + It 's What are we going to do next ? + What war was this ? +It should nt , but it does . +They know more than we do . +It 's part of it . + And if there 's money to be made , people are going to go out and get it . +But I had left it at home . +He said he did nt know . + How can I know ? + My company is my family , he said . + If it does , it does . +Now there 's more than a million . +He just may be New . +No , he should nt . +Where does the money go ? +We have to be right with him . +I can still see it now . +Me , because it does not work . + Then I said , What you do ? +This would not last . +I just have to play . + This is where I part company with him . +And what is next ? +So what to do next ? + But now we can . +I just do nt know how it will come out . +They think we can do more . + There was no other work . +He was up to no good . + What time do you have ? + That 's what I like , he said . +And the next year , they want to come back . + I did nt know that this world was out there , he said . +But there 's no money , you see . +And he did what they did . + Now what do you do ? +Not so the play . +And there are still many of them here . +It is , after all , what he does . +Between the two of them they have four children . +I just want to go out and play . + What do we think of this ? + But we have work to do . + This is nt the home of today , she said . + Here , you get out of it what you put into it . + It 's a like a family . + Put them there , would you ? +I think we can . + I want for this all to end , he said . +That 's all part of it . + They were like family to me . +If they want him . + I could go home , to be with my family . + Did You See One ? +Some make it , some do nt . +If so , they would not have been the first . + It is what we said it was . +They do nt want you there . + How did that get there ? +It is nt the first time . +That 's the way those people are . + They go , Who ? +Just play it out . +How did they get that way ? + If I can work here , you can work here . +You just had to show up . +He 's made that play before . +We may have to do more , not because we want to , but because we have to . + That 's him , she says . +They want their money back . + What do you do about that ? +More than that they can not say . + You just do nt know who can do it until they do . + They want to do what they want to do . +It 's part of being on one 's best game . +What is best for us , we think , is best for them . +She did not get the part . +You have to do it . + Get it right this time . +But he has to show he can do it . + It 's just so old . + There 's just too many of them . +That 's where he should be . +But in that way , the place is very New York . +This is what you do . + He said he was . + After I go , that 's it . +Well , it 's not still the same . + Too much , she said . + And what about the who ? +We did nt come to play . +He said , get used to it . + He said he did nt want to go . + It has nt , and the Government can now do very little . +What about the law ? +You would nt know where you were . +That was all right by him . + They are not going to want to do that . + I do nt want more people to do it . +That was not so very long ago . +But you know what they are going to do . + I do nt know who he is , she said . +Just what did she know ? +To make a world their own . + We all know what 's going on . + We know we have more work to do . +You just do it with the people in the street . + But this is our house , he said . +He 's a man of the people . +With your music what do you want to do that for ? +That 's where we have to go next . +No , she would not say how old she is . +It will be all I have to show for five years of work . + But he was more than that . +She did nt say , Well , if I were you . +It 's the only one we can get . +I was his from there on in . + I do nt know what they are going to do . +No more , not for me . +We have so much to do here . +You just have no one to play . +You just have to go out and do it . +BUT I DO NT . +I have to go out and play my game and do my best . +Who was going to say No then ? +He did nt get it . + But this was like her home . + Is there more to it ? +Who can I go to ? +I was not going to come back . + He may have been . + But we did nt use them , he said . +Can you get off and make your way from there ? +Or before some of them did . +This is not the will of the American people . + I do nt like that at all , he said . +It was my second day of work . + It has been a while . + We did nt play well , he said . +We work with where they are . +Is it a place ? +That was the other way to go . + All the people ? +It 's where the money 's going . +Each one has their life . +And now they are . +It 's not my country . + I had to go back , he said . +They did not come back . +He did not want that here . +We do that and we are in . + What do you think ? +Or , you can go out . +He was on his way to work . +Because my life is here . + Will you do the same ? +Do you know what 's going on ? +In this case , he was nt the last to know . +That was too long ago . +But that 's not the case now . + Was , she says . + Be a man . + This just is nt about that . +The country is at war . + People do nt know . + But we also know how good we are . +I do what I do . + But I say : what if ? +But we would nt have it any other way . +You should do it . + We said it does . +What , that 's it ? +This is what a President has to do . +Should they get them ? + Then back to us . + Also , it 's our home . +If it does nt , so be it . +What are we in this world ? + And they are going after it . +We have not had any at all this time . +A : - I did nt then . +What is she called on to do ? +And who would want to ? +It 's like a big game to him . +What country are you from ? + People are going to show up . +So if you did nt know , now you do . + People are not going to not go out , he said . +That 's very , very good . + What 's going on down there ? + Here I have company . +But still a man . + We are going to go to court with them . + And so she is . +But that may not be the end . + Here I have no one and no where to go . + You know what I think it is ? +As in : I like our team . +Before one year , I did nt think I could do it . +We all want to go home . + One does nt want to go to school . +There are only one or two on every team . + Can you say no ? +That will not do . +There are too many of you . +We know who we are . +I get my people from all over the world . +I do nt know , but I would think no . +She : Now , how should we do this ? +We have to do this . + They called back , he said . +And then it is same time next year . +I said , Do nt say that . + What will they do ? + What was it about ? +We have to come out of it . + I still do nt know . + We will do what 's right . +Some might have even had two . +They have to want you . + How about you ? + That 's the way it has to be . + They have no place to go . +The two of them did . +It is nt good times . +He could nt get through . +And that 's a big group of people . +Would you like for him to be on time ? +I like it the way it is . +I did nt think money . +Where does she go from there ? +It 's just good business . + We will get them . +We can only be for it . +Well the end game is to end it . +It 's all new to him . + The one at the end of the year will , and that 's the one we want . +I do nt think after all these years I should have to . + It 's little . +They know not what they do . + I do nt think that 's the case here . + And that is what we want him to do . +It was the play of the game . +You should come home . +But it does nt have to . + I do nt know what I would say . +But how would it know ? +It 's not that this is the best place for us . + We will know our market . + I want to get out . +One day one of them did . + We had to have that game . +Because it 's so much . +One would have to go . + I do nt want to own it . + All that is over now , he said . +They did not have much time . +You can just do the best you can out there . + And they think she 's going to get well . + No , no way . +We go all around it . +I do nt know what that would be . +But we did it , man . +Where is she going ? + It can , but it just does nt want to do more . + But the people are still here . +I found a way . +They get to see what the market is out there . + But what is that ? +No , that 's all that we have . +This part is over . +But he did nt have to . +I like to know what 's going on . +The best we can do is get out . + A new life . +I was nt much into that . + All our business is down , he said . +That 's all there was to it . +You do nt want to have it . + No it 's not . + That he has . + He just could nt go on . +Some of it is not . +IT IS ALSO VERY LONG . + But she could nt get any of it . +It 's the best I could do . +The United States did not take part . + This is it for all of you . +That 's not them . +Also , I can do it for a long time . +Right now , though , there 's time . +Time , after all , is money . +Which and when , I do not now know . + It would be good for the country . +What a way to go . + But we have a president now . + Until this day , I do nt know , he said . + It 's a big show , was all he said . + What do you want it to be about ? + I know they are not going to be here . + But we are going to take it to the American people . +And what should she say ? +It could go down . +We think about today . +I long for it . +And so there has been . +You have been in the business a long time . + It 's not up to me , he said today . + They might have used it . +My money is on her . +I did my part . +Just do it well . +I could not go on . + What if I get off first ? +That is what it should take in this country . +Is nt that what they want ? +Each has a will . + And that was you . +Will it all last ? +This season , he has . +Now , what about her ? +If you want to be the best , you play the best . +Most companies do nt . +And he does it well . + Because he was on his own . +How Does It Work ? + Just do nt have the money . + So we know what we are up against . + Well , well . +We do nt want to get into that . +We see more , too . +But what I have to say now , I have not said before . +That is nt how he is now . +He just did nt play . +This was the part I had come to see . + And do you know ? +Still , it is found money . + She said it was too much work . +Those people were just going to work . +When will it take place ? +But is it , you know ? +This was my work . + I know she is right . + We never have people say , I do nt know . + But I would nt want one now . +Most of it 's Off Off . + It was good for us . +But should it have ? + I think I come to work every day . + What are we going to do ? +So have we all . +But it 's over now . +He could have left it at that . +This is from What Are People For ? + We go day to day . + I think it 's going to come around . +It 's part of her life . +So I did what I had to do . +That 's not what you want to do . +But now they do . + We are all on our own . + We will get there , he said . + We like them , but we are not going to make any more of it than that . +People are not in this for money . + And I say , no , no , no . + We are back before the show . +That 's all that 's left . +The game is a game . + There 's not much we can do , he said . +As well she should . + I just want to make the team , she said . + Do I like this ? +So , he says , I still do nt do it . +He did not know these people . + It 's old , she said . +But many people do nt . + The American people have a right to know , he said . + But do you like him ? +We are going to work on that . +We are all going to have to get used to it . +Life 's not the same without her . + They want to make the money . +Our day has come . +We did nt play as well as we could have . +And that 's what this is all about . + It would be more of the same , only more so . +I think it might be now . + I could see right down to the end of them . + She did nt . +For a while , he put it off . + He did nt say that . +After all , he did it two years ago . + What do I have to do ? + It may be , he said . + That 's how it 's been . +But this was a good program . + I never do . + What 's been best ? + You know , I think they do , she said . + One can see around and in between , she said . + What I said , I said to that group , he said . + What 's it to you ? +He just could nt see . + He may want his own people . +But New York has no such law . + And she said , No , I do nt think so . +This is only one game . + TO HAVE AND HAVE NOT . +All day , I did it . + You know what this is ? + Can you still get it ? +It was just too much . +Who , then , is it for ? +Now he 's the president . +He 's not that . + What 's it called ? +But , but , but . + I said , Well , I do nt know . +The American people will only put up with so much . +His home is here . +It 's just another part of life . + There 's not much left . +It was nt that way yesterday . +For me , they will . +It 's what I was . +Today was one of those days . +But they never did that . +How did he know to do that ? + We did this last year . + So What Should I Do ? + But they do nt get it . +At one time , there were many more . +We have a very long way to go . +One he did not have . +It was like that last year , too . + For the first time , there is no time , she said . +But now these are people we know . + I want to get back in there . + That 's all it 's about at the end of the day . +We make more money . + I do nt think the show will have a life after him , she said . +It 's like being home . + I do nt see it as about me , he said . +It 's all me . + This game will go on . +It has very little to do with our time . + They are all old . + I do nt know if you have time . +I make too much money . + What 's new is the money , she said . +And I think we now know how to make them work . +And she is the law . + What did she say to you ? +I say : It 's time . + So I called her . +Are you like me ? + Which he did . + That one I was against , he says . + I have very little time left . +She had no business in there . +I have a second one on the way . +But she did , and what can she say ? +Get down here and take them . +You do nt have to go on and on . +And should they be ? + All good , he said . +This was not one of those years . +You could never go to his place . +Or more people use it . +There was only one way . + It was in our court . + I was at the end . +You know they are going to do it , but they still do it . + You are going to the best place . + How should I put this ? +You know , you can . + If you do them in a new way , then they can have another life . + When you were little . +They want to play well . +Would it all work ? +It might , but does not . + That 's the way we want him . + He 's here . +I think you can . +It 's the other way around . + But I still like to play . +And what did I think ? +We know what is going on here , and we have to end it . +Is that too many ? + I do nt see him , but that 's all right , though . +If that was nt home , what was ? + There is so much to it . +We know that will be good . + Where I have , you see . +And we are , you know . +In a way they have . +They do nt know what 's going on with children . +But how can you ? + What do you want me to do ? + But so will I . +There 's money to be made . +This should be over . + If he 's here , he 's here . +No good can come of this . +They do not know who did it . +But I know it will be best . + They want more , more , more , he said . + Other than that , it 's just a game , he said . +They know what they do . +Put a few more in . +This they are not . +But I was there . + Now it 's . + And it still does . +It is still in business . +She did nt want to be . + People just go on their own way . +But it is your home and it is good to go back . +What 's the next one going to be ? +We are still in first place . + You have to be here , he says . +That was another time . + Do you know me ? +There are more , but these will do for now . +It is still very much with us . +I can do it all . + We have a new President , he said . +But not for a while . + I think it 's still out there , she said . + They do nt do as much as they should . +But it did not take him long to come back . + We may not be the team we were two years ago . +One day , he will play . +But there you go . +It 's our HOME . +All of us can do that . + It may come out . +It could be both . +I have to work with these people . +Of those , it has many . +We are not in a war here . +We are not about that . +You have to go out of state . +First it was on . + I do not know if this is good or not , but that is the way it is . + I like that , he said . +It is not every two years . +He did nt do right , but we should nt be put through all this . +How to do this ? +I want to do it all and I can . + It was what I had to do . + There was so much work . +A week is too long . + It 's about the team . +I have to work through it . +The more I know New York , the more I think of it . + This time , he said . +Now I can get one in any market . + We do nt like that , but that 's the game . + I have nt found much this time , she said . +I did nt get to it . +Now I have to go against him . + We have to have those two back . +He has that right . + What do you think ? +How in the world will they get around that ? + Now I think they are good . +After today , no one will know . +This is another show . +It should be so and it will be so . + Where are they going ? +But what a season . +And it was not the first time . +He did nt think he could make it . + That 's like going out to me , because I do nt go out that much , she said . +This one I did nt . +Were they all right ? + You can say what you like . +Now it 's just one game at a time . +The White House office may not be very big . +That 's what we did today and they were good . +What do you think about all this ? +It is a city . + That 's the way they do it , she said . +I was nt one of them . +And what have they found there ? +But he did nt this time . + Time to go to work , she said . +But what is nt ? + This is your life . + So what do you do with that ? +Mr. Say , too , has come a long way . + Would I think about it ? +They are nt many . +And so he does . + It did not work , he said . + And long they do . +In a way , that 's good . +You will be with me every day . + And that 's what this program is about . +I think it 's about us . +And for all I know , he is . +Not for the money . +But this is nt all good . +Business is good , she said . +It will be right up there until the end . +How do you get it through ? +It 's not against the law . +This is the business that we know . +No , we did nt get into that . + If that 's the case , then so be it . +Or has she been ? +You know all about it . +How is your game going ? + They do nt know these people . + That day has come . + This is the government . + When we go public . +Can you get him here ? +I think the war is going to go on for four or five years . +She , and those around her , will never be the same . +This is the best place . +She was the best and my one and only . +She did too much . +Because I just could not see it . +And that 's not who he is . +If so , so be it . +It is about us all . + It 's a new world for them . +That was about three years ago . +There is money in war . +But that 's where we are . +If it is , it 's going to be a long year . + I did nt say that , he said . +What 's that like ? +It 's not even American . +She said she would do so . +But his day will not be all work and no play . + The money 's good , she said . + Never in my life , she said . + I can use the off day , too . +Too much , too much . +Is he going to come back ? +How could you do that ? +People do nt want to do any of that . +We were all over the place . +One down , two to go . +And now you are both . +Most of the time , no one did . +He 's against them . + They think we are police . +It 's called a team . +That 's the end of the game . +And I want to go home . + I do nt know where they are now . +She was from old money ; he was from no money . +Is it for children ? + People do nt go out the way they used to . + And I said , My life is over . +She has to be up and down , up and down . + I can get used to this , he said . + But I have more . +Come now , what money ? +We have to take it one game at a time . + So what about money ? +It 's never over . + Now , it is not . + People say this is over . + I do nt see how they could do that one . +I do nt know what he is . +But this would not be a good day . + We can only do the best we can . + It 's all about me , she said . +Which is good in a way . +It might be time . +They know the game . + But it 's like company . + He just did nt know who to be , she said . + Now I think about it all the time . +And if you have it , you can do it . +When is it going to get back ? +And if there is , what is it ? +A day off is a day off . + You know , there 's just so many of them . + But they were at every game . +This is used when we know what we want . +I do nt have family . +With Children ) . +But they make do . + I did nt know which way to go . +But now I want to make up for it . +The first was from high school . + We think we can get him up here . +Still , there is much I can not do . + I do nt want them to think it 's about me . +That had been the case until last week . + Did you know them ? +She was nt the only one . + Did you get it ? + Not that we like it or want it . +No place here for old people . +One day , it 's all going to come back around . +We want to make money -- and how do you make money ? +Could be good , right ? +It 's going to be with us for some time to come . +Many members are women . + Do nt , she said . +We have never been this way before . +I had to be in New York . + I just do nt even get into it , he said . +But then what would we do ? + It was time to come back . +It 's like going home to your own family . +I had to make a play . + About one in a million , he said . +He did nt work out today . +Only the first two made the team . + This time they did . + People like to say , What was it , who did it ? + They come all the time , she said . + But you do nt have time to think about it . + What 's new , John ? +It was nt just me . +And what a way to go . +We all want to do it . +A week ago , it was not that way . +And now what do you do ? +And the million more like him ? +Here is where you are . +What is a family ? +That has to come off all the work . +I did nt know if he was going to have it or not . + What 's the other ? + I was good you know , she said . +WHEN is long too long ? + I want to play three more years . +It 's called children . +You know you are going to be out there , and it 's just going to be you . +Those days may be over . +But is it as much as we used to do ? + There 's more to the game . +So are a few states . + Have You Been Here Before ? +Where were you last night ? + They just did nt know . + They have a right to come in . +Where did I go ? +That was new , was nt it ? +They now have , and he should . +It 's a war . +It 's all about the team . +Another said : He did right by me . + Another between you and I . + I do nt know which way it would go . +They never called me back . + He said , I know . +Most people in New York do nt know you . +You all have nt had that . + This is a family man . + But what do we do when we get home ? +That was nt right . +That is not the case and can never be the case . + But there is not . + I just did what I had to do , he said . +I could nt think of what I want . +There 's too many to see . +Then what would people say ? +I had to work . + From last year , it 's like night and day . + Not very well at all , she said . + But you know it 's more than that . +And so she has . + How could you not be ? + It is nt that at all . + But would she know him ? +I was nt used to this . + You come on as what you are , he said . +So -- what did you think ? + There is no other way , she said . + That 's not for me to say , he said . + And then he did it . + And he was nt around . +Do you go for that as I do ? + Well , those days are over for good . +Well , that and Mr. White . +You have to take it game by game . + But I want to make people think . +They said , You would ? +And I do nt think that they did . +Do you have two more ? +But only one team is way up there right now . +Best for the country , too ? + What did I say ? +I was on my way to school . +She was too little . + I was the one who was there . +They were up against money , and not long on time . + I did what I had to do . + No , no , he said . +That 's all he can do now . + I said , Well , I think I can do it . +You get two days in one . +Not only would the public be with them , but so would big business . + There 's no war , he said . +You never know , do you ? + I do nt know where this is going to go , he said . +He has been out of work more than a year . + He said he would go back if he had to . +Where is that place ? + But he had a good game . +We have nt had it for four years . +I just do nt see that at all . +We had a good time with it . + It 's part of the times , he said . + It 's good to come back here . + I called him that after today . +So , several years ago , was the city . +He does nt want to play . +They are around us all the time . + And do you know what ? +I do nt think about her . + And that 's good in a way . +Or all of it ? + You work here and you do nt know ? +You make one play and then you make another . +Say it ; say you do nt like that . +And there 's the music . +It does , though . +But they have a long way to go . +It 's not their game . +Well , What 's It to You ? + I think it 's been good for all of us . + That was three years ago . +And in the end , she did . +And they are in it . + I work at home . + Not what I say . +Today is Law Day . +But they will never know . +It was a first for him , too . + You do nt see that all the time . +And then he left . +So does his team . + We are all one family . +Then they said what about next year ? +But think of that . + What we do nt know is where they were left . + More to Come ? + I said all right . +What about this one ? +Not , what is it for ? +You have to say , was this a good use of my time ? + I said , no , I did nt . +But she never will . + We do nt want another war . + I do nt have to do what they did . + You like that , right ? +He was not , he said . +This show is nt that . +It has been that way for years . + He said they would take it from there . +Just as he has all year . +He would say no . +The office was to the right . + Then they said it was not her . + I had work in my country , he said . +If it does nt work , what can I do ? +How had he come to be there ? + At the same time , they say , Get them out of here . + This is not against the people . + He may have been the one to come up with it . +Does he use it ? + What do I do in his case ? + He has no place to go . + I was the last to know , he said . +But in any case , all this is over now . + No , he said , I do nt think so . +He was part of his family . + We do nt want to get into that . +It 's just that now we are more of a family and more of a team . +They know he 's not . +This is the business . +But not when they think about it . +What should these people do ? +Do you know what I did ? +Where does she come in ? +That should go over well . + We were about to take off . +I will not go until they go . +It is that and much more . +The world did not end . +An American City Through Time . +I think it was more us than them . +She is in the way . +He 's one of the few . +If we had that up here . +Take that with you . +All said they had . +You can not make this up . +The work has not . + But it 's much more than that . +You can have one or the other . +Where should the money come from ? +What 's up with that , man ? +They did nt get that . + So I did . + Just two of us are left . + You just do nt want to . +And not all of them have . +They are good for my life . +And I like the music , too . +He should do so . + I did nt even know about it . + How could it be ? +That 's just about where it 's at . + They are the same as we are . +He 's right up there with the best . +That is how it had to be . + It does nt work very well . +Do it next year . + But I was nt . +Now , I see it . +And what if not ? + What if I do nt have it ? + It was just in my way . +And where might that be ? +Then I called in my family . + It was nt that they did nt know him . +I was nt around that much . +Now I just want to get into it and see how much work it will be . + We said there would be more women , and there are . +Could it be you ? + I think that 's right . +But did the children go back to school ? +He 's more like you . + What would you do if this were your house ? + We did not play well as a team . +It is to be all that it can be , but less . + And they said , Do nt you know ? +It 's all very . + That may have been my office . +He may back up , though . +We have to make the best of it . +I want what he has . + You do nt want to do too much , he said . +And I did nt want to do that to me . + That was the one . +Our Government -- and How We Take It Back . +For him , it also has to come in the right place . +We know we are in a war . +Now there is nt . +People come , people go . +You see how it was . + That 's a first , he said . + But what 's life about ? +What is that about ? + We want to work . + For us , she said , less is not more . + But it did nt work . +That 's not what they do . + But only a little . +Life is not the same without you . +The season is right now . +They were not used , he said . +Which do you or take home ? +I think that we can do it . + As much as I can . +I did nt have that money . +But the place is a part of it . +We are just like any other company . + You know , and . + I did nt come here to be this . +Life is more than that . +The President called back . +This is the play . +Can you do that in New York ? +But not many other people do . + I have no one there . +There is much , much more . +We will have to see . + You work at it . + What do you want ? + We can do that . +So does the United States . +There was no police there . +It 's not your own home . + That 's the best I can do there . +What do you want for them ? +Do you know him ? +They have all the time in the world . +But where are you ? +I know that I can play . + How do you do this right ? + That is , what is the market ? +You can play as much as you want . +It was a long time . + We think , if there are more of us , we all get less . + So , you might as well go for it . +We do nt want any part of them . +They could and they did . +For a time all was well . +Because they did nt come in . + We have to work . + It 's his second life . +What was that life like ? +But they will take it . +And I would nt like it . +But a million other children were not there . +I did nt have children of my own then . + Do we even know it ? +That 's another use for it . +What do you say to her ? +This was a new world . +Most of those people are out of business now . +And that time is now . +First , they made one . +And it is not just the United States . +I did my best on it . + Go on to the next day . +New York is a good place to make a home and do business . +He has nt since . +Do you want to be a part of it ? +I can still do this , that 's not what this was about . +They are a way to make money . +They have said much the same about him . +Not one from New York . +That 's their team . + It is good , she said . + I want this program . +So music is out . +THE LAST AMERICAN MAN . +But I want to do well here . +That 's good for you . + But I do nt think most people would know one from the other . + Now they do nt do that any more . + Would that he had . + Mr. Been said . + How can you want to be in a place where the people do nt like the way you play ? +Today I found out . +And it should be next . +I think it 's another game to see what they can get . + This is our life . +NOW YOU HAVE IT . + And they are : How did we get here ? +There 's too much to do . +One night I did . + Then they were a New York team . +They say I have been . + You know when they are there . +Some people said they could not even think about that . +But I want to see it . +But I do nt think it will be that way . +They have a program . +And more of life . + Do you have any more of these ? +Right now , we do nt have that at all . +You have to be here among us . +That 's all there is -- most of the time . +But they do here . +Our family is the less without you . +I want to see more . +This year , he will have three . +Most people do nt even know it 's going to come up . +Was in a high school play with him . + People come from all around , she said . +It 's all about business . + We want a family . + It is New York . +It 's all going to come to you . +But that was all . +It could , but does nt want to . +What do you with the music ? +For a while , this was the case . +Have nt we all been this way before ? +But this is not the place . +Well , that 's all right . +He 's a big part of what we like to do . +We are on our home court . +And make a million . +No , he said , he did nt know that . + He just left us , she said . +But this is not a place to be right now . +Those who do nt go back to court . + There may be no place for us here , he said . + Well , that was his right . + Where do you want to go ? +A Life in Our Times . +All you have to do now is to get it down . +People just have to get used to that . + It was nt us , it was nt me , it was nt them . +But he was called to work . +Then he 's out . +This is part of that . + It 's still our game . +We called him down from New York . + We are going for second place . +You do it your way . +It 's all around you . + If I want to get high , I just get high . + It 's a play to make money . +Or where we are going . +They know what they think . +I want to be a part of it , and I want to do my part . +This has been going on for so long . +I do nt have to go to them . +It is time they made it on their own . +And more come in every week . + On my own . + You are never out . +So who 's left ? +It 's just all over the place . +I did nt even see it . + Now we know that it 's not . +Now we are here and I do nt know what to do . +Should nt do that . + So we made one . + How can I get my money ? +We do nt go out . + I do nt have time , she said . + And there 's not going to be . +This season was made for them . + What did I do in my last life ? +It 's a place that 's , well , like family . +Not every one , but many . +And then I had to go back . +He did nt come back that night . +But that was not so . +We could nt have said that a few years ago . +Do you know who you are ? + There are nt that many around . +And it did nt last . +You know you did nt see no one do that . +The two make a good team . +At first , she said , he said he did not know . + This is a very old business . +And he can still go off just the same . + Where did you come from ? +He found a way . + But no way . +It 's his team . + I do nt work for them . +And that 's the end of that . +You make this team . +So there is more to come . + He did nt want the house . +I should have just come out and said where I was . +Can we do it today ? +Take your time there . + It 's too much , no ? +We say who did it and how they did it . +She was the best we had . +Then , other people come . +I do nt think he will get it . + We do nt make any money . + I do nt know how he did it . + But it 's new for us . +For a long time , it was the only one . +It was going home . + People have called , she said . + It 's like night and day . + And he said , No , where are you from . +No , not a little home . +Show them we can do it , he said . +And that 's the way it was . + Some of them will be here two to three years . +That 's the way people want it . + How to put it ? +I did not want to play that way this year . +That used to be good . + But that is not the case . +What is it with people ? +That 's not same . +But that was never the case . + They work every day . + That 's all he do . +And it does nt have to be that way . + Then what do I say ? + For years , she said . + You could do that then . +I never have been right many times in my life . + It 's the first time it 's been on the market . +I do nt know , it 's like you have to do it or . + We do nt want to do it the old way . + But last night 's game was last night . +So white were we . + Where is the end ? + I do nt like second . +I have work to do , a family to be with . + That it might be ? +But I did nt say so at the time . + What was going on ? + But they do nt want to make way for us to get there . +It did nt work out . + I used to be in New York every night . + I do nt want to think about that , but that 's out there , he said . +They are all the same to him . +Not too many people up there with me . +Most of them did not . +That was the law . + Well , it does nt work that way . +Not every one is . + And that 's what it 's all about . +Not during the day but at night . + Its been such a long time . +Well , I like him . +Just think a little about that . + Who did you say ? + How good can we be ? + Can this court do that ? +But when it does come on , they go all out . + Get used to it . + For me , that was the only way to go . +We do nt do that here . +I have to take over . +So this is it , right ? +What , you did nt know all this ? +It is what we had in our school program . +Who should get that money ? + That was also a big one . +In a way , the two are the same . +That 's part of my game . +We have the people . +So much for that . +But he has to . +What can I do ? +We will not set a time or place . +You may know some of them . + But it 's only a few days of the year . + I like him , he said . +Five times in five days . +They should last a good long time . +And he could not . +Now was the time . +Are they not people too ? +This is not the New York I know . + They have to do more . +Would there be any time for that ? +I found her first . +Now you have to go to the people . +There 's so much more of it . +All of us are . + Come in and see me , he said . +And that should be that . +All has to go well . +But those were the Good Old Days . +Should we have more police ? + Who would nt want to do well here ? +They just do nt think about it . +I know that 's the way it is for me . +But we want them back . + And we are as well . +Do you think a little war is going to get this group down ? +And that 's all that is . + They work out if you work . + Until then , we will not . +But they have nt . +They will want to . + But they are just people . + They want us to get out of here and go home . + So you have to get back to work . +She could never do that . +And should nt be . + Want to go in now ? + I have this , he said . +We should be , but I do nt know . +What I had to do to get him out . +They did nt have the money . +Where would the money go ? + You will know where you are . +Did nt he get it ? +I just do nt see how they are going to do it . + Because we all know . +You can never have too many . +Even when he 's not in the game , he 's in the game . + Are we all here ? + When is the right time ? + Where would they go ? + Now he can too . +He does a little of both . +There were several of those around . +The game 's not too big for them . + The one who was President ? + School is part of what we do . +This I will not do . +That 's what it is about . +She had found it . +But that 's good . + Which high school did you go to ? +I might , he said . + But she was right . + It was nt me , she said . + Me , too , I say . + We are at work , he said . +It 's not on us . + I never say no , he said . +Some say they may be in the right place at the right time . + There is a big world market . + Who did I want ? +He has been there since . + At that time , I did nt think about it . + They have me there because I do the work . +There 's so much to do here . +My time is here . +They are both right . + He said , You know that . + This is my city , she said . +This much I did know . +I did nt want to be a part of that . +What to say to her ? + We did nt play very long in this game . +I just want you to make your life the best it can be . +You know they will never be called . + I want this to come out of New York , he said . +We are not at war . +And we did it very well . + We just do nt know , she said . +How much I did nt know . +What , then , is ? +And they know this . +I think we can all use the day off . + I like it here , he said . + But I know they like it , too . + I did nt like being around people who were . +But no more government work for him . +When does this all end ? +This just should nt be . +Well , they still are . +We do nt come out the same as other people . +The city is just too big . +Has he or has nt he ? +Each day there are more . + What did they do about that ? + But when you see it . + In that case . +She has a life . +So most of that money will have to come from the United States . +Where did he go ? +But then , she did . + That play was Same Time , Next Year - and that was that . +So it 's right . +We might not see it . +But she was nt . + It 's too big , he said . + It 's on and off . + They do nt work . + That could be me . +It 's the money they would nt have had before . + And this is a good team . +That is when he called me up . + We will see about that . +It 's going to put people out of work . +You just want to play . + It can be the end of life as they know it . +It 's all been said . + People like to see their money . +She did nt know who I was . + Music was also in the family , he said . +Even for two days . +But this time he was right on . +Just what can it do ? +Here it 's more a team . +That 's what so good about it . +I know she had a good life , she said . +And if it 's me , so be it . + They were very good people . + The case is not over . +You just have to get used to it . + It 's a big so what . + So , this is big . +What 's good for one is good for all . +Did you know that at the time ? +So today may be the last day . +It did nt last long . +Now we can take over . + I found two of them , he said . + And he would say , Not at all . +Now , they may have that . + She was too old to get out of there . +For how long may even be up to me . +She can do both . + That 's two more . + He was like , All right . +They know life in the United States . +That 's not the end . +That is , until this week . +People are out all the time . +Well , it 's over now . +We are where we want to be at right now . + To be or not to be . +People in the city want that . + It was like she was nt there . +They want to take every day off . +Just like all of us . +People that left want to come back . +Some work , some do not . +I could nt get in here , I could nt get in there . +Then they can do with it what they will . + She 's said all of that to me , he said . + If only one could . +We did nt know it was going to be like this . + For them it 's a way out . +He has made it back . +At first , he said he did not know what to say . +They do not have that . +We are good for each other . + Are we in this business or not ? + Who did he think it was going to be ? +We had to make him at home . +But I want to play here . +They do nt even have to like it . +And that 's where we come in . + They were up to no good . +It is five years today since you left us . + People are like that , he says . + I think I can , she said . +And now is that time . +I said , this is not for me . + But he does nt have it . +We want to do the same for him . +It is a long play . + And we know that 's not where we want to be . +Would he still have it ? + He said he never had . +I think I might . +That 's it ; that 's the end of it -- now we are even . + I did nt even see it go in . + It has to come down . +There is not now and there never will be . +I do nt know where you get it , but she has it , so that 's good for her . +Not much about that night . +In a year or two . + And it just did nt work . + That 's us , I said . +But you are not . + I do it in school , she said . + Where was he right now ? +He did not take it well . +It 's like government . + No way I was nt going to be here , he said . + The time is now . + It 's part of the game , he said . +There are not many of those left . +Did nt like him . +Even though the center . +IS it him , or is it us ? +Never in a million years . +How well would this work ? +But not the president . + The money is there , he said . +So I do nt see it . +But she might as well have been . + I want it to end , he said . +It 's one way or the other . + He can do what we can not . +How are you going to put them to work ? + Last week was last week , he said . +They do nt come around to us . + You know it , he said . +Which they do not . +What do you think I said ? + You do nt own it . + What they want is what I want . + I do nt see a good life over there , he said . +How 's the family ? + I was , he said . +Could be a long time , though . + We think we did well , he said . + They are good , he said . +This could be it . + I do nt think I have , he said . + But this is not business . +You just may not know it . +You are the people of New York . + He said it was . +The director of . + They work the same way every day . +But he had a very good one . +I know it , you know it , now the American people know it . + And they say , We will . + But this is nt about him or me . +They had their day in court . +It was part of life . +But now women are women . +It should nt go like that . +But money was not . +Until now , not much . +Not now , like this . +Today , they did not . + That 's what people know me for , she says . +But those days are over . +I do nt see any way out of this . +Where have they been the last four years ? + I do nt want to be a part of that . + It 's going to be good , he said . + I did it for the money . +You do nt know that much about her . +Not every one does . +They can have it all . + It 's not that this is a new me , he said . +In this case , they did not . + How much money do we have ? +He was one for four . +That was more than a year ago . + I think so , she says . + We do nt have that in my country , she said . + I said , My good man . +What he did nt say is If you do nt , you are not going to play . +You do nt have time . + You are all right now . +We are all for you . +Where is the West ? +But I should say this . +Some think his best work was long ago . +And so , it 's just good business to go after them . +Is it part of that time ? +He was all that is best . + We are one family . + But I like the team . +It is not ; and they may not . +The company does not have a president . + They left , he said . + So there you have it . + I should have made all three , he said . + This is our money . +What if it does not work ? + I do nt know if we can , he said . + He found that it was not . + There was nt one year that it was down , he said . +I do nt know what 's going on . +I can work with him . +It was big for us and big for me . + No , I do nt think I would , he says . +And well they might . +What might it be ? +And that 's not good . + He 's part of our team , he said . + I said : No , they say he does nt . +But her family did nt know it . + You are left out . +They have nt had to do that . +I have nt been in there , so I do nt know . +Because there is one . + I do nt think it 's over , he said . +So is this show . + That was nt me out there . +The way I play is not like most people . + They want them at work , she said . + It 's like a new season . + But you do what you have to . +It was no good . +Today , I do nt know . +Now they are nt . +The world is not like that . +So that 's where they were . + One is still up there . +I do nt know how he does it , but he does . +We did nt know how good he was until that game . +No money , they say . +It 's all too much . +They had a home game the next day . + But he 's on to us , right ? +And I did so . + It 's not the way it was four or five years ago . + You say , What is it ? + Who could still be here ? +So it is today . + He said , You are good ; you should come to A . +We do nt want any of that . + That is nt play , he said . +It 's not like we are under her . +What 's he up to ? + So where are we now ? + Did you go there , too ? + I do nt even know what to think , he said . + That 's our game . +As in , What 's this ? +I think he did , too . + He had one . +But it might as well be . +And how good he has been for them . + We have to put an end to it . +It 's what I know how to do . +All we want to do is go home . + Do we have to put up with them ? +And we were there . +But what , they say , is in it for us ? +Now it was up to me to make a new life . +This is not a good time for him . +I work with them all the time . +They were a way of life . +There may still be some way to go . +He does nt get to play much . + No , it 's good . + We were not in the game . + I was with him all the time . +I want to go back there . +If you do nt do it , you do nt play . + This is a government of the people , by the people and for the people , he said . +KNOW WHAT YOU WANT . +Where does she come from ? +It can get to you . +They come into his office . +What are we to make of her ? +Come over they did . +It was my life . +And for the second one ? + We just want you to know that . +They said , Here . +That part of the war is over . +That was about a year ago . + It just was nt . + We show what we like and the way we like it . +I want my country to do well . +I do nt want him back . +But before that , you just do nt know . +Or will we do without it ? + I said to him one day . + For both , she said . + They could not have been . +I do nt think that 's good . + That 's all I could say . +One is the Federal Government . + That 's just the American way . + You have to know what you are going to get . + How could they know that ? + It was nt us , one of them says . +And so we have . + This is nt right , she says . +Those four found a way . +Is this the best our city can do ? + That 's what I have to do right now . +But that 's not what our business is made of . +But that is not the case any more . +What would it do with them ? + They said we were going home , he said . +It was just work . + That 's what they want to do while they are here . +But we would never do that . + But we do nt know where to put them . +And what was the other part of it ? +So both had to go . +The Police Department is . +But he said , That 's it . + I still have to get back there . +Is this the way to show it ? + No , no , said another . +Then I go home . +But yesterday he was nt there . + My family is here and I have a home , but that 's not what I want , she said . +But I do nt know if the Government will see it that way . +We do nt even know those people . + I do nt see how they are the same , he said . +Take this , it said . + And he said , You are right . +I think about him ; I think about me . + I have to think about it . + The way they are going ? +But how long can this last ? +I do nt think it was like that years ago . +I think this is the place . + It is the law . +He would not do so . + There 's more , he said . +But not that old . +Can they do that ? + You would never put them back , she said . +It is : What 's not ? +We did nt have that here . + That , I did not say . +But it 's not like that . +I come from the old school . +No , I do nt want to . +One week left after today . +I think if he could do it , he would . +Good for the company . +But not for more than five days . + I do nt know what it is with us . +I had it for three years . + No one 's called this week . + I was like : I know . +But that 's next year . +What good does that do you ? +We have to do what we have to do . +When he 's on , he 's very good . + I think that 's just me , he said . + They have no other way out . + It 's going to be like this for the next few years , I think , he said . +We had one back there . +I just like to come to work and play . +And so do they . +I just do nt know what come over him . + But not on the same team . +I had to work for it all . +The business of two people . +We can have it -- I do nt know if it 's there right now . +And who was that ? + I can go now , right ? + If it was nt for him , I could nt do this . +I had to end it . +You can see the house from here . +It 's just me , me , me . +It was her second play to go down in a week . +Now that 's more like it . + It is time to go . +So , how to get around ? +We go way back . +I think that we have a very good team . +We were just made for each other . +Because we get used to it ? +There 's not much we can do right now . + Then you go home . + It 's not much more than that now . +This is how it is . +I do nt know how many . +They should be here for us . + I did nt have time to do that this time . +So I did nt know about her much . + Think of us . + But there 's more to it than that . + This was not new money . +And if it was nt , that 's still the case . + You know what I say ? + We did nt have that in New York . +I just want to take it day by day . +For a while it was just government here . +She 's home now . +It was very good business . +I said , Who is this ? + If it was up to me , I would do it right now . + Can we have it ? +So it is here . +And there 's never just one . + Make it up , he said , and they did . +You do nt do right . + Do you know what day this is ? +You are all right out here . +I have to do what I do best . +Until then , I will do my best . + Come on over , she said . +It 's go , go , go . +That 's not me . +It does nt work out that way . +It was also good for American business . + You play well and you play . + It 's there , she said . +There 's , like , two or three people . +He had to have that . +He could have made more of this . +They have one , all right . +For many , it 's about time . + There 's so much money around , people do nt know what to do with it , he said . +It 's one game , but it 's not the season . + But if we have to , we will . + I like that , because you know what ? +No , not just money . +But did you know you could still do it today ? +And I think these people do it very , very well . +She did nt know my other work . + Right now it 's good . + You have your family there . +What 's it going to be like the first time I go down there ? + So what 's good for you ? + But it will get you where you want to go . +Not this game it was nt . + How do you know where you are going ? +They come to you . +I did nt know you could take a time out . +It was them against him . + What if it does nt work out ? +He has nt been in there . + So I know how it is . +I do nt think that 's right at all . + It was at night , he said . + They are used to it , he said . +She was very much a part of our family . +They were not the first to go . + Would you like me to get that for you ? +She was at the right place at the right time . +You do nt want any less . +All this will end one day . +Now we both work out of our home . + I know she 's right . +She did nt come back . +It 's good that I used to play every day . +But it 's not . +So they could see where he was . +I think he might have . + There 's just a time and a place . +They do nt want us there . +This did not work . +But that 's for another day . +It 's going to be new . + I could nt go . +Where I had been . +And that 's here because we are here . + I said : I can do that . +After all , that 's the way life should be . +They called it the people 's White House . +Some had been there before . +And it is time for them to go . + More than I should . +We know what they are going to do , they know what we are going to do . +When he does nt , he does nt play . +What does this say about our political life ? +Or still does nt . + I had nt been in the game . + So he would make them . + We all know who he is . + Is that it ? +It says here , the best . + But most do nt . +No one says so . +But this is what we have today . +It just did nt . + I was up for the game . + The more you know , the less you know , she says . + They think they own it . +It is what they do . +It 's like me , you see . +What do you do in a case like that ? +We want to have a good time with this . + Can I come over ? +I like the team . + What good are you ? + My children both are very little , he said . +And they have nt . +No , the man said . +But now they are back . +Like I do nt have one . +AND this is now . +He called my school . + This is only my second time here , but I like it , she said . +They know what we can do . +I just do nt know when . + I think that 's what people want to see . + The war is over , he said . + We know how good we can be . +But , then , he made it . +And most of them are . +That is what it is all about . + That left me , she said . +Take them to New York . +I did nt want to be one . +That 's just not the case . +We just want to get it right , and we are going to get it right . +I do have family of my own . +They said it two years before that . + Just so you know for next time , he said . + He 's my family . + It 's my work . +But she may be the last . + That 's when the big money is made . +Some like it very much . +I do nt want to go . +It 's been the same for both of us . + I do not know how many there were . +What would we say to each another ? + How can you do that ? +What 's in it for you ? + What does it take now ? + I do nt know how long . +They did , yesterday . + That 's what it 's like . +I do nt think it 's over . + Could it be . +Your time is over . + I said that because I would like to see it . +Did you work too much ? + They work for what they get . +All they want is me . + I do nt know what he 's going to do , he said . +He did nt , though . + I had to play my game and go for it . +How long can that last ? + He could nt say . + I like people , she said . +And the federal government will do its part . +And that 's what it 's all about now , is nt it ? +Is that how it will play out ? +It was who he was . +But that did not put her off . +But that could take years . +So what was it for ? + A million , she said . + Well , that 's what we are here for . + What do you say ? +Both are out for the season . + Do I go to work , do I go back to my old house ? +I think that 's the best school for you . +No good will come from that . + Who had nt ? +Well , this is nt about that . + It was nt that long ago , he said . + Not all the time , he said . +There is only now . +He put too much of his life into this place . + I do nt think I could be that way . +He has no time for it . + They know he 's out . +It 's all right with me . +So I made it . +It was so much . + They do nt come to us . +This was one of the few . + When are we all going ? +I do nt want to have just one good year . +It was nt the way you think it was . +Some days I think about it . +He 's going back , back . +I see you every day . +But there they are . + HOW DO YOU GET THERE FROM HERE ? +It 's not his . +New York can not . + It 's all I know , he said . +They are all like that . +He called back the next day . + It should not do this . + Which she then did . +She would never just play with them . + This could be the year . + Little said after the game . +And I will make the most of it . +We are going to take him out . + He would not say what that was . + There 's no place to put them . +We are going to do this time what you did nt do last time . +We had too much to do . +He has been there and did nt like it . +He says he will never go back home . +Even a little Federal money can go a long way . + It 's time . +How well does it work for them ? + This is still the best . + But this is not the time . + That 's never left me . +They both get there . + Who is the old one here ? + No , not at all , he says . +It 's not his show . +That was two years ago . +In the end , that 's all we have . +Well , that is what it was like . + What did you see ? +Not so the State Department . +What can I use for this ? + We have more work to do . + Four of them did nt show up the first day . +She is still one of the best . + It is all here . +How will they do it ? +I want to say that at the same time . +What was she to do ? +But only a little . +He has a good time . +They are for them and their people . + Where 's it going to be ? + It was a way to make money while going to school , she said . +It did nt do us any good . +I think about it all the time . + I did nt know when I was going to be back . + But it 's so much more . +He 's never been down . +If it 's not , then what have they been up to ? +No family could be . +I called him at home . +It can be of our time . + It is very good street , he said . +We are in a state of war . + I want to go back to school , she said . + What are we going to do for all these people ? +I think it 's the right time . +He did both , right up to the end . +We have to know more . +I do nt see them play . + I think he is . +It 's going to take time for him . + We are family now . +At home , I get to do what I want . + When was this made ? +Should you play like Him ? + But it 's also about being at the right place at the right time . + It was going to be the day . +This is not American . + Where he is , I do nt know . +And now he has the case . +Even then , he said , we have at most three of them a night . + They have to make this work . + And that 's just where it 's at . + We would still like it to work out . +Then get back to work . + Is that one there ? + We are just going day by day . +Is he or is nt he ? +It 's part of me now . + Will you take her back ? +It 's up to people if they want to get into it . + This is what you did back then . +Now , he has us . +She does nt like it . +And what did they want from me ? +That 's what we said . +But some do not . +But it 's good for him to go . +There 's no other high than that . + You can see it on the court . +Here we do nt even get to do that . +What could be more political ? +She is just like them . +It 's been there a long , long time . +I go every year . + He said , Then we are not going . +The show was over . + I just like them . + I would say it did , he said . + But not like it was then . + That could be me . +But this is what I do . +Just up , for now . +But where did they come from ? +You do not know who you are . + I was , I said . + But now , after going back to center , it 's where I want to be . +But then he did so . +Police were all around . + I know I still can play . + You are in a war . +It was a big family . + Some come here to make money , some to play . +He was here with me . + Which one are you ? + It 's how we play . +What is it about them ? +But what would it say ? + We were going to be family . + I do nt know , I say . + I did nt make us that way . +The last team at the end of the season . + We can do that with the program here . + And on and on . +But they say , So what ? +For me , too . +It just did nt work out for us . +I was never where I should be . +After that , it 's like any other game . + They all know how to get there . +My Life at The New York Times . + And he said he would have to take it home and think about it . + He could get four or five years , he said . + And there 's not much we can do about it . +Where are you going to show it ? + Well , what do you want ? + The public has the right to know . + And during the war ? + I will say no more about them . + I never get down . + It 's about people . + There 's no way around it . +Here , some are over in two . + I think them through . + I could not think , he said today . + No one can say . +I think you are going to go all the way . +And we will do so . +Then she had three children . + They are children . +What might he say to him ? +It 's just not the same . + This year , it 's , If , if , if . + You never know when it 's going to end . +And he 's American . +They know if I do this , I get what I want . + What about these ? +Where does one go from there ? +Then what are they ? +And that 's what we are going to do . + That would be about me , then . + My life is so good right now . +It would nt be what most of the people are about . +And they have a good time . +I used to think I was the only one . +They may have been right about her , she said . +Should I not use it ? +It 's the only way out . + Because it was nt . +This is not the place for government . + Most could not . +I think there are times with it . +I put music on . + It was nt like that before . + How is he today ? + The only one who can do it is me . +We are all members of each . +The team is all right . + That 's what it was all about . +That was a first , too . +I do nt think the officials like it . +Is there a way ? +Then there is the money . + No , not me . + It 's just part of who we are . + He 's going to be around a long time . + You will see me out more . + For us , it 's all about music . +You can play them all game long . +And that would be all right , she said . + I think not , he said . + But they do nt know . + I did nt want to , she said . +And so is she . +Now is one of the good times . +I think they were . + You just do what you can , she said . + That will take a little time . + Because I have to . +But I just do nt know much about it . + You have to be good . + Is this a women 's group ? +Then we get over it . + You know , we could do without it -- we did without it for years and years and years . +I now know he is good . + It 's all about the money , he said . +I want to be . +He was a director . +Some do , most do nt . + He said he 's been there a long time , and if he does nt do this , who will ? +They want to do it , too . +Do they like me ? + They do nt have to . + How do you get out there ? + We know how good she is . +It 's just a big show . +But is there more to it than that ? + We did that for you , but what did you do for us ? + If I had the money . + Now there is no time for any of that . +But that , he said , will take time . + There was very little money here . + No , I say . +We have come to the right place . +Not all of them , but many , too many . + There 's just no way . +To a city , a country ? + And one of them said : That 's right . +But he is good company . +I know that , he said . +It 's the same here . +And what 's what . +I say , What do you want to do that for ? + And you were ? +That 's what I did nt know then . + It 's there . +That is all I want to do . +Can you come down ? +Most are about the war . +But she could not . +But very few of us do . +But that 's a big only . +He will have company . +Much of our work is with government . +This year was to be the next . +I can go to another school . + There never was a case against me , he said . +No , said A . +He was also new that season . +We see that all the time . +I play when I want to play . +They are not like this . + This is the day . + We do nt know how she does it . + In those days , he said , you did that . +So how is it ? +For these , he should go to his own people , the people of the United States . +That 's just the game . + That 's where I was going . +Well , you are right . +But they are here . +Get out of here and get me some money , too . +And we are out . +Just be a part . +They do nt like us . + It 's the music , she said . +What part did she want to play ? + They come every day , every day , she said . +Today 's over with . + But this was all we had . +I think you are right . +Just do nt have them all at the same time . +But that 's then . + That would be me , I said . + In the game , I do nt know . +We all want to play against the best . +I think we can do that . +I think he 's right there . +He has been where they want to be . +People want to come to see him . + It was not my night . + But not any more . + Not with me , she said . +We had one out . + Old people do nt want it , he said . + We do not work . +To me , that 's what it 's all about . + He said , You are right , I do nt . +We have five years left . +I can come back . + How does this work ? + But they are out there . +We have a market . +He found out it was not . + I was right , he said . +The people have that right . + I think they used it very well . + He says : I want you to go up to his office . + I think they are good for business . +And what did the United States do ? +I could be on my way out of here . + That 's the way I was . +I want it to be used . + We did nt know how . + But I should nt say that . + How do I know it 's you ? +When do they do it ? +This was his second game back . +And that 's what you want . +Be so much more the man . +One year and he 's out . + I never said he was not . +This season is a good one . + This is my life here . +You get over here . + They do nt do that out here . +War will do that . + Never , not at all . +They did nt know where I was . +Not that well , but I could do that . +It 's not the case today . +I should nt have come . + He just could nt make it . +Many do nt come back . + You would have to think about it . +Many said they had nt , and did nt . + He would have been right there with us , she said . +This is my Man . +It does not , most of the time . +You just did it . +I do nt now . + That 's how he was here , and that 's how he was in New York , too . +I did what I could do . + It may , he said . + It did nt work at all then , she said . +But his old life is still with him . +Well , some people . + At first I did nt like it at all . +You do nt play for them . +One more day to go . + Who 's on First ? +It 's not what you want , though . +But that 's not the case , he said . + This is the way to do it . +Well , they do get each other . +Well it might be . + It 's here every day . + And it 's all day and all night . + They want to take their house with them . +That 's the best you can do . +I was here three years . +It 's good for them . + What is this place ? +Some I did nt . +Other than that , he 's never been out on the street more than four years at a time . +They are here among us . + Show me that money . + Home , she said . +I know I was nt , he said . +What should he do ? +It was just so . + But you know what ? + He said it 's part of the game . + Then they just go . + Where would I go here , and it 's all I have . + With me , this is where I want to be . + When will this be over ? +But they could do so now and they do not . + I said to him : You see that man ? + I could nt say that right now . +She did nt , so we did . + If I do nt like it . + Where would we put them ? +This is not the place to be right now . +If it 's here , so be it . + I have nt been there in four years . +Now it has been found . +It does nt have to be that way . + I did nt come out and say , You have to use it this way . + I do nt have to be here . +We said : No , no , no . +CAN they do it ? +Do they have a right to life ? + I may not get all I want . + What do I say when I go back there ? +I said I want to play more . +New York is New York . + I do nt know how many people work here . + For the most part . + This is nt going to do you any good . +He should not do this work . +But I could nt take it . +I do nt know what that was about . +Did I know this ? +And that 's what we did in my state . +It is the first such law in the state . +I can do that right now . + It does nt , he said . + All the city 's here . +It should be now . + I think that would work now . +On the west end of the market . +Right up to the end , it was war , then more war , then still more war . + Put the money on me . +But I want to be here for the good times . + How big was that ? + From that time , he said . +He has a program , too . +But the same could be said of the United States . +Now , so does New York . + Now we know . + We would make good business . + Our group is made up of women , she said . +How is this any of your business ? + But now I just want to go on as long as I can . + Now they all do . +But there 's so much more to it . + And this is a big market . +Most people do nt know that about him . + We have a good time , and we are like family here . +You want me to go home to my family . +We know where to go . +They know that 's me . +A : I did not do that . + Just think about the people you know . + Well , this should be like that . +What 's going on here ? +Most of them are in my family . + I did nt do it to make money , he says . +But not for him . +But how does he do it ? +We work with all these people . +I think of you both every day . +He does not have much time . + This is going to go on for a while , he said . +The program is the first in the country . + But that was nt me . +We had been down . +We are not going back to the old way . + People go about their business . +I want to come home from that . +Second man : Well , no . +Or not -- as the case may be . +But it 's not for women only . + If they do nt , we will , he said . +No children , though . +This is my first day back at work . + And the American people know it . + She said no . + I would nt want to be in his place . + But I do nt think it will go through . +Some people think it is . + I want to put on a good show , he said . +Business has been good , he said . +There was no market here . +I just did it for the first time . + We just do nt do it , he said . + Now I will see what he does . + You know , I been there . +That was not political . +But next year , what ? + It 's what we are all about . +This is where my family is . + You are going home . +You take what you can get . +It 's good , man . +It was never a home . +And some people do it on their own . +We do it every day . +That 's what I have to work on . +It is , she said , so much less than it should be . + You see where this is ? + I had no life , she said . + And it was nt his time to go . + It just was nt me . +Or right , right ? + I know it may not last . +What if -- I do nt know . +Here 's my take . +There was nt much of it . +That 's what it 's about : money . + In a case like this one , he said . +You are just too little for this world , are nt you ? + People will come up to me and say , So what do you do ? + This is what should be going on , he said . + I do nt know , you think he should ? + I could nt take any more than that . +I did and I made the most of it . + But you go up . + Little did I know . +And you said no each time ? + I do nt think I want to do that . + I do nt know how many years I have left . + There 's just too much going on . +You can not see me . + But that 's it . +I had my day . +But they are the same . + You do nt work here ? +All he would say was : Too much . + How much money do you make , ? +This is nt two years ago or five years ago . +Now there are two , she said . + But he made the most of what he had . +You can do that here . +One day I was there and the next day I was nt . + But we just do nt know . +And from the women , too . + I did nt want to take him out of there . + What are you going to do after the war ? +It may be all three . + Then he left . +What did she say ? +I did nt even know where that was . + Just some more time . +We do nt know how long we have to go on . +But I think it 's over with now . + What are you up to ? + What do I do all day ? +This is not my business . +And , now , so do I . +We can not have a war . +I do nt get to do that too much these days . +I just do them . + But he said it may be more than even that . + It 's my first time . + I do nt like that world very much , she said . +What good is his life ? + They do nt want him to go back . + That 's not what we are about . +And , in a way , it would not . +We have nt had to . +She had made it her own . +But you do not . +When was the last time a team did that ? +It is all about him , after all . +He did nt want him up there . +After that , it said , we would be on our own . +This was a big game . + How does he know ? + I was , like : All right . + That can take some time . +But you know what I say ? +No , it do nt . +He might say the same about his team . +No more than that . + We did it , he said . +Here people just do nt do that as much . + They want to just make the best out of you . + We know how to do that , too , he said . +It 's come a long way . +Should I be here ? + And how , she said . + Get me in there . + We take it all down . + Get as much as you can . +Some of that is for the good . + That 's one way . + What are they going to do when the get him ? +That was a few days ago . +I was the one . +In this business , they can . + Then we said : What is this ? + But you do nt have to . + No , I do nt see it , he said . + But when I do I want to work with you . + But more than that , I just do nt know . +And she said , I would like you to have this . +You do it little by little . + So what do you want me to do ? + She was nt the only one . + But it 's the second company . + But up until now we said no . +I see no end to this . + How could we not . + Just in time . + I do nt have any of that this time . +Some could say the same of the house . +But it did not take much . + Do we have them all ? +I know we have some work to do . +We do nt want them to think we can get them out of the country . + There 's no other way to think , he said . +Now , she said . + He never did . +You just take it a game at a time . + He 's what I like . +I do nt even know who they are . +People did nt know that . + It 's just that it is nt good . +Those who have made do with so little say they could do much more . +She did not know how old he was . +Then one on the left . +I think , How do they do that ? + I just used to think I was part of it . +It is my life . +Would nt we all . +Some people are just not going to work . +No one would like a war . +Did I come from you ? +And it is not new . +The home , the A . +He did not do so . + It 's what you do at the end . +Now he 's here . +He does nt even know who does it . + We should nt have had this war at all . +What do I want to do first ? +But who were they ? + He 's the only one that can see down there . + It may be too much , she said . + I just do nt like it . +Make it Center City . +Could New York be next ? +We are here for you . +For this could be it . +It 's too good . +No way , no way . +The first one was good . + She said , You know . +So how does he do that ? + It 's just not going to work . +And how did she play ? +It was and is . +I think : That 's it ? + I go to the music . +Not like that at all . + What are we going to do now ? +They come in all the time . +How do you like it now ? + How many do we have ? +Which state was the Show Me state ? +Well , it 's not going to be . + You just had to do it . +Because they have to , it 's there and they have to . + I did nt play yesterday at all , he said . +We do nt want their business . +You have to want to do it to do it well . +But she did that night , little by little . +That is not the way the government used to do it . +That would do it , all right . + That 's just the way it is with me , he said . +What I can do ? +They are all there in the show . +Today or when the year is over ? +That 's the good part about it . + But we know what we have to do . +So will it work ? +You know , I think so . + But it 's the best we can do . +So we have to get there . +We do it many times a day . +Just go and do it . +This is how I like to work . + They were going on and on . +They never found them . +I never had one . + We can show them that the government can work , he said . + We want all our children there . + We have it in us , Way said . +Without going through you first . +You want another one and another one . +They would be back too . +I can go to any city in the world . +He 's the best at what he does . +When I did it right . + What do we want out of it ? +But it will be good . +I may know what they are going to do , but I do nt know what they are going to do on that play . +We know it 's a business and when we are here it 's all business . +Right now I do nt know where we are going to go . +But it is nt as much as we would like . + As a public company , we will do the same . +But the three of us did . + They were no more than five . +And how would that be ? +These people just do nt have it . +We know so much . +I had to go back under the next day because it did not take . + There just was nt that much left for me after that , he said . + And what might they say about her ? +The people can never get their money back . + I do nt think he is his own man ; he is their man . + You have to go back this way . + I take that back . + And I know they do nt . +It is all about the children . +I think the time has come for us all to go . +That 's where the work was . +Where does he go ? +Yesterday they used it . + It 's going to be some time . + You do nt know he 's there . +So what 's his game ? +You know where he is . +I like it like that . + Or is she ? +They are going to do that . + Get them out by the end of the week . +There is no school . +Be more like that . + She was from New York . +What would you like to do with the house ? +We could see it . +We have to do both . +This is what New York is about . +I just did nt know that then . +He 's still not old . + We do nt think it 's in there , she says . + There is no government here . +He says , It 's just so that you get to know us . +The general public did not . +If that was going to be the case , there 's no way I would have been here . +She said how long . +How much could they want ? + The government , Mr. President , is your government , he said . + I have never said you can not . +THE war is on . +It was nt good for the business . + A show has a life of its own , he said . +In this business , it 's more or less what are you going to do for me next . +I have to get out of here . +That was another life . +But he 's used to it . +Or get some life . +And how did you take that ? + You do nt get that from many people in your life . +And they will be right . +Be a part of it . + What 's it going to take ? +You are on it . +It was too much for him . +But what about the first three years ? +If you do nt get it then , you are not going to get it . + I still will come to work five days a week , he said . +He did that last night . +What could be left ? + No , he did not . +But could any of them do it a second time ? +This is still not the case . +Where was he going to work ? +It has an end . + That 's not what we want to do . + What 's this place called ? +Two years ago , you left us . + Those were very good times . +We do play for New York . + We do nt want you to go . +First of all , it 's not my life . +It 's about life in general . +And you want to . +To them , they are home . + We were in war , he said . + What 's up with that ? +And very well off . +There is no way in any more . +In this country we do nt like that . +But how did it get there ? +I could not do both . +I did nt even know that 's who we play . +And the next game . + And when is that ? + You should nt do that . +He does nt know what to say . + I did nt see her there . + I have no business there . + It can be any of us . +It 's the best place in the world . + It 's been too much time . +They all had my back . +It 's a people game . + Now it 's all back . +They do nt get them all right . +She 's not like women were in my country . +It is what it is . +They are all back . +Is it going to work ? +The other is : You work here . +You can go into the city and come back here at night . + Is that what that is ? +If I did , I might as well not even go out there . + You can see how he is now . +High , is it ? +It was the first case in the state this year . +I just want to make it through the game . +I do nt know where they are right now . +He will work that . +If the place was like this , I would nt be here . + But there 's a long way to go . + We have nt been back , he said . +But then so do many of us in public life . +That is what they do . + I do nt know how many people can say that . +He was off that night . +They want the war to end . +So , what can we do about it ? +You have to show up . +I did nt want to see that . + I want to see more of the United States . +It was for me . + You see him there , he said . + I do nt know how to work it . + This is what people know , what people see . +More than you think . +We just like the work . + I was nt going to do that . + You are the best of the best , the general said . +Many of them are not good . +This was the case before the Court today . +But he was here last season . +But he was nt the only one . +If so , with what ? +And that could be for the good . +This year , there is a team in my life . +They are going to go up . + I like to go in . +To them it was just yesterday . +That may very well be . +How much does he have left ? +I do nt know what I will do now , he said . +And what do we know ? + It was there to be had , but we just did nt do it . + We do nt know who they are , she said . + What do you do ? +He can see it all now . +There 's too much to see . +They just do nt have it . + This is my time to be up , he said . +Of New City , New York . + I own my own house . +But the case was not over . + We have no one . +It was there , with her . +That 's not my game . + And some are not . +But they are very good , all the same . + I know it 's not now . +They had to do with government . +I did nt have it . +But there may be a way out of all this . + But there was no way we were going to get him . +Not that much could get in the way . +She has not been found . + I like that very much . +She did not like it . +It is still that way . +I want to get it right in the play , and I want to get it right in my life . + Come and see me ? +What could he say ? +For people in business ? + And that 's our game . +He has no money because he can not work . + I think it 's going to do well . +I was there on time . + I never want to get out of it . + They get in the way . + Did they think it was right ? +It 's over , she says . +They were all her life . + You would nt think so but they do . +You never know how it 's going to come out . +When it was good , it was very , very good . + If this is not going to work , it 's not going to work . + Where do they take it ? +It 's not the same , but then , what is ? + You are right , she said . + I just do nt know where that 's going to be . +Then you know what ? + That 's how we do it around here . + You can be . +Well , would nt you ? + Where did you get this ? +He said , I have a big family . + It is for me . +No , no , no , no , no . +Now he is president of the country . +It 's a good time to be in this business . + You do nt want them to . +And that 's very new . + I do nt know , she says . + This is what I do every day , he said . +I was there a year . +Today , not so . +What would you have said ? +We do nt know what to think . + What one they take , I do nt know . +Now could nt it ? + We are not like the Big Three . + Well , that was a big part of my life . + Like most of life . +They play with their children as well . +And he can play . +We are from The New York Times . + I was like , Get out of here . + And if they did ? +Two years since you left us . +I said : Him ? + So what is a company to do ? + I do nt know where I could go , he said . +He 's just the best . + You do nt like me . + But I did nt do this . +She 's like , Get in the house . +They do nt get the business . +Being good or less is not going to make it . +But it 's more than that . +And not only for women . +Today we could nt make that . +I just have to be me . +And one more after that . +I think people know that . +Most people , she said , did not have the money . +That 's what this show is about . + They know there 's no time . +I said , I think it 's a four . +I take it back . +To me , it was right on the money . + In the house , it would have been two , or three , or four . +All you have to do is show up to school . +I think people will come back . +My way did nt work . +As you want it to be . + We get used to it . + I can get no work . +You are not going . +You can get that at home . + Where or when does it end ? + It will go up and down and right now , we are down . +But they are going to have to . + He did not say what about . +They were too good . + It 's just one less day , he said . + Also , he is not his own man , he is their man . +We had one this year . + It was nt long ago , was it ? + I said , You know what we are about to do , do nt you ? + I said that I had . + What would they do to me ? +I think we are good . + She was just there . +We are not going there . +Make that only three years ago . +But she is not one of them . + You know it 's you . +But no one has . +He is not at home . +You are all in the house . + They should come with us . +They would come back . +You want out and they want you out . + It 's about him . + I did nt know if we could make it this year . + You have to make that time to do it . + And they did . +I just want to get it over with . +I do nt want to say it . + I think he 's a good man . + So , I do nt know what there is there . +There will be many like him . + They know this . + They do nt think that it will work . +But how will life be without him every day ? +I would nt say this is it . +I have nt been right since . + And now it is . +Time to get down to business . +And I know a good one when I see one . + Not very much , he said . +He 's not way up there . +My Years in the White House . +That 's our life . +But we are a good team , too . +New York did not . +That 's not what this is about . +What about one back in their home state ? + So that 's what I did . +IN the end , we did nt . +Which is to say no good at all . + I would be at work . + But it 's not good to think about it . +When was I going to do it ? +We are the law . +We know what they are going to say . +She would make him a man . +I know I can do it . +That 's just the way it is now . + But we are there . + We do nt make any money on them . +I can still play this game . +He has two children , not five . + You never say never , he said . + You never know , I may have to do it this year . +Just say to them : What do you think ? + Here it is , he said . + And I think we did that a few times . +But is this one of those times ? + And in The New York Times , A . +But you had to have both . +It had this and it was that . +There will be more of that this time around . +But would it do any good ? + We are not a court . +He has nt had much time . + He was out . + Good for them , you know ? +It made the case . + And most of the time he 's right . + We just do nt have it . +What 's left here ? +I could nt get going . + I want to do well . +She does the work . + No , he said , no . +And what does he go after ? + It just does nt work . +We are part of the family . +I think I can do this . +This is against the law . +That is what I used to think . + At that time , a few members left the group . +There is also the money . +I do nt know what people want me to say . + I might as well do that at home . + You did get one ? +Still , it did play a part . + And for companies , time is money . +As well he should be . +Less would have been more here . + But you know . + People say : What are you going to do ? +It is on it . +Do we want him to ? + They take it out on us . +Last year , he found her . +I want to see my family . + But he was right . + It 's just life , he said . +For such and such a company ? + I was there , they were nt . +But not of American music . + We want a season . + The season is not over . +Do they have a right to say that they did nt like it ? +You have it before you . +I could nt go . +Who 's the First to Go ? + I just know we did it . +What do you think I did ? +Children think all the time . +It 's about what he does . + It 's not that we do nt know how to do it . + I have to play my game . + You do nt know that . + This is what I have . + We do nt know what 's next , and there 's no going back . +How did they get where they are today ? +There 's been too much work . +He has never been back . + How did it end up ? + I do nt know if he 's going to play or not . + You have to do our time . +Does he want to be President ? +It 's about those people . +And this one may be as well . +She does not think about the man who did it . +But they can still play . +You just might get it . +We did a play . + That 's not all . +Is there any way we can do it ? +But we see it . +He 's our man . + I can go where I want . +But that does nt even work out on the street . + And what do you do ? + But I do nt own it . + They said , It 's our right . +They know about that . +What is this , then ? + Show me the money , he said . +He said , Come with me . +How do you get it under there ? + I do nt think this is the same John . + That 's not the way it was . + I just do nt know what to do . +More and more they are going to do it , and more and more they should do it . + That 's what 's going on right now . + We had a game to play . + It did nt go over , he said . +Right down the center . + He was the Government , she said . +That 's five more than last year . + But he could not do this . + People do nt see that . + And you did . +I only think for them . +Your own little company ? +I might as well make the best of it . + This has been my life . +But for New York ? +Could he be the one ? + How is it going ? +When did you get in ? + How will they know ? + That 's the business today . + That 's all I want out of life . + He should have been three down . +People come over to see it . + It has been a long time , he said . +I know I can play . + It 's time to play . + Now there are five . + Not much , said the man . + Is it old ? +This is the one I can get back up with . +Are you with me ? +Some people get in the way . +Now they want to do it all in two days . + We work for the same company . + One is that your best is your best . +There was nt time . + That 's over with . + Are you good with women ? +And it was - but not for long . +Now most have them . + They can see it . +And I will never do that . +They do not have that right . +His own family is big . + He had nt , because she did nt . +I did nt even have to go out of my way . + Where do you come from ? +You do nt have to come to the school . + But now we are here . +This is a good place to do that . +They want people to work . +He would just take over at the end . + I just called the President , he said . +It just was nt there . +One day he will not know her . + And where are these from ? +And when it did -- New world . + It 's come back to me . +What can they do about it ? +Here , it 's first and last . +Still , he would nt go back , he said . + I think it is the best in the world . +He did nt want to . +Do I think what now ? +I might have a long way to go . + She 's just such good company , he said . +You know , some of us never been in court . +But that was nt the time or place for it . +That is going to have to be called off . +Or for him even to get back to New York . +This is my high school . +That is his game . +I do nt own any . + Now you see what he 's made of . + I know it 's going to end , he said . + And what did he say ? +So it is nt just that . +He would nt say that . +I did nt know they made them . + And she said , I have one . + They want to put you where they want to put you . +He has made good time . +How could they know ? + It did nt come up , he said . +ME : And what have you come up with ? +They would get into it . + I want to be home with my family , he said . +Do nt we all ? +It is nt home . +Now he 's for it . +But I found a little of her in me . + So they could see . + That is the law , he said . +He said : I know you did it . +But they are not at the game . +But where was he ? +Now your right one . + We are not going to play that game for them , he said . +This is my New York . + He has been so used , she said . + It was long -- long , long , long , she says . +What is that world ? +You are still with me every day . +This is what war does to us . +I do nt think this is the best way . + So long as I get to play , he said . +He has a new will . + But do nt go out of your way . +It is not that , not that at all . + I will do all I can to work with the President . +Was nt it about him ? + We know what they are against , we know they do nt like the president . + The second one is his . +And : is there any way we can see it ? +That is what United did . + He did it for me . +It was two , not one . +Are you going to play ? + Who was he ? +And some of it was not . + What is this going to do for me ? +Back then , few people did . + I want in . + They said they would be back next week . +I think the world of both of them . + But this is just where I want to be . + I said I do nt think so . +She could nt get it . +We would all like to know . + We know too many , say the other two . + I will only say this , he said . + But we did nt do that . +We were with it for a long time . +It was his last game as president . +How could there not have been ? + He said , So did I . +But there was nt . +And I never did . + But they are too much work . +If I made it just right . + If women like you , that 's it . + They do nt get it , he said . + After all , we are two women , she says . + He is going to play one place or the other . +Well , that day has come . +This year , they do not . +Then there were more . + We did nt know much about him . + But the season 's not over for us . + We are here because of him . + What should I make of all this ? +Not in this life . +Now it 's me who has to want it . +He did all that he could do . + It 's her house , too . +I think he 's going to be all right . + I just have to play through it . + I do nt think it should take four or five years . +HE may be right . +I had never even been to New York . + It 's in the family . +You can have both . + How will it all end ? +That 's about all I can do . +In the end I have to come out . +And so that 's what he did . +The university does nt like this . +And we were like : This is it . +What is the best way ? +There was nt with this family . +What could West do ? + How many years have you been in ? + I should say we were , he said . +And it is their right . +Many of them were children , too . +More on this next week . + You may not like what you get . +See what it does . +But it 's the best they can do . + I made him go back . +I had no way out . + It 's only the first game , he said . +So what was it ? + We could nt do it without you . +I want to be a part of the team . +That could be a long way off . + We do nt know what 's in it . +How long would that take ? +This company here , they work for you . +They will take what they can get from it , though , they say . +And that 's what it 's all about . +I have to say no . +It 's all I want to do . + They do nt get the city . + But they have nt come through , have they ? + It 's time to end it . + What I said the other day is what it 's going to be . + Well , what did he say ? + We were nt as good as we should have been . +And what about all that money ? +And I want to see that . + I come here every day . + That 's the part I like . +And the American people have a right to it . +And here it is . +This was our life , and it was a good life . +Women -- United States . +The money is too good . +The man said no . +But how many will ? +The more I think of you the less I think of you . +We were a family . + She has been for most of my life . + I just like to play , she said . +But that was last season . +That 's where I have to be . + No , I would not , she said . +One , this is a big game . +That night should come this week . + I do nt see them . +He was not in it for the money . + Life is about what you do . +You have to make it . + See that , he said . + If they want to come here and be a part of this team , they will come here and they will be a part of this team . +It 's not good for us . + I have one night off a week . +Not that I have one . +I have a little more say . + They were nt here last year . +For her to go down like this . + You did nt take her home ? +Now it has two . +Do we know what we are about to get in its place ? + No , no , no , he said . + Do nt you think so ? +Not all the way up . +This is too much . + That was us today . +I did not go to school . + I would like to get back as much of my life as I can . +No , it does nt . + This is five years ago , what do you want me to do ? +But if he is going to use it , this is the year to do so . + It 's all on them . +We could have all three . +But , then what ? +It was the first day of the new school year . + I do nt know where this will take us , he said . + If that 's what it is , I like it . + One is , will they take us ? +It was never like this before . +Four of them are new . + You go as you go . + All over , the United States has good people . + That 's the way the game is . + The same , he said . +This is New York City , after all . +And you know what ? +Then it 's over . +She had three of them . + I just do nt want that . +I know him as a man . +I do nt think it 's right at all . +How do you do it ? +We should nt go against one of our own . +I think that 's the best I can say . +More than they want to . + It was only right . + No one 's been there , he says . +They would say no . +You have to get it right . +But not to the public . +That 's how I take it . +First university , then work . +You see it all the time . +I could play , so I did . + No way , she says . +So , who had the most to play for ? + There is only so much they can do . + It was right two years ago . +It just does nt . +Put an end to it . +How long can it last ? +It 's not going to take as long as people think . +And no one should . +It would nt have been the same team . +Over and over and over . +Never get out of the game . +We just put them in . + I do this because it 's family . +What do you think about them ? + What 's it called ? +We have each other . +But I found that 's not the case at all . +We just want to be . +I called and called and called , many times a day . + After a while , all that just does nt work . + He said : Can we do this ? + I just get it every now and then , he said . +It 's the law . + We just did nt get it . + That 's one way to put it , he said . +The New York Times ? +What does this do for me ? +I had to take off . +We are going to get there . + But to say it in public ? +And some do nt know where to go . +If it 's there , we do it . + And I did nt see it as a long play . +This is the second part . +Now you get it . + I think much too much is being made of this , he said . +That 's what a president does . +And last year 's ? +But family is family . +Or just come back . +He 's come a long a way . +Like I said before , it 's over . + Right now we do nt know just what we will do . +I just think it 's time to do that . +If I could take it back , I would . +You do nt put the law in there . + This could be my last year . +We want them with us for a long time . +And you are our family . +Were you a part of that ? +I make no money . + There 's no way they can get a million more people a year in here . + It 's like life . + The United States is my country now . +Show them the Money . +Now many say they do not know what to think . +Both are still used . + Who do I want to be ? + And three more like that . +But then it was nt . + There 's no up and down . + I know what is best for you . +It never has been with this team . + Just play his game . + There are good people there , he said . +The two have little to do with each other . +It was another home . +It 's like music . + It should be , he said . + I know , I said , but you are all right now . +That 's still not all . + Will you come with me ? +Do you know who that is ? +And there was me . +It was for him . + You can use it over and over . + What 's he going to say next year ? +And then it says , President of the United States . +It does nt say . +On each and every one of them . +That 's only New York . +When to use it ? + He called me today , she said . + I want to even it up . + You can see it ? +Yesterday I did nt think so . +It is , he said , not just where he 's from , but where he 's at . +They are in a world of their own . + You would , she said . +What do you have to do to get there ? +You want to play left ? + It did nt take him that long . +It can be big . +And that would nt do . +Well , who does nt , in this city , in this state ? +But today was nt a good day . +This is one he does nt like . +That war is over . +Are there many more to come ? + But it should never have come to that . +One way or the other , he will be there . +I did nt think I would be out on market for too long . +I do not know what he 's going to do in any way . +Do you know where he might be now ? +It 's a high . + Then they come back to you . +Does the music work for today ? + How do you know it was nt ? + What is there for us here ? + What I do is against the law , he said . + It 's good here , but you would nt like it . +They do nt like all these new people . + It was all right for a year . + Were nt you here ? + Now what are they going to do ? +I did nt know that at the time . +After all , she is one of us . +But there should be more of us . +New York is not going to do in our next one . +And now , so do I . +Last year , she said . +That 's what the city is about . +Today , he did . +But not show up at all ? +And I was nt . +But that 's New York for you . + There was never a man like him before . + We know the play . +Part of it 's political . +This time , People did it . +But they did not have to . + How could they be ? +If not now , when are you going to do it ? + I know I should have , she said . + If I play , I want to do good . +I did a good day 's work . +They want out , but they do nt want out . +I do nt want those days back . +I know the place . +People here want the world to know that . +It 's a war out there . +It 's about the same . + I see that day in and day out , he said . + What about old women ? +This did nt work out . + It 's never been the same since then . +He did not say where he would place the money . + This is not your country . +I had a good house . + They are all good people . + I do nt know him . + We do nt go home after work -- we go out . + It 's only May . +But I still have work I want to do . +So what about next year ? +Her life is her own , she says . + It 's also about life . +And it was nt just New York . + How do that ? + I do nt even want to think about it , he said . +And what about Street ? + You know it 's my life , she said . +What does it say about us ? +We are in The Times . + But it 's very . +I like the life . + I made him do what I did . +But that 's not who we are . +They want to get me out of here . + That 's what the law says . +Is there more to that ? + I would never say never , he said . + But they are nt . + Who 's going to come ? +He also never had children . + And I said : I do nt think so . +He was in there every week . +That 's how good he is . + Where was I while all this was going on ? +But that 's all that it was . +But it 's not right . +He said he would think about it . +But how about two ? +I could only take the little one . +One has been on it for five years . +About how much all right ? +It was like , my first week in high school . + The best is over . +How did this show come about ? + It was a long day . + We may not do what they want the way they want it , he said , but we do what they want . +I think about it every day . +As long as he could . +You do , too . + It 's not good for the team . + But I do nt think it was . + The next day , they were all business . +This is for her . + I did nt know about that , he said . +He does not like it . + Some do it well . +A : I think so . +And what was under that ? + Even when we were little , they were good to us . +I want to do it all . +They just like it . + To do it game in and game out , I do nt see it . +It was the money game that was in play . +That was the old days . + I said , I do nt think so . + They want to come here and use it as a second home , she said . +But it does nt work that way any more . +I think not , too . +Every day , I want to see more and more . + It 's going to get you out of your game . +But it 's been more than that . +That time it was very good . +He is all for that . + They were good people , he said . +How could he do this to me ? + We want them to go home . +How are you going to get the best out of your team ? +I do nt think it will be too much for him . +She may have to . +I want to see it . + It is nt for me . + And the White House is where he should be . + Night , day , he said . +She 's been there for us for four years . +This way , they get what they want when they want it . + I do nt know the company very well , she said . +But we had to . + Our money is here , she said . +And do it for New York . +So here he is . +There are nt many of them on the street . +About what I have to do . +They should come out . +What you did nt know about was the last two years . +It might be right . +You get out , though . +That , she said . + Most people do nt put them on , he said , and they never have . +Few people can do that . +It was one of those long , long days . +There 's not much to say . + We can , you know . +If that 's how they are going to do it , we are going to do it too . +What could I do but take it ? +So where is that here ? +And he 's -- what 's this ? + It 's not a war , he said . +He 's the only one out there . +She was the very best . + And that 's what we should do . +It might , he said , even last for two or three years . +He 's so good at it . +He may or may not be right . + And they left . +So that 's where I think it is . +Who is this new me ? +We did nt know about the war . +I want to make money . + I like women , he says . +There 's never a good time for that . +Who were those people ? +But he was not through . +And well they should . + That way , he says , what you see is what you get . +I think it has . +No , he 's not . +Life is nt like that . + It 's been like that all season , up and down . +This is New York , after all . + We are people . + But we are going to make it a home . +I just do nt know what to do . +Will they have it ? +To them , I was like a new world . +I do nt work that way . +It 's not just about more money . + That 's not the way I do it . + You come to be . + You are here because there was good in his life . +I did nt know I would be here . +They go out to work , and some of them even like it . +Our family of four . + One might even say there 's no business like it . +This year , he 's not . +Not for us ; no way . +You all do what you think . + But that did nt last long . +This is home to me . + We did not know what it was . +And then you all go in . +How long does it go on ? +No , there was not . +I will be the first to do that . +I do nt think it has to . + This is not for them . +But there , no . + It 's just another game . +Well , no -- . + We were not going to do that . + Well , they were right . + It is going to take a while . + Have you been to . +What children would go there ? + I was nt there , he said . + He should nt be out too long at all . + To me , it 's my life . +Can they take your home ? + If she does nt go , I do nt go , he said . +We want to be a part of it . + When I left , that was not the case . +But did he say it ? +Then it was all right . + That was my night . +You can go right in if you like . + It is the American way , he said . +And then there was Get a Life . + The children do nt want them , she said . + I said : No , I do nt want to . +I think this is where you want to be . + But that did nt last . + That could have been us down there . +Then , where to go ? +It 's not like the white people . +And there 's more to come . +Now , he has . +How did it get this way ? +But it has to be . +But they do not know where they will go . + No , she says . +Well , not me . +There is no other place they can go . +And then , this . +He did not back down on this play , or in the game . + If it would only work , it would be all right . +We did that last year . +It 's time for them to come home . +It could go on for days . +And there is nt . + I said : What for ? + I was nt there for them , he says . +BUT it 's not all good . + But it was my home . + I do nt think it will be the end of the world . + This is it , he said . + It 's being one . +What did it get me ? +At first I did nt get it . + But the people of this city do . + There 's no time , he said . +Is the show good ? +Is there still any up or down ? + Put them right under there . + She said : You do nt know what its like . +How long is she in there for ? +I want to be you . + I said , I work for the President . +President , that 's not the way to do it . +This was some man . + They know the game . +They did nt back down from us , and we did nt back down from them . +It 's going to take a little time . + I do nt know how he does it , he said . + You want to put him down for a while ? +He did not know what was going on . +But so be it . +Do I want that ? +You do it at home . +I think you were here first . + I did nt even want to be with her . + Do nt say any more . +Now people can do what they want , when they want it . +And what would we do then ? + I should not have said it , had no right to say it . +For many , it was not . +This is very high . +No , I did nt know them . +They are not political . + But we have a long way to go . +If he says so , I will . +Now you get down and get it . +Where were you all these years ? +This is the way it used to work . + He had a good game going until that . +I said , You know , I think we are being called . +That 's work , too . +And every year they did . + That 's the old way we used to do business . +The State of New York does not . + We have to work with both . +Not on this one . + Not me , I said . +I have a week off . + Is there going to be a war or is there not going to be a war ? +That 's the way New York was . + It used to be the music . + She was there . +Last night 's game is over . +It is good for them to do this . +But they may as well have . +There will be no war , no war , no war . + We want to know how did he get it . + But I still want to know where they are and who they are with all of the time . +We know how he is . + I did not like him . + It was just not for me . +That 's where it 's all going on . + It 's not all money . + Then what was ? + What are we going to do today ? +It 's just part of the game . +And we are not like that . +This was a good team for him to play against . +Here , you end up in another country . + It would be right there . +He did nt think much of her . +But there 's less this time . +And it was , he said . + But I had to and I did . + We have to show how good we are , he said . + Today , we were . + They were all down . +It 's the new me . + We had to go back and do that one over . +It 's just part of the business . +On the show , she is the show . + Not good , not at all . +We could use that . +But she did much more than that . +How can we go there ? + They said it had to be . +SOME time ago , A . + It 's good for me , too . +I had to go back . +People want to be here . +This will take time , a week or so . + It was make it or not . + He did nt make any money from this . + Business was good , and then business was nt so good , he said . +So they do it . + But there 's no place to go . +There was no yesterday . + But it 's not the case . +And then there was no way . +But at the end . +I do nt go to school . + Do less and do it well . +Is he still with us ? +We know all there is by now . +I want another one and another one . + We just have to get it going . + As much or more than last year . +I think he would be for me , too . + They make you work . +But many would not . +Then they were back . +If they do nt want to play , then get off my team . +Well , how about a war ? + And now it 's not . +And it is so . +But I like it here . + I do nt think he will . +We can go to another place . +Still I did not see him . +He was going to take as many people with him as he could . + I have nt , he said . + We work with both . +What to Do Next ? +I said , How long 's this been going on ? +But it was called in . + And did nt . + It 's New York City for me . +Now , we know that . + I know what that is . + I like the way they play . +What can I say ? + Were you in the war ? +But she 's made a life of her own . + We are in there , she said . +I like to make up her world . + How could I ? +We are used to this . +So just what is going on ? + This is a new way to do business . + It 's just him and people . +And , after all , she was . +You are among them . +Over four or five years , there have been several times ; more than two . +And it has come at the right time . +His family was not well off . +And I know more than I did before . +And there is a market for it . +He did it , though . +What could he have said ? +I just left it at that . +Now there are just two . + I said : Do nt go back out there . +I do nt have a show . + All you have to do is make one play . + Did it do any good ? +I still have work to do . + We know no one here , he said . + He is one of them . + These are our children , he said . + They will not go home because this is their home . +So what does she do ? + That 's the only one . + If they take it over , what are they going to do with it ? +It 's all a business . + It did nt , he said . +How do we make it up to him ? + Where were you then ? +So , go for it . +This should be more of the same . + I think you have it or you do nt . +And I get around on my own . +So how do you end it ? +You are just not . + It 's going to be , Get in there . +So how can I know what you see ? +Never did she think she would be among them . +I said , You know me . +They come from New York City . +There would be no market . +This was our house . + How did he get to my house ? +I know the man . +And they do nt know what you are here for . + But we are still not out of it . + But that 's the one we had . + We have too much in my house , she said . +But we know it 's still not over . +It is about him . +Still , for the first time in his life , he had money . +I do nt think about it . +I did nt know about that . + He is but one man . + I want another one , she said . +But only some of them are right . +What did he do for it ? +No White House , even . + But that 's the way the members want it . +Your life is your own . +They just did nt want to go . + What would you play ? +He would nt have said that a few days ago . +Or one of them . + He said : But this is my day . +We both want to do what 's best for the team . +It could be so much more . + But this is still a place of business . +After all , it 's not just about you . +That 's what the new show is . + And there was nt money for that . + And it 's about time . +Of the United States , that is . +Here we do nt have that . +Can we women have it all ? +And then , he was off . +It was nt so much me . +And that 's a big if . +That 's not my people . +They come from the same place . + There 's no other way around it . + I think that would take many , many years . +But that has not come . +That 's over the last year . + That 's my country , my city . + But many people do nt . +We can go home at night . +Women are like this . +And we do nt have people . + It 's a big year , I know that . +But the good times may not last . +He should see what 's going on these days . +Just how big is New York City ? + And it may not even last . +I said : I do nt want the money . +I do nt play around . +Today he was on . +It may never have to . + I like what I do . + I think he 's good . + I did nt think I was going to make it , she said . + They are my children , she said . +This game is nt new . + They know I come to play . +So do some women . + Two can play the same game . +They have nt used it much against us . + And he said , So what ? + You get that . +But I could not get him to come to me . + That will all come in time . + This is the A Team . +It was our team , we had to do this , we had to do that . +It is a very big part of my life . +That has to be the first to go . +And by the end of the day , he did . +So take it from there . +I do nt want to be left out . + But they were nt . + It 's not New York . +Just like old times . +I said I would do that . +I did nt do that well . +We made it up . +So we left there , out on our own . + But how long is that going to last ? +What would be in it ? + And the game was nt over . + And I said , You are going to be there . +There should be police up there all the time . +Now I play three or four times a week . + This is it for me , he said . +Did she not want children , and a house of her own ? + I just could nt do it well . + And what does one see ? +That was not so yesterday . +I do nt know how long that will last . + It is still there . + We just go through it . +What is there to do ? + We did nt see much of him , she said . +It was from home . +Now , it 's back . + We could never do that now . + But we are here . + You know , he said . +It was never there . + Our company president and his family . + The first one in , last one out . +He did not say what that might be . +You are so right . +I was not there . +They are there for a while . + For that , what does he get ? +Still , I do it . +I said , I think so . +All you want to know is what they will do , and not do ; what they will say , and not say . + This is where I can do the most good . + It 's a down , down time , he said . +What you want to know ? + Still , he has a long way to go . + And so it was . + That does nt make it right , she said . +They said it today . +Can you get so and so ? + And this is not what it is going to be . + And what 's next ? +I want to show people around here what I can do . +He 's been there for five years . +She is on her own . + I do nt have much . +They are her children . +Now they have to go back to high school . + He did nt have it in him . + I said , We did nt do it ; they did it . +It was one I could not go into . +Then we can go from there . +They just did nt come through yesterday . +I like that very much . + I did nt see people going to school , she said . + I like people , he says . +Is that good for the city ? +What 's the best way to go ? + They never said this before , he said . +Now this , he said . +The city has another , if only for one game . +People think that way ? + It 's not if I can still do it . + You never know what they are going to do . +It 's still there , though . +It 's been -- what year is this ? +I was out every day . + Today you are a man . + The years go by and here we are now . + They did nt see him , he said . +But she could use more . + That just would nt do . +I just like being out in it . +Now , that 's over . +I like what I get , though . +This is the way to do it . +What are they for ? +He will be the first to go . +When will we get there ? + They still want to see us , he said . +Did I say big ? +People like it here . +So did the team . +That 's what they are . + And people were going : No way . +But there is more to come . +That was from the women . +What are you going to do with all the money ? +That was their right . + Right now , that 's off , he said . +I may not have even found all of it . +There 's a life in between . +What made this one right ? +Or so one would think . +It may be political and never be right . +But what do you do if there is not any ? + This was not the case . +She does nt show . +But not only with that . + They can , you know . +What do you know about the company ? +He made a two . + My family is not set with money . +There will be no other end of the world . + They put in their own time and money . +There are several of those . + The political season will come in its own time . + He said , You did nt have any family money ; you did it on your own . + Do you like them ? + I will never go back , never . + I did nt know what I did nt know . + I have to make that play , he said . +That 's what I would do . + It 's one or the other . +Then , they take them home . +You go where the money is . +He said : That will work . + But this is a new season . +This is the team we have to play with . +Who would nt be for that ? + I do it in a day , she said . +I see it in my children . + This is another one . +You have to do what you can . +If so , when and where ? + Just what I said . +There are so many more of my people out there than there are of his people . + Then they do it . +You can make of that what you will . +They do not like it . + No , they all said . +I would never come here . +Get out of my way , John . +Well , I would nt be the first . + I do nt know about that , she said . +But it was all right with me . + Part time , we do nt know . +That 's the way I go about it . + What do I want to do in it ? + Today is over , she said . + I do nt want any women to play it . +It 's never going to be the same here . +Is nt that a city ? +I know they know me . + It 's good to see you . + This is all that 's left of us . +I have been to this play before , though . + And I said , How did you know ? +Most of them were women . +That too did nt work . +Today it was on the house . +I still think we can do it . +That was all they had to say about it . +Their time will come . + But , well , what was I going to do ? + We are not going out any more , she said . +And he is not the only one . +Here are just a few of them . + But that was in the old days . +To be or not to be ? +I think you can make it . +No , I did nt say that . +There 's a way to do it . +This year I do nt want money . +I do nt think he 's that good . + A YEAR WITH CHILDREN . +I do nt know where to go back to . +Day , he said . +It 's not the people . +We do nt want to go . + How could you say no to that ? +He has never been to school . + That I did it ? +I said I will take it . + One right after the other . +And there are many more of us where I come from . +Some may have been political . + Then it was , like , What 's next ? +Now , he says , it 's time to be one . +And so it 's out there to take . +Still good after many years . +That may take a while . + They are just into it more . +Well , I want you to do it , he said . +He has been there , too . + Our children , he called his children . +Some come here one or two times . + Where Are We Going to Go ? +What is it here ? +She did it for him . +What 's out there ? +I can not play good every day . + It was nt what we were about . +Which may be just as well . +I had to be there . +The police had to be called , she said . +But that 's only part of it . + Will I go back ? +That , he said , had not been the case for a long time . + It 's not much like home . + Today that 's not the case . + My business is my life , he said . + Would you like some ? +From your Family Law Center family . +I just make the best of it . + We like that , she said . +She 's just on her own . + We all know this . +What you know , you know . + Get a life , they say to one another . +People , people , people . +They know I work here , that 's about it . + Just one , he said . +So play he did . +This is not all . + I do nt like it very much . +But what could he do ? +And so it has been . + It 's just one game and the next one is at home . + That 's all we can go by . +He had three other children with three other women . +Well , do nt we all from time to time . + This is my house , he said . +I do nt go for it . + This is just a new way . + Where 's My Money ? +He did not like it . +I never did before . +And she is going to get it right . +We want to play like that all the time . +They last three days . +I want to go to court . +Some of them will not . +First one way , then the other . + Me : What ? +We should think big and see where we are in a year . +Did she like it ? +I was her first American . +Then I had a family -- two children . + It was a very good show , he said . + I would nt even say we had more will than them . +How does this work ? +And most are in New York City . +Now it 's just a game . +Up here , it 's five days a week . +You have to be on time . +This is a new year . + He does it all . + But people who know me say , There 's so much of you in it . +And how will you get there ? +Some people are never going to go through that . + Or Do you want me to go with ? +And in a way she has nt . + They do nt like what we do . +I know what a good team they are . +And we are not going back . +We were there a year after you . + I just come to play , he said . +Here 's what they had to say . +It may never be . +And much of the time I do . + For me , it 's the people -- that we have these people in place . + So he was . +And that 's what he was today . +Because I know how good we are . + It will have to be very long . + Now can we be about our business ? +Here he does not . +How could it be here ? + I never said no to her . +And that 's what the company is about . +But that could take a while . +And I did nt have that . + I still do nt know if I was . + It was never about the money , he said . +He just did nt get it up high . + I said , What ? + But you just have to get on with it . +I do nt think that we would put it that way , John . + So , there you go . + How can we get in on it ? + Now they do nt . + I think there 's no place for it . +Because for me it is nt . +Just go out and do it . + I will not be a part of that game . + He never said that to me . + For what , she did nt say . +It was nt like that for me . +And that 's what the show is about . + If people want , they can take them home with them , he said . +The women were , too . + That 's what that was about . + See , just like me . + That did nt work out . +But it 's his life . + What do you think of our state ? +It has been for some years now . +It 's how you come through them . + We are in the country . +Never , never know . +He 's the one that made me do it . +Even that did not work . +We know where to go and what to do . +NO MAN OF HER OWN . + The only place I can go is up . +It just is nt there for long . +I want him to say , I will do it . +So there 's only so much you can do . + It 's her and him . +This is their home . + I did nt know what that was . + It just does nt do it for me . + It was just the same . +He did not like the music . +She did nt see me at all . +Now it 's over ? + I should nt have to do that , he said . + What was he like ? +They are not there . +I was there , I know what was going on . + But we do have so much more to do , he said . +What 's up next for you ? +We want more women . +They did nt want to go there . +A : We do nt know that . + This was the year . +Their two children left for the United States . + I just think it was my time . +But I do nt like it . +What do they know about us ? +Our house was white . + This is not me , he said . +He does it because you have to , he says . +How will it all end ? + I called home the first day she was nt here . +One game does nt make a season . + Not with this show , but the one after that . +There is no home . +I do not know . +All up and down . +They do not have to . +One would like to know . +They do nt know where he is , he says . +That 's just the way I go about it . + That 's right , they say . +So now it 's set . + He would say right ? +We do nt play . + But it is not . + People know too much . + She would have been in the game . + There 's no other way . + How long did it take for you to get over it ? + It is the way people think today . + But we did nt have one . +White 's New York City . +I do nt want to go back . + I did nt know about them , but I should have . + See that over there ? + They might have to see some of us in two years . +There will be no best man . +How is it made ? + I was like , what ? +Yesterday , he said he had found such a case . +Do I have to say ? + It 's a good school , he said . +But what should the city government do about it ? +Even if he did nt want to , he had to do it . +How old is it ? +How much can we take ? +This year , they have . +It was the first game of our second season . +I did it the same way every time . +But she does nt , she says . + And we want her to do that , too , he said . +This is nt us . +He did nt want me around , and I did nt want to be around . + I go , What ? + It 's not a way that I think , she said . +And so the world did nt come to an end . +He 's not much into music . +As it should be . +There 's no way to get out . +But , in the end , they did . +How Much Is Too Much ? + I want to say I did . +He was all business . +THAT could be us . +Life in the United States just was nt like here , he said last year . +That is what we see . + It 's like , Where are they now ? +We are New York City people . + Do nt think it 's them . +They do more of both . +And we did that last night . +But what would you do ? +It could be the world . + When people see what we can do , then they will come back . +There would not be time . + In my life ? +But we just did it . + All I did was play my best people , he said . + It is not . +It 's just one way . +Not in our house . +How do they get it ? +But they do have each other . +I know it 's there . +She just did nt know when . +It would be to me . +That 's what her game is like right now . +And it 's going to be me . +They know what they should do . +Only that was not the end of it . +They can do what they want . + Do you think they can get any more people in here ? +And we did nt . +And I could go on and on . + It was my first day . + He said , You want it ? +That 's what we do it for . + They have to think it through . +They are like children . +I do nt think it does . +A : I did do that . + They have nt said much about what they want this group to do . +He said it left on time . + It 's just part of the work we do . +He never says no . +I know how to do it . +Or is it not me ? +Last week , there were only two left . + There are nt too many of us left . +I own it now . +But they do nt want to know more . + And I think it 's with children . +I like what he does . + On the same day . +Now we are here . + What did she do about it ? + What do you do ? +We want them all to come out . + He just does nt say that much . + And now I never will . + Not against the people . +I have come here many times in the last two years . +They did nt get him . + It 's the family . +I do nt think it should but it has . +There should be more like him . + You think I want to do this ? +It was five years , not two . + She said , You think so ? +And I said , No , I do nt know that . + It 's the same with this . + It never was . +This is a long , long season and we just have to go back to work . +She did nt want to come home . +When do they get their day ? +It is all too much . + We just do nt know what 's out there . + No , you did nt , she says . + And he did not . + And show it . +It has been like that all over . + I have to do what I have to do just to make this team . + To them it 's a business . +I do nt think I want to do another one . +I want no part of it . +Now You See Them . + I did nt have one . +Where has it been ? +Who are we as a people ? +How did this money get here ? +Well , we do nt . +But I think in this case , it can go . + That was so . + How could I not ? +How do they get them back ? +Now as long as you put up with that that 's what you are going to get . + Not one of them did . +What do I like ? +I said : Take it off . +That was the only way we could do it . +We can , too . +You and I know , right ? + It was nt there . + You did nt do it . +But it was never much of a life . +She was nt , What you see is what you get . +The President did just that . +Night and day , he was in their company . +A : No , I did nt . + A few here and there . + He has to work at it . +And she said , What are you going to do about it ? + But there 's still a long way to go . +So what would it be about ? + We have to get him out of the country . + We are here just for three days . +And it is that way today . +That 's what we have to do now . +And , as they say , time can be money . + What do those people do ? + I called up the police , she said . + There were so many of them . + It 's a play I could have made . +But that 's not what we are going for . +How would you get your money back ? +He does not own a house . +I did nt know that was part of him . +Is it all going to work out ? + They want to be like us . + Music is my life , he said . + I know all about it . + I could do it , but not like when I was all right , he said . +But you can do that out here . +It 's a long year . +A : I can . +President any more . +But they are like children . +And some that they do . +And that was I . +We are not this , and we are not that . +They are after me . +So , now what ? + I did nt want to go . +But until then , we have to work with him . + It could also be a long time . + We do nt have many of these . + See you in two years . +All I want is to go home . + They were nt there . +We do not want them here . +They are for old people . +Now -- play it , while there is time . + When did you think of that ? +He still had work to do . + I know what people say , he said . +Come as you are . +Has been for about a year . +If you did nt have to do it , you would nt do it ? + I do nt know what . + I do nt think it did , he said . + It could end next season , he says . + I just want to do the best that I can , any way I can , this season . +The President did nt end it last night . + I do nt . +Do we want it ? +On that last one , I said , This could be the one . + It 's been good . + And he said , Well , we are from New York . +You are so good . +She could do it . +It 's also the best way to see which you like the best . +We will not back off . +I just play my game . +Of being like him . + What would he say if he could ? +It was a good play on his part . +That 's what women want , he said . + After that , he said , I was on my own . +When it 's time for a big play , they can come to me . + You make the best out of it . +It 's going to be that way today . +How do we work with it ? + And that 's what we are going to do . + How is it ? + That 's what they get here . +It 's going to have to work . +I did nt go over to the university much . + I said it before last night 's game . +Do people know you are here ? + How much work it was , he said . +I want him to know that . + And not that long a time . +It 's going to be more than just this season . +I like him very much . + New York is the world 's second home , he said . +How can people not see what 's there ? + We like to say never , he said . +But life is life . +He 's been there two or three times . + This was more like it . +A year without you . + There 's big money to be made there , she said . +If he does , it might be a day or so . +We still have work to do . +What is it , then ? +But it did nt work . + Last week was last week . +He just can do it all . +Would you work with him ? +Now , he does nt . + Just in time for school . +So we are out . + You know what I say to that ? +They and we know who they are . +It was on the market for just a week . +His show will go on . + But they want to come see me . +No , I never would . +It 's a long day . +We are just going to have us . +It could be a very long time . + Did nt you want him ? + They should nt be made , he said . +You know what this does ? + They do it in business all the time . +How long are we going to do that ? +She is now in law school . + We can do it now . + It 's like , that 's what it is . +Good show , Mr. President . +And if not them , who ? + He 's such a big man . +I was with my children . +Today may be the day . +I never left the team . +It did nt work out at all . + That was only the first time . + How much was it and where did it go ? + But that 's just me . + Who 's going to get this money back to me ? +And that 's only part of the show . + How do you know all this ? +What more do they want from us ? + What will it do for us ? +While I have him here , do we want to take any more from him ? +What is best for me ? + You should nt be out here this way . + We do nt see much of each other , she said . +Well , I could nt do much about it . + I do nt , she said . + People are just being who they are . + We said , How can we do right by him ? +You were the best . + But then people say , What now ? + Where Will We Be ? + You never know in show business what 's going to go on . + The way you just did ? +Little more was said . + I was with him , right ? +We only have each other . +We just did nt play a very good game . + You think you can do it ? + This is only one of them . +But I do nt think so . +Who , in that case , would be best off ? + It 's this is what I think , what do you think ? +It was just too much for it . +It 's what I want to do when I get out . +Now , there 's more work to do . + I go out of my way just for this . +They did nt think they could do that . +I have nt had the time to think about it . + Some people just do nt think . + Just do your best . +Who they have come for . + I know , I know , but . +She was how people should be . +How come you are not up here with us ? + I did not know that until now . + Where they are now , I do nt know , he said . + It 's their money . +If he does nt know them , who does ? +This team did nt . +Those days are long over . +But he could do little with what he had . + Many times , she said . +House , he said . + I said , You may do that . +People all around the world know it . +But it is a little out of the way . +You have to know your market . +No , that 's not right . +But the people did nt . + I just want to get out of this place . +But we know what we can do when we play well . + If it is nt , you do nt have to say . + I did nt see him until the last second . +What might be next ? +You have to know that before you play . +But they are not the same . +No one would be against it . +One year ago you left us . +But I could see that he was the same way . +Now we do nt know , we just think . + We all know what this is about , he said . +Where are the women ? +It did not have to be . +All they had to say was no , but they did not because I do nt think they could . +Do they come to you ? +I do nt know that it was . + For the most part , then , you are on your own . +Now , I do that all the time . + What will the court do next ? + I do nt have to do that here . +Take my own children . + They just do nt get it . +There is little time . + But he is nt . +We do nt know which . + What state do you think it 's in ? + The other was How do we take them off ? +That 's your world . +I do nt know what I would do . + I may be next , he said . +We are one family . +He did nt make many . +But there 's a way to get around this one . +I can take that . +And this was just the first day . +I go through it every year . +They did nt have the people . +Just make the best of what you have . + I get my life back . + I like when they say that . +There is more to see . + And so few people know about it . +Should we take the children from them ? +For me , it was nt . +But if you do , you have to go for it . + It was a new time after the war , he said . +Will it be that way this year ? + Any time is the right time . +As well they should . +But he said , These are my people . +Many , not one or two or three . +As it was , he might have . + I know what I want to do . +As a team , we all do . +But the time had come for the show to go . + You all right back there ? + I do nt think that it 's the case this time . +They called me up in the office because I left one at home . +A : It is for us . +We are not there . +He was used to A 's . +I see this as President . + There is no no . +He was going to take it with him . +It 's not that long . + Well , I did nt , and she should nt have used it . +But you say , I want a house . + No , not this week , he said . +It 's good to just play . +But I never do . +There are nt too many of those . +It should nt , though . +And one could go on . +Do you think you could have found out about it ? +But I have children . +Are you going on it ? +Well , what does it say ? +In a way , it does . +She called the work Life ? +They did not have much . +Now , it 's our place . +In the second , three up , three down . + It 's just like the city , she said . + No , it did nt , he said . + I had to think . +Well , most do . +Where do we come from ? + It 's good for us and good for them . +And she said , Who was that ? +That 's what will come this year . +But this is New York , he said . + It is never a good time , he said . +What did you do for the year after that ? +No , that does nt make it right . +If so , she 's going to make it now . + Who 's that ? + I do want to be on my own . + He said : I do nt think so . +That 's how I work my way through it . + I do nt know who is going to do this here . +I just want him to play his game . +Now we have to do good . + What does he say ? + You have to be over there . +He had made it at home the night before . +It was a big play for us . +But what if it 's only a little more ? + They are good people . + And when did he last play ? +And he does nt even have children . +But there 's time for all that . +He said , that 's my way . + Out with it , she said . +And that 's what I like about this one . +Only a few did . +It can not go on like this . +Other people have that . + We could see it . + This is what it has come to . + Where Has He Been ? + I do nt like to go with all that , he said . +We are for the people . +He has been around . + The market is not too big . +How do you police them all ? + Who are all these people ? + I have the money , he says . +It is about our children . +This is the second time . +I just said , I do nt know . + Some of it could but not most of it . + They said they would get back to me and never did , he said . + I think I can do it , he said . + But not me . +So where are we now ? +There is nt much from in between . + How could he do this ? +Who do you you think you are ? + They are the same women . +And so are they . +Today he said that it might be two years . + It 's time to make money . +If they do nt ? +Women may well be put off by it . +But that 's the way they are going . +They are one and the same . +But the program did not work . + For me , just get a first down , first down , he said . +I do nt know what to say about it . + And that 's the way it 's going to be . + This year we do nt see as many of them . + I want them . + He says , There 's only two of us , so only one can go at a time . +A man for the times . + Where 's the war ? + This is the old game . +Right now , they are not . +So is he any good at the game ? +It was just part of the game . + We are one of them . +We come in and do what we have to do . +So it has to go down . + It 's where the money is , he said . +But only that way . +What is it going to be like for him without that ? + He said , That was yesterday . + There is no way in the world he did what they say he did . +For the most part , they have . + Both work in New York . + It 's not going to take just two or three years . +I do nt know what it 's going to be like . +You know it one day , but you might not know it the next . +Was he still in there ? +So did his second . + But it 's only been a week . + I did what I could . +It 's next year . +But many are not . +But I think that 's any place you go . + That 's just one night . + There are not many of them left in the world . + What do you say to him ? +Only if you want more of the same . +How did he do ? + It is a very big part of our business . + The school is down to business . + They are very good people . +But there will be one . +But it 's not good for the game . +But they do nt want to . +What 's in and what 's out ? +Do I want him back ? + I think they do nt want us there . +More than I get in The New York Times . + They are who they are . + But I do nt think I should have . + And I was , like , I do nt think so . +They all can play . +At the end of the year . + Where do you go next ? +Three times that night . +Four times a year ? +Some come for a day or two , some for a week . + We have nt made them up . + You do nt have to do that . +It 's just that it did nt work out today . + No , it is my home . + We are going to have a good time . + They are out , too . +We said , If you do nt want to come , that 's all right . + Just not every night . +That 's what I called for . + We just were nt there . + We are still one game out of first place . +The president said no . +He has nt said no . +There is good that has come from this . + But now the people want much more , he said . +But first they have to get here . + There are nt that many left . +Now is the time for the country to be united . + It may well be down to now or never . +And the only one is nt what it used to be . +This season there are two . + We had our best team . +So he 's all over the place . + It can be , he said . +How can we not show it ? +That 's all this was . + We want to be here . + We are in the same business . +And I do nt think we were . + What life is there for our people after office ? +I have that there , not here . +We do nt have to think about it . + We said , All the time . +It was about life . + I do nt know if family members could do this . +She will not say . +No more of that . +That 's the way I think it should be . +This might be one of them . +If I have them , I will use them . +Now Get Back to Work . + And I was nt . + This is going to take some time . +All of the time in New York , you see people you should know . +When is good for you ? + It just would nt be the same . + If we do nt , we do nt . +It just might take a while . +After that , we know how to play . + I was like , What up ? +They do nt go out as they used to . +But you just go out there and you do it . + But that 's what our business is about . + I do nt know how it will end . + That one up on the left , I think . +They have to know . +There is no place . +That 's all I can come up with . +We are more used to it . +That 's good business . + I say no . +And then there was no place to go . +He is too much to the right . +The game was over by then . + There were so few , she said . + They did nt show it today . + No man would see them that way , they said . + They are our home . + I said : No , no , no . + You know , we like each other . +Come or do nt come . +I did nt know them . +They work for the public . +They were out there all night . +Should States Do More ? + Very good , she says . +In his own way . + They do nt know how to do it right . +Who are you now ? +And we all should . +It was all for show . +This is all there is between me and the next life . +I do nt know if it 's there . +That was all she was going to say . + They said : What ? + We both like to work and like what we do . +If I want to do it , I can do it . + And the more you are around him , the more you like him . + You first , I said . +I know what he 's been through . +I just do nt want to get used to it . + It 's the same way this time . + But she said no . +Some have been through this over and over . +And what was said ? + No , this is it for me now , he says . +Then I take it home and play with it some more . +Life was never this good in New York . +If you can get him , get him . +I say to you . +It would nt work here . +And it is good . +No way , she said . + I just show what I see . +It 's much more than that . + It 's a big business . + Then we will go back to work . + It will be all right , she said . +In my case , it did nt . +But it could never be like this one . +No , I did nt have . +If he does nt want it , he does nt want it . +It 's all here , he said . +And that is not going to get them in . +And it does nt take long . + That was our second home . + I said : Well , you know me . +Some do , some do nt . +The day was good . +But how do you make big money ? +I want three or four of them . +They are as good . +I did nt see it before . + I was set for life , he said . + He was , too . +I do nt have to do that now . + We have too many people out of work as it is . + He was as good as people get . +And there is still more . + They are the same . + He 's had some good years , but I think this is his best year . +They still have their house . + He was nt around much , he said . + They are , they are . +Where was he going ? +It 's their show . +But I was nt . +He did it well . +It 's a part of life , and life has to go on . + I do nt have that this time . +We still have time . + He 's very good . +He was not the last to do so . + But this is about the best you can do . +What is the use ? +These days , you never know . +But we have nt called each other . +This is my country . +He had a very long way to go . + But we get around it . +We might as well get used to each other . + Where would you go if you had the time ? + I know what he 's going through . + People can work one or two days from home . + I know now I have . + No , I did nt get it . +If you say it , you think about it , and if you think about it , you do it . + I do not know what that is , he said . +He just had it all . + So I said , You have the part . +Here , it is the other way around . +They made only four . +We are going to have war . + They are a good team at home . +That 's in the United States . + So I play this game , he said . +That 's what I like about him . +They have to take it . +Today was a big day . +And she was going . + We just did nt know when . +There were so many of them . + I just do nt know what it is . + There are nt many of me around . +It 's not like it used to be . +Do nt say that around me . +Should that be one or two ? + And now they are not there . +He 's going to do it . +It was the city 's . + This is not war . +They just have to say they are . + Is it all right with the people ? +That 's a big market . +And for how big a game ? + We want you to take it down . + And he said : Long ? + They are just not out there for the public . +People are going to work . +I would nt want to . + There is no war , he said . + I play more now , he said . +This way , I can work on it and do it the way I want to do it . + Where were you going ? +But people want more . +There are children here . +The little people , that is . + But that 's not the way it was . + Here 's how he did it . +How do you not do it ? + There is not going to be a place in the world where it 's going to be the same as it used to be . +This is the first . + But what that says is that people come first . + Last year and yesterday . +Would that there were . +It 's a place you want to show up . + This is our life , he said . +And that 's what it was . + But this one was nt . +That is more or less what she did . +But by how much ? +Some will not be . + And they are still here . + Do you want to go with them ? + So , from now on you , you are the man ? + Both of us can take it , he said . +But it 's going to work . + See you next time . +We will make this work . + I do nt see it , he said . +What did he do for you ? +And it 's still here . + In a way , he 's right . +It 's also money , money , money . +Can you get more New York than that ? + Those were more for the team . + I do nt know much about that , he said . +A : I still do nt know . +They are like my own , my family . +He said it would not work . +How do they work ? + We have a way to go , he said . + How do you know ? +It was like I was . +And I did it all for you . +And some said they did not know what to do . + On to a big one ? +By some other people . +I think I have said that . +It 's not the last game of the season . + I think there is more to come . +He said , Are you from here ? +And what does she want ? +We will be up . +Where will he take them ? +I still like to think so . + Can we get a million for the place ? +I think that 's about all I have to say . +What set him off ? +Well , a few can . + It 's the best game in the place , he said . +Some people would say , Who would want to do that ? + So it is . + I do nt see it at this time . +We have to have it right . +That 's not the way to play the game . + For me it 's more about : Is it a place I have nt been before ? +But when they do nt , then what ? +They should be on a high . + You might not like what he has to say . +The next day we left for home . + What will they say ? +Those were good years . +You may like it . + I have so much to do . +Since she can only go to school part time , she has four years to go . + And it is , too . + So I want to do my part . +We go and play the game the way it is , and that 's what it 's all about . + We want to have him . +But this is not about money for her . +HOW LONG WILL IT BE THERE ? +But it has all been one day , that first day . +LAST week was Next week . +We found out we can do that , but I would nt want to do that every day . +The White House is on its own . + I may make that one . + That 's what I do , he said . +Then they come in the next day . +People go after you . +I never did that . + Now we have no money . +Very , very , very , very . + More than that , Ms. Day said . +I know his children . +That 's his game . + Most of what he does he does on his own . +If he 's that good , where has he been all this time ? + But there is no second place . + Do I want to ? + I had been at three , four and five . + This is such a time . +There will be one more . +People For the American Way . + It could be during the game . +She did nt work there for very long . +We are still in this . + You know that is nt right . +We are all you know . + And now what ? + I take one day at a time . +As of today , I will be back next year . +I would like the best for my children . +But after a while you get used to it . +He should not have had this life . + But no one does that . +And not too much of it . +There was some work to do . + Get a big one . +All of that is a long way off . +As of now , they are not . +But it 's not here . + That 's a big if . +No , I do nt know . + They said , Like this , like that . +He 's more than that . +Little is the way it used to be . +I do nt know if I can take his . +But it was never made to . + He 's with us every play . + Here , we do . +Most of us do . + I might get to like it . + That was the best part . +Each time we say : This is it . +Back in those times , that 's what is was . +And my program is this . +What will we do for work ? +If you would but state your business . + It was just in time , he said . + I put some of them over there . +There 's money to be made in this business . + That 's all she can do . +This , in any case , is nt it . + You do nt have another one , do you ? +Then I had to play them one at a time . + I just do nt know , he said . +It was his last game of the season . + We get a new President . +You can work any time you want and as much as you want . +But it could be a good game . + It 's one of the two . +She 's going to have children . +It was nt that people did nt know where to go . + You know they do nt want you to be part of them . +They are , and they are not . +I do nt know when that will be . + I do nt know if we will . + This has been there . + I do nt have children , he says . +It just would not go out . +I can say here that , that , that now . + I think this will be the last time . +This game was big for us . +And this year it has . +Who will be there ? + That would have been good for New York . +Now where we can we do that ? + Are you a man ? +Is nt this against the law ? +This is what our people think . +They are all the same place . + We should not say that . +I think they can do it . +She would like him to . + What do you want him to do ? + How much did you make this year ? + Every day I think about them , she said . + It is , man . +A little more to the left , a little more to the right . +Next we are going to go the other way . + In a while there will be more of them than of us , she said . + How many people will do that ? + It would be to get going , get going . + It would nt be right , he said . + That 's all I want , he said . + We did nt want very old . +There are people around . +They can not go back . +We are with you all the way . +They did more than that , too . +Do I have it now ? + We know there is more to do , the President said . + It 's been a long night , she said . +Does she have the time ? +But I know it 's not going to be like that all the time . +Then there was the program . +It does not have a right to get in the way . + This is not for you , he said . + We will be out of money , she said . + He said : That 's your game . +It is today ; it was not yesterday . +They know him and , for the most part , like him . +That 's how most of us see it most of the time . +A part of the school day . + He said , We are with you . +No , I do nt think it is . +And so on , and on and on . +Now that is not the case . + So I do nt know . +I do nt like to that . +That is , they used to be . +We should nt have been there . + No , I did nt know that . +And he 's on . +I know it 's not about what I like . +That he is , and a good one too . +We have a family day . + What should you do , John ? +Well , no , he had not . + They did nt want that . + You can see how it is made . +These are good times . + I have to think : What is best for me ? +I can get with that . +I think there 's so much going on . + I do nt see it , he said . + How long is it going to take ? +From all of us . + What 's That You Said ? + But then you get them home and they do nt last . +But what 's this ? +We go through this about every four years . +To not just know what to do , but to do it . +We did nt make it . +That was five days ago . +I know you can make it . +No , you are . + It was going to be for two people . +They do the best they can do . +In a way , it had . +To business , says he . +Or was it less ? +Never Too Old for . + What year are we in ? +He says : I want this . +Then they part company . +I just want to see you out there one more time . +Because you have to work before you play . +But what he was , was used up . + And they are right , because that 's what you do there . +It is up to him . + One day is one day too many , he said . + I do nt know what to say about today , she said . + We are here , and we are not going back . +I just want to do my best . + What if they were nt ? +If it had not been for that program , I would never have made it through school . +He had a long way to go . +But does he have it ? +How would you know that ? + You come out here . +Did nt they know ? + I said , Who ? +This is No Time . +I just want to be in for one play . + He 's made it . +But where is it ? + Not so the United States . +He is very much a part of New York City . +The money will come from the Federal Government and the state . + Not many were , though . + What are they called ? +A man 's world ? +It was nt just one group . + I know what we are up against . + That 's part of the case ? + To never use it . +That 's what people could nt do . +We had the same . +In its place was . +But not this game . +That 's only just . + I said , What do you do at this time of the season ? +There is too much of it . +It 's like that all the way through . + That 's not our team . + I have no more to say , she said . + Well , we do nt have a home , she said . +It may well do that . +What should we get ? +This year could be the second time . + That was part of life . + I want people in New York to want to see it , she said . +No one was about . + It 's not the law , he said . + No one was in it for the money . +They are not in that business . + So she did . + I did nt know what he would do . + Now I want more . +About time , would nt you say ? + So what 's going on here today ? +I was so little and it was such a long time ago . +You would nt know it today , though . + We did nt make money , he said . + We are the people . +Get a life , as my children would say . + I like this too much . +It is how we do this day . + What did that take ? + Who will be next ? +We want it , too . +This is my public . +Such was the case here , too . + No , he said . + She did nt like people to be down , she said . + I do nt have any . +They like to do it , that 's all . +It 's been so long . +But What Good Does It Do ? + I do like that . +He does nt know what 's going on . + If not , next year I might not be here . + I want to see him do well . +But where to go ? +He has not been back since . +I had to take my time . + These people do nt get it , she said . +Now is our time to show what we can do . + You see the same people each day , he said . + It 's music for me , he said . +Can we go home now ? +They come here to work . +We had them at home for about a year . + No , no , no , no , no , no , he said . + I have no time . + Or all three ? + I used to say that . + But it was nt good , he said . +We want to say , Come back . +They just want one who can think . + I know , she said . +He said that I was just not used to it . +I like to do this . +So show us them all . +I know what war is . + We know what we did was right . +The public does have a right to know . + And that 's what he did . +What do they see in it ? +This is how we do it . +Now they were on their own . +I do nt think I made any . +That is , if she has time . + But it is . +It 's never , never the same . + But what can he do ? + But now what do you do with it ? + Do I like it ? + It 's going around , he said . + Come up here . + They did nt have to . +How big could that be ? + Yesterday was a good day . +We do nt know that . +And I would set to work . + I just do nt want to be the one to do it . +For a second , so was I . + But some of them would not . +Not all of them are . +That 's my home . +But the work did not last . + We know very little at this time . + If he does nt , he should nt be in the business . + How will we know when it 's over ? +HOW BIG SHOULD A HIGH SCHOOL BE ? + Never made two on one play . +She does nt know . +We did what they did . +What Could It Have Been ? +That 's all you can do . +To New York City ? + All day long today . + We think you can . +But want it or not , we may get it . +But this week they are back . +And they should be . +There 's just no way I can . +They did nt work that well . +Right now , you like me . +How do you go on ? + What is not is where they will get it . + I do nt know if I could do it or would do it . + I was one of you , he said . +What can they do to me ? +They would nt work with people you know . + That was all he would say . + And she never did that . +It does not work that way . + We do that every year , she said . +Would you put up with it ? +All it can get . +What do I want ? +They have come up with two . +And he could nt do it . +And we are so good ? + They are not . + This is what I have to do to get them in school , she said . + Did I think so ? + I did nt think I could take it . +The two are one and the same . +There is music in the play , too , though not much . + Do I come into your house and do this ? +And it 's about us . + We could nt do it without them . + And there 's not . +SO what do you think ? +If we do nt make it , we do nt make it . +What do you do at night ? +Where are these people from ? +If you are , I want to be there . +But it may be never . + And I do nt want to know . +The last time , she called the police . +For a long , long time it 's been like this . +I will still do it . +I did what she said . + What was going on then ? +And how was that ? + It was not to be . + It could be , he said . +It 's not what other people think , it 's what you know . +They did it , we did nt . +It should be about what you are going to do for the American people . +Then we were nt . + Other people did not . + She said , I will not . +This has been going on too long . + But it 's a family business . +Do you have money ? + They want to go back . +So the season is down to one game . + And what could that be ? +We play them every night . + We were a place for him to come to . + It 's right ; it 's just . +She was at the left . + He said , What do you want to do , make money or make music ? +Now that they have it , what are they going to do with it ? +He still does nt know . + It does not work . + It was that man . + How can I put this ? + I do nt want them but they make their way to me . + We do nt know what time it is . + He 's one of our own . +Who were these people ? +It 's what 's best for my family . +Do nt think about that . +It did nt go over too well . + What did she know and when did she know it ? + It was : More ? +He had nt said much . +For a while , we were there . +Because he says he will . +I do nt know another place . +Where was she when I called ? +It 's just a play . +This was the only way . + But it 's big business for these people . +We had our good times . + They will never get it . +And what should the country think of him now ? + I think New York will never be the same . +He had made it to work . +Today , city officials say , there are only four . +What do you know about him ? + You were out there on your own . +TIME out on the court . + We know what 's going on . + So it 's all right then ? + Your government , that is . + Our family was there for her . +And I have no money . + That 's about it , he said . + This time it 's been a year , he says . +We know what is right . +I like it very much . +I can only take so much . + We just want the best for him and his family , she said . +What game should we play next ? +Have nt we been here before ? +Today , it is the other way around . +All this is as it should be . +Now there will be so many more . + And he did so . +Our world is not the same without you . + We want the end of the war . + There 's so much here that we have to do , he said . +They think I work there too . + It was every day . +But I know I do nt want to do it right now . +Not all of them made it . +That was what he did at war 's end . +She has been here before . + So , what does it do ? +What Do We Have to Do ? + But they would come to an end . +But how much time off is too much time off ? +I did nt want the same for her . + I can work with him . + Part of the day 's work , he said . +And will it take time ? + There has to be one . + And we think that 's the right way to do business . +You want me to ? +That would be my government ? +But it should nt be . +Who would nt want that ? + We have no place to put them . + Now , What Will I Do ? +They now own the company . +But this is not what we have come here for . + That 's what you have to do , he said . +Many are her own . +Come on , what 's going on ? + So you think they made too much out of it ? + I never take them . +That I could not do . +What would have come of his life ? + It will take place , he said . + It 's just right on you , he said . +I do nt know if I would or not . + That 's a part of the game , too . + Just in case I get in the game . +Did he want another ? +If so , what can they do about it ? +There 's all these children here . +We should be used to it by now . +That was the game . + Some of them , he said . + I could say it . + I work at home , she said . +What will set it off ? +It 's what it is . +He is now where he should be . +This will take time . + The new Just Because . +It is nt A . + Me in the street . + I know all the people there . +He would nt say more . +You can be who you are . + Not long ago , I did too . + You never know what he 's going to do next . + There was nt much to do , he said . + You do nt have to make A 's all the time . +How many next time ? + Every day was night . + Well , I do nt think so . +There 's one other one here . +It was never about me . +She should play more . + The good times are over . +We did not have these at all three or four years back . +It 's our business . + We do nt have any more time . +No , not that one . +How did she do ? + We have so much and life has been good to us and our children . + Then What 's the Use ? +You know where you are going . +But it so is nt . +They are my people . + I said : Come on in . +That 's just the way she was . +This has been going on the last two or three years . +Might is nt right , but might is might . +But we can not do that . + So do I , I said . + For two years , she said . +Any one will do . +That might take several days . +But that was four years ago . + What did I think ? +I want more , and I know I should nt . +We are going to do this right . + Which he did . +You have nt , right ? + I know what I want . +Do you think he will ? +To go through so much . + That 's part of being in New York . +It 's still out there . + We do nt have one , he said . + What do you people in New York City think ? +Today he did just that . + How was it ? + Now I just have to go do it . +Many do this time after time . +We are still there . + And most of the time it 's women . +That 's the law of the street . +This was a big big game . +And I said : See ? +It could not have been for money . +FROM ME TO YOU . +But it 's still very good . +It 's what you do every day . +The way you are right now . +If so , would they do any good ? +Did they do what was best for us ? + They like it out in the country . + This is good business . + What can you think about ? + Well , not many , he said . +We had to ; after all , now we were family . +I would nt do it with less . + They are what they were and what they are . + So how do you do this ? + I said , How 's it going ? +So did the Times Company . + We have too many . +How well do you see at night ? + You do nt think about it here . +This is such a place . +It made his day . +How long had she been there when she was found ? + This should only be so , but it is not . + See how high it is ? +That 's still a long , long way off . +The same team can come back next year and play . + Which I did nt have . +If I did nt want to play , I would nt be here . +The world did nt come to an end . +It was nt time to do that . +Not all of the women have or even want children . +Or he does nt , in which case he does nt last long . + It is nt . +We were back in New York for New Year 's Day . + But I do nt think we are going to do that . +It was New York . +Just play good at home . +Many other people did . +But not like this . + So they said , What will work ? + I said no , no , no . + One of the best . +So who would I take up there first ? + You are going to see the best of me , he said . +I still do nt want to do it . + They are the only days I have . + We do nt get you what you want . + He now says , I never said that . + Or do you just think that 's what you should be ? +I said Who are you ? +But it will never be the same . +What was the first one ? +I think that would be good . +What are the people like ? + I would never go in there . +So is this one . +Not now , she said . + Today I had a good day . + People make more money , she said . +But that too will come around . +Not at all , John said . +It 's all right if you did . +I know what it 's like . +But it did no good . +But that 's all I want to say . +Now there could be more . + But that 's not up to me . + How can it be ? + We know the game . +Not in the next year , not in three years , not in five . +Do I go to the United States ? +We are in a war against these people . + I have more to do here . +They know how to do that . +But that is not the end of it . + That 's not how I see this . +They were the first . +They know that though . +Who is it good for ? +Three of them did . +He had no children . +Should nt we all be ? +But most of it does . + It just was nt my day today . +And we are back . +All in all , life is good . +I only think about right now . +But that is all we get . + One day we will . + The President is not the country ; the people are . +Do they all make it ? +Where do we get the money from ? + But I never should have been there . +Last year was like the first year to me . + Should we just take it off right now ? +They do nt come back . + I want to go where you are from . +It does nt say much . +That 's what this game was about . + This does nt work . + And During the Day . +Now there 's no one . +They just could nt do it . +And in the life . +What has been said to you about that ? +No , it is nt the way it used to be . +Now we get to play it out . +Come back next year and see it . +That 's the way people think around here . + And that did nt work too well , he said . + They were her life . +He should make it this time . + We are in the end game . + And he 's not . +Which most of them have . +Some of my family members were there . + And he did do that . + I think I should be there now , he said . +Who do they take it out on ? + That 's what we are going to do . +This is , this is just . +This was his second year , not his first . + You can come any day . +It would nt do . +And in this country ? + It 's been very good to us . + If he did , so what ? + Will it end with the city of New York ? + You never know how it 's going to come out , right ? +She did nt just take their money . + They are what they are , he said . + They do nt have to take our money . +We know they are a good team , too . + That 's the only way you can make it . +Do you know what it is ? +Or so we like to think . +And I say it 's about time . + They were like , Do it now . +It do nt work , he said . +He 's only four . +Would they even like each other ? + And what is this ? + I just want him out of there . +We do so much more than that . +But not this man . + It 's about the work . +Who would put money in it ? +He said , I do nt know -- you could go on like this for another year or two . + It just did nt work for them . + You did good , she said . +This team is nt that good . +This is one of those . +He does it at home , at school and at work . +It can take it . +But what if she had not ? +Is there no end ? + It 's good to make good music . +That 's New York . +She did that every day . +It 's over , it 's over . +But people still see him as The Man here . + And it just was nt my day . +It was nt the end of the world . +We do nt have the best team . +Just not at this time . +Many people still do . + And they have a right to do that . +Who called you out here ? +I think that we can with what we have . +Until now , it has not . +What does it all go back to ? +It was going to be a good few days . +But not this day and not for this office . +And I think that 's what this is . + I want to see how good they are , he said . + Not that many , he said . +That was a part of my life . + He says that they did nt . + We just do nt know , he said . + How can I do that ? + They do nt know what it is . + And so his life will go . + Many people like to see them . +One war is over . + It was nt like that a few years ago . +This is not the time . +You long for what you do nt have . +Is it game time ? +A : I do nt know that he did . +Who Does the Business ? +But that is not the case today . +He did not say when . + How are you going to do that ? +Well , she would , would nt she ? +We are much more of a team . +But they will do so as members of the same American family . +But other people who think like me , they are . +He was nt my man . +New York : a money city ? +It 's against the law . +And that 's all , that 's it . +You can not get off . + Now I can get back to work . +I think that 's what he said . + Right now I would like to get out of the market , he said . +The team is in last place . + There is just not the time . +Or , the department may get around to it on its own . +Four years , it 's a long time . + We know so very little , he said . +COULD , and did . +Do three to five of these . + This is just like any other business . +If you do nt want to use , you are not going to use . +But he can not do it , and does not want to . +That 's for home . + What good would it do me ? +And they were good . + I do nt know those people , and they do nt know me . +But she is not that . + What you want me to do ? + What I did , I did for me , she said . +I have some time . + I just have two or three years left . + You work with it , he said . + She had a long life . +One percent is big . + You can only have so many of these in a year . +She did not go to school . +Should he have a say ? +And there we were . + If not for this . +You could be both . + You have to take it five times a day . +She left because of me . + I do nt know what to say . +We would never do that . +Then where do you go ? +We are not going to be first . +Three of us were going . + What did he do ? +What is there to do there ? +But that was not the best part . +This was the end . + And I think he had the time of his life . + They are part of us . +But she 's been through this every year . + This is the way they work , she said . + Our members are not . + I made this , she says . +What way was that ? +No time for it . +People do nt even know that much about what he does . + It was just , Get on with it . + She did not . + At the end of the day , we are a business . +Should we have two ? +They are too high . + It 's just down there . +But there is more than that . +I had the house . +It was nt about the money . +He said : We know what we have to do . +You just see it . + I would , she said . + It 's not about can you do it like you used to ? + If that 's what you want . +The last , what was that ? + I do nt know from day to day . +Music was one of them . + Business is business , he said . +Was it there last week ? +Just not this president . + Business is business . +We never did this . + If you had money , it was good , she said . +Show me the way you used to play . +Not how you play the game ? + This time , it did . +For me Home is more about New York . + And off they go . + We were back in the game . + I know how to do it . +That 's who he is . + Then who does know ? +Little did I know . +All your money 's been made . + Now where was I ? +Will I make it ? + You like it here ? +And there were no police in the street . +It 's not going to be long . + This is part of the game , he said . +Do you like them ? + I want people to say , What is that ? + It should nt be there . +But what had she come to say ? +They just do nt want to take the time . +No other year will do . +I could nt do it to you . +But what if she did nt ? +I do nt want to get up . +I have to think , Where is it ? +You do nt go where they do nt want you . + Today could be the best day he 's had . +Where there was a will , there was a way . + Is that the White House ? + They called me like in the next week . +I think you just get more used to it . +Might do the same for you . +So what do they want to be this year ? + And there are so many people that do nt . + ARE we going up there ? +It is not going down . +But they made a man out of you . +So , where do we go from here ? + I do nt know , she says to me . +You are an American . + I would say she 's back . +But what did I know ? +But that 's the way it has to be . + Who 's out there we could get ? +But it was much less , and much more , as well . +Can we just say it ? +They do it because they have to . +At other times he is not . +And he did that last night . + Where does all the money go ? + You might not like it , he said . +THEY were a team . +I want people in New York to think like I do , too . +They have not , he said . +There is not even a war . +I just did nt know it was going to be today . + It does nt take much , he said . + I did nt do it , you know , she said . +And Where Do We Go From Where We Are ? + So what do we do now ? + My children are American , she said . +Some would say he is much more . +He was on his own . +Where did you have it last ? + What can I say . +It was a big night . +He 's one of the family . +That 's what a team is all about . + Was it because of me ? + You could now , I said . +It could take several years . + I put them in three times , he said . +And so , back to court . +Are you going to have children or are you not ? +It 's to put on what I would go and see . + I want to come back in five years and see them play , she said . + I have to make those . +You play when you are good to go . + I do nt think I did , he said . +And in a way it is . + I want to see more of my family , he said . +What would you have ? + But in the city I have to have more . +If it does nt work , it does nt work . +The more we get , the more we want . +I can make if you want . + What is going on ? +The music did nt end with them . +She called his office . +I have nt found that here . + I was like : You are right about that . +If they can do it , we can and should do it , too . +And where might he be in five years ? + We like each other . +I do nt know what it is now . +That is not this case . +This is the time of year for both . + That would be best for us . +I just would nt know what to say . + I know who he is . +But he was not to last there . + There he is . +USE WHAT YOU HAVE . + Little by little , she said . + And the next . + That 's what is new here . +Then you use it . + That 's all that this is about . +And what a she . +Now it 's not the same . +She said any money left over would go to the state . + And such was the man . +The show did not go on . +You know how they think . + It just was right . + What are we going to say ? + Now I know he did . + It 's going to be new here . +And what does such a man want ? +Well , who would nt ? + There will be more to come . +Last year he was first , this year second . + See you in New York . +I might never know . +You go back to school . + People did nt know what to make of it . + I know they did . +In a way , they are . +Then we get to you . +I think it 's very good . +Who are they and how did they do it ? +And what can I do to get it there ? + But I do nt see it . +How are you out ? +They may not get it . +That 's what we are best at . +Will today 's women want them ? + And I like them , he says . +It 's just the same . +Did nt even think about it . +We do nt have that today . + They are after me , she said . + No , they did nt . + Last year was a very long year for me . + I do nt think they will , he said . +It 's what we are going to do . +You want it all . +And so , what now ? +And it is nt all about him . +It 's a big family . +Then we will know where to go . +Did I know what this was ? + Before you know it , you are out of there . + I have a long way to go for that . +But I do not . +This week , it 's more . +He was the best at what he did . + We are going there . +We want to go home . +People say , Could nt you just take a year off ? + That 's where my people were , and that 's where the music was , she said . +I know when to use them and when not to use them . + It was like going into another world . +I never get it right . +They think of them as family . + This is the best place to get one . +We are a public company . + I want to be here as long as I can . + We are going to go with this for a while . + That 's the way I like it , he said . +It could be three people . + Who is it ? +The work has never been made . +He does go on . +It 's back to the old school . +There is never a day when you do nt play a part . +And we never will be . + They want to go to work . +But where were they then ? +He does nt know . + He said , I want to work with you . +What does he think the world is like ? +That did it for me . +You are on your way . +It 's not if . +There 's a place for both . + It was our way of life . + But what if they can not ? +I just did nt do that today . +How do I get down ? + There will be no war . +That was also before I had children . +Today , the world . +You should nt do it . +What does the law do ? +Then get out while the going 's good . +She says she did nt . +Did we want to come ? +All the children want it . +I do nt know how long that will be . +There were no people . +They can do that . +And so did I . +I want to take my family out of New York . + It did nt work for us . +What would life be without it . +Last night , he did just that . + It is all in there . + She could have left after three . + What did he go there for ? + I did all these ? + That 's not what we want . +It 's out this season . + He said to us : I like it here . +Did you like it ? +You were out there , too . + He 's never had it before . +The man did not come through . + We could nt get one . + That is the right way to do it . + They are just there , she said . +And he was good , too . + We did nt get here in time . +How about that , New York ? + You have to know what you can do and when you can play . + That would be very good . + It 's good now , he said . + He just made it . +One is too many . + She 's big on it , he said . + They are in the market to make money . +I should do that . +I was on my way to work . +I do this for my people . +And they are best when in season . + But we are going to go up . +Now what 's next ? +They could be the first . + But New York is New York . +We have a right to that . + But that 's just her . +You may be right . + It just did nt work out for the team . +Here you know who you are . +What is it like out there ? +Her case is still in court . + He does nt have to go through that . +It 's not like that now when I go back home . +A Play With Music . +Every good program has that . + And they still do nt have a home . +That 's what good police work is . + You never know in this business , he said . +Get down , man . +You are going to see more and more of it . +Old school is out . +This time , they did not . +This is a law . +He was the very best . +The company said that was not the case . + The game 's not over . +What did the American people know and when did they know it ? +We just said , Here we go . + We said we could and we will . +They have a long way to go on the other . +That was my family . + How would you do that ? + You say , Who 's he ? +Up and down and up and down . +So what does he get ? + First we had the war . +But the only way to go is down . + But only if I get well . +Now , he said , this is our house . + She did it all in two days . + But it does nt for me . + Where will I be ? + As it is , they have to get them through the court , she says . + Is she all right ? +I did nt know what to make of any of it . +It 's just that I do nt think so . +We know how to go about it . +Did he say what for ? + Do nt you think we all are ? +If people do nt like it they do nt like it . +Or the big money . +We used to go there all the time . + Some are very good , some are less good . +He said he did nt want to work . + What does work ? +How could nt they be ? +We could use a week off , but we do nt get one . +And that 's going to be it . +The old man could still play . +It could take a little more . + This is a political war , he said . +Do you know what this is ? +In a way it does . + So what is it ? + It 's going to be good . +Then they said I was too old . +Are they still good to use ? + We have had to do it that way . +Where 's it at ? + I just take it year to year . + He said , Could I come in ? +What can you do about it ? +So do their children . +Right now , I would have to say no . +But there 's time for that . +This was big for them . +You would never make them at home . +If I have to do that , I will . +Now we have three down . + We are only three in the family , she said . + I do nt think it was their time . +There is no place for children . +After that , she had another . +It 's just being there . + It 's not right , he said . +She made it , though , all the way . +Mr. President , at this time I can not . +I want to do more . +Or just do nt go . +I do nt know many people like him . +Now they can see these all in one place . +How could it not go up ? +We just do nt use the same set . +We want you to be there . +We know , all right . + They just did nt get into it . +I did nt know any women members . +Then it is time . +This has been home . + And we have all four . + Do you know what year it is ? +I do nt know if she had been . + And we say , You are right and you are right . + There 's no going back . + It 's all right but it 's not all right . +This is the only place he can do it . + For you people , he said , this is just another day at work . + Right , the President said . + So do nt do it . +Every four years , there is one day when the people have their say . +Where are you , and how can you get out of there ? +She was just second best today . +He 's back at work . + Next year , I said . +I just was nt on . + We are going to play well . + But there were so many . +I like being among the same group of people day in and day out . +But this was nt the time . +I want him to get back to work . + We had to show people more of what we could do . + We want to know what 's going on . + Will you be going into show business ? +They said I could nt do that . +This right here is going to make me a man . + This is my life here , he said . + People want their government at home . + Come here , she said . + And he said , What was that ? +But there were few there . +And well it should be . +Who , though , is to say ? +They are all the same . +I was one of those called . + That 's what our life is like . +Back to the music . + Where does she come from ? + How could you do that ? + They never say the president of what . + Could it be ? +They are other people . +He said , Well , . +Now they have war . +That does nt work . + It was nt like this before . +But now , he said , he was out for good . +He was with me for two years . + I know where we are . +It has members on the left and on the right . + He 's for the government . +But he 's going to be all right . +At what time will they come here ? + But that 's all we are going to say for now . +It 's too little . +Then you get back to work . +Was it a he or a she ? +We do nt do it . +Come on over to my house . +Work , home , that 's it . + They did it . +He was on , and I was on . + This is my state , I know it , he said . +It will take more than that . +And you use it that year for business . + I just have to go on what he said . +What would he do next ? +This is show business . +I do nt want money . +It 's about our team . + But this is not the way to do it . + I do nt think it 's going to get to me . + I had an off night and the officials , to me , some of them had an off night . +And it might be . + It 's part of who we are and what we do . + What did you know and when did you know it ? +That 's not much . +We very much want to be a part of that . +All you can say is that you are there . + I know I can play for two more years . +Some years they do , and some years they do nt . + That 's what we have to have . +He left the next day . +Would that more did that . + There is no money , she said . + He had some life . +They are like us , from the general people . +No , it can not . +But that 's the business . +He just did not do them as well . +It could have been more . + They just want me to get on with my life . + I do nt know where they go , she said , but they are nt here . +That 's all he said . + But it was nt time . + Do you know where I can get it ? +What do you see ? +They want to be the best . + So it 's best if I go with one . +That 's what we are going to have to do every game . +It 's not all about you and what you want . + And now he 's not here . + Then : Do you know what that is ? + Can you go back to the house ? + You can see it every day . +It 's my first time here . + People know how I like these . +We want them to make people think . +I used to be one of them . + It 's been night and day , she said . +He said that was how he would . +There 's much more as well . +Which school are you in ? +We are going to do this . +There never will be . +What they see is what they get . +But they will not . +You know the people . +I want to own a team . + I do nt know if it 's going to be three years or five years . +Now , not so much . +And so it should be in business . +As of today , there is more . + Which way did they go ? +Did nt we just see that ? + It 's good for the country . + It was called the People 's House . + And that 's how we found out about it . +All of you know that . +They like to play . +He was part of my family . +And I do nt think they want me to . +Who 's left there ? +How 's a women to know ? +There was no war there . +It 's not just me . +I just did nt . +So he put one on . +You want to be part of a family and you want to be part of a team . +But it was not over . +Most people would not . +Me : You are right . +She do nt know I come to see her . +So that will be a big part of what I do here . +Now it 's up to us to make it work . +They are around , we know . +How long is this going to last ? +It was not for me . + But it is my life 's work in there . +You are going to play more this year . +That was my life . +They were to be the last . + You should see it at night . +How did I know it was time ? +But now he is going back to work . +It 's just part of business in general . +What will they be ? +And who called me ? +There 's much more to me than that . + If you want the West , you have more time . + That does nt work very well . +A week ago we were going the other way . +We do not know how we come to know this . +This is what he has and that is what he does nt . +He would want more . + It was there . +Did we make money ? + We did that . +I said : That 's right . +Still , the show was not over . + Not around here , she said . +What can you do me ? + This is the last one . + I said : Only a man could do that . +Same as last year . + We are here to do what 's right . +Now she has two . +Here 's what I want . +And he was nt the only one . +It could be you next time . + They did not like that . +If not this year , next year or the next year . +Last year I could nt say that . +And so he is back . +This is not the case at all . + But do you want to know who he was ? + It was a long season . +How could you do that to us ? +Even so , What Did He See ? + Only you can do what you have to do . +What is my program ? + Next to your house ? +What 's the best way to do it ? + I think about going back to it some day . +But I have to . +But what is it then ? + Not in there , he said . + But it 's not about us . +Well , that may be the case . + We did what we could do . +For me , that 's what it 's all about . +What can we do today ? +But she 's said that before . +This is a good team here . + Five before , five now . +It was the first time he had called her at home . + It 's not only my own people , but all the people . +And then he had little to say . +Does she use them ? + Now we have to go out and do it . +Now more people do . + It 's going to take a little too long , he said . +But that 's not what people see . + It 's just like the old days , she said . +And so is life . +She did nt go to school all year . +Now they say they did nt do it . + She did nt do it . + What did our president say ? +Most of the time he did . +She put me in school . +How Long Has This Been Going On ? +That 's the only way you can have a war . + I do nt see us going down . + This is a house , and this is a house over there , he said . +This could not be good . +We have children all over . +And where are they going to put her ? +But it would be just . +But I made it . +But that may come in time . +They have to do it before or after work . +They are very , very good . +It 's what you can show . +It never has been . +Which is what they will do . +That 's just how people are . + I should be there . +This has been five years . +People from all over the world go there . +Like that , it was over . +His Life and Music . +I said , Just come . +And so does the country . + I have to have them too , she said . +Might as well get it over with . + People are from all over . + Well , now we can . +You have a good time with your family . +I think that 's part of who he is . +I had said that . +They never had it so good . +And so do people . +Us , us , us . +Now it was time . +Then who 's going to want to be around you ? +But to me , they are still children . +Where is the Government ? + I just want to go as high as I can go , Mr. Best said . +He was going high . + No , no , no , no , he said . + YOU STILL THERE ? ? ? ? +There was just one . +You just do nt think it 's going to do it . +Get out , get a life . + Have nt had time . +All I had to do was show up . +Women did the same . + You want to ? + But that 's going to take time . +We have nt had any days off . + The game will be even , even , even . +It was his money . +I had been called . +No home of their own . +He does nt want to go home . + You can never get them to come home with you . +But not this time around . +So you know , I will be in very good company . +This can not go on like this . +But I may have . +He 's been a big part of this team for a long time . + And today it was both . + I do nt think it 's going to last . + Now Where Was I ? + We are in a war , he said . +At first , she did . + Does he like my music ? + Where have you all been ? + We do nt even do that . +But on Do You Like It . +It was , it was . +This is what I did . +We just did nt think about it . +Now I think about it all the time . + He 's like the people out here . + That 's what I do all the time . + Can I get that one ? + Do nt do it . + It does nt come home . +But then , no program is . +But if that is what we have to do , that is what we have to do . +But where after that ? . + I do nt know how I did it , he said . +It 's high time that they do . + He 's not going to say that . + I do nt want to get into it . +Where will you go next ? +Can the good times last ? + This year is another year . + I think I could do well in that . +We know what we have to do this season . +They are people , too . +My game was off . + There 's still a play to be put on . +It was all over from there . +It has to be there . + Children , by A . +Who do you think you are ? + I want to have a good team . +If it does nt , it 's not the end of the world . +No , I can . + It 's what you do to make it work . +But you have to do it out on the court . + It should be called Business Show , he said . + Did he say that at the time ? +How do you see him ? +What does the director say ? + They are still around , he said . + I was right . +So will those without money . +Now what do you do ? + The people are with us . +Now they are in a show . + He was just out of it . +But there was much to see . +But who is there now ? + You take what you get , he said . +After that , he was never right . +Music is so much a part of my life . +It 's too big a country . + It 's their way of life . +And to be President ? + But I think so . +This is my team . + I do nt know who that is . + Now we can do it , and I just like the music . +He was not a good man . +How did we make it ? + They think they can do it . +But this is only one case of many . +But that 's not what being President is about . + They are all here . + They would not have me . + We will come back . + I did it my way . + Do you know New York ? + Make that very , very good . + We had it . + Because I know , he said . + You are going to see them all the time . +And now there he was . + It was never off . +What do you think this is about ? +But it would nt have been . + What did nt I like ? +It 's a political war . + I think about them all the time . + He said a little was too much . +Well , now we know . + It should nt have been , he said . + We out and out did nt like each other . + All we can say is : Think about it . +And on all the other days ? +That was just like a man -- was nt it ? + I could take it . +Because that 's what it 's like around here . + I think that 's too much . +He was nt in . +I do nt know how to play for money . +It is a new season now . +What could be there ? +It 's just that we do nt have it in New York . +The money just was nt there . +If not , we go home . + This is a new season . +That may have been the case here . +Which it would nt . + I do nt know where it 's at , she said . +This is nt a new business . + I say , What can you do ? + Each one can be at home in the city , he said . +They said it was too much . +This is not for me . + You know what people in this country want ? + All we want to do is be out , because we can be . +There will have to be . + You do nt have to . + But one of these days it 's going to come back . + It 's about two years , he said . + Now he can be . + It 's all about how you play . + I said , You little so and so . +We were still in the game down at the end . + How do you put up with these people ? + Many of them want to take a year off . + And what do we get ? + But if he had it , would you want to know about it ? + Was this a game ? +That would go well . +I can do what I want . +I own my home here ; I have a business . +If he does nt , he does not play . + But it might be too much . +One at a time . +So I go in there . +You see , I did nt come from much . + It 's just one day after the season . +And never more than now . +Where are they from ? +And more or less he has . + Not like last year . +The director is A . + I do nt think this was . + It 's us against the world . +I said that last year . +Yesterday , he was good . +He had to go and make money . +As of now , it does not . +It 's been a good life , and we want to make it a good life until the end . + It was a good day , he said . +After one more day . +Some may end up at the White House . +And he has money . +It 's American music at its best . + And that 's how it is this year . +For all we know , he may never take them off . + This is what it 's all about . +This is nt like last year . +They do nt know if they are going to have a team . +It does nt end well . +But that 's the end . +And I said , Well , we could . +We could use him around today . +Two each week would be about right , they said . +They just were nt . +Many of them were . +But , he said , If you get the money , you get the money . +I go out every day . +I think we should . +There was no life in it . +If what you want . + I think he did . +But that 's not what we are after . +Where are those people going to go ? + We are all well . +She said , That 's all you get ? + I play every game like it 's my last . +Today , all day . +There 's no way out of here . +With the federal government . +It may even be right . +The will is there . + They are very good to me . +It will do you good . +We can not go home . +That 's very much him . +Well , get set . +That is what I want to do . + I just work here . +Today , we just did nt have it as a team . + That 's not good for the school or the children . +What will be , will be . + I do nt know where we would be without this music , he said . + What do I do ? + It 's a good time . +It is not too big for her . +Get your life back . +That was not all he said . +See how much time is left . +But I do nt know if you can do that all the time . +I do nt know what it 's going to take to get over that . +It might not work . +Then to the big one . + They are for women like you and me . +That 's what they called it . + I do it the same way you would . + I know , I know , but . +She was high up , but she was there . +Because it 's right . + I was right up there with the best of them , he said . +She 's been there . +Well , get over it . +How much time do they have ? +Only this time , even more so . +But not too much . +First , they are all American . + You can take it with you , she said . +That 's not what it was . +But they are still off . +Then , I had children . +But I can only do so much . + They do good work , he said . +He who can , does . + And they are off . +It might just work . +I do nt think about that at all . + I do nt know if the government can do this , he said . +And they still get up , and they go do it . +Little was found there . +They do nt even know what 's going on . +I want him to take it . + It 's what they do . +How could this work ? +But few of them have . +And then there was the president . + To do it now would be -- how can I put it ? + And that is what I was after . +But what would it be ? + It 's what people want right now . + But there were nt any to be found . + But until we have it , we do nt have it . + We have no life here , he said . +They have been through all that before . +It used to be like this . + How does he do that ? +Or west , in this case . + We are just like them . + We should nt have to do this , he said . + Then , Get down . +But then it did end . +That 's all we do . +That would be up to her . + In time , we will do the same , he said . +This is my life now . +Only it is nt . +This time for good . +There 's no good day . + Would nt we all ? + It 's not just her , it 's all of them , he said . +But it is so . + Where will it end ? + What does he do for money ? + He 's family to me . + It 's a way of life , she said . +We think it should play for a very long time . +You should work on that . +I want my own house . +But we were around . +But he still has time . +But it did go on and on . +Today , too many of those people are being left out . +What would they do ? + It was a long time ago , he said . +Or is that too much like work ? +But she did nt . + They are not that big . +What did you do there ? +That 's the way it is every time we play . +They are a way of life . + They can just do it . + And we are on our way . + Where 's the program ? + But that 's life in general . +I do have that in me . + There are a few , are nt there ? +We do not get it . +If he only could . +And now here it is . +But if there is no business , there are less people . + If so , who can go ? +It may be on John 's part , but not on my part . + They are the best . +I want to do what she did . +Some people can do it . +And it 's good music , too . +She made it so . +Well , he 's back . +So we did nt . + For the Best ? +That 's all we can play . + If people want to see a show , they get there . +But that was nt me . +I want her out . + Could I think about it a little while ? + There 's a time to get in and a time to get out . +There is so much good work from so many . + Was that a game or what ? +They also said they would set up two new companies . +We had them down . +And for his children . +I make it , and they come . +Because if you did , you would nt do it . +But it is still just you . +It is a war . +Very good , I said . +There is so much to think about . + In New York , they could not do that . + Well , I never left , he said . + Right now , we are not . + There 's no one way to do it . +But it did nt last . +They found a few . + Very high , she said . +Now if he can only get there . +That 's how you do it . +That is a long time . +Do you think you could do that ? + I had to think , he said . +But every team has a right to do what they want . +We can see it when we can ) . +And we did nt play well . +I do nt go out of the house all that much . +It 's still new . +You just put them out there . + I do nt think about the people . + It 's been a long time , has nt it ? + Too little is not very good . + I say , How can we not ? + It would be for their own good , he says . + It 's what 's in them . + And she said it 's because of the children . +She said , The more they know about us , the more they will like us . +But do it out here , and do it when you are in the game . +He was out for the season . +There 's some money there . +It 's been that way for a long time . +If you do nt , you have a game like we had the other night . + Like , We are part of the city but you know what ? + The Government is no good , he said . +But they are still with us . +Then the family left . +Can you take it ? +There 's no time off . + All the city has to do is to get out of the way . +And the work from the house has been just that . +It 's who we play , too . + I said Who ? + Did you even want to be a police ? +Most of them do nt do well . +One day here , one day there . +She does nt know who the people were . +But he 's over it . +After all , he had called . + How did they get there ? + But this is the best time of my life . + See your city as it could be . +There , it 's out . +It may be as good a way to go as any . + He used to do this . + There is no set way . + It 's not going down , he said . +It was during the war . +It 's good to know . +But that 's what he 's all about . +He put it another way . +It has no time . +It 's not just music that is nt music . +If it was made for the President , it would have said so . + There may not be . +Now do this next time . +So only two states have it now . +After that I do nt know . + Which was it ? +I could nt do it without them . + No , I would not . +We did nt have much money . +I know : big if . +He 's been the same here . +This is not who we are . +I said to him : See that ? + I do nt like them here , he said . +What can we get ? +Then there was the other night . +I think she can do it . + Where you going ? +Where would they go ? + What are they going to do now ? + We did nt want to do it if it was only right for the team . +But what do people do if they want one at home ? +But we put it into law . + He 's not here . + And they are going to get it . + There , I said it . + It just was nt our day today . +I will get back to you . + They can do what they think is best . + She would say , Are you high ? + Every day you are with us . +Where should we go ? + They know the place , he said . +That may be the last time , too . + We all use it , she said . + How old do you think she is ? +You did nt go to school ? +What they do nt know is what to do next . +I like to think that you are . +That 's what 's there . + I did , he said right back . +He said he should not have been there . +Well , are you going to war ? +I think he would say the same about me . +But I do nt see it that way . +Will it be on all the time ? +He does all the work for you . + Who 's going to show them how ? +What 's new here ? +If not , then the next game . +But not through with show business . + The money is all the same to me . + We are not as good a team when we play that way . +In the first year ? +It 's the way I like to work . + And he was right next to me . + That 's not the American way . + It is the only one in the United States . +I only do it when I have a set . + I do nt see what for , he said . +They called me a few times . +The first I did nt like . + People still do nt know how good we are going to be . +We did nt see him . +Is that what you want for me every night ? + I can still play . +I do what I can . +His life is good . + Not that house . + They were here from all over the place , he said . +I did the best I could with it the first time . +What was there to see ? +What are you going to do about it ? +It will never be the same here without you . +I never think , Can I do this or not ? +For some people that may be good . +This is not such a case . + I should know more than they do . +How did this come about ? + Before , it was three . + Well , it is . + Did you SEE that ? +They did not know that I was not going to be there . +But here they are . +But that 's not for me to do . + I said Which one is he ? + It can be , but it does nt have to be . +I put him in his place . + What Do You Have to Do ? +They go after it . +From From That Place and Time . +They said they will come back for them another time . + I was back in business , she said . +This is my business . +Most of that has been used up . + Do any of us ? +It 's all about that . + She 's out there . +They are all work and no play . +I have a family . +In New York , there are two . + It should be his night . + But it never did . + That would be right , he said . + I think this is a very good year . + But it 's very little time . +Both are now out for the season . +One of these years , the Government says . + He 's up , she says . + It 's just me . +But that is not the end . +She never called back , and said she never would . +I did nt get one . +How well are they made ? +But he is back . + But it 's not the end of the world . +I do nt know what will come of it . +We were right to do that . + There might or might not be . +He did nt know what to do . +Time is what it is . +And that 's what I said to them . + She 's so used to it . +And now we are left with no music . +But a few I know well . +Less may be more . +And it does nt work . +You are going to come back . +But that may come to an end . +It is about us . +Just did it on his own . +For those who do nt have any , no . +Not in this family . + Would I want to be in the government ? +He did it the right way . +After four , they were still there . + But where can I go ? + I could nt get over it . + We were in our own world . + It is my home . +And they said that , too . +They did nt know I was in there . +Or so I think . +And then to make it . +I get them the next time . + And he did . + But I did nt think it would come down to this . +And that 's never come back in the same way . +But that 's not what this is about . + But just not today . +He did what was best for his team . + Well , no . +The people who know me know that . +How did I get into this ? + No , I do nt know who he is . +I do nt want to go on . +And so they were . + But we will see . +It was his company . +He has , too . +But he will be president . +I was where they were nt . + And she did . + We do our best , he said . +But he 's not right . + People are the way they are . +I can not go back . + And I said , Think of the children . +And I had the other work . + As only he can . +Another day , another year . +He could nt say . + He called , White said . +They can do that in New York . +I just did nt see him . + I say , Well , we are . + But what do you want us to do ? +I had to go home the next day . +Just the white people . + They might well have used it . +There 's no other man who could do it . +It 's not even good . + I do nt want his money . +They were up all night . +It 's what you do with it . + It would put people off . +But this was his night . +I see many people . + That 's all what you can . + They are more than that . +This is nt so . + He 's just a director . +Money for that is still not here . + I do nt know what it is , she said . + And that was nt all . +What 's new about that ? +And she was right . +This is big , people , very big . +How could I not be ? + You can go on and on , she said . +A play here , a play there . +It 's been one year . +He was at the right , not second from the right . +There is more to it than that . +This year , he has nt had to . + It 's the school , it 's the program . +There was a time . +Even as the city . +It was nt his time . +He is , and it does . +There is other work , too . +But after all , it 's only the first day . +We do nt know where we are going from here . +No , it 's not , but you can see it from here . +But that 's not all it was . +But , you see , he is going to come out . +Or , you think you know . +As if that could make up for it . + We do nt make our money that way . + I say it three or four times a day . +We want more than that . +It was time for war . + This is not about what we are against , it 's about what we are for , he said . +They had a right to know . +You just have to get through it . +He has come a very long way since then . + We know the world 's not going to end . +I do nt think it should be that way . +So who does nt ? +I think about this all day . +This is nt one of those times . +It is what we are about . + I do nt know how we are going to do it , though . + It put me off my game . + They are all a part of what it is down there . +They do nt know what we know . + But I do nt know if they are right . + They are there , day in , day out . +It was a new one on me . +That 's the way the world is . + It is about the money . + It 's all in the music , and it 's not . +But I do nt know if I can do it . +We are there , even when we are nt . +How do they do it ? +Most people work five days a week . +And not just here . + All the way for me ? + They do nt know him like I know him . +I like it as long as it 's good . + The police said , You are a man and he is a man . +A -- I do nt like it . + I think they do it , he said . +He has been A . + What year was that ? + I do what I think is right for the American people . + Can you do that ? +This is just another one . +I do nt know the way to do it . +I said it yesterday . + And we are not about to do that . +I have a new house . +You set out for one place , and you end up in another . +NO PLACE FOR ME . +No , she does nt . +If it 's not , I do nt . +How do they get by ? + It 's in between , she said . + Then she is nt . + And that was the end of that . + I said , If you do nt want to go out just say so . +It will also be the school 's last . +The one and only . +I get off , and so does he . + We make them up as we go . +We just do nt see them . + They did what they had to do , he said . +That 's not been the case . +But that 's not all we do . + We can work with this . + I do nt like to see a man like that . +People have money , he said . +This play will work . +But no one would do that . + Can I get it here ? +Well , who are we ? + I said , About time . +The music was his . + And each time we get more money for it . + Very well , then . + I like all of them the best , he said . +But you do nt see that . +You go out there to make the play work . +They just come out , now . + Not that many . +Out with the old , in with the new . +That should be over . + It 's going to take a long time . + Well I did it . +Was there a war ? + For many , many years , we were her children . + And so we say to you , Mr. President , we say no , she said . + You know what we had ? +This place , it is like an office for him . + Then he called me every day for the next four days . +They are just people like us . +But not in every way . +I could nt get through . +Not the United States . +You are The New York Times . +I think he would have , too . +But now he does it year after year , game after game . + We know how to do this , she said . +He was not the same man after that . +How much more American can you get ? +A man is down . +But this is our country . + What can we say about it ? +I do nt think we are going in to just be there . +I had to think about it . +All this will take a while . +No one would go in or out . +They are going to say , No , no , no . +I can not go on . +She said , Do what you think you have to do . +She said she could never have children . +They said , We are not even going there . + The best of the best . +Right now I have to make some money . +How little they know . +We just have a good team to do that . +As if this were new . + And you may want to show it . +And , you know , they did some . + There has nt been any at all . + I think I will , she said . + There was the war for so long . + Well , who then ? + I have no end to my day , I said . + What can you do ? +It 's like war . + I had to get a long way home . + It was the people . + What did you think this was for ? +But it did work . + These people are so good -- they are just very good at it , he said . +And I do nt work much . +It 's like that every day . + All you have to do , he said , is make one . + How will it take place ? +I still have a long way . +There 's just too much . + We are a team , he said . +Then he said : What do we do about it ? +And when the children come home ? + We do nt think so , he said . + Now , we have three . + And can I say this ? +It has been that way for three years now . +And you see that in the show . + We did nt have to go out every night to know we were there for each other . +Now , it did . +We could be next . + In my time there were only two . +When you come home . +I have to do it my way . + Do what you want . +This is nt school . +In another year or so they are going to go all the way . + He said to me , Are you still here ? +And there is much more to it . +Do as we say . + And they are going to play well . + I did nt have to go home and think about what was going on , he said . +How do we know what we know ? +The Old Left or the New Left . + That was only three years ago . + I think about it all the time . + It 's like : Who are you ? + How do you say no to that ? +In and around New York City , this is not the case . +There were nt many today . + But it does not . + You know that out here . +I was all right . +You know who does ? + There are many . +It 's just one game . +You should because you own it . + It was about this time of year . + I never had to know that much before . +There was a little of that . + We are both all over the place . +You never know what 's going on . +Some , only one . +They did the time . + That 's not what I do . +I was the one that called the play . + It 's all the same to me ; it 's what I do . + I have the money . + He said , I do nt want to , but I know I have to go . +It could have been us . + Where we go , we make it work , she said . + I could nt get any work for three years , he said . + We know very little about it . + But then what would I do ? +I want to be around for a while . + You do nt know what year it is . +That 's how this game is . + So where you do you come out on this ? +How can they not be political today ? +You do nt get it . +Some people do nt . + And it is nt . +So I do nt even think about it . + They know what 's in it . + I was among them . + Today or next week ? +It 's should nt be about the money . +No one will be from New York . +What about in the home ? + Been there , she said . + He may have found out . + How long does it go on ? +But they will know more . +And he will not be the last . + We said , What would you like us to do ? + But they are good people . +I just had to be there . + They are going to get our all , he said . + And we will do that . + I have a . +I want to get to know it . + They will be left in the school . + But there was no way , he said . +He would nt say . + They are not one and the same . + It 's good to have him back . +But he did not say how it would do so . + He said , Do you do that well ? + I could nt say it . +You want to come in here and play well . +It 's your money . +And where we can , we will work with him . + I have no family , it is just me . +They are used against us . +Like Last Season , the One Before . +But , no , I would nt say he can do it . + That 's the best I can say to that . +Then they would be back . +I say you should nt take home to the business . +And this is their life . + We were going for it . +What was this show about ? +What did you play on ? +Many people think he has been that this season , too . +They may not know it . + There was so much there . + I did well . +And that 's what they did . + To be the last . + How Did I Do ? +If they did nt , I would nt be here . +I could do them both . + I know it 's my first time here . +Did nt you see it ? +What Did You See ? +I do nt want them to come after me . + He 's only been in office a year . +How can you say they are all the same ? +That night he was at the game . +It was five years , not four . + We are all one . +It 's not How well did it go ? +It was , you see - could nt you see ? +Which I do nt get . + That 's what we should do . + I think they are right . +They were right there . +It 's much more than just the game . +But I do nt want to go back to my country . +She had , after all , made it her own . +It was in the way , and it had to go . + I said , Right . +I do nt want it . +It is not the same for him . + It was too big . + Is he any good ? + Yesterday , I could nt play . +After our children there will be their children . +This is not one of them . + So all of these are good ? +She was , she said , but how did he know ? +That 's the way I play best . + It 's a place from which to go out and see , he said . +We are going to go with what we have . +We may be right . + That 's it , I said . + But he did very well . + We want you to be around the team . +While Do nt They Know It 's Time to Go ? +And he 's not . + But I do not want to do that . + Should he have been ? + And there they are . +Our best days are still to come . +But , as they say on the street , so what ? +It 's been five years . + Where do you want to go ? +The family is here . +It 's for the city . +I never used this country . + I think that 's all that 's left now . +How in the world did he do that ? +They will not go out of business . +How could they do that to him ? +Then get under it . + How 's It Going ? +But to a man , they did nt have time . + There 's too much money to be made on these people . +I do nt know what -- I do nt know what she 's going to say . +That we are not going to do . + It would nt be the first time . +That year is now . + Are you going to do the house or not ? +Do you know me ? +Well , he does , but in a good way . +How could he not know ? + And he also said , We are the second best . +Would he take three times ? +It 's not my family . + It was nt there for a million years , but now , if it 's not there , people say , Where is it ? + They had children and their children had children , he said . +You just do nt see it . +No one had one . + Some of my people said to me , How could you do that ? +I think I will . + We do nt have to take over the world . + What 's that for ? +It 's a war just the same . + I do nt think you used much , he said . + Little good can come from that . +How much money do we have ? + Then she said , You have white people in there . +This is not our life . +But not that day . +I did nt do any of that . +People do their best to get by . +Do they have a right to be on ? + We do nt do that around here , he said . +They can not have too much . +What will you do without me ? + I never work at home , she said . + The police were called . +Just not this season . +They could nt even think of it . + For how long I do nt know , he said . +They would have to come and get me . +You could nt go through . +Just like high school . + This is the place to be . + This is a good case , he said . + I want to be out there every day . + One day this is going to be over . +Come on , take another one . +That 's what he does well . +I just do nt think I know how . +They may have to be . + If they want to do it , they can . + After the game . +We have to show up . + It was more , What do you want out of your life ? +There 's no other way around . + Not all , though . +I do nt know what to say or do . + I said , Well , come right on in . +New York is among them . +That 's good , too . + I had been one , and . +We are still with him . + There are people who do nt see it that way , he says . +Just put them out there and play . +You want him to do that . + But it 's about the people . + No , he has nt . + That will get to me . + Now it 's one game . +If we think this week and next week , the season is over , that 's not the case . +Who will be the last ? + I had money , he said . + Take it back home . +He made a very good case for it . + What 's going on there ? +I do nt have time to think . + Well , he said , as long as it 's good , it 's good . +You play them , and only them , every other night . +But then when is it not ? + No , do you ? +What can they say to me now ? + Not just so much New York , but how much can our country take ? +I would say they have a year or two . +How we use them is up to us . + Not at all , he said . +I just have nt had the time . +The music is up there . + That 's just part of the game , he said . +It 's a long way off . +So we have been out for a while . + I do nt know what to do about it , he said . +That way , you have all your money in one place . +BUT not to us . +There were nt any to be found . +We are good people here . +I see that even today . +You can have a good time with them . +If they had nt , the season just might be over . + Now I know where we are . +We did nt have one then in this country . +There 's much more to it . + When is the next time this is going to come up ? + Want to play ? +In part it is . +She did not know . +I want to play in New York . + Do you have to get it right now ? +This is their team . +We know who he is . +And I have to say that it is . + This is where he is . + A man could not . +I could nt go to my right . + That 's my house , he said . +It might be a while , he said . +No it is not . +But it 's just one more week . + We know they are a good team . +BIG government is back . + So are we . + What 's left ? + It could go no place but up . + It 's all a part of the game . +Or that 's the way it used to be . +It was not good . + I have a good team in place , he said . +We should have been . +It 's going to be a big program . +We had to do too much . + I would like to go back , she said . +Take it from me . +We are not going against a country , but a group . + We can get to work . +I do nt want us to go to war . + You know we should get over this and get on with it . + And how will you do this ? + I know the business . + What did you see then ? +Only one of the three did . + I did nt think we would be here this year , he said . +It 's just part of life . + We can not make them get up . +We had three of them . + Are we going to be here five years from now ? +I think about my case . +That 's what he does every night . +It does nt have to . +When will we do this ? +That 's it -- The End . +They may want to take us over . +It may not be for you . + It 's part of life here these days , he said . +I was very good years ago . +It was all too much . +All over the country it was the same . + This says we all have work to do , she said . +He was a good man . +But that was long , long ago . + How many is that ? +What in the world is this place ? + Well , it did nt work . +But that is what we get . + Now it 's only two or three times a week , she said . +It 's the only way to see the world . +In the end , we have who we want . + What did it say ? +That 's what it was . + The very same man . + Too much work , he said . +What does one do on the street ? +It 's no way to make good law . +You part of the family , you know ? +And , there is more to come . + That 's what we are . +I made a play . +Up with the music . + And if we do , it will take years . + And I did -- my own . + Now they know me . +Which is to say any one of them . +And for the first time . +I do nt get it . + We do nt have more time . + Did she go home ? + There is little or no way to go back , he said . + People have never been down and out like they are today . + That is not who I want to be . +You think , I can do it . +It was nt there before . +Few do even today . +I want to do what I want with it . + I was nt going to back down . +And they want that . + That 's the way the business is . + What 's in it ? +They are all here . +She said she did not know when . + It 's the only one that does . + It 's part of life . +I think we can get in . +He said that it was not . +A part of me never left . +That was not going to do it . +Well , I do nt know about that . + We think about him every day . + You have to have both today . +This was nt about our family . + I still long for those days , she says . +It 's been four years since the last one . + She could not see an end to the war . +See what you like . +No we were not . +How were our people ? +The music , too . +She did not know how right she was . +But you know what ? + Who could do this ? +He was very good about it . + It 's been good for me , he said . +I would nt come without it . +That 's the way it is these days . +Three years ago no one here had one . +Yesterday we did nt . +We are the first to use it . + That was it , she said . +What if New York had one ? +But I do nt think that will be the end of it . + What was the best part ? +They are a little too good . +But that 's the way we had to be against them . + This is war . +That was my game . + We did every day . +But that may be all . +It can last a long time . + You go to school here ? +That 's where we make our money . + It 's been a year . +The night is long . + They are just here for the money . + It has to do the best it can with what it has . +That 's my day . +But this will be his second time there . + It was nt just that , he said . + I never even left my house . +And for some people , that may work . +To take a man 's house is another . + We never left , he said . +Well , now 's the time . +That 's not how you play . + But it 's not what we do . + But I want to come back . + We are used to it now . +What 's that ? ) . +It was called off . +I did nt do it for the money . + That is one of them . + Or you want me to go get him ? +And they do not like what they see . + Because I just found it here , too . + It 's not political , he said . +We have to do it over . +You want to play . +Some say they make the best . + We want our people back . +But I think it will . + I think there 's a place for me here , she said . +Game all but over . +The time is right . +Not after three years . +We would nt be here today . + But I did not say that . +It 's a little off . + But both of us are what we are . + I do nt like war . +This is more like it , we said . +He was too good . +So long as it does nt take years . +I do nt think because of me . +We were back in the game . + I like that for them . + A right and a left , he said . +Well , she should . + Can we have that there ? +It was still there . +Her back was to me . + Not all the time , she said . +It could come back at any time . + Some of them have , most have not . +And who had nt . +I have nt said much . +He was back the next year , and every year since . + They have to do their work , he said . +That 's when it 's going well . +And where he 's going ? + I think about this all the time , she said . + It was more like . + If I do nt do them , who will ? +Then another , and another . + I did nt get there the last time . +They are at home . +But I have nt found that to be the case . + I had to get up and get out of there . + I was there , she said . +That 's who you are . + You get to know them . +But that was about all he had to say . + This is the last , she said . +Now we are out . +That 's our part . + No one would say that now . +You just go out and work at it . +After all , what did they do ? +I said I want him to come . +And they would be right . +Even in my office . +Most of it , that is . + She said , No , no , no . +What if I do just get one ? +And I said , no , no , not that Mr. President . + But he would nt come out of the game . +And so one was . +I want to do more than just be here . + But never in a million years did I think it would be like it is now . + They are going to go down . +On the way home . +You are here to have a good time . + This is just to get in . + Was , she said . +Well , so be it . +We had them all today . +But we have another way . +You know him well . +On time is in . +The company said no . + We know a war is a war . +I want that never to end . +The city , that 's who . +I know what some of them are . + That 's just it , he says . +And he is not the only one , he says . +And you do it . + It was a long time ago . +So , that 's where we are . +I want to play two more years . + It might as well be our own . +What 's the work ? + It is not like before . + This time , she said . +But there 's much more to it than that . +So much is going against them . +What did the world do ? +That 's where I come from . + That was nt the case a few years ago . +She said she had to come here . + That 's the way we both are . +I think New York will be good for him . + It 's not like the white people , he said . +Will there even have been one ? +I do nt know what this is about . +That did not last . +First off , I had to go to work . + My family and I want him home . +Or I think they can . +You get used to that . +And so it may be with people . +He just has more of it . +But she was not . +What can I do here ? +So , did he do it for the money ? +He just did nt think it through . + But life is not over , he said . +It 's just the way it 's going to be . + Too many people . +And what does a family do ? +But not in this case . +So I do nt think that 's going to work . + In a way , both , he said . +We have to get used to it . +It has more to do with money . + Life still has a long way to go for you , he said . +It was over right then . + They were in an office . +That should have been the end of it . + I might as well use it . + They think about it , he said . + They are not the same . + I did not do any of that , he said . +But then , what do they do about it ? + I think we can and I think we will , he said . +As if there were any . +He did this for us last year , too . +He does nt know any of them . +How 's it going ? + Every time I put it on , I say that . + Last night , he found out . + What do I have ? +This one would be a first . + You are two of the best . + You do not get used to it . + How Do I Do This ? +That 's for the states to do . +She still could not place him . +His time 's up . + That 's not how I play . +They do nt want us here . +It was just two people . +Time is money for these people . +I used to be one of those people . + We had to take her home . +There will be more like those . + That is to the good . +WHAT IS TO come ? +I said , It is still today . +It was the police . +Then too he was white . +You know who this is ? +He is no one . + No man , he says . + No , you do nt , I say . +It 's all about today . + What 's new ? + We do nt want that business . +That is the way of the world . + That was a big part of my life . + Who 's going to play where ? +We go about our work . +They are just good . + What does he want me to do ? +How did he come at you ? +Work it out for me . +We do nt want any more . +But she was nt the only one . +You are going home . + This is a good program , she said . +So did the man . +But I do nt know if we can . + Well , that 's life in a big city , he said . + But if they are going to do one , they should do both . + I like the President . + Who 's going to come see you ? +They are more up this week . +It was in her . +And another while you are at it . + How could we say no ? + This is what I do , he said . +But , she said : I do nt see any way around that . + And this will still be good work . + It is nt the same at all , he said . +Any of them you ? +That 's the American way . +I did this last year . + What can you do about that , John ? + They want money all the time . +This is good for people and good for the country . +That 's what it was all about . +I did that , and it did . +How would I do this ? +It 's that time of year in New York . +We are like that , some of us . +They are just here . +We are going all out . + It 's going to take a little time . + I do nt like any of it , she said . +But that was last week . +Think about this for a second . +There was nt much more left . + We are not going to go that way . +No you do nt . + Then I say think about that . + He has every right to do that . + He might use two . +And when you are not , you are not . +You do nt get to play at all ? + She said : I know what it 's like to come off it . + It might be a week . + It 's a long way to the end . +One of them was right for me . + Never say never , he said . + But that will never come . +He 's like that . +You know they are good , but how good ? + You see it all the time , but not in New York City . + Where can she be ? +Very , you said . + That is all there is to it . +This is just one more . + I have another life . + We do nt want any more . +This is my state . +And some part of me did know this . + There 's just no government . +It 's a way out . +If you do nt want to come , do nt come . +There is no other way but his . +Three at the most . +What do people do ? +And now it 's not there . +And now , some that are not so good . +The Times : Such as ? + You have to go out or go around . +And that was all . + There is a government here now . +We still do nt know where we are going to play next year . +But what do we do about it ? +It 's not Can he do it ? +We are with the people . + But I would nt want to do it every day . +It 's about being of the place . +I never want her to have to work in a place like this . + And then what did you do ? +We do nt have to be the best team all year long . +Will he go home ? + There 's too much that they have to do with their other children and with work , he said . +It may be what he does best . +But one day they may . +This was not his world . +He still has the best ; he just has less of it . +That is , if they are there at the right time . +Until today , that is . + Do you have to be good at it ? + It 's about time we did well . + They just did nt go down . + He is not like that . +It is the only one left . +These people work at night . +I play for this week . +The music , by A . +What is going in there ? +But there were many of those . +Well , it 's good to have some people like that . + They show up every night . +Go back to your life . +It 's no place like home . + People who do nt know each other are all like a big family now . +It 's his business . +We just have to get there . + How we go about our business does nt work . +It 's not a people 's country . + And last night you did that ? +What should I do about that ? + We had to go out there and do it . +There is nt any here . +This is all I have right now . +But how can you say that ? +Do you know what that 's called ? +I do nt even want to think about it . + It was a big game for us , but the last four were big also . +I never said it before . +I do nt want to be a big man . + I do nt like this , he said . + If they do nt , we are nt . +Who might be out there ? +I know it , he says . +We are out in the country . +Are they going to know where they are ? +But it was nt for her . +And he never did any work . +Yesterday people said , She was one of us . +How much did they know ? +And they are all there . + Where were they then ? + We do nt think about them . + You did what you had to do . +The United States does nt . + I want to make it . +I just say what I see . +You know the place . + That will be new for us . + The people want it . +No , but we are . +We did nt have the time . +It is the first time in my life . +We are at home . + But every year is a new year . + We are in a war . + If they were , they would have called me . +All of them said no . +So is he right ? + And what if I do nt want to ? +But I think it 's that I want to see an end . +We are all over . +Many of the children are from New York City , and some are from other states . + I do nt want to get into that , he said . +They do nt know who they are . + Then he left . +He is not even in the United States . +The next season , he was back . +He could not go on . +He 's one of us now . + It 's every day . +Was that too much ? + At times in his life , a man has to do what a man has to do , he said . +What should they do now ? +Is that my place ? +But it did not go well . +No , it is not that at all . + I just could nt take it all in , she said . +The United States is just not there . +He 's going to do what he 's going to do . +He had it just right . + The business just has nt been that good the last four years . +HOW could this be ? +They are back to what they do best . +I want you to make it . + Is this too big ? + No one has . + It was money , he said . + Who says so ? + If You Go . +Now there has been some . + And they were good . + So then , what did you say after she said that to you ? +Is it about children ? +I know how these people think . + They did nt have to be . + Just like family is all it is . + But that will not last long . +But the program has a long way to go . + They do nt know how we make our money . +I just do it . +This was about business and money . +We can get you money . + This is what you do , not what I do . + Come on , he says . + She 's the best . +It was a very long time ago . + How many more ? + But it also can work the other way . +In that case he will take more time . + She never does that . + Is it over ? +How long will that last ? +But it 's -- I do nt think so . +They have a right not to . +What is the program now ? + I just do nt know what to do about it . +I do nt think so , though . +He has work to do . +So , last year , the people left . + I was nt around a man . +What About Next Year ? +Well , that 's my business . + Where you from ? +It did not do so here . +It made me think . + He said we are going to work on it . +Which is the best ? +It will take years . +That 's not my business . +But if we can get to . +It is a right . +After all , this is nt a place . + I do nt think I want more , she said . +THERE is a war going on here . + Days will come and days will go . + But we still have a right to be on the street . +When he does nt , he is nt . +For us , this was not good . +She 's that good . + Just like the old days . +There is more to him than that , though . + You see ? , he said . + You do nt get time to get old , he said . +They have to want it . +But it 's been a long time . + He said he was nt going to take it . + But the best place in the world is right here . +Is he in or is he out ? + How much good that will do we do nt know . + There was one family of so many children , she said . + It 's not the police , he said . +Because there may not be another year . + They said , All right , you have to come with us . +Life is how you make it . + It 's just not for me , he says . +This is not a police state . +That will take years . +And where does it all go at night ? +I said you would nt . +That 's NOT the way to make money . +They could still be . + I do nt go in , she said . + I was going to get there in time . + It 's one at a time . +They come by and want to be part of it , but they just do nt get it . +WE know it will end . +It may never end . +He did nt go to business school . +I do nt know what it does for them . +And not just in New York City . + The music is from the street in general . + Get the right people , he said . + That 's what it 's all about up there . +Did the White House Know ? +Can you be on next week ? +They are my people . +How much money did he want ? + What right does that man have ? + I would , too , if I were him . + But now is four years . +I was a big man then . +How will you get through ? +And then there are those who were in it . +All of us in the company are . +And we make music . + I know people want to see me . + We do nt like them , he said . +And that 's not good because that 's not what we are about . +Every game should be a good game . + They did nt want to play us . + It might be good for him to go to a game . +Each to his own , you could say . + I say , What is it ? +They were off -- way off . + All the way back there ? +Can we show them ? +How to do so ? +But where to go from here ? + And I never found out who they were . +But that 's not me , because I do nt have time . + But many other people have . + That 's his game . + Where does it end ? +But he could nt play this one . +I do nt have any other place to go . +But this will be my last . +They get their time in . +For the most part , it has . + I do nt like you . +What about all that money ? + We were more united over there , she said . +One after the other . +This would be the last we would see them this season . +It was World War I . + He 's a new man . + That 's going to be good for him , and it 's going to be good for us . +No music this time . + I do not know . +What 's going on here , do you think ? + Do I have any say in that ? +Who does nt work ? +It does not do so . + I say that 's not what it 's about . +Do you want to ? + No , there is nt . + He 's a company man all the way . + I think it 's a first , he said . + Now you see them all over the place . +He did nt have to . + This is what they do . + What was I going to do about it ? + You know how to work this ? +After the game , what 's next ? + It 's a game ? +It 's never just about me . + But they know they will be back . +Not in New York . + I have been called all of these . + What will I do with my money now ? + But they did nt do it the way he did . + They might be right . + I do it every year . +It is not his house . +Their are several this year . +What is the government after ? + Do you want to see what it is called ? +When : Any time . +We just have to get it on . +But , it 's over with . +That is nt the case here . + The world will go on with or without me . +It 's another day , that 's it . + Every time we are down , we get up . +We just did nt play the same game . + I just go here and home . +Do it , if not for you , for us . + That might be it , too , he said . +I do nt want people to , like , be around me . +You do the best you can . +You have to take it to them . +Not that I would nt come back next year . + That was the last one ? +It should be the same . +But there 's a big but . + But it 's not what they think it was . + But now it is nt the only part . +There was still time . +For the most part , they like each other . +That 's the most it can do . + I can do more than I think , she said . +No , they said , what would we do with it ? +He said to me , If you do nt get a First , I do nt know who would . + It should have been my own work . + But women want more . +There would be no school . +She still did nt get it . + I do the work , she said . + Do you want to know what we are out of ? +But you do nt have children . + Where 's the money going to come from ? +But we do nt want him . + This is home . + I like me . + What a night for them . + It 's a part of us . +He had never been to New York . +It did last year . +But not her work . + And they are not just from New York but from all over the country . +Not the day after . + I like them the best , she said . + It could work . + I did nt think they could do it . + I had one this week . + That 's the only one you know , is nt it ? +But we just did nt do it . +So who 's it good for ? + He should have said that from Day One . +We are not at the end of our way . +That may be some of it . +How 's he do it ? + The world was not so good to us , she said . +I say , I know . +If the game was today , I would nt play . +I do my own work . + Not that I know of , he said . + People will say , You can do it ; you did do it . +That is what they are for . +She is , too . + It was so new . +I was right next to him . +What does she do all the time ? + We did nt have to be the best team for the season . + But I think I have to go back . + Our time was nt so good . +A very long night it is , too . +That , he said , is just too many . + And what is that called ? + But not all of it , I say . + Many other states use these . +He did it his way , that 's what it was . +Which team will it be this week ? + It is like war . + There are too many for work , he said . +People will only take so much of that . + Now , over the years , she said , I know what he did . + But they do nt see me as that . + So , what to do about it ? +When and how do we do it ? +They were a little off . + We did nt want it . +What do you like about it ? + He is all right and he is going home . + That 's what they want , he said . + I said , There who is ? + We are family , he said . +But during the last few years , he has come into his own . +He has a public . +But you can make money in this business . +How many of those are there ? +We are in the same business . +You know , can I say No ? + What did you say to them ? + But we did nt know it was going to be like this . +We can play that . +But it was nt to be . + They go by , and that 's it . + He is out of office . +She would say , One more week , one more week , one more week . + There is no time for me to do much more about any of this . +It 's not your show . +He did nt get any . + I had to do it , she said . +What is with that ? +I did nt have five years . + I would nt have made it without her , he says . +And what did that do ? +We were going to make them show us some today . + I do that every night . +Now is the right time to do it . +It is every four years , not every two . +It might have been . +But did she see him ? +But what about now ? + It was right where he said it would be . + We are with the President . +So where did it come from ? + The company is two years old . + And that still is with us . +You are only as good as your last play . +And we make out . +He did not do it . +He left after less than a year . +In a way , they all are . + Can I take that for you ? +And he said : Come off it . + And they know it . +You are too old . +I have my own take on that . +I did nt go through this year not to . +Even like in high school , a game was a game . +This is a man 's world . + They did nt think we could do it . + He just said , When do we go ? +I did nt have such a good game . +Is that the case here ? + It 's like that here . + So I have to do my part . +Or so she says . +Should nt the market just do its work ? +We are the first to go , are nt we . + But I do nt know of any way around them . +Would I be up to it ? +Then I can play on . +It does not have to be this way . +I do nt want to do that , but I will if I have to . +We used to know each other . +They are nt here . + And I said : No , you would nt . +Is that all you think about ? +Who does he want for President ? +It did , a little . + How many do you own ? +We did what we could with what we had to work with . + He was nt in government . +It 's : What was he like ? + But I did nt do that . + I know he does . + What do you and I know about it ? +There 's never an end to it . +If you want to see it , you just go there and see it . + Some do , some do nt . + But he 's so good , I could nt . +There may be both . +As in , will he be a man ? + Because you know what he had up in his office ? + Do you want more ? + It was nt to be . +It is like life . +Now I would not . +He should nt be here . + It 's a show . + It was nt a good night for me . + But they said : Come on . +This was not one of those times . +It 's like what New York used to be about . + This time , she said , I called him right back . + I like what he is now . + What Would You Do ? +And then over here . +The other three are home . +Just , like , Get out of my life . + We want to do more . +They did do some work . + Some work ; some do nt . + It 's this too . +But so it is . + Last week was the first , and the last , he said . + I want this one , I want this one , he said . + Now he is an old man because of this . +They know , he said . +So what is going on here ? +But what to make of him now ? + In a way I think it is good , she said . +You know who he is ? +I will never know him well . +That 's because it was . +I know who I work for . +I like it too . + So , that was it . +We want him to work with us . +I may want to go to school one day , but not right now . + But they all do . + I said , I do nt know . + So I had to get out , too . + I want to go back home , she said . +They do nt know where she is . +This is her year . +All will be right with that world . + Women are not like when I was in school . + We are a business . +They have some company . + Not that he was out of it . + That I would do in a second , he said . +Because what did they do ? +With me and her . + There should nt be a team here . +But you have to know where to go . + But to do what ? +It 's my house . + It 's day by day , he said . +A man like you ? +If it 's two days , then take two days . +But does he want to ? +I can not do all of this . + They know what we had to do . +I do nt know what you just did . + But then , you do nt . + It 's a man 's place . + Well , to what end ? + Many of us also want to go to school . + No one does that . +This team is used to it . +But that was many years ago . +That would be the year after . +But his work was his life . +All this is new and good . +All we have is each other . + I think it was one of my best years . +I think they did nt know what to do . +That was four days a week . +I know what I want to say . +Where would it end ? + That 's some of us over there , he said . + Not until next week , he said . + You know what this is like ? + This is my family , and you know what ? +No , no , it 's not what you think . + He said : Now you are not going to use that , are you ? + We think now they have a team . +If she were a man , you would nt think much about it , he said . +You just do nt like them . + It 's high time for us . +A : I know . +They could , I think . +And I did the best I could . +And so was I . +We will get where we have to get . +That is not to say that all is well . + He said , Well , I do nt see it . +And now they are . + We go up very high , but in the end we come down . +Because that 's not good . + He was one of the three . + What they do is what they do . + They do all the work for you . + Game One is Game One . + There is no work , no money . + People still want to be in the city , and have business in the city , he said . + But where is he ? + This is my team . + We are not going to do that . + We are business people first , after all . + They were people just like us , she said . +Business does nt work that way . +There are companies that know how to and want to do it . + We never know where we are , she said . +Do you know where your money is ? +Some are very good . +Too much money around . + We found one for them . + What more can we say ? +It 's going to take him a while to get back into it . +My game was to get through it . + People who come to your home are what ? +It 's at the right time . + We will take time to do it right . + I was out of work one day for that , he said . +But that will take more time and money . + Are we going to do this ? +I still have not . +He was at the office . +They do nt know any other work . + So that was that . +After that , he said . +Not all the children did . +Not so , said the City of New York . +It is what you say to your own . +Back , Back , Back . +They had a good team . + It was not so good for them , but they are the best . +I think it 's a good team . +Where 's It All Come From ? +They all had made it . +Well , I did , and we do . +And the year before . +And you can , too . +So it 's not just about me , it 's about all the people who have been there for me . + I made money on each of them , he said . +There is not much new to say . +I know that there are several . +But is there one ? +How is this life ? +So some work and some do nt . +But never like this . +You do nt know until you get here . +What do we do ? +I could go on and on . +We would do business with them . + She 's not here . + There was no music . +Or would that be . +THIS is New York . +It 's not my way . +It might as well be me . +This was one of those years . +No one 's going to make you . +But it 's not that I see these people every day . +As long as they want to . +We just go out and play . +It was up to them . +It did nt , and he would nt . +I just have to be in the right place at the right time . +I do not know if you know me , but I know you . + That is not their business . + And so he does . +The world 's second home ? +I think that 's . +And they are the same as his . + I said I did not have one . + There 's no one out there , he said . +They get in the way . +The women say no . +It was nt just the big people . + They are right on time . +I was very good for him . +You do know that , do nt you ? +It 's from what 's around me . + But not as much in New York . +What would be the best way to use that money ? +You did all this to us for another country ? +There are too many of them . +That 's not what he said . +I think it 's going to be her . +But you did not . + I could not see how I could get out of my street . + It would make it more like high school . +I think there were two . +He did nt know any other way . + And I see it from all over the place . +We did nt get the play . +This has been going on for so many years . + For Which Children ? + We are going to get the best out of him . +And I go from there . + You can have the best law in the world . +I do nt want no money . + And we did nt have that last year . +It did nt work out for him . +So there is much more to see . + It 's the Government at that time . + He was on me . +One would think so . +But now it is over . +They can do it all . +There is no way to get them back . +What is it and what did he do ? + It 's that time of year . + I say , no way . +Here , you see people all the time . +He is still right . +So we do it all over next year . +I was home for five days . +Where , I do nt know . +Last year , we did nt do that . +All of us know that . + It 's not only here . +But you never know from year to year . +There was no way out of it . +I work for what I want . +It was the first day of school . +We are over that . +It also had to do with music . + But then they come back . +So I think it was a good day . +Now I play music when I want to , not when I have to . +They have been up , they have been down . + What is it you have to do ? + That 's what life is about . +No , you did . +I did nt make it the second time . +I did not know . +So that was out . +There was little we could do about that . +It is also the only way . +It was , a little . +It might be said , but it never is . + We are being used , she said . +How do I get back ? + They are not around , he said . +It would like to come home . + They do so much more now . + Just go back to the way it was . + There 's so much time left in the season . +And many of them are women . + They were nt there , he said . + Me and him go back a long , long time . +But you know it when you see it . +They did nt get it , he said . + Now you see them going out . + I did nt think much of it at the time , he said . +She did nt have any . + I do nt want him up and down . +We were just there . +He put his case . +Here are the very best . + It 's a little high for every day . +The man is just too good . + And he said , It 's all here . +And just about any season is a good season . + There 's too much going on . +You have to get that back . + It 's what we had after school . + And there will be money left over . +That 's what people will come back for , if it 's good . +I know what it take . +If only he could see it now . + They have a show to go on , he said . +So , they go back home . +But that 's just us . +By then , two members had left . +Many said they did not know him and did not work with him . +She was going to have her own money . +My children will never see it . +It was high school . +I , too , have more work to do . +Can you , in me ? +Life 's been good since then . + It 's more united than it has been for some time . +I think we might . +They just did nt . +He can play on my team any time . +I would nt want it any other way . + How would I come back here ? +And it should nt be . +I do nt know where you go from here . + Most people only think about what they will get out of it , he said . + We all have to be in the game because without each other , we do nt have a market . +It 's not that way at all . +And then another week . +I had never left New York City even to go to school . +That 's just as well . +She did not want to . +We may be next . + I think it 's a very political play . +Because I think that 's how people should be . +He said to me Show up and play like you used to play . + But so what ? +This is the way we should play . + We made a way for them , she said . +For me , it 's a way of life . +I had my children . +New York is still out there . + You have to do it so many times . +You want to know what it would have been like . +And this time , they were all business . +No one 's going to see them . +But When Did You Last See Your . +This is not their war . +We know what he can do . +And then when you get into office , you do what you think is right . + They are against the law , he said . + The money , he said . + It 's a war . +But that would just put people to work . +Since then , she has come a long way . + And I would never do that . +He had it then . + We are going to do that , he said . +That is all over now . + And it was over , she said . +I did nt see her for a year after that . +She has since left the state . +Is there money to be made in any of this ? +What , then , is left to do ? +That 's all you can say . +He 's on his own . +There was no money here . +He : Me too . +The public may not want to know , but it has a right to know . +Only the best will do . +It was nt , was it ? +For now , that is about all he can do . +You have to take the man out . +That 's what it was about . + You know what they say , says the first . +Next year is our year . +It does nt come from around the world . + You have to show that you want it . +You just have to be who you are . +They know he did nt do this . + He said , You are right . + It 's not me against him , he said . +We do nt have it . + What are they going to do with the people ? +So it 's all up to you . + I work every day . +But not that many . +They are us ; we are them . +What do you get for that money ? +You just have to go out and play your game . + They were down , all right . +We want it to work . +But how would he do it ? + This is all we know . + I should say so . + He was with me for two years . +In a week , she was back in business . +You go to a game , and then you go home . +Both people are here all the time . +But that was not to last . +And I know that 's what I want . +And they have nt been there for years . +To do that is going to take years . +He 's the same way now . + You know what it was ? +And some were just that . + This is the country . +As old as until now . + What 's that about ? +We do nt see that here . +I think they do not . +This was about four or five years ago . +This was going on for years . +It is still a game . +But with music you can do that . + And what 's that ? +And they are not just any women . +But he is used to it . + They do nt know where to go , he said . + You think about this day . +He should have time for them . + It 's New York . +So going from three to one is not good . +We just want to get there . + That 's about it , he said before the show . +We do nt know if they did it or did nt do it . + I take it any way they come . + That is what we do . + But there 's no money , he said . + I just do nt like the way they are going about it . +Very New York in a way . +This is a street for business . + And I still do . +He did not say it was . +What is that like ? +So , on this one , you are on your own . + We are not going to get into that , he said . + That I can still play . +No one will want this . +Would I be good for him ? +Now it may be four . +Do as I say , not as I do ? +We all did it and could not do it without each other . + We said we were going to make each work . + We get after it , he said . +I do nt want your money . +We are used to that . +You see his game . +I did nt have that at all . + Is that what you think of us ? + It is time for them . + Will you take one of these ? + She said , Do nt do this . + We were way not the first , she said . +But that was not the same as being one of them . +It 's not one game . +And what did the President say ? +But there was much they did like . +No I did not . +If some go , we all have to go . +But I said , You know what ? + Same old , same old , he said . +The other two were not . +They did not want to know , but they did . +That 's who you like ? +He had been a big man . +But not , in the end , all that much . +This is not the end . +The money is good . +And it 's not just me . + It would nt be here , he said . +And she will do it . +And city officials know it . +But we did nt make it . + It can come at any time , he says . + People say : Where you from ? + It 's been a long time for them . + You just show up and play . + You would nt be you without it , she says . +I was too old . + I like this time of year , she said . + Well , now it is . +They were nt going in . + That 's what our former President said . + That 's where I come from . +Then there was the music . + And this is it . + You do nt put them down . +We could nt go there . +But what about us ? +When it 's right , it 's right . +That is who we are . +And I would say , I work in city government . +I found her a school . +But who would get her business ? +You could never do that now . + But they did nt say what for . + So New York is a big market , he said . + It 's a man 's house , is nt it ? +But this was not the time for that . +We all have to think about that . + They said : You do nt want this life . +What is the best time of year ? +For those who do nt know him , or just think they do , who is he ? +That just about says it . +Some say two years , some say three . +It does , and the game is made . +How long had this been going on ? +And it never will . + You make a new home where you go . +All the money would come from the city . + We do nt get that as women . + Not those , he said . +That 's what a good team is all about . +It was four , not three . +So right back at you . + That other part just is nt there . +It still could be for him , but not for his team . + Will I have to take a day out of my life ? + We were never the best team , he said . + It 's a big day for him and his family , he said . + That 's your best ? + Which we did . + But I was there . +Some people like it . + You can not do this to your children . + People do nt want to know that , he said . +For one night only . +That 's right , she says . + And he 's all for that . +Now I want to be on my own . + Can I see it ? +You will , too . + They want to know if that 's all right . +Where is he now ? +Do you have any children ? +Last in this , last in that . +When I left , after not even a year , I was . +They will go down . +We are on our own . + Well and good . + And she did , and she has . + At the end of the day , what are you going to do ? + That 's how life is . +I said I could nt say , that I did nt know . +I made a few . +Who 's to say ? +Go to a show . + Are these all you have ? + This will take us into next week . +The place is for children . +On this day , he was about to go home . +I like it , too . +Now , she is still . +There was a time I would nt have come here because I did nt like what was going on . +I like it all . + I think it is there . + I did nt think it was going to go my way . +I do nt go back . + What would you do ? +And now it 's their children . +And it should do this this year . + He does just what he has to do . +IT WAS NOT TO BE . +And I think it 's where the public was at . + Now it 's my team , he said , and I just get to be me . +Just the two of you ? + It was good to get some play in . + But She did not go on . +Where is the best place to put them and how ? +This they will not like , I think . +I think that 's what did it for me . +If you are not , you do nt have to make a show . +This is a good school . +Is he all the way back ? +You have to work with who they are . + It would have all been his . +Or first one , then the other ? +It made me who I was . + I think they set him up , he said . + It 's just that they are white . +It 's what I think . +By day 's end it was all over school . + I do nt have any money , he said . +He did not play in the second game . +But we will by next season . + It 's not for me to do . +Where did she go ? +Where will they go ? +And so here we are . + Is there going to be any more ? +I like the people , he said . + I did get money , he said . + What year was it ? +They can only take so much . + We are going , he says . + Most of them have nt been here that long , he said . +You just get up and go on . +And the next day and night . + How could I know ? +Some would say me too . +But he 's not like that . + It should have been more . +And they had nt . +Which children like school the most ? +This is what I do it for . +It 's time for them now . + It 's just a game , he said . +Or you are out . +I could nt make it work . +They say I know this , but . +Do you have one ? +The game was still not over . +It was the President of the United States . +The team has to do it . +They are people like us . +He 's going to get out . +It 's too much , being a part of this . + It 's not that good , he said . + But most people do nt get it . +We were the best team this year . + It 's what he does . +I will work more here . +This how I see it . +Very few people could do that . + It 's a long way back . +Two years ago we could not . + That 's the game right there . + She will say she does nt . +By now , it 's all over . +It 's what his life is about . +This is my new family . +Now it is to get one . + Most of us did nt . +There just were nt very many of them . +If they do this , do that . +They will be the last . + I know it 's there . +But money , she says , is never about money . +Where will we go after this ? +It all has to go . +That is not what a university is about . +They were nt any good . +They do all the work . + You have to . + You know what I did ? +And he said , Well , we have one . +This is where you come in . + I want to know . + But we do nt get that . +She said she would have to think about it . +But if I could only get there , I know I could do it . +This is a big one . + But it 's over now . + That 's not the life for me . + They are a public company . +And I have it , and I will do it . + Make money , he says . + But you have to go out and do it . + We both know that it 's not me against him . +So that is where we are today . +I do not think they have . +But women can play , too . +I was out of the country . + But it was no use . +We have to come out and play like it . +It is some of his best work . + All Right or Not ? + Just go home . +I want the world to see it . + He should have been here . + It 's money I want . + They just do nt want to know . +But there would be more . +Can we do all this at the same time ? + We have too many people like that , he said . +You take a little from here , put it here . + I have it here in the city . +What would that White House be like ? +Much of this was for show . +It will be used against you . +You think about it every day . +What was he going to take ? +They said you can not , she said of school officials . +So I , I would nt say that . +It did nt say . +At first the team was all white . + Where did they go ? + I think he 's right to be where he is . +He has no time for that . +THERE , she said it . +I still think I was right . +Home is not just a place but also a time . +That 's the market now . + I have no life . +I was going to go too . + People think if they are going to go out , they want to have a good time . +Do they take on their own life ? + They may not like each other here . +Did he see it all ? + Way , way back . + You do nt want her to end up like me , do you ? + A big one and a little one . + In a few days , he said , you will all be in the same place . +Do you not want one more take ? +You were going good . +You just know what she 's like . +There is only so much of it around . +Today , it 's a federal case . + It was that good . +I do nt think we could do that . +I like to be of use in this world . + I did nt know if I could . + We are one of these . +Who 's against that ? + Now , we just do nt know what 's out there . +That 's a good case . +Being on one 's own . + And they like it that way . +But this is nt another season . + I do nt know what I would do without her . + We have to have that . +So is the city . + This is my city , too . +This is what I want to know . +It 's been around . +If he does nt have his own office in the house , he should . +I was nt going to do it . +I think there 's a war against children and against old people . + I think not . +But back to when ? + Do nt have any of those , he said . +And what a good time it was . + It 's not just a street , he said . + No one was out . + But you just never know . + I was part of it all , he said . +Here he 's on his own . + We are used to it , he said today . + This is the place I want to be , the place I should be . + I said , Will you make it for us ? + I just want to know what it 's like out there , he says . +We have some work to do here . +What 's It All About ? +I have no other life . + And not just because people do nt want it but because if it 's all you do you are not going to have a business . + President , he said . +This is what I like to do . + It 's just part of me , he said . +He was the first one to do that . +It 's all just too much . + All of it ? + But I did nt see that . + How do you know that ? + Then he had two . +As a country , it has not been going for all that long . +You do nt have to think . +So does it work ? +He said : What does the state want ? + People want to be right there . +We do nt know him that well . +I do nt know who it is , but I think he does . +But not too well . +The city would do that . +And so was her life . +It 's not Us against Them . +I have to get around . +Now it 's five . +And we just did nt have it . +It is not up to me . +It 's been said . + I do nt know , the man said . +How much is right ? + But what 's that ? + We will each go about our own business and go our own way , he said . +They only made three of these . +Officials in each state . + Can there be even more women around ? +But at the same time , is that what it 's all about ? + No , no , no , no , no , no , no , she said . + It is there . + What is there not to like about him ? +I was all for it . +I want that back . +Is that the best in us ? +And we have made it . +Or , in my case , several times . +There 's no work . +No one was put out of their house . + It 's just not there . +He can , and he did . +You do know who he is , do nt you ? + It would still be home . +Is it the same with you ? + He said it to you ? + But it 's not the same as my old house . + We might never come back . +He 's going to show up . +I have to be that man . + We should nt even be here , he said . + He 's an American . +That company did nt have a very long life . +Not all the time , but most of the time . +Did he do it ? + That 's what being first is all about , he said . + Now we have to do it . + He said , President of what ? +That 's what being a team is all about . +It was time for the director to go to work . + I do nt know , she said . + We are going to do the best we can . + I do what I do , he said . +And I said , Come on now . +And we were on our way . +And I said , Well , what is that ? + And what was I ? +You are the man to do this play . + What are we right now ? +He made my day . + All this is new . +What do I do at home ? +But that was nt the end of it . + This is not about being right . +He 's been one of the best in the game . +Has she come a long way ? +I think it will come to that . + I know that we will never be the same , she said . +May each one of us . +What is the company ? + Now we do not know what we are going to do . +Does it do any good ? +You have to get it going . +Well , it has . +I have to do that . +But , he said . +Well , all right , but not for me . +They know that , as well . +They know how to play . + If there is , I do nt know about it . + I used to think that way , too . +We will have a president . +I do nt know how public it is that he 's here . + Way back then . + Where did these come from ? +This would be his first time . +People are nt going to do that . +But it would nt be the first . +They want to get in and get out . +They may be more right than we might like to know . +It may work out that way . +Where I know you from ? +That 's show business . + There was money . +This is about our family . + I was off that night , he says . +This is what we work for . +And she did all of those . +And our country is not good . + The market said , You know what ? + Where are the police ? + This is life , he said . + It was a good business , he said . +Is it not so ? +Some days you do nt . +In What Time Is It There ? + They all go down . + It 's not me , he said . + She just said , How are you ? +And you can do it . +Then there 's the new way . +You are here to do business -- only four days . +That 's just how she is . +The way I see it , it 's like your children . + We did nt know what to do . +But now they want to go home . + That 's all I can say . +It well may not . +And this is what they do to him ? + What 's up here ? +I get to do both every day . +It was just man . +And where will it end ? + That 's family . +All even , but not for long . +He was called to the office . + I think we are going to be a good team . +And his own money ? + It did nt work , she said . +But it 's part of the game . +The program does nt say . +There 's no one to police it . +That would be another department . +We are still going to make it . + We are on the way out . + I want him to do what 's right for he and his family . +He did nt get it then . + You show them what you can do . +They did not know each other back then . + But it 's more than that for me . + There 's no way we can . +It 's just good government . + If they could have only made it to there , they would have made it , he said . +He did not last long . +I was going to take a week off and then go back to work . +It did not last long , though . +I think that 's what this is all about . + I do nt know when it 's going to come . +He said : That 's too many . + That could have been me , she said . +Will he even be there ? +We were like , Is this our life ? +They did that today . + I have to do what I have to do , he said . +I have to have one . +What more could there be to see , or to say ? +We can not , and we will not . +How did he get even ? +That 's all we know , he said . +And it 's been good . +Play , play , play . + Where is the State of New York ? + We just think that that 's best , she said . +Get down , there . + We had it going . + It would be years old , she said . + I may do it . +You do nt know how much . +And there it is . +His business is our business . +For him , there is no way out . +How did it get that way ? +But what can he do ? +People should work for their money . + Here , it so much , all the time . +It has been five years . +Music is his life . + The time is right , he said . + I do nt know what to say . +He said , No , no , we do nt want it back . +Now , they know about us there . + They said , This is nt my case . +It may well work . + I was the one who left . +For most people that would have been the end of it . +I think there 's so much to do . + And he did -- the next day . + And that 's about it . +And that is what I did . + It was nt a case of Today we are going to do it . +No way , we say . +It 's not like that here . +But I do nt go . + It is not our home . + Not every day , he said . + We just had a few . +I want to be president . +He 's from there . +You just have it . + They know what he did . + We do nt even think about that , she said . + But now , they are not . +So there 's more we can do . +It still did nt work . + Well , he did not end it . + Now I think the time is right . +It 's our time now . +But the next one was . +But she did nt play any . + What good is that going to do ? + The way I see it , we are all family here . +He 's made it now in the big time . + I just had to have her . +Then there 's the state . + So , what do you want to know ? +Which I had every night . +But we want this company . +That 's what I like to do . + If I could nt , I would nt do this . + We know what we have . + Because I do nt know how he is going to do it . + They go up and down , he said . + People come up to us on the street all the time . +It was not right . + When our new I . + And I said to them : I know that . +Or it might take another team . +That is their world . + What did I see ? +That may be the only way to get through this . + I say what I think . +I would like to think I would . + I never been to court . +It may not be good , but that 's the way we are . + Most of us have so much . +This is what we want ? + You do nt know what might come out . +Only children would put up with that . + It was nt then . + He was not like this . + You think you are right up there , he said . +I do nt think you were there . + I think this team could . +So where did she go ? +I could nt work out what it was . + That was last week . + Did we go out ? + I work when I want to , he said . +Or is that where the music business is now ? +And there will be people on the left . +It 's just when we can do it . + I get them out . + Could I play now ? +It was like , When does it end ? + This is the best country in the world , he said . + He called it like it was . +But what was our way ? + I want to have the right people at the right time , he said . +Then I do nt know what a state is . + I have no life , he said . +Now there 's just one . +How old were they ? +And by the way ? +Well , here it is and here we are . + When are we going to see them ? + That 's me on the right , he said . +No place like this in the world . + You going to come for the show ? +But there is nt much they can do about it . + I said : We are back . +But you are not going to get any more . +We have to have our people at work . +Do you want that ? +I can get him for you . +He 's the President , after all . +What about the little people ? +He should be President of the United States . +But the good times did not last . +Today they did not . +It 's my second home . + Even if you are not family , you are family . +That 's what you have to do . +If he does not want to come , he should not come . +I do nt want that to get out . +They are part of your life . +I have nt had to do this in a while . +And what would we do there ? +Well it 's time you did . +We have to be here . +You are not going to see them any other way . +She found them on the street . + He 's the best one out there . + I did so . +Be good to her . + They are old , one says , very , very old . +That 's how they play . + And that may be what life is like , he said . +If only it did nt have that music . +It 's just going to take a little time . +Do you want to be back next season ? + We know what we have in him , he said . +I like being home . +Will they still like me ? + As well they might . + And I think this will do it . + Good , she said . +How big are they ? + This way , we can go for both . + And there is never an end . + It 's good to be here . +But that 's still a big if . +If they could , they would . +What would that be like ? +And so it had . +But now you get it . + And I was right . +He does nt want to . +Is nt she a little old for you ? + This time , we were not . + This one will come . + I have two children . +He did it four times . +That 's just the way they were . + No , I know , I know , I know . +But you have said that it was going on for a year or so before you even found out . +Can you work with me ? + But it 's not like I was going to say , No , take it back . + It would never end . + It 's our home , he said . + Without it we would not last a day . +It is for the people . + People want to know about me ? +Can you see them up there ? + But you never take it well . +It is over now . +He can work only two or three days a week . + We said before the game , it 's a new year . +He has not been . + That was then and this is now . + They should put it in their own state . +What are they going to do to it ? +Will they use it ? + It is all new to me , he said . +Where will you put her ? +Now it was time to do the city . +But business was good . +You say we do not have time . + They could nt see it , he said . +So what are they going to do ? +Now if he can just get through a week , then we might be all right . +They play in their own world . +I do nt think they did at first . +But that is not what most people would want for their children . +She put it all on . +Right now I do nt think so . + They are in the way of where I want to go . +But that would have been Old School . + We had to do it , he said . +We were in the right place at the right time . +But that was in another time . + All the good was good . + That is not the case right now . + The season is not over with . +I just want to know I can do it . +But not for you . +It 's all around us . +Then it was on to New York City . + But we make the best of it . +People will think that 's all that 's going on . +Just for the money . +Because this is about you now , is nt it ? +And I go for it . + Never , never do that . +Who are all these little people ? +Because if we do nt , who will ? + He said , It 's just my business . +That could take time . +I know what to say , what to do . + This is our year , he said . +Because you have one . + Made our day . + But it 's not that I would nt like to . +Before they know it , it will be over . +Now it 's time for us to make them work . + They do nt like to have to come to a school but they do . +Think about those who do nt . +But it 's also a game . + Are you up there ? +Her life will never be the same . +I do nt like it , I do nt want it . + It was good , she said . +Where 's the next one ? + What he does is to take what 's around . + But you do nt do that . + That 's all they have , he said . +Then , I do nt know . +She said : Think about it . +I just think it 's time for a new one . +My family did it . +He 's going to be here . +But we do nt know how long now is . + There is no office to go to . +That may be -- or may not . +And so on and so on . +The first man to do that . + You could see all of her , he said . +It just did nt work . +It has been a long time now . + Now I just go in , she said . + But how long can he last ? + What can you see ? +Well , it 's most of your life . +Or so it was . +After them , what ? +If I was , I would nt be here . +I left it like that . + Where 's it going ? +Put it on my time , like I did before . + I think it 's been too long . +He did not know . +These may be left in place . +And another and another . +It 's a long season . +It 's not on them . +I have to get in the back way . +She did it her way . + You are a good man . +There , he said , it is all about the team . +And that 's all I can say now . +And that is just for the United States . +We want to be in that game . + If they do nt have it , they never come back . +No , it would never go over . +So much for the good old days . + We do not . +They do nt even see you . + What is the market today ? + But not us . +For me , I think it was very good . +But he did nt do that . + It 's the same as any game in that way . +Who would show when ? +It was , There 's No Business Like Show Business . +If so , what on ? +Where are the good people ? + People from the United States just want to be here . + I think you just get after him . +Who do we have ? + I just do nt know where we are going to get this money . +How Can You See ? +Most , not all . + I do nt know about this . +I do nt see how it 's going to work . +Who were the people I was with ? +I know it 's going to work . + I do not know what to do , he said . +But not the only one . + Where were you for all these years ? + And I do nt . + With that he left . + I just was nt going to do that with my money . + I do nt know , they did nt show up . +At the time , it was less so . +And it 's not going to . +That 's our house . +When is the first game ? +So I made money . +That 's four years ago . + That may be what you have to do in that market . + For the last two years it 's been going the other way . +A year ago , she could not work at all . +Three are in New York City . +But there he was last night . + But with this one , that 's all I do . + We just did nt have it today . +You go over it and over it and over it . +I think it 's like that around the country now . + Now they are all over the place . + We were a part of that . + Go to work . +I think they are her children . +Some days are like that . +And I think he can do that . +And how many have come out ? +And if it does nt work out ? + And what is it you want ? +We are still a good team . +No team will say that , but it 's there . +I was out of there . +They all should go . +You know , the one . +Where is the money going to come from ? + They play like a family . +Same as the old season . + We have to do this , he said . +This can take some time . +He just could nt take it . + What did you do there ? +He is one man . + He 's come a long way . + I said , Can I use this ? +What did you know then ? +It has a right to want to know who you are . +Still , the game is not over . +That might be high . +Not even during the war . +Can they do this ? +We know him well . + Well , I know it 's going to be this way . +How can I do this ? +And where was it now ? +He does nt think . +We all just want to go back to work . +Well , at One Time . +That 's four days . + It 's up to you . +But if we have to do so , then we will . +School was out for the day . +How will people know me ? +Last year was it only last year ? +I do nt see that on this team . + If you make it , they will come , he said . +He left the university five years ago to go into business . + I do nt think any of them are . + We are all one big family in here , she said . +How do they do it in these times ? + A case could be made . +If people do nt like it , that 's up to them . +Did you see that ? +Then it was time for the game . +But he was back at work . +So how are the children ? +To see how it 's all going to play out . + Then I have it back in a day . +Well , now you can . + I do nt know any other way to do it . +But not today , he said . +So it was all up to her ? +How high does it have to go ? +We know there 's so much he 's going to take with him . +I was one of the first in my family not to . +I just will not get old . + That 's the way we do it . + And most of them are . + I have to go , he said . + The other man for not much more . +The next time , you will . +Then we get down to business . + I think in the next year or two it 's going to be back down there . +They are my second family . +But I think we can play with them or any other team in the country . + My family is here . + How many people could do that ? + It 's all I have in the house right now , he said . + How could we not like this ? +The city police do it . +We do nt have that much time . +It 's just my way . +I will do what I have to do and see what will be . +He made it to four in all before the night was out . +Well , no , they do nt . + That 's not the way it is . +But how do they get here ? +Now I have to go to court . + It 's over with . +That way they would be in second place , too . +She made it big . +Both have since left their companies . +But some of us like it . +Who would put money up ? +They all want to go back . + And we have to go back to that . +And they did nt have that . +And people will take it for that . + What do we have to do ? +That 's not the case any more . +And only three were women . + But some will get less . +All we can do is do our part . + This is my second one , she said . + Some of this is because it 's new , he said . + There was nt , though . +What do these people do ? +Some day you may . + He used to go out all the time . +And where did he come from ? + Get back in there . +More money is made . +How many is many ? +Do it one more time . +Business is so big now . + It is not his business . +It 's one for the money , two for the show . +I was nt even there . +But he still has time left . +It is not now . +They now have just one . +What can I do now ? +What do these people want ? + If not , do not . +So where was he ? + I had to come in to him . +There are not many . +More money is on the way . +They can play , too . +But the case is going to court just the same . +He might have several in a day . + There might be , he said . +We are not going to get around that . +If you think you can play , she said , you should . + John , the man called out . + Where did we go right ? +More were to come . +Will they be here in two or three years ? +Not at all , he said . + Well , we do nt do that . +He might just be the man for me . +How long ago was this ? + There 's still some of that . +He does not want to think about that . +How many years will they last ? +If it 's high , then you have . + He 's back in school . + He 's not in . +And now there is war . + Over all , that 's the best way , he said . +He never had much time for the old man . +The season is nt made right now . +I do nt know if we can do this . +Will many of us take it ? +Not as much as last year . + Where will the old people go ? + There was so much money to be made in this country . +That 's the best way to show them . + They do nt want us there . + How Many Are Like Him ? +She said she was going home . +And it might take us that long . + This is nt about money , he said . +You want to know what you can do about it now . + I just make it up , he said . +You would nt play a very good game . +There is no time to put in . + That 's what he 's going to say . +And what of us ? +After a year he had to go home . +But off the court , too . +Off to the Office ? +What about the Police Department ? +He just did nt play well . +We want to own that team . +We are all there for you . +When should it have come ? + I think we know where we have to go . + That 's just him . +He 's new over there . +He never did that for me in his life . +I know what this business is all about . +One of us is going to do this . +Then I found him . + We want this program to go on long after all of us have left it , he said . +He made the most of it . +I work with him in the House . + You want to do your part . +But he has company . +I said , What day is it ? +The market may get big . +I said I was . +Here are four of the best . +Where did those people go ? + Can I have one of those , too ? +I do nt want him out here . + And he has nt . +They were here to Do New York . +But he would be back . + What 's next for me I do nt know , he said . + She 's no use here . + We just have to be that way . +There 's times where you are not as well as you think you should be . +Our game is still new . +I did nt do it until I had to . + Now this one . + Those were the good old days , he says . +A part of me is still there . + My family was at home all the time , he said . +But you were nt . +Good for him and them , say I . + They get what is going on . +You do nt think about it when you are in it . +This one 's going to be good . + Are you going home ? +It is time that she did . + I know what New York is like . +But it will come . +There 's a there there . +I want it this time . + They all think they are the only one that has one , she said . +Well , I was . +Here we go , I think . + And I was . +What is this new music like ? + And very , very good , too . +They are in first place . +Well , he did . +There 's no way around that . +A good time was had by all . +I have a business . +It was the first time he had called me at home . + This is not the end , she said . + For a while , I did nt even know who did it . + I did nt think much about it , he said today . +He does nt have many . +Do nt know how he did it . +I know I used to . + Have a good life . + What does any of this have to do with it ? +It 's been two years . + New York could do it , he said . +But they can not say where all the money will come from . +What does she see in him ? + We are not going to do it . + Well , that 's not the case . +All these people had a say . +Can I can do that from the United States ? +If not , she will go her own way . + That 's me right there . +She can get people going . + Is that right ? +We all did it as a team . + You do nt have to go where the money is , he said today . +But in her own home she does . +At the end of the day , what does that say about us ? +From what we know now , I think not . + We still do nt know how it 's going to end . +And that was the end of him . + We could only work one at a time , he said . +She 's going to say , What ? + Through the years you get to know him , she said . + Some people did nt show up for days , he said . +How does it come ? +There is no music . +But just what is it ? +And since they did nt get them , who did ? +I found it five years ago . +It was time for a game . +And then they left . + There will be time for that . + And so do I . + And he does . + They are not here . +Those are people who think only about today . + It 's not what I think , she said . +But what about right now ? +Well , that 's the last of them . + It 's out of the way . + What did you do to this ? +He did that and then some . +It 's the best time to be there . +That 's all you think . +It 's not very big , but it 's one of the best . + No one here can say if they were there they would have left , he said . +Not about which show to go to . + But that is the business we are in . + But that did nt last long . +That is all right , though . + We play one game . +But it did , he says . +But that was last night . +I want to know what it will be . +But show business this is nt . +What About New York ? + I do nt think this is what the American people want . +But our government does nt . +I have to go on . + This is who we are , he said . + They do nt want us here , and we do nt want to be here . +Would you want to see them in court then ? + The time is nt there . +But there is also much not to like . +And then it was nt all that much . +As long as I like it , he said . +This is about team . +It 's show me . + I know , is nt it ? +Some of the times we just do nt do it . +There 's not much you can do . + They did nt have to do what they did . +Do you have the right to do that ? + They said if the women come in , we go out . + You can be that from every place . + He said , Do you want to come back ? +How long should you own it ? +It was good to be home . + And I did . +We want no part of it . +Well , we could do , Who Said There Is No I in Team ? +That is not the way to make good law . +He may be down , but he 's not out . +They just want to be here , with you . +She does nt know what school is ; she has nt been to it . +That 's how life is . +He 's still in there . + They all think they are going to make it . +We made so much with the little that we had . +They do nt want it . +You know what I say to that ? + Where has she been ? +But , in this case , so what ? +And it 's not what life is about . +It 's just like she 's one of the family . + What Can You Do ? +Not that any was going around . + And that 's not the case . + And I said , Well , I go here . +How good is the West ? + But who can they say it to ? +And that was the end of that . +Well it can be . +But if so , how did they get there ? +This will never do . +Can we see them ? + They play so well , she said . +He may be about to get it . +Because I do right now . + Where are we , New York ? +Time to make a play . +It should not have . + After that , I do nt know . + Do it your way . +How can they not ? +It 's all money . +This was a good night 's work . + You do the best you can . + They want to know when the next one is , he said . +It might be more . +How Was His First Year ? +I do nt want to be used . +It is more , too . +If only she would nt . + It 's just going to take some time to get it all back . + But we are not the same team as last year . +This should do her some good . + This is day by day . +You left us five years ago today . + He has to play . +But it was , he said . +We found out we are not . + We will make them . +I do nt think by many . +She did not know who we were . +There 's no life to that . +That 's all good . +He did for me . + It just is nt much . + But I think it was me . +You work with people . +I had a good day . +I just did nt know how to do that with it . +It 's only been two years since then . + But they have . +Well , for this season . +They have to work for me . + Her : Get a life . +You did nt have that in the old days . +This will do more over the next four years . +Or the year after that ? +If you people do nt want that right , then do nt do it . + It 's like it 's not even me out there . +Among them : The World 's Second Home . + He does , too . + I should have made it last year and I did nt , he said . +Few think he can do it . + You know who he is . +No , it does nt , does it ? +It 's not your money . + I do nt have any of those . + But there just are nt any . +That 's not a game . +And that is not all of it . + You do nt think . + You will get there . + I just could nt do it , he said . +We are not like that at all . +I had people on the team get up . + Well , no , it is nt . +And it 's all on the up and up . + He does nt do it for the money , she said . +What made him so American ? +We have to get down there . +We do not have them . +What do you do there ? + There 's so little left . + It was not to last . +He has to do more . +This is that day . + And he made a good play . +He 's going to come after you for money . +They said , We were the first . + Only I have to know . +Come , some music . + You only get one President at a time . + It 's a new business and it 's a big business , he said . +So he does it for them . +He should go a long way . +But I do nt think that was the game . +We do nt know who they are . +What if he left it there ? +That 's all it will take . +And he said , Come back in a week . + You know , she says , I did that . + How long 's all this been going on ? +If they are right , we all make money . + We put them in . +How do you get there ? +There 's not as much money going around as we would like . + It will take some time , though , he said . + Where is he going to get the money ? +What does that say to you ? + What Time Is It There ? +That game will end the second week of the season . +It does nt even show . +And they did nt do that . + I do nt know who that man is , he said . +And do you know what ? +This has been one of them . +He : I have no life . + It 's never come up . + We all did what we could do . +I did nt come back for this game . + I did , he said . +This is about war . +You have to be good . +And there was music . + But he said no . + New York , I would have to say , he said . +What is made of them , and after . +And so they do . +They are too big for me . + I do nt like what you say about me . +I do nt want to work . +We did nt want the season to end . +But how many have had one at home ? +And what does he do next ? +It was now a time of war . + But you are not . +I want to be the best I can be . +Like it or not . + We had to do for each other . +Should nt we all ? + Some work , and some do nt . +I think I have that now . +He called me one time . +I just do nt have the time right now . +So How Do You Get Through ? +I said this is going to be a long day . + How did you like that one ? +We are our own people . +But that may be just as well . +That 's for other days . + In a way , it 's good . +How do you go on with your life ? + I would know , he said . + Now , he says , he would have it no other way . + He 's as good as any center in the game . +Do you know that ? +But now , it 's all over . + It 's a good week for women . +It 's the will . +What good can come of this ? +We can be the same . + Four years , he said . +But I do nt know how it 's going to go from there . +If it 's a man , I do nt want to know . +Little did he know . +How long would they last ? + How are you going to get it home ? + And people like them . +How do I get from here to there ? +But then , what do I know ? +I was , I was -- I do nt know that I did . + How do you get between them ? + If I do nt do it . +And I had it going . + What would it take to go ? +People know it 's good . +She do nt own the place . +There were not many on the market . +How much time had he had to do the work ? +He does nt know how to be . + It has to go this way . + The world can think what they want of me . +In this case , it did not work . +That , to me , is the way to go out . +But there is a way around this . +One could make the case . + And do nt you know it ? +That is , when it is well made . +But even so : does the world like it ? +And we are not going to say that . +I do nt think so ? +It just does nt work that way . + I said , Do it . +There 's no other place like it . +I want to know what 's going on around me . +We are going with the best . + I think it is only what it is , he said . +But not from where she was . +You have to use it . +Because that is what they are now . +Will it be today ? + But how do I do that best ? +For years , he did just that . + You can do it , he said . +I did nt play as well as I should have last week . + He does nt know what to do . +What 's Up With That ? +Now you say you did nt . +But that did not last long . +But , you know , there 's a business end . + We want people to say , when are we going to get there ? +I was well on my way . + The people of the state have the right to know . +The work does nt do that . +He said he would do so . +How did they get them ? + I had a man come in the other day . +We do not know of any . +But what a game it was . +Too much time to think . + I said , Are you all right ? + How much time do you have ? +Still , life is not the same . +As in the season after this one ? +I want them now . +I said , How come I do nt see you ? +They have all come a long way since then . + Some women just do nt want to know about it . +I would have , too . +We do nt know where we are going to go next . +We can do that at home . + This may not have been the right place to say it . + I did nt see from where . + There 's too many of us for that . +He did nt even play the second game there . + I know our state , I know our country . + Who has this come from ? + No way , one man said . +This is the game . + That is not the case now . +Both , I think . + I do my best , she said . +This does nt have to be . +I did nt want to see you . +Make of that what you will . +The United States should do the same . + And we found him . + How do people get here to work ? +That 's not all he has to do . +I do nt want to get in the way . + I do nt put them through that , he said of his family . + They are the one school that could do this . +Who would we show ? + She 's been on the show a long time . +But the general public does not . + It 's very big , he said . +He did nt do it , he said . +Where were they all these years ? +But she had not . +We are not going to back off from it for one second . +But he could nt get into law school . +You had to be there . + We do nt want a war here , he said . +They did it then . +But there he was . +But that 's a big if . +Down on the court . + It 's go big or go home . + And for her , as well . +Here is where he has been . +That 's good , I said . +This is very much to the good . + But I know it 's for the best . + We do nt know how or when we are going to get this money . +Both work for him part time through the year . + HOW many of you like . +It 's the will of the people . +What has there been ? +We are on our way up . +They are people like you and me . +That 's not the game . +That was the case here . +This year is up from last year . +But they can and do . +I was here to see you . +Take the other night . +If you do nt want that , then it is nt for you . +But in here you can just show it off . +It was just the two of them . +You may not even like me . +So when you think of it , he 's right . +Where to Go Next ? +He 's never had one . + It 's a good program , he said . + He has been there for us . +Now there was no more . + So I know what to do . + But many did . + And he was all that . + I did nt think much about it . + But this year he is . + There is too much of it . +Until about two years ago , that is . +We just have to go out and play . + But not by much . + We all know he can do that . + We like it , too . +And if they can not do that , many of them will have no work at all . +And it will last a long time . +We do not see it that way . +And I work the people into my house and my world . +And that 's not what I do , you know . +Not here , he says . + It will be a good place to be , he said . +He was also old school . +That 's all I have to do . +Can we use more ? +Where are you now ? +But this is nt the old days . + Did he like it ? + I would nt . + I just did the best I could . + He did not have to say that . + I have to go to work , he said . +Is that what you said ? +That was more than two years ago . +It 's going to be a big game . + They should have been there . +You know what to do or you do nt . +I will do that when I have time . + And a war it is . +What was this all about ? + He was out for the day , she said . + What do we - know each other ? +The right is still there . +Will you do that ? +But it was not all he could say . + Just get on , get off . + We Are Family . + This is the best of every world , he said . +I think he is left . + Who will do it ? +Many of us think we do not . +Now I was one of those people . +Now they will get another . +It 's been going on all season . +And what I did nt want to be . + My office is the same . +But that is not to say we will not use him at all . +It 's like you are in another world . +Is this the way ? +He is the president of the United States . + I was nt used to it , she said . +What do we get for it ? + That 's how we play . +Would the United States ? +I could go home now . + They may be , she then said . +And they see what we are about . +And I think I have a right to be . +But He is nt what He used to be . + I like her , she said . +That 's how it was all night . + How many are there ? +This is not a good year . +Today they want to be part of the world . + You might think there are more of them . + This is an American street . +He might have been . +Her money was no good . + We could nt go there . + It 's your money . +Not just for me , not for you . + It 's been so long ago . + But it 's not good . + It 's more than a business , he said . + We are on our way , he said . +It 's not what we did nt do ; it 's what they did . +Not at all , it says here . +For the war will come to an end , and when it is over , what then ? +And that 's how it 's been . +This may be one of those times . +I could nt get through the play . +Where 's your money ? + We would nt be on the market right now without it . + But we work just as well as other people . + So what can I say ? + Today , what do you see ? + But we can not do it for you . + He was nt good at it . + Do you want to play school ? + They said : We do nt know how to say this . +But , then , so do most of us . + If we are still around . +I say : no more . +He did , very much . + What 's it made of ? +It is big , big , big . +He is not for you . + Who was I to go for four ? +He said that was all he had . +We have to show the world that there is a state . + At last , he said . + Is nt this what you want ? +Who would think of that ? +There just is nt much of that these days . + So she has money . +What are they to be used for ? +There is so much we did nt do right last year . +This team will make it without him . + Do we know what is going on out there ? +He has to come down . +He did nt want her to go . + You have to get it over with . +Yesterday , they were . + How did you get them ? +It 's a place you want to come . +Do nt you have a home ? +Life is good here , he said . +You work during the game . +It 's a war here . + There was only one . +It 's like one big family . +It would nt be the same . +But we had no money for a house . +Well , then we do nt like it . +But he is nt and he does nt . + This is a new team , he said . +And What do you want me to do ? +But I did the best I could . +But they are there , right where he left them . + It 's not the American way , he said . +I did , and I was . + I did nt think about it . +But now , he 's out there every day . + If you have them , they come out of the can , she said . +The place : New York City . + How big is it ? +You get out what you put into it . + Where 's it from ? +It was good for the team and good for me . + But he has nt been . +Well , we think that may be the case . +We are not going for second best . +There is just too much to know . +But they are the right people . +Not now , not now . +Well , I think there are many of them . +I was nt that good . +They want to be part of it . +That just about says it all , does nt it ? +I left that up to them . + What do you want me to do first ? + It 's just time , he said . +They do nt want us , and we do nt want to work under them . +One , two , three , one , two , three . + They would get on my case . + Well , could he ? + He has that too . +Do you see what he did for us ? + Do nt just say this is what we want to do . +We did nt think so . + They say , What for ? + Who do you think put this man where he is ? +I did nt have time . + Just go back to work . + I will be back , she said . +They do not take this well . +This is big business . + I do nt have any way to get back home . +But what is it ? + It could have been us . + Here they come . + Do we have to do this ? + I do nt know how to . + I know my business . +But it should nt be that way . +We just were nt there . + They have to put up with us now . +Do one of those . + I can do it . +It is with me all the time . + That 's it , she says . +But only at home . + They do nt want to go out because of it . +And I do nt want to go through that . + Their time is up . + Now they do , she said . +I did nt go into all of that . +And then he is off . + And I was like , Will I ? +That 's the first set . + I want to go back so much . +It 's not as if there 's a war on . + What are they up to ? +But they do nt see much of each other , he said . +Or was it this new country ? +She would if she could . + How would I know ? +They might as well . +I think he will one of these years . +You have every right to say what you want to say . +I used it for a long time . +Just like being there ? + It was nt like work . +Then you want a little this and then a little that . +It 's the best of the best . + You want the people to know who you are , he said . +That 's too old . +The two play off each other . + He has been A . +This is going to be a good season . + But what can you say ? + What 's new about it ? +It is now up to three million . +Make well in center . +I was just in the group . + Most of the people who go do nt have the time to be there , but they go . +It should be the same way when you do nt . +Come on now , get with the program . +She said we had two . + And we do nt have one . +Last week one did . +Right now , we have all three . +Now I know what it 's like to be in one . +There 's no other way to get good at it . + You can have one made , she said . + He 's not a well man . +There were two of them . + What are you here to do ? + And no one can do that here . + It 's a place for people who have no other place to go . + I had a few . + And there 's more . + We are after what do people want ? +But they like me to be big . +DO NT be put off . +That 's my family . +Now here 's what I think . + We do nt know that , he said . +And then he has to come around . +He is all business . +Second , know your members . +But is it war ? +On with the season . +These days I work . + I was too . +Here , that 's not so . + I was never good with the public . +The political will is just not there . + No , he said , they are all the same . +You were a part of it . +So what is it ? + No , that 's not it , he said . +Did you do that ? + The game just does nt work that way . +And he could be off . + You are so down to . +That could have been my family . + Are you going out ? + We had set it up the night before , he said . +Can you say the same ? +He made the first four . + He should know . + He did nt have many . +A long way off . + I do nt know who left it there . +Now I can make my own . + That 's about all I can say . + If it does nt , it does nt work . +We just had to get to know each other . +But they are then still president of the United States . +He was into it . + Not because of me . +And she is not the only one . +You can be what you want to be . +And then get out . + We have now . +No one will take this from you . + That money you are going to come into ? + I do nt think about what I do , he said . +I do nt know which . + How can that be ? +It 's the team . + It has not been made to the American people . + I would nt say it 's his best , but I think it 's right up there . +But that was only part of it . + We do nt want it . +And we can do both . +Did he want her to go to school ? +So now , it 's war . +I have my children here . +To get through it . +He 's what this place is all about . + There 's no next . +In with the old , out with the new . +Where in the world do we go from here ? +But this is another team . +We just want to take our time . +No , it 's not over . + We are good people . + I never get around to it . + I could nt do it today , no way . +Now we are right there . +Think of it what you will . +You were there for good . + Which one you want ? +Do you know them ? +You know just what time of the year it is , when you are there . +I have never said never . + I like to work , that 's all it is . +But it 's the law . + Did I Say That ? +Because you know what ? +And what to do ? +There is no director that old . + And I think we did . + This might have been one of them . + You do nt know until you come here , he said , that you never want to come back . +If you do nt want to go , do nt go . + We have some time , he said . + What did I think she would get from it ? +Or is it the money ? +There is no law , after all , that says a company has to go public . +It made for a long week . +What did they have ? + What 's going on , man ? +They do not want the new government . + I said , We have to get out , man . +And then they want you to be under that . +That 's where the work is . + It 's her life . + Do nt you think ? +At work you see it . +You know it when you see it . + We have to put up with it . +We do nt even do a second take . +That 's when you want to do it . +And how about that family ? +We are those same good people . + I do nt think about that . + In the end , I made it up , he said . +But he has the most money . +There 's much more there . +That 's just not the way it should be . +He did , and should nt have . +It 's not your home . + And I do , as long as they do it right . + He never had any money . + He 's going to have to work from out there . +We are One World . +He said to me , Get over here . +The season is too long . +Both of us want to see the city united . +He said some were . + But that 's the way it is . +He said , I did . +I could nt get up at all . +Here , it is not . +Many are new to money . +So did the officials . +Three years since you left us . +They are not going to put him on . + Only that will see me through . +This is the one . +This will do it . +And this is one of the best . +That 's all I think about . +And we were nt . +But the show did not go on . + You know you are on the team . +It is their money . + If you just make money , so what ? +People want to get there . +The play has to go on . + And I do nt think we were . +I will get right on it . +It was the man 's last game . +For a week or two . +In general you did nt know where you were . + But we are going with it . +You just have to be around . +He was nt right for her . +That 's all that we can do . + It 's our second home . + What Is Going on Here ? +I go with him . +This a war , so we have to get them . +You can take it or not . +It was what it was . +I did nt have to think about the game . +What was it like when you were there ? + They used to , but . + That was last season , he said . +I know the next one is going to be a war . +In those days , my children were a part of me . +There never has been one here . + No , that 's not the way it is . +Be there , not be there . + Well , was he or was nt he ? +But it just was nt our day . + He does his own . + To be off as long as he was and to play that way . +New York , New York . +To take back the country . + It was the best day . + Day to day I do nt even think about it , she said . + What in the world is that ? +No , there is not . +What was business to do ? +Who will be with us ? + Do They Play New Music ? + This is the first time most of these children will get a school , he said . +But he did not think much of it . +What are we going to do now ? + What 's that one on the end ? + They are too good . +It is all there . +It 's like being in high school . +What made you come back ? + But they think they would . +You only have one family . + What 's This ? + That 's all we know . +No I was nt . +How do you get that ? + It may very well come this year . + Of the United States ? + They do nt all get it . +Would we want them to ? + When will there be too many ? +They can use him . +We do nt want just a good team . + I have to go , she said yesterday . + It had been so long , too long , she said . + My house is nt there . +He did this , too . +It was all that , and more . +That 's just not the way to play . + It 's been a long day , he said . +But how are we to know them ? +And I said , Who are you ? + She said she would have the money for me in a week , and she did . +This was my first . +Well , do nt we all ? +We want to get that back . +How did you take it ? +And now I had one . +But not on the court . + But my people did not want this . + I had a good life . +This is a big , big game . + You get into it for the way of life . +Life can go on without the office . +It 's just I used to be in them . + But it can take days . + To get out of the house . +There was no office to put it in . +Show me what you want . +How they could go on for so long ? + But this is our music , the music of our time . +I can come up here . + We could make do . +So , what now ? + I would nt know if we did or did nt . + They were not put up by us . + But not in our case . +Now , that is . +That is just not so . +WELL , they have come up in the world , have nt they ? + Should nt we do that first ? +You can be one of them . + So I know they will play with us . + We just said no . + I do nt even want to go there , he said . + We do nt have a center like that . +What does that make me ? +It was just so big . + I do nt think they could . +You do nt think so ? + It 's my house . +Would they even want to ? + He was with us all the way , he said . +There were many people in the street . + But we can say we will have a few more . + It 's all a political game , she said . +And at the last it will be well . +How many members were there then ? + You do have to go on . +For this night , he did not have to be . + He just said , Just do it right . +How many times does he want to do this ? +Now they have this . +He was never like this before . + This is about us , not about them . +I was in this big show . +I make a little more than that now . + Then do it . +There are nt many like him in the world . +It 's best you know now . +There will be another day . + It should be that way . + It 's not like all those companies are going to go out of business . + It 's going to take more time to get to know them . +But to what team ? + Did I have a good time ? + Can we go up there ? + But now I think it is . +But what if there is nt ? + We get a program , and then it 's over , he said . + What did the President do ? +Where do these people go ? + There 's too much to do . +And as they say . +And you make it up . +If that is the case , so be it . + Can we get our game up ? + He said : I would not have it any other way . + They work with us , not for us . + If you are going to get A 's , then you might as well get them all the time . + I think of him every second . + I Did nt Say That , Did I ? + We just do nt do it . + I never did that , and I never would do that . +Two years and off to work . +Now there are just too many . +You get on , that 's it . + The one I know ? + That 's just not us . + We think that he does that for us . +But we are going to play the way I want to play here . + The Family of New York . +So he did it . + I do nt know that , she said . + This may be the last day of your life . +It was nt so much what he said but what he could show . +That is very new . + It 's like going back to school , she said . +She does nt want to go . + We are going to have to do it , he said . +Now I want to see if I can say it . +He says it 's because he is a man . + That 's it , she said . + I only had to go back four days , he said . +Can you see that ? + That day was one of the best days of my life , she said . + I think life is going to be good . + There was no one like him . +It 's still there in him . +Right in the center here . + Is man no more than this ? + They are up there for good , he said . +But this is part of the business . +That should nt be the case here . +Yesterday , it was a new game . +I said that last week . + It 's going to come . +The other was a good one . + He does nt know it . + The American President . +He and his family left their house . + Over the what ? +It 's out of the way . + They come to us . + I have to go to school and to work . + He could nt do it until now . +Do you know what that says about you ? + I would like to get them out of there , he said . +He has never had time for a family . + How many children do you have ? +He called me at night . +This is a very good day . + We make money every year . + But I think that 's what they want also . + They did , but only three times . +We used to know how to do this . +But where do we go ? + She found no one . + People here work too long . +And I say , It 's about time . + We are in another world here . + I did nt know what we had . + What we did nt know was that he was way over to the left . + In the end it did . +Two years ago , it was all work and no play . +There , he is right . +It was like a family . +That is what we used to do during the war . +He said he did it for the money . + If they want it to be . + And the next week , or the next day , they do nt show up . +You have to get it right the first take . +I do nt think we get over this one . +We go from day to day . +This is what we do nt do . + Not four , he said . +Well , do it now . + I could nt go home , he said , but she could . +I should say not . + I still have a few days , he said . + Is this the right place ? +But he 's not here . + We do nt . + I want this case to end . +Will there be music ? +He may be President . +The City of New York , for one . +It had to go our way . +And that is what we are going to do . +They can take on a life of their own . + But what do you think ? + This is about good government . +It is about us and them . +And if he is nt , who is ? + But where is it . +But she 's been here for years . + They have to know what 's going on here . +I will be back . +Who 's the president of the United States ? +That 's who you want to play for . +What he would do , I do nt know . +I think we are all going to do that . + I think we all know that . + They all come from you . + I was nt down . +We are at war . + It 's about what you do with it . +I think the team is . +He 's put that in his game . + How right she was . +And he 's going to be right . + I do all right , he said . +HOW TO BE GOOD . + It 's not the going to war . + What I say is that they are against me as much as they are against you . +But this could not be the end . +Not just one or two . +Still , it was there . + They never called me , she said . + I said , That 's not him . + To me , it 's like this , he said . + His life would never have been the same . +Not that there are any . + I know it 's so American , she said . +This new one would be second . + It 's never very good . +Last year , we could nt do that . +They have the money . + I like the work I have now . +What did you think about ? +I do nt know who was right . +Who did all the children most want to come around ? +He 's the same way . +They are nt there . + Did it get here ? +But he is a long way from that . + They say that if you can do this one , you can do any of them . +It 's about you , is nt it ? +They never did that . +I never said it was . +This would not be one of them . +It 's no good to me . + I think that 's good . +Then his old world was no more . + Not for long , though . +Would that I could . + But they do nt have that . + I get up every day and say , What can I do today that 's good ? +But that 's a good life . +Not three years from now , or even next year , but this season . + You should have come to our house , I said . + That 's what we see all the time . + Some people come here for that , she said . + Well , we can . +And because the time has come . +But we want to have more . +You know the one ? + He just did nt think . + Now it is here . +You know when it was ? +They are only part of it . + They make me do it , he said . + It was more than that . +Only their people do . + What is it ? +And he never should . +But he said : Can it work ? +Does this program work ? +Without them , we have no business . + Would you like to go ? +This should be a right . +Not very , I think . +I said , We can do this . + We know many of them ; like them . + Is this it ? + It 's about the money . +I will come and see you . +I want to go out . +Then he put an end to it . +It is that he could do them . +In a way they are right . + It is like the old world , he said . +And here 's what it says . +The United States was . + I think we are going to make it , he said . + He 's been very good to me . +So is the game . +Now they all did . + They have no children . +Who 's going to do that ? +It 's a new day , and a new night . + I just had to get that in . +But not for you , right ? +They said they did and it was nt . + I do nt know what it 's going to be like now . + Our people were not in the market , he said . +I like where we are . +We never did that . + Life will never be the same . + She did , four times in all . + Not so much any more , he said . +The place is New York . + Would you like to do it for them ? + We do nt have much time . +He does nt have to set up . + This is what we do in this country . + Now here we go , he said . + I did nt even know about it , but I found out about it . +But that was just one day . + This is never going to work . +This will not do . +We do nt use him every down . +I think the same people who were on the team last year , when we did nt do so well , will see to it that we do well . + It 's a part of me , he said . +There are other women as well . + I have to put it in a place where they can make a play . + And I said : Not me . +I want to be with the game . + It 's a best of three now . +This would be it . + Today , I do nt know how we would get by without it . +But I know he can have it . +Their Government , too . + That 's what we do now . +Do we want to work with them or not ? +Not so , she says . +That is all to the good . +But not for me . +Many more are not . + Where Is the Market ? + People say they are only after this . + It 's still that way , she said . +Three years from now , it could be any one of them . +Season is too long ? + I do nt see them and they do nt see me . +Is it for him or is it for you ? +And New York , New York ? +And then where would she be ? +Way to go , man . +Only they were nt . + If you say so . +Will he use it against them ? +Is it against the law here ? +Under the new law , you do nt have to do that . +She would have it no other way . + And I say , But you should nt . +They called him out . +I do nt think we did . +These are just five . +So what do we get next season ? + Who is that ? +It is good to have her back . + How could I back out then ? +But this is business . +And that is just before they go on . +So I did nt play . +Well , he might . +How would you get to it ? + There is an end to it , he said . + What is it you most want ? + You want them to like you . + These people were never high end . +They just do nt do it . +DO they or do nt they ? +We all go down . +But there 's a long , long way to go . + You do nt . +What is she going to do ? +You are the one . +So did the music . + I used to take it . + That 's not going to work . + Is nt it good ? +I did nt want to go public . + He 's called me a few times . + Some left on their own . + And he is off the Police Department . + Now we are not . + It was a new market then , he said . + Now they do nt even do that . +We are from over there . +They were all used up . + Who 's up ? +All I know is that I never did nt know about it . +That 's what you did in those days . +How long can this go on ? +If you do this , know that you are in the best company . + I have said what I think about that . +That did nt work out at all . + We are not children . +You do what you do . +Some of them are very good . +But can he put it up ? + You go right into them , he said . +He was the law . +You should be here . + Can I go there ? +Now I have a place to come home to . +Do nt get that going . + I want to get out of this place . +She called public officials . + That 's good . + I still want to go . +We found out that 's not how it is . + Do you think you would like this ? +And he said this about it . +That 's what they said . +But , what do they want ? +So you are the last one . +So it 's come to this . + They do nt like to do it year after year , he said . + Even that , he said . + I want him back , back with our children , back in our home . + But it 's not where we want to get to . + He 's been there two years . +You just know when it 's not right . +I do nt want any of them around . + Children are just that -- children . +It 's time to get in there now . + He 's going to work . + And she said , No , not for an American . +They are and they are nt . +And then it would have been back to work . + We were there day in and day out , he said . + You see that one ? + I like to go there . +It 's not been a good year . +In the end , they were both . + But I found out he could nt . + I think it 's time for him to go . + People would say , What 's on today ? + All I want to do is see him , she said . + It was a . +It does nt have to be a big house . +Do we have children ? +I did nt even have to think . + But he 's had little to say since . +Now , I know . +And I do nt think they should be . + See , it 's not that long . +We are night and day from where we used to be . + How could we do that ? + He 's there five days a week . +He 's at home there . + It 's a new game . + It was the only way out . +It 's about being in music . +At work in his life . +I have a way out . + We think it could be all over . + One of the few that did , she said . + Is it left or right ? +We will make this city work . + This is up and that 's up . +It 's a show . +Where does that come from ? +So what do we have here ? +He was nt on the court very much . +His team 's , too . + He does nt want to come here . + It 's just up to me now to do it . +But he did so after the game . +I had my own life now . +They want to do it their way . + Who would I be ? +But you do nt . +That did nt come out well . +But , she said , I will never go back to that house . +This is the week that is . +Not in the music business . +I think that we do . +That 's also another play . +This is , by the way , very good company . + No it has nt . +They too are The People . + I think it 's day to day . +How long can I do that ? + I can come back and play . + The family did nt know what to do at first . +By then , they were both in the country . +But they are here . + Then I go see the place and it 's like , This is big ? +But that 's not what I found . + Then what do you do ? + But that was years and years ago , he said yesterday . + To all those who want me back . + There were so many people . + And I did that . +Want to know more ? + He was on his way . +If he does nt , go . + What would they be like ? + I have time , but not that much time . + She did nt know where he was , he said . +He just does nt do it . +Every day , I know , could be the day . +He did this a few times . +I may do that when we get home . +But how old is old ? +Its season is over . +It 's a new season . + So what do I know ? +And it 's too big . + He 's so - he 's so American . + But it does nt . +Too , he said . +They just want the music . + We did nt have that last year . +Then would you work ? + The police will get us . +And , as A . + That 's just not my way . + These children will never come back , she said . +And I do nt think that 's right . +The state does nt have the money . + I like them in the house , she said . + This is the home of . + I was all right , though . +He said , I can do that . +Last year , I do nt think it was there . + Are they part of your company ? + It 's good . + Even before I know what it is . + I want them in here all year , she said . + It was too old for him . + If I were you , I would nt go back . +He has too much game not to . +Now we are at one out of every four . +There are so , so many . +A second year without you . + But we do nt want it around us . +They were a big part of me . +I might not have been . + I think he was right , she said . +But this was more like it . +We do nt know much about these people . +Do I want to be ? + They will do their best , and so will we . +This is not good at all . +They are the same . + I said , Before , and she said , That was the best time . + I do nt know where these people come from , you know , he said . + She 's very good , right ? +It 's going to be very good one day . +I have nt been home at all . +I said I would see what you can do . + I do nt want this to be the first . +Then get over it . +We own our business . +It does , in a big way . +A : -- do it . +What is an American ? +But that was nt to be . +I think he 's very good at what he does . +He would not say who they may be . + It 's there for them . +You do nt know where he 's going to go . +Does she want to be president ? +It will also be their last of the season . +We are all right for now . +I want to do the best I can . +If you did nt like him , you did nt know him . +It 's all about I can do this . +I still like you . + Because I like it , she said . + How long is it ? + We do nt know that . +So what is going on there ? + I know that , I said . + Right now I make for me , he said . + It 's family time . + It 's a public place . + So you did nt take any . + I said , I like this . +We are not used to the game . + But he said : That 's not me . +It 's people in general . + They do nt know how to go on . +That was all he had to say . + We are the law now , he said . +But it 's very good . + But we are going to be united here . +There are people in the United States , too . +We can take it . +We all know them , those who did this . + I think they should do it another way , but it 's their business . + What use are they ? + We just do nt have the money for that . + Do nt you want to make a family ? + They are like any other women . +But it is a very , very good market . +It still can not . +You have to make it good . + Not them , he said . +He did nt want it to come out like that . +I know more about the world now . + I do nt think we can , he said . +In our world you do . + They said , Is that him ? +This is for them . +Last year it was nt . +And it 's not that I do nt have one at all . +But it will take us a long time to get there . +Every one of you . + But we said , No way . +And not just them . + It was not my will to do so . +And so the house has been on the market for two years . +So what is new ? + I should nt have said that . +He 's good to me . + Just so long as you know . +Now he just has to do it . + I like to be around other people . +What are you going to do about those ? +What state is it ? +The time has come . +There has never been that much money . +No one 's called . +The only way you can do that is to go to people and say , We want you . + And that 's not what its about at all . + A very big family . +We do nt make money on this . + How do people not get that ? +Or so one might think . +He did it on his own . + I want to be the man , too . +He is our big man . +It would take about a year . +Is it war up there ? + They do nt know him . +How we going to do it ? +I was , like , how did that get there ? +But I do not think it is just the children . + You have to , she said . +Just as it should be . +How come you to do that ? +And we do nt want it to end right now . + Will I take it ? +Because he not only said it , he did it . + We do not know how many . + But there just is nt much . +Then she left me . +She was just going to work . + We do nt get it all back . +I do nt think he did it . +War is war is war . + I do nt know that much about him . +Can we get out of the city ? + No , I do nt , he said . + So what time is it ? + You can think it , but . + How can we do it ? +It 's just that it has been a good day every day . +It 's been one year today . +I have a few years left . + Not my home . +They are just in it for the money . +But where do you go from there ? + It 's not much money for all that work . + All the time . + I have the game , she said . + Not a very good game by us at all . + There 's so much out there in the world for you to do . +Do you want to see us do it ? +He says , I have to think about it . +Yesterday was one year since you left us . + But it never is . +And it did nt . +They want to know more . +Or is it just in time ? + You know what I would have her do ? +But there is more to do . + They will not make the case . + He did nt want to go . +I want to see it through . +It was by us . +How 's that work ? +Now we know it is much more than that . +I did nt want to see one . +In a big way . +Then it was like , This is good . +That could be the case . +It 's the way it should be . +We have to get to it right now . +That 's the way the market should work . +Which do you like the best ? +What 's left of it after this ? +I will make it up to him . + We are like a family . +And they did nt take it . +What they have is time . + Then I did nt even know what day it was . +She does nt know you . +New York should nt be one of them . +That 's what they say . + She is right . +A : Very much so . +They want to work . +I think that -- I do nt know him very well . +All this I did without you . + But we just could nt . +That 's how come . +It 's just how it is . + I did what I set out to do , he said . + We think about a house . + But it 's the government . +But we did nt know if we could . +Then just get out of the way . +I do nt know about him . +And if it is ? +He said , On what ? +Until the end of May . + Do we have to ? + You might be right about that , he said . +Can they work it out ? + Did he do that ? + I was like , What 's going on ? + But , come on , this is my country . +I want to go to school . + To put all our money in . +What 's it going to say ? +That 's the game we like to play . + This is just new . + I just had it . + Do you think you can do it ? +Can I play with the team ? +It has those , too . + How does she do that ? +He is at war with the United States . + But I do have some of them . + We are not used to this , he said . +How come I was nt there ? +These people are me , and not me . + We just did nt do . +You go to his . + How many times can they say it ? +You know how many we did ? + Can Ms. do it ? + I know it every time I see them . + I never found out who he was , she said . +The time to do so has come . + People are like , People should get here on time . +It may take us a while to get back to you . +We do the same . + It was just a . +Then you are for both . +You do nt think about the director . + Would you like to have it back ? +How did they get here ? + It 's just business . + It is not to be . +It 's such a business . + That 's who he was . +It was also a very political one . +And I was just like , what ? +I was like , How did he do that ? +But who is we ? +He would work on it . + They both want to play . +How much do you want ? + Did you have to go to school for that ? + Now , he said , it 's back . +You know what I say ? +But where is he ? +Not too much is made of this , which is all to the good . + For his country , not just for me . +But we do nt know them . +There was such a long way to go . + We did nt do that last season . +But now , what was this ? + She 's still new . +They are a good team , and that 's all I have to say . + No , she called back . + It 's just too much . +I want you all to take time and think about that here for a second -- that the right people . + My , she said . + I just did nt think of it . +But I do nt know where we go from there . + It 's good for the city . + I do nt want to see that . +But that 's not what I think life is about . + You know , a little of this , a little of that . +That 's a part of me . +And he was right . +There was a who do they think they are ? +What 's a Million ? + But I have to . + So where you going then ? +He may not go to the city , but it has come to him . +You can do so much good with other people 's money . +That 's where we are going . + No , said the first man . + Without you out there , we could nt be up here . +People know what he 's about . + A man , she said . +Is that our money too ? +For a few , it was too much . +He had little work . +But then I did nt have to . +I would take it home with me . +But right now , it 's time to work . +He was up three times . + What more can we do for them ? + I did nt think he was going to get an out . +We do not have a government . +Work is good , he said . +They have to make money . + I just was nt very good . +This is part of life . +He called New York . +But where to put them ? + How much does a man have to take here ? +I will only go when my people have their own home . + This is not about me , she says . +But she can work . +Less and less so . + Then it 's all over . + It may not work very well , he said . +The place is only four years old . +It did not have to . +And he 's one of our own . + These people want us . + We all do . +What are some of them now ? + How could you say no ? +He would not say where the money was . +When do I get a life ? +So would I go back ? +She said , Show me the law . +I would like to go this year . + WHICH way do you want to go ? + You just do nt . + Not me , he said . +It was good to have him back . +It 's up to us to come through , like we did last time . +But I see how it is now . + It 's where people are . +There 's not much not to like . +And I like it like that . +What would they do for her ? + I had to , she said . +Did he or did nt he ? +There was just no way we could get in . + That could never have been said five years ago . + I do nt like this at all . + I said , Now . +If not , you do nt . +But then he did what he had to do . +That 's more than most people can say . +He was at work . +It was about who the people were . +He did not say . + It was like , man , what do I do ? +But it has not been all work and no play . + We do nt know how it 's going to work . + So are the people . +He 's very big money in the state . +It will come out in court . +I did nt know what it would be like . + What did they think ? + They know where they are going , though they have never been there before . + Next year could be a very good year . +Another was home with her children . + But this is good for him . +This could be the week . + I say , Go where ? +You have to do it every day . +We are family people . +And is she 's going to do it . +There is so little left . + I say , This is my home . + Not him , it did nt . +Is that a good time for it ? +You may well be right . + He 's going to make it . +In the end , though , they may come around . + I just want it over , she said . +It was long ago . +He just does nt get it . + And that 's how he 's one of the best right now . +That was not all . +You know what that is ? +Just like life most of the time . + Two can play this game . + For a long time . +It was also one of the best . +I think we can get it in the next year or two . +Well , what did he say ? +Our season is over . +This is still a good team . +But they did nt say that . +Where did all that come from ? +Can he make it ? +Some good will come out of this ? +We want our school back . +I do nt play the game for that . +What do you think of his work ? + There is very little to show people . +Is the house still around ? +Just go about your business during the day . +So what do we have now ? +This is good work . +And then they go on . + If they did nt want to go to school , they did nt have to . +We have nt been good at that . + He 's been in and out . +They each have five . +Some companies are much more into that than other companies . +And what they see on the street . +That they are just like us ? +My family said , Take more time . + That 's how it should be . + I do nt know where she is . + So you think he did it ? + But we are both going to the same place . + What did he want ? +President of the United States . +Most other children have . +They did not know . +He is still out . +I want to think that . +What is there left ? + You do nt want to make too much of it , she said . + This one does nt . +They play each other . +It was on the right . + But now they would . +And what is the end ? +They did nt want to be there . +It was in New York . +Can you people make it ? +I think we have the right to play on Center Court , too . +What season was that ? +To be with you ? + And I say : From where ? +We each have new work . +Here 's what four of them in New York had to say . +And then they are off . + You go out from here and you come back to here . +And this was its first year . + That was good , she said . + I did nt play . + He has never said how he 's going to work with us . +But what of that ? +Then who is she ? + This was not business , she said . + It 's been the best year of my life . +You know the old game . +Not at all , but I do know what I want . +And what a day it is . +It was my case . + I just want to go out and get it over with , he said . + So they were out . +But in his case , it was not because of the war . + You know what it 's like here ? + What Can I Do ? + That was the case with me in New York . + Because they should be . +He just does nt show it to people . +What is the end ? +If I want to be both , I can be both . +This is my life here . + And he did nt like it very much . +And they have to work out all the time . + I would have said A . +In this case , they do not even have to come to us . +I like the best . +He has made it . +And most of them still are . + A good man . +What can it do about that ? +They can take it . +We have to do this to the end . + It 's five years . +Until next week , this week will do . +You get used to it . +That night was my night . + It was so long ago . +I do nt - I did not . + What if that does nt work out ? +You use one another . +Most of us think so . +It could use more . +Do what you do . +He said , I do nt get out much . +Like who was the first President of the United States . + We have to get out of there , she said . + When will we know ? + But I do nt think that 's how people see it . +I come here all the time . +But can it just be that ? + It 's like family , she said . +And does he even know ? +You are what music is all about . + There 's only so much we can do . +Where were they going to go ? +But they get over it . +I see that all the time . +How many would take it ? +The public should know that . + I think I can make it . +But no one had to . +He says he did not . + They say it to women . + You know what was good about that ? +If so , now what ? + If they can do it so can we , he said . +But there was no way . + Now we do two or three a week . +Can he come back ? +They only work there . +Do nt do this . +It 's a new game . +I said , What should we do ? +But it 's the same to me . + But you have to make do . + I do nt think my work was . + Next year , he said . +It 's all around them . + But how long should it take ? +One after another said no . +Now we all know that they were not . + This is where the business is going , he said . +We said this is where we want to be . + She did nt think she was . +This was nt just one day . +I put that in , but it does nt work . +That , it has . + But that 's just not the case . + What could it be ? +Several go there every year . + But where are you from ? + Like that , he said . + But we had no money . +That 's what this team is about . + Where 's it going to end ? + They do nt want to do the work . + That has to be good . + It 's day by day . + Can I go over there ? +People were against it . + I think about that all the time . +That was nt his way . + You know where they are . +And it was , big time . +And only the best would do . +But I know I can do it . + We would nt even be here without A . +But they were not . +Some last one year , some two , some three . + Do nt You Know Who I Think I Was ? + They never do that , he said . + How do you use it ? + My family is still there , she said . +One time I was . + We may not like what we see , he says , but we know what 's there . +So what 's new there ? + It will be up to them . +I like to be around people . +It is not good for you ; it is not good for us . +There may not be much time . +Five of those years were up years in the market . + I said , What are you ? + We had two people in our office , she said . +We know what they are about ; they know what we are about . + I think it 's more me than him . + The game is a game , he said . +That 's what I do nt want . +But not in the United States . +Were you this way when you were with us ? + This was just one game , he said . +It 's so much to take in , with what 's going on . + What can you say ? +And this is our place , our home . + I had to do that several times , she said . +One of us was going to do it . + And now he is . +The other one 's in court . +But , he said , Most of the money will come here . + The money was not put in . +But he has not been that . +That 's just the way it 's been . +The second time , I did . +Do you see where this is going ? +The company may be right . + I have to go to work . + They will not work . +What are they going to say , that he was no good ? + I said : He 's back . +Which do you want to do ? +It may still be . +Just like at night time . +It would have more . + I could nt see him . + He does nt even know me . +You know , just in case . + You work through it . +Here you know how it 's going to be . + They are good , and I like them . + How do I like the show ? +But you can not do this to a people . + We did this , and we did it the right way . +Who should be President ? +There was other music . + They are just like you and me . + I do nt like that . + I did nt even know they still made them . +It 's just that it 's just that . + That 's what this is all about . +Four did it last year . +We know what 's best for them . +I had to come over here . +So were some people she did nt . +I had some of both . +Just go on in . + First I want him to make our team . +It 's team first , team last . + All of them . + They all want to be here . +Money , they have . + He said , No , I could nt do that . + It 's not money , he said . + There are so few left . +I never said this . + In what other country would they do that for you ? +I have to work on that . +But it 's all about the team . + But two years ? +WHAT is going on here ? +She 's old school . +No , I did not . + Not so this time , he said . +We do nt want to get into this . + How do you take it ? +He is the president . +So should our President . +I may go back to work . + It 's like family . + But this is not just another case . +That 's what you had today . +This is good company . +They are our people . +Back to the old days . +They were right , too . + Day in and day out , we do nt know where he is , she said . +I do nt know what they want . +And that is not all he did . +All of that will take time . + What should they do ? + That is what this is all about . +But she was still game . +I think that was it . +Could I do the same ? +No , we could nt . +We could have had the best team . + Your business is in your house with you . +They are not for me . + I could nt go now . +So I left it . +But she has never had a place of her own -- until now . + You just did nt know . +It was also his best game . +Next year it might not be . +But he is now . +It 's not that we like the place . + But I think part of it is that they are white . + It 's not going to go another day or two , he said . + I said , Go for it . +She had that just right . + How can that work ? +Not much of it was good . +Then you do it , or you are out of here . + And I did nt know who it was . +Will we never get there ? +It 's off all of them . + How did you get up there in the first place ? + He was nt used to me . + We did nt even know what was going on , she said . +Last year was another . +Who does nt want more money ? +Life is nt the same without you . +It 's too big to do . + Then one day you are old . +It could be them . + But there 's another market out there . +They were there last year . + No , he was nt . +She could not say . + We had good work until last year . + Not at all , he said after the game . +Say No to School . + They should play in it . +I used to go in there all the time . + But it 's not that . +And if it does , so what ? +They are the second best team in the country . + I would nt know what to say . +I know I do nt . +People like this country . + And we still do , he said . +There never will be another like him . + I think it may last a long time , he said . + But I have to be right . +But he was more than that . + He would take him . +And even if she was nt , she said , how could she say no ? +And people like it . + Now it 's time to go play . +WHAT TIME IS IT ? +Then it was back down . + This was just their day . +I did nt like it there . +You know what it was ? +There could be more than that . + I still would nt work for them , he said . + I found out it was . + He does nt just do it for us . +Here , as long as you can play , you can play . +I did it at the right time . +You are too old to be on the street . +And it will never come back . +But I was never in court . + Has it come to this ? + It 's the team . +This is a big year for him . +So what does he think ? + We work well with each other . +It says , Get out of here . + He was nt in my world . +If you make it through the day , you then have to make it through the night . + So we will be , too . +How did I know him ? + But he is with us . +I was never here . +We just do not know . + We just were nt at our best today . +That 's how I see it . +But I do nt have any . + I do nt want to do it , he said . + Some days I get three , she says . +Just go out and play my game . +And then one day , you are not . + Now it 's down to one game . + Now , no one in the city can see it . +We all just have to do a little more . + Business is business , he said . + From day to day , he does nt know who 's on the team . + I do nt have to be the best . +What do you do with her ? +But would it work ? + But people do nt see it that way . +Will you and how will you ? + We were all over the place . + Well , he said . +What if , he said , he had come here and did nt work ? +Not that there 's much to see this time of year . +But he should be a little less . + It 's going to take me some time to get used to this . + We did nt go and do business . + No one can say they did nt know . +Here they are so few . +He is not the only one . +I was at work at the time . +How about some money to get me home ? + I want to play every game this year , he said this week . +Well , would nt you know it ? + It 's a family . +Here it is for my country . + They do nt know how to play , she said . + He did nt want to come . +I do nt own it . + In every way John 's good to me , she said . +If he 's going to play you , he 's going to play you . + And if we do nt ? + But it 's not like that at all . + Here , take our money . + That 's the way it 's going to be . +This time there is nt . + We were in . + That 's not his game . +Who will get her ? +And not if I do nt . +That 's not what they did . +WHAT IT HAS GOING AGAINST IT -- Not much . +But they did nt last night . +There 's only life . +How can all this be ? + Then people know where we are from . +But more is at work than that . +We just do nt think right or we just do nt make the right play . + I work well with people , he says . +That also is not the case . +Three years old is about the best . +So is their season . +And what will come next ? +You have to come through New York . + I do nt think they did . +It 's just music . + I could go on for another four or five years , he said . +Both are in place . +I did nt know the president . +But that could take time . +It 's not a good day for this department , a good day for this city ; it 's not a good day for you . + They are going to go for it , he said . +About Who We Are . +And even if there is nt . + It 's found money , he said . +It may even have too many . +You want more of him . + And it would do it every time . + We did nt go into it , he said . + This is way out , he said . + So I did nt . +He may well have been right . + They left us on our own . +Is that the way you see it ? +Four of them were white . + He did nt know how to do it , he says . +And so that is his right to do . +No , that does nt say it . +He is of this world and also out of it . +The government put us here . +And he 's the President for the next four years . +They still do it . +Which is only part of it . + From high school on . +It would nt have been me . +It may have been a little of both . + There are many of them . + We do , but we did nt . +They want to go out now . +The school did so . + It 's New York , he said . + They are called too many times . +I only want those . +We just have to play our way . +What do you think of this ? +Because it never is . +They were right about you . + What Day Is It ? +By then , there may not be much left . + Just like most of them . + I still want to go to school , she said . + It 's just our game . +It 's not the end of the world . +They have a week . +Only some people can get it and some people have it . + We do nt want it to end . +And there is no place like home . + So , what did we do ? +New York 's Game ? +That 's what we are going to see . + They do nt know what 's going on . +Time to go home . +It should be like that every day . +Who are you then ? +It did not come that week . +I have nt only had a good season since then . + All the best for now . + I was in school , he said . + If any of us can do it , he can . + I do nt know what we are going to do . + We said no then . + I said it was . + When will he go back to work ? +I think John will do that . + It 's the season . +One of these years . + They did nt know . + It was nt when I was going in . +And I said , I know her . + They are too good . + Because I might like it , she said . +I would say so . +Put it off for a year . +So most people here think . +He was nt and he did nt . +I do nt think I can do that . +He 's in a country at war . + Get the game , I said . +WHAT is it they do want ? +What do they want us to think ? + This just was nt the way to do it . + There 's been music . +Until just the other day . +Some days it 's not very good . +Life will not be as good for our children as it was for us . + I left , she said . + He did nt know . + It 's the same . + That 's no President to me . + We have to do more with less . +The next year , we did two . + I said that I did . +We work into the night , night after night . +And the time after that , and the time after that . +What has it all come to ? +So I did both . +I do nt have a second home . + First , you are an American . +But it 's him , all him . +It just does not work . + But now there 's big money in it . +So what does the President say this year ? +But it 's been like that for a while . + He said : I know what you are about . +Still , he had to go . + It 's a good program , she said . + We just do nt do that , she said . +That is all over . +I know what it 's about . + I do nt show it every time . + I was just on my way to school . + I said , What do I have to do ? + Not this one . +That 's just how we are . + They should nt be in this country . + This is the same as in the United States ? + He said , I want to be President of the United States . +They should have the right . + I did not think of it that way . +And he was off . +But that 's him . +That was a good day ; they are not all like that . + It 's all right here . +That 's what people here do . +It 's just life . +I would say both . + I just did nt show up . +We are still going to go . + We just do nt know which one . + IN THE COMPANY OF WOMEN . + But I made it . +We never think we are out of it . + But this is A . +It is , at times , as if there were no President . +He 's back now . +I do nt think it will take more than a year . + Now we are just the same . +I just want to have money . +I did five years . +This , too , is New York . + He said , You are night and day . +All the while I will know that you are there . + I did nt know , he said . + But I was used . + I did nt know it was on , he said . +But you have to see this through . +I was nt used to it . +I do nt think people will . +I did nt play well last year . +If so , which team ? +But they do now . + You go back . +But not last night 's . + It 's right here . +Most people do nt even know about us . +Or those I do nt like much . +He was there on business . +But I can play with it . +They just have more money . +You know what , though ? + He called me up . +Her work was going well . + This is not over . +I do nt want to do that . + I just want to work . +I could nt , and I would nt , say . + We could nt take that , he said . +But after all , that 's his game . +I know he can do it . +That 's the way it has to be . +I never would , she said . + I did nt know it would take so long . +Five years in a world without you . + THERE go the people . + How was your first day of school ? +But she may not be here for long . + I might not like them . +Who can say family ? +There is no next year . + They could have a day for me . +Those that have any . + But I could nt say no , never . +What 's the other one ? + But you know , I would nt have had it any other way . +And this is as it should be . +Because you never know how long you are going to be in this business . + This is not about money , he said . + What if I do nt like it ? +He said as much today . + Well , she said , good for you . +That was good for him . + I do nt know if people will like it , but we may have to do it . +They were her only children . + We did nt know where we were going . +It did not have to do so . +And you could nt say no . +You will be right back here with me . + I do not . +More than a few , though , do not . +I had it all . +The show is also too big . +Where is all this to be found ? +I did nt want to be around other people . + It was like the old days . + Not a one , she said . +So what 's left ? +It 's all I can do . +It was nt called . +I never had to before . +Day after day it was like that . + What would these people do without them ? + They say I make too much , she said . +How was their family life ? +Do you know what we did about it ? + I never do that . + It 's four or five years . + It was They who were out to get Us . + It 's like the police . +Most people do not . +What more can one say ? +This is our home country now . +Who is the director ? + What was time ? +He was the right man at the right time . + We were nt out there . +And well she might . + I did nt know where we were going . + And just like that , we are back . + I have children , the man said . +No one could say how long it would take . +But that 's just how it is . +So it could be two people ? +But Which Team Is the Home Team ? +What would they be ? +And these are not good times . +That is nt the way it used to be . + What do they say ? + This is what we are going to do . +And I did nt make it . + I think I did . +The people do nt like it , and you are not good at it . + How high do you have to go ? + He said it up and down . + We are well on our way . +She does nt know how she 's going to do it . + It 's all right , I said . +It is not their business . + Not now , though . + He did it all . +In the first game ? + I think he was here yesterday . + But I do nt see it like that . +What I do , they do nt . +It does nt work , it does nt work . + People who work with her know that I may go off , she said . + How did they do that ? +He has , after all , been there before . + That 's not good . +They go out and do them . + Or : I do nt see where you are going with this . +And what were they like ? +So what 's he to do ? + Women have to work . + It had been too long . + At the end of the day , it is my house . +Do I go left or right ? + But , he said , I just get on with it . + They are out of school . +And for how long ? +What about my life ? + It 's a home , not a house . + That 's not new money , he said . +That time did nt last too long , she said . +But if they do , we do nt know about it . +The game will never be what it used to be . +There just is nt any . +It 's against the law in New York . +For what would he say ? +But this is part of me . + Who says we did nt ? + It was just one of those days , she said . + And I did nt do it . +And they were all going around each other to him , and that 's not the way it should be . + We do nt get to . +Well , first of all , people see me . +He did not have a good time . +It says it all . + You are the what ? + But that 's three . +We do nt do business this way . +The world was against us during the war . +That 's just the way of the world . +Or he may not . +Are nt you an American ? +Get me out there . +She said very little . + I would nt want to go back to the way it was . + You have a million people there . + They are all good . +They were nt all white . +But you know you are going to get the other end of it , too . +And he might still be . +And I do nt know . +We like our team . + I was in the States . +Not every day is a down day . +This time around , it was all about business . +Come on over here . +That 's not part of our life . +They know it , and so do we . +It may now have to back down . + People have said they are not the same , he said . +That 's what I used to think . + They were very good to me as people . + So you go with them . + And that was some time ago . +What had they left ? + I could not -- it was just too much . +I know you are still with me . +But it is not for play . + And we did that . +Who 's going to get me out ? +What more do you want ? + We made him say no . + This is the way we see it for the time being , he said . +I know he does , but you do nt when you do that . +We are a national place . + But they did it . +He did nt know ? +And that was about it . +They would nt make as much money . +Next week , New York . + It 's like one big family . + I would never get political with them . +What to make of all this ? +And to the world . + But they should nt be . +What of this year ? + You made the team , he said . + You , you , you and you . +But this time it 's at home . +In the back is his home office . + It did nt work out well at all , he said . + But what about this one ? +One could say the same of her . + You do nt want to go , do you ? +To some of us . +Where 's our play ? +Well that 's right . +They do nt even want to think about it . +It 's just not going to work . + His very first one . + That 's how I take it . +You would nt have . +Or if it will . + But that does nt work . + And it was like , Then I say . +It was a good way to end the season . +Then you get down to business . + The game 's over with . +I think he would . +But these are not good times . +Other times , not so much . +And that was it , he said . +We did all three . + What he says and does is what he is . + Most women are nt like that . + Do they have a long way to go ? + But it 's not the house . + I could do so much . +I do nt have money . + The market 's high . + But time did it . + This is a game . +Not that I did . +What are you against now ? +It 's all new to us . + How 's by you ? +It 's a big place . +I did nt say the best . +Are you just like them ? +So she called the school . + But it does nt work all that well . +And they like the way it is . +I would think not . + But at the end of the day , you can do only so much . + What do we do well ? +How do I go about it ? +But I think I can still do it . +The company 's president , John A . +This is not like those . +It 's still a long season . +How about the Big Play ? +We will do more . + But he also is nt going to do that two years before he has to . +But what about you ? + Now , you think it is nt very well , he said . + He said , I have never been there in my life . + Now there will be only one . + And back then , I was part of a department . +It is show business . + Could You Use More ? + See what I have to work with . +It was like being in New York City . +I do nt know who it is . + But we could never make the first . +I did nt know what to do with it . +I want to play for one more year . +A : That could have been in there . +For most , it 's all but over . +She had the time to play music then . + It 's just what I say . + He does nt even know where it 's going . + No one does that but me , he says . +Most people never even get one . +Not that they could nt get into a school at all this year . +I do nt have it . +And then we used it against them . + I was like , Come on , get it over . +What did you like about it ? +What can I use to get them off ? +Was nt she good ? + Who Would Come to School ? +What they should do is work with us . +How is this so ? +They know that , he said . +They made it back today to see their own country . + This is new to us . + I do nt think this is over , he said . +And now we are down to one . +They want to know : are you still one of us ? + But she did nt . +That 's what I have said . +No one should be . +They do nt have to . + Now we have this , but so what ? +They said , What do you want ? +We do nt think he did . +We get to know each other very , very well . + What more can we do ? +It just is nt any good . +First : That may be . +That 's it , then . +You have two children . + We want children to know about her . + And that 's the way we want to be -- a team . +Now it has come to you . +No , it 's not . + They would get state time . +There still was time to get out of the place . + What do you think you should do ? +So the police do nt have time ? +And that 's about it . + So he did nt do it -- I did . +What people do in their own time should be their own business . +I did nt know you made money . +It can go the other way , too . +The country was at war . + I do nt want it . + For us , this is our life , he said . +Do nt make much of it . + I just had one a few days ago . +I make it about the work . + That 's about as good as I can do here . +But at the same time , they want money . +We are a long way from that . + I do this for them , she says . + But you want it the right way . + I did nt know I had . + I do nt get it . +You do nt want them against you . +When do you see that ? +They all say , How it is going to end ? + That 's not all there is . +It 's just not in my game . +They go at it . + I had all of them . + But they are also not the best of times . + If it 's my time , it 's my time , he said . + But they know that it is . +I have not found that to be the case . +We had this one . +We could nt have that . +The show , . +Now it is more than that . +There will be no music . +But I know I would never use that . +Some days she does not . +If I do nt make it this time , then -- next time . +That is in public . + But we still have some . +He had , he said . +So what 's up for this year ? +So I think that 's it . + I do nt know how old they are . +It will have to be . +I do nt think they did . +And then you will . + Get this one . + We are going to get one next year , too , he said . +There were five children in the house . +So we had to go down . + I never did , she says . +The same people who are good are not good . + But where is there for me to go ? + It 's show business . +I think that while that may have been the case years ago , I have not found it to be the case now . + I think they did have some . +He said , What 's going on ? + That 's what it 's all about , he said . +But they will now . +It might be a year . +I think I did more in that way last year than I did this year . +It was just to get through the game . + That 's what they are good at . +That 's all they want . +How could we do this ? + He said , Because I like it . +Who do I want to be today ? +How do we know all this ? + You , too ? +You have nt much time , though . +They go out there and do it . +I said it last year . + Now I know people will just use you if you are good . +It could nt be . + Who 's he when he 's at home ? + There are other times when we say . +Now he has four . +But here she was . + I said , How much do I have to put up with ? +Well , they have it . +Because he was good to us . +I want to know how to do business . +But you would nt know , would you ? +This is nt about money . +But how could it be ? + He made a way where there was no way . +It may be your state next . + It should have , he said . + This was a first for me . +They play off each other . +The women can take it or not take it . +What they are good at . +We did nt get back . + And people like it . +They want to know how good they can be . +You are so good . +I do what I want . + What 's in here ? + How do I get down ? +It just would not be with him . + I can do this . +And what did they say ? +They do nt know one another . +I do nt know how to play just to play . +What will I get out of it ? +Like your children were . + We have no money left . + If I could nt play the same game , I was nt going to play . + I had the best time , she said . +I think he is . +Do you know the house ? +What do you like most ? +Who Said It First ? + Where do you want your money ? + Last time , I was nt . +She does nt want to know . + How long does this have to go on ? + They might , he said . +Then there were three more in another place , and four more in still another . + And it would be good for business . +And now you have it all , do nt you ? +But that was a long time ago . + And I said , For how long ? +We had it made . + The President said , Did you make this up just for us ? +There are very few people who can do that . + I have it at home . + I want to be like that , he said . +And then one day . +This is not the way . + He 's just had it , he said . + I could have more , he said . +I had a home . +They still have a long way to go . + Well , now they can . +And now , it might be over . + I have more time with my family , he said . +What could he do ? + Little did I know you did nt have to . + So is this court . +It was also about family . +If it was over , it was over . +She is here now . +As good as new . +But did nt we all ? +Even Federal law does not . + I did nt want to know , he said . +So what do they do now ? +It 's a high day for us . +Was the game a good one ? +That was our game . +But is that good ? +But there was still work to do . +And no , I do nt at all . + I left school to work . + I do nt like it that much . + And you show your work , right ? +Just have to make the best of it . +ANOTHER DAY OF LIFE . +He had to do it , he says . + It 's in your country the same . +I do nt know that I said that . +After all , how could you ? +It could have been two , it could have been four . + It can come back . + We are used to him . + But they do . +There is no war . + That was one . +It might work over three years . +That 's what he did today . +It 's made for me . +It was the way of the times . + It was around us . + It 's one down , one to go . + And she had been so good all day . +But it can come over time . +And I do nt think the people here have . +That 's what its like here . + If you do , they think you are too old . +What 's one day ? +It 's just who is the best team on that night . +Where do they think we are ? +They make a good team . +I have children , so I know what they like . +Not a one did . +There could have been many more . + On the street . + How good could he have been ? +A few years ago , it was more like two to four companies a day . +How well did this university do ? + He would have been right there . + I did nt even know where it was , she says . + That was us ? + But he made it . + It is going to be good for us . +They like it in the States . + What if They are Out There ? +I like it , he said . +If only it did nt take so much , well , time . +What do I say ? +I did it years ago . +And it has nt for a long , long time . +We all had it . + We are never going to make money here , he said . +What do you do ? +No they did not . + We get them all the time . + This is the way it is . + No , I would nt . + Who were we ? +Where did they all go ? +This is a life . +And that she was at work . + Some still do . + I do nt know which of the two is best , he says . +It was not , she said . +When it 's over , it 's over . +But this is not the end . +And much much more . +Then he just left . +They play that game because they have no other game . +It was more like So who was there ? + How could you do this to our family ? +They make music because they want to . + This is where my house is . + It is just going to take a while . +You do nt want to see that . + What are we going to do ? + But that 's not what 's being used . +And the game is back on . +It 's still on . +And left two three and right two three . +This is where we want to be . +Where do you put it ? + If there is war , we will be here . +People say , Well what do you think ? +It 's good you have three days to get used to it . +You have to play who 's there . +But there have been times this season when he has . +But she was right on with the law . +But now there 's more . +They are not the first . + There are nt any , he said . + Is it all over for me ? + I did nt like being in the city . +It 's not to be , it 's to do . +We know too much . + Show business is a big part of our business . + And he said , There 's no way you can do it . + I was never just a big man , he says . +You just want to get her out of there . + It was nt about the money , he said . +How could I not have been ? +And this is not new . +It 's over for you . + I just do nt know who they are . +How much more could the state take from them ? +But for the most part , they said , there was no way out . + The man on the other end said he would come down . + I did nt want to go , Mr. White said . + Or Are you high ? +But did it do any good ? + No , not now . +There was just so much more that I could do . +But he has a long way to go . +You do nt know how he will come through that . +He has been there for three years . +He was the man around here for a long time . +Some people just have to be in New York . +This was nt like her . +It will be what will be what it will be . +It had not , she said . +It 's just not going in . +Most of these people are women . +That was the only way he was going to get me . +He was not part of it . +And it does nt have that . +Come what may , he does not . +He never found it . + I do nt think so . +Then you were nt there . +At times we were nt . +I just want to be the best . +The President could do it . + Not that I know of . + I like our team , he said . +Out here , not at all . +I do nt own one . +I know where I come from . +How has it been ? + We have this law . +You just get up . +But now is also the time to say : so what ? + There is so much to see and do there . + I still have to do that . +Our family will never be the same . +But they did not see it . +Few people were around . + I do nt want to know . + People can say what they want to say about him . +What was out , was in . +They just work with me . +But she was nt there . +And so he should . +Two are for children . + We are just one part of the city , she said . +It was a man . +It was all I could do . + This is as good as we think we can get , right now . + I can only say where we get it . +Right now , it 's like a new season for us . +Then we found it . +And your season over . +You know , you say , How long will we be there ? +Not at this time . + Do nt know , she said . +You should nt do this . +So he said , Good , then you know what to do . +So there 's four . +If they can do it , I can do it . + And that 's not good . +Those who do nt are against it . + Now I want to even more , she said . +It 's just for show . + We get people from all over the world here , she said . + This is not good government . +And that was that . +That 's my team . +No , I would not do it . + We do nt want to go through another . + One game is the season . + You see , this house is new , she said . +There are too many old people there . + So what is that ? + We would go if we could . + Not as much as last week . + There 's not that much that I can do , though . +That 's what people have said . +But I could nt use my own office . +We are going to see how good we can be . +It has to be him . +It has been more than five years . + I just said no to him . +What is the family to do with him ? +Who has time for that ? + We all know that . +They say that new should not be like old . + I would have never even made it to our second house , he said . +We put so much time into this place . + That 's where we are at . + How about the Police Department ? +I would say a school . +All we had to do is make them and we did . +Should we or should nt we ? + The other day I said : I have no time . +He 's not even going out of the house . +But would nt you know it ? +It was nt very good , what I said . + She said , I can get to work on time on my own . +And , no , no one can do that here . + I like them all in white . +This is a school night . +Because they can have it . +I just have to play through it . +And on the other ? +It 's only money . +They would be right to think that . +She says she was good at it . +I did nt see him one time , not during the season . +Who Is At War ? +It made me think , What if they had ? + It will be a very good life , I think . +That was nt the game . +But it just was nt so . + I have to get my money back . + I did nt think about it , she said . +You can do it . +That is the game . +How does he come down ? +But I was nt one of them . +But you are in New York . + I can do that with the best of them , and I have . +He 's against it . + It was a big night . + Did I get it right ? + He never said it to me . + We said we could nt do that , he said . +So you do nt want to play around with this . + So I think that 's what made them think of me . +Well , go on . +And there never will be . + But he does it all . +Well , as for me , I made the best of it . +It was his first time here . +Did they know how to use them ? + We were in the game . + I could nt take that . +But I did nt know what . +What if they do nt make that much money ? +But so did the United States . +He did well in school . +We all have to do it . +They do nt want him here . +So where was it ? +I said : All well and good . +I do nt see them . +But you have to do what you like to do . +But what was his music like ? + But it 's not us against them . + But that 's part of the business . + It should be all right this time , he said . + I think that 's what this is all about . +I can say this . +I was the only one left . +He , too , left the country . +And in a way he still is . +You are going to be out of the game . +It 's the same with them . + They are the best at what they do . + It 's going to be night before they get to them , he said . +All right , the war is over . +And there are many . + They come to be this way . +They also have three children . + Now I know what I have to do . +It was time to come back and work on the show here . + We could go , she says . + No , that would nt work . + There just was nt too much I could do about it . +That is the case here . +Do they still do that to you ? +What is a President to do ? +He was a good man , a family man . +Then it was never about money at all . +But they did nt want it to go to court . +How could they not have been ? +You have to go way out of your way to get there . +That 's the case here . +We are very high on him . +Because he 's that good at this . +I have been with you for so many years . +But we do nt have to like it . +Is that what you want ? + No use , she said . + I do nt know the man , he said . +You want them back . +Most people do nt see that . +There is nt one . +If they do not , they get less the next year . + No , no , he said , We were going to do the people . +You know , we are good at it . +There will be no war . +I want it to be . +I think he has that . +My office was next to his for about five years . +He should have called . + This is the best day of the year for me , he said . + But I think they will be . +And it was good for us . + I want to do the best I can do for him . + He 's not that good . + Because I know she can do it . +I could nt have both . +See what I have . +That is our life . +Now all all ? + Some of them called me , he said . +No , they did not . + I do nt , she says . +This is it , I think . +That is a good day . + Come over , he said . + But that 's what we did . +Where will she go ? +If he did not take it , he would never get it . +Go back , go back . + We work for the President of the United States . + He has nt . +Now , here I was . + I want to go , she said . + It 's not because I do nt want to . +I do nt think you could do that today . +I get to see another part of him . +When do we want him ? +They did nt know what to do with us . +Like the time we . + We are not at each other . +Did nt even have to get up . +You might think it would have . +For all to see . +The day will come when we will . +That 's how he is . + They do not have time for it . +How will we get where we are going ? + There is just no there there , he said . +They will not be going . +She has been at the university four years . + You were here last week , right ? + This has to come first . +But he also said , Never say never . +It 's about to end . + They would like more . + And she did that . + It 's just so good . + Time is against us , he said . +She did a little of both . +And not for a long , long time after . +And I said , Well here , you can have it . + No new business , he said . + You see me , she said . + I would nt go back to those years , she says . +No one at the school has much money . +How did she do it all ? + I do nt want to say that at all . + You did it , she said . +Now get out of here . +The best part though . +There is no then and now . +I still want out . +What would be the use ? +And to what end ? +But I could nt use it . + Very , very well . + I would do it , too . + You get used to it , she said . +Do you know what they were ? + But we have no money . +HOW LONG -- One day and one night . +I think about him all the time . + You work for a place . + And they do . +But can it make them ? + We do nt know which . +It is all we can be . +Five are in the United States . + A little , she said . + It could be next year , he said . +Our time has come . +They all know him . + There are children who go there , too . +So , who 's up ? +I can do it . +No time for that . +It 's how they do it . +And after you get them , you should get some more . +How did the state do it ? + There are more and more of us . +Well , you never know . +But I would nt have been that way . +And today , it is not . +They could still be there . + And I do nt think we do . +This is our country . +Have nt we all . + It was nt like we were even here . + Did you have a good time ? +But it will come out . +Today she did both . +People know it 's there . +We are going , too . + This is for the people . +Where should we be going ? +So what does she want ? +We did that last week . +They now take two to four days . + It 's not just here , it 's in life . + If we can do it , they can do it . + That 's not this . + I said : See them ? +But what is the way ? +It 's all right with them if less is less . +They can do what I did . +He had to be here . +But we are a team in a team game . +And left it at that . + And then it will be all over with . + I do nt think we have . +And that would not do . +I think about it every day at work . +I do nt know how they will come after me . + This is right for that part of the market . +We can be very good . + You still see me now ? +He 's there for people . +It was last year , not this year . + I do the best I can , she said . +But do I want to get into it with him ? + But I did nt do too much , he says . + We know that some of them did not make it , he said . +But a home is a home . + If I did , I do nt want to know . + It 's the same as yesterday . +They want it now . + Would nt it be more even ? +This is my last season . +After all , do nt people know that there 's a war on ? +She never even called me back . +But he was even more . + Not even that , he said . +She should have children . +I know it will . +How do you know people are who they say they are ? + But it is over now . +That 's what I know . + I do , she said . + I said : There is nt any time . + And they are good . + That is nt the case . +And it 's like , What about us ? +It was like night and day , she said . +And so he is . +But not for a women 's game . +Yesterday was not that day . + It 's only the women who are for him , he said . + They do nt say so , but you can see it . +Other than that , I do nt think too much about it . +And where are you ? +There should be three . + I do nt know how to say no . + I know he could nt get me . +That may be what we have now . + I want my house set , so that when I come to it I have it the way I want it , she said . +And who is to do it ? +He just has to get used to our game . +But it did nt work out like that . +Is there more I can do . +And I do nt think it 's a good time to do that at the end of the year . + He does nt . +It was not just one country . +Two or three might be all right , but not five . + Did they come and see my show ? + It 's not just him . + And he says , So are you . +No , he is nt . + But that was about it . + You get used to it , but you know what ? + But you and I know this is not about show business . + There 's a big war going on . + In The New York World . + No , I did nt . +People like to own a home . +But I do nt get life off of it . +This was a war . +It was my home , he said . + He was out , she said . +We do nt want one , and they put one up ? +HE : I do nt know . +Not for me , not at all . + I think only you and I have made it . + Did nt we all . +For the most part he 's there for us . +It did nt work then and it 's not going to work now . + New York is your home . +He never had it . + It was a little new . + I did nt want to do that , she said . +I can not use . + And what about you ? +Or a Take Our Children to Work Day ? + It may be time for us to go . + We just want people to think , he said . +The city has come back . + But it is of its time . +And set up he is . + Well , she is , he said . + It was the best day of my life , he said . +It was over well before that . +And there is no set . +I do nt like what it 's come to . +I do nt see them around as much . +But not every night . +And I want to show that to you . +How can we do so ? +We do nt know what these people were like . +To the United States ? +I do nt think that 's the case right now . +Say , Do nt I know you ? + That 's the only one they know . + They think they know what they want . +It 's his money . +It 's not a play . + He has nt made the case . +So it 's been good . +You want to see every game . +You want to go with him some day . +They have the right to . + I do nt know who left them . +And now they are back . +Who 's to say that ? +Still , he did not see much of the state or the city . + There are too many of us , she said . +But this was her day off . +But it also has more to say . +After all , it was nt his money . +They did the best they could . + There 's no way this team can do that . +Because they have the money . + I said , Where you from ? + That 's how I put it . +That 's because of him , not me . + Or it should be . +So what can I do for you ? +How can you say that ? + She did nt get any of that . +And I do nt want to go back . +There 's more to life than that . +It 's more than I had five years ago . +We should -- what ? +Well , what 's new ? + I said , What can we do for you ? + I said , I want to be with you . + That could have been me out there . + He 's the one you go to . + We are going to take our time . +But we are just going . + The case is over . + You do nt even think about it , she said . +The other two were not with John . + We would nt have been there without him . + We like white , John said . +I did nt think about it . + No , no , I want to . +They want more and more and more of it . +Never more so than right now . +It was nt them . + He does nt say no . +It 's more of a business now than it used to be . + And she does it , he said . +What did they get you for ? + Each does it his or her own way . + Man , this is New York , Mr. Long said . +I do it every day , a few times a day . +You have them all season long . +It was nt a big part . + They will have it . +I know I would . +It does nt make it right . +Think that might be the way to go this week ? +Now they are about to part company . +They just do nt know . +It was just old . +They just own the place . +The market 's so big . + These are our own . + How do you get that back ? +I like it like this . +I think I will go home now ? +You see where the money is . + Does she know the show ? + I do nt know , you might be right , he says . +The new Government is to take over next week . + It was big for the team , too . +What 's she up to these days ? +The city is now their home . +So , back to the office . +It is your right . +But no more , she says . +All may be well in the end . + We did business with each other . + What is , is , he said . +You do nt want me to see what ? +Or just play on ? +They do nt want this to end . +But we also might have three . +It was just -- I do nt know . +Are there such companies ? +I think well of him . +The more you have , the more you want . + I should not have said that . + No , this is not so . +Just what was all this ? + Do you know what he said to me ? + So I did it . +By then , so did I . + I do it in my own life . + If he could do more , he would . +Would you go in ? +Last one , here it is . + I think we should go down , he said . +They should nt do that here . +But not this time . +I never had any home life . +It was nt what it might have been . +So it 's today . +It had to be that way . +So I do nt think that at all . + We will get in between every one of you . +The police do nt even know us . +Or so it has been with me . +I do nt want him . +This did nt last . +What will be left ? + Is nt that good ? + We did nt go to see her for a few days . + They are out in the street . + You know what it is , she said . +You could get life for that . +Right now , it is not on the court . + I do nt do that . + I have one in my office . + For how long ? +And , as they say , much more . + There are days when I say , How can we do that ? + It can work and it does work and you can make money at it . +And I have a big part . + That I did nt know . +If you want to go , you go . +I like my music . + Now what do we do ? + Same old , same old . + I like to do it , he said . + Today in court I did just that . + What is with you ? +But it is the law . +A : At the time . +We do nt have any money . + Is nt he a director ? +There is so much here . +See what you can do with that . + I just do nt know . +One game does not make a season . + I know that 's the business of the game . +Because in the end , we did . + I know I can do that . +It was so much about now -- then . + People can think about it this way , he said . + I think we can make that work . +No , I did nt . + Do nt you want me now ? + And he said , I will . +If they have to be there , they will . + Today was a good day to come out of it . +Where does all this get him ? +And it does work well . +He did nt want to do it . +She 's in a man 's world . +I think we do . +You have to be on your best game . +There was to it . +It 's not political to me . + But it did nt work this time . +They could have said he 's out for the year . + This is the best day of my life , she said . + How do I get in ? + He 's been around the world with me . +It 's going good . + I never called them , she said He called me at home . +A : I know that . +That 's for other people . + He was my only one , she said . +We think it does . +But he never did . +They said it had long been so . +But he does own some of it . +There 's not much I can do . +I was on it yesterday . + It 's a part of my life that 's over . +There is more to it than just money , though . + Then he said : So what 's new ? +Many more , he said , had not . + But life will come back . + But it is more . + But there will be . +He said , That 's right . + You think it 's over ? + It 's not over , she said . +Because he is what he is . +But it 's not the end of the world . + I say , I do nt think so . +And there they were . +It may not be what you think . + And it did nt work . +And so we did . +And it did , week by week . +The season for them is long . + I said , This one can . +We are just not there . +I know my people . +That 's the way we play and we are here today . +It 's time out for both of them . + It did nt go over . +But still , it 's your money . + So it 's going to . + I was just in another world , he said . + And I said , Well , how are you going to do what you want to do ? +Would he like to go back to center ? + It 's all here . + If there would be one , it would be me . + You do nt , he said . +He 's day to day . +There 's not going to be any more of their work . +I do nt have much time . + But he did nt . +Her office is in New York City . + I know these people , she said . + The team did very well . +Now , she is one of many . +What does he do , what does he say ? +We can do it . + I do nt want war . +They are there , and they are BIG . +And that 's our life . +My life was his life . +That 's all right with me . +They are still being said every day . +Do nt see it ? +They can also come at any time of the year . + Too much of that could put people off . + Said all about what ? + But it 's for the good . +Would nt you say ? + I want to go to school , he said . +I want to get there . +The music was nt being used well . +It did not work out that way . + We do nt know who will be next . + I like the program , he said . +This is one of those years . +It was more than that . +What 's he going to think ? +You do nt know where it 's going . +Where does she go each day ? + That 's where I go . +And your money is still no good . + He is not for it . +Is it too much right now ? + I could nt come . +But you can not . +He had no right to do so . +What would they think ? + I would nt know where to go . +I was going to school . +It was just one game , that 's it . +For years , not many people did . +But at the same time , the music had a life of its own . +You have your own little world . +But this is the second season . +He did nt do that . +What was it used for ? + What do you think about when you think about him ? +So much so , he said , that he does not see much of his home . + Who Are These People ? +Do you use it much ? +There will never be an end to it . + The more you think about it , the more you come around , he said . +Do you think about them ? +Now they are , he said . + What does he do ? + At other times she did not . +I like to do what I want to do . + I said : I know , I know . +Do not make one , he said . + I know my people , he said . + Where do I put them ? +But we will never be the same . + Today , you are going home . + The house is like that , too . + I do nt like them . +Come on , now . +But would any of them last more than a year or two ? +How could he not ? + They are the law , he said . +And I have children . + I want to know how many people could take him out , he said . +But it will not last long . + I know , he says . + You know you are in a place . +Did nt think so . +But two is too much . + I do nt , he said . +And then they think , What was that ? +There was work to do . + No , but this is one of them . + I just want to work , he said . + The children , she says , are the one good part . + They do nt work for me . + I still like it , he said . +Was that all there was to it ? +What do they show ? +But they did that last season . +No one said no . +And there I had it . +He was one of those people who did not want to be at home . +And then she is nt . +Not that I do nt have a good time . +This is much more than a business . +We have a program . +Did nt like it too much . +We did all we could . + And I said , No , no , you should go . +The office said they are . +What should I use ? +I just come to play . + She was with a group of people , he said . + Then it 's no right at all . +I did nt want to go to work . +Go on like that . +Who are they , then ? +That 's the way she is , but other people are nt that way . +Not in this house . +You all know who you are . + There are not that many people still in the world like her . +I will be there . +But that was the end of his day of work . +They had four years to do this . + They did nt do much of that the first game . + It 's never been work . +He did not say how long it would last . +This may work out . +That 's the way he did it . + What year is this ? +And that is it . +Some people are nt like that . +I have to work , still . +But I do nt think they have . +If I did nt know , how could they ? +I just want him to do his work . +But that 's not right . +And what can we do about all this ? + I do nt want your money , he said . + He 's right . +I can see it in my office . + That 's what I did in this case . +We are a good team . + So be it , she said . +We know what we have to do and how to do it . +It should never have some to this -- but it did . + And After Life ? +We do nt want to think . +There 's going to be a war . + We go up and we go down . +How many is too many ? +The play is over . + They know it 's not the end of the war . +I have nt found any family . +I had to have one . + It 's not my first war , she said . + So what 's next ? +There is still a long way to go . +And to make more money . + He said , No , no , no . + So I could nt go back . + Then that 's it . +They know their children best . +He was last night . + It is nt any of my business . + They go on all the time , he said . +Today was his first day back home . + We play the best we can . +Who would say that ? +If they can do this , we can do it . +But it 's a public school . + And how do people know about it ? +They would nt have it any other way . + I said : You are the man . +I want out from under it . +And I do nt know what to do . +He will be out for a week . + That was how it should be all the time . +Just go your own way . + She just did nt think of it . +You know what this is called ? + Where did People come from ? +But we can get some . + We have much more say now . +I was up all night . +This year he will do the same . +But this is life . + We do nt know about this . +So he was put back . + Did we play well ? + We did nt want to do that , she said . +Is nt that life ? +What to make of them ? +You are just as good as him . + A good time was had by all . + I come every week , she said . + There 's no there there . +But it 's over with . +Two , do this . + Those days are over and have been for a very long time . + I like being part of a company which -- how should I put this ? + We are not , she said . + To me , that was the game right there . + So what did she have ? +This will be the last . + I know I still have a long way to go . + Who are these people ? +I have to go . + I know him from way back . + They did nt know what they had . +What do they think of us now ? +For now , that is a big if . +There 's only so much we can do . + What was I going to say ? + You want to get three . +That could be a big if . + But I can not . +They come in and do nt like what they see . + Not if you were in the business . +They are little , but they make my life good . + Who can say , he said . + Where do you want to be five years from now ? +They come to do business with you because they like you . + What do you think of white people ? + He 's not going to back down . + I do nt know who they are . + It does nt work , she said . + I have to do this , he said . + That 's the way it is . +It is about more than that , too . +And for the times . +What is the case ? +A year ago , he would have been out of the game . +There well may be . +The women have little say . +I want him to do what he said he would do . + It 's a long season , he said . +I , over the years . +And I did use it . +On time , he said . +We are going there now . + Here there is so much more . + It 's been going on for a while . + So all this is new for me . + This has to go back . + It was so high . +He said : If that 's the only way you play , that 's the only way you play . + And this one may be one of the best . + But I should nt have to do this . +Most have no children , and four of five are women . + His family and his company . +There was no national government . + He is going to be President of the United States for the next four years . +Just what is going on ? + Next time , she says . +He had called it right . +Have nt we all had days like that ? +But we do nt think like that . + It was because I did nt want to do it . +It did nt last year . +He did nt want to play . +Yesterday was more of the same . +Both of those are against the law . +I want to get back to that . +What are you going to do after that ? + What do you think of this one ? + But I set to work , he says . +This is not a play . +That , as I said , was in the old days . + What do I know ? +I want him out , and I want him out before he 's even in . + He just said , Well , what are you going to do about it ? + If she can just see it , he said . +It was her show . +So we know about all your work . +That is , if you want them . +That was nt the case last year . +Do they have to be ? +He does not want us to come . +It was the first time since then that I had time to do it . +I do nt think I want to be back here . +But this is about you . +Me : What 's that ? +That 's what we like about it . + No , but I will , he said . +Now it is nt . +What would that do to him ? +You know you are going to get in . +Is all of that right ? +I know I have . + They are very good , by the way , she said . + Not on her , he said . + All of them like me , he said . + He did nt get it . +As for this one ? +All I want to do is work . +They like what they see . +Just where does he think he 's going ? +It 's just time for me . +Not just for me . +How high does it go ? +Well , how can you ? +But here she is on her own . +In life I think he did . +And in the same season at that . +This game was even , on the court . +But there are nt no people . + I did nt think it was my last game . + We did nt know what it would be . +They did nt think I was going to go out of high school . +Because it 's so big . + Some people come down here the night before to set up . +They did nt like that . +And what 's left will be you . + That 's how big this is . +On or off the court . +They are the American way . +On who I think is good ? +They should nt have to . +Did any get to go ? +It 's still in the family today . + They made it up to me . +Did she want to ? + When people see it , they have to have one . + I think that 's a good team over there . +So does the women 's game . +So , they made one . + What 's today ? +But where we go , we go . +We had come home . + For us , there is nt just a today but a yesterday . + It could nt do that . +Here , though , that 's not the case . +Which is the way I would like to go . +It has been left as is . +We had a year off . +Who will get the next one ? + What Do We Do Next ? + We did nt want to do that . + It 's time , do nt you think ? +And it still does nt . + See what I can do ? + But the Government does nt . +I was like , no way . + That 's good for the President . +She did not have to say who . +But they come out . +After all , we are women . + Is that the first time ? +Most of them have been here before . +This was , after all , his show . +Most of that , she said , is from The People 's Court . +Just come out and play . +Only today it 's not just one at a time . +Today , he said he would not . + And it 's time to go back to New York . +Left , right -- It 's up to you . + Man , it 's not like that . +But it would nt have been that much more . + You did nt have to say . +But we are for it . +This is a game . +It was nt that they did nt like the place . +For the most part , no . +Will the United States go the same way ? + How can they say the war is over ? +But there are people who go back two or three times . + New York is a world city in a way no other American city can be . +But that night was not like any other . +What if they do nt know it ? +His time might have come . + Well , we could nt have that . +State 's is not . +They just do nt like it . + But they never said much more . + But one day there will be . + To be or not to be . +Do what we say we are going to do . + He 's all over the place . + He was a people 's people . + You have to , he says . +Or is there going to be no end ? +He did not know how many . +Not this time though . +What is it like being back ? +If not , he did not . + We are as good as they are . +Can they do it ? +I have a right to know . +First , you have to know what you want . +But if we could , where would you put it ? +Not that she has time for more . +It could nt have been that long ago . +What will come will come . + They did it best . + Do nt do this to your children . +That was all good . + I should have never come back at all . +That is one too many . +The music 's good . + We do nt have the money . + You do nt even know where we are going . + Women just have nt put the time into it , she said . +All in all , it had been good day . + Not this week . +We think it does not . +But that is what he is . +They play the way they want to play . +Get it off the street . +And we are going to do it . + They are what they are . +And people know it . +I do nt think he did . + I just did it , she said . +We have nt had those . +The second , not so much . + They were not from here . +It 's for those who work every day . +They were all here . +He does nt even know what 's going on . + But never this long . +There is more on the way . + He was nt good at all . +That 's what it 's all about . +What do I know about this ? +Are nt I right ? +But this is not the way to do it . +How can we do less ? +I want the best for him . +That is what is going on now . + But I think all of this is good . +All but one are women . + But we want to be here . + So which is it ? +That 's your work . +We just have to make do . +That 's what she did . +I did nt know where I was . + That 's the way he does it . +It will take a few years . + I think it would be good to play both of us at the same time . +How do I get some of that ? +Who or what were they ? + We are what we are . +Where is that money ? +And it should not . +That was nt us out there . +I do nt have any say right now . +But this one is still here . + It 's on them and it 's on me . + Are they going to work ? +We are like a family here . +You do nt see that one every day . +There is no play street . +You just have to play . + It is all very new for him . +I do nt know ? + A very , very long way . +I just left home . + But we are in a new world , we are in a very new world here . +What has the world come to ? + But , come on . + Our time will come , he said . + You would just not think of that . +When you know , you know . +It 's about the team . + Which it was . +He has nt left here . +Would he want to be ? +From that time on , that 's how it was going to be . +Last time , it was the same as any other day . + I still want out . + No , I said . +Well , you know , any way . +Such can not be said of New York today . +Did she have a right to take it ? + You have less money to take home . +We are a family . +Just how much so ? +They do nt want to see us even . + I get all A 's , he says . +How can I make my own ? +How do you know ? +Still , he did what he could . + You know what made me want to be here ? + We are not there all day long and part of the next day . +And I will work with him to do that . + Where do you go to school ? + But those days are over , he said . + That has to come through for us . +How can it be like this ? + How in the world did that man get where he is today ? +What does this say ? + We are too old . +When you have a big game , you want to play well . +I think people will see it . +What are we going to do about that ? + That 's what you are left with . + It is a part of me . +Have to go to school . +We will do all we want . +There is also the work he does . +They could nt say . +But they did though not much ) . + He was the first . +It 's , what do we do with all this money ? + I do nt even want to think about next year . +There are new people who are here every day . +As a people , we are . +Or have you not found it ? +But how did he know ? + I did nt think it would take off like this . + They were out . +Our time is up . +It 's what you do when you get here . + Even today I still think of it that way . + I do nt know where the money will come from , he said . +They are out to get me . + I had it down . + The children of this city all come here . + When that is going to be , I do nt know . + I still want to play . +So it is with the president . +It 's my team , after all . +But in its place . + And he would nt back down . +Did the company make money ? + Well , what does she want ? + They are not a good team . +This is my country , my people , my family . +But , we want them to make money . + Can we say the same for you ? +It 's all where you see it from . +It 's that big . +It may not have that . +I was there every day . +Now I do nt know how . + They had no right to be there . +That 's the business we are in . +Can he get used to it ? +Then there was another one . + They are going to be up for me . +But that is not the law today . +It 's business , business , business . +The big one is : What now ? +They should have been there in the first place . +I show him what I do . + Take them , he said . +On the second day , he said to her , Come to my house to work with me . + Well , no , it was nt . +For most of the children , it was the first time . + But it 's not us . +You just want to put it down . +They are all like Where are you ? +What did he do ? + It is the first one to three , not the first one to one . + I like my work , he said . + But I do nt take them more than I have to . +It 's not because you do nt want to come in to the office . + It 's the city . +But they can not . + You just do nt know how it will play out . + Next year will be the year for women . + I do nt like the play . +I set off one against the other . +And it may be their market will come back very well . + It 's big business . +But , you know , you get used to it . + Did you think about this ? + It 's all the time , all the time , said one . + That 's what I had to do with the show . + I have to go through this , she said . +That is just one put . + I said , Come in . + One year , he said . +But it did nt have to be that way . +He did the time . + They are big ? +Does it have to be one or the other ? + This is a long season . +There 's no way out of that one . +Not in that world . + He 's not about to make it now . +Do you have a home ? + But not like it used to . +On some days , it 's one , two , or three . +To me , that said it all . + You have to play the season out . +Who has to be out then ? +And I did it today . +But now we can do it . + But over all , you have to say it was a good day . +He will know what to do . +I do nt like to think about it . +Was that the right play for West ? +Then we will know what to do . + This game is over with . + It was the first , and last . +The first year that was the case . + That has to be the law . +You can do it This is it . +These are new people . + You have to be in your own world , he said . +But will they go up ? + Going back over this . +I think this is it . +It 's a good team right now . +It 's like family , she says . +It was five years ago . + I think this was good , though . + This is our day . + This is the way it should be . +But they do nt want to do that . +We work at it . +And that 's the way you do it . +Do what you can with it . +He said to go home and think about it . +But today it did . +But I just did nt have the time . +All it is is money . +I know where you are going . +I think he 's good to take people off the street . + How could we get this out ? + His program is still in place . +Well , no , not this time . + I think I can do that . +These might make your day . +He was in and out of the house ) . + Do we like to do it ? +But is it old ? +And that he does . +So what do we do next ? + Then to New York . +He is us and we are him . +That 's what I want to have . +You are not in the way . +That 's what he said the other day . +But what 's in it for me ? + But it will take a long , long time . +He does that well . +That , he says , is no business of the Government . +Not at all , I say . +If it were nt for him , it would never work . +How do you get it ? + Is nt it a good day ? +Where is my world ? + But that 's the way it should work . +All those take time . +But I do nt have another one . +Many people had to work . +But I could nt think that way . +So now what are you going to say ? +A second is music . + My home is my home . + Two , he said . +These are her children . + That it is . + I do nt think about it . +After this , you are on your own . +I did nt want days off . +No , no , I never did that . +You do nt want to be the same . + He said he had to . + People want to come here . +But the times were right for it . +Well , no , I did nt . +That is what I like best . +This is the only place I want to be . +I did that today . + I was nt home , he said . + And what did I do ? +Not only last year , but this year . +But they know what we are going to do and we know what they are going to do . +They just want to be right . + I might as well get it on . +It was the people . +He 's been there . +It is not the way we like to think . + Then we said , you know what ? + But they do nt know how much they have to say . + You should get it . +That 's what we were . + I do think she 's the one , he said . +They are just like us . + She does nt know who he is . +The state was up here and the people down there . +It is not the way to go . +And a high one ? + How much do they take ? +But we are still here , and they are still here . +So he left the game . +But just a little . +But this is how we have to do it . +She said she had no time . + So where was it left ? + She 's still here ? +Just what do they have ? +You just have to get on with your life . + For a long time , he said , I was just . + Are you with me ? + That 's our show , he said . +We do nt do it right here . + If you do nt have very much , you have to think about it . + The three new members did nt . +Children were back in school . + Do nt think about that . +But he says no . +THE LAST OF HOW IT WAS . +People are going to be the way they are going to be . +We do nt know , he said . + Now I know I do . + He 's the second man from the left . + To them , I was The Man . +But it 's not a game . + It 's only one week a year . + We are used to this . +We just are nt good . +I do nt want to get into what he could do for us . +The company was very political then . +We are in a new world . +And so do his children . + He never said , You are right . +They now have three children . + That 's the only way I can see it . + No , it is nt , he said . + He said -- and I said , but not much . +It is nt so many years , as it is too many years . + My business is my business , he said . + We know this is not going to work . + You have two . +You know , I did the four . +Now , this is what I do . +But for years it did . +But who are these people ? + I did nt even know about it , he said . +How long did he work ? +Do nt they have a life ? +I want us to do well and I think we will . + You can for a while . +I do not know how to get any . + We want him back . +You can make it . + Here 's what I think that is , he says . +But that 's the way I set it up . +They do not know where she is . + One is her . + He did nt , though . +But I will if I have to . +Until , that is , they did nt . +The House does not . +There is so much going on . +The money is only part of it , though . +When do we want it ? + What was it called ? +But it is not American . + It does nt have to be , he said . + It 's about who you are . + Not in it , on it . + But that 's how life is . +But not all that old . +And there 's much , much more . +He had put them up in his home . + If this is it , this is it . +You do what you know how to do . + Who was that man ? + He said he did nt want to . + Is that what you think ? + You do nt know what he 's going to do next . +We did nt go to school much . +He did nt make it . + Where are they today ? + It 's also very much like the school they had . + They do nt like us here , he said . + I just want you to make your life the best it can be . + I did nt make the play , and it was a play that has to be made . + I had a good time . + It 's not the end of the world . + It just does nt go over very well . +What part does it play in your life ? +Now what should we do ? + You would nt know the place . + I put more into him . + He was at the right place at the right time . +We do nt know who did it . + So what can they do ? +A little of all these . +They would do the same . + There are people who like him and people who do nt . +What 's a team to do ? +My house and my country are here . +No way , they said . + What do you like about it ? +There is more we can do . +It was about time . + You are , right ? + But we are going about it as if it was . +What you like , I like . + I do nt think of it like that , he says . +Mr. White is not one of those people . + This is nt one of them . + Because it 's here . + What you see is not what you get . + We just like to see out . +Still , how did he get here ? +Still not that good , is it ? + You do nt get that at school . +We are here for now . +And she did , she said . +He was both ) . +The case was this . +He just did nt come back with them . + Think about it , he said . +He does not know where she is now . + I never been here before , though . +But that was in another country . +What 's up should be down , and what 's down should be up . +Do you get it ? + It 's been a very good year . + That 's a new one . + It 's too much like being at work . + They have to be , he said . + They do , do nt they ? + I said , It is . +I want to get it right . + I just do nt want to think of it as his last . + We have had so many before . +What is it they do ? + But you are here now , she says . + He was right , said one director . +They go to work and come home . +It 's all in one place . + I do nt play that game , he said . +Get on back home . +Today , they are all out of work . +More than I can say . +You think : What can it be ? +Where did she get the money for it ? +So does the school . +And how should it work ? +Those were the good old days . + People do nt say that about white companies , she said . + It was nt that good . +But it was not right . +They do nt , for the most part . +So much for the business end of the business . +If you are on , you are on . + I may have , he said . + This is my house . +But I used to , too . +Even if I do nt . +This time , though , it was the other way around . +The people do nt have a say . +And that 's when you can even get one . + No , that 's not her . + They say , But . + What do we want there ? + I say it was not , she says . + But that was last year . +They might not get it . + That 's what it 's there for . +No place like home ? +We know that that 's what it 's about . +We do nt want her back . + And that 's me . + I made him put them back , she said . +Go right on in . +There has never been , and will never be , another place like it . +Then we will be back where we were five years ago . +I have to work for what I have . +I could nt see who did what . +I did nt know what was going on . +Officials did not know what to think . + Every game is big . + So it 's going to be good . + So I said , All right . +It was all part of the game . + It 's not what it says , she said . + They come and take your money . + I think it 's time to get out of there . +We know it 's in there , but how did it get in ? +It 's like being in another world . +But it did nt use much money . +I want her to have her own life . + It 's there , he said . + This is what you do . +There is no more to it than that . + You work with people for five years and it 's good to go back and see those people . + I do nt know , he said then . +You do nt know where to go and you do nt have any money . +I would just like to know who that was . +Will she be here ? + Yesterday was a long day . +And in this case , it was nt . + It 's best to be in your own house , he said . +I would like to go there . + You get your life back . + They have to play big , he said . + It would never work . +This was New York , after all . +He is the best . +Too big for us ? + You get used to it , he says . + But that 's as much as I know . +But it is much more than that . + But in this business , it just does nt work that way . + Because we are three . + We could nt do without each other . + How will it work ? +I did nt say that , no . + He said , Well , what do you want from us ? +But they do nt do much . + I was like , this is it , he said . +Other people said he did nt have to . +Not many get off . +Not today , though . + But no one could think of another way . + I like it -- what 's not to like ? +You are still the man . +What did it do ? + We never say never , he said . + It was what you would do . + They said we could come back , she said . + It is a way of being . + I do nt have to be in the office . + Do you want this program ? +And who has nt ? +It did nt used to be like that . + We want only this . +And is that it ? + This is it . +They may want to go . +We are still one team . +Could never place him . + We just did nt make them . +But who is nt ? + That 's what this business is about . + No , no , he said . +This one is not . + I think it 's going to be about a week . +It is about the White House . +If it does nt work ? +That is what he will know . + And what did you say ? + I do nt think it will come to that . + But without going into the city . +Then he left the state . +At the time it was the only way out . + That 's the best . +His first play , . + Was nt the first time . + How can this be good for you ? + But I like that . + What were you going to put back ? +What would I get ? + I can put my life on it . + I want to play all the time , he said . + People who are here know it is from over there . +So did some of the other children . + He does now . +Did I say new ? + Now what do I do ? + She did nt have any money , he said . + That is what it is all about now . + I say , That 's up to me , not you . +So they go way back . +He just did what he had to do . + Now I go every year , she said . + I still do nt think it 's over with , he said . +But if it does nt work out that way , it does nt work out that way . + You know what I would do if I was going , he said . + But now I will do both . + We know they are out there . +It is just the way of life here now . + But this is the first time for me . +It is as if we see him . + You see this ? +But you are on your own . +And where is the money going to come from ? + You are right , he said . +How Many Are There ? +The police would not say where the team was . +How can you like her ? + Every day I say that . +It does not own it . +You also said that . + I would like to be both . +I do that all the time . + That 's me , he said . +I would nt say it did nt . +That could take a day or so . + It 's like the old West , he said . +There was one out , not two . + They do nt know what we go through . +When he said , Do it . +You want to have people come over . +But he does nt like it . + They are there for you every year . + But there 's just too much going down out there for them to take . + That day is nt here . + We had each other , she said . +That where you want to go ? + They were an American family . +Now , all do . +I have this business . +I did nt know what it was . +In the music business that 's just not the case . +And he was not there . + They do nt want to go . +This will be right here . + What were we going to do ? +I make the best of what I have . + We are good with people , and people are good with us . + He should do very well , he said . + I do nt have money , he said . +This will not work . +Who can show me the way out ? + There 's not so many of those people any more . + If they get him , they get him . +There 's not much we can do about that . +It 's just not right . + Not as much as it was for us , he said . +She had to take money from it . +But that 's the only way I know to work . + Not that that 's good , he said . +Now he 's back . + There is no government . +This was a big so what ? +You want to take it out . +But it was also much , much more . + If you did nt play the game , you could nt get any work . + There 's just no money in it , he said . + You get out of it what you put into it , he said . +But it did no business yesterday . +Then how do you get one ? + And she did nt want to go home . + If I what ? +Right now , I think they play the right way . + Are nt we all ? +What do we have ? + This was the right year , he said . + He says that is not what he said . +Did he back down ? + Where did you get those ? +First he said no . +This is me here . +It 's been four years . +And I did many times . + I do nt know who 's in it , he said . +I know I can play with them . +My life is over . + But I will be the same man I was when . +But she 's not here . +But this is nt any other season . +If you are what you are , just what are they ? +And I will do that , and I think you will . + They did not like that at all . +But I do nt think that was the case . +And you can own it . +They would just play . +Where are we to get the money ? + There were times when I did not think we were going to make it . + That 's what I did last year . +What is it made of ? +For good , the company says . +This is your right . + He said they are both right , did nt he ? +That 's all I do . +It is also good for after school , she said . + He did nt know him . + I do nt think we should . + That 's all it would take . + We know where they are , he said on This Week . + I do nt know if it 's New York . +So just do it . + I do nt want to go . + We play , not him . + You just come for the music . + This is nt good . +How long will all this take ? +And each day there are more . +It 's you I want . + You say , What will they think of next ? + They all go through it in one way or another . + Many come back , though . +As he should be . + But he said , No way . +And that would be ? +Or they can work . +So they get one , even if it 's old . + There 's no other way to do it . + Well , I do , she says . + But we have to do what we have to do . + It 's not any more . + There will be a time for that , he said . +The What next ? + But all in all , New York has been good for me and good for my family . +This , they said , was more like it . + May as well do what I do in a place I like , he said . + But it had to be with the right people . +You did nt want it to end . +So we said : This is a go . + I do now , she said . + That was the good part . + He said that to you ? +But who would know ? + He did the best he could . + I think the public has a right to know . +It 's not the way to do business . +Now it 's game time . +So I do nt get it . + It 's just a show . +But How Many Like Her ? +And he just does nt say it . +It 's what we want to be . + But that was not all . +And what do they say to you ? + She made the most of it . +You just do nt think about . + And I think we did that today . +And you know , that would have been us . + I said , What ? +And so yesterday , a few did . + I said who do you have who could do that ? +What time was it ? +What time of year would be best ? +I take one game at a time . +I have to own it . + Well , I go back a long way in this business , you know . +Here 's what 's in . + He has people who know more than he does , she said . + Four of them . +She called no one . +As it still should . +I did nt know what it was then . + But I know the work . +Though not to me . +I could nt take it back . +People do office work here . + Would you like to have it ? + We did nt think of it , he said . +Who are they , and what 's in it for them ? + We are still going to play them one at a time . +It is the best we have . + It 's just never going to be over with . +No , one will do . +How much money will he make ? +And they go all out all the time . +We are there for you . +That 's what this man did . +So get used to it . +It 's so big now . + It 's just . + They are going to get all the money they can out of us , he said . +No , but that 's not . + One in one end and one in the other end . +Where are they going to play ? + Should we be there ? +We have to play like this against any team . + There is no other place like this , he said . +He can not do both . + They are like my family . + But then you have to be . +It just was nt my time . +But that 's just what it was . + It has nt been up at all . +It was one another . +I said , How do you like that ? + What do you think we are going to do ? + But you do nt see it every day . + I was like , What is that ? +It has to be used for years on end . + Well , we did . +And every night they left . + How do you know what you know ? +From now on , all business . + People want to get where they are going , he said . +How do I know they will do this ? +It 's still with me . +But that does nt make it right . + Would you like to do that ? +I would nt do it today . +But we are each other 's family . + I think , Where are my children ? +That says less to me . +And for a little while she did . + Do all of you know who that is ? +But you do nt see them . + That 's the American way . +TIME is money , they say . +There 's a game going on . + I do nt know where we are right now , he said . +For them , it 's the end of a family 's way of life . +She said , He is not right for you . +It 's like a big house . +Here is what it was . +How about that one ? + But people just like it . +If they do this , it 's going to be like it was before . + And here we are . + It should have been an out , he said . +You can go and see . +But it does nt come down to that with him . +And not just for women . +And it 's going to take a long time . + I was against it . + Then I was put into this little country school . +It 's just how it is , they say . +This is as good as it 's going to be . +What will I say to him ? +Now you see it . + What 's next ? +But what is there to go back to ? + Three , he said . +And he is still on the street . +This is nt about me ; this is about them . +But what might they be ? + Now I have to think about it . +Or even if you are not . +Good day to you . +The more I used , the more I had to have . +And this time , he was right . +Well , that 's what I said . + I have nt been home for a year , he said the other day . + Does he want to ? +I want to go out and play . +Then he left school . + What he is going to say , I do nt know . +Do what you think is best with it . +You see , it 's your money not the government 's money . + But it has to be the right team . + But I did nt know what . + I do my best work at night , he says . +What should I take ? +He do nt know what to do . +Too many do not . +I did nt know him . + This is a people . + It 's like being in show business , he said the other day . +Does he like him ? +And I want to use them . +No way around it . + It 's not going to be today . +Business , he said , is good . +Too many of them do nt . + I just do nt know how . +Did you not say this is what I will do with my life ? +You are all set . + I have nt had time to think about it as much as I would like . + I think they have to . + We just do what he says . + But you have to be there . + It 's not a game . +I just want them to get out . + I said , What do you want to do ? + That 's their case . +If you do nt want to use them , you do nt have to . + It 's a good day , she said . + No , they did nt . + That 's like our show . + Then I left , and did nt go back , she said . + This is a good time to be in . +But he did not think that should get in the way . +There are very few of them . +There is much left to do . +Now we could get down to work . +Just get used to it . +Without him , I do nt know where we would be . +You have to go for it , because if you do nt , you are not going to get it . + He does nt own a house . + They are going to be with me when I go to New York , he said . + And we will never do that . +It 's the only way I can work . +We see so well on court . + It 's part of your family , you know . + To me , it 's like all music from before my day . + That 's what this country is all about . +He was very old . + Then one said , Where are you from ? +And , in every way , she did . +What do they know ? + It 's not life . +This is the team we are going to play the season with . + If he does nt , we are going to have to work with him . + Now they like us . +And now he 's on his own . +How do you get out of that life ? + There still is nt . +Not that it did him any good . +So I had to go through what I had to go through . +But not many people know all three . +There still our team . +You play your own . +What do people do at night ? +I think it has more to do with the times than even with me . + They know me and I know them . + I was going from the city to the country . + It was like , How could that be ? + I should , because I do . +But they do nt know her . +It was nt all that way . + How would you like it ? + I think you do nt think I think . +I think we were still , this year . +We have it now . +But they did nt have to show up . +What 's it like for a game ? +But it 's not about money , she said . +They are his people . +But there was no money in it . + I was there . +And not just to her , she said . +The war was going on . +She was the only one . +I still do nt know what to say to him to this day . +Get to know it . + You do nt know where he 's going . + There 's no time . +But two years were up . + We are not the first to do this , he said . + That 's all I can think of . + They were like children to me . +Well , they should . + Now they own it . + There never were before . + If I can have this team , he said . +That is , who do you think you are ? +This is not the only way to go . +They have little work and no money . +He : How are you ? + A : Many times . + We may not even be here . + You may not want to know what 's in it . +She had to go . +It 's just not this year . + I do nt know what they are , but I know they are not good . +We did not have it . + It 's part of being in a world market . +And to the city . +But I Did It did nt do it . +You never have a day off . + I did nt like that too much . +They do nt want to go home . +She - or they - did here . +She could be right . +Or in on it . +It 's a game . +But you are there for the music . + People own life all the time . +No , no , and no . +I do nt think that 's the case now . + They are a part of you . +I would nt be here if I did nt think I could . +But right now it 's there . +I do nt see that . +I did nt know . + Did nt work out , he said . + It 's a good time to play well . +TO work or not to work ? +Get her out of this place . +New York City times five . +They are now being called . + I take them all on . +I do nt know how we are going to get it . + I was well on my way to it . +I on the left , you on the right . +It just did nt get there . +Have you found this to be the case ? + Back it would go . +We just do nt know very much about her . +What is it you see ? + The way it should be . +Next year is here . + But this is all new to me . +That 's what I want them to think . +Just never like this . +It was like that all day . +That could not be . +It does not get one . +And I know that it will be that way as long as he 's around . +Or did nt , he said . + You have to play it like it 's your last . + What do nt we see here ? + You do nt have the money , he said . +You know what you did . +But most people never use them . +I was one of four children . +I want to do it right . +What 's this all about ? +And so are you , or you would nt be here . + I did nt think . + How big is it going to get ? +That 's for some other time . +You get out of the house . + There is very little work now . +I do nt know how to . +Very few of us . +There is , they say , no there there . +But yesterday he did . +To each his own . +A : It 's not . +They made it all up . + This was his work . +I have to do that , too . + Is it in there ? +I think he could have been President . + I was on the one before this one , she said . +So what would you do about it ? +But I did nt see him . + It did nt say what I did , she said . + I see them all the time . +It 's still too much . + People come back , she said . + I do nt think they have all the time in the world , he said . +All work and no play . + And where are people going to go ? +Who 's going to do this ? +All three are white . +There 's only so much you can say . +There was very little I could do about it . +So we should put them back . +That was not a good time . +And that 's two years ago . +And he said , It 's just part of the game . + That was , he said . +It 's all right if you do nt . +I could end up like that . + This is what we know , she said . + But he called it . +Now it 's time for us to go back up . + He said , We will see what we could do . +We just want to work . +For us , this is like a university . + Where was right ? +It will never be the same without her . +Not that I know of . + No , no . + What does money say about us ? +I want to know who he is . + And so it does . + How come it 's so big ? + Did you get him ? +Now they want more . + It 's up ? + And now it 's over . + But not that many , he said . +We can have it . +But , he said : I like New York most . +You say , Did I do my best ? + We are a little family . + Where , where ? +So does the government . + Those were the good old days , she said . +It was yesterday , not today . + And so it does . +And what did he think about it ? +And he never did . + Should nt say . +It 's like a big play . +So , how about it ? +It may even work . +They are never going to be called back . +What do I do ? + He was out there all right . + But I do nt know how to . + It had been a long time . + There is no place left like them . + What 's Life Like ? +You come out and you say Now , this is it . +But most will not . +Because you are not going to be . +You work for us . +I just like him . +What do you think they are for ? + They get all we have and they still want more . +Well , you can see where this is going . +It 's not because I want them to . +I say that all day long . +And it 's a team without a home court . +Is that the same for you ? + That 's not what this country is about . +We did nt play well . + It 's not . + That 's a big part of the game . + They are not in this to make money . +You just show him where . + That 's going to be it . +You know who made it . +What 's to say another one is not going to do that , too ? +There 's no use going on . +But not most of it . +There was just the game . +Life will go on . + I should nt get this way . + She said it was her first game . +But I think there is more to it than that . + She 's come to see . +Or the day after . + I called the center the next day . + I do them that way because I can do it , she said . +It 's good to have him back . +That says it all . + They are out of this world . + I think he would like today , she said . +We did not know the law . + Life is life , he said . + How did he do it ? +So you go out there and just play . + They want to do it . +The Court can get by . +He does nt know much . + This is my life . + But you can say no . +Is it still around ? +Other people had other days . + There is not even a government for the time being . +I just do nt want to be him every time out . +How about part time ? +There are two , not one . +We will do it . +For how long , he does nt know . + How do we do it ? + We want what you have , he said . +I did nt have that in New York . + Then go get one . +You can not have one without the other . + What do you think this country is ? +So he used that . + They have a right to go out . +With this they could go every day if they want to . +But it does more than that . +So will this one . + What if she did nt like it ? + Not good for me . + Here we are , she said . +It is not and will never be . +There was no time left . + But that 's how I play the game . + Do you know when it 's going to be over ? + And I want to be there . + There just was nt one . + I should know this . +But where was home ? + How do I even know if I like him ? + My time is going to come . +I also have a life of my own , too , you know . + But how do you know I can do it ? +That was the first . +So how 's your back ? + He had no time for me , he said . + How old was she ? +But some women do nt see it that way . +But which one was it ? +And you think , What year is this ? + This is very good for our people . +The country is at war , he says . +A million is nt what it used to be . +Are you , like , going ? +On every street there is another world . +But there should be . +Now he has two in a week . +People know you and what you do . +They are in and they are out ; they are up and they are down . +And I think that 's what we are . +What about all that was left out ? +Do you work out ? + This is all government money . +How to go for it . + It may just be too much to take in , he said . +They are from New York . +If you want to make it , you will make it . +There is still women 's work . +Just where in the United States they did not know , they said . +What was it , and can we get it back ? +That it will never be the same ? + You have to know what is there , she said . + That 's when you just get going . + It is still only one game . + Now that we have it , what are we going to do with it ? + They are right there . +That will come house by house . + He says he is . + We did our best . + He has nt made it . +Well , that 's me . +But not until then . +All well and good . + It 's also good for our business . +That 's what he did . + I want to see it there next year , she said . +When you get back , we are with you . + We , he said . + There 's too many police . + I do nt know what it 's going to be . +It 's not like it was one day and that 's it . +It 's what you do . + I do nt think any of us is going to like it , he said . +Two would go on to public school . + But I have to have them work . + A very good day , he says . + It 's also good government . +It was nt like that last year . +If I did nt . + You see them every day . +There was so much there . + We are not in play . +You never know what they are going to say . +The team has been up and down all season . +It 's all you . + I do nt like being used . + That 's when it 's going to be . + Where are you going to go on that ? +It is time we did so , too . +But we do nt play for money . + I should say not . + How about what do I like ? +Do what you want . + It 's the right time . +More than that , one does not know what music can do , or all that music can be . + We think they know that . + It has to be the same . + And I said : Do nt play into that game . + Where has he been for four years ? +Most people want to work for their money . +Still , life is good . +That 's going to be with me for a long time . + We just did nt do what we had to do . +And you know where they get the money from ? + But it is also our right to go our own way . +He said what he had to say . + That 's good business , too , he said . +He should come to us . +But I was like : Put it up . +Now it 's come a long way up . + Without being in it . + I think I do . +But I know we are still in first place . +And many , many more . +Or it may not be . +How will this work ? +No no no no no no . + It 's up to them to do that . + But that is all right , she said . +This is our country , it 's not their country . +It 's the end of a long night . + It was nt the same after that , he said . + It 's my second home , she said . +That may be all it was . +So what can you do ? +In a way , they were there . + No , I did not , he said . +I had one now . +But it is good . +This was their day . +It 's not just New York . +When will you know ? + I was just on the street , he said . + We have him he said . +That was not the case last season . +There is a war on . +They have a right to know . +Would I even want that ? + They are a long way out . + And now it 's going national . +But no one has come up with one . +Never will there be another . + My family is nt here . +And what will she take with her ? +So good in school ? +What do you make of that ? +How did I know it ? + I do nt know of any other like it , he said . + After that , he said , it 's no good . + What are you going to do with it ? + It was just never for me . +If he was nt , was his family ? + Not that I did . +They think of the days which are no more . +And they did nt do it . + How did he put it ? +And then to this . +And that , they say , has not been the case . +It 's all over at last . + I say no to them all . +It was a good night for the house . +Now there are just too many of them . +It would nt have been a good one . + I said , You would ? +This is my time to play . +So good to see you . +We are not a very good team now . +That 's just the way the business is . +And make it very good . +I did this for my team . +That was for my children , our children . + We had every right to be there . + I just want to get home , he said . +No one 's going to do it for you . +If I make it , it 's a good play . +The first would be money . + But that is not the case with us . + I do nt know , and I do nt want to know , he said . + That 's as good as they come . +People here all know me . +And they still do . +I do nt know where to . +Because if we do . +But when I go there , they do nt . +It 's part of the program . +And they are not good . + People will take this against us . + It 's my first year here . +So does the Police Department , for the most part . + They have no home to come back to . + It 's part of the game . +Who would be best at that ? +That place is no good . +Who will do this for me ? +That can take a long time . + See you next year . + Business just has to go on , he said . + But they did not . +And that has no place . +One used to be . +They did , they said . +You just have to go on . +We take what we can get . + And he said , Well , I left . +But what 's next ? + I did nt have it all game and never had it before , he said . + What Do We Do Now ? +And we would have said no about this too . + Is that New York City ? + But with that ? +There 's more money . +This one day will do . + But I have no money . +It 's the public . + I did it all today . + I think we would know if it was there . +But that is up to you . + This is going to take a long , long time . +She is that for me . + There are five in the world , she said . +This is not that . +Next up , the American West . +What if she does nt ? +They do nt have any place here . + I can not do that . +And show off they did . +There are just too many of them . +They can only get in the way . + How do you come back ? +But is it good ? +He was nt around as much . +You just do nt see that every year . + But war is not good . + What do you want to do then ? +He had had two more children since then . +Now , he has only three . + Not much you can do for this . + Now I just do one . +Where will they go ; what will they do ? + This is his year , he said . + I did nt like him for that . + I do nt even know what his times are . + And you know what he said ? +Some are going to get out . + There 's more to my office . + One , two , three . +He said what the police said he said . +They want to make this work . +The president did well . +So the time is right right now . +They also know how to put on a good show . +But many companies do it , he said . + Well , we are here , he said . +I want what 's best for my team . +This is not what music is about . +A : It 's this way . + If it had nt , I would nt be here . +Are you here , too ? +There 's just not that much of it . +It 's what he does now . + I had it going . +How in the world did I know about that ? +As they are now . +That was a first . + I do , too , he said . + I would nt say I like him , he said . + What are we going to do about that ? +But she could now . +That 's the way it 's been . +The world 's big . + I should have , but I did nt , she said . + And we did . + It 's this way every year . +But that 's the play . +Now it 's all of us . +I think this will be good for him . +We had one last week and there was the one the week before . +This was about what was best for the team . + Now we do nt . + It was just time , he said . +We have less time right now . +They were too big . + This was not my life before the war . +Not that she would . +But business is not what it used to be . + How did you get in ? +That is his home state . +Now , at long last , they can . +I do nt think , just play . + And that was it , he said . +But are we going to have more money ? + No time to think . +Well , by it . +It 's good to see . + They should be here . + I do nt even know what it is . + I still come to work every day . + But they did nt want that . +It was right for me . + But we have no life . +I do nt know what you are going to do . + My life had to go on . + What , too much ? + Is there any money in it ? +And I did not . + I know what he can do . + I was , like , what 's going on ? +What 's she up to ? + Now it 's people . +They do nt want to be part of it . + You have to go after the best . + I say : I know . +This was not all that long ago . + It should not be about money . +What does she do there ? +But it 's still too high . +They just did not know . + No , I do nt think so , she said . + One of these days , but I just have nt had the time . + It 's like a second home . +Do you want to come down or do we go up ? +I do nt think we have been in several years . +There never can be too many . +I did nt want it to end like this . + What Can You Say ? + You know me . + You was nt in his life for the other four years , she said . + So it 's more than just money . +The United States is not the same . +What more did I know ? +She made her way to New York . +If so , when , and how ? +What 's left of him ? +It will take a long time for it to go back up . + That 's the way it should be . +They are people we think we know . +How good will he be ? +I know he did it . +I see it , you know what I see ? + Well , what about New York ? + But it is big . +I did nt do this to you . +That is what he says . +But then what is nt ? +I know they can . +What will she say ? +Where it found a home . + She should nt have had to do that , he said . + I want that , I said . + Not all are being used , but they are there and could be used . +It 's not the right time . +I do not think I can do this one . + I could nt get through to him . + What Does It Take ? + Have we had more work than we can do ? +Will there be a season ? +This would not be just any game . + This is the big time . + He said , Who said so ? +People do nt want to go back . + Now , how can that be ? +I know she 's in there . + Then we will go back . +Today 's program , called the A . +It 's only four years old , but you would nt know it . +You have to work . +It just might work . +But it 's not for me to say . + But it did nt put me down . + I said , Is this what you want to do with your life ? +But all this will take time and money . +Now they may be right . +I think about that every day of my life . +The four of us are here . + This is the way they think . + They were up last year and the year before . +Some see the world and make it their home . +I said , I do nt think so . +They are good at it . + I do nt think there is any way you can make much out of what is there now , he said . +And so should it be in this country . + We have no right to do so , he said . + This is it , he said . +It is next year , not this year . +Last year we were here and this year would have been at their place . +CAN YOU SEE WHAT I SEE ? + You made that up , I said . + I did nt play last year , she said yesterday . +That 's how you have to play . +She did nt get the show . +They want to get money . + So he can show that we are all the same people . +We want them out of our country . +And it 's good . +He says , I like your music . + So we have some work to do . + That 's the big part . +Who might use it ? +You do nt know what they are going to do . +This time of night it 's just me and my money . +She even made it to New York . +What did you like best ? +The house is still on the market today . +What did he have left ? + We just did nt get it in . +I think this is the end of it . +If it 's not one , it 's another . + I can see it like it was yesterday . +What could we do ? + I do nt want to see it . +This is a group . + You get a team and from there you go . +This one or the other one ? +But it is no use . + They did nt have to do that . +Does she know we come over here ? +And just who is he ? + I said , Where are we going ? +She is there at the end , too . +It was one , not all four . +It would be too much . +What do I make of it ? +They can , but they do nt have to . + Well , she says , you are here . +Now there are only two . +Or they might not . + Are you here every day ? +And that 's just what they do . + We are out there to show people a good time . + It was an old show and it was time to get on with the new show . + Then , well , I do nt know who those people were . + I know I did nt think they could . + Do you want to be President now ? + What do you want out of life ? +He had found home . +Now , they know it . +I still do that to this day . +A Right to Know ? + But it would nt be the same . +Today , I did nt have it . +How long you be here for ? +That 's for me . + Get good and play good . +But we just play the game . + How can you not think about the money ? + Know Your Place . +And I think we have . + There 's only one way to go , he said . + No way I could go back to the department now , he said . + Then he did nt want to . + I like to take one season at a time , she says . +And now it 's next season . + Where are you going to go ? +Get out of there now . +You think : Which one should I take ? +But I do nt think that 's right . +But they made me . + The market is up . +It 's part of my life now . +Well , some were . +It 's not all about me . +In most states , he is . + It 's not up to me , he said . + And they did it . +What did we like ? +A man that did so much for so many . +Not Here , Not Here . +Every now and then there may be one that does nt work . +So we had to do it . + He said that . + What will we do there ? +The market is a little world . + Can do and did . +And there are more to come . +It 's all there to be used . + Now they know I play , she said . +Which is not to say she has nt found a home in her new world . +Who will be with me then ? + It 's just too big . + This is where I have to be , she said . +But no one does . +Through the end of next year . +They said they could . +You are a what ? +And what if they should ? +Who is the old man ? +But we do nt know how it will play out . +But I want it . +Now , they might not be that . + I know I should nt do that , she said . +I do it all day long . +I know I would like her . +But I did nt see it . +How Do They Do That ? +And that was nt too long ago . +They should have that , too . +That 's how it used to be . +I did nt know it would be me . + She 's like , We think we can use you . +If so , where does it come from ? +That 's where it has to come from . +And now it may be over . +So where are all the people ? + What , you think he 's the only one ? + I had all I could do to get through this , she said . +Can we make it ? + You have to know what 's out in the market . +You should nt be out here . + I know who you are . +He did nt even get that . + It 's like with your children . +What are you going to do in between ? + But do nt do it for that . + People just want to go . +I know it 's not going to be for a long time . +Or not , as the case may be . +In the United States , not so . + This year is now , he said . +They then called the police . +And play he should . + If you do nt show up , you are on the street , he said . + But he does know all about the family . + Some have only old people . + I do nt see how she 's going to do that , he said . +But we all do it . + It 's as good a game as any . +Are you going to do business with us or not ? + How have you been ? + And now this , he said . + You never know until you get there . + We just take it back from them . +What will they see next ? + Who 's to say ? + I do nt think I could have said that five years ago . +It was nt like I had an off night . + In the first place , I could nt do it , he said . +I was good , too . +Where is yesterday , and the day before yesterday ? +So we are back to go . +But he would go . + He does nt want to be out . +And just in time , too . + It 's time to go home . +I should have made the play . + We see each other on our days off , she said . + Can you make money ? + She says she does . + He 's still the best in the game . +And what do you say to that ? +But no , not then . +Right now we are in between on him . +A ) From here . +I just have to do what I do . + And there should not be . + Who are you going to go after next ? +That could do it . +Well , he should have said it . + How was your day ? +What you do in your house is your business . + We are not going there . + I could nt say much . +They want to make do with less . +But it is there to be found . + Well , it did . +You put up with it . + It does nt work like that with children . +Is there money in it ? +They make so few . +He was very good . + It was like going to school for the day . + Life even more so . + The War at Home . + But the state program just is nt the right way to go about it . +Now what could be more American than that ? +But she did not want to see it . + But I did nt want to show it . +I only know my time , our time has come . +There is no way . +I do nt know what to think . + We were nt one of them . +It 's like night time out there . +And not just for the money . +But I had to go back . +War is no good . +It has to go . +It might well be . + We have every right to be here . + I want to say , How did you make all this money ? + I did nt want to come back , he said . +But we do nt want to . +This is my first time in New York . +The money will go to the Government . + Then today , this . + I do nt know what to think , he said . +Did I get what I want ? + We do what we can , he said . +He 's going to be part of us . +People only see what they want to see . + I should nt say that . +This is such a case . +But I could nt back down . +He was right on two of three . + I can not go out at night . + Companies come and go . +Do I want them to ? + I want to see what is out there . + This could last a long time . +I think we can do the same here . +And what will the children say ? + How can I not use it ? +A LONG WAY TO GO . +You know it , we all know it , and you are going to show it . +It 's all just a part of the business . +And if it 's off , it 's off . +Well , are nt they ? + But I do nt say that . +She had to do this . + It 's what you do nt see . + Did that set him off ? +Did nt we all ? +I think that will come . + We did nt like that , he said . +But I did nt want that . +And I was the one to do it . + He just is nt . +So does the federal government . +That was the end of it . +When are you going to get it ? +Not that I have . + What is this for ? + It was nt there all the time , but it was there some of the time . +He 's for big government . + It 's a way of life that they know . +We have been there many , many years . +It will just be there . + What could they say ? +But what was this ? +But he did nt make the team . +They did not like it . +If we have , he 's not here for long . +How can they not be ? + But the play is not like that . + Which one do you like best ? + I called them all , she said . +But there is time for that . + I know he 's just a man , he 's such a man . +I have my country house there . + I do nt know what it 's like there now . + They come when called . +He should be in New York . +There is another way . +Here 's how it might work . +We put on a good show . +It 's just the two of us now . + Get on with it . +Is this right for me ? + What do you know ? +So you are -- ? +It is in her house that we see her best . + It was long , she said . +I did nt know what to do with her . + How are you ? +Did our new president come through ? + Because they have more . + How would I have the time ? + Or , How about this ? +I just have to get on with my business . +What did he want people to know ? +What school did he go to ? +They did nt even know him very well , they said . +What to Do If . +It was his only one in the game . + How do you do it ? + But I want you to have it . + I do nt think it was out , or they would have called it . +SO it has come to this . +They also left in last place . +I used to have one just like it . +Just they are not going in . + I own that company . +I had one up on them . +What do you want to do with your life ? +They get their own place . +We know she will . + This is where the money is . + Not now , one after another said . +Both are out of business . + And many of us are . +He just could nt . + But it is nt us . +So we have to go home . + Are they a part of the show ? +If they do want him , they should say so . +I do nt know if we can do this or not . + There 's just more to it . +And we are in it . +But it does nt have to be . +NOW I know what I should have said . + I said , For me . +But you have to do what you do well . +This time it did nt . +No , I will go against it . + Can we play now ? + He is what we want to be . +They are even less so today . +We do nt know who we are going to play right now . +But he would not say how . +Not just against them . + And I have no take on it . + And I say : No , you could nt . +Some people do both . + And it 's not just me . +And now it 's there . + I can do that . +Did they see that in the United States ? + Then you go out and get him . +She has her own people around her . +What time do I have to get here ? +There 's no one out there who does what I do . +From business in children ? + He 's just had more time to think about what to do . +And who would have them ? + We do nt think about it . + But I do nt see how I would get there . +He did nt know if he could play in Game Four . +It 's there to be used . + I did nt know about him . +Come to think of it , they are right . + You should go home . + But then they go against you . +Both are still in use . +Do nt know what country they were from . +It was part of the game . +We have to go out and play . + A year or two . + How long can you do that ? +What did she like about him ? +But we can do it . +And if he can , will he ? + You are going to be a little down when you know you are out of it . + People do nt know what to make of us . + I just do nt know who will be here next year . +There are so many other people like you . + That 's how it was for me . +It 's right there . + You are going to law school . + And I had . +The police had to be called in . +It was all around you . + He has to work , he says to me . +That is what we will show . +It 's all new . + People know you are there for the last time , she said . +You never get to know them . + I think they were there . +So a man does . +If it were nt for them , I would nt be here . +What should the Government do with the money ? + No , he 's not , she said . +This is what the play is about . + Most people here want to go back . +Do I want him to be like me at all ? + I do nt think I want to do it . + The president said no . +It 's just as much a part of us as we are a part of it . + These are the five best in the world . +But it did nt work out that way . +It 's the only way he has to make money . +And so she is . +He used that , too . + We have to know if they are for it , he said . +He did , but not by much . + You all know me . +And then a night like this . +And they are back . +What was going on ? +I like being on my own . +They just go where they want to go . +And that should do it . + Here 's what I can say . +How can we not do more ? +It was not the only one . +But it does nt work . +How could I not like it ? + It 's been in our family for years , and I want to show it to my children , he said . +That could take some time . +But then it was best not to think . +How long before this war will be over ? +So I did , and I think she did , too . + And that 's where we are right now . +Well , most of them are nt . + There is no way we can know that , she said . +It 's you and me against the world . +You know what war is about ? +Life is like that . +So , is this it ? +Did you do what you said you would do ? + It is just like home . +There is nt much there . +Make time for it . +Now they say , It 's about time . + That 's all I want to say . +But all of them ? + Who is that ? +But not for her . + I like it the way it is . + They left me long ago . +It 's part of my game . +Here and there , here and there . +It 's team first . + Where would we be today ? +Then , the game was over . +But you still have to do it . +Who 's the same ? +But can this last ? +If so , for which companies ? +What are we going to do ? +It was nt right . +I do nt know where people get it . +We are part of this state . +He does it during the game and after . +We did nt have that two days ago . +I think it 's a good time to do that . +She did nt want to have children . +And I like where we are going . + It 's been there for three years . + So here she is . + How can they say that ? +Who among us has nt . +We all have that . + I said What time does it say ? + That was not for us . +And after all that ? +And I do nt even know if I can do it . + It 's just the way it 's been going right now . +I did nt make a big show of it . +Has nt for years . +We are not the same without you . +It 's how good people think you are . +This has not been the case for the last five years . +We did nt go to the White House . + I go after them because I do good work . + So what did you think ? +Just the two did . +War is not a show . +When can you come in ? +It was before his time , he says . +I have four children . + What should I do with it ? +He was right to . +It has been four years now . +But they are not the same . +This game is our season . +It 's a big day . + Man , that was a good place , he said . +I think I did that very well . + When he 's on your team , you are never going to be down . +It 's my show . +Do nt be put off by them , though . +This time , it was . +And now , this . +That 's all they can do . +I do nt think we had time to make it work . + But I just could nt . + She can play , he said . + Then , she said , it will be time to back off and get my life back . +I know people like that . +He 's a he . + The days are long . +He did not know how much money that might be . + Are you in or not ? + By that night it was over . +There 's no business in show business . + I think so , she said . +I like that place . +It had been like that all night . +It 's a little out of the way . +If there are nt , we will . + Many still do nt want to get into this business . + What can I do . +It 's the people . +They were the two . + It 's another world , he said . + We have to play well now . +This is my first game back . +I think you can as President . + This is what this was like . + I did nt want to do it . +But this might take a very long time . +There 's us in here and them out there . + They are like women . + I do nt know what to make of it , she said yesterday . + It 's all very American . +But it still has a long way to go . + But you have it , too . +Or so it was said . + Because you never know what he would do . + And I like them . + But they want to have it all . +It has not been used since then . +It will not do and can not be used . +If no one was going to do it , then I was going to do it . +That 's what New York does . + Then three or four more . +I have to put that up . +They are very old . + If we go in , we go , he said . + This is the week for me . +In these times , if not The Times , then who ? + Now , how do I do that ? +Who and where is he ? +Big time , as we say . +I had to go . + We are not going any place . +If you think this is going to work , just go for it . +That was then , it says . + That 's not what we do . + Was nt that the best ? +Only with this team , this year . +All of them , in every part of this country . + He 's been a good President . + Now it 's up to us . + We are all over the place . +And in a way you have . +Who 's going to be next ? + The New York Times does not . + That 's what he 's very good at . + That 's against the law . +You want to do it ? +Think it over , and over and over . +They are going to be with me . +And well they should , as should we . +I have made it one here , too . +But she did it . + We can get money , he said . +They will be in good company . +Who would go first ? + This is night and day , he said . + She was back in a second . +It was my home . +He never did come back . +The year was over . +There 's no one like him . + I said what 's that for ? +How long can it go on ? +IF YOU DID NT HAVE ME . +That made me think . +I did nt want him . + It may be in the end it 's all you can do and we should do it . + And it does nt come . +If so , what did he do about it ? + He 's never left . + Do we have to do school now ? +This time they get it right . + I used to work in an office . +That was put in place yesterday . + And now I think I may be right . + Good you are here , he said . + They all say it . + If they did , he says , I would nt be here . + We do nt like to do that . +There are still more to come . +We were in there a long time . +It 's like us going to the big city for the first time . + It 's very old school , he said . + He says to me , Do nt you know ? +He says he going to go after us . +So how are we going to do it ? + Over here we are a family , he said . +That 's the old country . + This could take some time , she said . +I want to go home , he said . + It 's a good way to go out . +But it 's about me , too . + In those days , women could nt do both . + They can go to any part of the house they want ? +And it was not over . +If that 's what I want to do ? + Who is this man ? + But now we know . + What can he do ? + But do you ? +We could nt go up . +But not at the very end . +Because if he does , they will come . +If they were , we did nt know it , because we all had the same house . +It is , at the same time , very much our own world . +No , we are not . + People do nt do that . +If you did nt work for them you did nt work . + But he 's one of them , not one of us . +It 's their game , too . +What Can You Do ? +I do nt think it 's best for this country . + No , not never . +If I did nt think I could make it , I would nt be here . +There 's just no way around it : Today was not a good day . +You do , too , from time to time . + Is this the end of the world ? +It has this one . + So it 's like : what do you do ? +Who is the president of the United States ? +We are going to be all right . + That is part of it . +Now I know so little . +Just do nt do it every time . +Well , that 's one way to put it . +We know what we want from life . +It is his city , after all . +That 's where we want to go next . +It has to be good . +It 's like , what do you even say ? +He said he was going home and he did go home . +You could do five . +The money was good . + It is what you want to make of it . +When did she know ? +We have had people from all over the country and the world . + It is , I said . +We just had to make one more play . +Not the game , the time . + Can you get up on one ? +Are you any good ? + It was just the three of us , he said . + Now I want to take it all home . + You do nt know what to do with it until you get back . +They do nt have too much time . +Right now , no other country can take its place . + It 's a big year for all of us . + That 's not me , and people will know it . +You do too much . +To put it another way , he has been right . +What do I do with this ? +That 's what I would say . + I did nt have time to think about it . +And that was the end of it . +So much for good company . + Well , that 's the way it is . +They may be right . + This is too much , she said . + But we are not like that . +What it is , we do nt know . +So what if they have ? +It has not come to that in New York . +He can and he has . +They know it all too well . + I just want to be part of the team . + Is it where we want to be ? + That was my first night . +You want it to be about them and not about you . +He was just like , No , no , that 's not right . +New York is the city of the Big Time . +He just does nt want to . + It 's just the way he is . + We can not set up a police state . +It 's about now . +But I do nt want to know . +He does nt see it that way . +So we did , too . + No , he 's not . +What did he think being president was about ? +He did nt work out much on his own . +And you are there . +I think it could be . +They want it all . +Are we going down ? +It will be good to see more of him . + I should have been here , he said . +They had to have him . + We just want to be part of it . + This is a high school ? +They did their part . +I say what I think . +That 's what I like the most about him . + But we are on our way up . +That 's what they set out to do . + But it is still going on . + A man does nt have to do that , she said . +That 's if they can get in . +That did him in . +Well , that 's what we do . +Because I know where we are going if we do nt get it going . + I will , when I make my first million . +I was like , man , was he even here ? +And this is not a game . +How does one do that ? +And how do you know that they do nt ? +Two down , five to go . + I just have nt been around that long . +We think it was the right one . +So does the center . + I did nt play well all game , he said . + We have a good team , he said . + And a second there . +In It 's New York . +Where would they be going ? + And I said : You should . +Three of them , in our case . +Another day at the office . +We are not going to have it . + She is part of this family . + We know that now . + I do nt know who was second . +I was part of the team . + They did nt get it . +Most were women and children . + And New York . + And I says : Who is that ? + There were so many people out there . +In the end there was little left to say . +Do nt know how we could have left it . + It 's going to go back the way it was , she said . +Now it 's the other way around . +We could play this game all day . +Just so she could be with him . +We called for them . + This is the last time I play for my country . +And if he does make it ? + They said no because they did nt want any new members . +You should nt have to think that way . +Is or is not ? + It 's a business , and they have to do what 's right for them . +It is our country . +Show me how they work . +You just do nt know how good it will be . +I did nt think they would . + See what I have . +The United States government . + We have to work here . +And this is what this play is about . +I do nt know about you . +And he does nt . + Take it all off , he says . +I do nt know where to go . + Now we only do three . +How much does that go for ? +That 's what they have said . +She said it was the best day of her life . +Do you have a country house ? +No , they can not . +I do nt know about the world , but I did . + But I do nt think it is for now . +That set the game back . + That is all I would say on that . +He never has to children . + And that 's the last we see of her . +But what to do about that ? +Come on , people . +But that 's what it 's all about . +It 's where it 's at . +They are a very good team . + You just have a good time . + I want to play , he said . +That 's all I know about it . +He said he was nt . +There is another way , too . +What did you think of it ? +They are the best in the country . + How long does this go on ? + What 's There to Do ? + And it can go , he said . +People want him to like them . +My family should nt have to go through this . + You did nt used to . +Then he said he would nt have . +Was this his best game ? + You know what the best part about him was ? + They have money . +It 's not that he was nt . +He has three children . +Time , but How Much ? + How could this be ? +And a music company . + I play them how many times ? + I would have , he said . + I like being home , he said . + That 's the best part of my game . +But that was nt the case in this . +We did nt get down . +They have a life of their own . +Will it be next week , or the week after ? +And to do so now . +But this is a long , long way off . +The university does it for him . +Is nt here any more . +They do not like what they see . + I do nt know what he said . +I do nt get that down . +Some I did nt even see . +Because you never get there if you do it that way . +But this is a new year . +But it 's only as big as we make it . +It 's been a year , but we see you every day . +We do nt want to do that . +After all , they were not in the Game . + What 's new on your end ? +That was very , very little . +He did what he had to do . +But how new is this ? + I did the same . +He had nt been . +But how to get her there ? +Most of them do nt even play very well . +But he would have it no other way . +But that is nt the way it is at all . + I was nt out . +With you in our New York . + I was like , Where can I do this ? + And they said to me : We are not going to say that . + But no one would put it on . +In this case , there was more in less . + If I was home from school , he would take me to work with him . + Good to people . + It 's not like they did nt know what I was going through . + You are going to see more and more of this . +Now it 's business like any other day . + There have to be many more of us around , she said . +What 's it all about ? +It 's the only place I come . +A big game you are in . +They used what they had . +But I do nt know if they could do it against us . +They said we would nt get any money . + Every year , I put a new one up there , she said . +Can they get it back ? + They said , That 's good . +We were there for just a week . +They have to come to us . + I say to him How do you do this ? + It was her set . + It 's good for you , she said . +They do nt get to do that . +This is my team now . +To go to New York ? +Even he said it was about time . + But they would nt do it . +I had a good time . +And how did they do it ? + At the end of the day , they have to make money . +He : That 's good . +They are all two or three years old . + As long as I want to . +They do nt think that way . +And you get back , No , no . + Well , do you want these ? + It 's called the law . +But he says they never should have been used this week . + What was the use ? +What was I in for ? +They will own it . + But there just is nt . + And they did nt . +It is there day after day and year after year . +I will not do it . +It was their life . +But he would not say that today . +Which one do you think ? + They had it in for me , she said . +That 's what you play for . +Is that the best we can do ? + I do nt want to see my life go by . +It was a good place to get into . +There is no more . +Where are your people from ? + There is no case . + Just like that , I want this house . +I do nt even think about it . +Only one week to play . +I have other people do it for me . +No , not New York . +This year , they have me . + I did nt think they were that good . +You want them to go home . +There was -- is -- no place for it there . +I come to play . +This program will be big time . +IS NT that just like a director ? +It was big , too . +He said , I get it . + We know where we want to go . + But that 's not the case . + And now , as you see , that time is here . + It was just to get to know us . +I want to know if it is the American Government . +How did you know ? +That 's where we go . + I did nt like it at the time . + Three million two , right ? +It 's the West . + This is it for us . + They have so much to say . +After all , it 's man 's work . +The other is New York . +Now , well , you see . +What do you do when your season is over ? +And well it might be . + It was new for me , she said . +Where does all the time go ? +And he is much more . + Right , he said . + There are so many like that these days . +But a long way . + He 's not the man . +Does it have to be like this ? + Who 's Best ? +There is so much for me to do here . + I did nt know what to do , he said . + It was all new . + We did nt know how it would end . +And I want to . +But when does it do them ? +But I want to . +When was that -- yesterday ? + That was my university , he said . + We just did that here , he said . + I might be if I had the time . +Can he still play ? + It 's your life . +In the back , on the left . + I do nt think it is a very big market . +If I want to go , I just go . +But I think it 's not the end of the world . +She could have a man for that . + I do nt want to be on that show . + I want this one , he said . +It is only May . +It will take more time . +Who is that man ? +It 's been me against the world . +And not just in the office . + I did nt know him well . +Which would you take ? +You do them or you do nt . + They will be now , he said . + And you see that today . +That 's going to be big . +No , think about it . +He 's going to get off . +There have been and there are . +They still do not . +But we want to be . + They are not people . +More than a million ? + There 's so much going on . +Some people did nt get it , though . +And there has been more . + This was a big place , he said . + But that was the case . + Well then , that 's all right . +AND he was one . +Then she said , Well , what do you think I should think ? +And that they do . +And he has the most money . + But people found us . +But his would not be the first . + This time , it 's them , he said . + You Do nt Even Know . +These people do nt get it . +There is a market ; there was a market last year . +But if they did . +So when will it end ? +They did , and he did . +I said , Come to see me . + This is nt a game , he said . +I could nt do without that . +And how long did that take ? +The days get very long . + He was there for me . +You just get in them and go . +Now think about this . + I have not been here all the time . +And they will get it . +We might as well get them in there while they are . +They are , all over the country . +I can do that all day long . +There are very , very few . +Now he does not have to . +There should be two or three of each . +You go out and play . + You are not in it . + No , the director says . +I want them to get to know me . + You did it . + If you do nt , people will see right through you . +I think this government has it . + I did nt know much about it , she said . +They have been down . +What did the White House think of that ? +I like the director . +What do they do now ? +But they could nt get in . +Here , they do . + It was not a day to go to work . +Many of these companies are going after the business market , too . + You know , he says . +She did not have to do that . +Can he be both ? + And we have to be there . +Now she was on her own . +Then we would nt think right . + We do nt want that . +They may think they do . +I have to get home because I have a family . + I say the same . +But he is not going . + If you can do it . +Both had three children . +But we had them . + So they did . +It should nt work that way . +They come in after school is out . + I do nt think it does . + It 's not your business . + It was like they were nt there . + How did you know that ? +We do more than just get in the way . +One day a year . +That 's what he has to do . +That left one more . +He 's the man in the United States . +You know , he does that from time to time . + It 's not just them . + And I do , I do , the President said . +But now we do . + But now it 's the right time . + You know , I should . +Then take it from there . +They go all night long . +They do nt like what we do . +Now we are back in it . +They still do nt know . + Will it work ? + I did all right , he said . + There was nt much to do . + And that says it all . +The next day , it is the same . +You do nt get that every night of the week . + These people , they are like my family . +It is not in first place but in second . + That 's a group he has to have . +And I did , too . + I just did nt do it . +Some of us did nt do it . +Where does time go ? +You do nt think much of it , do you ? +That 's not what we want to do . +I have only one . + It is not about this year or even next year . +She did this all the time . +Not many would make it . + What Did They Know and When Did They Know It ? + Just get back to being the old me . + The world is , after all , a very big place . + How do you make it ? +The game , though , will have to go on . +One could go on . + They said , Where is that ? + I think they are . + This is a good department , he said . + It was their show . +He should nt , but he might . +The game was not over . +We have to have one . + I just could nt do it , she says . +One of them is not . +It will never be the same . +They are at war with us . +You are for me or against me . +There is no other place for it . +That 's where we are at now . +He 's here right now . +Where does your money come from ? +He was never there for me . +We have to say this . +If it 's my time , it 's my time . +What was she going to do with all of them ? + He did nt , and he was . + It 's one of those years . + If the people want , he said . +But not all the money is new . + When its over , they can go home . +But this as it should be . +And who was there ? + I do nt like this man . +But this is what you get . + People do nt have the time , she said . +It may come to that . +Who 's going to see ? + There 's no game here . + If he could have , he would have . +And they do nt want that . + Did nt I see you on the back of Time Out New York ? +You are still a part of the team . + I know these people , he says . + This is not just the United States . +Then who is he ? +A way of life ? + But it 's not up to me . + It was nt that long . + New York is the same way . +They think too big . +There was no way home . + And we used that . +I would say to them , Do nt we all come from the same place ? + We did nt know what to do , she said . +Who would I like to work with ? + It 's a good one . +But it was there all right . +They are the same people . + We want to see it . + There are nt many people around . + I put this game on me , though . + But we did our best . +The way they are going about it is not . +They do nt play around . + Where did they all come from ? + So what business are you in ? +This week , in another I . + I was a little down . + I never know how they do it . +We can make do . +What was he going to do ? + After that , he said it every day , just about . + He said , What is that ? +He had to go back to his people . +Will you like it ? +I do nt know what it says about us . + I want to be part of it , he said . + But I would nt think I could be out there before that . + This is our life , he said . + Now I come here . + How is he ? +He made some money . + I want to be the best in the world . + You do have good days . + I was like , What 's this ? +And you are , right ? +But he was so much more than that . +That had to be it . + It 's what I want to do . + If you were me , what would you do ? + I do nt know who made that up . +If I do nt work for a while , I do nt work for a while . + But we can - you and me . +Not that he would . + I want my children back , he said . + I do nt think any of us do . + You have to get out of the house . + She 's been there for me . + What do they get out of this ? + It 's just the way she is . +In this one there was no time . +After all , that 's New York . +You think two years is long ? +It 's just going to take a little more time . +Here , you make your own . + I have to see my house . + We just did nt market it . +Before , they did not . +But is that all of it ? +Much more to work with . + They like it there , he said . +Here I think he is right . +One of us should be . + I would be back another day . +It 's going to be a war . +We have to get there . + So what about it ? +She did so much in this city . +I have to take it . +So now we go out every night . +When it does show up , though . +That was big money . +You know she 's going to see so much . + This time it did . +It 's what I work for . +We play them three more times . +Will this do any good ? + You want to take it ? +If that time is not now , so be it . + I go through this every season . + And he said to me , What do you think ? +And if it is nt , make it so . +We said do with him what you want . +Is it their right to do that ? +For four years , it 's been when , when , when . + How long have you been out there ? + We could nt get through it . + He did nt say . + But we still have time . + They do nt want to go to school . +But it might not go so well . + It does nt work that way , he said . + But I did nt have to be . +But in the days when A . +They get to know each other . +I do nt think it 's going to do me any good . +But the American people ? + The last president was here all the time , he said . +She may be right . +Then she had to do it every time . +This money was not their money . +He said it did nt work out . +No , she says . +I think I know what it was . +That 's where we are right now . +I think you have . +But he 's about to . + I just should have called . +That did nt go over well . + No , no I did nt . + I did nt know what I was going to do . +And we are not going to . +It 's not in there . + Come in , a man said . + I do it very well , he said . +Now -- you know what it is ? +No day in court . + He just said , You are the man , now . +They say : That 's good . + I think of our time right now , she said . +This was the best day of the week . + He had not . +There are not very many now . +It would be work . + I get them what they want . +He was not of her world . + I do nt think I will come back . +But even that is nt the end of it . + There were five of us . +It is his season . +And that 's all he would say . + I just have to get back to work . +I do nt know what you think about that . +How much more do we want to do ? + I want to see them play . +He said , no , too much money . +We say the same this year . +You have a good man . +Who 's the man ? +But in this case , it was nt to be . + And that would be ? . +That I know more than he does ? +How do you work through it ? +It was just part of the day . +These children know not what they do . +It 's like , what ? +So how did he do ? +I was nt going out as much . +But that 's all it did . +Where we go now is a way out . + You would nt do it . +You can work with this . + And he said , Well , so what ? + There is no government without us . +First and second , two out . + No , I do nt know that . +Right now we do nt know . +And I think that 's the way it 's going to be here . +In another way they are not . +Even so , the market did nt like it . +So what is he to do ? +Well , no , he said . +But he would say no more . + It was nt to show them up , he said . + Women say , So ? +What can he do on the court ? + It was like , What do we do now ? + We had to put her on . + I think we all do . +That is not what we are about . +Well not for me . + We did not play our best game . +Less than one day . +Second of all , do what 's right for the business . +Not that I use any of them much . +They want me to make it . +You do nt have this . + But it has not . +But his game was nt there today . +But I do nt know . +Now is nt that how life should be ? +Your time is up too . +That 's the best I can do . + That 's the place to be . + It was nt like before , he said . + People do nt know me . +We have to play when we are down people . +What Do We Do ? + We think it will . + So they are all in . + That 's a good one , is nt it ? +Not many people get to do it . +And he 's not going to like it . +Well , here 's some . + But they never do it . +That 's where you and I come in . + How come you are here ? + I think they can play . +So how does this all work ? +It was never found . +How many years ago ? +Where 's the office ? +He will not be here . +He had to work his way up . +And if he 's not ? +I have no time for that . + They had the game , he said . +WHO HAS BEEN ON IT ? +We still think that way and we still think that is the only way to go . + We are going to have to work through it . + That 's what we want to get back to . + I like it like that , he said . +Did you not know about the money ? + He has been all year . +We have to get him back . +I had been with them . +We think the world of him . +How 's the money ? +But they do come . +I will and you too . +How are we going to do this ? + And we are down . +This can be very long day . + He could not say no . +Do nt get it ? +There is no country in the world that does nt have this . +And in a way , it is . + I know how I play . + That 's what I do . +You are the best . +You come by , he says , What you want ? +We play that up as much as we can . +You want to go out and put them in their place . + I get so much from it , she said . +Or when you go . + We know our children so well . +What do they like most ? + And so does the team . +The season may never end . +He was nt that way when I was here the last time . +My house is not a home . +They were also right . +She was on her way . +First , the good . + Where is my little one ? +We do not know , we do not want to know . + You have to make it work . +That could very well be . +You make the most of it . + We had an off day today . +You know they are there . +He was the first President . + Now you can see an end . +We are a country at war . +That is , when it is on . + Did I have a good time ? +That 's what law 's about . +But I think it 's over . +Who do you think did that ? + That 's not like me . +Now they have found one . +We are going to make it as public as we can . +I did not even have to go to New York . +I was in the city . +But they were not to be found . +Where and when ) will it end ? +There is another way to say this . + It 's show business , he said . +Which do you like ? + You do it on your own , he said . +This is no life . + In me , he did not get that . + If he is in there , what good is it going to do ? + This could be it . +Without him , our world will never be the same . + Where did they work ? +And then there 's no going back . + I said , What do you think ? +But we had a good year . +I think it would -- so I do not want that . +But we had him do it over . +Which it did nt . +But until it is , have one . + I like my life to be about more than my work . +And if it will , you can . + Did you get one ? +We would nt take them over . +And many do nt want them to be . +How best to put this ? + What Is There to Say About Me ? +A home was found for all three . + They did nt know me . + What do we get ? +But that was the last one . +It is too long . + We had the money . +How much of that is good will ? +The first few days do not go well . + I just go . + You do nt get it , do you ? +And for them , it is . +That 's all they are going to get . +The game might as well have been over . + We had a good time in there . +It did not do so . + I have a good life here , he said . +Come on , we said . + But what a way to go out . + They have left , he said . +It 's not like that at all . + I did nt even get up to see it . + Last time , he did nt have one . +So should the program . +We just did nt have it at the end . + There were nt many people there . + We should go back to what it was . +I can make it . + Where can you get that in New York ? + You think , There 's no way we should be out here . +But will it be the last ? +But I can take it . +What could be going on here ? +There is no more , Well , what 's next ? +But now I have this . + And I do nt want to get into that . +Not by a school . + Was there a government ? + This is the way life should be , he said . +This is where I would like to be . + Today we are the best . +A week from now it will all be over . +I work at it . +There were no children . + But it has been . +That did nt work very well . + I want to go to school . +It still does nt . + Well , this is going to be the last time . + He 's as good as they come for the game . + It 's there all the time , she said . +Or so they say . +We are on the case . +He 's never said I was going . + This is good work , he said . + They are both about the same . +Not all , but some . +People do it for their children . +Then what are you going to do ? +It 's down to that . +And he did nt use it . + How does this work ? +We said , No , no , no . + What do you think of that ? + How will you make it ? +Today he does nt . +Without him , they are not that good . +No , I do nt , and this is the end of it . +It is only money . +You are not what you are . +I know I have nt . +And it was not only him . +As he says , It 's never a good time . + It might have been . +He made it back yesterday . + Not in this family . +I have to back off on him . +This one should be like no other we have . +And they are all for it . + Not that he 's our man , he said . +Not one or two ; all three . + And then I know it . +So what will she do ? +It was a good play on their part . +Today he is president of the company . +HOW DO I GET THERE ? + What does that do ? +Or you can do this . +Before I get old . +You are with us every day . + I know what I like . +You want to go four years back ? +He said , I know you did it . + I have to do that as well . +Never , never , never , never . + But you do nt have to be the best . +People do nt want that . +But I would go . + For a while . + We said , No , you do nt . +Well I think it was just after . +He did nt get on . +Where have they been ? + We are not the same . + For other people , it could go the other way , he said . +But you do the best with what you have . + This is where the street would be . +But they have to come up with an end game . + I do that all the time . + I did nt want it . + Who are you ? +But it 's not what it used to be . + It could be more than one . +I work at it every day . +They are not there for the most part because they want to be there . + It was just for a night , he said . + Those who do nt like it , well , they do nt like it , he said . +What are you into ? +Do you have all day ? +But it 's still a business . +Now you can have it any way you like . +So , you know , just play me . +Come and see me . + This is about as good as it 's going to be , he said . +There is no going up or out . +Life was good , he said . +It 's come a long way , a very long way . +But in business it 's all about him . +This time around I know that . + But it 's over . +I know who those people are . +We were through this about a week ago . + Well , now they are going to get us . + It has not made money , she said . +If you do nt , do nt . +We just did nt make the play . +Five years since you left us . +I should nt be . +Get where you can do the work . +But even then it was nt over . + In the city , though , it 's like another world . +So , what 's in it for them ? + I like it so much . +If I had been there , she would be here with me . +Well , that did nt work . +Money is being made . + But this is too much for me . + We want to know where the work is . +Big money , too . +How do you get the money ? + And I think he may be very right . +It was nt my life . +This may be as it should be . +It is in this case . +The money is just too good . + People have to go on . + Well , is there more to us than being just the way we are ? + This may be it , he said . +No , not for all of us she is nt . +There 's a time to come and a time to go , and that was the time to go . +People can do this on their own . +I get it all too well . + I said , A little . +It 's not just place , which it is . +Now it 's like I do nt know . +In how many years ? + There are only a few of us left , he said . +Show them to the people . +But I know it 's out there . +Will it do so ? + It is going to work . +And that 's just what they did . +Where was I -- ? +He was that way last season , too . +What did they want ? + He 's just like one of us . +She just was nt up to it today . +They also did more than that . + It 's what you like to do . + He would like to come to the United States . +And we never will . +Some , just one . +Do nt say that . + If she did , she was right . +But we say this is not like that at all . + Then what does he want ? +You may have to . + But I can play . + What would people say ? +He says he is going part time . + That time is now . +Now they have to do it . +This is a life 's work . +It does nt do any good here . +And in that she is right . +Every May , they come . +But that is not the case . + It 's the best you can do , she said . + And , I know it . +Did the show go on ? + So people take their time . +It was three years ago . + And they have no people over there . + It 's not more than one year , he said . + I do nt know too much about that . +They had never had that before . + I do nt take money , he said . + I want to be here , I have family here . + She said she was . + It might take a little time to get back to where I was . +But it is a part of my people . + What will be will be . +You see , it 's still our game . + I do , I said . + This war will never end , he said . +I think about her every day . + Will There Be a Market ? +Now there is one . +I want people to come back here too . +But some was new . + He 's made a big business out of this . +I do nt know if I was or not . +It 's all they had . +But in the end , I still have to work with your President . +I do nt know her and I do nt like her . +No , no and no . +He did not play . + So , I made it . + We do nt like it , he said . + There might be a little too much . + What can you know about life ? +Is nt his work any good ? +We do nt want this , but what can we do ? + The White House had a very good week , but it 's not over . +I can only play what I know . +So take it home for the next day . + It 's going to take some time , he said . + I do nt like it , he says . + How much was it ? + I said : How can this be ? + Now they say , Where ? +I think we have . +You know what we are all about . +Do nt want that ? + I think about him all the time . + He could nt . + It 's so not me . + It 's not like the old days , he said . +I think they still have a long way to go . +Other days there is no work . +We found a way today . +It 's very good for the office , and very good for him . + I do nt get it at all . + We are still in it , he said . +Where did they get it ? +We still think he can do that for us . + They have to want to do it . +In the end , though , he did nt . +That 's all they want to be . +Two , he said . +Last night was one of those times . + The city does not have any more money , he said . +Here people do business with people they like . +It was nt the same for me . +His department put him on it . + What are we ? +There is money to be made , too . + Where Are the Children ? +And that was just last week . + Some women do not know about it , she said . +If you take them back , you have to go back with them . + I get around people . +But , like me , they are here . +The children down here do nt even know who she is . +How did we do that ? +And since then , I have . + He is New York City . + We want people to come here . +How do they know when they get there ? + I said , What 's what like ? +All this is just a big show . +What will he say ? + But I will do my best . +He did not play in the first game . +It 's too up and down . +But it was not so . +They do nt even want to see me . +And what does he do with his time off ? +And our children will be the same . + And so he did . + It did not go over . +He said he would take less money . + I did nt know what I was up against , she said . +We did very well . +She was at home . + These are not . +Four or five days at most . +It would not last . +Now the world is here . +He is now president of the New School University . + Some people want no part of that . +They did nt want today to be the first . +And if so , how ? +It has no place to go . + No , no , not at all . +Down but not out . +We do nt take days off . + It was very much your music , my music . + Just will not do it . +And here is what I made . +That 's the way I take it . + My home is there . +I do nt want to get out of it . +I just did nt want to go . +When is this going to be over ? +What is there for me ? +Not us , and not our children . + Are you American , too ? +When you are President , he said , you do not have to go to people ; people come to you . +How could she do that ? + I know what I said . +Do you think about that ? + You have to go on with your life , she said . + Only if they are in a set . +What should New York do now ? +Until yesterday , that is . +It 's over now . + You should have it . + She does nt have time . +I can still do some good . + It 's so over . + And we can go . +But if you are used to it , that 's how you work . + But if you are not . +Or like it was . + And that was about it . + You know him . +But we are down more than that . +It 's been around for years , and years and years . + They will not take one without the other . + It 's the best time to be in business . + I just do nt know what to say . +They could nt do it without us . +But it will not be in New York . + It is a new company . + That would be more than any other place in the United States . +I said , This is it ? +How will they get them now ? +You get on with it . + She did nt know who he was . + And then to get this . + They do nt think that way . + Put your money down . +Four in one year . +So you are on your own . +He 's not going to be here . + I think he has that in him . + It 's not the big game any more . +Then he found he could do it on his own . +You do it for the money . +Four children were also in the house . +He 's just like me . +That 's how it 's been since . +They make more money that way . + How long you been on ? +For us , for the people , it was nt just about the business . +Good to see you . +Then we would nt see him for another five years . + We did nt know if it would work . + And to two more . +And some of them did nt come back . + It 's not the police . +You get to see them every day . +And they have been good to me . + I made my money here a long time ago , he said . +This is such a time . + No , he says . + This was all the money I had . + It was nt like this in the old days . + They are still not there . +I do nt know what she did . + I do nt know , said another . +If we can get back home , we want to get back home yesterday . +If so , there is nt much here . + Who are they after ? +I play with them . +But there is some good work here . +Or it 's not . +What we do is a game . +We have a season to play . + We do nt have time for them . +And if so , for how long ? +But it should nt . +And my -- and she did come in to see me . +I have no money for that . +And that 's what we do nt have right now . +He would say not to come . + I know you , she said . + You just never know . +I do nt think he 's going to do that here . +It was one , not three . + It did nt do any good . + Now , no one does nt . +What would you do if it were you ? + It was not a good play by me . +It 's to be against the president of the United States . + I would nt say so . +He was not the last . +What could be going on in there ? + Back to school today ? +But it 's not so . + I think it will end in the next week . +This is way too much work for me . +So , how did I get through it ? +That 's what I like . +If that does nt work , will this ? +What did she say about it ? + It 's not the first time , he said . +He 's too good for that . + They say he 's one of the best . +You can not go back . + I was there . +I do nt know how she does it , but she does it . + The next day , they were still out of it . + What you did last game , it 's over . +We think of you all the time . + Well , how about four then ? + They is me . + We make the best of what we have . +But that 's between me and the team . + I never found one , he said . +He was about a year old . +He said he still does it . +No , I did not at that time . + But a good game . +Most states do not have them . +Not the way people do . +She was so much . +It 's very American . + It 's such a political city . +The police do not see it that way . +It 's all good . +But even they know that is not going to be case with them . +After which he left . + It was all new to me , she said . + That , and he has been through this before . + Can I be one of them ? +There is only work . +Which companies do you like ? + And I do nt think we did . +Few of them did . + What can I get for them ? + For me , it 's all about the money , he said . +I did nt think he was going to get it . +There were only a few last year . +Their team is going to be up for it . +This is just life . +But what is new about that ? + We could , but we would not . +It 's you or no one . + It 's about where it is day to day . +She : What 's new ? +That is the way . + Many people want to come here . + We would like it back . + Did we get it ? +They just play it . +But now he does . +After that , I can go home . +But that is not the only way . + I just might , though . +It was just as well . +It will not say how much . + But we still do nt have them . +Go , go , go play . + Who are you in there ? +This year he is not . +It 's not this team 's way . +But get on with what ? +He has a way to go . + But is nt that what life 's all about ? + Where you want it to go ? + Now they have us . +That 's My Man . +They want to see the team . +It is , you know . + People will say : What ? + I do nt know if there is any other way to think . +This is not the end of your life . + We were in school . + What are they going there for ? + And what does he think ? + This is the only place in the world they do nt do that . +I could do it now . +What can I do about it ? +But that could take a year or two . +I would nt want that . +But did nt it ? +That 's only good business . +They are still here . + We are going to do it . + We should have used it , too . +You could see he had been out for a while . +And after that we made up . + Now , it 's as it should be . +I was right then . +But I do nt know that he will be . +We have a good program . +They made money that day . +She was very game . + Who could it be ? +I too was there . +It 's time for another one . +This , as I see it , is how it should be . + I do not think that this can last for very long . +I did nt want her to be part of it . + They do nt work very well . + Then he does . +That would never do . + This is my city , my home , he said . + They know what to do at game time , he said . +But to do that , you have to know what they are . +Did he know of her case ? +That 's money time . +She had , she said . +Do nt time the market . +What can the United States do ? + I just want to go on with my life . +There will be four . +And she was right : so we do . +What time do you get up ? +And I have to know what to do . +It will work because people want this law . +So we do nt have the best . + We never had to . + We do nt have money , she said . +Will we have that time ? +But we did nt know it then . +That should be me . + We say , Good for them . +This is up to our Government . +I did some of my best work that year . +We want to go out and play well . +They are going to get all of us one way or another . +I just could nt . +But he did go . +But I do nt want to go back . +You have come with me such a long way . +They think they do , but they do nt . + We know we can play with them . +But that was nt the case . + You can do it every year , he said . +She was not around for my first day of school . + But what do you say ? + It 's a big one . +Still , I said no . + It 's all what he 's against . + I think so , he says . +Not so , they said today . + Have a good time out there . +And it did nt work out that way . + It 's good to see . +But I know now it 's not about that , it never was . +Now there 's a team for you . + I was in the right place at the right time , she said . + If you go first , you are the best . + I said to him that night : You know what ? +He 's what this game is all about . +And he was one of the few to do so . + I have to work all day . + I do nt see any other way . + This is a family here , he said . + This is the way I have to play . + That 's what he says now . +They did not in this case . +Would that it did . + If I have to go , I have to go , he said . +And they do them well . +This is what you play all your life for . +His life would never be the same . +Take it this way or do nt take it at all . +We were nt very good . +I know how they think . +That just did it for me . +Only about five million more to go . + Will you do this for me ? + We had to do four years . +I think he may well have . +I did nt -- not one time . +Where will the children go to school ? + Now it 's five , he said . +That 's who we have been . + Well , it 's been over two years now . + You make do with what you can . +This is still home to me . + If it were nt for him I would nt be here , she said . +You do it , or you do nt . +You do nt do it . + We are not against the Government . +I think we have a good team . +They could nt get out . + And he 's right . +For us , new is next . +What we have is the people . + Then what about New York ? +But over and over and over ? +What do you get for that ? + We do nt see these people . + They want their game . +I do nt know , she said . +Some have been to both . +Before , that was then . + We were there then . +He was not even to do it on his own time . +I want my life . +It 's in who you are . +Who could they be ? +Because you just never know . + But it was nt . + This has been my last year for about four or five years now . +I did nt know if I could do this . +This is a team . +That is part of the game . +In second , they put me . + What 's not good ? +What 's Going On Here ? +But not many , he says . + Me and him was a good show . +The new season is set in New York City , as the first season was . +I want to make work for them . +And no , it is nt the way it used to be . + Who 's he ? +She has five children . +That work is now under way . +She said , He is ? + And then he could not go on . + We did the best we could . +It may have to . + I want the best for them . + He says : What do you think ? +How did it get to this ? +I was in my own little world . +They were not without company . + Take me back to my house . + Not in two or three or five years . +It is his team . +But she 's not there . +There 's going to be a war out there . +What do you want to make ? + You know what would have been here ? + We have work to do . + But if so , they do nt work very well . +But he is still there . +One , here 's what I want to do . + Who 's going to be there ? + We do nt want to go there . + Are you going to make money in the next few days ? +Which I do , from time to time . + We were also among the first to come back to New York , he said . + But you never know how big or when , until it 's over , he said . + They were nt . +It just might be . + He says he did nt say what they said he did , but I know he did . +No , he said , he does nt think about it . + We do nt want to be political . +They do nt last , not for long , and there 's not much to them . +I did for way too long . + I do nt want to be here , he said . +And then it was time to go . + So what do we do ? + The people say to me : It is a game . +But it 's still here . +What do you know about that ? +But people do nt know that . +Other people with money found that they had less . + A big what ? + Who would I take out ? +You do nt think so . + He was right and he is right . + What do you want to play for ? +HAS it come to this ? + That 's some company , he said . +I know that 's not him . +I did nt go to school with them . +What were they made for ? +Well , it is and it is nt . +But that 's about it . + He does , too . +It is a people business . +It should be the other way around . +But he 's part of this team , and that 's part of it , too . + We only had the best to say about him . +And so is her family . +But he is old , after all . + I want people to know . +I do nt like it . + Will this Government last ? + I never had to think that before . +Where is this place ? +We want to see how long it will go on for . + I know him . +It has to be like that . +But I did want to say what I can now . +And we like what we know . + This is nt the first time , and it is nt going to be the last , he said . +It 's How much did I make ? +I do nt play on the court . +It will just take some time . +He did it at the right time . +But now , I do nt know . + Take it all out . +After all , she has work to do . +No one has any . +I still have two more years before I get out of high school . + We may not get out of this . +You are out of business . +It would nt be new to you now , because you know about it . +But I do nt know when I will get out . + We want to do it one on one . + It 's business . +This one made five . +I know how to do this . +It will make people like you . +It has nt been . +Just like New York . + But that 's the end of it . + You want to see ? +But this is going to take some time . +But this is not one of them . +That was all he could take . + I would nt play any other way . +Well , not all , now that I think about it . +There 's only one President . +She does nt go out much . +He does nt want that . +But they used to for years and years and years and years . + It was about time , he said . +And so you can , even at home . +There are three in all . + You have to get on with life . +There is no way I could do that . + That 's not our business . + This is just what I do , she said . + And we will be . +And then there was one . + It 's just no good . + There 's no place like New York . + There will be more of them . + I have , all my life . +Is that right or not ? + I think it would be good for him . + This was very good for us , he said . + And I was like , which one of us did it ? + We have been up and down , he said . +But I have not . +We have to see where this will take us . +I like what is not said . +At one time , there were very few . + Here you are . +It 's what 's not there . +Could they both be right ? +Much more than me . + Business is not so good , he said . +Do you like the game ? + That 's where they come from . + And I take them up on it . +More are on the way . +Because it could still be good , and no one 's going to show up . +He said , If I know you put it in , I know it 's going to be right . +And some do it because they have to . +There were more than four people . +And he did make it work . + For me , I know this is what I want to do . + Would you like two more ? + I do nt want to say no , she said . + You never know what 's going on . + But I just do nt know if people should come out now , she said today . +But that is the way the season is going . +But this time it did show . + It was too much for us . +It was just a night out with your family . +We do nt like it , but we are used to it . +What made me think of all this ? +It 's a public place . +I never go back . + These days , who is nt ? +Are there any in New York ? +For now , though , they like it very much . + Those people are not out there . + The way we think . + Could we take this one on ? +I did nt even know where I was . + We want to make our own way now , he said . +He was home in two days . +Some say two million . + I think they are a good team . +She is into it now . +I use them all the time . + But I think there is still a long way to go . + And I could nt think of any , he said . + And I said : I do nt know . +He just did nt . +But against this team . + I do nt think we know . + I know what my game is . + It 's all over , he said . +I just say I do nt know . + It 's just time , she said . +Now you see him , now you do nt . + In the United States you have the second two , he said . + Two of us in one place . + They should take it out on each other . + What was it like ? +They know each other . + I had to have a game , she said . +I still say what I think . +He does nt like them . +He could take it . +I used it every day to go to school . +And people would say , there 's me , that 's me . + You take my three years here . +It 's good for it , too . +Still , he had to work . + It is where the country is . +They have to do it all the time . + How can they all do it ? +Have to get back to work . +My people will be there for me . +So I want to be around it . + Would You Like It ? +That 's all it is . +But right now , it 's the law . +They were not his people . + Next time , he said . +But where had he come from ? +But they will come . + He would nt show up if he did nt . + There 's no time to get down , he said . +This is good for you . + It 's like one family here , he said . +I know they will be here . +It had to be found . + This is not what you might think . + I do nt think about it as much as I used to . + I just do nt think we have that much to say to her . +They are right on him . +But will this all work ? +Before it was the government . +Come on , work . + Where is he ? + What do I do with them ? + I want you here today . +I had them , too . +So on and on they come . +We can use them all up . + But he 's here . + When it 's over , it 's over , she said . +But what is it all about ? +I would never go back now . +They now say Times . + That is not this case . +They did nt want to do it ; they would nt do it . +I was the last one . + I want to show people it 's not over , she said . + That was Three . + Mr. May said . +It was not about money . + Like it or not . +They last several days . + And I say , On what ? +He 's very good at it . + It was as good as the day they left it . +They just did nt know how it would play out . +People do nt know who is who . +It was about as well as I could play . +But it was new for us . + We should nt have been there . +But not after the last one . + But that was still there . + I just like to play the game . +We are all over the world and you never know where we will show up . + This could be a big one . +All was well with her world . + Home does that . + I do nt know when that day will be . +We never , never , never did that . + She 's right . +He would do well not to . + Some of it was too much . +And he did , I think . +It 's just been that way . + It 's a first . +You know what you have to do . + I get these every night , every game , he said . +And it did , at first . +He still is nt . + Every time we go out . +Do you know of it ? + They said : Well , I have a high . +That 's a good one . + We are going to see him . + Me , so there you go . +Some will do both . +They could not , he said . +No one will know . +They all want to go to New York . +I say , What about this ? + You just never know when your week is . +This is all going to be new for me now . + I have no place to go here , he said . +You could go say it to him right now . + But now is a good time . +This is not the right way to do it . +But that did nt work out . + But we are going to make it come up . + I was like , Man , I want to get back out there . + I would be at home . + They are too old . +I did nt want to go to the game . + So we had to get out , she said . +But it 's up there . +This has been a good season . +How good is she ? +They have not had time . + I said , What 's going on ? +The days would come and the days would go . +I did nt think he was going . +I put up with it . +Or the year after . +He 's all man . +And this was one of those times . +And we can do it . +A : You just . +Then it was time to see the old house . +No , there is much to do . + Could they do more ? +And that , as they say , was that . + We are not into that . +It 's just people . + They are now going to have more than we have . +I do nt have children of my own . +People do the same . +She said she would not . +And that , not much . +But then what do we do ? + She put it back . + Which one do I go to first ? +But do they do any good ? + And so on . + That 's not the case for me , she said . +But he said he would . +They only play them . +Does it know you ? + Is that where it was ? +So after all that , would they come back ? +We just have to go on . + There is only so much our government can do . +It 's been several years since you could do that . + There is not much for them to do . +Make him go down three times . +Does nt have to . + I could nt say no , he said . +She said , Go for it . + Yesterday , that was nt the case . +But I do nt think any will be around on their own in five years . + Get me out of this place , he said . + You work with them . + I was just way off . + It 's not all about being the man , he said . + Not all of them did . + What will they do to us ? +He could play three days a week . +But it 's part of the American way . +He was good at that . +And that is how it should be . + And I like that . +Are you going to play , or not ? + But we will get him out , he said . + And he does nt have them . +He did nt have them in the house -- I did . + What 's in it for me ? + Now it 's my time . +What do we do about this ? + And I did what I think he would have . +But , he 's not like that . +He does nt want it to be him . +But it is in play . +There may or may not be children . + That has nt been the case , he said . +It was my off day . +He did nt say much at all . + But I only did that one time . +He had it all the way . + I know he can . + She would say no . + That 's -- she did ? +So we want to play them , but not every year . +The police are in there all the time . + What will you do next year ? +The big house , she said , is not the same without him . +Second play of the game . +Well , not all the time . + We are going to have a new president . +It was a big , big out . + Now , she said , we are another people . +It was what they had going for them . + It 's not going to be the last one and it 's not the first one . +They are going to get me . + I do nt know , he says . + We never use it , he says . + You do nt even know . + I had to think I was going to make it . + I do nt think some of them even know we have a team . +And what a show it was . +The game was nt over . +How , I do nt know . +That 's just not for me . + Some of them were never made . +It 's just not the right time for it . +What 's the president to do ? + It has been like that all season . +But what are they to do ? +Still , the family has come a long way , she said . +Do nt you want to be like me ? + I said , You all right ? +He does know where it will end . +Few American companies would say so today . + I did nt want to . +That 's good , no ? +On this day you left us . + Still , you never know until you are here . +Here are the companies they like . +Not right now , he said . + I do nt go by what other people say , she said . +He said he would . + We could not be home if it were not for you . +We still know we have a way to go . +Is nt there some way to use them ? +Now it is over . +He was back the next day . +But there is so much more the United States can still do . +She does nt say how . +But what if he is nt ? +I did nt think it was going to come to this . + It 's the only way I know , he said . + Now it 's , Is he like me and do I like him ? + He has never been like that . + I would nt go . + And I would nt have said that five years ago . +It 's time to get up . +Which is what I did next . + Are they not all there ? +About a day , he said . + I left the house , I did nt know where I was going . + This was the second part of it . + And where will you go now ? + I used to , she said . +Not that she was nt part of that world . +This is the only place I know . + I would go play for them . +We could nt know . + That 's the law . + Where does this go ? + We are up for it . + Not all of them have been . + I do nt know if I have them now , he said . +Then what is it ? +It has not been . + They do nt have to . + They have to see through it . + I do nt know that it will . +You do some of it . +I know what I had in my life . +And he may , he may . + Well , it 's my court , you know , he said . +She did nt like him at all . +But the government did not have it all its way . +How can you play a part like that ? +So many people want to say they were first . + What do they have now ? +What day was it ? +You were like family to us in every way . +It was like that for years . +It will have its way with you . +What would they take with them ? +But with a long way to go . + But will he ? +Some days it 's work . +New York is back . +And in a way , he 's right . + I want to play for many more years , he says . + And he did it right . +Do nt come to me . + It 's not just today . +It was as if we were not there . +What would you make of all this ? +We have the right of way . +Well here we are and here they are . +We know what we are here for . + I think the time has come , he said . +But it was nt like that at all . +It is this way every year . +Last week , he did nt play at all . +The other is its night life . +So what does he like to do best ? + It 's back . +This could go on a while . +Do you know how come ? + We could go into the next game and not play well . + I do nt think that way , he said . +So what did I do ? +What do people want ? +They are not here to play . +I say it is both . + I was not there . +This is , after all , New York . + A Little of This . + He 's one of the best in the game right now . +I think you will . +Do you know what to do ? +That 's without being up there . +Both of us were right . +It 's over for us . +Too many people around . +Then What should I do , what should I do ? + No , I just did nt do it in other years . +It was not another game . +It 's about all of you . + I want to have a family . +But will it be so ? +When I get on the court , that 's all I do . + He is just one man . +What about our children ? +The show is still going to be all over the world . +And from then on , the man has been well . + He did nt want it . +You want the best ? +We just did nt have one . +And what will they think of us ? +What do they think when they think about the United States ? + Or We are all here to do what we are all here to do . + But will it last ? + That 's her , he said . +It 's like , What 's he going to do now ? +And there 's a war going on . +It 's all still here . + A week at most , she said . + Today you have a President . + Or they might have said , Do nt use it at all . + The good of the world . +We know what they want . + Times being what they are . + There you have it . +You just have to put it up . + This was the only way to get in . +For that is what this is about . +Now he has to go through this . + They could do it . +This is no life for you . +We go where we want . + What 's going on in New York City ? +She says she could do more if there were money . + Not even to the children . +I will do my very best . +Where will these people go ? +Here , take some . +If there were people like me around , I did nt see them . +That 's what it 's about . + And those are ? +I want to know what you think . +But what do you come up with ? +And here come two more . +He did nt want to do that . +So it is now . +The world has not been the same since . +There could be more . +Even if it is . +They are the team we are going to have to go through . +I do nt know who they are . + I want to say to this Government : your days are up and you know that . +Will there be more ? + We did so much the other two or three times . +That 's not going to come up . +And so does he . + Next year it can be over . +He was also a director of many companies . + You are what you can do . +No one , he said . +I had no money of my own . + There was never much time . + I could do that , I said . +And that 's all the money some people had . + We work through it . +If it was like that , he did nt do it . +But at that time I did nt know just how . +But what are you going to do with it ? +How many children do you have ? + Right now is not the time . + I work out every day . + What do we make of that ? +We would have to take the time to do that . + That was our season last year . + We were going to New York . +We have to get the next one , and then the next one and then the next one . +Both much and little . +Very few of them want to . +But , you see . + So if she said it was the one , it was the one . +They are one of those . +We all do all right . +I would nt want to know too much about it . + What are you going to do with me ? +Or would we just go home ? +We can do this . + Who are these many people ? + It does nt have the right time , he said . + Where is it all going ? +I go to the market . +I would say it still is . + They do nt know what 's good and what 's not good . + But he said it could have been both . +We have to get it . + We are not here to do , do , do , but think , think , think , he said . +I found my way . + The other team did nt want me . + Good , good , good . + And I would say , Back where ? +He did nt come around . +A : Some do . + You know her ? + We are very good at it , he said . +And then it 's up to them . + Every one of us will be the next . +The best in us is from you . + Well , that 's all right , then . +I do nt see how they do it . +What is she now ? +You can say all you want . + He 's just good . + And how old is that ? +Might nt we have it back ? + But where there 's a will , there 's a way . + That 's all there is to it . +But this is what I like to do . + Well , you think of all the people you know . +They go on and on and on when they do nt have to . + I think it will be long , he said . +Because they have the right of way . +That , they have . +Just , I do nt know . +She never made it . +He could see no other way out . +Three or four years ago I used to go back . +But I did what I had to do . + Just a little , he said . +What would you say and do right now ? + Or they would nt work with me . + And they said : What do you want ? + And it 's just not that way . +Do nt take it from me . +First , is time . + Show up , she said . + I think we should have , he said . + What 's the use ? + There was only one way I would do it , he said . + I did it before . + They do nt even know it 's a country . +She 's first and then you . +I do nt think that is the case now . +We say , Where ? + How many people are going to do that ? +But other people did . +If you like what you see , it does nt . + So there you are . +But it was never set too high . + That 's over a million people . + We do nt want them in the state . +This is the right way . +They can only say no . + I did nt want to play that game , he said . +That he can do . + And we were off . +But it did nt work that way for me . +He has money , we do nt . + Well , how did you do ? +No , I did nt think he could make it . +Just what does that make him ? +I have them now . +We do nt own it . +How much money does she have ? +Or it may be on us . + And she said , So ? +They are now in the house . +I was nt there that long . + And now we are there . + You know it ; I know it , he said . + And that was it . +It was this time , too . + That set me for life , he says . + It 's not all work . +That is not what is going on . +It 's going to take a while . +There 's No Business . + But it 's also just the way I think . +But I never made it . + Big man like me ? +But what about him ? +It 's my business . + Which is where we may be now . +Do you have a second ? +And he did nt , for a while . +For another , I did nt want to see it . + So , what 's he do ? +But I would nt be here now . +Well , that 's not so . +Get one who can , too . + Now I have only one . + What 's up with your team ? +Now we have the police . +But they want to do it with no money . + Are you who I think you are ? + I will not be with you . + Now , it 's like home . + With him she might have had it all . +How long did that take ? +So she did it . + We do nt want to say any more . +How were they to know ? +And I think it is going to take time . +He has come a long way . +And this is what this all has to do with . +What if you just do nt like it ? + We have nt had one of those days in a long time . +He was a big part of that . + It is the American way . + We know we are at war . +That is because there is so little of him to work with . + Could it be some other place ? +He did play well . +So how about this ? +It did not , so he did not . +How can we go on ? +But that 's the way it was . + I know that 's when I do best . + This is what we do . +And for most people , it is nt . + It just might work , he says . +They make this place go . + They want to be long . +It was still on . +Because , after all , it was only the first day . +He called for days . +We were its members . + And how did that go ? + I did nt like who I was . +If so , of what ? +This is a big business . +She could nt get it off . +For another , it was an if not now , when ? + What was it ? +How did she get this way ? + That would nt work ; people would see through it . +They now have two children . + It 's about then and now . +Our world will never be the same without her . +I want to know . + We can come back . + He said it was nt me and he does nt like for me to do that . + I just think it 's there . + They think the good times are never going to end . +We have to take it one day at a time . +How good can his team be ? +One case does not . + She was nt . + You know how it is , she said . +You know , that 's about it . + But how are you ? +I did get him back . + I do nt know too much . + I could , but I would nt . + This is my first year . + I say : I did nt . + No way I was going to get over in time , so I do nt know if there was a play or not . + So can he ? + It was good money . + But if we get what we are after this season , we could still be back next year . +When to go in . +This was my best year . +So I know that 's part of me . + Who would want to go back ? +If we could do one of those , we would nt do this one . + So what can I do ? +This is The New York Times . +Might as well be me . + It 's still the same . +And he has said the same . + We want to go out the right way . + If I have it , I do nt have to make it , he said . + Very good for you , he said . + We do nt like them . + I did nt play well . +Over all , they did . + They said it was me . + Not so much , she said . +So yesterday was nt just another one of those days . +But will that be in time ? +I do nt want to go back to where I was . +That did nt last . + But I could nt see it . + If he 's going to do it , he 's going to do it . + It 's down to three of us , he said . +And that 's all there is to it . +I do nt think it can be a center . +If the people want him , they should have him . + How do we do this ? +And that 's just music . +And that 's what it 's all about for me . +Come on , you all know that . +More money on that ? +We are a team . +And then I was him . +The last time they were here . + But they do nt . + Do you like her ? +May I do it ? +Before too long , it may be . + She is more than what you all know . +Then people make it out to be war when they have to play against each other . +I only have a week to show them what I can do . +We did nt a few years ago . + My life is not over , he said . +We should get it back . +It could be your last one . +He could still do it . +I know them , he says . +He was only the president of the United States . + It 's a long way . +But they will get most of what they want . +That 's the way of the world . + It was nt even a game . + It was not a good night . +Not many days for me like that . +How much do I have in me ? +They want this war over with . +Now I will center you . + And then , that was it . +I did nt take home my work from the Government like that . + They did nt want them , he said . +It 's all business . +It has come back . + Now they are back at it . + It should work now . + So this is my second . +Who will it be next ? + He 's home ; he did nt go to work , she said . +But that 's the way they are , and that 's the way they play . +He is more than that . + It was nt the first place I would have come , he now says . + He will be good . + On the first day ? + What do you know about music ? +We put it to him a little . +Most people do nt see it that way . +That 's all we can do . +You do nt know how it is . + What 's he going to do with it ? + We have to get them back . + If they want to do it , we want to do it , he said . +And I can still do it . +There was a group in New York . + I want a life , she said . +But I had one of those days . +Before , you never had that . + They were all over us . +They just said , Make it . +But New York is not any other city . + I still have a way to go . +There did not have to be . +Now , they do nt want you here . +He just does nt want to get out of there . + They made too much out of it , he said . +And when does she think that will be ? +Where was The Times ? + Where will you put them ? +A year and a day of it . +And we can come on here . +Now they want to use this against me . +They can not come in and say , We want this and that . +That said , here we are . + He did not say what . + It 's not like it used to be , he said . + I would have used it if I had to , he said . +There were two of us . +I want you to go out there . +He is also one of the best . +It was all of those for me . +That 's what being president of the United States is all about . +It 's like another city . +Even if we could go back , what is left there now ? +And much , much more . +All the same , you get used to it . +And not to me . +The New York Times . +I only work here . +That 's life , and that 's what we do . +I do nt even know who he is . + I have to see it . +This is his time of year . +A year ago , that was not the case . +Well , to each his own . + Next year , he said . + I did nt get it at first , but then I did . +We should be used to this by now . + What did he know ? +And , all around , children . +In a public school . +These people are right . +Go the other way . + It is nt a law for us ; it 's for big companies . + What country are you from ? +Like both , yesterday . + He may not be . +I come back every year now . +For the most part , they still are . +Some of it was about you . +But most people did nt . +That was not the end . + That was two years ago . +What is to be made of this ? + So you do nt know how much money there is . +But take they do . + He could say that . + And you should want that , she said . +It was one big family . +How does this play out ? +WHAT CAN YOU DO WITH IT ? +What 's left of it , that is . + I did nt think that much of it at the time . + It 's time to get on with it . +It 's his life . +He still is nt back . +He would have to go . +Its time has now come . +There will never be another one like you . + What did you do with it ? +After all -- your business is our business . +What is the best way to go about it ? +And I want to know so much . +It is one year now . + What will they do to us now ? +You know what he said ? + But not like this one . + There was no way out . + They have nt been there since May , she said , and I should know . +I do nt have to go through that . + And we did it . +How in the world could I get through ? + They are not a company . +It was not his first time here . + I may not . +Some think that is as it should be . +For a while , most of them did . +We did nt make money . +It had all of that . +What can we do that would work ? + We just do nt have time for that . +And where does that money come from ? + That was me . +So that 's what I would say . +Or found my children . +Now it 's back to work . +Do what is best for the game . +Where do you come down ? + That 's what 's going to be said . +Where are we then ? +When will you have the . +They are and are not the same . +A : No , no . +I still do nt now . + Today is a big day . +That could take another year or so . +All we had was each other . +You do nt get too many of these . +I just could nt go on after all that . +But she does not take her own . +They would not like what they see . + How did it take place ? +The time to do it is now . + But most of it has to do with just me . +So where are they ? + Then you have to get out . + They did not know . +It was new to me , he said . + But are they ? +It still is part of his life , he said . +And I think that 's still going on . +I have it , too , he said . +She was going to work . + I have all that and more now . + Her family too ? + But we do not know who they are . +Now , at long last , it has been . + But they have to have the will to do that . +Both women are now back at work . + I would nt put my money and time into this , she said , if I did nt think it would work . + There were few children around , he said . +I know he 's going to be here a long time . + What do you want me to do ? +Many did nt make it , he says . + They are all over the place . +And that 's what the first season is all about . +My country is not here . + I do nt know what we did with it . +It was Here Is New York , not Here in New York . +I say it 's both . +But where is she now ? + Any game we play this year is big for us . +And this is not just any white man . + He said , This is nt good . + We had a big family , he said . +ONE OF THOSE DAYS . +That 's what we have here . +We have to work with them . +That should nt be the case , but it is . +You know I will . +It may for you . +And then there are the women who say , I want to do this and get on with it . +I think what I like to think , do what I like to do . +Five long years without you . + I want to get back there , he said . + I did nt know what was going on . +You can see right through him . + There was just no way around it . +You can see how big it is . +What about New York , New York ? + If you can play , you can play . +This could be the day . +If he can play , I think he 's going to play . + I want to play good . + You see what you made me do ? +Who 's it going to be ? +I know how good he can be . +He was going with them . +And I said , I think so . + But just take a second . + But that would have been it . +That 's all that 's left of the house . + We are the team now . + This year we do nt have that , he said . +That 's no good . +People know what I think . +Some might say so . +And I know what I do best . + It 's just a part of life . +They all said no . +And how much is that ? +This place is here . + He has nt been in the game . +My house is still on the market . +After all , what 's to know ? +Those days are over with . + I do nt think that is good . +Then I had children . + But they use them . + I come from the same place they come from . +I get it , he said . +There were very few at that time . +It 's not just about what time it is . +What more can be said ? +Not in this White House . +You were with these people day and night . +It 's still going to take a while . + They are new . + Where do you go from here ? +The second one , that is . + And it does . + We are members of this House . +Where could they go ? + They work for us . +But this is the way we should play . + Here he is , the man . + It is your home , she said . +Do it all the time . + You have to be a part of it . +I could not go with them . + He has , he has and he is . +It 's going to be our second home . + Where could it end ? +One of the two . +But , she said , he did not do it . + We are not through - we are going to play well . +This is the last time . + No , you are not , she said . +But that was it . +It was time to get down to business . + But how can you say it 's not political ? +Just not by me . +I said , Go for it . +One of the people . +There are people all around . + We do it for the business . + The old man was right , he said . + He had made it , she said . + What is it and how does it work ? + There was no way out , he said . +I do nt know that right now . + It 's been a very good day , he said . + And other people said , There 's a war going on . + It 's home , he said . + What do you want me to do about that ? +But we do nt know that , do we ? +It 's time to get to work . +We have to do what we did last year . + That would be the end of the day . +He does nt think so . + He did nt want what he did nt have . + It just is nt me . + Only we can do that . + But we have a good team here . + He was my family . +We are an American company . +You only think you are still . +So which are old and which are new ? + May I just . + Do you have Women ? +They are the best in the world . +It had to play and play . +Now , it is what it is . +They had him at We want you here . + But what country is this from ? + It 's all right there . +And not so many of those . +This is my first time . +It could have been the other way around . +So I called it . +Only because we like to do well . +But he had never been out of the country . + You will never take it off . +What about At Home ? +But that 's what the game is . +That it 's not I , my , me -- it 's us , we . +We just have to get some people to get more people . +They are one of the best in the game . + And right now I do nt . +You were the best of the best . + Not so big , I say . +But there will be time . + It was all there . +Not that she has a case . + This might be a way for them to do that . + If you do nt do it now , when are you going to do it ? +Each year we did a little more business . +That is so over , and so much more over , even , than before . +I could nt go on . +We are not going to do it . +See it that way or not at all . + This is what he can do . +We do that now . +Now we know it . + Very few people are in between . +I have to go with them . +But the company does nt have to . + I do it every now and then . + But we are not at war here . + The time for it is now . + So that is it . +But I want even more . + But the country is not like New York . +You do nt want to play the same way many times . +What place is that ? + They do nt want a war , he said . +It 's three years since you left us . +How can this work ? +He will have it no other way . +We found that it did not . +It should nt be that way . +There was no place for them to go . +I do nt know if it 's because your team is not the same every year . +They were not , he said . + So how were they ? + People do nt have time , he said . +To me , that 's the best . +They want a school there . + How did he do ? +He was old school . +But will he , in the end ? + Now 's as good a time as any . +As long as there is a season . + They get a high off this . +All night , every night . +I think this is going to be our year . +Up was the way I had to go . +For now , he does what other people do . +That 's my work . + That 's just the way it was . + What do I do about it ? +But now he might . +And he will do them . + I think about it all the time , he says . +You take it , or you do nt . + Well , this is it . + For us , it 's not . +So do nt think . +She did not come back . +Many may not , and that is their right . +We are for each other . + I left a good part of my life in New York . + But that 's it . + It would nt be under there . +They are going my way . +After all , what was there to say ? + It 's all about us . +Is nt that what it 's all about ? +Then : We were at the same school , you and I . + It 's over , it 's all over , several of them said . + How about that ? +He was part of a team . + Now I know . +He does that very well . +It has been less than two years , not four . +The way it is , is the way it has been for a while . +Here 's what we know . +But we were here first . + It 's where you go from here . + That was nt right , he says . +And here we go . +Not a new one . + Will they be with us ? +And it 's also work , work , work . + Well , he said , we were nt . + All I can say is you do it . +Some of these women think so . +She does good work . +What about use in the United States ? +Over the years there were only three or four who did the same . + They come and go , he said . +He will not say more . + But that 's all we can do is think about it right now . +You do it every week . +She is still there . + One day at a time . +He 's too much -- too much for people . + What do I get out of it ? +But we are on our way . +Not that you have to like it , too . +Not even a We are not home , but . +That 's how long ago it was . +I do nt know that I could . +Now he had me . +John : I do nt know . + And I said , I do nt . + That was three years ago , he said . + I want my five years , she said . + So does this one . +You do nt have to play a game . + Well , he would . +It 's what John is about . +And who found them ? +All Work and No Play . + But it is a political case . + And her children ? + Now , people say : New ? +So what 's up ? +That is , until last week . +Now we can just play . +Some people are good there , some are not good there . +And who has that much time ? +And her next play ? + I was nt one of those . +We said he had never been like that before . +How can I not be ? + And do nt come back . +To think that I was here . +You know : Now we are here . + It was nt as good as we can do . +I did not know this . + You would nt have time to get that in place . + I do nt know what made me do it . + I would like to do it , he said . +Because they are not up . +And that was not all he did . + Would I like to be a part of that ? + But we did nt . +Some of us have been around for a long time . +That 's what we were up against . +We do put time into it . + Part of that was because of it being a night game . +Now it 's one in two . +Did you see them ? +How do I get him home ? + WHERE are you from ? +Other than that , I do nt know them . + It never has been . + I do nt know how he could say that , he said . +They are going home . +What , then , are there three of ? +But we are not going to . + Where did you end up ? +It does nt take much . + It has to . + Do nt you think they will come right back ? +They just do nt play the game . + What if he had nt ? + I did nt see where the money was going to come back . + I do nt think you can . +She may well be . + I want people to use me . + What it is , is what it is . + Do I think that 's right ? + That 's all I want out of this . +And we will go back to work . +You go where you want . +It should not take long . + You just do what you have to do , he said . + I have nt . + They are , we are . +How 's your family ? +But where did they go ? +Him , I no know him . +There are so many children in the place . +It 's been a long time for him . + He did nt do it . +And here she is . +It may not take that long . +That 's for other people , not me . +You do nt want to be a part of that . + I did many times because I like them . + This is what he says . +We know this , too , because we have been through it . +They come from all over the city , too . +I do nt even know him . + Not just in New York , but in the country . +I did nt know this . +Could that have been me ? +Not all made it . +You had to see it . + I still do nt know to this day . +Where will she go next ? + It 's not like if there are five of these , you know . +It 's just going to go on . + I do nt get that any more . + It 's not that the family can do this or that . + We both have that . + It was day after day . + It will be home to me . +This is not what it 's about . +We had one game . +The two did not know each other , they said . + I had a team out there , he said . +This to this , that to that , all with all . +Is it still in business ? +There is another old way out . +It did me some good . +This was all about money . +But life did go on . +She said it all . + Now the world has to think . +But it 's all there . +This is nt about him . +There 's people I know . +Right here , man . + It 's all about time and money , the director said . +It 's not war . + And I say , If you want to do it , you can make the time to do it . + We will have to see , he said . +And they still do nt . + That 's what we have to get to , and that 's where we are going to get to . +You are with us . + I did nt know , she said . + She was right . +I do it because this is what I want to do . + It 's best that I left . +If we were going to have a war , who would it be with ? + We are going to go back , he said . +And now it 's two years . +Not so , he says . +That 's not how he does it . + What 's one or two more ? +So how does it do that ? +But you are right . +We know who you are but we do nt know what you want . + You did what ? +If not , not . + I did nt know what to do . +It does nt go well . +They do nt want me to be at the house . + Not in that one . +They do nt have them now . +Do we want it to be ? +Today , we never did get what we set out to get . + I do nt have time for it . +He does nt like what he 's found . +But that was nt to last . + What are you going to do here ? +And they work well . + Are we too big ? + This year , it 's no way . + It 's going to take some work . + But this is the way it is . +SO , YOU WANT TO BE . +I do nt see how you can not . +And we have a program . +The way it was . +Or even get it ? + I see , I said . +And then he was off to work out . +Do nt play me . + We know what we want to do , he says . + They do all the work . +They are nt going down very well . +They come and go . + What is too much money ? + I say , Right where you left him . +And that 's what it 's about . +It is the same old , same old . +A : No , not at all . +But the second time ? + Well that 's us and that 's them . +I said , For how long ? +We can do what we want . + What do you have over there ? +And I think it 's a good program . +If not now , then when ? + But there was more to it than that . +He could say who he was . +How do you think he does it ? +They do get around . +Not all will make it . +You said , I do nt see it right now . +I like him and his family . +It 's good for business . + They come from all over the world , she said . +They never did before . +All I know is what I did . + It was just what people were used to . +Now I have one more left . +This is the game that I play . + There 's no way out of that . + I play three or four times a week , he said . +She could nt make it . + I do nt think we do , one of them said . +We are going to be the best there is . +It made us more so . + It 's in there . +That 's their business . +They did nt even know each other . + It is not the case . + In the first case . + There 's little we can do about them . + It 's too big , she says . +Now , he 's for it . +How can I do so ? +See if you can make some money . +He 's in there . +That 's what he used to do . +It 's like high school . +But that will not do . +It has it all . + This was not a political game . +They are not all right . +Then it 's up to her . + It was the other people . + And what 's not to like ? +And here , or there . + Now they are after us , he said . +Now , where were we ? +It was a good little group . +It 's over , one or two years ago . + He said , You think you can take me ? +I do nt know what to do with my days . +That 's what it could use more of . +What might those be ? + But with what ? +I know what she does . +It still is one . +It is also in the right place . + We have him for two years . + She 's been through this before . +We will see where we go . +He said to me . + That 's all right , he said . + I can do both , he said . + They never used it . + I like to think it 's a play . +They are all over the place . +For five years I did that . +DOES it have to take so long ? + They can say what they want to say . +Well , they do not . +He could be there . + She said to them , If you have money for this , then you have money for us . + We did nt think it was too much , Mr. May said . +He was what he was . +And from where would that come ? +Now I was his . + What about it ? + I think so , said White . +We have been here before . +Is she being used ? +You just do nt think about it . + We know he 's with us . +We come , we see , we want . +In this case , it did nt . + I still do nt think we have one . +And come out it does . + But she did not say how . +She was right on the money . +Take her own home . +Very few children have been in such a place . + We are going to court . +We are here for you . +They still do nt get it . +If I do well , I go on . + Where 's he from ? +All that was yesterday . +But we do nt have to do it that way , and we do nt want to do that . +Which there is nt much of . +The next time you do good . +But you could have been the first to do so . + We will see more of the same , he said . +Well , she said , no . +Are they both right ? +But many would if they could . +Not in this case . + I said , I did . + They all have money . + Other people did it for him . +She would say , You can do it if you want . +Who could say no ? +How do you get to it ? +What could you get for them ? +There 's no money in it . +No , not you . +We are still at war . +Then there was this family . +And that 's what we have to have . + Did they have that ? +There 's no way I go with him . +They are not going to work . +And it just did nt work . +Many are now in school . + I did nt want it in the house . +And yesterday people said he was as good as he was big . +When could they see it ? + You know , you may be right , he said . +And so , she now says , it was . +No , that was nt it . +But I was , like , I do nt think so . + That 's good for us . + What should we do first ? +He says , You just have to work at it all the time . +We are still in it . +He 's here , I can go now . + Who 's the best ? + Some people have left , he said . +She said the government had a long way to go . + But you never know . +But come to think of it , so what ? +But that 's all right with him . +When they did , I said , What is this ? +That 's on a good day , which this was not . +This game , he was out of the game . + People want to go home . + He should have had four more . +They would be right about that , too . +She does not know where they are now . +The time may be right . + The life I had was not good , he says . + I was nt here that long . + Do you think it would be all right ? + But people can not work . + He said , Man , that 's not right . +They like me down there . +But it 's not because of the show . + I can get it . + And so it has been . +Then they know , you know . + Is this the same ? +I do it because I like to . + It does not . +This is my work . + We did this before and we can do it now . +We know each other . +And only just in time . +They play like they know they are good . +I could nt have it any other way . +Say it is nt your last season . +I do nt know which first . +That , in the end , is the only way back . +It 's the way we are . +You have to take it all out . +That 's how much I know . +And they said it was good for you . +Made in the United States . +Now the state will get that money . +Do you not like it ? +I do nt want to be from this place . +Still , they know what they think of it . + But he is here . + They do nt think about it when they go out there . +This is good for the country . +You know this by now , right ? + It 's about us now . +Here I can do what I want . +Good to be here . + I know you , do nt I ? + I did nt know my country , he said . + But you can never say never . +I do nt know how much time I have left . +Well that 's too good for him . +You get good people . +It 's a new team . + What country is this ? + I want to have several children , and I know I will . +But there 's , you go out and you make your case . + I just did it as a way to make money , she said . +But you just never know . + There is no other work . +But , she said , there 's no way to know . + I said , What show ? + I would nt do that today . +But some think it can . +But we never did . +Well , what next is new ? +And this was the off season . + But I did nt have the money . + Never have , he said . +But they are not right on this one . +They never take it . + There 's your house , John , she said . +How would you like to go ? +The old game was over . + What 's it going to be ? +But it is a big market . + You never know until you know , he said . +It will work every time . + Four days for what ? +The next it 's good . + But that did nt work out , he said . +That 's what made us so good last year . + He made you work . +What would I do without him ? +What do I see now ? + I did nt want go out like that . +And some were not . +And I do nt think I will . +Just come and then go . +We may not be as good as we think we are . + From the very first night , that was it , she says . +What will be next ? +You think , There 's no way . +No , they have nt . + I think we have too little of that , not too much of it . + We just want to get our money back . +They can play a little . +I know I had them . +It is their country . +They go next to each other . + They should , he said . + They want to get their money back , or they want to make money . +How much a night ? +We want to play in our own country . +They said they would have . +I said , Who was that ? +It had to be some other team . + It is right here in our own country . +What should it be ? + Not at All . + I own this place . +The best are at their best . +Which one would you go to ? +We are in a war . +I have to play . +People did nt like him because he was so good to them . +And we will do that . + It 's my life 's work , he said . +But one of them will not be there . +This can never be that . +It is nt , he said . +I should nt have said that . + She 's not as big back there as people say , she said . + I will say . +We had it all . + This is up to him . +It is one year , not two . +What is he up to ? +You know what they say now ? +Women can go to school . +Well , no way . +But he does nt have to . + I just had another life . +And not come back . +That 's what it was for me . + One game does nt make a season . +Just like a team . +It 's Not Over . +But people do like them . +Because that 's what was said . +How long does the program take ? +Where would we be without them ? + Now it is not good . +They are all with you . + I can only do so much . +They just said I know where I can get more money from . +You get it right , or you do nt do it . + It did nt work . + We did nt . +How can I get there too ? + He did it this time . +So many have no school . +It just was nt me . +She was one of the few , though . + Do you think people will show up for it ? +What can I say about him ? +We just have to do it . +There is no other . + Before there was work , but not now . + Will the game go on for a long time ? +He has nt had to do that this year . +You never get to think . + I would nt put it out there if it did nt , she said . +Well , there 's more . + HAVE NT I been here before ? + Never think about it , he said . +How many are still not going ? +That 's the right way to go . + I like them , she said . + Other than that , it was just me . +No , you do nt . +Another night , another place . + I do nt know if it 's going to end . + Now they know . +I think it will be . +Would I have had to do it ? +In a way , they had . +I think it 's going to be the same way now . +They work at it . +I will see my people . +Just do nt do it . + They just come out here and play every day . +We go in there now and we are the team . + They do nt want us to work at all . +That 's how you get used to it . + That 's right , the other says . + I know I can play , he said . +They do nt show up for work . +And she was white . +It was like you had to do it every night . + I just want to see him . +Some have ; some have not . + He is just not going to do that . +And what is right is very right . +And what is it for ? +Both are right , too . +What did she think of the show ? + Just like that . +I do nt know what he said . +Well , he has one now . +You want to go there ? +You are going to work out . + And for what ? + I did last year . + You want your house back . + Do you think that 's too much ? +It has been this way for a long time . + But it did nt last too long . + Now what do we have ? +It 's for them only . +Is nt that country music ? + This is not one of those times . +She does nt want children ; he does . + Do you think that would work for me ? +And how could it ? + We do nt want that , he said . +But people want us to . +Just one or two of them . +You do nt want to go through this every day . + But these are my people . +So he made his that . + Now , it 's not the same way . + I was good , though . + I had two children . + If you say so , he says . +Each man has two children . +It just did nt go in this time . + She was nt that way . +He will never be the same . +Because there is nt one . + No , she would say . + But where has he been ? +So here is some for him . +It 's a new day . + They would like us to go house to house . + That 's show business , she said . + And that was all right . +Now it 's over . + So , he did . + You know that as well as I do . + I do nt make that . +And so are we . + Right now we have no one , she said . +It , too , has its place . +That did nt used to be so . +Did he have any children ? + This was a big game for us . + We are one over now . +Back right , back left . + Who said that ? +Well so did I . + This is nt a game , she said . + It is center left . +There are times when it can use it . + It 's been around a long time . + I did my best , he said . +I could nt work for a year . + But where was I going to go ? + What do people think ? + Just a few of us . + I was like , this is going to be a war . +You could put it that way . + It 's there or it 's not . + It 's not , he said . + Or they would take them . +But he has been there before . +You are good with people . + I do nt know of any other team that did that . +And up to then I did nt know who I was . + I do nt know how much money they will want . + It could be the other way around . + No , she did nt say it . +How are you going to make it without them ? + It 's one of three in the world . + You are the president ? +He could nt do it . + I do nt think it 's going to come back . + If you are not there , there is no one there to play for you . + We are all a family , he said . + Today was a good day , he said . + I do nt think any of them are still there . +But that was not all . +And some , he said , do nt know what they want . +I would like to be here . + But we can do so much more . +I said we are going to have to go for it now . +They were nt good . + I do nt see how that will make more people come out . + Here are a few . + You can not do that . +She had three more children by him in the next two years . +How can we not go ? +But what about me ? +He been with the department for four years . + That one was over there . + Not only because I was in it . +They are in good company . +I do nt think that is so . +He 's going to have to do that for us each and every night . + Now I do nt . + I think any family would want that . + That just is nt right . +All but three left . + It is what it is , he says . + What do you want then ? +It 's just in between . + And the year after that . +Most of them are out there . +That 's what my work is about . +You did it and can do it . + They would say , You work . +Where does one go ? +Your place is here . +But it would all be the same . + So I would just do it , he said . + I have my own work . +From The Good Times . + They know you are there . + It was like this . +Where 's the best place to go ? +He would have this week . + Now is the time . +I do nt think it will , he said . +Or even the second ? +Your part is the same all the time . +And be very , very good . +But they are much more than that . +Now , he 's in business . + I did nt know what it was at first , he said . +They think the good times are over . + Very much , I said . +As who would nt be ? +But they have been right . +He said that that 's what I said . +I would have been the man . +And who we are . + We are all in this . +Which is the American company ? +We do nt know how well they work , and when they work best . +But some day , we will be . +Last year was a good year . +We do nt even go . + I think it was the people , she said . +IF SO , CAN WE SAY SO ? +What will come next ? +But do nt do it that way . +That day was not yesterday . +When will you be home ? + One or the other of us has to go . +He said as much yesterday . + It 's going to have to , he said . + It 's been very good . +Would nt be right if I did nt . +You can have this . +It 's not like home . + I put them up all over the place , he said . + This is political , you know . +You can come back . +It is too big . +It 's not just the money . +If I can do that , I do it too . +Which is it , John ? +It did not go well for New York . +Well , that 's good . + I would nt do that , he said . + But there is . + You know what that was ? +It is not just you . +And yesterday it did . + It 's not us , he said . + But we are a good school . + It was very good , she said . +We do nt see that . + It was right there . +It 's a long way back . +We work at it but we do nt show off . +We just do nt know which way it will go . +She is nt there to do ; she is there to be . +Do nt think it is nt so . + I see so many not make it . +We did it all . + You do nt know about it until you get in . +Well they have come . + Or , This is my city because I made it up . +We will be a very good team . +We want people to come not just to do business . +They know too much for their own good . +We did that well . + This is my first time , he said . + It 's going on and on , he said . +When you know it 's time , it 's time . +Or I would get to the end and there would be all this music still left . + And it 's about to get going . +They are going to get it here . + So if the man was not at home , they left . + How many in your group ? +It 's not so . +And I did nt want to work in New York . + Then they said no one had come up with it . + And if we do good , good will come back to us . +How come you work here ? +Would we go on ? +I do nt know , I just was nt into it . +The man has to go . + What a business we are in . +It was not the show . +Take it all off . +And so you get to work . +What do you see out there ? + So we are used to it . +That 's not the case now . + We do all the work , but our children can not go to school . + That 's what this is ? +See you at the White House . +That 's what I want , too . + It 's good to be back . + There were people in the office . +She does that and more . +He does nt make it . +We can make you good money . + It is what we do to them . +They did nt show up . +I never did without . +And we do nt think they are right . +He had just one all of last season . +What did I know about life ? +There was no more . +That was in New York City . +But that does not work . +We do nt play for people . +He does not want much . + She could nt do it . +They will get it . +He was on his own today . +And what does it show ? + We want them back . +And how in the world did she get that way ? +We just have to get back to work . +And he said , What ? +You were our life . +Not that it 's over . +He may be right -- for now . +What is going on with that company ? +They would nt know what to think . + It 's about family . +Do nt they know I have one more year left to play , just one more ? + Do nt think , he said . + I think it 's about time , she said . +Where did you get the money ? +How big is this ? + Did you just come in ? + Then I was out there . + What more do you want me to say ? +But when we do , it will never be the same . +It is up to us . + This is a people business . + He 's the right man for our time . + They never said that . +That 's what New York is all about . +It 's just not very good . + It 's not going to be that way this year . + Good , he says . +What more do they want ? +I was one of them . + How much more could there be ? + But this is too much . +Many do not think so . +They are out of business now . + But I do nt like to see it . +It 's on there . +And how right he was . + Did You Do It ? + Now they do nt think so . +They do good work . + How can you do this to me ? +It was , This is what we want to do . +It 's not the case . +What is this year about ? + How much money ? +She said , What 's a business case ? + There is so much to say . + We do nt have time to do that , he said . + So how come he does nt come over and see me ? + The work will go on , he said . +That was a big game for him . +As he found out last night , it still is . +And so that is all . +We are all just people . +But money is only a part of it . + But it did . + But what is the best way to get it ? + I use that every day . +We do nt show off and we do nt put people down . +And I know that . +He 's been there a long , long time . +And you , and you . +And people want to see it . + We have had it with them up to here . + We will do our best . +This is nt new . +Could she have it now ? + It will work here , he said . + We left some people on . +I do nt know about now , but then . + I do nt want to think about it . +And you are there . +So , right there that would be my little family . + Come to New York , go to a play . + And we will come back ? +Well , they are . +It 's not just at work . +And they made a good life . + Is he still there ? +That is what we are here for . +And for some people , they said , that may be too long . +Officials said they did not know how long that would take . +A : Would you like to have this ? + It is my business to know what other people do nt know . + I do nt know any other place . +I made a big one . +That is the only way you are going to make this work . +It has been a good year for us . + And she did nt have to . + What should I do , what should I do ? +How old are you now ? + What if I had nt found it ? +He did that , too . +How do I get out ? + I want to get to them , one on one . +And that , if they have their way , is all over the world . + Now there are three or four , but some people still come . +Even for a night . +No one said not to . + It 's about time . +Out there , it 's not the same . + Is this a law or is nt it ? + Do you know what it said ? +But he would like to . +Not on my time . + You might also . +How Do We Get There ? + You get used to it . + I do nt go for time , he said . +All war , all the time . +Where 's that been ? + Well , who are you ? +For how much do you think ? +How many times is too many ? +And where was he ? +They can just come . +But we can do more . + There are not too many people like him around , she said . + It 's a play world . + But at the end of the day , I like this one . + These are our children . +It 's going to be there for a while . +But we could nt think of what . +People today do nt know how to play the game . +You can have the money when you get out . +There 's still time in the season . +We are here for their good also . + You never know where it might go off . +What do companies get for their money ? +Here 's one more . +There is nt , though . +People come back for it . +He was like : Here put this on . +May we all do as much . + But I think you can do that at any time . + Never , never , he said . +Did he have a family ? + You made it , did nt you ? +There are five , not four . +Now you are on a good team . +And there 's war . + I would do the same if I could . + This is the Police Department , she said . +For my part , too . +They are not the last one we are going to see . + I do nt know where they were , he said . + Not because they have to . + And he said , Come on . +And there 's no place like it . + So You Want to Be President ? + You never know these days . +That 's how long I will be with you . + And you never know when it 's your last , right ? +You should see it . +And what is in it ? +We know it now . + She has three . + I do nt see her much , he said . +He had to take it down every night . +I did nt know if it would work . +There are only two of us left . +Do be the first to say so . +To some people then and now , it was too much . +After all , this was New York . + I do nt want to go back . +What more can I do there ? + It could be a year . + And , she said , they were . + Just play , he said . + They use it as their office . + Even now , what do we have ? + What do you think they are going to do ? +I think he could have . +That should take less than a day . + Today , it 's more like , I want it now . +Did you know this ? +From there , then , where ? +And they are going out more . +It may not be right to say or think . +What would it be about ? + I know these people , he said . +But that 's what we have . + But that has not been the case at all . + What 's new ? +What can you say about him ? +There are many on the market . +That 's not the game we are in . +But there it is . +I want to come here every day . +And he did -- over two years . +I know them all by now . +They do nt like the United States . +What do I want for my life ? + I had to go get it . + It very well could , he said . +It was all set up for him . + Now I just have to do what I know I can do . +Do I think that 's right ? +It 's about money . + This is more of the same . +He did not know his company well . +But what should I do ? +Even we could nt do that . +But I know what 's going on is good . +People in New York do nt know you very well . +And so he did , too . +It 's a big state . +I was there for all three of our children . +There will be people on the right . +Its not like that . +We would never have left if it was nt for the business . +What man can do . + If they do , there will be a war . + It 's my first day back . + I think it will be , he said . +Might as well make the best out of it . +But it did not work , the police said . +There , he said it . +Do people know it ? +It had to be out there . +He is the president of the people . +It 's just like music . +Well , you just do . + I said , That 's good . +So they do the best they can . +This is nt over . +The where are they now ? + I would nt want to . + I have to say , I do like it . + We know they have the money . +There 's an old man in that that I could do , a very good part . +There 's so much money in it . + What do you do you ? +But you know , there 's no money here . +Only one week after that until he might play . +And that 's the good part . + We do nt know who they were . +That 's it right there . +We may not have to . +And if you do nt , then just go . +This is not new . + I did nt even know it was here . +You all know that . + It 's just that time of day . + If only you could have been here last week . +We want to still do that . +That 's family day now . +All the way around . + This is not just any state , he said . + You are not . +And I like it . +I said it would take two years , and it 's going to take that long . +How much is that ? +He says , I do it because I can . +First work I had . +They did not know about the play . +Today was that day . +They do not have members . +That is not how he would put it . +You just have to do your own work . +That 's what New York is good for . +And I found them . + I think that we can . +It was the best year of my life . + Do nt make more of it than it is , he said . + You could nt see it . + And now it 's come down to one last game . +We know where they are going . +But , he says , he found that he was good at it . +That would be it . +So now , how do I get there ? +He has no life . +I do nt know what day or time it is . + I will get back to school . + I do nt like being around them . +Now I get it . +You have to know when to back off . + I can do what I want . +A : But they are not out . + Go to the end . +It should have been more . +You have more time to make your money . + They do nt want to know . +But , he said : You could not be more right . +He has made the most of it . + We could nt get out there . + It was very public . +And so it was this year . +Both were new to the market . +How will all of this end ? +This was the big time . +But we do nt have time . +And that 's when we are at our best . + He 's a man 's man . + So should we all . +John would nt have come . + You get to work with children . + Where does he think people are going to go ? + I have to get out of here . +We know they are not . +When he 's out , he 's out . +They found me , too . + What will it take ? +I think it would have been over then . + To each his own , he said . +Good , all right . + That 's what I like best about it . +Now 's the time . +But it 's not too much . + That 's what we can do , he said . + The so what ? + It was the first show I did in New York , he said . +I see it as a market . +Get back in and play . + It 's all one big long game . + Will We Have a Program ? + And that is as it should be . +What are you going to do ? + Not I but we . +Work on the people 's business . +It will have to be there . + School did nt work for me . +So what can we do about it ? +And that is to be around . +I was with them for three years . +And it is the same way now . +What companies can do . + Not at all . + Without them , we do nt know what to do . + They might say , For what ? + We do nt have money . +Some people never get it . + Not with you . +I never said there was . +That 's going to take time . +Many would never come home -- many would never come home . + Can I see you ? +She 's the next one . + I said , This did nt go my way . + This is my first time in New York . +So who did he work for ? +It 's about the second day . +This is New York 's first First Night . +How many should she take ? +But how much more and how much less ? + We had to do what we had to do . + You know how they are , he said . +Where do you get the money ? + They know that we are here and we just want to do business . + Put that in . +We can never come back here . +That 's more than they had before . +So which way for Long John ? + I do nt see how this is going to work . +It 's what we all do in life . +And it would nt work . + He 's not going to do it . +That 's two right there . +But other people do nt . +How about five of them ? +You should nt be there . +That 's the market in New York . +It had to end , and it did . + We are not for this . +This time , though , I made it on . +I think those days are over . + No , that 's for us to know . +I do nt know what is going on . +It 's not good for all of us . +But we do not have that President . +And they do nt . + The people who come here do nt want to go down there , he said . +It 's less in one way , more in another . +What do you want him to do ? + But that 's all it is . + What is our will ? + How can you be both ? + Now , they have one . +They just go out for a year or two to make some money . +That 's what high school is all about . +There 's less time . +And that is just on the first night . + And I want it . + What made them think they had the right to take her ? +But not until then , today . +Use what you have . + But I know they can not . +I think he is going to be president . +He has to do both . + What do you want to do today ? +What do you want today ? + How many does this make for you ? +I do nt do it . +That 's part of this business . +And it is against us . + Do I have one ? + That 's been going on for three or four years . +And here we were . +He said that was what they were there for . + He said , You are going to have to work . +It was like he never left . +But it is not so much what he says as how he says it . +Is the place still on the market ? +They are on their way back . +The president was a general . + I would nt go back , he said . + If I want to work , there should be no law against that . +And is that the me I want other people to see ? + I do nt think he 's going to be . +In a way , she is . +I think we are on the way . + Those days are over . + Now I have three . + Well , what do you want to do ? +We should be , too . + And that 's what you get here . +Just do nt say no . +All in one place . + But you see what you want to see . +Do you still think so ? +Do you think of them at all ? +That 's on a good day . + But Office is nt so big any more . + But there 's so little time . + Were they right ? + And they are right . +And if they do , I do nt want to know about it . +It is all so new . +He does nt say . +It 's just what he does . + This is all we have . +You do nt think much of it . + What Can We Do ? + Some people just do nt want to do that , and he 's one of those people . +Government did all this . +They may as well . +We can get you out to the West . +There 's no one , like you . + They are right out there . +But some of it is . + And if we could , would we want to ? +The first is from A . +When , when , when ? +It 's one I can play . +Every time I come here , I do that . +And that was the end of the game . +We should do that . +Their house was big . +You know the family . + What do you think I do all day ? + She was in the right place at the right time . + Was this the case ? + This is nt an end , one said . +I think he can be and will be . +It 's what you said . + We just go about our business and do what we do . + It will be . + And they just do nt get it . + That 's it . +And what can you do about it ? + It 's good that he 's like that . +He 's going to make this work . +I still get down . + I work for them , he said . + I want to do it , she said . + So many people did nt think I could do it , he said . + Well , what should you do ? +How much money has it made ? + You know what they were called ? + If we are going to be there , he 's going to be there with us . + We had too good a game . +So we are never going to be too old for them . + Women are left where there 's less money to be made , she said . +Well , they , I do nt know that it was the same place . + I still do nt like them . +We do nt know where most of them are . +Is this just me ? + We have to get out of the house , she said last night . +And they said , Less than a year . +Do nt think so . + But I could nt see . + I do nt do it for the money . +It does to me . +He said he does not know what he will do after that . +I go day by day . +The people around here , they do nt know . + It should never end . +Would I like to see it work ? + That is what we do , she said . +We want a place . +But they did it all in public . + And when you are not there , what can you do ? + They are not in New York . +That 's where I want him . +It is also not new . + We are a little country but a good country . + You were right , I said . + There was more work . +And what does it get you ? +Now , what to do about it ? +But it 's going to be work all year . + There are just so many . +The music 's right . +How many years and how much money does it take ? + I do nt know what he 's going to do on that , she said . + That 's the new money . +I was like , Man . + But here he was , one of them , and he made it . +I see it over and over . + I said , That 's right . + Most of them do not come back . + Would you do that ? +If not because of it . +Where 's it been all these years ? +She did that until the very end . +Most of them are women , children and old people . +They may not be . +Who , and in what ? +Now I know what he does . +All I can do is do my best . + I do nt see how they could nt . +And play with it they will . +I just do nt have that now . +This is how it is now . + People want to know what 's going on . +Some of them did nt . +That 's how I found I could do it . + It is a big business . +It 's just not now . +If you want to go to school , you should go to school . +After high school -- that 's all . +What should we see ? +You do nt get over this . + This is my house , she said . +And what did you say ? + It was Who 's on first ? +She 's a good one . + I want him in there until the end . + We were just off . +It 's what I know . +Still , it was nt over . + I did nt know how to put it . +Would they say it if she was a he ? +And how long does that day last ? +Which is all right . +She is one of us and not like us at all . + I do nt have a family . +Do you know it ? + I like being in the United States , he said . +But they were called good . + How can that be ? +What if he 's right ? +THE BEST OF I . +She did nt want to be here . + I have one , too . +There 's more to it than that , though . +How do they get there ? + We are a good place to work . + I said , Well , I do nt know about next year . +Get the money back , that 's all we want . + But that may not be the case . +But that is nt what we want . +I did nt think it would come down to this . +It may have been . + Just about any of them , he said . +My money 's on him . +He does nt do that . +Does every country get some ? +It can have them . +Is this still the case ? + I like the city . + So , this is it . + You should see us now , he said . +I think this year it 's going to be us . + Not at all ; that does nt work . +Where are they all now ? +He has three of them . +They were more about today people . + Who 's he been after every week ? +This is what I know how to do . +That was last week , and this is this week . +Do women like this place , too ? + Was it where I said ? +He is going to be good for a long , long time . +This may not be the case at all . + You know what you did back there ? +You want to do what 's right for you , not what 's right for us . +I want to be both . + How could you not like this place ? +That 's his business . +So there it is . + Here I have only work , he said . +But for them , I would not be here today . +With the season being so long , that 's what you have to do . +She could be one . +They have no place to go . +The police did nt come . + So what are we going to do now ? +I know this is a business . + Was it because we were old ? +But how would she know that ? +And if it is not ? +We just did nt make it all the way . + I would like to know that too . +This is all to the good . + You did nt know that , did you ? +He was a house man . +You do nt have to go back in . + And I never will . + He 's the best , no ? + Is that all right for you , John ? +But what about the year ? +Some people did nt see it that way . + They all play the same way . + It was like their second family , she said . +I would nt think he could do what he did , but we know he did it . +That was not the case just two years ago . + They know so much . +He could also make the team . +Because I have so many people around me . + This is just the way we are . +This is just another time . + It was new . +He does nt like to show it . + Right , he said . +I do nt even want to think about that . +I want out , he said . +Where 's the can ? +This is all on me . +But we did the best that we could . +I never used to . + It 's the only way out of that , he said . +It 's one day at a time . +It , too , will be in the show . + What is time ? + Or was he ? + One has to work . +But they could nt even get in . + Do You Want to Go ? +But who will go ? + And I know of several that are . + They had it all today and I do nt think we did . +Where is all that money ? + You see it . +Now it 's like night and day . +He did nt say if . + I do nt even know how to get up there . +But that is only part of me . + Do it in public . + I think she does . +They had four children . + I like him more and more each day . +Where do I go next ? + The same , he says . + I do nt play that game . + I get it from them . +If it does nt , it 's only my second year . +It is also a city in which few people have any time . + Her work is big . + Some do not know where their children are . +It is the American way , to be best . +What does he get out of it ? +An old house is an old house . + More time to do what ? +But we found a way . +We do nt think they work . + That does nt work any more . + They are people . +For the most part , they did not . + We said no to that . +He 's been through it before . +But you do nt make them all . + But when we play , it 's one game . +I have to think about what day it is . + I still do nt know how good I can be . + You know how this is going to end , do nt you ? +Or the good of the team ? + If he can get him , it 's a good play . +We are all out with him . +A : I do nt know how I could . +Few think it will be the last . +In the end , all I can say is that this is my work . +We know what we are up against now . +Because they have to . + We are not other . + He was that good . + Many times I just want to go to be with him , but I do nt have the money to do so . + We do nt get that . +He has another year to go . + The time was nt right the first time . +They are all right . +They may have to . + And what are they ? +She never did that . + I only have so many more years left , he said . +Where is this team going ? +I do nt even want to know what he said . +There will never be a day that you are not with me . +It can not be . +If so , they did nt take . +It 's one and the same . + What is this ? +Where would I put them ? +But so much for would have , could have , should have . + This is the big game or no game , he says . +I do nt know what . +So , that 's that . + No , they are just a team , he said . +It 's that he did it in the same year . + When will this all end ? +That 's what I would like . +You are not the State Department . +Until the game , that is . +She was one of the people to do that . +That 's how I know there 's more in the world than me . +Was this a game to her ? + We were like , What 's up with that ? + He would , would nt he ? +How do we know that ? + But he was all right . +I think it was . + But now is not the time and place . +Not with my children . +And all for what ? +But it 's going to be make it . +He does nt want to or does nt know how to . +It 's the city . +They should nt have . +If he did it , he did it . + They get my business now . +And that is just this year . + Because I just said so . +It was nt the same . + We like that business , he said . + He 's been there what , four days ? +We play against the house . +And they do nt even know it . +That 's new to me . + You play off each other . + The next time , I do nt know . +It 's that it has too much . +You do nt know , it could be right now . +I did nt think it would take this long . +I did nt want to know about the end of the world . +For them , it 's just another day . +But only you can do that . +It was next for women . + No , no , no , no , he said . +And so I did nt use it , and we have nt used it since . +And then there are days like today . +They have a right to know what 's in it . +It said they had the right to life . + These are people , he said . +We are going to do that here . +We put them there . +We want people to know as much as they can . + I do nt know how many there are , but there are some . + It could not work , it did not work and it will not work , he said . + We are part of this country , he said . + You never know who they are . +It 's this time of year . + But think about that . +They were nt our people . +Who were the women in his life ? +And people know New York more all over the world . +He was part of the family . +I still have some now . + If it was nt for that , I do nt know if this would still be going on . +But can we say this in public ? +It could not be . + It says that they do nt work , he said . +Like , So what ? +Some of it was good , some was nt . + You want to play . +Here is what was not said . + I do nt want a family more or less than I did before , he said . +It 's the people and how they do it . +And so the war will go on . +It would be his last . + I think it could be . +It 's not me . +We are going to court . +But he was this year . +We were nt good for five years . +The game has been good to me . + Our game is to go at people . + That 's not like him . +It 's like no other place in New York City . +I did nt come to them . + She said : What do you know ? + I did not want to go , but they made us go . +But I see that he does nt . + One down , one to go , he said . + Children are children , she said . +You can have this one . + They could still be here . +How did you get this ? +If he did nt play another game , he 's up there . +People should know who they are . +No , it does not . +We could nt get him . +We will be there . +They will not be the last . +I called his office . +He does nt have to like it . + I just want to get through this game , he said . +I think he could do it . +I have found such a man . +They know your music . + And that 's what a team should be . + Now we are one of four . +And he has one year , one season , to do that . + That would nt go around here . +Want to see it ? +That is what he did so well a year ago . +What would you have us do ? +But first I have to get there . + I want to get back to where I was . +It has a life of its own . +About what I do nt know . + The state does nt have the money to do that . +We would all have children . + I think there may be . +She was very very old . +But this was their school . +It 's all part of life . +He can not have both . + And we are where we are . +Do you know what he said ? + He did his part . +She did nt know what she would do this time . +No one is going to get in her way . +Through the war , the first one . +That 's because it is nt . +This is a good time . +They are just like you . +We are all against it . + And I said , Show me where you put it . +I would like such a program . +The public has two . +Well , if they did , they are back . +We are just going to have to come back like we did before . + There are nt many around . + Where in the world is that ? + This game will not be too big for him . +I think its you . +But I think all the time about the people who are nt there . +It 's been two years now . +I just do nt . + All of my life there has been war , he said . + You do nt like it ? +I did nt think I was as good as him . +We are a good team , too . + How do they know ? +What had I said ? +You just did nt do that . +I want people to come . + This is their country . +We are still here . +He called us on it . +It is the right time . +We do nt know what to do . + It 's part of my life . + There 's some of that . +Up , up , up . + I want to show them there were people who did . +And all the people . +I can and will . + And we have nt . +And it 's not about the money . + What do you get at home ? +We found our way . +And many of them just would nt do it . +He said it was with him . + We did nt know as much then , she said . + It 's more than business . +That 's our team . +We have no business here . + I do nt now , he said . +But they could not get at them . +It 's the war . +But you are nt . +He was not the same after that . + We own the companies . +On this night , it was . +You do nt know what you are in for . + It was long , but I made it through , he said . + It says what I want to say , he said . + Well I have one of these , she said . + You do nt get any money for this . + We were the first Just Say No people , said the group 's president . + No , we are not . + The President Can Do It , A . +I did nt want to go . +I was there yesterday . +Into my second home . +That is the public 's right in all but a few states . + We are still going to go after it . + The work is never over , he says . + Do you know what I could do to you ? + The United States has one . + You may or may not work in the White House . +Because they make us think . +The United States , he said , should not be the first . + Who did it ? +And when it does nt , they just get out . +It will just take time . +And what of next season ? +That 's the best I can say . +I think it will work . + That 's the way it 's going to be right up until the last game of the season . +But in most of the country , it is . +In some it is much less . +But it 's part of life . +This will never work now . +What 's that about ? + And that 's good for us . +That the way I see it . +Will come when it will come . +You can also make your own . +He was one man among many . +How long does he want it to work ? +That 's our man , right there . +We have to go out there and show it . + It 's like high school out here , he said . + They are not good . +Because I want to be where it 's at . +I do nt know how I make it . + They do nt get in the way . + That 's where she has to be . +We would all like to know who did it . + That 's night and day , he said . + He said , No , no . +There was so much going on . + How do you say , do nt go out there ? +It is what life is all about . +That was four years ago . +All you have to do is show up . +That was during the game . + They do nt want to work . + Where could I go ? + It did nt work , so we could nt do it . +That 's what he is . +They do nt do that . +We are not going to do it for you . +You are never where you want to be . +They are still officials , still on the same team . +She has been through this before . + I should have been there yesterday , he said . +Still , he left after three years . +But did I want to do it ? +It was about three or four years ago . + But that was then . +There was my work . +Do you know of one ? + They should be . + That is not right . +Last night , it did not work . +Do I have to come ? +That 's what today is about . + What do they have to say about them ? +Little more , little more . +I just think they were up for it a little more than we were . +Some people want to be more than that . + It 's not good for you . + Business was good today . +And what do I end up with ? +But who might that be ? +He has it made . +But what do I want ? +It may be the way to go . +It still does , more or less . +Do you want it to go on ? + He 's one of us . + That was nt a good time for me . + What do I think of them ? +This is their year . +They were just in time . + She 's , No you are not . + I still have it with him . +I do nt know -- they are never going to be the same . +There 's not much new here . +Then it said it was right the first time . +But now , she 's out for the season . +How much could you make one for ? +Do people around him know ? +They did all that in a week ? +Until a few days ago . + This was not a game , he said . + It 's like a war . +I did nt do much after those first five years . +She never has any money . +There 's never been a place for people who work here to go out after work . + And here , you are right into it . +If they come , they come . + And I said , How did you do that ? +When did they take place ? +But will they come ? +But not if there is money to be had . +And some of them did nt like that . +They do not think so . +And he 's right to do so . +And there she was . +It does nt have to do with what we are going to do now . + People do nt know what 's going on with me . +And so is his game . + Do I still get to go with you ? +You know who he is . +What will she think of next ? +We have to get used to that because we used to work for a state company . + But it has been going on for years . + You were out here . +That 's what you see . +Would they want to ? + I do nt have time , she says . + And that 's only part of it . +They are used to that . +What do you get out of this ? +I want to go and do this and that to them . + And she did nt . +I do nt like any of it . + We did that , he said . +What does he have to show for it ? +We can make this work . +What I did nt do yesterday , I did today . +Have found a place in this country . +Where will they put us ? + I had had it . +But how does one do so ? +Many people never do . +You only have five people out there . + He said no more . + It will take a while for us to get there . +They do nt own you . + They come and go . +Now we have just one more . +You can only go for so long before you say , You do nt like it ? + How can we know ? + Then he said , What do you do ? +But most of that money has come in during the last two years . + I can only go by what I see . +It 's the end of the season . +One more year , and I will come home . +Did he know where she is ? +That I could make . +Then there is time . + It 's over , is nt it ? +After all , where does the money go ? + No way , it said . + But he 's too good . + You are right , I said . +I used it every day . + What do they do for me here ? +There was little to see . +It does nt work very well . + My home is here . + It was too much . +So all that is too much to think about . + He 's that way with the team . + We all want that . + She just does it . +He never said no . +Still , there is work to be had . +And then , he was down . +Its first play of the game ? + Would I have said , You are out ? +And so could the House . +Many of them say he made off with their money . + We have no place to go . +But so what if he does ? +Now you see it , now you do nt . +How Will It End ? +He did it very well . +They are a part of my family . + But what if he was nt ? +They do not know . +Still , he 's going to get his . + But this is my life . + But there it is . +It 's the best in the state . +So what can they do ? +Now they say four . +There are other people he can do that for still . + School 's out . +THE TIME : NIGHT . + And so we did . +But no one could . +He : I did , too . + It was the best year of my life , he said . + Then do nt play it . + I did nt know who to go to first . + This is not about money , she said . +But there were few to be found . + It 's not the States . +The first one made his season . +And after it was all over . +Or too little of one or the other . +I know , I know , this is nt new and they do it in my state , too . +People just do nt know that much about them . + There 's another way ? + So how many of them are there ? +For all I know , he 's right . + No one should , she says . +They would nt take too good to that . +It will not be the end of the world as we know it . +No , it 's not who you think . +But take it he did . + Life will go on , he said . +These people are country people . +Not for what he did . +It 's all of those . + But we are not going to . +And they are old . +How did he know what to do ? + Good , I say . +Now , they are the only one , they said . + It was all him , he says . +How many companies can say that ? + I do it for me . + He said , This is about my life . +This is just for me . +I just did what I had to . +You do nt get to see him . + It 's just that last year was such a big year for us . +But that was nt it . + I said no way . +He was one of the few . +There 's more to life than money . + Did you like it ? +She can do that . + Many people do nt . + People come and people go . + The last time ? + I go every night . + I do nt even know what day we are on now . + Where does it come from ? + I do nt know what more you have to be . + What we say is , As is , where is . +And we will do right by them . + I said what 's going on . +And so it was . +It 's about being a part of it all . +Do I know what it will be ? + That 's not what people want . +That 's all I can say . + It 's going to work out in the end . +That 's not all right . + They are used to it . + I do nt know any . +They do not have time for it . +I think we should all get out . + It 's good for him , she said . +He was just in his own world . +But now she had a house . +He should have been part of my family . + He did what ? +He 's game as can be . +It 's not what you think . +Then they get used to you . +But we have way too many now . + But I think it will take a little time , he said . +I said , Who called that ? +They do nt get what we do . + We do nt know where we are going to go next . +After that , we could nt get it to work . +How could he do this to them ? + It 's all business . +If this is the way one has to do it , then this is the way we do it . +I called them , too . +What are they going to do about it ? +He would never come out of a game . +Not that there is much to see . +But there was much more to it than that . + I was very political . + And do nt come home . + I want them , too . +Few made good use of it . +It 's not going to do us any good now . + We do nt get used to it . +But the office does more than that . +This is not the state 's money . +How could we do it ? +They were , like , what are we going to do now ? +And this is a just war . +They did nt want to know . +That 's not going to be me . + As long as I can , he said . + But this is what you do . +She did not know who he was or what he did . +Now they all know . + It 's not what you say . +On this we are all united . +He 's come back . +Some days you get both . +We have one of the best here . +Get off the set . + We take it day by day . +You want to get there ? + What was it like that night ? +Such is the case in the United States as well . + We are going to get into that the next few days . + It 's been such a long week . + This is home , she said . +But she said that was not the case . + He was nt like that at all . + What is school about ? +But that 's not all about them . +I know that 's part of the game . + It will not get us where we want to go . +I can only make the most of today . + Where is your country ? +Until it does nt . + Still , many people think that they are . +I would like to get back to business . +There 's no law against that . +Two , three , four , more ? + She does nt want to do it . +But it 's my time now . +She would nt do that now . +But will he be there ? +Right now , we are going with this team . + Put it this way . + She says she does . +She would know what to do . + And I said , For what ? + They do nt say that now . + She does nt want to . +All of them said they had children . +I do nt know , she said . + And that was five years ago . +There was not much to take with them . +This is what we want to see ? +They are like family . +Not in this one . +He does it all on his own . +We do nt want people to do police work . + Where will you be ? + He was going to come home . + We only have have four people right now , he said . + All he has to get is one or two , here or there . + No , but then what does these days ? +How long had he been like this ? +We think people want to own their music . + ARE YOU GAME ? + Yesterday I put this in place , he said . +Life will never be the same without you . +So it does work . +Take it off for a second . +Did you see what they did ? +There are more to come . + We used to play on them . +What do they think you do ? +They did -- and he did . +And we know where he has come from . + And I did nt get to make it . +But there was a but . +They should have it . +But that was in another world . +We do nt know what will be . + And there she is , he says . + We just do nt know what we would do . + Are you at work ? + Our first time here , she said . +This year could be the second . +I do most of it . +And then there is money . +In its first week , it did . +He could get out after about four years . +Make him part of the team . + That 's a big part of our business right now , he said . +What 's in it for them ? +Every day is game day in New York City . +So that should be that . +They did as well as they had the night before . + There 's no place like home . +And some of those people work here . + We are in new times . + I do nt want any other people to go through what we are going through . +But we do have them . +I would nt get on her case . +But it has been good to see us play our way out of it the last little while . +And one that may never end . +But I want to be here . +Is he family , or not ? +I do nt like that at all . +We are New York City . + I think it 's time to do this . +They would nt like that . + There 's just so much . +I just want to be in our house . + Then I said , This is it . +Did any President do so , before or after the White House ? + Could be , he said . + I want to work in the city . + But this team is not last year 's team . + Or it may not . +So there is that . +Can you say who they are ? +He did nt say much . +There 's not much money in it . + One could have the street and go up , another could have the street and go down , he said . +They are good business people . + You do nt say . + We used to do this three times a week . +They have nt left us . + It would not have been right for me , he said . +For me it was a little too much . + But I think by the second year , they are your people . + It was like this , he said . +I want to get this over right now . +But not for very long . + I like it , she said . +There is nt much that you want to go see . +It 's very good for that . +I said : Get out of here . +That is what I do . +They think we never get out of them . +Today for four years . +So what is the United States to do ? +We know what we want to do . + I just do it , she said . +And we would nt do that . +I just want to know what 's in there . +But where is it now ? +How many of us in this country would do the same ? +Should it be more ? + It 's not my first one . + We have to go without them . +That is all he will say about it . +I think that 's what most people would say about her . +Me : How many are there ? +Could , and did . +We made him President that night . +That 's what we were going to do . + They are public officials . +Or is it the people who use it ? +But it was going to be a long night . + As of today , that is still the case . +He has time to do this . + I could nt play with it . +Say it is nt so . +How old do you have to be ? + People might never get to know me , he said . +I just do nt know what it 's about . + Was it one ? + I have found only two . +But this is the world we have . +His second is very high . + There is no work . +And what is her show about ? +Because one has to . + And we still do nt know what 's going on . + Well , only a little . +I see no other way . + We do nt have this in the Court , he said . +He should never have been in office . +But it would not be the last . +He just never left . +But we will be . + People just do nt come back . + Who do you play for ? +They were put there yesterday . +I have to think about it . + It 's also in people . +It was nt much , he said . +People like me and my family . + This is a very good team . +That 's about all I can say . +And we did come back . +We did nt take much with us . +How much is it ? +It was part of the war . +I can see some of that in my work , too . +What would he be like ? +They did nt want him down here . +And I could nt get out . + If they go , they go , he said . + It is like part of me , it is me . +They think like a team . + Where is it going ? +But his time would come . + Should I say that ? +Not many people has it . +We know what we want . + We all are . + What do they want me to do ? + I said , What is that ? +He 's old school . +I do nt even know how to do that . +No , that 's it . +That may or may not be the case . + Some you know , some you do nt know . +Where is our money going ? +Some are of the left , some the right . + They did nt say much . +I was just one of those women . +They are white , too . +How Did They Get There ? +We are going to be here . + But I do nt know how many . +Who and what will be next ? +We have two days . +And then to be part of it . + But right now we do nt know that . + I do nt even want to think about it , she said . + But it has nt been that way . + It 's just a little too much , he said . + Never in my life , he said . +But how do you know which is which ? +But that is nt what they want . +Should I out her ? + That 's all so yesterday . +It 's like the old days . +It will be with us for some time . +Here it is not . +I may be there . +People do nt know me . +I have no public office . +Now you do nt see it , now you do -- if you do . +Just take your time . + I would have left , she said . + How much do you want for that ? + I do nt think that 's what we are all about . +But there will be time to think about all that . +That was a long way to go . + Only they do nt go all the way around . +Did nt you see me ? +They are right here . +I think it has been good . +The women were next . +How big is the game ? + How do I get to see the president ? +Is this good for you ? + What if I said no ? + What More Can I Say ? + Them too , he said . + It 's just life . + The man part , it 's on its way . + It 's where I work . +But we are still going to show up on game night . + One day it could all be over . +But it is there . + This is where I want to be , he said then . +Some for the days off . + But I want to play . + I know , she says . +But four have had children , he said . +Those people were her life . + Who were these women ? + But we are used to it . +They were right ; they did . +What should we do ? + You know what I said ? + That 's the end of it , he said . +It 's a political one . + Now 's it 's time . + I think this team can do that . + And it 's all for the good . +But he still will not go public . + I just do what I can do . + This the city may not do . + After a game . +And what about our children ? +To see that today was what you want . + Like , not to me . + Well , there you go . +But that was then and this is now . +Would he like to be ? +It was nt my best game . +People do nt have any time in New York . +It does nt come out right . + Now they can do it . +And that it does . + Can I come over to your house ? +Not many people have . +It 's four years work . +We did nt make them work . +Where was the West ? +We did nt know how to use them at first . + Such is life . +Do I want him to be like me before , or after ? +Well , no , I would nt . +I could say that . +What do we know today ? +Do nt you think you would like to do this or that . +I think we can do well with them . +So how do you get in ? +No , it 's this . +It could , but I do nt think it does . +They do not like this President . +But we could nt . + What 's new about it ? + You know , you take it any way you can . +The money is not there , and we know it 's not going to come . +After that , he does not know . + That 's all I know how to do . + Now every day is like a war . + So what are you into ? +Well , he was nt . +Not to say that they do nt have a good team , because they do . + I did nt know he was nt well . + You have to be the right man in your time , he said . +And he never come home . +They may never know . + But over time there will be . + We found out . +And they know how to use them . +All in a day . +I know they are . + I say , I know I can . +You go and get them . +That 's on him . +There has to be a way to make money there . +No he 's not . +That is three times too many . + These people -- they are my family . +They did nt want to know about her . +He could nt go on . +But how they do it ? + Some years business was nt as good . +I do nt think I do . + And you are . + That 's for me . + Now it 's here . + He said , Do you know what you are here for ? +We should have been in one . + No other school did it . + People have the right to see what they want to see , he said . +But as of right now , no . +You do what you are going to do and make the best of it . +But she 's not the only one . +Now I know what to do . + It should nt have been that way . + No way I could do both . +What would you do about that . + I used to be the next president of the United States . +I should nt be first . + Here you can do it on your own , she said . + What 's it like in New York ? +No , not in New York . + I think business will be good , she said . + It 's all the same , he said . +She also said that was not the case . +But to each his own . +I do nt know what we do , how much we do . +It 's what life 's all about . +He was on his way . +What should she do ? + Now I want to go back to my country ; I do nt like it here , she said . + I get this all the time . +He 's just like I was . + I would like to have my money back . +Every now and then you do some good . + He was the only one . + Another year in this place . +Some are still there . +Going my own way . +Or so we think . +Then war will come . + He said he was nt even here . + He says he did nt . +That 's what they do very well . + In New York , you can do that . +But we are going to work to get back to where we were before . + That was what we had , she said . +That 's when I was called , and we said , No way . +This is the best time of year . +It 's the American way . +I did nt think it would . +He could have been home . +I do nt get it now . +How would you know ? + And I think people like that . + Well , if you put it that way . +We are going to like this one . + Is nt it time for you to go back ? + Ms. Do said . +You can be more . +The good has not come . +The New York game . + Or was it over long before yesterday ? +But all was well . +You know how it is in this country . + I want to know more about what 's going on with her . +I just would nt even think about it . +Who Are No More . + It 's going to be like this all day , he said . + He can play it . +You do nt know what I can do . +No one to see . +But there is a there here . + You could play them every day , he said . +What will it get then ? + They are still children . + So what are you going to do ? + That 's because times are about as good as they can be , he said . +He says , Well business is business . +But they are right there . + Two , three days ago , I did nt know if I was going to come here at all . +But now they do nt have it . +Who 's in Left ? + We just do nt see one right now . +So he is back here and says all is well . +And if he did nt make it ? +This may take a little more time . + And I do nt see it . +All they know is that they want to go home . +That is against the law . +Today it did nt work out for us . +They say they did . + They said , We know you can play . + We know where we are going to go . +The next one was good . +The music was right . + What are they going to do ? + It 's just him against us . +The police said take it to court , where it has been for three years . + What do you want ? +We do nt have money . + We have to play now . +Today , I was on . +It was no use . + You do nt know that , he said . + They do nt make money on it . +We have to go . + People know , he said . +But if you are going to do it , this is the place to do it . +Play one day a week . +It 's the same with my home on the street . +So I said Here we go . +Now he is going , and good for him . +Until they do , we have to go about our business . +But not for now . +Right here , right now is what it 's all about . +Or they think they know . + He was there with him for all those years . + It 's a law . + I could nt take it any more . +He would nt be here if that was nt the case . +He said : Well , do nt you want to think it over ? +Come to think of it , that 's about what they are . +He 's going after him . + I made some good money on it . +Next day , two for three or so . +And even if I did , I would nt say . +For him , it was . + Now what does that say ? +The music was good . + I just did nt have it today . + This is my year . +But then he did it . + That 's the place I long to be every day . +Right now , we are not . +If I do nt work , I do nt make any money . +It was that man . + But that does nt make it right . + I do nt see how you can do that . +It is also a show without a director . + He did what he could do . + So he 's our man ? +They are going to do what they want to do . +They do nt know what money is . + Few people get to see that . +No one could say how long it would go on . + It 's not about then . +No children , no school . + What was the best time for you ? +Well , good for him . + What is she good for ? +Some go in , most do nt . + So that was that . + Does he have it ? + It 's in , out . + We get the same money they do , he said . +But it is much , much more . +But I do nt know what good it 's going to do . +It 's more like home . + Now he has to work with him . + That 's the end , he says . + They come through to see just what the Government did . +They are all there . +Only he can do that . +But many said they would have . +This is where it 's at . +Or I could go on . +At home , too . +One last year and one a few years back . +See how you like it . + It is nt like that . + It is that . + They said , We do nt know . +A year or two then . + I said , Where are you from ? + It just had to be in the show . +And if so , who ? +This would have been three . + What did it do ? +And now we know more . +I said he well might not . + If I was nt , I would nt be here . + Or you can do what I do . +It says so much about New York City . + I did nt think about that , he said . + That 's the market . + But you would never know where . +It did not work that way . +It 's not that he would nt ; he could nt . +Well , that 's over . +I would never say I would nt , but I do nt think so . +But this year , there was much more . + What are they on ? +They just want you to play . +Now , he said . +How can they say that ? + After all , New York did nt want it . + That 's what I know about it . + But right now , I have to do the best with the time I have on the court . + There are still many more . + And it has been for a long time . + And then she does it one more time . + I do nt know if I have one . + It was nt to be a company . +Are you still here ? + We want this to work , he said . + We have to do it , he said . +Think of all you have to make up for . +That 's not here . + But what would you have us do ? +Do I want to go ? +But there is no place like home . + What 's up man ? + But there is time for you . +What Do You See ? +Still , she did nt say no . +Now it 's business . +Because for me it is not the first time . +Well , is He ? + It has been a good day . +And the city is less for it . +Not the time of day . +How many would I get right ? + I can get the time , he said . +What would they do now ? +We have one up here , I think . +I want us to be part of a team . +That 's all it can make us . + Well , do nt you ? + It made my day , she said . +It is nt good for people who are well . +It was just two too much . + I do nt think about it much at all , he said . +For me it does . + They are in it every day , she said . +They should like it . +That was five years ago . + What does that say ? + Well we are not . +And they say , How about you ? +I know it 's not over . +But here you are . + But he could nt . + I want to get it right , he said . +Well , not this year . + I think it 's good for the school , he said . + We did , they said . + I do nt know how to set it . +This may well be . + That 's the best part , right there , he said . + No school , he said . + Such is life in a big city . + Three , I say . +They have a year to do so . + In three years I will have five people . +What do the two do all day ? + That way , we get the world to work for us . +KNOW WHEN TO SAY WHEN . +But how much is too much or too little ) ? + They do what they want to do . +It never had to me . +I do nt have to see a place . + I like it , he said . +They do nt want to make money . +We have made the best case we could . +It was the same government , just another office . + Well , what did you say ? +Those that have , get . +They do nt want that . +But it is the best place to do my work right now . + We like to say , See it here or do nt see it at all . + A year ago , it was . +Most of them did nt . +I had to play just like that . +But he can not be . +They just did nt like them . +They can not say that . + He says it 's not . +Now , I will have time to do it . +They had no big man in there . + Like I know it should . +It is more than that . +And it had one . +Good old days never do . + He 's like me . +You have no business here . + But here it is a war against us . +I have three in my life . +But this time I was in the right place at the right time . +And not just one of each . +He 's going to go . +You have a good Police Department . +But it is for one day only . + She did nt last long there . + We did nt want it there . +That has to do with people . + But he 's never going to be A . +But they do nt . +This is the best for me . +He would nt have said , That 's what you get . + He could have left , but he did nt . + He may not last very long . + But do we say when and where he is going ? +Now this has been so good . + It 's still around ? +Since then , he said , business has been way off . + I go home and work on it every night . +They are the same ? + He 's a man of the people , she said . +They are never found . +I did nt know what I could do for her . +Where there had been three companies , there will now be two . +It was time to play . +Well , they are off . +But so do the program 's officials , she said . + I just had one of those days , he said . + But it does nt work . + You have more of it when you use it . + What does he get out of it ? + It 's all we have left . +There will be more . + We just do nt know what to do with it . +To my one and only , its just not the same without you . + It was nt just us , she said . + Where would you like to go first ? +They have also come a long way from the old days . + But night after night after night would not be good . + But not up here . + Not so now . +It is not good for most people . +You have to make it with what you have . + I would not like that , he said . +We never have to come back . + What should I make next ? + Good , he had said . + They did nt know what to make of me , she said . + I want to work , he said . +They had to be . +They do nt want one . +Take No Way Out . +I also want to get off good . + What would you want me to do ? + It 's going to be a long day . +But in New York , even old people play . +That 's my night . +But he is the best . +After all , one of them is the president . +It just does nt come up . +What do we have now ? +It 's their right . +He made me go . +So here we are . +Not so , now . + What did we go through ? + But do nt put that down . +So he might have been . + Should we have some music ? +I own a place here . + That 's just the way people are . +I think he is going to be good . + The United Way is the United Way is the United Way . +What if it 's not ? +But the State Department will be right . + More work , less money . + An out 's an out . +Which would they go to ? + We are going to all of them . +But I can take her . + There 's going to be more . +I know where it is . + How can I not be for him ? +This may not be the case . + She called the police . +Do nt use it . +And we are still in that place . + How long will this be ? +They are not going to be used here . + No , he said , I would nt . +They know they will never get out . + They are all I have . + Do nt do that . +This , it says , could be it . + That 's what New York is about . +Did nt she get big ? + My family is from New York . + What would you have people like me do ? +Could it be me ? +Where was he then ? + I called over there one day and he was nt there . + I have three children of my own . +It may very well work . + What are they going to do with me ? + It does nt make it right . +It put more people to work . + How long did you work for him ? +We are going to show we can play with any team in the country . + This is his time . +That 's good for two or three years . +Now , it might be the last . + I do nt want one , he said . + They see what 's going on . + If he does , I think it will be good . +He 's what he said he would be . + You should nt have too much in any one company . + We think they should not have come . +I know how to do them . +But now we know . + I know how it is . +That 's how you make money in this life . + I say I do nt take any . +It would be the first such case in the city . +Now , he says , he does . +Then there are the public companies . + People do nt know who he is . + That 's my business , he said . +But she never did go back into the office . + I said : Where ? +They were her children . +But , he said , it did not work . + What they did to me , no one should have to go through it . +I do nt know how we did it , but we did . + They just do nt know what 's out there . +Most people say three . + I do nt get around much any more , he said . + That 's over , he said . +They like it that way . +They think they know it all . +Which one is me ? +What the play does not can not ? +I did nt say it should nt be . + I would nt have said that , she said . +Are you big people ? +But will it make any ? +Is this what is going on ? + I think we did about all we could . + There are some people who like me . +And who are the members ? +It is found time . + My old man ? +What are we going to be ? +That 's when you just have to say , Too good . +He had more to say about the team 's play than his own . +Well , how would I know that ? +Just how is that ? + You just put it off . +If I had the money , I would do more than one play a year . + Well , we are what we are . +She 's the only one who does that . + Who is nt ? + So do we . + Is this the last of them ? + Other people might also use it , and they might be in the same market . + Now we are in a good place . + Do you like it ? + People will have to come to us . + More people know what they want now , she said . +There are going to be times . +Well , not any more . + But I know what I like . + It is for us . + It will take time , he said . +Is this the year it will end ? + I do what I think is right . + But what about him ? +What had I found ? + No , it 's over , he said . +We are in it for the money ; it 's a business . +Money , that is . +And -- how do you say ? +It may be , but not in the way he would like . +He 's going home . +But what 's in it ? +Today you do nt have any of that . +But over all , it 's going to do some good . + I used to be one . + But that did nt take place . + I do nt like to think of it the other way . + But some people just do nt get it . +But I do know . +They are with me . + Well , who does ? +Three years ago , it was second , and the last two years , first . + So you are an American ? +Can I take back what I said yesterday ? +Not so , not now . + Where are they all going to go ? +She did it on her own . + Well , I had to . +He 's come to the right place . +We do nt make them . +What Is It Then Between Us ? +What have you been up to ? +We get to see them at their best here . +But many have not . +And this is nt even the end of the war . +It could be us . + It 's a place for people to go , to get to know each other . + He 's been set up . + I might , she said . +I do nt know , but they are . +But I still had to make them . +They are about people . + I want people to see me all day long . + What did you say ? +Do I see this one ? +For who we should have been . + This is the one day where we all like each other , he said . + Time is money in this business , she said . +But he never left public life . + And at last I will be . +But you like that , right ? + It 's the money . +Now I can say I do . + We have nt had one for a while . + I might was well go for it . +I do nt know if I will now . + She is right . +Who 's going to do what ? +Think he had a little time ? +They go , he is not home . + I think it 's just the business . +But that was all the police could say . +They did , and he was not . +We see it every day . + That 's not what I want , she said . +I do nt work much , I do nt do much . + Who 's first ? +That 's just who she is . +She 's had to . +We have the money ; we just do nt have the political will . + He does nt know where to go . +You have to do what you have to do . +He 's way up there for Man of the Year . +How Could This Be ? +It 's about the game . + And it we were right . +I can not do it all . +It is big business . +It 's not about what you think it 's about . + All they think about is money , he said . +But it will all take time . +Now I do nt think about it . +This is just about a year ago . +We said good night . +IT was a big game . + But I do nt know what it is . +Back in the day , you never had that . +People say , What is this ? + You see your life going right by you . +He had to , he says . + I said , No , not this one . +There 's another one and another one . +For a long , long time . +But this is home . +You can take what you want from that . +It was over from there . +But it will be to a good end . +But that 's the way to go . +He said , I do nt want your money . +Well , no , no , no . + I could not do this show without them . + They should nt be there . +But we are not down . +But we know what 's going on . +And she still is . +That 's all I have . +And he said , We have some . + Much less , much less , he said . +This is what they know , this is all they know . + Who 's going to be the next president of the United States ? +The other was a man . +People , it is your money . +We have to be there for them . + We know how to do this . + We have no money . +What I do , I do well and I know it . + This was for my country . +It was he who said it to me . +Well , here we are . +And is nt that what life is all about ? + They are going to get what they want . +We all have a life and we have to go on . + Now many of them do . +And there is much to think about . +They were in for a long night . + I like it , the man said . +I did nt know I could do that . + They do nt have any money . +That was the best way to know New York . + But that 's business . +And make up for it they did . +There is still no school . +Now , without him , it 's just . + That was his place . + I see them more than I see my own family . +We have money to do so . +Go out when I want to . +But they did not take her children . +How about you ? . + And that 's not all . + It 's never going to be like a business . +How could it not ? +But it still was . + Big , he said . +He did not like life in New York . + I used to do that . +And how many will there be ? + It was just for the people here . +I was like that for years . + It was a good game . + Without that , he said . +But think about it . + But it is more than that . +Do you want me to show you ? + These are not people you can say no to . + Did I get you ? + I had three good years on the show , he said . +It 's just what it is . + What about me ? +But I want to be the one to do it , and I think I can . + Make a man of him , he said . +They do nt even know him . +This is how we get to know each other . +This much I think I know . +Many have been in school several years . + We want you to do this . +This is where I make my money . + Get us out of here . +He is old school . + It 's like we are a new team . +I want to be like you . +Still , the A . + One by one , they left , he said . +That 's part of your life . +You think it 's time ? +They can say what they want . + But I will go on , she said . + We get to play them at home . + I would nt take back a second of it . +He 's back in the family . +New : Me , too . +I still have family here . + Is nt that what we want ? + We just do nt have the time . +You are all over me . +How do we want it to work ? + We are the best . +You all see that . +I do nt like it , you do nt like it but it is what it is . +At the time , they could not . +Know what you want before you go . +And he does the same with many people . + That was right . +And she did nt . +That 's not what we are about . + You know what we did ? +It 's not about me , it 's about them . + I should be out of here in a day or two . +They are right there with me . +I think we know you . + No , not at all , he said . +Where did the money come from ? +Until then , he has business today . +Many people have called in A . + But you could come . +He could have made more at those companies , he says . +But he would nt take it . +So is it the right place ? +How to do that ? +I was in his way . +But it should never have come to this . + And so we are going to do that . +And some of them should . +You have no right . + What do they have to say about the - ? + We could nt get in here for five days . +I know what I think . + That is the case here . +And that 's only the A 's . +I do nt want you . +He said he did nt see it . +We do nt have it right now . + Five 's too few . +She was just so good . +I want to be here a long time . +They said they had never been in her home . + But I get that all day long . + Well , what could you do ? +One at a time ? +So , who 's left ? +So what do I know ? + There 's more to do . +But life is so . + And what is this called my life ? +It 's the same with us . +I think it 's going to even out . +What he has left , I do nt know . + But it 's like business in general . +It is as good as they come . +But he said he did . +So where 's the play ? +You use what you have . + To each their own . + It 's their country . + I do nt know if it was for me . +It 's just one company . +I DID NT know her very well . + This will be the last time , he said . + We work this way all the time , he said . +But that did not last . +It may be time to have one . +My life is business now . +You are still the only one for me . + Who 's that ? + They did nt do this to us . + She did the best she could , he said . + We know how to do it now . + This is a big week down here , he said . +But you own it . + I do nt know how long it will be . +Over all , the show had more life than last week 's . + I did nt want to set him back . + They have several of them there and know more about how to use them than we do . +She was not the only one . + What could I say ? +Other years are nt like that . + I did nt know if I would be here . + I have , but I do nt use it , she said . +Federal and state officials . +No one could get around him . + You do nt think we come first ? + I did about as good as I could do today . + I do nt make any money here , she said . +It was more like , this does work . +And I think you are right . + How long does this last ? +It 's just more of the same . + We would come to them . + May you go out the good way . +But that 's still what I want . + I think they set us up , she said . +You know you are . +She had five children in five years and then left him . +The city was my city . + The president , she said , is a family man . +I come the other way . + The state was , she said . + I do nt think like that . +This is a new year and a new day . + How could this not have been made public before ? +It was all I did for two days . +He still does that . +I do nt think he has . + This one is right over you . + We did nt get her until the next day . +I had some people over the other night . +Do I want to get into all that ? +What does the President say ? + She did it well . + Well , who are you ? +HOW LONG -- One day . +The work was a good work . + In general , that 's the way it is around the country , he said . +If not , should nt they be ? + We do nt make money on this . + I have nt had much to say . +If there still are any . +How do you get in ? +We are just not the same team we were then . +Well , some people would . +That 's not his game . +Are there many of these people ? +They know what to do to last . + Where were you yesterday ? + He said , You were in the way . + I know this much . + One , two , three , four . + I see him , I see him , I see him . +And I think he is . +Who or what would they want to take back home with them ? + American government is nt what it used to be . +But I do not know what is right . + And I have been one for years . + He was back , all right . +That was the case today . + What if I say no ? +When can I go back to work ? +Did nt you know ? + This is not right . + Business is too good , she said . +Children are very big here . + I did nt say that . + Is that who I think it is ? +She was going to do that . +That 's when it 's over . + This is the right time and place , he said . +It was nt all play . +We may , but I do nt think so . +And as a white , he did nt have to be . +No one was there . +Then what would his family do for money ? +It 's about people like you and I . + You are too old ? +And I did it for years . + People would come here every day . + What if they do nt want it next year ? + She had to get out . + There was no way out of it . +These people do what they want to do . + And we are going to do that . +But I do nt know how to get at it . + People are going back to work . +All work before or after school . +We are your family . +But most of us do nt . +Do nt you see ? + But then , you get used to it . +She does nt know what she will do next . + But never the White House , he said . + I come down here every day , she said . + What are you ? + All I have to do is go to my people and I can get what I want . + This is as good as it can get , he said . +So , what did he do ? +What do you think of them ? +There have not been many . +What will come after that ? + It 's very New York . + I see this work and I think , no good , he says . +It is not my business . +I go in and I go out . +He has still not found one . +What would we do even if it did ? +So I had to make my own way . + But you just get used to it . +Will you do that in this case ? + I could nt see it . +Is the -- A . + But where is the new music ? +Even if she 's right , so what ? +But there is no time for that now . + He says he does not know how good his team is . +But in a few years ? +I do nt see that here . +Part of being in this business is the people . +So who is he ? + I did nt know what it was , she said . + One , he said , they work . +We did nt have to . +Now some people never think about them . +And what are those ? + I said when we were in the street . +Some were good and some were , well , less good . + Now they go to the court and they think how they play against me . + She : I do nt know . +So does the Federal Government . + I do not know police . + But he still does . +We here know that . +But he is more than that . + It did nt work out . +But you have to get over it , too . + It was like women all over the country . +They just did nt go down . +Like you know I do ? +That 's the end . +He made it today . + And they have every right to be . + But we did it in two years . +He had them with him , because they are not home . + And that 's all I want her to know . +Where to Go From Here ? + People have to see us . +I do nt even know how . +Its own police department ? +But that 's what I want . +So I think that 's what we have to do . +Life 's going good . +They put on a play . + It 's about what he does four or five years from now . +But what good does it do you ? +So what was best for me ? +We had one two years ago . +These members just do nt want to see you . +And where does he go from here ? +It 's not him . + I never had that before , she said . + And there are more of us today than there used to be . +They are going to know it . +What will the new program do for me ? +What is it going to take the place of ? +Was it any good ? +Police say that is nt so . +Are they still the same ? +That is just how life is . +But I do nt want to go there . +No one should have to . + Right after that , I left . +Last time , they did nt . +To me , the police around here are good . +How did you get into this work ? + It 's all about business now . +Is it too long ? + We just have nt . +He can play out there . +I never have a day off . + Now what 's that next to ? +They made the most of it . + Little did he know . + When you show it , it 's like , Is that it ? +And even if I did . +But not for many years . +There 's just no going back . + This is her money . + It is not going home . +And now , could it be ? + Still , she does just that . +She will not be the last . +They are right on that . +Every day is good . +I did nt used to be . + The people out there know this . + I do nt know what to say . +But I said , I do nt know . +It could have been me today . + Who are you ? + And I say , I know . +I just did nt have it today . +That 's what we are about . +A : How could it ? +So where was he all that time ? +It is not over . +It 's home to me . + Where do we go from here ? +That I use as well . +It 's a little high . +I would nt say it 's right . + It had to end some time . + Not to me , he said . +I think some of us have to do it now . + Now I play for them . + This is the best time of my life , he said . +You never know what he 's going to do . +You do nt have time to see people you know and like . +Next year it will be more . + Who was it ? +He had more of them made . + I say to them . +It did and he did . +About what might have been . + What did I think at first ? +And they may get it . +I just say , What ? +THIS is very , very . +At other times , he has found no work at all . +We could have had that , too . + It 's the first time in a while . +What is nt these days ? + But I think it will be a good year . + People now have more money . + How do you know ? +For the Want of a Part . +Never has , never will . +That 's what people want . +What did he know and when did he know it ? +That was my high . +But it could do much more . + So we are no good . +You think about it , but now you just play . +People would nt put up with it . + And he never will . +So who might be next ? +I think they both can just play . +But he is there , all right . +You know what they make ? + Did you see that ? + Do they have money ? +Because there were nt any . +Not even for a week . +This is all we want . +We should know what we have to do by now . +ARE YOU GOING TO BE GOOD ? +That still is nt the case here . + That may well be . +They all know one another . +But that is nt what we see . + I was like , All right . + And he does not . +We can see that now . +It 's all the same money . +It just had to be the week before . +It could be a week . + We have people who go to school . + And he could nt . + But he is like the people . +We are what 's left . +What does that do ? +But it will take a long time . + I think she 's going to be around , he said . + I would have found a way , he said . + But at the same time , I think she did well in the time that she was here . + I do nt see that , he said . +That he does not . +I said : I do nt know . +Some people would say that . +And do they get to use it all day ? +Where could it come from ? +Then we were all right . +Did I see it go in ? +That 's a good time . + You are back to New York , I say . +He should be , and he is not . + To do what ? + I was never that big , he said . + How much more do you want me to say ? +She said I would nt do it . +You have to see the play . + It 's a good program , she said . +But will the right people see it ? +This is the family 's home . +They did nt know who was there . +I want to do that much . +This is part of it . + That is what this team is all about . +They want to know , Where we are going to go ? + The last three or four years have been our best , he said . + What I know is war , he said . +But that 's how we play , and that 's how we are . +In the White House . +You just can not . +Such as , who is he ? +It is right now . +That was not my game . + We did that the first day of school . +I could nt have said at the time , This is where I want to be . +Now , come on . + There 's only so much more it can take . +And this was not it . +Today we get very few . +That 's what we are here for . + Where does he come off ? +But how do we know ? +Other people do that . + It 's not so , he said . +I used to do that . + I do nt know what I would do without him , he says . +And I did nt want to go way down there . + He had me . + What are you going to see ? +They are all here . + That should nt be . + This is not just another game , he said . + That 's what I see . +There 's no way to do that today . +Do we put it at the back ? + The public members , I do nt know . + No , I would nt say so . +I do nt have time now . +I do nt know how he does it . +This is as big as you can get . +My family had been through this before . +Or they do nt want to do it - I do nt know . + It 's part of the war against us . +What do I say to them ? +Now see what you can do . + We have to go out and play . + Now , it 's time to just go play . +I had made it . + I had to come . +Now we just have to go out and do it . +We are not going to go . + We did nt think it was right . +I see him there every day . +You know the people by what they do . +I think they have a place . +He made it his own . +What Did I Do ? +It did not last long . +And still they play . + How many of you who are white think about being white all the time ? +That 's what I have to do . + Now what do I do ? + And what does she have to show for it ? + And I used to get on him for that . + Then if they want it , they want it . +It was not much . + What did we get you ? +We did nt know they were this good . + You can never think like that , she said . +It will not be the last . +Now , do nt you go there . +They are used to it by now . + I do nt know , said the man . +And it could work . +That they have to think . + I had to play today , he said . + How many children do I have ? +I said , What do I do now ? +It is to the people . +I can never go back . + I want to know what he does and what she does , she said . +This could be good . +Do nt put it all on him . +But where or of what ? +It was like night and day . +That 's what we had to . +It 's these for those . +That was nt there last year . + It just was nt there for him . + I want to work part time . +It 's there to this day . + That 's what I do , that 's what you should do . +What do we think ? + I play it every day . + We may never know . +It is not going to be us . + But life is life . +So how have they made it work ? + We could never use our other people . + I did nt even know I had it , she says . +But there 's more to it than that . +Who will get the first one ? +No way , he said . +He said , I just want to get out . +Not in this place . + Where will these people go ? +I had it made . + She 's come a long way . +We do nt even know who it is we work for now . +You are going back to work . +Some do nt know where they are most of the time . +But it 's not about them . + We know what we have to do , he said . + I do the best I can . + They do nt want you or I to get money . + Are we out of it ? + I can not say it is . + I like the team right as it is , he said . +This is a general . + It 's more Can we get them ? + What will the court say ? +It 's going to take a while for some people to get over this . +Now they do nt . +But that was many years before . + What Would You Like to See ? + I do nt think about it , he said . + And you say , I did nt say that . +That was in public . +I like it for that . + You are not used it . + He is not a man , she said . +One year is three years for us . +Then who is the best ? +The West did not . + Some might say or think that , he said . +So I said : You take it . +I did not know this at the time . + It will not be the last . +All I could do was . +Who do they get ? +At first , all was not well . +She could nt do it . + There 's still a place for it here . +There was more to it . + I can see you all from here , he said . + Last year , we did nt know how we were going to come play . +It has nt been a good day . +Now I can see the world . + I think it 's going to take time . + But where was it ? +It is not a good place for children . + But who would want to come in now ? + John still has it . + It could be just as good a game , he said . +But what has nt ? + Both are right . +Little did we know . +That 's what they are for . +They like to be out at night . +You should know it , too . +Then she was off . +And they were right in a way . +I have to have it . +You just go for it . +With that war and all . + Even though I was down , I never was out . + But I was in there for all of them . + For one day , he can just be . + Would he be in the market for a few more ? +That 's not him . + Not the best of times for them . +Next year will be your year . + I like to think he did nt . +These days he does nt have to . +And how did she do it ? +All they do is take the money . +More than two years . +He said : I do this show . +The United States is not at war there . + You have to think about what you are going to use it for . +He was the only one . +It did no good . +What can she do ? + This one 's for us , he said . + Man , they are so good . + Get him out of here . + It was my work . + There was from yesterday to today . +And now where do the A 's go ? +She is very at home here . + And the few that do work , do nt work very well . +It 's part of New York and part of the country . +But we are going to work it out . +Now where do I go ? + If people see what 's going on , they will come in . +Do I want four more years ? + I did nt know of it . + Is that right , over a million ? + I did nt think about any of this before . +Now , it 's all up to him . +Come on , play us . +They just said no , he said . + That 's all I want . + It 's not what you know , it 's who you know . +But they did not end there . +He did nt want to get into it , though . +And then it will be all over with . +What about next season ? + There 's so much of it out there . +Know that I see you . +It has been a long week . +Did I have to ? +Two times , the family was not home . +I take it year to year . + Because what are they going to do next time ? +We were going back in . + And he said : No , no . +Or Not To Be ? + I was nt there . +But such is not the case . +In a way they were . +Between you and me , it is nt . + I had never been here before . + For us , it 's business . + We had people here from all over the country . +To know the game you had to play it . + But I do nt know what we can do about that . +I was going to do the same . + He said , You ? +You have to do that . +We do nt go out much . +That 's the way I work . +Well , I have nt said that . +But it 's not against them . +I do nt think that will work in government . + And he made good on it , too . + This is not one . + Who would make the best president ? + We do nt market them , he said . + Before , there was . +He did nt want that , and he was right . + It would not work . + It 's the end of the year . + What would that do ? + They never see me at all , she said . +I could go through more . +This is not my home . + It 's all I have left . +No more , he said . +It 's all in a day 's , or night 's , work . + He said : How could I ? +You have to do what is right . + What do you think this is ? + We come and go . +I said no more . +This is my country and I like it . + But that is never the case . +But we did what we had to . + Today was his day . + It was our best game of the year . +That 's all , he said . + That is what we have to do . + More than any other team . +I use them as such . +Each time there was more . +One play does not make a season . + But then , any show would be after this . + Who is this ? + I can say that . + We did that today . + Do you know what it is ? +It could have been . +Or you might not . +She is not the first to do so . +Life has not been the same since . +This is not the case now . +It 's on me . + Four years is too long , he said . +It 's not even a show . +Last year he had two . + They know what it 's like . +It 's the only way I know how to be . + But there 's so much going on there that people do nt see . +Just not next year . +You say , I can do it one more time . + You know and I know that we have much work to do . +Who would want one who did nt ? +He will say he can not come until the next week . +But that was not the end of it . + I do nt like him . +Or if there is nt , there should be . +How about your life ? + And you know what , she said . +I had to work for it . + I do nt have time during the day , he said . +Or any other night . + You know , I have nt , he said , and I should . +But who and where was she ? +It 's that good . +This year I do nt have him . +Not much I can do about that . +But it 's a good game for us . +That 's what I will do . +I know that he did . +They might take over . +We know just what it is like . +No one , because there has been no other time . +They said : You know what ? +He would nt have . +It will be the first one in the state . + And this will do it . + It 's out there for us if we want it , he said before the game . +She 's not one of those ; she called the police . +You want to get to New York on time ? +And we are where we are . + But there is still more to do . +He 's going on his own . +The case was over . +But there is more going on . +Time is its business . +He could never take it off . + And I was right about both . + I know what 's out there . +It is I , not me ) . + No , I do nt think so , he said . +But the case was put off , he said . +How do you know her ? +It was not our time . + It 's a long way from over . + Who said it ? + What about now that you are back ? + That 's what those people are in business for . +Many , he said , never make their way to court . +He did nt take any money . +I know it 's not the same team . +The public was there . +One of them has them , the other does nt . + We want to do it here . + But I do nt think that 's good for children . +Long as a director . + This is his home here . +I play my best . +This is for him . +It 's more than a game there . +I do nt know if they are going to do that , though . + But then , he is a man . +I do nt know how you can do that . +There will not be many more like this . + That was just the way the game was going . + She has nt been part of my life . + We used to say , We are never going to do it . + The way you go up is the way you come down . +I was going by what they said . +They are a part of me . + Who are all those people out there ? +This does not have to be the case . + You are in the way . +Who are we now ? +In New York , that is . + Or do you make it ? + Does it take a long time ? +But it was much more than that , too . +This year , we know what to do . +He said he did not . +This is my home . +They think , I want to be like him . +Is that how you see it ? +He was going off on his own people . +And I think I did . + It was a little like being at home . +It 's going to be here a long time . + But he could nt . +But we can never know what they know . +What if they do nt ? +You do nt know what that is ? + They have to know that you know the game . +That 's just too many . + But I will be the next time , he said . +All the good is there . +We were in one last year . +If they want to play like this , that 's not what the game is all about . +There is no way out for them . + We are a family , he said . + Still a way to go , he said . +Now is the good time . + So I said , You say , How about it ? +It 's that time of year . + He was just there . + And this is when I had only three . +It 's a big world . +They want to have a say about what is going on . +Now and in other days . +I would nt be very good . +It was only a day 's work , so I said I would do it . + There was a place for them to go . +But there 's so much more to it than that . +She was also good with children . + You are only as good as yesterday 's game . +He can not say no . +We all have them . +You can get them . + Now you see it all the time . + No , he does . + Too good for old people ? + They want more ; they want more , she said . +I can get those . +I still can do it . + I did nt know . +It 's going to be a long day . + We may have to go to court with this . +It would have to come from other states . +I can play one more year . + A way of life . +In How Old Are You ? + Most of us have been here so long , we know each other . +But I do nt know what . + It should nt be on me . +White : I think that 's right . +For a while , that center was his home . +Is it because he 's American ? +That was in the second . + Good for her . +It 's about work . +Does nt know what to do . +Even though he did it , he was one of the family . + They say that this is the best that we can do . + He 's the best . +But , he says , he will . + You do nt know how many are out there like me , he said . +This much I can say . +WITH : Members of the company . +There 's no way I can do it . +We did nt get in it to make money . + And how much is that ? +They take your money . + I could nt do my best . + It 's an old law . + It was never that . + I think I play my best when I do nt think . + Where is she now ? +Many of them were not . + What is it for ? +He did it before us . + Well , come in . +But that may not be so . +We are all in here . +Where would we put them ? +He said this many times . +We just want to take over the world . +I do nt think I had much to say about it . +He would not say how much . +But work out they do . +That will take too much time , some say . +He may not have been . +Last year , it did not . +It did nt take that long . +He 's about to go down . +So I called them . +He had come through . +What is he going to say ? +And she did the same for him . + I know that there will be one . +Their season will end with the new year , so now is their time . +Well I do nt . +Not we , he . +It may have been so . +What to make of it , I do nt know . + But we are not where we want to be . + It 's time I left . + There 's so much family I have to get to know , she said . +And here we have two of them . +But it is what he does now . +That is , that I know about . +And we found her . + This was my first house , she said . + Now we are too old for that . +And he might be right . +Public , he said . +So , he could do this , right ? + Here , you know where you are , he said . + If we have a game , I want to play , that 's all , he said . + I just do nt know if it 's the right place . + That 's what life 's about . +If so , I want to get off . + It 's that long . +She has to be . +And that was only part of it . +Now it 's our time . +I do nt think it is at all . + Business is business , he said then . + And that 's how I think of it . + I do nt know . + We know where they are . +I know , but I still want it . +That 's where the big money is . + If you get this in time , come on by . +It 's the only way we are going to all get through it . +Every game , I would show up . +Was this just another game ? +Did we play well ? +We want to play well . +They are for it . +You get there or you do nt . +But I do nt think that 's it at all . +I just play -- all out . + Be good to us . + We do nt know when , where , what . +I did nt want it to end . +The next day I was down in the street . +If you do nt , we will . +I had to get out . + They just could nt make a go of it , he said . + I said , Now it 's time for me . +The day has come . +You know who has it ? +And if he does not make the team ? +And on the day of a big game ? +And they will not be . +I said I did nt like it . + It 's going to be like that for a little while for us . +How many were out there ? +She did nt like it . + So , what 's going on ? +What more is there to be said ? +He did not only show their work . +There was , she said . + There is not much more you can say . +Are they going to like this ? + It 's been so long . + Do nt they get it ? +It 's just one of those days . + And she was all right . +And on we go . +We should have had it . +That was so , so then . +And he says it very well . +And they know you . + What 's that about ? + There is no life here . +But they will be . +That 's just not me . + And they should nt . + What is it to me ? + I was never one of them . + What is it going to be ? +Most of us would nt want it any other way . + That 's all over with . +The state can not use all of it in one place . +Most do just that . + It 's up to us now , and that 's the way it should be . + We know where we are . + It is not that . +No , and if they did , I would nt say that to any group like this . + But that was a long time ago . +How did they get there ? +How about next year ? + No other city has had that . +We do nt just go out and do them . + That has never been said to me , she said . +Still , it is public ; it is Us . + Life in the big city ? +And these days , it 's a big family . +If it does nt work this time , it will work next time . + It 's this little one right here , see that ? + I use it , he said . +You should be there by then . + But if they know it 's here , she said , they may come . +Is there a there there ? + Children get my work , he said . +Now I get the part . +But what if you have both the time and the money ? +But today , old is good . +The best should and will play . + I think about it way too much . +Or they may not . + We want to make it home . +Does it have much to do with life ? +They are all over New York now , too . + How long will this go on ? + It has to be to put it to the best use . +People have found that out . +It was not the police . + What time would you like to come ? +It 's just the way of life . +One in a million , we said . +Where should we put this ? +What would we -- you , I -- do then ? + I still do nt think it would play . +Now that does nt take place . + And it was him . +You are all one . +Now it 's all the time . +That 's what I think about . + Where will it all go ? + He is not a center . +This is all you are . + I can not play without people . +The company is people , and you do nt own people . + I think about that these days . + But I would nt be here if I did nt think I could make it all the way . + Then he called another one , and I said , I know that one . +The war did that . +Not much going on . +That 's my man . +That is left up to the market . + You do nt see that . +I can not because I can not see . +The time is here . + What did they say ? + I work down here . + How was it there ? +But what if there is a war ? +It was what I could do . + This is just about the best program we have , she says . + People said : How can this be ? +I do nt know what we are going to do now . +We are going up . + For a new government ? +And that 's me . +We can put up with it for more money . +If that 's what they can be called . + They are well , she said . +So she 's made it to the big time . + We do nt like that . + They all were , and they would say it about each other . +What does New York City do about it ? + I just do nt like where it is . + What does one say ? + But three times , come on . + We are not that way at all . +But it 's all good . +When are we going to get there ? +Say what you want . + I do nt think a man would do that . +It 's been a year since you left us . + With people around you , you are all right . + They still might not get it . +So much a part of my life . +And I said , How much more is there to it ? + It 's a little here and a little there . +Do you know who these people are ? + It 's not so much what was or had been , he said , but could be . +How does it all work ? + You just play the play . + I did nt want to go through this . + But not for long , he said . +It is also political . +And so were we . + And we should nt do it . +Today , he said very little in public . +I want to go back to work . +You do nt know if they are old or new . + They are all here . +That 's -- I did not do that . + Because it does nt work that way . + And I said : Well , if you can come up with another way , you do that . +From A Way in the World . +I do not think I would . +But there is still a market for it . + How could you not like this show ? + And we are family now , for life . +That 's a good place . +It 's not that these people who come in here do nt want to work . +You are not going to get this time back . +More and more money for less and less work . + But I do nt have him . +You do it or you do not do it . +We think this is the best way to do it . +It is time to get on with it . + I did come back , he says . + And you know the best part ? +But one of these days it will . + How does she do it ? + They have nt come , he said . + What good does it do ? +But it 's part of the game , part of his game . + You know what you are ? +But it could not last . +What if it had been my house ? +Not that he had to . +We do nt want more . + She just does nt get it , does she ? +I will be good . +Very few people do . + That 's what made me think of it . +What do we have to do to them ? +But there are people in between . + But that 's over right now . +There has not been . +I work in this office now . +But not in time for him . + It did nt do him any good . + We can not go on , he said . +You are going home . + He just does nt get it . + More than that even . + But he does know . + I know it did . + But I want to know . +One just has to know how . +But then , you do nt have to . + I know what 's in it . +We know who they are . + She is , he said . +I can get on with my life now . + This is not going to work out . +Now we are all here , are nt we ? + People did not like it here . + No , the man said . + I did nt want to go on the government , she said . + At the same time , we know we have a long way to go . +What does all this have to do with being President ? + But you never say never . + That 's how it is in New York , he said . +And we did nt play as well as we should have . + We are going after these people , he said . + What 's going on with you ? +It could be this year ; it could be next year . + May I say what it is about ? +Here , many people have money but few have time . +What if it was nt ? + You are just not going to get them here . +But they will be left for another day . + I had the time of my life there , he said . + It is nt just police work . +I do nt think he has one . +I have to make it work . +That 's a high . + Where will we go ? + These are the good old days . +That was it , she said . +We are going to have music . +And they do nt come and get it like they did at home . +How should he get there ? +Was it not so ? + That 's all I know about it . + We are very good . +But it is not the same . +I can only do my best . + I never did it . +And that 's just about how it should end up . +With this , he was there . + You can not take from them . +They can do so on their own . +What would he think if he did ? + This is going to go on for days . + WHO are all these people ? +And so did the police . +She 's there for us . + That was not me . +He could have come before . + We are all going , are nt we ? +In a way , they do . +Or big , big , big . +So what more do you want ? +But some can not . +They are so good too . + What 's he in it for ? +We go out and do it . +We want them to think : I can get out . +Over time , he did . +All this is good . +The only way is up . + How many times do you want to own your music ? +They called us those people up there . + You want to go out there and do your best . + That 's what we do here . +Where was he during all of this ? +He 's not , though . + I was nt going to go , but I will now . + It 's so general . + But it 's good at the same time . + I will not go in that place to see you , he said . +You are still in New York . +This is a big world . +This is nt our first time in the big city . +Where will we be ? +But not all people . +So long ago now . +So I said , Well . + He called her like five times in two days . + We are not where we have to be . +It was this year . +Today I do not . +But some would not . +New York has many . +Now no one country does . + It 's just going to take time , she said . + It 's my last year . + We just want them to do it in the right way . +To each her own . + I might not go . + It 's just that I was nt . +There 's a place they can go . +Then what does she do ? +But this time I did . + Yesterday it was five . +We get to do this all over . +All I know is that we did nt play well against them . +But over time there could be . + What in the world for ? +If it does nt . +That 's not what it is at all . +I want to be like him . +The next day , there was one . +I know she is but I did nt want her to know it . +It 's like going to a play . +But for me , this is the best work . + We are not going to go there . +For one night , it did . + They did what they had to do . +She has no one . + It does it all the time . +They will never be the same and there is no going back . +They are not the law . +How much is too much ? + It 's over now . +But people say it . + If only it were so . +If I did nt do that , I would nt be here today . +It is also the way she says it . +The case is not over . +And business is up this year . +This is what we have . + Do you think so ? +They do nt even go to the police . + Before , I just did it . +But there was no way to do it . + The four of us . + I do nt think I could take it . +No more for me . +I had to get it in . +How will he use it ? +But if they are not , then what ? +Yesterday you left us . + How many are out there like me ? + I know you do , he said . + I get up when I want . + How do they do that ? + But there 's not . +We are used to it . +You also had to have business there . + I could nt do that . +What is the best way to do this ? +Most of the people there now are going to be put out . +But that is not what I want to do . + Children know where they are with them . + That is their right . + It can be put to work . +It is much more than that . + Where did you get that ? +But in general , most people did nt . +That is my game . +I did that last year . + I never use it in my work . +It 's another way to play the game ; it 's not my way . + I just do nt have the time . +It has a long way to go . + I was nt going to do it at first , he said . +They said , We do nt know . +But I think one year is a long time . + I still want to know more . +Several states have had them for some years . +I think , though , that there 's more to it than that . + This is not the old left , he said . + What will he do without me ? + It should have never come to that . +And I do nt want to . +She does nt take them ? +He should think about that . +People who get in the way . +What 's he there for ? +That 's where they are today . +I know he 's not . +He should nt have to be . + I like to see who 's here , you know ? + But I do nt go as much , he said . + There 's only one of me . +I said , No way are you going to be first . +Some are , some are nt . + He says , How much ? +It will come up . +He has not been back . +And that 's just where I like to be . + And it should be . + People are very much for it , and very much against it , he said . +THEY know it can never be the same . +It is the country of a - the ? + He did nt know how many there were . + That 's who we are after . +No , there there . +Well , did you ? + Did I think I was good ? + Every time we get time off , we go out , work out . + They know people there . +And some -- A few ? +What would they do without it ? +I want to have a home . + I just do nt want to . +But it 's a long season . + How did we get here today ? + This is where I want to be . +When it does , they make money . +We have come a long way . +They are not just here to play around . +But this is not the case . +That 's about it . + We have nt had any of this for years , he said . +Many still are not . +Now we have to do it . + It 's not about money , he said . + I do nt know what 's going on with it , he said . +So it 's good . + This is not my home . +It 's just not for me . + We had less than before , he said . + And he does . + Well what about here ? +They want to know , How will this end ? +They would make a day of it . +The police found much more . + This is another one of them . + I do nt know , she then said . + He said : It does nt work for us . +There were those who would not do it . +How would they work ? +I do that as much in my work today as I did back then . + He 's being used . + Little did he know . +Can it be all of them ? + Take it off . + But I was nt even there , he said . + I go back . +What can I do for you ? +If not , we are going to go on . + I do the best I can , he said . +But not because they were found out . +This is my family now . +Right now , I want to do it for a few more years . +So that 's it ? + What will you do with him ? + That 's his life now . +We know that we can do it . + He said , What should I do ? +I would never go back . +I have a house here . +So which white is the White House ? +He has been through so much . +I did not know what to say . +But there is in New York . +That may be it for a while . +It 's this way . +We have to get this right . + But they say : No , it does nt . +There just are nt any . +It 's the way I like to do business . +I know it 's a business . + They should not have made them in the first place . +They come in my home . +He has his own children . +But it is a new world . +People do nt want to go out . + You can use money to make more money . +But that 's the way it is , he says . +And what did he want ? +No other state does that . +How do I know what it might have said at the end ? + It 's time to come home and play . +She 's the president . +We called it a night . +Where , then , did they go ? + We are not going home . + I had no time off , she said . + It was a good time for me to play well , he said . +You may have them . + They have and it has . +Then they did not come back at all . +He said , This is my home , these are my people , this is where I want to be . + I work out , he said . +But then the show would end . + It 's like that . +But first you have to know where they are . +I have to do that too . +Do nt we see this ? +And then he was off : People like it . +It 's the same team we had last year . + But I know you all can do it . + But who among us has nt ? +If the court says it , we have to do it , but we do nt think it 's right , and we do nt want to do it . + What would we do it with ? + I do nt have money . +What can he do about it ? + My children are all I have . + But how could they ? +What is to take their place ? +They are just American . +As well as political . + If I can , I will . + Where there 's a will , there 's a way . +Is that what you would do ? +Did I like her ? +What did they do for me ? + But he does nt back down . +What did she want to get ? +It would be a place just for the two of them . +But it was up . +What he did do was not right . +I found a home . +If they want to do it this way , so be it . +They were from all over the state . +The war was still going on . + I know that , and you know that . +I do nt want to do this . + We are new . + They do nt see what 's going on . +And that 's a new way of life . +It 's like me . + He was big in this game . + It is for all of us . +But one day we will . + No one is going to like this , he said . + That 's the way to end it . + They are not for people like us . + When they are in school , I want them in school . +Well , that 's not the case . +It 's just like that . + I would nt be here if I did nt , he said . +The president was not with them . + This year there will be about the same or a little more , he said . +But children might be . + Well , now you can . + I did nt come up with that . + Did he want me not to ? +But they had little to put in their new home . +But not to him . +We can do business . +She did just that . +That 's where it is . + Some people did nt . + They said , That 's all right . +This was his show . +That did nt work out for me . +You put it in your house . +Well , I could , and I did . + You know what this is all about ? +I want you for me . + It 's also where the money is . +But I do nt know if they want me here . +I know I have to be here now . +There is no other work . +He did and he was . + That 's all we want , no more . +That could take years . + What I do in my work , I can also do at home , he said . +But what a way to go . +THEY do nt all say it in the same way . + So were they . +But it just was nt for me . +No , and I do nt do that . +I want to see what they are like . +After people get money , they do nt know what to do . + It will not work a second time . + These people , I do nt know them , she said . +What 's she going to do ? +It 's , How much do you want ? +For a long time , no one did . +Now it is on long into the night . +It was time for us to be going . +It was nt like that five years ago . +They are very good at this . + Not that I know of , I said . +HOW MUCH IS TOO MUCH ? +It 's all how you come back the next day . + These people are used to it . +But I think this is part of the game . + They do it to every team . +It was like being in the country . +Three years ago would have been . +This is my school . +I also have a business . +I will do that three days a week . + There has to be a first time , he said . +They have never been to one before . +But was there more to it than that ? + But it 's good for me . + I said I did nt know . +And I never will . +It 's good business . +What are you going to do with it ? +This one is big . + Get in , she said , and I did . +Her life 's work was her family . +I think it was a little of both . + Did you see it ? +I see it every day . +To know all is to know too much . + Can he still do it ? + I just do nt want to be around it . +So now I do nt know . +This is the best I can do right now . +But that will take days , officials said . +There were many to go around . +If they are going to do it , do it . +People do not work as a family . +It did nt have to be that way . + I just think it should be over . + You can only play house for so long . +And now , where are we ? + It was nt like they did nt have the money , she said . +It 's up to you to use them . + We are going to play . +The second is the work of I . +It 's west of here , is nt it ? +They will take our women from us . +It has to be all of one . + All right then , I said . + But , I did it . +It 's just the two of us . +You are the only one for me . +She was like us . + You think about money . +I have nt said that about this team all year . + There 's not much I can say . + They were like a family . +Many of those who left were white . +What was it like for her ? +Who would nt want to ? + That 's all I can do . + Now that day is here . +Not much is made of this . +It 's How can I do more ? + They could be right . + It is not one of us . +Good for him , I say . +And he is right about that . + We do not think so . +Do we have to go this year ? + Business was way up , he said . +It 's what you make of it . +He still might get it right , or he might not . +They are more than just that . +What does he see ? +I like to play here . +All too few do it . +It did so yesterday . +What did they say to their children ? +He has a good one . +YOU know them but you do nt know them . + See what I have to go through ? +They know it will be big every year , and it is . +I did nt get it because I was white . +Some might say it is all in the family . + Then one day it was over . +But it would do that , too . + They go to every house . + We did nt go at all . +One day they will have to go . +He was part of it . +Him : But is that new ? +Where do they get off ? +The week was over . +But by then the game was up . + I said this before , that it 's a year at a time now . +But she never did , he said . +Have you -- A . +At the end of the game , that 's when he 's best . +And what if he does nt make it ? + How could they do it ? +That 's going to be your only way out . +That 's just the way it is here . + No work , no money . +Here , there is no then and no next . +They were big , but are they any good ? +We do nt know the business . +If they are right , they are right for a long time . +Where are we going ? +What can you get for us ? + Is he still around ? +Is that what they were ? +But not as much as he says he does . +I like to be a part of them . +I can say what it is . + You know what we put in them ? +I know how to do that . +The year after that ? + You think : Right . +But he is also more than that . +But it did not , she said . + I used to do business here . + Do nt say you are out of money , he said . +It is nt our show . +But there is another game . + We were just at the end of our money . +What has it to do with him ? + But what could we do ? +We did nt have time to think about it . + It 's right now . + You know how they are , he said . +She did , too . + No , no , I like this , he said . + There are nt that many people who do what we do the way we do it . +So you have to be on him all night . +So it was for me last week . +This time , they did it in one . +There 's only so many people out there for us . + Well , we are nt going to do that . +And , Is nt that just like me ? +DID THERE COME A TIME WHEN YOU . +But he is also one in a million . +Too much work to do . +I have a place . +Some of us are . +I do nt know first . +Right now , the market does nt have much to go on . + I do nt know what to say right now . +You are going to go back to work . +Where is it made ? +No , it would not . +It was his second of the season . + If that does nt work , she said , we will go to court . + He said , Do I have children ? + The People 's Court . +I said , How could they do this to us ? + We do nt want war . + I know we do . + Do nt you want to know ? +The time was nt right . +That is how we are going with it now . +It 's time to go . +And you do nt want to play like that . +No , not my children 's . + That 's life in the big city , he said . +Most people 's are . +And so she does . + What will you do then ? + It 's our right , he said . + You could nt say no . +I do nt know where we are going now . +I think we did that for a long time . +Well , not as good . + I do nt see what the market for this is . +He would not say for what . +Now I know they are . + And it is nt . + How do we not get in ? +Other than that he had a good day . + But we are still in it . + I think it 's high time . +And that law you know more than I do . +Today there are only two . +Or not to do . +And where do many of them go ? +We have to make a show . + They know when they get up . +I did not say that . + What 's New About That ? +It is nt much . + It should be this , that , other . + He would never have put up with this . +World team - United States . + He 's up there with the best of them . +It 's going to be big . +But they should know how to get it . +But two or more ? + I do nt want to go for less money , she said . + How did he know ? + We did nt know him and he did nt know us , he said . + That is what they are good at , he said . +I did nt want to do that . + It 's good , he said . +Was He Even There ? +I was right , too . +You know , so much of life is what you make of it . +You will want to see it . +Do we know who they are ? + You do nt , he said . +If that 's what you want . + I was there , he says . +That 's how it was in those days . +I make more money than they do . + But what can we get ? +Was this a house ? +He just did nt get it . + But he has nt the last few days . +Because you know what we had ? + It 's against the will of the family . + How could I be ? + Now we do . +I never have been and never will be . + I think about that game all the time . +But if he 's going to do it , he will be his own man . + But we do nt like it . +I said , I know it 's over here . +I think it 's over with . + It 's that good ? +There are days when I do nt go out of the house . + Take the time to do it right . +Then she did it . +The time has come to go . + It 's going to have to be . +This season it is only two . +We take our time . +We are too big for her . +But there is much more to come . + Which is best ? +Does nt the United States have its own state ? + He 's going to have to go through more than people think . +But it 's not only money . +It was the game that did not want to end . +But it is a good one . +More on that after New Year 's . + You are out there all on your own . +He could do that . +It is a good time to do it , too . + The state does nt have money . +And what a work it is . +But her day does nt end there . +Not in a long time . +When were you last there ? + And that made it good ? +Are never for me . + I just want to know . +There is now less work for more of my people . + But that 's me . + Is that New York ? +And what About us ? +I said it then . +But what are they like to use ? +The university 's president , John A . +I made it yesterday . +What do you do with these children ? + We just do nt like what 's going on in this country . +He can only go up . +There are so many out there . +If it did nt work , I would nt work . +And I work in it . +But I want a life , too . +And how was your day ? + There is so much I like to do . +On your Is New York Back ? + You may not like it . +When would I see them ? +And that is still with us today . +I did nt have to work . + We have no work left . + Will I play ? + One last time . + I get them to a place where they want to be good . +And that is all . + There 's not much here . +I do this all the time . +I did nt think we did . +He also did not want them to see war , as he had . + How do I say it ? +And what a show . + How do they work ? +That 's on good days . +I just want to do my music . +This is a group of good people . + Do you know what this would be used for ? +Go up from there . + She did nt like him , did nt like the work . + I do nt think they should , he said . +What 's new , though ? +It 's been one year without you . +He does not know what he will do . + Now is when I made it . +But you get used to it after a while . +We never said that . + I know they are going out of business . +If so , how do I go about it ? + That 's the way it 's been for the last two years . +We know we are right . + That one way was going up and up every year . +It 's the times . + It 's not a game , she said . + No more left , he said . +What did they do there ? +It was time to go to work . +Some days you do nt see any at all . +That is how many they have between them . +But there was more than that . +And here it was . +He was used to his own way . +That 's the way they were . +In part , it 's because they can . +JUST do nt say it . +I can only say it so many times . +But I did nt want to do that . +How can I say it ? +Here I have five . +It was nt like old times , though . +Most of them have to do with us , not him . +And that is all I did . + I said , I have . + I could nt see any . +Put these in your will . +Does he , or does nt he ? +We just want our money back . +But not too much of one . + And like it or not , they did . +What do you know that I do nt ? + It 's not part of the game . +That 's the way it was in the old days . +But would they come back night after night ? + Are you an American ? +Still , it was and it did . +And now women , as well . +He is the one man who can work for the family . +We know that one . +And you want to do more . +And who was on that team ? + But I did . +He 's into it . + It 's the American way , he said . + One of them said I was going to be next . + Back in the day ? + Are we what we do ? +First , that is . + I like that it 's a family company , he said . + We will all go from there . +The man is an American . +I know he could come out and go off . +I see them do it . +Who 's to say what 's too much ? +I just want you to know that . +How long will that be going on ? +I work for the city . +I was like , What 's going on ? +Until last night , that is . +It was a long , long game . + You only show what you want to show . +My work is what I have to say . + And that 's the end . +But I was here , though . + But no more than that . + That 's all it is . + This is my place . + But that 's what this day is all about . +We are not a state . + It 's been a long day , she said then . +I think that 's the very best way to go . +I was with the New York group on that one . +And you are just another part of it all . + I do nt know what they are going to do . + We are going to be who we are before and after . +What would we say , if we did ? +No more , and no less . +What will we have next ? + They are just like people , he said . +This is never going to work , you think . +I had to go down to get it . +This time I did nt have to . +I get to work some . +So how could I not want this for her , too ? +He 's one of them , if not the only one . +So the time has come to do it . +They said they did nt know what I might say . +We do nt even know . +He was only good . + I did what they said . + I do nt say that it 's right - every way is right . + I just go day by day . + What was it for ? + Does he or does nt he ? +It 's big , and so is he . +And that 's just for the music . + In his case , he was right . +Now they may not . +I think there will be . +But there they were . + What did she say ? +What do you think it was like ? +They just want a government . +There 's another one the next day . + He did nt go after the President . + It 's the same old game . +It is nt now . +We are going to go up there and play with the team we have . +That 's what we want to see . +Because he is nt . +And these were not just any members of the public . +For the business it 's not . +But not many , and not this one . + I would nt do it like that . +It 's like our home . +I do nt even like it now . + He said , Right over there . +They may all be right . + But without them , we would nt be where we are . +I have nt had time . +More than that we are not going to say . + That was so right . + I just did nt think I could do it . +So is it a war ? +Make it one more time . +I did nt want to be like her . +It was a good way to do it . +He may be down there . + We are used to that . +Most of them said no . +Not as well as it should have . +This did nt do it for her . +They are both right . +When was the last one ? + They did too much for too long . + But he is a big part of their team . + I do nt have time , she said . +This is a first . + He said he did nt do it . +For years , this was the case . + For some people , this is their home . + What did you do yesterday ? +He said , Are nt you ? +How good are they ? + What were the two ? + It 's not how good you are . + This is a time when there 's money to be made . + We are still in business , he said . +We now have it . +Their season may not be over . +It 's not my time . + But who are they ? + He will be back . +The team and city did . + What did I know ? +It 's an other . +We do nt want any money . +So I had to do what I had to do . +Will they make it new ? +And we can have both . +And there is still more to come . +In this of all states , it will come up . +But no more than that . +Most will be first children , some will be second children . + I would nt think that way . +He could do it all . +It has to , right ? + This is it for me . +What in the world is going on ? + Even with that , it still should nt have come down the way that it did . +I like it out there , out of this house . + If you had to come home to this , would you ? + I said no . +That can take years . +More , said another . +It 's only the second game in . +A year from now ? + He said , You know about that ? +Say less than you used to say . +More than just a court . +The American people did nt . +There just is nt a way . +It was one of those days . + It is over , he said . +There may be another way . + It 's more for him than the team . + I would like to . + That 's what people like . + It 's been going down for five years . +He did nt play last year . + But Is It ? +These people do nt . + People have it or they do nt . + I could nt have said no . +It 's man to man . +She has no family in the United States . + The day time is just like the night time , he said . +How much do they play for ? +And many of them have . +What are we going to do then ? + Who would you get ? +How could she not be ? + He was my only family here , he said . +This is the first year the program has been in New York . +Well , there you are , there you are . +But this is the best I can do . + No more , no less . +He said , Do you know who this is ? + I did nt think it was going to be this big . +We used to do that . +THE COURT : He has a right to . +We do nt have a home . + You get to it when you get to it . +Still , it was good to be back . +But we could nt do it . +That 's all we know today . +How many children get left out ? +Most people think it does . +Who will take me ? + Get me out of here . + I know where she is . +I do nt want to be the next one ; I want to be one of the next . +Life is what you make of it . +They have not made them since . +But they are still around . +We had no one to go to . + Will he know what it 's about ? + Mr. West said . + And so he did just that . + I Do nt Know . + We did that as a game , he said . +They all know us . + How can we not be ? +You still have to just play the game . +What could she say ? + But we do nt have that much money . +It is their one day off . +I would nt say the other one . + I said , No , do nt . +Who are you today ? +The company was my second home , my second family . +But that was his business . +We do nt even want to be down there . +They have to come and get you . +Not that that would be good , they say . +So what do we do now ? +And so I had a very good time . +I like it there . + It was home . + Not on our show . +But we can in music . + All my family , all my life is here . +But in a way it is . +They are at home . +He called the police . +Only time can do so . +Now I do nt think this has to be . + That was that . +Well , what more do you want ? +We did nt think he could do it . +She should do that show . +That right there is new . +And it is yesterday . + Some will come back , and some will not come back . +It was like , if this is nt it , what is ? +And I was , well , me . +Here , they have no war only five years . +I think he is , too . +He did nt know what they were up to . +How does the world see the United States ? + That would be good too , a little house . + It 's still here . +He has no children . + But you did nt know that . +I do it my own way . + In two years it was . + It 's all about money . +They do nt know how to get there on their own . +Which way will he go ? + I just left . +It 's not just going to be me . +Still , it 's all over the place . + This is not work , he said , this is a life . + This is the way we are . +It is all of that . +I know all that . +It 's a day 's work in which you do the best you can . +And they may very well be right . +I know all of that . +We have to get to know each other . +It is not the law . +What would be going on in his life ? + And I do nt think I can do that . +So too is the Government . +It 's going around . +But that 's not the end of it . + For a while it was all up . + But people are not the same . +I did my end . +He : I do nt know . + They say , I do nt like them . + He 's the President , she said . +That 's what I found I had to do . +They should do well as long as they play good . +That was nt the case with me , though . + I said , Who are you ? +So we are going to market more to them . +How much do you make ? + Do nt get one . +That would will have to do . +We would nt be here if it were nt for him . +The one to me . +How do you get more ? +That 's what 's in there . + He did nt have any money , she said . + We are street children . + You have to see what you have . +I was the first to use it . +If it does nt , it 's about time that it should . +You can still see his work there . +Do what you think is right . +I know he 's going to do well . + How 's my show ? +Did I do right ? +All I can say is that it 's about time . +They have to work as a team . +SAY what I think . +But was that going to make ? +They know that people will come back . +It was nt just any school . + But it has nt . +And what about children ? +Many , if not most , did not work . +Now , if I do nt make it , it does nt get made . +It was a good game for us . + You are here because you are here , he said . +What will it be ? +She did well at home . +These are just a few . + The right has use for it as well . +What more should I do ? + It 's what 's going on now , he said . + How can they be ? +And by what right ? + We did that all the time last year . +UNTIL THE END OF THE WORLD . +The money they all have . +But it never has . + That 's just the way the world is . +They still say so . + Then she left . + We know what we do well . +I was less than I should have been . + We had to . + That 's New York State law . +But I did not have time for that . +It 's my office . +They play like it . + Just do nt do it against us . +You are one of us . +We are not in a war . +BUT is this all ? +For many , there was little more to do . +He 's been through it . +That 's not the right way . +That 's not the way it was . +It could be the right time . + I think I would have been good , he says . + They will have a good year . +But he can not do that work any more . + But it 's still there . + We are not going to play that game . +This is what 's left . +Night after night after night . +He 's on our team . + He said , Our company . +It could be his last . +I do nt think any of us do . + Think of your family . + I know these people so well . +Get me out of there . + Is that what it is ? +And that 's very much what the show is about . +Well , most of them . + But what if I do nt get it right ? + Just not in this market . + This is where all our family is . + It was their own money , too . + What can one do other than that ? + That 's a part of it , too . +Even if there is the will to do so . +And now he 's President of the United States . + It 's not going to last . + You still have to go out and do it . + I do nt think any of the children do . + He 's just going to work . + They know it and we know it : it does nt . + But I do nt know what he will do . +Is nt it time to get them home ? + Who does nt want to be in New York ? +And on , and on . + He did it to them . +Is our country more united today ? +Today he said : It 's like this every year . +That 's the way it should work . + What we will do ? +We do nt have one . +Money for a while ? +And much less work . + Where could this have come from ? + But that 's what it was . +You do nt know if there is going to be another big one . + And good for them , I say . +What are you in for ? + Think about that . +You have to take it . + That 's the way I see the world . +Or two , in her case . + There 's more to life than that . + Here 's what I do nt do , he said . +He said he had not . +It should nt be any more or less . + People have to work , he said . +But there we go . + And it is about time . +But where does he go next ? +Still , they have made it work for four years . +Would that this were so . +A : Well , I can say this . +And we know him . + It was good work . + What are they ? +Then there is money . + When will you get more ? +Because the women want it . +You do well here , people say , Good for you . +Not this time around . + I do nt think he did that at all . +Well , as I said , I think here , the other day . +You know where that is ? +We should have been there . +It may be part of the game , but that 's what they did . +That 's who she is . +It was about business . + I did that years ago . +This was not like him . + But it will do . +Even more are on the way . +We , New York City ? + But she does know it will take time . +Only five did so . + They want us to take it a game at a time . +You should have had it , but you did nt . + We should still be out there . + Then and now . + There is no law on it . + People think it is , but it 's not . +But if he did nt know , you are on your own . +Now it 's not so good . + We are still going to be there . + We had it going for a while . +It also has more to say . +People will be people . +The more you put into it , the more you get out of it . + No , no , he would say . + It 's what I do best . +It 's on the part . +She had come to the right place . +Well , he 's in law school now . +But that is not what they see on the street . + You are in the right place . +I was like , What is going on ? + We know very well what we have to do , he said . + But I do nt think that 's going to be the case . + But this is new to me . +I do like it over here . + That is because it 's going so well . +We are nt on . + I do nt think about you every day , she says . +When did you get to work ? + But if not , it 's not . +How long had it been since I had been out here ? +There 's this company . +We had the best of times . +Where is this from ? + But we will do it . +Here , take this . + But she would nt do it . + It 's not much money , she said . + It 's not for me , he said . +Which would you go for ? +There is more we will do . + They take their time . + When can we come back ? + I like both , she said . + You might or might not get your money back . +May it be the first of many . +We did nt know that was going on . + Other people do that . + So he did . +You may even be right . +The other is to put the money back . +We do not have to do it . +As is the team . +He 's been off a long time . +He 's the team . + That 's a good one . + This was not good . + This is a family . +It was nt that he did nt know . +But not every one of them . +Many did not have any . +What about our people here ? +Now he has to show it . +Many among us are . +And now , like I . + I could nt go up . + This is what you get . +He will have to get used to it . + I do nt know how long this is going to last , he said . +Do what every year ? + First they get two , then we get three , then they get three . + We like the show . + The world is not what you think . +And in the end ? +But the case is back in court . + It is not the same . +I know we could have . + He has nt been around us for over a year . + And I said no , no and no . +We will never go back . + I had some good times here , he said . +No , he 's new . + Do nt make too much of it . +IF I NEVER GET BACK . + So I set up my own company . +It is nt the children . + I do nt know if I should say that , but I did . +If you do nt want that in your life , you do other work . + For her it 's a game . +But there was no time . +It 's about time , too . +I would nt have said it . + We could or we may not , he said . +The play is not over . + I still think we are going to do it , she says . +So should those who use them . +Do you know of some ? +That was new for me then . + I still do it every now and then . + You can do as little or as much as you want , he said . +And you know , he was right . +What did they say to each other ? +I do nt think the school has any business with that . +But there is not money for both . +Did he say that ? +I just did nt know who I was . + We should have had you over more . + He could nt do it the right way . +We have said : We are at war . + You have to work for what you get , like we did . +What if you could nt come back ? +That 's just the way she is . + You get to see that the world is a big place . + What would I do at home ? +Three down , two to go . + We will be good to them . + You know what he does ? +That 's the last one . + That 's way too long . +They would have two children . +How do I do this ? + No , said a man . + It 's just as if I never left . + And he said , We are on it . + I think people are going to come to our show because of it . + They say if you like what you do , you never have to work a day in your life , he said . +Little was said about that here this week . + Now , only a few of them go . + Go out in the city ? +How do I get it ? + But now , I do nt know . +No one will use it , they said . +He used to be . +And now I know . + I did nt see much . +We may not know much , but we know what we like . +Many say just in time . +She was going to come back . +It 's one United . +You should know how to use both . +It 's going to be money -- big money . +She said most of it would not go to her . +He was with them . +There 's no court . +It could come back . + Where did you come up with that one ? + Second is so good . + All year long . +Where Does the Money Go ? +He 's another one . +He also did nt have time for his family . + They do nt want to own or to have . +What about her first time in New York ? + He said , What ? + We do nt think out there . +You make it or you do nt . +And so they have . + I do nt know , he said . +People who know me know that about me . +If you are going to use , you are going to use . +What were we to do ? +You could do it , right ? + You are not going to get me in that . +Some said he was too old . +I think we are just as good as the West . +If they do , I do nt play them . +Did he and I see the same play ? + We show them what to do . + He says he might go to law school , too . +Go west and you go back in time . + But we will come back . +They did nt get much . + You are , how old now ? +That 's the way we are going to have to play . +This was never about money . +In the last three years . + It 's not like they do nt get in the game . + Would I know any ? +But we did nt want this war . +Who could want more ? +The world around him ? + I can play high school , she says . + And it did nt take long . +Which in a way it is . + But it 's the only one for me . +She : I do nt know . +It made me a new man . + Come over for what ? +She 's very good . + There is never going to be another first time . +It was nt for a time . + It 's not how old you are , but how you are old . +Can I make it part time ? +People want to work . + But they do not . +I think there are too many women next to each other . + That 's how I found them , he said . +That is not what we do . +But we are a long way from there . +I also think with me that a big part of it is the money . +We can use it . +Even so , it will not work . +All 's well that end 's well . +It was : Good game . + There is a little of this . + Not so much , he says . +That 's not all I want . +That was when New York was at its best . +But best of all , there was money . +So it could be now . +It did nt show . +Who 's next to go ? + We will work with what is there , he said . +But no one left . + You see it there . +This is what they do , and they do it very well . +Now she 's home . +It is nt about you . +We do nt know where they are or what they are up to . +It can also be used right now . + Now I do nt even think about it , he said . +But here he was at his best . + But when you want to get high , that 's all you think about . +Most of all , children . +She was just left here like this . +We just are now . + It is where it will be four years from now . +Even I can make that . +I want them to have a good life . +Just do nt get on . + Or they take it out on each other 's children . +But that 's where I come in . +They would not say . + Now I can say I was there . +It was not very good . +He was called out . + I think it is some of that . +Now it has come home . + I just do nt get them . + This is a way to get them around . + But I will still come back . +I think it used to be . + That day I do nt go to high school , he said . + That 's what we like to do . + He said he had not . + Did we or did nt we ? +To many , it still is . + It 's not you . + This game is a long game . +Very well , then . +He should nt have said this ; we both know that . +There 's no way it 's going to come back . +Get me out of here . + That 's the end of it . +Should nt they have a day , too ? + It 's good to be on my own . +How do you think she did ? + It does not work as one . +But he was right . +It was the right place in the right place at the right time . +What did I think of that ? +It has no place being there . +Did I want to go ? +No one can be . + But we will get through it . +You know who it is . + She said , I do nt know . + We think we can do it , he said . + The good old days were nt so good . +It 's just time . +Most of them are in New York . +We are here to work . + We know we are going to be a good team , he said . +Day after day , every day . +She has been to four . +You have the same . +But today it is . +You did , you did , he did not . +One day , he can do it . +One would think he would be . +What Do Women Want ? + What would I see ? + Just not as big . +But not with one out to go . +So what did this president do ? +A How are you ? + They are here , he said . + I know what they want , I know what they use it for , he said . +It just does , that 's all . +And the best part ? + That 's what the best part of this is . +But right now , no . +We have to take them . + This has been a world of good , he said . + It 's a department we have all year long . + And every one would say , no . + We are in the game to make money , he said . +They never made it to New York . + That 's what it was ? +They did nt last for a long time . +So what did they want to do ? +ME : What did you think ? +Still , it could not last . + That was then , she says . +This time they did . +She would nt do so . + We were right there , every game . + If it were not for these people , where would I be ? + He did nt do it all the time . + And you see them more and more on the street . +It 's about how . + This is New York music . +On the market 's west end . +There was no more time for that . + It 's like , Now what do we do ? +But they are good people . + But you can do it . + But we do nt do it . +You can take the people who are out of work and put them to work . +People were there to have a good time . +This has been around for a long time . +Not so , he says now . +What do they see in each other ? +This year she said , It 's high time I made it . +That 's not political . +I have my way with this music . +New York City may say the same -- and it may say so even more now than then . +They do nt want me . +Now they may have to . +He was the same man in both . + Come on down , he says . +Was that all there was ? +She will not say much more . + I would like to know . + And that 's what that was about . +This is his life . + Part of me , she said , does nt want to know . +That was -- me ? +What 's going to go on here ? +Want to see his office ? + You are not . + But they do nt say much more than that . +What should you do about this ? + And we are going to get him , and them . + How , How , How ? +So long as he did nt use them . +What can be going on ? +I do nt think there 's any one right way . +What was your family 's business ? + It 's not because of the money that people know us over here . +I was one of many . + No , not at all . +Who would nt want him on their team ? +That should be the end of it . + It does nt come around that much , he said . +But the President will not . +I can not go out . + We are the only one . +Will He Make It ? + I like what he said very much . + This is in and out . + We did that with this house . + There 's no one like him . +Well , this is what it 's all about . + They still do that . + Which one is it ? +It 's them , but it 's also the game . +Well what can I say . + I get to go home at night , she said . + I do nt want that . +So I did nt say much . + You have no down time . + Would that work for you ? +You know it 's going to be big . + He says , This is going to take time . +How will they get out ? +That 's what did it . +Both of them were also from New York City . +So you want this one ? + And they did nt go with that . +This way I can just put it out there . +Many see it as now or never . +That was the end of me . + He had more than we had . + We can do this , he said . +That 's what we are all here for . +And they are not very good at it . + It 's just for us to say who did nt . +But the company is good . +I could not see my way . +But we are what we are . + This is a university , she said . +How about this one ? +He 's very big . +He 's the president . +Well , who does ? +If only he were right . + And when I say me , I do nt see one man . + They were not many , but they were the best . + Less and less every year for many years . +Well , they could nt do it . +But I did nt know what I could do about it . +I had to take it . +Who 's being had here ? +I see them all the time . +Get out of that . + It 's been going up over the last three years , he said . +And he was not the only one . +They could come out at us . +But we do nt . + It 's the same people over and over , he says . +I should nt say that . + When they do nt , they do nt . +When may that be ? + This is what you play for . +I had my days . +Put them to work for you . +It is that today . + It used to be good . +I do nt know when he was here last . +Now we have many . + I left it at home . + I would nt do it , he said . + It did nt work out that way . +That would do it . + Which he does . + Next week , she said . +You are the way you are . +But what can I say ? +This just made us want the house even more . +But we have work to do now . + I do nt know when I will go back , he said . + It 's the same in business . + How do people do it ? +This Government is not going to do that . + Who says they would ? +But I did nt know how I would do . +His way of life . + But the war in not over , he said . +So much to do . + It 's not the be all and end all . +What 's a president to do ? + But if we did nt , that 's all right . +Not next season , this season . +Big market , but no money . + I get it from him . + We were team of the year . +But that 's the way it is . + And that is what we will do . + Not in a million years . +But not for too long . + There 's so many that do nt know . +He did not go into his house . + And it is that . +But how public will they be ? +It 's not just work and that 's it . + I did nt have time . +But they were not the last . +And he did it . +I want him there for his family . +Now that 's over . + I do nt see how you could do it any other way . + You have a good day and it 's the best high . + It 's so New York . +And not only him . + Now it 's all over the place . +People are out for him . +Do you have a team here ? + They said to us : How did we get it if we did nt have it before ? +I called him back . +What were they for ? + Just not do my work ? + We did all right . +It was all over the state . + We have to get back to that . + It is our right . +But you just do nt know . +I think he can do both . +This season , we do nt have that . + She was that way with my children too . +Now it is time to go to work . + But have a good time . + They are like us , he said . + We can take some more . + Would I do that ? +There has to be more that we can do . + But there is much we do not know , he said . + Now that is over , he said . +The time is just before World War I . +I think we did the best we could . + What can you do with a city this big ? +But it could be . +How will they get by ? +It is time to end it . +It 's not a good day . +Is it because he does not want to or because he can not ? +I want to be a part of this . + We can only think about the World . +There , you are on your own . +That is just today . +What is that to me ? +And should nt have . + I do nt see that there 's much left , he said . +Now , he is on the other end . +But now they do nt have time . +The first is just to say no . +We are left out , but I still think that 's good . + Companies do nt have to be in New York City . +So what 's a President to do ? +There is much more to come . +I just want to have a good time . +I do nt know too many people who did like him . +It 's what we do here these days . +But they are there , he said . + Now , there are nt as many people out , he said . + I had a team . +I think it will come back . +For me it was not the first time . +But it should be more than that . +But I could nt play right now . + So it will come back . +This is our home now . +I said what I had to say and I did what I had to do . +He is nt in the game . +But they never did . +I made it all up . +What do we do now ? +It was like a high school game . +As for me , I say no more war . + This is not last year 's team , he said . +In the White House , no less . +That 's the only way to make it . +And may never come . +I think over the next three to five years . +I can do it now . + They just say they have to get out of here , she said . + It 's a big world out there . +She is back now . +It does nt end there . + Will women use it ? + And you never know if you are right . +What could it have been like ? +But you just do nt know that . + That 's the way the game is , he said . +How 's your family life ? +We were like her family . + You are in the game all the time . +Public -- then we have a long way to go . + And it is . + But I do nt want it to be . +That would be me . + It was so big . +That 's how I play . + Here it 's the same . +He just made a good play . + But we were nt . +And they just said no . +That 's the way I make them good . +And this was the place . +I did nt see the president . +He was right on the money . +If there is a next year . + Right , she said . +At first he says no . +This is my way . + Could you come back another night ? +Not too big , though . +If I were him , I know I would . +And she said what ? +I like what I do very much . +That 's how it was . +He said it would . +We do nt know each other very well . +So who is it ? +I want to see him do well . + But some of us are nt . + It 's all good around here , he said . +And there it was . + But now I have to think about it . +If I do nt do it , who will ? +But what did they do ? +But how to get the money ? +But I would never be . +And that 's just how it is . +I used some of my family . +Now we do nt know how to get him out . + This is about my center , not about the political center , he said the other day . +People are all over you all the time . +Well , now it 's about us . +Any other time What will you do next year ? + He is out of work . +With him this year , they could go all the way . + We take them all . +That 's what life is about . +And they did not get up . + And he said , I might think about that . + And I do nt think about what I had put in me . + And then what do you do ? +How does that go over ? +It 's there to be had . + It was she who left . +No one could do this . + Well , he is not . +They put me on the team . + We will , too , but it had to end . + This is where you want to be . +But he would come back . +I do nt know what they were . +That 's just him . +But how long will it last ? + I have to get used to it . + At home I had a good game . + It was my children 's . +And they think , How can he ? +For now , this is the only place . +But do you know what he did ? + But that 's the way I think it should be , she said . +Now what 's right about that ? +In the American house , it is . +He has the right to say what he said . +Companies will not like that . +It may be only one of many . + That 's my family . +Until the next time . + It 's up to you to see it . + The next time , he said . + Women want to be part of what 's going on around them . +His office is in New York . + I said : If you want to know , no , we do nt . + I like to say . +What 's that you say ? + And he does nt like it . + There 's just so much that government can do , he said . + I have come here to see you . +He is my life . + They are not there though . + It was the last one . + Think of it . +Some say he should have . + I made three of these that night . +And I think that that 's what it 's going to take . +We have to see what we can do . +There 's not much more you can say . + He never had time to think . +But there was no money for that . +You are not going to take that . +That , I think , is what he did . + He did what he should do , she said . +They all know what I want . +That 's what you can do here . +Its just the way the business is . +He 's not what you might think . +We all want some of it . + So what to you want to do ? +We had five , they had two . +Not at all , said John . +He made me a last . +I think we have a good team here . +She did not do well there . +There have been a few . +This may be it . +So did The World . + I just could nt work for him . +Do you think it 's still there ? +We can have our day in court . + What will he do ? +I have had too much of that in my life . +There 's another way . + We want them to be part of it . + The companies do nt want to own up to that , he said . + I still want to play , he said . +There is little he can do . + No one would do it . +Now they are back . +It 's very Times . +And you are going to see more and more of them . +But this was not the case . + With this one , we know . + That is about all we can do . + No , no , no , she said . +We are all for it to work . +It is all because of the city . + I do nt think I would have been on it as long as I was . +What should she say ? +If there 's a time to do it , this is it . +And he was in good company . + She said , Come around the back . +That much is made up . +But they did nt do one . +They did nt have one last year . +It was the first day . +It 's going to take a long time to get out of it . +There was no way we were going to come back today . +The market has to be there . +You are with us . +That , it can never be . + It 's , you know , one day at a time . +I did nt know how we were going to get it down . + So if they do nt , what do you do ? + It 's family , he said . +It may take a little time . +That part is up to you . + If there were nt , this would nt be a case . +In any case , it was good . +There could be be a market . +You go to school . + But what did the other two do with it ? + I do nt have to know much more . +People have to get used to it . + We could still take that city in five days . +That is , if she 's still with us . + He says , It 's you . + We work for each other , and we play for each other , when we have to . + We just did nt play very well . +She did not want to go . + They did and I did . +But that will be it . + He said that but I do nt think it 's so . +It can even be . +It has been like that for a week . +That might take a week , he said . +In a way , it 's still what he does , he said . + I just want to do my part . +That is what it 's like here . +That 's all you have . + And it is . +It 's one of them . + But I have a life , you know ? + That 's what did it . + There 's a right way to do it . +Or does nt she ? + How would we do that ? + But how do you do that ? +Well , they do nt . +She 's not for show . + We did nt play well . + I do nt know what you can do . + But that just would nt be right . + They will be in it . + That was our way of life . + They say I should be set by next week . + We had nt been there in years . +We had to be here . +A : No , I was nt . + Where would you like to go today ? + You are not that old . + Do nt you want him to come back then ? +This is all four . + I do nt see one , he said . + I do nt think about it every day , she said . +So what do these people do ? + I said , You want it ? + But if it does nt come in the next few days , it is what it is . + How was your yesterday ? + Now , Where Were We ? +And she 's not here . + Well , you had to be there . + It was like that . + Last year , it was , Who are we going to play next ? + And so he is . +I have to work with him and he has to work with me . + I did nt know what to think of it . +But I think it 's been best for our team . +Well , we are . + We never know what he 's going to say next . +Some people come for the game . +There 's not that many of us . +He never called me back . + We are under way , he said . +We know , we know . +The Government says no . + I like his game . +They like it and it 's good for our business . +Some of them had . +What has it been like there ? + Do nt just take any one , he said . +What is she going to do next ? +She has a work group . + But I do nt see my children going into it . +It 's up to the other team . +It is much the same with us . +What can he do ? +I had it for several years . + Which one was that ? +Well , not most of the time . +We do nt go without . +She 's on her own . +They want a united city , he said . + But what is new about it ? + It 's good music . +And if I could , I would . +Now , no more . + You see , like this . + Now it 's an American home . + They were going at each other . + I know this is not big business , he said . +It has to be both . +She did nt do it for me . + I called every day off and on until today . + No , she said yesterday . +When you are here they go in the back . + How could you do this ? +We will have to do it now . + He has nt been here in a while . +It is only what they say that can be used against them . +Is it the same as the one you have ? +But he does not . +Now I see them all the time . + That 's the only way out of it . +Now all the world is with us , because we are in the right . +It 's not going right for me . +They never found it . +Now , what are we going to do about those children ? + I want an end to it , he said . +What 's new today ? + I want it all . +You do nt want to be down . +What about this year 's team ? +Here are some of the companies . + As he left , he said , It 's not right . + And they have . + You are still in there ? + He might not want me to . +It 's , What 's next ? + She did it all . +What if he had never come ? +Get out of the house . +They are going to do it to me . + It 's what I do , he said . + It 's not just a high five , how are you . +There is much to do . + I still think so . +He 's going for it . +I want them both to do it . + Where do we go ? +Five , get it ? +It 's going to take some time to get over this . +But will he go for it ? + It 's come a long way . +I have a few of them left . +He 's not that big . +No way , no how . +You might , but it is not so . + And this is one of those times . +The money is big . + We found out that it does . +From Then and Now . + And that 's all right . +That 's for him . + That 's up to them , he said . +We were out there all day . +He left them here . + We have all been so out of it for so long . +This has to be the best time of his life . + That was years ago . + She was an American . +But it could have been much more . +You never know when your day 's going to come . +It is good that he does . +Not so well at all . + He 's where the big man 's game will be in four , five years . + How can we go back ? + If they are like me , he said , they do . +Back then business was off . +I know people like this . + Where do we go next ? +I do nt want to go up there . + It just did nt like it . +I had a good game today . + There 's a few of us , he said . +It does nt have to be that way , you know . + So how did she do ? +We know what it can do . +We do nt know them . +What was I going to do now ? +We see the world as we are . + It might not be , he said . +It just does nt take time . +But they never made it out . +By the end of the year , he had an A . +They do their business . +We were just children . + I come in here two or three times a day just to see what 's new , she said . +And the end of another . + But he said , I have to do what I have to do . + I do like it . +That 's not our team . +My new man here says do nt use them . +And then back there . +It has so much more life . +Who are you people ? + This was the best three years of my life , he said . +What is it all about ? +And you know how they do it ? +This is the way you do it . + I see more people now in one week than I used to see all year , he said . + They never said no . + I know what they want from me . + This is his show . + People are going to see it . +Or there may not . +Just because they can . +And what are they going to do when they get there ? + Where do we come from ? +It still was not over , though . + But here we are , she said . +He 's the only one I have . +And what about his children ? +That 's all day . +Then : Come on . +They go into The New York Times . +Another , he said , is it 's a good show . + How much is that one ? +Most of us are not . +But he did not want her to see him do it . + AS YOU LIKE IT . + I was an American . +We were in it to say , here 's what we can do . +That 's not like him . +All this is to the good . +The house is me . +They want to own their home . +And it was long . + That was not her . + For me , this is not about business . + I do nt think I can do without it . +That 's my high . +That will be all . +People in general can not get out of the market . +We left him as long as we could . + We are part of this city . +But before , I did nt think this way . + That 's what I think could be the case . +And more are to come . + You have to have them . + They just go right in . +Here it 's a house , a house , a house . + We only have two . +That 's our right , too . +And time is money . +But like this , how can I do it ? + It was too much , do nt you think ? + For a night 's work ? +It was his day . +This has been good . + He said , How did you get that ? + It 's not there now . +And it still has to . + I know it is not good . +They do not want war . +She had little time left . + Take me out of the game . +But more of that another time . +People did nt know me . + They think that this is not about them , she said . +Her work is of her time . + This is home , he said . +Now , they all do . + He would say he did nt like it . + Do nt you know ? +We are out of it right now . +I know what it is to want to get home . +He said as much . + If people were not going to work , what were they going to do ? + It made me want to get back there . +They do it for the money . +It 's the same people year after year . +I think all of the people around her say there 's no way she 's going to get out . + Where is this going ? + How can I be this old ? +We did nt want to do that . +I would like to do it . + That 's not to say its not there now or that it was nt there then . +But you know how they are going to play you . +That was just his way . + I do nt even want to get into that , he said . +And what is that ? +First , one by one . +And the state police never had that . + It 's very new for the people . +But would I still see it ? +Even though you are . + But so what ? + That 's another , he said . +And what we do , we own . +But it does not , and it will not . +This was nt big business . + Is it any good ? +Life is not like that . +Well , where should I put my money ? +It will have to . + That 's what I like . +She did and they did nt . +And now he is part of it . +I want to know who did what , when and where . +The United States has not . +Do we know which is which ? + I did the best I could , he said . +I like that , too . +As they say , business is business . + There was nt much we could do . + But I know what is right . +I do not see it that way . +Could I come up ? +This is going to be around . +I think about music all the time . +To me , I do nt want it to be like that . +I said , Get over here . + I did my time . +I go through that . + But being over here so long , you know it was nt against you . + It was over more or less . +But how will it play out ? +They can be in any school . +I now have three children . +Now what are you going to do ? + People have to say , I have to see that show . + Well , should we or should nt we ? +Not that New York is all about that . + It just was nt my day . +I think in three years we could have a very good team . + I want him here . + It does not work for me . +We say , But you can only have one . +It 's now , or it 's over . +She was their center . +Some of them would not show up for work at all . +We are not they and they are not we . +Not one has made it out . +The show is The Family , and it 's back . +What did I do with it ? + We will be there . +I have to do what 's right for the show . + I make more money than I should make , he said . +They will be there if you want them . + That 's how . +Will you be all right ? +The President of the United States . +And that they are as well . + No , we do not . + They do nt . + It 's not what ? +Which End Is Up ? +How long is the American people -- will the American people put up with that ? +I do nt want to do business . + I said how ? +ALL RIGHT , CHILDREN . +Now , you can not do business with them . +He said they could be a family . +He has only two . +Might have been , might have been . + It 's still up to me . +I just do nt know how I would do that . +That 's just a part of what we do . +I said , Come with me . +Who are the people who go there ? + It does nt take that much money . +You are part of it . + How does he know that ? +I was that man . + We know that it 's a long season . +I come to do work . + They did nt know it was going on . +Or most of it . + That used to be our life , she said . +Do nt come back here . + He then put on the President of the United States . +Then I see her . + Because without her we would nt have it . +I own a home . + Who do you think you are ? +We are all one people . +How can I set this up ? + We did nt want it to come down when it did . +I just could nt see it all . +It 's been all about the team . +It 's a part of the family . +But now they are a little less so . + Is this them ? + And he made it . + Back on the left , she says . + I have a long way to go , he said . +There is nt much to them until you get to know them . + And what might that be ? +How does she know ? + I think not . + I do nt know where he 's at . +And we still have them . + That 's too long . +You have to get to know each other . + They never see one . +What do you say to this ? + And he said , What ? + This is my week off . + It 's going well , she says . + Then what do you want ? + Now it 's out . + What do I think of it now ? + And we are going to put it through . +He may be some day . +He was out of time . + My life is good . +But it has them . + See what I did ? + You were there ? +That 's what it has come down to . +What 's he called ? +Still , this is not the end of the show . +And that is all to the good . +But it is nt us . + You are left with , what was it ? +It was a year ago , a long time . + It 's part of me . +But I know this is a business . + What do you think -- down , he said . +So what is the world to do ? +I do nt have a home . + What does this say ? + It has no life . +You did nt like them ? +But not to you ? +HOW TO DO IT ? +In a way , it may be . + There 's no man in my life right now , she said . + We see them and we do nt know much about them , he said . + I go because it 's a show , she said . + That night , she called me . + They said , Well , you have nt been there in a few years . +There 's no market for them . +But , can they do it ? +I do nt know what that says about me . +The business will go on , he said . + She said : I did it . + But we just did nt do it . + As it should . +But it would nt be a home then . + It 's a public school . +And how many might that be ? + The children were there . +What could be more New York ? +Where we are is not where we want to be . +But how do I know that you are ? + I just do nt want to do that . +That may take some time . + We are a team , I said . +After all , we were a family ; we had a place to go , we had each other . + You do not get any more . + We do nt think that . +I just did nt do it . +How do you get them ? +Does he still have one ? +Was that the case ? + This is nt two years ago or five years ago . +He 's right about that . +We have to play well . + You also know this place ? + It 's a day in the country . + How many times in life can you do that ? + We do nt do that . +Now , she says : I want them to think about life . + What good is that going to do to my team ? +She : Well , I want the white . +That is where it is right now . +May the next take much less time . + I want to see him play , he said . + Then what are you going to do ? +It 's going to be us against the world up there . +But there has to be more . + If you are in the right place you get them . +I own my own home now . +We have the team we want . +And what they want is music . +The game said it all . + What is this one called ? +It 's all right , she said . +He was in second place at the time . + And that 's what we all want . + Just like that , he said . + I did not , she said . + Here , you do nt have to do that . +But I do nt know how to use it . + If he can do it , I can do it , she said . + How was he going to get it ? + I do nt want to see him go through it or me go through it . +Here , this is home . + There had to be . +We just did nt know it . +How do we know ? + I want to see what they come up with , he said . + Is it good for the children ? + But they do nt do very much . +People like to come over . +So , I think we can do it . + I do nt think this is the one we want . + If you are not down with this , you are not down , he said . +Not that the family was well off . +I said : Go back . +We have to get that back . + Not today , he said . +Did she have children ? + The way I get it I think should be up to me . +But we know all that . +Not this Times , though . +And it 's time to get out of the city . + You do nt know what he 's been through . +You can go home . +AND now , this . + She can just play . +Do we , though ? + It is up to the law . + But you can have that . +And the next , you do nt know the man . + It should nt be this way . +He said , That 's part of it . +Which program should we use ? +And he 's been a big part of that . + How about now ? + But for how long ? +I want to get back there , man . + I could nt do it . + But it just did not work out . + But I also had to be with my company from time to time . +On this day , it was : How did he do ? + They have not put people in the right place , she said . + It is not a life , he said . + When will it end ? + You are in the money . + Now we are in New York . + What if they do nt ? +They are part of my family . +But it is not . +Well , I think it was . +We did nt come and do it . + But we are a good team . +How would it be made up ? +This is big business now . +Now , what about these ? +So , what will it be ? +We should , too . +The public is like any group of people . + Most of them could not think of a one . +But , when it was over , what could I do about it ? +You do what you think is right and if it does nt work , and then people do nt want you in office , you go on in life . +And if they had nt ? +I just did my best . +We did nt do as well you would have , but we did the best we could . +It 's the big family . + It 's not like it used to be . + Now it 's the place to be . +I would have children still in school . +And so was he . + The people there do nt know what 's going on . +His time will come . + I have nt been back , he said . + That 's up to them . + Do you have children ? + Its time will come . +If not us , who ? +That we will go after them . +It 's for people who have children . +And that was her day off . + I do nt know how they used them . + People do nt say , Who 's he ? +But I will think about it more than I used to . +I just do nt want it to come to that . + You can do this . + How old do you think he is ? + There has nt been one . + Well , he says . +That I do nt know . + The show has to be our best work . +What is school like ? +But there was little of that today . +I was right on it . + But it 's about the same , he said . + I think there are very few people in the world who do nt know that . +Do not think about them . + He made it up to her . + Are you up to it ? +I have to say this . +So who will it be ? + What 's not been good ? + In this case , they were not good for us . +But this is how . +This game is over . +It was the right play at just the right time . + We all know what we have to do . + It is nt right , he said . +What is new for him ? +It was a new play for them . + This is all about you , another called out . +That 's not that much time . +How was it that he was here ? + It is not over . +I should nt have to make a new one . +Think he can do it ? + There you are . +Or they are high . +It 's when they can . +I do nt want this . +It might have been after . +We are all good people here . + John , he said . +That 's not a world we want . +And in the end she does . +You put them in . + This is not the end , he said . +And one that was nt . +What , then , is another way ? + At their best . + There 's a war out there they might have to go to . + I do nt go out as much as I used to now , he said . +So , what to do ? + You want one ? +Business is very good . + So they say . +I made him who he is . + That 's just how I do it . + He 's the only one who can do it now , he said . +The other five are . +They do nt even want our business . +But What Is It ? +He was like a little man . +And we all called one another . + There 's too many people . +I say to you now . +He said he did what he had to . + What does the law do ? + Where would we get the money ? +That 's just how I play . + What is there to say ? + What was World War I ? +So I do nt think that 's what 's going on . +He said : What ? +Like that , see ? +Much of this is nt new . + And I said , What about his family ? +No , no , no and no . +What time is this place ? + Where was it going ? + I did nt know what to say , the other says . +We should do no less . +It was nt , Do you do this now or not do this now ? + But he would nt go . +I just do what I can . + Yesterday they called them on me . + We just have to show the people we are . + We should have had this long ago . + They said good man . + She did nt get to use it . +We were not united . +He was the only one there . + They are not going to get it . +But that would be a first . + But they have nt come . +Now , we are not . +So is the United States . +That should come from him . +And here 's what it has . +Do with me what you will . +It 's good for the day . + Will she be there ? +And , this time , we have it right here in New York . + What 's the right place to put this ? +That 's part of the game we are in today . + People do nt know what they want , she said . +You have to have it . +I did nt go to them . +This time , he did nt . + We are from there . + Not for long , he said . + I said what about the other one ? +I just do nt know what it is going to be . +What 's There to Say ? + I do nt think we did that last night . + They do nt even have to get up , he said . + And now this . +But we were there first . + But it was nt like that . +And the children are children just like us . + But that 's not for me . + I would nt go back , she said . + We never had that last year . +I do nt think I have . + You like this music ? +Some were in place for only one day . + That 's how people know me . +So where does that get him ? +It 's some of both . + But that 's what this program is about . +We are , after all , at war . +But there 's only so much time in your life . +One right after another ? + That 's the way to get going , he said . +For a new game . +I want him every week now . +It 's his show . + So now If . + And I do , too . +What , we do nt know . + How can he do that ? +How big is that ? + If you have them ? + We could nt use them . + It will not take that . +So I said , Which show ? +We are not in there . +The first day of school . + Who was the last to do it ? +There is nt one , New York . + We are going to do as well as the people we have . +And most of them are nt as good . + You want to do the best you can , he said . + We work with what we have . + Now we are even , he said . +You know , I do . +One , two , three , four , five and many . +It 's just like every other day . +They never had to do that before . + What can I do before I go ? + But I think they are going to take it . + That 's how we are . +You own the world . + I can play . +But that is not all . + I just could nt . +It was not a good time . +I do nt think so . +Those are your good years . + I think he can do that for us . +What 's all that about ? + Here they are now . +And it may take less than that . +Yesterday they said they had not . + We see it all the time . +But that 's not the way it 's going to be . + How could I take them back ? +What Does This Man Want ? + But being so high up , you could nt see people . +But he had no business being in there . +And most of the time , he has been right . +One million a year ? + They want to have a good time . +He had no man in his life . + You do nt have to go , I said . +Did you see what I can do ? + It 's not for the money . + You do nt want to go home now . +But I said what I said . + But when you have this many in the family , what 's one more ? + We are going to come into our own , he said . + Now I just do it on my own . +This is what we have to do . +You know , like before a show . + I do nt like that at all . +But I do nt think that 's the best way to go . +And no one left . + You think about your own life . + I still do , she said . + He was nt the same . + If some good can come of this , that 's it . +But I know what 's going on . + That 's a new one on me , he said . +The people of this state own me . +No , over there . + We can take our time on the way back . + That 's still the best way , he said . + I did nt think they set it up right . + I still do nt want to think about it , she said . +They know what they want . +To many people , that is the way it should be . + What do I do this for ? +Many , many more . +Many have left the country . + And that 's just what I did . + When do you see that ? + There 's never been a show like this for me , she said . +He said he did know the law , did nt do it and never would . +The people will come . + It 's a good team . +When 's the next one ? +He had a life . +That 's not going to last long . +He says it all the time . + In my own country , never . +People come and go , and that is all right with him . +No other team had as many . + Well , think about it this way , he said . +So think about it . +I think that would be too much money . + As I say , I do nt even think of it . +There 's no going back . +If he had his way , he would have been back last week . + People get through it , she said . +This one is one of the best around . + I did nt want to , he said . +The show was too big and too long . + There 's just no work , he said . +I still do nt . +How high is high ? +On this day , though , she is on her own . + Can I come in ? + There 's more to come . +They make a very good case for that . +That was after the game . +She should not have . +People do nt know what to think . +But this , after all , is New York . +This is another good day . +It is very long . + I was like , What ? +He says he 's through with her . +That may not be the case this time . +He did and then some . +If they did , they might not go in . + Not at all , she said . +This is the right time . +But as they say , that 's show business . + We are a business and we are in it to make money , he said . + It was time to do it , he says . + I can see it now . +But it is over now . +It just did not last very long . +Life will never be the same . +I think that was part of it . + What did I want out of life ? +How long might that be ? + But I could nt see her . +What will they do with all that money ? +That 's not all , though . +Not who , what . +How could he be ? +Would he make it ? + We do nt know what we can and can not do . +It 's my team . +How would it work with a new program ? +That was because they were never in the game . + But I did nt like her . +I might come back . +And we like each other on our team . + We know what we are up against , he said . + He can do that every game . +Today is the last day . + We did nt say , How do we do this ? +The man says that he does nt . +They get into it . +But that , too , has been put off . +They would want more . + I have nt had much time to work on it , he said . +It 's all we do . +It was not just another company , another show . +I have not said it . + We know each other well . +THAT was three years ago . + Just for a year , she said . +But it 's how you do it . +How long can this last ? +One day , but no more . +It is a home . + We have to make the best of it , he said . +The war should have been over a long time ago . +She is too big . +But who did what ? +So just go out and be the best you can be . +One more time , get it right . +It 's all very political . + We just do nt get it . +He had to be . + The world did nt come to an end , did it ? + It was nt there all week . +I know that world . +In that case , he can come home . +But this was not all . + Too big to be out here . +Well , so do they . +He just does what he does . +What it is is a little part of you . +And then I left . +Who would want to see that ? +We do nt have much to do with them . +There is no life in me . +Now , it is . +We are here for you every day . + It 's not that I do nt like it , he said . +It was on time . + It was all there , he said . + I know what I have here . + A war is not a game . +I think it just might be time . +How come they know about them and we do nt ? + We just have to go out there and play . +And this is nt just this year or last year or the last few years , and it 's not a few women . + I do nt even want to go out at night . + We are going to war , he said . + As long as you know that . +All in all , I did well . +I do my work . +And we are still here . + Here , here , here . +Can we go on now ? +You will be found . +By the end of the season , it was more me . +He does not get it . +And he 's in New York . + I do nt have the money for it . + It 's not as good as it used to be , he said . +HOW DID IT DO ? + He did so much for the city and the team , but people did nt want to see that , she said . +But where did that money come from ? +He should know this . +He just did not have time right now . +It had to do with life in the city . + I do nt get out as much these days , he said . +The day after , he had two more . + New York is not an American city . + So long as it is out of this world . + Five children at one time , he said . +They are as good as they are going to be . +We all go out . + You know what he said ? +I said I do nt know . +He does this four days a week . +I do nt know what he found . +Some of us have it , some of us do nt . + What to Do With Them ? + It 's even more so now . +I do nt see how there should be . +I said , Where are you going ? + That game could be a big part of it , now . + No one can own up to it . + Well , no , I was nt . + He was all business . +How could that only be a few years ago ? +People were the same . + It 's all right , he said . +There have nt been any since . +So now what does it say to you ? +For now , though , there is little the company can do . +Today is Day One of the new season . +To know them you have to be part of them . + It 's all over the place . +It was up yesterday . + I want the money , he said . +And he said : You never have time . + But this is not her case . + It is a big market . +That , we do . +The war was over . +This was more like it . +Then it was off . +But then , who was ? + I want to play , he said . +So do the American people . +But he did not do much yesterday . +And in a way , they did . +She had to get back to the office . +But it 's a good life . +Then she would have to work . +Your life is my life . +It 's a new world . + And they said , We do nt have any . +If there is a next time . + One of those days . +Now we have no money left . +What time do we have to be back ? +This year , it 's even . +It 's all in the game . +One , do nt do it . +But that 's not what this is . + I go to work , and I take it day by day . +So I do nt know how you do that . + How do these work ? + It has to come from them , he said . + You see them all the time . +I can take this . + And now that time is over . +It was found , I do nt even know where it was found . + You did nt want to play against him . + We have never found one . +We had to get going . +And what good is that ? +What was the game ? +I could have been one of those women . +But where do you get game in this city ? +Right now there 's no other way to do this . +Is it in him ? +If you can get it , you can have it . +They do nt want any part of it . +They will not get it . + You think I like what 's going on with the police ? +What do you have against it ? +Not now they would nt . +The President did so . + We want to do what 's right for it , he said . +In the last two years , said John A . +Two years ago there were two . +His year has been like that . + Or the left . +How long have you been here ? +If they were , did they want to know ? +Next , I have to play for them . +They are never out of school . + And they do nt even know it . +We do not like you . +And New York is that team for us . +So in a way we were even . +He is going out on his own . +Not you , though . +One day I could be in one of those . + Even those are the same , he said . +How Big Is Too Big ? +We would not have had it any other way . +He 's good for business . +And we do nt want them to have the right , because we were here first . +Does he even have one ? + It 's not where we want to be . +The work is long as well as big . +He 's in his own world . + You do nt like it . +That 's all that was left . + And we all know what they are like . +Is it any good , and if so , what 's it good for ? +He 's had it all year . + That 's what I have to do , he said . + Well , I said . + I do nt know how , but they do . +First of all , there is his money . + I did my part . +It 's not going to take just another five years . +But then some people never get it . +It did nt work out there . +That is , right now . + That is when it was good . +Some people did nt get out . + We have to do it as a team . +I could nt work out at all . + So be good to it . +This is what I want to do now . +Five years more and we will have her where we want her . +It was play money . + And you say : For this ? + I like being big . +She could nt take it . + It has been a big part of my life . +Would people have come ? + Is it just for me ? +And it is not the only one . + That was a long time ago . + I see what they can do . + I know these people . + And he said : You do nt have to . +So what will it be ? +I do nt want to get into that one . +But they did not do it . +But this was one game . +So they did nt . + It is the same here . + If I could work , I would . + And I think that 's the way I like to go out and play . +They were all over the place . +They said , He 's old . +We found a way . + Who would want him ? +Last night , they said it did . + But in a way he was right . + And there 's more , much more . + He was a little off . + What can they do ? +He was in my office today . + This program is there . + We have to play , just play . + It 's not old , and it will never be old . +Now it has come to this . +These are the people I work with every day . +That could be one of them . + We have to come out and play the way we can play or we go home . +How much does each get now ? +I have been and I will be . +Come and get it . +You have to make the play now . +I like that in a man . + Do you want to make this ? + No , no , never . +Right now it 's just that I do what I want to do . +But there was one this season . +That 's good to know . +We are not like that . +But we have to make them . + So I do nt . +There is going to be more work to do . + I do nt play against them . +On good days he does two out of the three . + But that 's what children are . + Can we go ? +We had the time . +But you do nt want to know how . +Do you think we should take it ? +And when you see me , you would never never think I have this . + We are going to make another go of it . + That is government work for you . +That 's what he says now . +He said , What do you want to do ? +Not only the game . +We have to do the best we can . + I could nt do it , he says . +If you want to do it , you can do it . +But it is a part of him . +You do nt see that any more . +I do nt have one . +War is like this . +Still , that 's not what 's being said . +It 's a place to go ; it 's the place to be . + They are now going for a million five , he said . +One of those days . + Are we a good team ? +They do what they want , when they want , how they want . +Where does she work ? +They think , How in the world do those people do that ? +You want to do it and you do nt . + I think this was his first time . +But they are going to get it . + It does nt . + It was nt like this , he said . +They are on a high . + What 's in It ? +We do nt know how long this has been going on . + Where are you off to ? + They want as much money as they can get . +We will do what we can in our own house . +I have to get them out of this . + You know what the best part is ? +I just like the music . + But I work out . +Did I make this up ? + Do nt you people get it ? +It 's not against law . + We have to be one , and we have to be three . +SO there you have it . + It 's not over until it 's over , he said today . +And we are right . +That is just not like him . + Here 's New York City , he said . +That 's by day . +He said it could nt . +Was President of family business for many years . + The first time , I did nt like it , she said . +What will they say ? +What time are you going to be home ? +It 's out with the people . +But only up to the end of the first day . +He should think that . +It 's them , not you . +That 's all we know . +They are not made up . + He did it his way . + That 's what it should be . +Can I come , too ? +Do nt back down . + I want to get the people who did this . +I do nt want to have a long time to think about it . +It 's a new government now . + We just have to come out and show it . +If not for me , there would be no show at all . + It 's not just what we did . +He said , You never know . + That 's the family way . +And we are with you . + There is no way around it . +It has been for a long time . +The work is what it is . +There are people like us . +And that 's what we were . +All this is in the music . +They do nt like . + No , I do nt , he said . +The President of the United States ? + It should nt be , but it is . + We do nt have the money to play that game . +What had he been ? + But how could I not ? + You know what , I said . +Who would nt want to be a part of this team ? +I do nt think it will take off . + He will be there for us . + I did nt play very well , he said . +Or they do nt know each other . +But this year , there is no time . +WHEN IS THE BEST TIME TO GO ? + But I want to be there the first day . + It 's a good place for us to be , I think . +Do your own work . +Now , few are . + He was there all the time , she said . + So I say , then do it for me , she said . +See what I do is . +How has it been going ? + The man was game . + It is nt about me . +But can they do it ? +SO what did you do in the war ? + I said : What ? +There 's only one way . +Was nt that all right ? +Well , what can I do ? + I say , I did nt . + But it 's all good . +What do you want , want right now ? +How many were they ? +You might , and that might be too much . + Most of the time , you do nt think much about it , she said . +When it 's good , it 's very good . +That is what should be there . + We want the money . +How would they know ? + They did not , he said . +Would we do that ? +We can go any way . +That was good work . +And she was going to take him on . + This is not a good life for the children , she said . + People just go , that 's all . + I had nt had one . +And some say it may be the last . + See you next year . +How good is good ? +They are part of the family . +So he has nt . +Where is this going ? +That was nt so long ago . +But we did nt use it . + Do you have any money ? + The game was over . + I do now . +That is not my world . +But then you know all this . + But there 's still only one . +Two and two are four . + We know what to do , he said . + I did nt do that today . +Here 's what I would put in its place . + I did nt want him to back off . +You can do this , you can do that . +It 's a good program . + And he called me . +It may be money . +There were only three of us . +But you could do it . +Not here today , but for all the times to come . +There is no Big One . + What 's in It for Me ? +We were all against it . + So that 's it ? +If we do nt do it , it 's not there . +They also have two children . +That 's the way women are . + I can not think what to say . + He said , We do nt have that . +And people like to know me . +He did nt back down . +There were a few of those this time , too . + It 's , like , who 's left ? +And he has the right to do that . +So I could not know about it . + Not this season , he said . + He can do that . + I used to never take it off , she said . +He did very , very well . + And now us , he said . +I could work up to them . +With Will This Do ? +It was all of that , but more . +I do nt get down with that . +Could this be the one ? +It 's the way . + It 's one game , he said . + That is what this city is . +I made my life here . +If it is not ? +We still think people will come to see it . +It is my business , but it is also my life . + But he 's very , very good . + It 's a long season and a long way to go . +It does and it is . +But there are days when we are all off . + This is not just a way to make money , he said . +But you just do nt know in this business . + That I do not like , she said . + Do they like each other ? + Very , very good . +After all , this is for them . +How do I get there ? + We go way back . +But he 's going to have down times too . +And we do it as a team . +After all , what could you do ? + We were nt there long . +You want to come back . + You may not think so , but you are . +Where do you get them ? +Now we can get on with the season . + I still do nt . +From Such Was the Season . + We do nt want him on this team . + We never left , he said today . +That 's all I have to say . +Are we all here ? + Where Do I Go ? +This was a night about a man 's life . +He would not make a good President . + That should never have been . + I do nt know if this was our business . +Just do what they do . + It 's a national one . +Here 's a school . +Will we want to know ? + It 's not going to do any good . +I think that 's good for him to know that . + What are you going to do then ? + She said , No , they want you back . + I do nt like to think about it , she said . + I still do nt have one . +But the place has a long way to go . + What is your work ? + This is about where we want our country to go , she said . +They want to get in and out . + They know what to say . +We had a good time , did nt we ? + But there can be one way . +You Have to Get It Right . + I never get it . +It was so many years ago . +And there is no going back . + It had nt . +Now you see her , now you do nt . +They did nt show you any of that . +Another What Have You Found ? +Where do they go ? +It 's all on you . +Or were there more ? +Even if we are not . +But that was two years ago . +I do nt want to go in . +But the music is never on its own . + But we like the life . +He is also a director of The New York Times Company . +They know what they want , and they go after it . +And I think that 's all I should say right now so I can get back to the work of the country . +Where Did I Go Right ? + Then we can do it , too . +Who 's going to get it to you ? + But it 's all a business . +And then we can get back to business . + Because , you know what ? + I have nt had a day off all year . + They should just make it here . + Just think , he said . +There are not many like you left out there . +Big , big money . +She never had children . + You just do nt know what to think . +And they are right , you know . +This is their last night . +So now I know . +I said , Little Man . + Now that 's a first . +He should make the most of it . +But there 's more to come , more to see . + Come on , I said . + I can think about it , he said . +That 's what I like about that game . +This is what it is . + Now we have to get more . +They did not say who this should be . +And do you know who they are ? +Did he have them ? + Do you think I should do it ? + Members or Former Members ? +This is nt the right way . +But now it 's not that way . +And that 's the same all over the world . +This does not have to be . + Do nt get even . +It 's with you day and night . +It 's still my home . +Now there 's an end to it . +That he does nt like people ? + Could you make it through the day ? +It 's like the last time . +American people know what the American people see . + You are , are nt you ? +To the White House ? +After this we said we do nt do it . + I had to work . +New York is not one of them . +But you also want to make the money . +That will show them . +That 's what I have to think about . + Do nt I know it ? + I like to see her , she said . +The season 's over . + I did nt think so . + That 's not it at all . +This is on me . + I was just out there . + So I called the police . + And I say : On . +Now it is years . +Right , he says . + He was too good . + Like they say , take it one day at a time , she said . +But I think , in a way , that 's what he does . + And then there 's children . +And they had no money . + I said , My last years will be my best years . +And where will they get the money ? + He 's in the back , I said . + Too much to think about , he said . +I did it because I had to . + What do you want from me ? + Now we have to see what 's left of the company . +It 's been around too long . + I come to work , and I do nt see them . +I know every day might be the last . +We are very good people . + He was all over that play . +He does what he does . + And she said , Well ? +She had never left . + I think it 's because they are so American , she says . + No one 's here . + He 's been very good to us . + We still have you . + What did they play ? +They have time for you . +They say , That 's the state for you . + How are you going to get people to want to come here ? +Can He Make It ? +And the only way we can do it right is if we can see it through , which will take years . + A play here and a play there . +They might have left the state . +But we are where we are . +She was with me . + What do you think of that , then ? +It 's a new me . + And I said I would very much like to be . +I do nt know how to go on with my life . + This was so good we had to take it , he said . +But that 's not the way they did it here . + It is one of many . +It should not be . +Then he should get out of the way . +Where are those people ? +But I want to be the big man . + Here , want one of these ? +You do nt know what it is . + He does nt like that at all . + Do you want to go to the office ? +You know what they are going to do ; they are just good at it . +If he did nt then , he does now . +They should be here . + It 's my first time here . + You are never the same . +Could he go public ? + She could be like that . +Now , though , there are five . + We want to show people , This is what life can be about . + I might , he said . +How much of it can he use ? +She is in good company . +He said the other day that he still has nt . + We put on a show . +What in the world does one have to do with the other ? + I do nt know who would do this to him . + Same Time , Next Year . + He said , We do nt do that . + It 's not just now , she said . +But there it was , all the same . +Is it the money ? +Where does the war go now ? +It was her best day . +And this is another . +You do nt want to work here . + I want our money back . +It has to do with it , but it also has to do with life in general . +We were only in high school . + Who 's that for ? +Family Life at the White House . +This is just as well . + The market says we did nt . + They should be put out of business . +But I like them even so . + I did nt have a family . +I do nt think we can . + We use A . + No way , he said . + No , no , no way . +How many more like me are there ? +It was just like the old days . +And I did nt like that . +That part of his life is over . + You just do nt know , he said . +We did nt play well today . + For him , not with him . +But we know what time it is . + I think it 's the team . +Every last one of them . +How does that work out ? +State officials have said they do not want to put the company out of business . +Now , go play . +In that case , then , what 's next ? + We are not set up to do it . + It 's not going to last long . + We have nt . +I still have to go out there and be at my best . +There is only one way in and one way out . +The good times are back . + That 's yesterday , she says . +After all , who has the time or money to go out ? +He was nt going to do that today . +This program is good . +Time to go back to the city . + I did nt . +I only have up to go . +I make a right ? +After her , there is no one . +No one could know . + But we are still a long , long way off . +They do nt come . +He 's been here when he had to be here . +Now , he 's going for every home as well . + That 's over now , he said . +Now get to work . +One has never been found . + It was not going on last time I was there . +And then be against it . +But his is nt so good . +Now he says he may just do that . + We did nt even get to use it . +Not just there , but here . +No , but I want to do it . +But the university did . + We are old , she said . + It could be good . + No , it is not . +It is right to do so . +I had a good time out there . + You do nt know who 's out there . +We are going to work with it . +We still have one more game to play . +They think they know what they want but they do nt . + Take them out . + And in the same way , she used me . +He set one last season . + I could nt be out there . + I do nt know who said what and when . + They are down to three , he said . +Take one for the team . +I did nt think I did , but I do . +As well they should be . +They were on me . +It 's a new world for me . + But I do nt think he can make it . +This is the place . +How do they do that ? + You just use it . +Now know us as we are . + But you are who you are . +It 's time New York did just that . +There is still much to do . + We think we know them , but we do nt . +What do you get for all that ? +You used what was there . +Time for her to go . + What was I going to do ? +And you do them . +Right now , we have only one game left . + THE LAST , THE VERY LAST . + You have time to think . + That 's the way he 's been all year . +When you get out , they still use that against you . + They made me get out . + And we did nt want to go on after that . +No one does it all . +What if she did nt go at all ? + Think of the children , she said . + I did nt know my own country . + He is the play 's director . +It 's not the way to play against this team . +We just do nt know what it is , but that 's what we are all here for . +You just go play . + But how long can the game go on ? +Who could that be ? + You can get into school . + I know they are not for him . + They are still out there . + What I did yesterday is over with , he said . +Then you go in to be made up . +That 's just me . +In The New York Times , A . +We have one president . +But it was no use . +He could not say when that would be . +He says it was all business . +Are they with me ? + We still have life and I want to be part of it . + That 's not in the game . +Then they had children . +But here there was little of that . +We say , Well , what time can you get here ? + Do nt come and see me if you do nt want to . + I do nt know how they do it , he said . + But then there 's this other part , she said . +We can do it that way . + They did , and they did . +I want to know who 's right . + It 's not that we do nt know how to play . + Not much , but some . +Money can not make up for that . +How do you say no to one , but not the other ? +And that 's good , right ? +There 's good in it in that we know we can do it . + That , I can do without . + This is the right war . +It now has both of them . + And now it 's time to go . + It 's not political , he said . + Long may that go on . +But I did nt know if I had any family members . +I used the first . +But where were such people to be found ? +Just do the show and they will come to you . + That 's all we could do . + But she did well . + If it is , it 's not very much . +Then : May I . +But most of us never found each other . + They all want to be a part of it . +They all like me . +She had to play around with it . +It 's our money . +What they would do , she said . +They were up next . + And this was the year . +But that is where A . + I just want what I work for . +Good , she says . +This could take a long time . + But there is nt much we can do for the market now . + What you see , he says , is what you get . +School was never like this . +Then what do they have ? +I do nt work for him . +Today you are an old man . +Make it about the next one . + The state does nt know how to get out . +Some even have two . + There 's just no money left . +But if it does ? + Is that what you were going to say ? +We should do the same . +I have to make my own . +That is just what the city has said it will do . + What did I do today ? +He just did nt know what to do . + I do nt know what they think . + Was it this way five years ago ? +But he is nt that every night . + But for me there 's no other way . + They were all going in and out . +I just do nt think it 's the way to go . +A play by A . +I have to go out and play my game . +Do nt they all ? + But it 's just not the same . +One day , It was just over , she says . +We are here to say today , No more . +Last week , he did not . +This time , though , it was just another game . + No , you never do that , he said . +Well then , there it is , I say . +We are not going to have the Federal Government set it up . + He does nt get it , she said . + It 's not a no , he said . + We never did . +One had to go . +But he did not do that . + I think it 's part of it , he said . +She does this four times a week . +We work , we come home . +But that 's all I have to say . + Next time , will it be New York City ? +This work will take time . + I do nt want to take the time . + There 's no life . + But this will be good for the city . +Is there no other way ? +You will not be at the best you can be . + I did that for two years . +I do nt think I would have it any other way . +They do it all for us . +What would my take on this be ? +Now how did he know that ? + It was no use , he said . + Where is my place ? +I should have called more . + This was big for us . +He should have come with me . +How long a time ? +I do nt want to , but I did . +We want him to do well -- and do well in New York . + If they play me , I just play . +And he 's made us a very good team . + Get off him , all right ? +There was no such show . +But the money is good . +I like to have it back this time of year . +Do they want to ? +And I do nt want to do that . +And as you see , it did . +But this is their team . +This time it just might work . +There are too many of them , and they are too big . +We have a family . +All over the world . + I said , Do nt you want to go over it ? + How could she know ? + It 's good for any team . + I think , Man , can I do this ? + This is not a way of life . +What in the world is that ? +And you may never know . +If they are not , they should be . + Is this the end of the war ? + I said , I would . +If you did nt , you did nt . +Just get it on . +This is just what they did . +No , he just . +Get out while you can . + We have a home . +Now you do nt have to go to the States , you can have the States come to you . + It 's the American way . +Is this the best this city can do ? +He had to be on , and he was nt . +Where has the money come from ? +If she does , it will not be in New York . +I know what he 's all about . + I like it that way . +After all , I had been up all night . +But that , too , is all right . + It 's not a street . +That 's all over with now . + There was nt very much in it , he said . +Few last more than a year . +But this is a team . + He 's a good man . + Is nt this a show ? +Every one of them . +They like each other . +And we do the same for them . +It will be up to him . + He said , What up ? + We do nt say that in New York . + We think all this will work , she said . +They did nt do much of that . + All police work is work with people , he said . +But to get this right , you have to get it right every night . +It 's your children . + I do nt know if that was called for , he said . + But even so , they are just a family . +And if it does nt ? + But he 's back at work . +Much has been made of little . +He does nt know what to do . + But I know that I can . +But what to do ? + You were here for a long time . + Do nt go that way . + Would we do that ? +I did nt know when it was going to end . +But you do nt know . + It 's not the end . +What had he found ? +It has been a long year . +It 's just not a good place to go . + Who would take us over ? + I had no days off . + And that 's the end of it . + Are you going to the show ? +I just have to go out and do it . + It 's all right , the first one said . + It 's , it 's , it 's . + I never go back to that part of the world . +Now he 's not here . + Because for many , it is . +People can think what they want to think . +Like , You do nt know what I know . +Well , we are not going to do that . +But is that so this year ? +But it 's just not there . + Then , one after the other , all but one has left . + But it 's just one play and we did nt do it . +Where do you go from there ? +They are not , for the most part . + There has never been a year like this one . + What do people back home know about this ? + It 's not only about money . +But we know what we have to do . +Every time you play it can be like the first time . + You do nt see it . +But I can not say that . +He would nt come out . +Will they even get it ? + Well , that 's what they say , she said . +How does he know what I said ? + This is our way . +Will you have a good time ? +Now he can not do that . +We are the best in the business . + This you do nt see here , he said . +I said , That 's the man I want . + That may be the case here . + They are nt . +She does nt want to be in most of them . +But every team has . + And so he did . +Yesterday was one of those days . +And what would she do ? +Have a good day . + How old do you think they are ? +But that 's just the way she is . +Well , do your best . +Still , she said , We have to go on . + You have to think about it , he said , but you have to go on with your life . +Their case is still in court here . + I will not do it any more . +But it will take a long time for this company to come back . +What , what did he say ? + This one is over . + All these people in one place on one day . +There 's not much I can do for them . + He 's still in it . +How do you know that ? + It just was nt our night . +I know all about it . + And I think most people do . +You know what they are . +The President does nt say . +But we made it . +People back home should know this . +But we do nt know that . +I like The New York Times . + We still had to come up with more money , he said . + We are way into this . +I do nt know if I can . +Life would never be the same . +What can I do without ? +There is not that much music in it . +He would not back out now . + You just know it . + But I have them . + I know where I come from , he said . +They come to me when they have to . +And there are several like him . +I think about what I want to say . + We are there all the time . +But do they now ? + I do not have the time . + They were here because you all are here . + It 's now or never . +Children play with other children they see each week . + If they can make it work , they own it . + We are going to know it when we see it . +There 's one more right you should have . + I just do nt know which . + They said , You know what time it is . + And we said , a market is a market . + No one is going to be there all the time . +Or , we could do it the other way around . + To get back to work , he said . + Did they like it ? + Then he said : But you know what ? +He had never been to the house before . + I do nt know much about that . +They had no other business in here . + Her time will come . + But it did nt work . +To her there was no business like show business . +There was no war . +And that is what we do . +But not the end of the war . +Do what you want to do . + You are right , she says . +It 's just some people . +When will he do it ? +He 's here and they are there . + It 's about here and now . + I work here . +It 's too much for me . + The two play off each other . +What do you think about this ? +So do the officials . + And I said , How do you know ? + Who 's to say they are going to do it right ? + Or how about this ? +We were at war . +Well , they are only after this until they get it . +Are women not people ? + I just want my old life back . + And it did nt . +Now I see five a day . +We think we can work around it . + It 's a big day . +That is said around the world . +It did not work this time . + Now I see it . + It was just like New York . +That was it for him for a while . + They do nt know us very well . +You do all of that , and this time around it did nt work . +And what would her next home be like ? + I want to do it for my country . + All you do is go out and do it . + But it 's not like we have the money . +And if they do nt , you still do what you do . + In a good way . +She would say that . +I should think not . + And do people know ? +Where do they come from ? + This is nt for me . + All we are going to do is work . + What do they want to do with all these people ? + Where did this come from ? +And does it work the other way around ? + And I had to say no . +Who would nt take him ? + This is my life , my business , she said . + Because we are too many . +You do nt have that now . +Used to be , you had to do that . +There could be some . +They put just as much work into the game as we do . +BUT is it so ? +And so they did . +That 's what we did all year . + But the public did nt see it that way at all . +I have to say no every day , all the time . +But now I do nt want to get up . +On to my program . +They do this all the time . + I like it that they go , she said . +But we never found it . + I do nt know . +I did not like that . +You have to get it right , and you have to get it right the first time . +They are going to be on you to do it every night . +And we would say , We do nt do any of that . + We as a country have been this way before , he said . +He would put music on for them . + She is very good . +Only our play does . + We do nt know what to do with it , he said . +Well , what of it ? +What I say right now today , that 's the way it is . +But with what money ? + It was time to go , she said . +But they do not know it . +If not , he does nt . + They want you , she said . + No time , she said . + Some people can do it . +There is no way to know . + Here , take this , she said . +It 's going to take several years . +Women and children first . +They may not have him for long . +It is one to one . +It was nt about the money then . + If you are left to your own , what would you think about ? +I just could nt make it . + But the last one had come . +He has been through this before . + But that 's not the way of life . +And this does it . + But it is around in their day . + I do nt want to be there . +We will be there for you . + It 's not good for the country . + We are a team . + It could go on for years . +They say , You do it our way . +But we have them . +Just a few who work for him . +That may be the way we come out of here . +What should you do now ? +To the same man . + That 's the good part of it . +But the federal government can do more . +They used to be there ; now they are not . +That 's the best I can do for him . + We just work as a team . + Right now , I can say that it will be that , five years with an out after four . +They called me the Man . +I do nt know when our time is going to be . +That does nt go here . + And there they were , he said . +But that 's the way it 's going to be . + How do you see our country ? +Is it all a game ? +That was nt us . + Is that all they can do ? + Then what 's it to you ? +They are a big part of my life . +So which are you going to do ? +I want to be in New York . + I do nt know when it will be made . + I just think he will be home . +What could be next ? + It 's over , says one . + I think it 's still a part of that up there , he said . +They say they want it . +You can never do too much . + I could get used to this , he said . +He does nt have a right to be here . +Now we see them all the time . +I was right , though . + I have nt had too many of those . + He still does not know where it will go or how it will end . + She does nt say What do you think ? +There has to be . +But he does not see . +The war was still on . +We do nt have that much money . +And you like it . +He is any one of us . +What if he is ? +Today was their day . + There is one out there , he said . + We get people every now and then . +Now would be a good time . + I do nt know what I want to do right now , he said . + It 's up over all . +He had them , all right . +It has been three years . + It was all just show business . + They say Would you take this ? + That was it , he said . + I just do what I do , he said . + We come from the same world . +He was very , very good . +That 's what he did all of the time . +That 's not her way . +But what is to come ? +Because it would never end . +Well , it 's part of the law . +They did nt think so . +But now is not the time . +The case may not be over . +He has his own game the next day . +He said : I do nt know . +Today , I think I was right . + I see them out here every day . + I just think we did nt come to play . +The United States had no one who could do that . +It just is nt any more . + It 's a good family , he says . + But that 's because there 's no place to go . + I can go on and on . +Would we like to come ? +I do nt think that 's what school should be about . +Would they or would nt they ? + I like what we have . +That 's what I want to do with my life . +But we have to . +Each group was of its time . +She had her say . + They are going in and out . +Life is good , White said . +And he still does nt . + No , it was just good . + It was nt so much about the music . +THE TIME OF MY LIFE . +What does one do with them ? +Four days to go . + A place you should have a good time on . +In this case , it has . +But most are not . + I do nt own that . +Some people never get over it . + This was not a war . +Want to be part of it ? + I want to do well , he said . +He has never been found . + That 's what people come here to do . +We had to go to this house over here , two of us over here , two of us over here . + But this is what 's best for the show . +He was his own man , at all times . +And then there are people like me . +Are nt I the president ? +But he was back . +I did nt know that until right now . +So , they make the most of it . + See that , I said . +As long as a few make it through , you are in business . +I think it 's the way to go . +How to get it back ? + And then I did nt want to come back home . +We want the people who want to play . + Who is the best ? + I said , What are these ? +We have to think about that . +But it 's not all you get . + That 's the way it is these days , he said . + I do nt think I could . +President of the United States ? +Another year without you . +He then did just that . +This case has been made before . +I just made it up , she said . +Where could you go ? +No , but most of them are . + I do nt now . + With three years , I do nt know . +I do nt know which one . +That 's where my house was . +What to make of all of this ? + I only know how to play the game one way . +We want you in , not out . +I did nt know that , no . + But we all know what is going on . + I like the way he does business . +I do nt see an end to it . + We know where our man is . + But you never know when the next one is there . + They have to take it even here ? + They say they have no money . +I could nt take it ; I had to get out . +That 's our way . +And , just like that , it was over . + It was the best time . +There are people who are out to get us . +It 's who he is . +There are no people . + I do nt know of any who are left , he said . +They are both about big money . + I did nt know what to say to her . + I have to be like me . +Where did you go to high school ? + It 's what I like . +It 's just going . + Because I have the time , he said . + He should nt have to . + And I only know one way . + They were there to make as much money as they could . +That 's what they know to do . +What was that to be ? + He said , This is how I want to come back in . + I said , If any of you are nt here to do that , then you should nt be here . + And I said , I just do , I know it . +And that 's all I think . + You did nt know ? +Most have since left the country . +He made money , he does nt come back . + Here 's a school . + You never know when it 's going to be your night . +So there you have it . +It did nt , and it did nt . + She could have been part of my own family . +This is not one of those times . +Where you been all your life ? + I only work for money . + What 's this ? + It was to get her well . +How much do you want him ? +Well , do nt we ? +And what do you want to do ? + Time is against us . + That 's what I did , but I just could nt do it . +That 's it : one . +It was all set up . + I only have one night off a week , she says . +The police had been there . +I think that all this will end . + I still think about it all the time . + You are not too old . + There 's no way to do that , he said . + Do they get on me ? +So he had to go . + As for me , he said , I do nt know if I can go back to the university . +That 's not all . +If so , how many times ? +IF YOU TAKE IT WITH YOU ? +They said it was good for us . + Use them for your family . + Is that today ? + But they do . +You can not have them both . +But that does nt do us any good . +I like them , though . +It 's five of us out there . +Now I know what it 's like to play for them . + Just not in here . + We want to get it back , he said . +Where did he go to school ? +But he did well . +And what does he think ? + We want to come back and show them we are just as good of a team as we were then . +That 's old school . +And how do I know ? +She 's going to come back . + I still know it 's in there . + She says , What does he do ? +But I did with all the people around him . + I do nt think they are very good for our game . + Who are these for ? + You only get a few years with them . + That 's how it should work . +Life and music are one . +But it was only one play . + They are not old money . +It 's time to come out and see what 's going on . + They never did that before . +That 's not good for us in the United States . +Like a big family . +This may have been just as well . + If it 's over , it 's over . +I say no to that , and so does the President . + I did nt know who she was , but she made me see . +We are at war . +We do nt know how it is going to work out . + That 's all they want to do . +A few days ago . +We had to think about that . + People want you to be the way you used to be . + I do nt know how long it will take . +There 's no time to think about it . + I do nt know what that says about me . +You are more into it . + Well , how do we know ? +He can do it . + Who 's over me ? +It 's going to come down to the end . + He should take four years . + There is no take two , she said . +Some say that 's good , you should nt . +They want the best . + It will end up where it should be , he said . + Well , who is nt ? + I did nt know how to do both . +And what did he think now ? + I do not like school . +But , there it is . + And you say : No , we are not going to do that . +At this time of year , there was nt much . +And so we are here . + That 's all he does . +He will be in school . +I should have and I just did nt . +It was all of that . +Then he called me the next day . +But they were not the only . + It was the same game . +Now we will see . +Where are the other three ? + She would nt come down . + You are right about that . +It will be there next week , too . + We never had one before . +That could be me . +I did think about it . + I never said that in my life , she said . + There is nt any . + Well , no , he said . +But what to do with the money ? + You have to think , and you can take as much time as you want . +And I work there . +He did his time . +They were a family to me . + You come to it . +Now there are two . + This is their first . +What did the team think ? +They do nt want me to know . +Because they know I want it . +They all work the same way . +I know this is the best . +That was never the case . + There 's a time and a place , she said . + All of these people own , he said . +Do as we say , not as we do . +And then it will be over for me . + What time is it ? +We do nt see as much of that as we would like to see . +A one , a two , a three ? +He does nt get it . + They still get into it . +But for now , the money 's just not there . +I take him to work with me . +How many times do we have to go through this ? + I said it would take three years . +But what if it does nt ? + And what 's around it ? +It should be used every day . +So I did nt . + It 's all part of the business , like it or not , he said . +Still , we have come a long way . + They think they have to do it , he said . +And she is good at it . +And that 's all I want to do . +It 's so New York . +Now is not the time . + Should we go home now ? + Like he 's been there . +That 's me and that 's the way I play . +Many , but not all . + She said , I know , I know , I have money . +You do nt know how well you have it . +That 's what we did here . +If it 's been set , I do nt know what it is . + We are the government there . +They said , Where have you been ? +It is that good . +I could nt go back . + We will just do the best we can for him . + There 's no way they are going to go back and do it over . +But will that last ? +I do nt know how we are going to go on , he said . + I did nt want to put her in a home , he said . +I do nt think you have a right to do that . +Last night , for the first time in a while , that is what it was . + It was more like before . +Without him , it 's not . + So you say , Come on in . +But some day it may . + In three days ? + Well , he said , because I did it . +You use one of those ? + It is a good time , he said . +So there just are nt very many people left . + I would nt want to go back . +Night is their day . +I think school is good for her . + What would I do with it ? + We have to do more , we have to do more . +It 's the same all over the world . + How can we work with them after this ? +There are still too many of them . +Now I do what they did . +Would nt the United States ? +One more to go . + This is a company we could work with . +He 's out now . +There is no way we can do it the way we used to do it . + Well , I could nt . + What 's going on here ? +That 's been said before . +But that 's the best I can do with him . + Is this the place that they want to be ? + Of the President , he said , He 's one of the best . + It should nt have been said . +But they just did nt work out . +What does he think of me ? + But I like them , and I like the people . + You never know how long it will take to get back , he said . +This is for life . +He put me here . + You would nt like it at all . + New York , you say . +We here in this city know this all too well . +You work for me . + And I said , I would like you to come back . +She 's back , she left , she 's back , she left . +Where 's the team going ? +Not at all like me . +And it does nt have to be all the time . + There is no place I can go but up . +Just you and me ? +I come here every day . + I did nt think much about it , he said . +You are still you . +So what do I think ? +I know , I had one . +It has come to that . + It has to be the right time and the right place . +My life is here . + I do nt know if she 's all right . +How many are there ? +I will have to think about it . +And this is how you do it . + We could have used this . +It does nt come up . +And then where did you go ? +He is never the last one in and the first one out . + I want to be like me . +So how to make the most of it ? +It is a big game . +It 's a very long time . + We were the New World . + They know how to play the game . +But it should nt be for long . + It is not our way . +But they go up , and they go down . + When will this be over ? +And this is not . +We have to do it now . +It did nt work yesterday . + This could well be part of it . +It 's just that I want more . + The school has been part of my life . +This was not to be . + No , you . + Who does nt want to play for their country ? +That 's the last never left . + Do you have one of these at home ? + But for us it will take a little time . + But we have . +But so do we . +But I did it . +I think they are very good . +That 's what we like to do . +It 's too long . +They did nt last . +Where we are today is not where we want to be . +But I do nt know when that will be . + It 's all about work . + It 's what he does best . +So I do nt think it 's over . +West , the director , said . +It was two years ago , not last year . + Out here , you can have a life , he said . +Go work in the White House . +You should know that . +But it 's not only him . +Still , they make it work . +Now , they may think that 's right . + It was not public money . +We see him in here all the time . +But we have work to do . + But we do nt first have a business and then children . + It 's not in me . +She was no good . +This is all there is ? +Some of them do nt like it . +Only for one of the war years . + They were too big . +I do nt know where he was going . +The one before was down . +I can , and do . +Can we like this ? +How do you do well ? + For me , this is very country . +No I do nt . + You never know , you never know . +And now I can say that . +But it was nt up to me . +But all of this is new here . +Not one , but two . +They do nt come here . + The Police Department is like a family . + But he 's good now . + I do nt know , he said , and I do nt want to know . + And we are not . +He just did nt do it . +I go to the school play . +It used to be down here . +But , he said : It does nt work . +It 's just there . +And what can you do about that ? +We were part of a team . + New York was very good for a long time , he said . +But I think it 's good . + They said I had come just in time . +It was nt about that at all . +So he did much good in his time . +She said she did not see it that way at all . +I would have been right there . +I should go to New York and do it . + And you are going to see it all . +We did nt play them as well as we would like . +What is it we think we see ? +But then , what is nt ? +They were not women . +So what did she come up with ? +What do I have to do ? + Because I think I can do it . + We know who they are . + I do nt want them to . +Because you are the one I . +Was he going to ? + I do nt want to go through that . + It 's going to take me a while . +They may well be right . + She said no more . + He has no use for them . +So how do we get there ? +He 's been there too long . +It is all here and now . +We are going to do both . + I did nt know it would be in my first year . +I think it is against the law to do that . +But I did nt know them . +To play here and play well here . + It 's up to us , he said . +And how would he do that ? + If you do nt . +He said he would not take it off now . + Because it 's their place . +For about a day . +It 's part of the music . +If not , where ? + You used us . +During high school , I did nt have that . + We are the other way around . + So , what do we do now ? +But I know I still have that . +First of all , they were long . +I do what I think is right . + And I said , Who ? +And as for me , did I do this ? + But I do nt want to be around many too many people . +WHAT IS THE WHAT . +It 's now or never . + He is American music . +But there 's still so much more to do . +They were right to do so . +One of them said that would be a way to do it . +And it 's not just the money . +The first season was the last . + This was one of them . + He was too old , with too little time left in office . + Where is the Government ? + Should be about right . +So does the one in the back . +But he just does nt want to do that . + No no no , he said . +It is not my place . +It 's not her first time . +I think he can do it . +That 's been a part of my life . +Do nt these people know who he is ? +You could say that . +But he would nt play . +They do nt have to go to music school . + You never know how long it will be . +Now I just want to get on with it . +The department is right . +I like her so much . +And what do we use it for ? +The next day , I had to go to work . + I like to know the day before . +That 's what it 's all about to me . +Which they did , one by one . +We can go there . +Just not right for us . + It 's her , he said . +We do not have the money . + But that is not what I want . +He is John A . +But that 's a long way off . +It 's not there . +I do nt know who will . +We do nt have to get into this . +We called to them . + I think we are going in the same way . +I did what I had to do . +But he has nt . +And it 's not over . +They want more and more and more . + People have much more money . +But he will be back . + There 's going to be a war there . +I would have been here for that . + Just that day , right ? +You are what you are . +That would be the end of you . +It 's about a house . +I just had one . +That is the way it is . +Now he is going back West . +And in a way , he is . +Here are many more . +Would the show work today ? +What would she do then that she would nt do now ? +All I can say is that every night we are in the game . + We are in it , he said . +It 's long , too long . + I do nt think that 's high . +And the second part would be the people . + I had business , he said . +And then another , and another . +That was good in those days . +We may not like it , but we get it . +I could use one right now . +Do nt even come to the game if you do nt want to . +He could have been one of us . +But they say : so what ? + It 's not the business . +But , he said , Now it 's over , what are we going to do next ? +This is the life for me . +How did she like that ? +That 's a big part of where we are at . + But who can say for how long ? + How do they know they can do it ? +But , you know , it 's part of the game . + And these are the best there are . + That may have been the best he 's been all year . +You know what it says to them ? + Then I said : It 's over . +Is it good for the world ? + And we just about did that . + That will not do . +That just about said it . +He can see over people . +But money is money . +At first , I was nt on the court at all . +It will take a long time . + They know how to get there . +This is the way we get there . + That was a year ago . + I do nt have that right . +Last week it did not . + It made me an old man . + What did that one man say to me ? + And that 's what he did . + You never know if you are going to come back . +But they work them out . +How long will you be here ? +That 's last year . +Such were the times . +Where does this all come from ? +But that , he said , was not what he was after . + Like the old days . + It was time we had a president . +But there is no going back . +What was going on here ? +It was just a game . +One game a week left . +People just get old . +He had family there . +But some still do . +They come any way they can . +And then they do nt . +He does not want to do that . + Big companies can do that . +The children are here . + New York does nt know me . + This is where we want to be , he said . + And these are our people , he said . +They all left before us . + I did nt know they could do that . +I think we still can . + If we do nt do that , the national team will end . + They should nt put me down . + He does nt go to school , does nt go to work . +But she did not think she would . +Where has it been and where is it going ? + That 's what we have . +Should nt they be with him ? +I still think we are a very good team . +Where did it go ? +I get these every day . +Do you want to be in on it or not ? + And so he has . +What will people use ? + But people are around . + But I do nt know how . +Has not that time now come ? +People are like that . +This is where I work . +We have all made them . +But that 's not all they do . + This is the only way we can get out , he said . +Not Who are you ? + I think you just have to go out and play and play well . +What more could you want in a game ? + He 's just been very good . +Did they like each other ? +You are the Government . +Here 's what we know , here 's what we think . + You have to make it work , she said . +He has not been without company . + Which group is that ? + In this case , you have to . +Most have never been there . +Other times , you did nt . + Do we have time ? +What do we want ? +Part of it is the money . + Part of it is they are good . + I did nt want to go over that . + One is : who 's the best . +People , get over it . +It is nt just me . +This time , she said , I do nt want to go back to the street . +What do you think about ? + I says , Do what ? +He is who he is , after all . +And , and I was , you know , I could nt see her . +But we did not want to do that , he said . + You could see it . +But I did nt see . +But that is just business . + I know that man . +We did nt do our part . + Now : to make it work , he said . +There 's not much we could do . + I like it the other way . +Does she , or does nt she ? +Do nt Get Around . + But it 's not about the money . + What right do they have to get into the house ? +It 's all in the family . + I like the man . + The new show , A . + What was it yesterday ? +This is my night . +The show does nt go over well . + It just do nt work that way . +There was nt much to see . +So we want to go . +I had a family . +More so this year . +It 's not that people do nt want to know -- they know . + We do , she says . +He has nt said much about it since . +She was the director . +You never see it . +It 's just that it 's not for me . + It 's New York this and New York that , he said . + Not now , he said . +And where are they going ? +He has not been right since . +Will this year be as good ? + But it does . + How long will it take you ? +But what could we be used for ? +And I think you have to do that . +And they were with me . + It 's one game , he said . + It 's too new . +It 's about time for him . + We come to play . +Just do it , she said . +But what did I do to him ? + If I were white , then , well . +People just did nt know what to do with it all . +It is no more or no less than that . +See how it 's set up ? +But our time is over . +For three years , they said no . +That was , and still is , part of life . + We never did , and we do nt now . +I did nt think it would last . +To do that you have to go there . +Can we see it from the street ? + People do nt know what we are . +He 's going to be there at the end . +But is he on the way up or down ? + I just did nt play a good game today . +That could take a while . + We do nt have to then . +And it 's like , well , how many times can you do this ? +He would like to be . + But we do go after them . +That 's just the way it is for now . +Today such is not the case . +It 's the only way I know how to play . +So much to think about . + But we have New York . +The family will at home this week . + Who is They ? +We have a new team now . + This we can not do . +What about in the United States ? +But it was a long time ago . +But that was that year . + We know it 's a business . +New York is now the city for me . +But she 's me . +We also know who we like . +You can go for it now . +And they like it . +At first the war is nt going too well . +But not like today . +You can have them . + I just want to be one of them . +He made me work . + Do nt want to go with us ? +The court is the same . +Is that what you want to know ? + You want to put this up ? + How will they make money ? + We did nt have any . +I said how would I know ? + This is what we get . +Your right is your money . + Come As You Are . +Do nt you do that ? + We want to do both . +They have to come take it from us . + Do you know that ? +We have to see where he 's at . +So that 's what it has come to ? + Are you with us or against us ? + Where is the money going ? +Where should they go ? +It 's only in our country that it is . +Is there any part of you in her ? +But many more do not . + They know so little . +We are right where we want to be . +But who does nt ? + Five for five . +You know he was . + Same as our officials are . +But they do nt want to know . +Could this be right ? +But states do nt have the money . + They are not the best , he said . + They are all over , she said . +We were all the same people . +We just did nt see any . + But I want to go home . + We are not the only team like this . +But the time has come . +I did nt have a good week . + When Will It End ? +You know where he is right now ? +And then , and then . +He does nt see you . + I did it on my own . +But he is in most of them . +And he did what he had to do . +But we are going to be all right . +After a week , I called him . + If that 's what they want me to do , then that 's what I have to do . +And come back they did . +There was no money at home . +But where were they ? + We can take children . +So you think you have made too much money ? +We think they can do that for the next several years . +But that 's this week . + You see how we work ? + We are used to it , he said . +I know not which . + I did nt want to make a little house , he said . + But the law is the law . + We did nt come here for that . +We were nt going back . +He has been there . + To them , it 's just a show . +But it does not work for every team . +But I do nt think it would work . + I did nt have that . +So how good were they ? +Now he has to do it . + It 's not good for me or the game . +And I do nt think you have to be so big . + And now she is going to do it at work . + It 's good to get this one over . + I want to be part of that . +So you have it ? + I think he 's the same . +Here is the best of the best . +And what is the business of business ? + This is my time . + And I did nt have much to work with . +How do you have that much money ? +We just have to get back to it . +They are even now . +It might be the only way to get her out of here . +It 's up to the President to make his case . +I do not today . +I just do nt do that . +To get out was what it was about . +THE LAST DAY OF SCHOOL . + I just did nt get it going . +Called at his office , he was said to have left for the day . + If he can do it , I can do it . +A long way from home . +All right , last one - last one for me right here . +That 's all my time now . + If they do , we still have time . +For a year or so . +They did nt want any part of me . +I do nt know any other way . + We have some work to do , do nt we ? + He set up for this . +But they still do . + Some people could nt get on at all . +Two of their three children . + I just think that . +No one was at home . +Now , it is down to one . + But you just do nt know . +They are not there now . +Women come and go . +I like that about them . + They do nt know about this . + But I do nt want to think about that . +It was his family . +They want to go to their own . + I would nt make too much out of it . +So he is not there . +I said : Be that as it may . + You have your will of me . + And I did . + See you in New York , he said . + I had nt . +The way it is now , at the end it 's over . + They all do nt go this well , he said . +So you are right . + We are going down there to work . +That 's the new place . +That is , if you can . +Every year it 's the same way . + I do nt know if I want to see it . +Come back in a few years . +She is -- I did not say that . + Three , he says . +They like to get even . +And I think they have . + What does it do ? + There is no other way to put it . +He had a good game . +Did nt know that . +To them it is one country . +There is nt much we can do about it . +It 's not the money . + They had to have it . +We just could nt do it . +They are like other people . + What 's that ? +It had been that way all night . + You never know who 's next . +Now they are not . + I do what I think will work . +But that 's part of the game . +He was this war . + It is still so . + Because if you do nt do it , who will ? + But it does no good for us to take them . +Up , then down . +I know what he would say . +You want to play your best game and we did nt do that . +I did nt go with them . +He should nt be . +You are just there , and there you are . +You should have been . +I think it will take a very long time . + But that 's not the case here . + Most are people in the know , he said . +I do nt like music . +So they did not see this . + But it might now . +Where could the money come from ? + I do have one of those . + It 's good for you . + I never had the time before , he said . + Well , we did that . +Here 's what to do . +By now , he is used to it . + This will only work if they want it , he said . +But I want to do more now . +She said : You know , we do nt do this in this country . + Go on , go on , they said . + Do you see that ? +They were , not long ago . +He has put them at the center of his world . +Where did these people come from ? +THE CITY , NOT LONG AFTER . +They could have been put in there last night . +And so do the children . +I just have nt been right . +We are not the federal government . +But it was only one game . +There is much work to do . +It 's the same in the market . +Where is he going to go ? + He can go play . + Their work is very good , he said . +To me , too much is made of it . + I do nt use them on the street , he said . +That should be us next year . +Could be New York . + What 's left for them ? + He is so big . +What 's this one all about ? + He would nt show up , he said . + I do nt even know who did it . +What are we left with ? +We just have to see where we are at . +That 's all she could be . +That would nt be good . +We are their season . + If you come up on him , he 's going by you . +Then I said , I do nt think so . +But then so was high school . + Now I go here . + You are up to no good -- Do you know where you are ? +It does not come . + How could the school do this ? + And what do they know ? +Which program is best ? + We are all after business , she said . + As you see , this is war . +But in the end we were right . +And he was right about that . +But it 's not the same as before . +But I do nt want to get back with him . +School officials called the police . +We are not an it . +And she may be . + They just want to go play their game . +But now , I think it can . +Her family was her life . +I can use more game . + We do nt have to do that now . + I have one at home , he said . + I take each day at a time , one day at a time . +Still , they used the time well . +Or will we just be where we are ? + I think he has , now . + I never think about it that way , he says . + They are all going to be in and out . +We have to do more and we will . +She did not even last a day . +You can have it . +At his new school , he will have it . +Them : Is that all that you have ? + Not today , he said . +His business now is all over the world . + We said , Now it is . + There 's a home out there for you . + And , he said , I have them right here , if you want them . + I do nt know what to think . +We have to go back , he said . + He 's in school . + I said , For how long ? + He may be the only one . +They did so much more . + What 's all this about ? +You think it 's good . +I do nt know where they would come up with that . +They can both play . +And that 's all . + That 's where I would have been if I was on time . +We know what he 's made of . +I think the time has come . +But we see this more and more . + It 's family , man , he says . + That 's how I have to do it . +It may not be the right time . +How does he do this ? +They own the company . +Another day , another group would come . + Mr. Just said . + So it will be good . +How big should a high school be ? +Which is just as well . +It 's a state of being . +But if he does not ? +Though their next show , What 's Up ? +It is good to have them back . +Last week there were only three . + What are they left with ? + Time to go home . + Did you see the President ? + It 's like he was there . +I said the right . +But if you have to , then we can get to work . +But not over and over . + What day and time ? + I take their money and come home , he said . +Any game would be . +But -- where were we ? + He did all year . +It was like I was nt there . +Both work in New York . +So does the play . + It should work the same as it does in the office . +Who would that be ? +He is not like that . + Not many people can say the same . +But what does he do with all that ? +It 's all about what you know . +They are like people , and they are not . +Me , for one . + That 's not the way we do our business . +They can have it . +What do you want us to do about this ? +If so , where ? + She said : Is it ? + It still has a life , she said . +This is all we have . + Well , what do you do ? + Most of it is me , he said . +Out for the season . +We still have our work . +Until last year , she said , she did not know how to do that . + Children should go to school , he said . + What were they going to say ? +Well no I do nt . +He 's all right now . +They say he left on his own , and they called the state police , who found him at his home . + Was it this big ? +It did nt work out for me . + We have it all here . + I never even called , he said . +It 's out there for all to see . +We put it there because people want to see it . +Yesterday was , well , you know what day it was . + We are up to it , he said . + We just take one game at a time . +But also because of him . + The people here know me . +Now who 's right ? +You could have this life . + This is going to be big , he says . + If no , they do nt use it . +But not like other people . +I would have been in the street . +They did nt last very long . +I would nt like to be one of the little people there . +Some day it will be like here . +It 's not going to . +But then , it was one of those days . +It will never be over . +It 's not much . +Do nt make me go back . +But many of the women never did . +Because only we have it . + Mr. Long said . + They did nt go in . + It is nt about the House . + We know who we are . + Here , he said . +So I have that going for me . + Was it more than just good ? +Can I get one of those ? + He 's going back to work . + They are not the same as us . +But it was nt me . +They are going up . + Where are you from ? + We just want to go back . +It 's his case . +What do you think of us ? +And that 's new . +This is part of me , she said . +It would end before the year was out . +How can you say no to a president ? +There 's a long way to go to the end of the season . +What does he do when she 's not with him ? + Even now I still do what he said . + A million people called , he said . +But what is this all about ? +People want the best for them . +What are you going to do about this ? +Were we going into the market ? + We have just two children . +I could nt for so long . + It might take another year after that . +Where did you get it ? +You should be with us . +Which , in a way , they are . + Or what does he think he found out ? + He do nt know what to do . + I would do it every day if I could . + This is home for me . + Did you have to show him that ? +Next year would be a good time . +It 's not the same , is it ? +They come to us . +It 's good we do nt play for a week . +It may work for you in the right time and place . + For the most part , it was down . + Not up to it ? + With a little political will , this will come out all right . + I did nt say you had to do this case or that case . +Know how they are . + It 's just how it is . + For us it 's a good time to do it . +There may never be another one like it . + You never know when you can be there . +And what a life it is . +We do the best we can . + Where can I go ? + You are not going to make it . +But , he said : The law is the law . +But we are not there . +Some say they are like a man 's . + I do , in a way . +We all know who they are . + It 's not about money , he said . + I can not see over them . + She did the best she could for him . + You take little by little , he said . +And I want to work , but there is no work . +We just have to come back next year . + Think back to this time last year , he said . +They just do nt think they have the time to do it . + Will we get as much as we want ? + Well , so long . + I do nt go out as much as I used to , she said . +All is well and good -- for now . +They can do what they want , that is their right . +I think we all have it . +I think it was us . + I just did nt want to know . +All that will take a year or more . +I want to see you do it . +And we think we have . + As well they should be . +The game should have been over . + How are you now ? +We did nt do it . +Make of that what you want to . +Well , some of them . + Want to see ? +New York 's the best place in the world . +Not until today , that is . + That may be in this company or it may not . + They do their best . +I do nt know that they can do it . + I can only put so much into it . +His work is the but . + But that 's just the way it is around here . + It does nt play on that . + Do you know who said that ? + And , for the most part , we did that . +But , he said , not one did . + You do nt just not do it . +When do you think you can come back ? + We can be good this year and very good next year . +Here 's how they made it work . +And they will this time . +Well , no more . +You think of it as a game . +And this was a case like that . + I like it too much . +He 's part of New York now . + It has a president . + Just think of it . +How high was it ? + But we know it is going on . +They had to be there . +When it does , go see it . +But how much work do they do ? + They are nt there . +This was not the case at all . + He did nt want me to do what he did . +And to show what ? +What Would You Do ? + That 's not right , he said . + You have it or you do nt . +He had never been so many people . +But what do you want ? + That should not be . +We go through this every year . +What in the world would they do in such a world ? + I Do , I Do . +It never was for us . +Or in another year ? +The game does nt work that way . +All over the country . +I know it was nt me . + I like being out there . + At first I did nt know what was going on . +What did he say to her ? + What 's going ? +His last day was today . +I do nt know where we were going to make our money . + It 's like part of me . + But I did nt know where she was . + I think this is the best for the country . + But this is a big year for him . +They did what they did . + We are the best of the best . +There is no such place . + How many times ? +That 's what you want to know . +When I play well , we play well as a team . +Some of us even have them . + What did he get ? + Do you want to go out ? + For people to have a good time in . +The Government is going to be all over his back . +IN four years I will know . + We can only do our best . + You know what I might do ? +Good night , good night . +He 's at his best right now . + What do you want me to say ? + But we know who we are . + I said , Not this time . + That is about all you can say . +They have never said it . + Some women just do nt have the get up and go . +What could we do with them ? + You do nt want to go there , but then you do . +Now get out of my way . +It is four , not five . +Not to other children , not to his own family . +I could see them from here . +There 's no way like the American Way . +He was a very good man . +But this has been here . + But in the United States , they would not . +And -- would nt you know it ? +Five days a week . +Last night , you could see it . + I said , Take the money and go . + What to Do Next ? +I could see she did nt know what to do with us . +There was much , much more to do . +So how will we do it ? + We are still against it . + There is nt much they can do with it , he said . +That , too , has been good for the country . + No way I was nt going to play him . + That 's how they all come to us , he said . +We did not know what it was . + How could he say no ? +Not every year is going to be like last year . + Will you play with me ? + They are with me , she said . +Where has he been , and where is he going ? + But still this is the best way . +Life will never be the same without him . +He said : What do I know ? +Some of them are good , some of them are nt . + He said he was nt , but he was , she said . + They have nt been the same since . + We have a good team in place here . + You want to be part of it . +And now he could . + We do nt want to do too much at one time . + How did he do it ? +You can go on from there . +A president for his time . +But he had nt been . +So we think of her , too . +It does no more work than it has to . +It could have not been that way . +But we should nt be . + I said , So what ? + I do nt know what use it would have been to most people . + There was no money there . + I say it three times . +How would it work out ? + It 's still a go , I said . +But are they right ? +So are three of his children . +Take any of the three . +Not one week from now . +JOHN : Are nt you one of them ? + In New York City , people want it now , she said . + I think that 's a little much , she said . + I do nt think of it as work , she said . + You have to time it right . + So what 's that all about ? + I do both , but never at the same time . +This year , there is more of the same . +That may not last , though . + You never know who 's going to show up , she said . +And the week after . + It is not that we like being here . +He did what he did . + It 's not the same team at all . +I want people to have a good time . +You have to have that in a big game . + Who could say no ? +Now what do you say you are ? +I know that no one 's here for good . +There is no one way . +You just found this out ? + How can that be ? +But I never go in . +Well , no , not in this case . +Now life is good . + I just did nt want to get in his way . +He 's from the old school . +I do nt know who you are . + How long has it been here ? +This is a just war , and not just war . +This was only the first of many . +We do the work , and they get the money . +It just did nt work out for me . +You did nt come . + He could still go , he said . + What do you think I think ? + You know what we say . + How could this go on ? +It is about people . + I do nt see how I could , he said . + That 's what they do , and very well . + I like it here . + Now 's the time , she said . +And then what can you say ? +Good for my business . +What would he do if he were president ? + I like all these people , he said . + They like to work , he said . +We are going to be a family . +And these are not the best of times . +And that was just May . + I do nt think I will . +I do nt say it 's the only world . +You come out of there . + He said , How did you know that ? +That did nt go over too big . + It 's out of this world . + It was a good night . +This Government will not last . + We will be here to the end . +You think the old man is that old ? + But , as you see . +Just the way it should be . +Most of them take it . + It 's about time , he said . +Both were New York . +They do nt know where to get it . + But it 's just the game . +What will he do now ? + This was my life . +But that was our season right there . +Most of us are both . + I know what it is , I say . + I know what I do , he says , and when I play well and do nt play well . + He said , I should have . + But they do nt get over it . + Where we are now is where we should have been three years ago . +I could nt come back . +After that , three . + Most of the time , he said . +All my life this place has been here . +Just go out there and do what you can do . +What to do next . + It 's been such a long time . + I like very few people . +Not in this game . +You can be on time . +Only he could , and did . + Who Is This ? +She was too good for this world . +They just did nt know it . +Because they were there . +And if so , what will you do ? +We are all here . + I have no place to go back to , she said . +Just like last year , and the year before . + And I said : I know . +So what could it be ? +And they do know the game . + I did nt want to go home . + That 's where it is right now . + I want to be part of the team . +But now is not the time , he said . +I do nt want to know . +Go work it out . + I want to be president , she said . + I think I can still play . + Then they will be on their own , he said . + We play like this . + No , no , no , he said . +We could use it more than they do . +I think they are both . + I have not been back since , he said . +Do nt think I do nt know it . + So what are we going to do ? + We have too much of that today . +We are going to be part of that . +Or the time after ? +It is part of it . + He 's been President for three years , he said . +No other law in the world does that . + I would like to work with all of you , he said . +Now it has four . +All is as it should be at this time of year . + Well , that 's not very much today , but it was in those days . + How we are going to get there , and what with ? +What does he want to do in office ? +A : I have . + You can do that , he said . +They were good people . +And there are more and more of them all the time . +I do nt think that was right , but it 's over with now . + What 's he going to say ? + What do we do ? +But not all of them . +Both still work at the old school . +But does he want to do good ? + This is a show me market . + It 's their office , he said . +Not much , he says . + That 's from my former life , he said . + This is about family , he said . +But , no , you may not take the case . +A : He was . +He could have said the same of the women 's team . + I have a house here , too . + The are on their own . +But we have some time . +That has nt come out . + And that 's what they did . + This is my last time . + Now it 's three million . +Before it is over . +I do nt think that 's what they are going to get . + That was nt that . +I know how good it is . +This is what the world has come to . +Who here does nt . +It left a long time ago . + So it 's not just about them , it 's about all of us . +What more can you say ? +I do nt see that as much here . + Do you know what I think ? + The people around me . +He has nt been the same since . +Time to get off . +But not by me . +But that 's good , though . +Where do I come from ? + This is the big show . + It is still their money . +But that 's part of the show . + I never had a day like this . + They take it out on your children . +And it could nt . +He 's a man of the world . +He was like , just do it . + And where do you come out in all of this ? +Just get out of my way . + It 's not over with . + We will not back down , he said . + It could have been us , he said . +But he could think . +We had so many good times as well . + Come on , he said , even just a little ? +If he does nt , do nt . +He was never going to do that . +No , and no . +Just a good time . +As they should be . + No one want us . + It 's our time of the season . + I do what I can . +Is it what I want to do with my life ? + It is nt , he said . +Have nt we all ? +Some do ; some do nt . +This is big for him . + It was like , Man , what 's all this ? +Well , few do today . + I could nt get into the States . +We did nt have the money . +What are you going to do now ? +There 's still a little left . + They do nt have to say What ? +That 's not the way to put it . + One or two of them were even American . +Go , they said . + We had a good team then , he said . +You just never know . + That 's all I could see . +They know that and I know that . + But not so much now . +But this may not all be because of the war . +We do nt have that here . +And both have been in first place for a while this season . + People say , Well , how do you know what you are going to do ? +And he would not . +They know they have it good . + What would I do without it ? + It just has to . + Where 's the president ? + Well , we do nt have it . + But what do we want ? +Where did that come from ? +It 's been going on for four years . +We have people on the way now . +It 's not what I want to do with my life . +What did it in ? + I say : Think about it . + I would nt want to go there . + Where do we put it ? + This is for you and your family . +But you do nt have to . +But at times , we did . +In five years , I might say , How did I do it ? +Or from New York . + But we have nt . +More about that some other time . + I know that today . + We can be a very good team . + I did what I could do . +And the best part is , I do nt want them to go back to school . +It may very well have been . + That 's what it should have been , he said . +But it 's part of my life , part of my family 's life . + This is what your school did to me . +He has been around too long for that . + We were nt here last week . +We are going to make it work . + It was there for years . +But they do nt last . +That 's the only place we are going to get it . +And we just did nt show it yesterday . +But what do I think about this ? +No , you could nt . +Does he know which one ? +What would life be without it ? + We are down . + I think he 's put down too much . +But it 's the law , and we are going to do our best to make it work . +I could work for him . + We make that in a day . +But I did nt see that . +You think about what we are going to do . + Just do what you know . +They want people to like them . + I did nt know this was going on . +And we said , What can you do for us ? + What up , family ? + It 's been a long day . + This is one of the last in the city . + It 's been like this for years . +What Is This All For ? +They were way off . +Do your business around the country . + I say : How do you know so much about it ? + I still want to see if I could work that out , even if it is a little more work , she said . + They did nt have any . +What did you do then ? + That way , one of us would be home to be with the children . +But we can not . + I think we can , he said . + What Did I Have ? + That might be a very good school . +And I never left . +If you can get in . + Business , he said . + I do nt like that . + How much did you say that was ? +He should nt be in there . + That 's about right . +That was the way we were . +No , not that . + The same could not be said of the other two . + You should do it , he said . +Your team 's in second place . + One of the few left . + What 's It All About ? +I want to be part of this . + And what should I say ? +No ; it is not . +And there are many of them around now . + We had a good week , he said . + It was nt the right time , he said . + But I did nt get the money back , he said . + It 's the only play he has . + We will never be the same . + They can not do this in this country , he said . +But it 's what they do . + I do nt know that they were nt , he said . +Come on , what 's going on with you ? + Where would we go after that ? +And what about those children ? +I did nt want children . +That 's what the music does . +That 's just how he was . +Put it this way : If he does well , we all do well . +If he had nt been there , I would nt be here . +That 's what we like about you . +He said so yesterday . +But that will come with time . + This is the man , he said . +This time , they said , it was over money . + You do nt know where you are at . +It is too big a part of the market . + And I said , Where ? + These are all our children . +But how can she ? +There 's less money . +Those are our children . + I do nt even think about it being there , he said . + He still do nt have time . +The American people want their country back . + Never had any , he said . +They are just going all out . + I did nt have to take this . +I think , If he can do it , I can do it . + What is it like ? + I want to be the best I can be . + That was what he said . +Does she still have it ? + They have what I want all the time , she said . +Here in New York ? + But he said he did nt want to work . +They say , Get them out . + The former , he said . + All he has is me . +He 's too little . +That this will not be my life . +It 's what he made of it . +They said this was not the case . +And we are not about to get in the way of that . +And I never have been . + They say all is well . + I come every day , and it 's about the same , he said . +So You Want to Be President ? + It is the first to go up and the first to go down . + And going from there . + I think it was like five years or so . +That is until now . +I do nt want this going too long . +I would nt know how . + This is what this war was about and is about . + That 's it . + Know what it is ? + If you are going to get it , you are going to get it . +And I would just be one of them . +He was about work . + But any war will have an end . + That 's what he used to do . +This would go on for three days . + No , it will not be , he said . +I was in the right place at the right time . + And do you know what he said to me ? + There 's a market . + But he is right . + But you have to be here . +WITH : The company . + That set us back . + You have to be two people . +Or they can be both . +We never made it . + It may well be . + What can I do ? +That 's all it does . +And that 's show business . + When it 's your time , it 's your time , she said . + He still might go there . + And second of all , it 's this ? +I think this year 's been up and down . +No one will know which one he is in . +He just did not know how it would end . +But we are not any other city . + We do nt have any of those three . +It is part of life . + But we are still not where we should be . + We think we are at war , and they think they are at war . +But there are only two of them , and they all want to be in one of them . +There 's only one life . + What 's this one ? + They just do nt put it on . + Well , it 's not over . +They want the night off when they go out for the night . + I think it 's this year or never . + To those who say our city will never be the same , I say , you are right . + They are my children , not his . +Get out of here . +We still have much to do . + Because we are big like the United States . +He was right about that too . +I found I could have both . +Part of it is who they are . +If you want to see So what ? +When they are good , they are very , very good . + Is this your man ? + But we are right here . +But those days may be over . +Now you do nt . +So you do nt say , No , I do nt like it . + Who 's going to come here ? +But not this year , not in this state . +More , and more . +We are these people . +What do you want from me ? +But only a few will make it . + We have our own president . +I did what I had to do , she said . +This should not be . +It was not the first . +It 's how you come out and play . +In those days , old was still good . +And they did it well . +We do nt make money . +Those are the people we are up against . +I still go out and play my game . +I do it , too . + That 's the way it used to be . +He called it his music . +But when people do ? +We could have been here all night . +There 's no other way to do this . +From Then She Found Me . + I do nt know how other people do it . + What made you say that ? + We are going out two , three , four times a week . +But there you were . + I think it 's time for her now . + What is it made of ? +What of their children ? + There should nt be children who go there and there should nt be people who work there . +It was in me . +He said that was about the same as last year . +I do nt know how they do it . +But you take what you get . + You want it to go ? +It can never be the way it was . +He is not one of them . + They just do it all . + What more is there left to say ? + People did nt know where to put it all , he said . +He was a little old for that . +For us , this is the only way to go . + He said , What do you say about it ? +No other way would work . + Now , it 's like : You do that ? +Now he has one . +It 's all over the place . + I did nt get that . + I know that he did nt do it , she said . + I can still play , he said . +They may not get it , though . + That 's what people like about it , she said . +But we were not very good . +The next season was his big one . + We are all with you , she said . + We did nt want this , he said . +Because it was my world . + I will not . + But it was more than that . + It was over . + That 's New York . +They play good music . +I do nt know what you say to them . +No one could say no to him . +People just do nt know him . + But not that much . + It 's a first that I know of . +It is nt , but it is . + I did nt know them , she said . + Which may just be right . +That 's the best part about it . +And I think he did . +But they say they do nt have the money to do it . +Where Is the Money ? +So what is there to say ? + If he is as good as he is going to get and this is where we are at , then he might as well play . + What 's show business ? +This is where the United States should have come in . + We can get it all here . + You just do nt know what he 's going to do . +But not more than that . + Then show me where the people are . + What do they want from me now ? +He also has four children . + They say you can never go back , she said . + I do nt know how we are going to do it . + I never said , Should I do this ? +Does that do it here ? + That 's all I had to go by . + She 's right , she said . +It 's not going to do me any good . +But few will know what he said . + I do nt know of any place where they like old people , he said . +He said to me , What are your people going to say ? +That 's to me . + If not now , she said , when ? + I do nt know much . +They have been there since . +What do you know about life ? + Now we know that does nt work , she said . +It is , she said . +What would the money be used for ? +I do nt know what to say . +How did she know that ? + There is still a law , she said . +One of the world 's most . + I would not do it . +And he does not want one . +I do nt even know what to do after this . +And so much you do nt have . + You just see it . + Well , now I know they would nt do that . + All of them ? + Can we have some ? + They just do nt know our program , he said . +So will the president . +Then , the set was over . +For the good of the game . +Did I get them all ? +That 's what I want to do if you put me to work for you . + So that 's where it is , she said . +Some of them have children . +I know it 's going to come , but it 's going to take some time . + I found out last night . +And some still do not . + And for the most part they have nt , he said . + They do nt come up at all , do they ? +After four days , I called him . +There we all were . +Just get out of there . + It has just made it . + They want a war . +Yesterday was the same . +It is now or never . + I said , What are we going to do with this ? + So , you see ? +There would be no place for them to go , just as now . +We will see if we can go with him . +The public does not know what they are . + We know we are good . +You have only a week to see it . +I do not like this law . +It would take just about a year . +Go out and do it . + But we are now , he said . + And that 's good , I think . + How do you do that ? +I think we are the best . +This is nt a house -- it 's a home . +Most companies would have left it at that . + It 's not what they say . +I think this was a big game for us today . + I think about him every day . +To think about what he 's going to do when he 's out of there . + No , not him . + If I make it , I make it . +It was nt the music . +No they did nt . + But the only way for him to show it is to do it . +I could have been in school . + Will I be back next year ? +I know the game . + That was a long time ago , he said . +That 's his way . +He never has been , and he never will be . + But I did nt have the money to do more work on it . + We know this . + She did nt know . + We have to do this right . + There are many people like this , he said . + You have to go with the best you have . +You Have It Now . + He made it up . + They used me , he said . + We put that up every year . +To me , there 's only one way left to go . +After all , it is . + Is she still going ? + He had one with us . + They know what they see . +In part , we are . +If not , they are on their own . + They said that was it . +But , well , it could have been . +He did not go back into the game . +It is a long one . +Now , what are we going to do ? + That 's how it was . + It was nt that they did nt want to , he said . + That is not the case at all , he said . + Is it all right ? +It was used there for the first time . + We are still here . +It 's part of being in New York . +She 's been all over the country . + It was nt my best . +The team is like the city . + The time is right . +What are we to make of this ? +Or will it not be until next season ? +If they are in school , what school do they go to ? + I think , What do I want ? + I would want him in there . +I do nt say , Do nt do it . + He says , I can do this , this and this . + I do nt think she made it . + It was all of my life . +I do nt want this to end . +That part has nt been good . +The other one is White . +Because I did it . + To each other ? +Its just the way it is . + People can see . +That 's not right , he said the first time . +A : I do nt . + How would he know ? + I see them , I know them . +How many should nt ? +They like to play man to man . +I do nt see one . +We know who those people are . +So what does she do now ? +It was about this . +But what would you take ? +I want to do the play , and I think New York should have the play . +That 's just the way people are here . +Is it in some of us ? + That can not be . + And they go , What do you do ? +So how did I do ? +So I do nt get that one . + If it 's my time , it 's my time . +SOME IS WHERE the money is . + I like being out with the people . +And I will not do that . +It was the big play . +I just do nt think there is much I can do about it . + I did nt play too well today . +There was no one there . + Do I know you ? + Five people know , and that 's all . + I do nt want any more work with the police . + It 's our new war , she said . +And now it does . +That 's where my family is , and that 's where I will be . +For now , that is . + That 's where we are from . +That 's the best way I can put it . + We were in a war for five years . + But I do nt want any part of it . +But they did nt know where it was . + I would say , All right , he is home . + Well , I just do nt know . + He was right there . +But this was no good at all . + The people who did this know we are on to them . +You do what you think is right . +We should , and we have . + Where will the money come from ? +And that was just this year . +I know you so many years . + But I do nt want that to get out . + We are not a good team . + Right now , we do nt know what 's going on . +That was well put . + But she is there . +He might say I want more money . +To see if I could do it . + It was a good day for me today . +This is my first war . + You did nt see it ? +We would like it to be . +This is New York , after all , so what 's money ? + You do nt want to say too much . + And we are about to go national . +Next year at this time will be a long time from now . +The way I did nt was like this . +One team is up , the other is down . +They do , but they do nt . +But he could never have called the next one . + There is no other , he said . +It is as if it 's just like what it is . +What are you going to do with them ? +We are , we are . + That 's how we do it . + It 's about family , not money . +And right she is , too . + But it has nt been . + I do it when it 's there , he said . +But they have some of their own . +Then , you do nt want to know . +And you very well might have . +People still work here . + We want to do what 's right . + We could nt do it every night , he said . + It 's all a game , he says . +One year , two year , three year . +There is no high like it . +And it 's right . +And many , if not most , of them are white . + If I could make it like before , he said , I would . +This too has not been the case . +But do they work ? + You know , they do nt like each other . + So now what do you have ? +You know what you can do . +We do nt know how to do them . + People do nt know how good you are . +How they are going to use it . + I do nt even know what 's going on . +You get used to it by now . +Had I come that day I would have been no good at all . + This is not the first time , she said . + I want to be here with him for a long time . +And you could still go home . +I want to get this over with , the police said . +But , you know , I like them . +I did nt know any . +You are going to do the work . +That 's what it 's all about for me . +If you have children , you know . +You do nt know how long it 's going to take . +It 's just going to take time . +I do nt want them to know me -- until the end . + I did nt know about this before today . +They were not there . +What is American music ? +But other people do nt see if that way . + Do nt we all . +There was little time to think . + I was there . +For war or to go home ? + People do nt take it for what it is . + Here , they do it every day . + But this one did . + And she said , Up . + I could just come back every year , he said . +She 's been like that all her life . +Where was I going to go ? +Next week , I think , I will do it . + That 's the way I have to think . +It 's around us . + There are still a few to go . +There 's just no way . +I did my best , so I should make it . +I do nt play music by any of them . + We are just not going there , she said . +In the end , he does see how it can work . + And my life has never been the same , he said . +What was it about ? +And I was there . +She did nt have to do this . + That 's our season . +All you can do is get your very best people . +How did you get into this ? + I think I should be . +They think we do nt get it , and it 's time we show them that we do get it . + What did he say they said ? +She 's been there before . + We do all that . +And they do another take . + Where was he going ? +Children do not go to school . +What are you going to get ? + And I think I might be one of them . + He does nt go out . + For a long time there was nt much for them to do , he said . +What was he like , she says . +It should have also said . +Here are some of those companies . +The President will be there . +We said no every time . +Many people still are . + One day they are going to be here , and another day you do nt know where they are going to be . +Time to get down . +It 's all I could think about . +It 's the end of the world . +It 's a new world out there . +See what you can do . +There should be more . + That does nt do us any good . +It is nt even just . + It 's the best you can get , he said . +It do nt work like that . +We get less time to work with people . +We do nt want them on the street . + She was there , was nt she ? + Two more to go . +Make your best case . +For you this is one world . + Then it was on to business . +Could they do it ? +It 's just not good . + We have that now . +There are nt that many , and this is one of them . +If you are not , there 's not much you can do . + I could go on . +I want to work for all of New York . +And it was all one long take . + Just so you know . +He did it to me . +She was like that . +People come from all over the world . +The more you have , the more you make . + I have to , she said . + I do that every day . +Now we know we can come in here and play . + I should nt have come back . +But he does nt use it that much . +He was a center last year . +She would go down a long , long time . + If he says not to do it , I can not do it . +We used to think so . +And I like people and all . +Well , they are just people . +Now we get another team . +Is it one of these ? +It will take a few days . +In the United States . +But not just any One . +Where Did It Go ? + That 's not at all who I was . +I might be one of them by the end . +He had two children , she one . + She did , he said . +And he 's still there . +These are the best of them . + How long has it been in business ? + But that 's all right . +What would you do about it now ? +HOW do we know what we know ? +What you see is what there is . +But will most of them work ? +Your one and only . +It made you think . +After all , that 's what they are here to do . +You can only do so much . +But it was not to be . + How long has it been ? +It 's a business , a big business . + What do you use to back it up ? +I just could nt do it . +How would the money be used ? + This is new for us . + I have the part in my office . +This is a big program . +Could you go over and get them for me ? + But more times than not , they do nt have time to do that . +But that may be it for a while . +But the case did not end there . +And then she left . +I said so , and I did so , too . + But then , what if you do nt want to come back ? +We are going to do that in this game . +So is it over ? +That did nt work . + It 's man to man . +Or so some say . + Get them out of our country . +That was not the case yesterday , though . +I use my own money . +After , people would come up and say how good we were . + He 's like that . +I had to know more . +Most of a man 's life . +That will have to do . + It 's going to take a little while to get there , he said . + This is not my best time of year , he said . + It does nt make me less of a man . +It was very good . +But that game is over . +All of them , she said . + That time will come . + I think there is no one like him , she said . +Where would the money come from ? +She just has to go . +Now it 's three . + We play several days a week . + That is against the law . +They had some time . +It has the money . +They were here as long as me . +Here are a few of them . +I can just see it now . +Now there is less of that . + Most of them are nt any good , he said . +Before we were never a good team . +It had been a long day . +You have to take one off to put the other one on . +He 's going to play every day . +It is today , not yesterday . +You know how it is . +See what it 's like . +For State and Country ? + You did good . + But we no here . +And would nt you know it ? + No city or state can do that . +How can the American people ? + I said , You know what ? +If he 's not , get him out . +We did not see who did it . +That was a good day for him . +You could see it in his . +Are you with him . +Now there are nt any here . +And not just his own . +But how would they think and about what ? +Go do your work . +Until yesterday , it could have been any of them . +He is on right now . +You can go in , and you can come out . +I would just work . + It was nt just the work . + I do nt know what to say , he says . + He had to do what he had to do . +It was made for people who do nt like us . +The Court : All right . +What are you like ? +Will he be right ? + WHERE has this place been all my life ? +No one in my family is in it . +But how high to put it ? + It 's all good , she said . +For me , left and right are the same . +I was like , Come on , man . +And just the group . + He said he was going to take some time off to be with his family . +They did , and we did nt . +There would be no around . +It 's you I like . +I did the best I could with what I had out there . + But it 's not like it was before . +Though I know I should . +I do nt know all of the members who may be in that group . +On the way to work ? +How old were you ? +It 's just that you have to get used to it . + He 's family , and family is the first to go . + It could have been you . + It 's too much , he said . +But some day YOU may go there . +And it will not last . +Is she all right ? + I did nt say that , he said . +Here is what they said . + Not this year , he said . +No , I think not . +There was no way she could get out . +It is in us . +This , he says , will never do . +What is all this about ? +But how did he do it ? +Still , I have to . +They do nt know our family . +It 's over , she said . + Where do you come from ? + I still think we can . +I know if I could be out there , I would be out there . +And what of the officials ? + The more you make the more you have to do with it . +It 's not for show . +No , some say . + If there were two , three . +I do nt think I will , though . + That you did it . +And then he said . + Is nt that so ? + Never been there before , he said . +Few today can say as much . +But it was not what it should be this year . + They are not used to that . +What should we make of that ? + Its time still has nt come . +That was big money then . +Where might all the money come from ? + He had all that money . +But that does not have to be the case . +When the man 's right , he 's right . +But I do nt think it 's that . +She did not want to know , she said . +It 's new business . +But there is another way . + I do nt know who said that . +Both will be right . +No one was there with him . + It 's our business . +Year after year after year . +Now , there is no one . + It 's not about money . + But I had to do what I had to do . +No , it will not do . + But at the time it was best for the children . + This is not one of them . +Now for the best part . +And it might work . +You can have them here if you like . +Is that what this is all about ? +Without one there can not be the other . + Are we their family ? + That 's what we are good at . +More people left after that . + Is that what it is called now ? + But still it 's our people . + We did nt go after them , he said . +But they could have been . + No , I did not , the President said . + That 's a game right there , White said . +Can we now say that we are even ? +That 's just how it was . + You work for me or with me . + Should be , not will be . + And that is as much as I can say about it . + Were you here for that one ? + What you going to do ? +I do nt know if we are . +What more do I have to say ? +All but the music . +He was never still . + Did you make it in here yesterday ? +You should play by them . +More and more , we are the same people . +There was nt much to say . + Now people have money . +I do nt do any of this . + It 's not just me . +She will be in for it now . +I do nt know how to play . + He 's good , she said . +I say it is a war . +What is he up to now ? +But then I will go . +That 's where I said it . + We can put on a show . +One is for his family . +They still like him . +He was very good at it . + I just want to play , he said . + Still with the show ? + Where was I last night ? + But I do nt see how it could last . +I do nt see much after that . +That work is under way . +Well , we do it every night . + Work where you want , when you want . + We want to be there first . +He did nt want to do this . +Now there is no house . + And that 's what this is all about . +They are people who have been around . +You had to see him play . +Did I want this to come out ? + But he does what he has to do . + But here we are , still . + And that would be it . +The best the government can do is get out of the way . + How can that in any way be good ? +That is all they make . +That 's all I did . + But , it 's still there . +Will they get their way ? + What do they think ? + There 's way too many people . +I know who he is . +Where will it be this year ? + They do not know our life . +It was New York City . +Where was he last year ? +Well , two can play at this game . +She would be very good . +But some people see it and they do nt see it . +We say they can . +This is going to work . + I do nt know what that 's about . + Those were the best days of my life , he said . +So what is this ? + But that 's only for two years or less , he said . +So there is a good business going on . +I like my life . + He is never here . +They know what they are up against . + They do nt come back . +And I want to want . +If so , how and when ? + I take it day by day . +I do nt like that . +But he never can . + They have nt had one . + But he does nt see it . + But no one 's used them . +Now it 's here . +To them , this is just another day at the office . + Can I see him ? + I know what I want out of life . +And it did not end . +Now where is it ? + It 's not good here . +We think of you every day . +I would say that . +It was the best year of his life . +It 's on to the next . + But it did nt . + I should nt say . +We will do what we can do . + In the end it 's up to the states , he said . +And you know you have them . +That is : It 's over . +Too New York City . +It 's just out in no place . +But the Government just says no . + We can do that here . + The best of the best , he said . +But it might be a long , long time . +You do nt have any right to do this . +But she never made it to work . +And when you get your play called for you , you want to make it work . + He 's been out there every day . +You can do it all , as only you can do it . +Would you like to come with me ? + The more you have , the more you want , she said . + Most people do nt come out of that . +He 's very into that . +Did nt work out so well . + So much was said . + Now he does nt have her . +We know that we know each other , but how ? +Now I just do nt have to think about it . +I would like to know more about him . +I should get it . +No one 's home . +It should be the last . +What did he think now ? + I just did nt see it . + I think back on my first one . +We just have nt . + They were all over the place . + We were like a team . +If you want to make a good time , do nt come to New York . +But how many of them are left ? +It is the year 's other war . +We left them there . + I do nt have to be what I was . +About every three years , he said . +Where Did the Money Go ? +Just the other week , there were two . + When are they going to get time ? + Who are those people ? + That was just the way it was . +Who 's in the Way ? + You like it , do nt you ? + You have to do that , he said . +It 's the other team . +That is all right . + What was there before ? + Right place at the right time . + Each game is new . + I do nt think it is too much , she said . + So what do you do now ? +We think we are . +But next year he might . +From the People 's House . +Some people do it four or five times . +But it 's not where I want to be today . +We just do nt do it very well . +We want to be the First World . + And that 's about it . +And they show it . + It 's May . + She did , and he did . +I take them home . +And we are going to see what we can do . + Five years is too much . +We do it that way . + That 's it . +It 's our government . +Were we up to it ? +If that 's the case this year , so be it . +You should be used to it . +But last week was one of them . +My man , he do nt know how to play . + But there is no place like that any more . + I can play that game . +But you would have to . +They did nt do it . + I had to , he said . +We do nt even know who these people are . + But he had us . + What was I after ? +Some of them did nt go in . +It 's all good for them . + How are they going to market the team ? + I do nt know what to say to you , she said . +He should nt do that . +Will she like the play ? +May the music still go on . + This is this man 's team , he said . +Those who do nt , do nt . +To do that , you have to be in there every day . +And we are a long way from where we were . + It 's not like I own the day , she said . +All are still in use . +They were other women and women see women . +But how good are they ? +Just one more out , one more out . +What 's left of it . +You come home when you want to come home . +I do nt know now . +But at times , we just do nt like how we play . + That 's what we are about , he said . + But if it does nt make it , it does nt make it . + How long did it go ? + It 's only money . +I do nt want him around . + If I have it , he says . + You want to be with family , he said . +He left in the second . +And it was like the state government . +Now they will be the last . +Our family will never be the same without you . + I was like so many of them , he said . +He has only said , More . +They said he may have left the country . + He 's Back . + Every night , the same place , he says . +He has not found work since . +Or who to see or who not to see . +They were going home . +And what will be the end ? +He would not get over it . +Time for him now . + People used to say , What do you do ? +And if he did not -- or did not want me to do that , I would go to the President . + We want it all . +We are in our own world . +Its going to come up . +Still , he did get it . +I just do nt have it . +But in a way we are not . + Four years ago , I could nt do that . +Here are your people . +He 's the President and we are not . +There is time for that . +But what good did it do ? +But it is nt just us . +They just could not make them . +Yesterday was our day . +I could nt do it . +And they were , too . + I know he did nt do it . +I did nt see him . +Can she do it ? +He had nt come home after work , and he had nt called . + Mr. White , music director . +She 's right to be . +Where did the time go ? + First of all , it 's not in me in as a man . +But not this week . +Her family was her world . +And so it did -- or did not . +Most of them were under a year old . + They do nt like to be called that , he said . +Now , it 's out . + Do I think it 's going to last ? + It was like part of a family . + I know how to do that . + It was time , she said . + It 's the big time . + You are going with me . + Where to Go From Here ? +To get to this life they see . +That 's what they are going to do . + I want my house back ; I do nt want the money . +And he has found the right place . + He has a family . +The people would like him . + But that 's the life of a long man . +You are very American . + How 's that going ? +I just do nt see it . + That was good to see . +Will it want to ? +And these are still here . +We have been there before . +It does nt say for how long . +Do my children have to go through this too ? +And we are all One . + I do nt know where people get this , down . + I want it back , she said . + And that is not what I did . +The end of it . +Then you go on from there . +But if there were a game this week , he said , I think I would make it . +I think I have the right people in place now . +Which will make you more money ? +As long as it does nt last too long . +That did nt last long . + Could he have put out a little more or a little less ? + They know we are the people . + He could be up the street . + You just know how you say it . + It was just one after another . +But it did nt do any good . +And he is not in that business for the money . +Their children have left home . + And in his life , he 's been a man . +And he is one of them . +HOW WILL IT ALL WORK ? +They have three other children . + What do we say ? +We know what he 's about . + All right , all right , she said . +Then there will be too many . + Now , we know right where he is . + You say what 's next ? +But it is down . + The American people want to see life go on , he said . +They know what they are going to do . + When it 's on , he 's on . +Do you still think that 's the case ? + Who 's in it ? + We are a good team . +How will it be put out ? +Some may have children . + That was long . + We make time for each other , he said . +I think this year will be the best one . +And I have nt . + My children come first . + They do nt know ; we do nt know . +One could see that . +Children should not have children . +We had to take them when they were there . + One , two , three , and it was down . + They know me well , he said . +I had them on before he did . +And that 's every year . + I do nt think she 's much . +But in the end I found out that he was . + That 's five for five . +But you just have to know him . +I have no time now . +Now it is time to see the best of one another . + I do nt think he is now . +Man , I just do nt know . +We just did nt make them . +What was the other part of it ? +How could it be any good ? + Good to go in five years . + They have to work as a team . + What Do We Do ? +But there is still time . +I do nt even know if they work out . +We have found it . +It 's good people , good law . + It was good for me , he said . + We did nt before . +She did show up in the end . + What might you say to that ? + Now they have to make their case . +They have nt all season . +He 's going to be there . + He 's going to play . +Who did it , is not . +No other team called him yesterday . + And they are like , Just . +That is the best way to go . +Now he may have to play more . +Do I have that right ? + They were all against it . +But law or no law , people will come . +But we now see it was nt . +But we have a president now . +Not that it was not good to see him . +We do nt know who he is . +That 's what made him who he was . +What might it have been ? +But where are the people ? +And then it will go out . +They just get to do it first . +He is too new for that . +He 's white like me . + You just do nt know what to do , where to go , what to say . +But she had nt . +They still have to play . + If you are not out there first , you do nt make any money , he said . +Next year would be good , too . +Each and the other . + I was going to do what was right , he said . +It was the president . +Do I have to come right out and say it ? +I was nt even in school . +But there should have been . + You have to go right back out the next day . +How big was that ? + Come they have . +Still , it was not a good year over all . + It 's not over , Dr. New said . + I do nt want to do that to him . +My house will go . +There 's just so many of them . +But not for us . + Who is this man ? +I think they are on their way out . +To go , not to go . +The next few years ? +But what was this money ? +I said we are not going to do that . + That is not the case . +They said we had to come to their high school . +It should nt be . +Well , here we are then . + That may be . +Or should he go for it ? +But should this be the case ? +These people just do nt say they are from New York . +They say , you know , What do you think about this ? +Most people are good people . + These people have been good to me . +From then on , we do nt know about it . +We had to say no . +But you are going to see us play well . + You just say , This is what I want from you ; go out and do it . +Not for the most part . +He could do very well . +It is also called A Court . +Though it 's not . +Which is what he did . +But it has a place . +That was not what the group was after . +But this may be it . +It was the only way . +But you still have to play your game . +What will it be called ? +I do nt think they are going to do it . + And it has been . +You get what you can for them , and get on with life . +They know what they did . + People have the week off . +And what will be left ? + He said , Is nt it ? + He was a man . +That 's what this country 's all about . +Does he have a country ? +The President will go home . + If the United States . +I do nt get to do that in New York . +Have we been here before ? +And you were not ? +Before , I would work . +Here you have to work at it . +But that is not to say that they will . + That 's how we play , who we are . + It 's not if we get it right ; we will get it right . +How do their children do in school ? + We are going to work our way up , man , he said . +And that will take time . + You do nt want to go . + All I can say is that we did nt show up as a team . +That has not been the case . + I did nt want to do that . + We do nt want no children . +There 's only one way to do that . +I have said that . + It 's like a police state out there , she said . +We never get used to this . + But I do nt want to be the same . +It 's the only place to be . +He will go back . + Or does it ? + There are people who are very good at that . +I do nt want to do that this year . +That 's how you know it 's going to be good . +And what is the only country to use them ? + It is time to put an end to this . +What about my work ? + I say , I know . +And what , in the end , could be more American than that ? +It 's going to work out the best for me . + But I still do nt know if he did it or not . + I said , Could be . + Where would I be ? +I do nt want to go home . + But I did just as well . + He 's not a man . +I want a place of my own . + I do nt know if I can . + We say , That 's the way it was -- or one of us said that . +The former President was no good . +He 's like all of us in public life . +It 's like that . +Not that all of it has been good . + But he should nt . +We think that most people do want us . + People do nt want to think that much . + Now come on , he said . +I want to put it in . + Was it good , did you like it ? +Down , down , down , way down from last year . + What is the use ? + I never have to do what she says . +But we made the best of it . + It could be for a while . + We do nt have any money . + This is your country , the President says , and I want to see what you want to do about it . +But so do they . + Who says he can do that ? +They think they do , but they never know it all . +They know who you are . +We would like to do that . +Or so people say . +What about the police ? + We called the police , she said . +They know it , too . +All 's right with the world . + This year , I think we could make it . +How High Is Too High ? +They were there and I was there . +There 's just no good way to play it . + And the best part is being on your own . + It 's the best year , he said . +They have been before . +Would we have it any other way ? +We do nt have to make it that . +But it was the best he had in him . +This is our President . + But I just could nt see it . +He 's not back . +Not so , it 's me . +It is not for show , though . + We did nt go into this to make money , she said . + People come in two and three times a week . + How long were you there ? + But it 's just not that way . +Too many people now want it over . +Where did he come from ? + I would nt say that , the second said . + We did nt come from money , she said . + I do nt want to be like me . +That 's what it is . +That 's part of the work I want to do . + That 's too much . +No , no , they said . +I did nt see any , but they were there . + No one is going to say no . + I did , did nt I ? +If it was nt , it would nt be . +There 's so much life . +He said they did nt have any more money . +And did nt know how . +We did nt play well , but we were still in the game . + It 's just music , she said . +This is his day . + That 's how we have to play . + I think he said that , did nt he ? +And he just was nt . +People might not know it . +How will they get home ? + That 's the only way . +Make that very , very good . +Here is how we will do that . +I think it was good for us . + Where will they be five years from now ? +We are like they were a year ago . +Or was it their family life ? + With two up . +Most , though , are people . + We are not going to get any money out of it , he said . +It is because there is no government . +It 's right here . +So I just do what I can . +I want to get well . + She said , You are like me . + There 's not much more you can do when they say that . +Not to have to work . +Here it does not . +I never want to go back . + Just so you know . +He 's the President . +He said so last week . + Be a man . +He has it or he does nt . +But I know what I think is right . + For the People ? +Good people do nt work just for the money . +He would have been right . +What 's more , it 's all a game . +This is the only way out . + I , I , I do nt think that 's right , he says . +The way it is . + Can I have that one there ? +So we have to see . +WHERE were all the people going ? +But it may not work this time . + And that was only a few years ago . + We do nt know when it was . + They want to go . +It 's just there , and that 's all it does . +We want to see him . + It 's another world , this one . + We can get more from this team . +And it would nt be good . + It 's game to game . +How could there be music ? +But he does nt think that way . +We may never know . +She said he was a good man . +But he found that for him it was . + I want one of my own . +Here is all the time , left and right . + Some made it , and some did nt . +As she said , she had been there . +Those who do nt do nt last long . + So what do you do ? + They may be . +We are still not over that one . +Some of it has not . +We just have too many people out . +Last year , I could nt do this . +Think that 's it ? +And they know we know that , too . + They are both good . +But it was not made public until now . + Two or three , he said . + They are back , he said . + I go back when I can , but my life is here now , he said . + I can still go to the well another time . +You do nt have to say much about it . +That 's what all of us think . +How Will It Come Out ? +We did not know that before . +Not in my place . + It 's what you do , she said . +I want to play . +How can you not think that ? +What is it like at your office ? +It will be because you want to . +The game has to come first . +I just do what they say . +You get it today . + This country is not the same , he said . +The public is right . + I know this country . +We did all of it . +And what should we think of that ? +We did this yesterday . +Take it from there . +But it 's the other way around . + Well , that 's just as good . +Should He or Can He ? +It is the only life they know . +Now I do nt go back . + Every day is the same day . +After all it is a business , he says . +It 's just not like that right now . + And I have to say no . +Will you use them ? +He should have come out with money . +You may not be like that . +I think we know who the people are . +He 's an American . +Some will go out of business . + Do you see what I see ? +I said , I know I can do that . +They play against each other now . +It 's just too much for us . + Now they are out there . + I have no other house . +Two said they would . +Many are still here . + You did what ? + It 's just one week . +I did say we ? +I will see to it that we do . +But it 's not the same as it used to be . +And all of that is to the good . +He is still in office today . +But I do nt know who he is . + You know , there 's not much you can do . +Think what it will be like to go over there . +Other than that , you are on your own . +But it would take money . + That 's it , he says . + It could take two . +But I do nt think this is the way . + It 's good , she said . +You know : This is what we do . +Who is in the right in this case ? +Not at first , that is . + Who are we going up against ? +You do nt want to see it . +There is no other time . + Have you been to one of these before ? + He can take over a game . + He said : Life will go on . + I can do it all , he said . + I go by what I see . +It was also the last . +But what is right is right . + We have to work it . + They play , he said . + They did nt last too long , did they ? +And it 's still there . +Want to just take him home ? +That was the end of her . +This time he said to come . + You have to work your way back into it . +I had been with the company over five years . + And most of them do nt . +It 's the man . +We made a right . + What if he did nt like her ? + And for much less . +But he never did that . +And that 's what it is . +How many of those did he think were around ? +This is in any country . +But I say no . + I just want to get on with my life . +At me and him . +And that 's all I can say . + You have to get up every day . + I will not , I will not . +Now he had one . +They were on their way home . +If not them , then who ? + Who are they ? +So what about her ? +But now , each city is what it is . + Last year was good . + Well , I do nt know , he said . +No , he said . +The game is the same . + If you can get here , you are in . +That , too , they did not know . +What will he be to me ? +And who are they ? + That can take some time . +What can you do with it ? +That would be the play . +All the people go there . +Each year there are more . +If so , which should I get ? + Would he do that for you ? + That is what it was , he said . +I do nt know , I do nt know where they all are . + You know we are here . + Well , do you think . + And more of it . +We did nt know this . +I think they want to go to the show . +People did not like it here . + One for us and one for them ? +Can I still do this ? +How does he know that ? + But it 's war out there . +That was more or less the end . +But that 's not me . +It 's our right . +And now those days are over . + Would you like to just take it right now ? +She does not go out . +His family was his life . + Now it is a business . + Now you know it 's time to go home . + They say , This is what I want . + Where do you go ; what do you do ? + I said , It 's up to you . +All he has to do now is make the team . + How Much Money ? +It 's three out of five . + A new one or an old one ? +She just had it in her . + And people still say , You know what ? + They should have been . +They did say that ? +I could nt get to him . + I said , Come and get me . + I do nt think it has to be that way . + This is where it 's going . + No one will back up . + Not about who they might be . + I like it all . +But that 's just the way it 's been going . + We have no more money today . + So do nt do it . +But how were we to know ? +They get off on it . +Only if you are out of it . +What did she think of what 's going on in the world ? +He was here last year . +So we are going to have to make the most of what we have . +It 's like what next ? + John was a good man , she said . +But people make it work . +Now where do we go from here ? +I have the right to make it work . +Now it 's just more people . +I , I do nt know . +But that would nt make it right . +They know it too . +So what could we do ? +It 's not that at all . +Here they were going five times a week . +Four years ago today . +It did the first . +That would be some team . + I think what you see is what you get , he said . +There go the children . +This man is a good man . + It 's not that long ago , he said . +And that 's that I know of . + This day is very good . + Before we were part of this and part of that . + We do nt know where to go . +And in a way , they are from another world . + We want to see what 's going on , what 's in the market . +My game is not the same and never will be . +But I do nt like to think that . +Does he think about his days in public life ? +People might have to work and not show up . +You are not going to be here long . +For several years , she said , she could nt work at all . +My life is long ago . +So I will not be at the office today . + This was the first time . +But he has little to say on this . +What 's on your next show ? +It 's more up to Him than it is up to me . + That 's all I know to do : work , work , work , he said . +It was the home office . + What could we do ? +Not that they would . + What will we get out of it ? + I would nt say so , no . +So much to do , so little time . +Well , they do nt have that . +After you use them , you do nt want to go back . +We want to use it . +But no more , she said . +They do nt go to war with each other . +It does nt do me any good at all . +No , they could nt . +I think this is a little more than that . + We just did nt think it was right . +It 's a new time now . +But there 's not . + They want to get on with life . +I think it 's the people 's money . + We did nt last time . +But that is nt the case . +So did most of the world . + Now they have one . + I just want him home , she said . +Even the first part of this season . +I want to be out there when he does it next time . +But first you have to get there . +Left us five years ago . + But we are going to get him . +It 's how you get out of it . + This is just another . +Can you get it for me ? + People know who he is . +Long is out here . + Because I have to get out of here . + That 's just the way we have been . + But not too many people come . +It 's a new time , he said . +So we just have to play well . + I do nt have to . + It does nt do any good . + See you next week . +But where were we going ? +We would be a family . +What are you going to say ? +You are going to be in there . + We just had one of those years . +And now they have one . +We are not going to have another season like that . +They said , He 's here , no , he 's there . +So today I did . +This was a good day . + I think so . +I do nt know what it says about me . +What can they do now ? +He 's going to play here . +There 's only so much you can take . +I was nt going to be . +He has the right . +For the general public , we will not . + Too long , she said . +He said it did not . + In this case , it did nt . + And what do I say to that ? + We could nt get the money . + I get where they are going . + But where he put it down , there 's not much you can do . +It is going after women big time . +They just want to see a good show . + Just in case , one of them said . + I said , What war ? +He says : Here 's all I know . +Could He Not Know ? +He 's been there , did that . + That 's what I come from . +It 's time to do so . + And where are they now ? +Or even most of the time . +It 's a game of What 's out there ? +I know I can play here . + And we are still here . + But it was nt about the money . + People want to go back . +What are you going to see ? + It 's been here how long ? +Since that was the case , they should do what they do best . + Get out of my way is nt it . +How did I get there in the first place ? +All of us were still . +You know who this is . + I do nt have that many . +He was second from the right . + We have a few years left to go . + I did nt have time to think . +It may also be one of the last . +This is my place . +What a night , right ? +We think we could do well at it . + This is all new to them . +We do that with life every day . +All around me , it was like it is today . +But say this for him : It is his own . + This show is not going to be . +Get out of my way . + Did we do that ? +If it do nt work that night , it does nt work that night . + There it is nt , he said . + I do nt want to play that game . + But this is my first time in New York City , too . +It 's you against him . +I can do that any day if I want to . +And what would it be like to think this way ? +People know about it . +That is what it is like . +Now does that make it right ? +It 's only the first game . + If it 's good for people , they should do what they like , he said . +That 's because there are so few of them . +Money , money , money . + New York should have the money now . +And now we can . +Make the best use of it . +This is my team , our team . +He called in three more times . +But it was not to last . +At the same time , you have to come and play . + That is what I do , she says . +It was not like her at all . +It 's been too long . +That is , it 's American , but he does nt want it to be too American . + So what now ? +That will be then . + I never said it , he said . +I do nt think one should get more than the other . +This is what we play for . +We are in it , she said . +And they did nt . +That 's the play . +It 's like you know where the next play is going . +Have not and do not . +There should have been another way . + I know he did nt want to get up , too . +That 's what he can do . + And so they did . + Can we see it ? +I know she does . +This time , it did not come . + We know that , he said . + It 's time to go back to work . + Well , that 's it . + And here , too . + This is a good team to have . +He has been since high school . + It was well put . +Can it never make ? +Were they a good team last year ? + It is and it does . + That 's the way it was back then . +People are not going to go back . +It 's still like that . +We do nt have much time . + It 's not that good . + That 's what I used to say . +Could you say what this might be ? +You will have them in three days . +It 's like money . +It does not show . + I did nt think about it , he said . +That is now a new law . +But what should we do about it ? +You do nt get that back . + He did nt go out . + There 's a long way to go , he said . + We do nt know what 's in here . +It was who I was . +Then you get another . + Do you think it 's in here ? +We are the same man . + He said , We might just have to put them right back up . +But we just do nt know . +They say they like his work . +She was , in a way . +One of Their Own ? + You know that going in . +And you can not . + She said , Not good . +I see more and more people come back . + It was good being out there . + What did she think we were going to do ? +It did nt even have much to do with me . +That 's all I know about him . +I think it 's been good , though . +And we are not going to go back . + But they never do . + He 's part of the family . +Just go with it . +I do nt know you would nt . +You left me five years ago . + It may not be over . + They do not use it at all . + She did , too . +I do nt even know what it was called . + And that might be all they have going for them . +It 's all right , though . +But you still can . + War , he said . +He did not have much to say . + I think the market is there . +But they play on . + I did it . + Is he or is nt he ? + I do nt know who that is , she said . + You know the people . +I do nt want to go there . +They say : What about us ? +BEST DIRECTOR , PLAY . + He was the money . + I can see that , he said . + First one on , first one off . +And you would nt want to . +It will be , in more than one way . +And if that 's not here . +Then , he said , It did not go well . +Will she do it ? +Now it 's up to him to make the most of them . + What did they want to see ? + You like it ? +It 's a school night . +But they were few . +They are not on the street . +I know you can do it . + Where there 's one , then there 's two and three and four . +And these are not just any companies . +And that 's the way he 's going to play . +I did nt make it , we made it . +It did not work out last night . +And that 's only one street . + They are going to go all the way . + He is back in my life . + He did nt just get here . + He did nt take them down . +They are going to school . +I just did nt get over in time . +He is going home to be with his family . +You do nt see that today . +I did nt have any money in those days . + How many times are good people going to have to go through this ? +We want to be one of them . +People come and go . + They are a way for people to show off , he said . +So what do most of people want to do ? + Should we do more ? +All is right with the world . +I did nt play my best game . + We like him there . + I think we are going to be a good team right to the end of the season . +It is four , not two . +That is our right . +I do nt have no money . + I did nt want to do it any more , she said . + She 's our family . + Because I did nt do it . + We had to take it in , what was going on . + It 's like a high for me . +It was well off . +How can you work with people like that ? + This is the best part , he said . +He did nt want to see him . +If you have one you can never go back . +It had a life of its own . +I work all the time now , and the work is good . + She called me about a week or two ago and said the time was here . + Or do you want some more ? +I do nt like when people want this and want that . +How will it work out ? +THE WAY I FOUND HER . +That was nt me . + It 's his family place . +Does he know where he is going ? +That is the good part . +Still more are going . + But I do nt think we see it that way . +It was another world . + Right , he said . +There were three more just like her . + How old do you think we are ? +One of them said , I used to have a . + And you know . +You only have but a few left . +Or , he said , if they work . + In a way , he was right . +And then , we still do nt know . +He 's just war , war , war . +What does she make ? + I was in high school . + You do nt know when you might go . +The case is over . +You had to be . + There never was , and there never will be , another like you . + You can have a family , but they have their life . +How good is that ? + I work , she said . + Would that be all right , too ? +In the United States ? +Will he play today ? + How can you not think ? +They both want you to do as they say . + He 's been with me a long time . + People would say , how will he do it ? + And he never did . +And I still do nt know what it is . +If she 's not , who will be ? +That 's the law . + That 's the best part , he said . +What does he have now ? + I know that very well . + He was little , she said . +They are going to do the best they can do . +That has to end . +When the game is over , it 's over . +If I do nt , then I do nt . +I do nt know how I do it . +So where do we go ? + We did nt play the other . + It was just over a year ago . + The business case is a good one . + Come on , I say . +I will never get over it . + I like to go there , she said of the Family Place . + That 's when you go out on your own . + Come here , he says . + Well , this was their way . +It 's going to take us a long time . +And we want to come back . +Only two are women . + Well , what can you say about that ? + There were five of them . + We have a right to be part of her life . + What do you have in that case , man ? + What Do I Know About War ? + I did nt know where I was , he said . +That 's how you work . + I do nt know how long this is going to take . + President of what ? +I used to have to . +But that is what these two women did . +The people are there . +Now , I have family here . +All of us will do our best to do the same for both of you . +They did it on their own . +But he has no money . +And there never has been . +She did more than that . +So , what is new ? + I want more life , she says . +But how long will the good times last ? + Now I know more . +And they are many . + This is too big . +If they do nt want it , that 's also all right . + This is not from them - this is just from me . +How do you do ? + When the war is over . + After all , you are in her home . + I just do nt do that . + I have to go back to work . + First of all , it 's way too big . +But that was two days ago . + Which of them is right ? +So I had to go to work . +It 's when I have the most time . + It has to do with the office . + It 's time for us to get out of here . +And that 's because of him . +All we can do every year and every game is do the best with what we have . +It is about this family . +Not because it is good for them , but because it is good for us . + People would say , What do you do ? +But it was nt my team . +He can say that . +So where to go from here ? +There is no law . +But they did nt work . + They do nt know . +And they are there every day . +I did nt say officials . +And another one will be here . + What does he think about it ? + He did nt have any at that time . +Well , in a way . +Now what do you want ? +Who do you think you are , being here ? + My public life is over . +He does this much too well . + I do nt think it will end . +No , more -- four . +And then they go . +He was never part of a set . +He did what he does . + I know my state very well . + Do nt even think about it . +It 's still a market . +Where is the President of the United States ? +And so , for a week , we did . +That 's not right . +But now they see you and they see money . +Those days are back . +Or would if they could . +But this is this year . + I know it can work . +And this is not the end of it . +He was right next to it . + I would think so , he said . + Every year , she said . + It may well be more . +He did not play last night . +But they make me think of life . +Up and down , up and down . + No , we just play the game like we should every night . +Do nt You Know There 's a War On ? +This was her home . +Who , or what , says so ? +It is on the market for the first time this year . + We do nt have it , he said . +Well , there 's still time . + She was right , he said . +Me and you can work this out . + They know me . +That 's what it 's like . +They know it 's a big game . +It just did nt go down . +He did , and then some . +They go off what I do . +I do nt know if that is the case . + What 's new about that ? +Their music is , too . +I do know how to play this game , though . +I do the same with them . +There is no way to make that much money here . +You were nt here . + What was that you just said ? +What do I do , what do I say ? + I did nt know him for long at all . + It was all right . + Get out of here . +He does nt want them this way . +We may get them , but we may not . + This is just business , he said . +It was just another day . + I do nt know how much money I have . +But they said no to that , too . + I know what they are going through over there . +It 's time for the team to be a team . +I did this because I had to . +I do nt know how it did nt go in . + You just did nt go there . + But that 's the case now . + How did they get there ? +I want to say to this government : your days are up and you know that . +He has not been out of it since . +When will it end ? +It was nt that way last year . +They did nt even like each other . + I think I do the best for my team . +That 's five years ago . +If they did , I would nt want them on my team . +It may all have been too much for her . + That 's the way life is . + I know it is for me . +And so it will go . + We do nt know who did it . + That 's all he said . + We called the police . + In my day , there were no women at all , he said . + To me , it 's home . +It is nt because of what I know . +I see now that that 's not the case . +That 's just not right . +They are as good as they could get . + I do nt think this is the end of it . +That was nt all . + You may see more of those before it 's over , he said . +Now he has company . +You might say that . + It was all music . +Is that what these women want ? + Because that 's where the money is . +It could well be him . + No , I do nt think so , he said . +It 's time to say : So what ? +They are going to be on my case . +I did nt know if they had him or not . + What is it about ? +Could it last without him ? + Where did the money go ? +A : I was . + We did nt get that this year . +That 's going to have to come . + Is she still there ? + This is no place I want to be , he said . + I could do that . +I do nt think you want to do that . + This city will do that to you . +Now it is the other way around . +I was out there last week , he said . +Take it to the people . + It was the only place we had time to play . +How many women have to get their children home . +How does it get there ? +But is it the end of the world ? + But still , she will get through this . +That was their world . + The people there are good . + They are going their own way , he said . +I do nt have to be a part of it . + He did it when he was here and he still does it . + Then you go get it . +Who will go next ? +Is she or is nt she ? +It 's just that they are into the game more . +At this time of year , they are used to it . + What is going on with that ? +What will they do then ? + It 's just not very good . + And she said , I know that . +For one week , he does . +He 's going to be back . +They still may be . +They could have said , Do nt go . +I can do more for them by being here . + You can come and see it any time you want , he said . +We would like an end to this . + But for me it was like family . + There you go , man . + Me , he says . +It was what New York could do for him . +That would be another one million or more people . +His team is still out there . + People are going to think what they want to think . +We only have one of her . +Do you still go ? +Who were these women ? + They did nt know who I was , he said . +That is what they said last year . +But if we did nt do it , who would do it ? + We have a long , long way to go . +We go out and we are a team . +What is going on , and where will it all end ? +I want you with a life . +But the next game is the only one you think about . + We are in every game . +That 's the way we left it . + But this is part of our world . + You know how I think of it ? + You just have to go out there and not back down . + We found they did nt want to think about it . + This is the way it is right now . + I have several of them at home . + Now , we are used to it . +For her , he could . + I was the one . +There is still so much I want to know . +For the most part we did . + I go in every time I can . +But there was not . + You do nt want this to be your last . +But it is what it is . +They still are nt . + Well , most of them . +He does not see it that way . +So it is with its music . +That is two too many . +You do nt see that in the big city . +Can we do it ? +Some people do nt have to be . +They were on their game , we were not . +What do you do then ? +But we do nt say it like that . +Now she 's here . +It was four , not two . +Put it this way . +It will be there when I get back . +That was a few years ago . + Good , good , he said . + One day is still one day . + They want it off . + People want you to play . +I would never do that to you . + And you see this ? + What do you think is going on there ? + She 's too old . +He is , after all , one of them . +I just do nt have any money . +How are you going to say no ? + I do have a few . + I see it all the time , he said . + He 's at first . +So how do they know where to go ? + Do you think the game is still going on ? +But that 's not going to be the case this year . +You think you do nt have to do much . +If you are going to go for it , go for it . +She was in the right . + When you get right down to it , we did nt know these people , she said . + We have very little of it . + Right , she said . +That 's not so . + That 's just part of the game , he said . +We know he can do all that . +Because we do nt have time for it . +And well it might . + Get used to it , they said . +It has now come to this . + They are such a good family , she said . +You do nt know if you are going to go to work . +He did nt say what he would do with her work . +They go on all the time . + She did the best she could with it . + He has said he will not . + What do you want me to do about it ? + This is my life , he said . + That 's what they are used to . + So now you know . +You have to have a life . +They did not even know . + Very few people can do that to me . + He had it . +It 's going to be a good year . +It 's like this all over the world . +The money is too much . +That is what I would want . + That 's the best way to do it . +He 's the next one . +And that 's because of what we have here . +But I want to see what 's going on . +But too long for who ? +That 's the how . + I think he did that last week , too . + There is no other way . +To be here every day . +So you want to be in show business ? +The same could be -- will be ? +Because of you we are . + You can do it all , she said . + It 's not me . +I see that every day . + But when we have children , we will . +What more can I say to that ? +But he has never been here before . +And he left it at that . +You know what I do ? +We just do nt know when . +We should work more . + I do nt like it at all , she said . +You are our life . +Where would I go ? + Too many people , he said . +If it was nt right , I was nt going to do it . + I could nt take that , he said . + But he said the United . +It 's new , and we want it old . + He is all right . + There 's more . +They want us out of here . + We are not there . +But these are nt . + It 's just going to take time , he said . +It 's a long , long time . +I know when all of them are . + If you are not that good , you have to show how good you are . +It can go in a home , not a house . +I go around her . +It may take a state . +How long without it ? +Where were they going ? + He never has been . + I like work , he says . +So was his team . + It 's not about them . + Some other people were not , he said . +Now You Can Do Both . + And not in a good way . +I think he can . +Do I know them ? +And people do nt . +We have a good team . + So we had some work to do . +New York , New York , it 's a . +And since I work there , I know it . + It was nt about money . +Children do it all the time . +We do nt want to be in any of them . +I still go out , but not as much as I used to . + WHAT do you want me to do with this ? + We know the market 's going down , he said . + I could nt get up . +He was a good man that way . + How did you know you were going to see me ? +That is the right of any business . +It may not last . +So you get what you can . + It was this way all over the country . +But the money has just not been there . +What was that about ? +They have my money . +That about says it . +But we should nt put them and their children on the street . + How would she say it ? + You know what 's going on , but you do nt think about it , he said . +And it 's been around for a while . +They are too much a part of it . +This is our way of life . +Here 's the one . + I did the best I can . +A long time back . +One down , five to go . + What 's new ? +And I like him . + And I said : How did I see you there ? + They are going back to the way they used to be , he said . + Who 's going to put it up ? +We could nt do that . + You should get out of the house , she said . + They were so good . +You have to think you are good . +How would he get to know ? + There 's a market for this . +It has been that way for some time now . +He 's down to three . +How much did it set her back ? +I can take it , but it was just one play . +What would you do next ? + We are the people who have not left the city . + I have a house . +There 's just too many people on the street . + It 's more like high school . + We were nt before . + Well , are you going to take it or not ? + Then I found out that he did nt have one at all . +People do nt know him . +The one at your office . + What do you think we should do ? + I can play what I want at home . + People think we are out of the game . + Is that too much ? +About four million are children . + We do nt have any money , she said . + There are too many . +And then you say , Here . + Will it be down next year ? +For the time being , there is no way out . +Use every one of them . + You have to get the last out . + There 's no money like new money . +I know good and well what I do here . +Four times that many ? +How would you like it ? +We do not want the Government . + I do nt even know what the part is . +What did she want him to do ? + We have to go to court . +It 's too much to take . +So are every other country 's . +We are still there . +But not last night . + One year , two years , three years ? +They are the law . +But there has to be a market for it . + Which was what ? +That 's very high . +Many have their children with them . +There may be one . + It 's right there now . + IT DOES NOT . +We have no other . + I think we did that today . +Most people never see it . +But I think they want to use it . +What business was it of his ? +High school , under way . +But there was more to it than that . +And he says this four or five times . + It has been there for a long , long time . + This is the best place for me to play . +He 's like right down to it . +There it was all about the program . +You do it so much . +It 's going to be my office . + He had no home to go to ; she had a home but did nt want to be there . + Is it the money ? + It 's one game . +I just want to play well . + We know what the game is . + Who are you going to get ? + Not now , she said . +My next to last night . + He should know . + It 's never as good as this . + I think we know we are not that good . + You do nt know what it 's going to do . +I do nt know who does . +Have a good day today . +What did it get her ? + This is all I have . +Then there is the big one . +What does it do ? +They should think that way . +He had money as well . +My family is there . + And he could nt have . +More or less , that 's what I did . +Most , who have children at all , have just one or two . + It 's been a long time . +But this was war . + That 's not the way it 's going to work . + Will women like it ? +But he could end up with as few as two or three . +This is only for you : It was too long . +Many more than they think . + It just could be . +There 's no way we can do that . +They are right there . +What can we say ? + But I do nt see it like that , she said . + See what these are ? +How come you have nt been to school ? +And that 's the end . +There is also show business . +Or so I say now . + I do that , he said . + What do they want ? +We want it all . + No , it would nt be . + But I like the music . + You do nt want more than that , he said . + Other years it would nt have been like that . + What was he going to do ? + But that was good , she said . +That was right before . + I very well might have , he said . +We do nt want to go back . +Just do it , man , do it . +But , he said , the war is not over . +How did that go over ? + Just the way that we did it . + I did nt even know what it was . +They were nt ; they did nt . +That was the best I could do . + I do nt know what he said yesterday . +It will never end , never . +They are too big for that . +But , still , we want to know . + Now how could that be ? +She 's not around . + He said , Who do you want to play you ? +We think it could get good . +NIGHT life is big business in New York , very , very big right now . + She had another one on the way . + I did not see him when he said it . +They are all very , very good . + We did him three times , she said . + I see , he said . +There are nt many around . + How Do You Get it ? +It was nt a show . +It can be that , too . +The play , this time around , is not . +That is my family . +Then she left New York . + I like all people . +To us it 's who we are . +I do nt even know if it 's still there . +So I just be . +But we will never know . +That may take all day . +But that 's life , right ? +But it does take time . + All we want to do is play music , he said . +They come from around the country , some even from around the world . +But it has not been used for years . + For a while it did . +I want to show you what that is . +I did nt set out to do this , just play . +War , war , war . + Not at all , he said . + Then that should be a five ? +But the people do not say this . + We do nt want to get into it , he said . +Little did I know what was to come . +I do nt know if there 's any left . +With which I will never part . +And what do you know ? +People are up all night . + I have so much more to do in life . +Play well , that 's what does it for you . + I do nt think so , but I do nt know . + I would nt say no . +We all were going with her . +He had no money . + This is my country . +What is it called ? + I like this , he says . +I think she should do it . +Or should nt be . +They are in last place . +That 's not good . + I have to own up to it . +Where will that money come from ? +This was his last day with the company . +But that 's all right . + This city is back , he said . + That 's not what he does . + I did not know if I could go on . +I do nt think any of us know . +This game should have been over a long time ago . +It was just a good night . +What do you think the companies would say ? + Even if they do nt know who you are . + Where is this from ? + No , not here . +This is all about music . +We are with you all the way . + But it is the right way to do it . +The people in her life were her life . +We have to go and get them . +That was their way in . +Most of them were . + Too high , I said . +And he may have been right . +They think they can do it . + And that 's what they do nt like . + They do the best they can , he said . +It was there before . + I just know that 's how I do it . + In five years ? + No , the white man says . +Three or four times a year ? +I know that much . + They know what I know . + They all want to make money . +In this city , time is money . +Business is there if you go after it . +But her work is very much her own . +But it 's all right if he does nt . + No , no , no , he says . +But we know they are there . + Do what you want with me . + She could nt get out . +And what will come of it ? +When will they get out ? +And now he has it back . + I have a right to do it , too . +And he does it . + How do we know what we know ? +We know who you are , you know who you are . + All right , then . + They are a New York team , he said . +But how do we get from here to there ? +He says he is . + This much , he said . + But that 's not me . + That was the old me , he says . + But that 's what some people around here want it to be . + And there 's the game . +How much do you see them now ? +He said what he had to say , and I said what I had to say . +But you know , that 's part of my life . + This was the place to be , he said . +Many of them now do not . + I did nt think so , he said . +I take after her . + It is against the law , she said . + It is home , she said . + People come up . +We play off them . +Though we did not know it at the time . + It was good to see . +And not just most of the time ; all of the time . + All the same . + Some people said you are too old and could nt take it . +But how could we ? +But I was ; we all were . +I think there 's been too much of that . + Now , it 's time to use them . +We just said no . + People will take to the street . +But there were too few . + People know about us now . +And that could be a long time . +What 's my next play ? +No , the office said . +And it 's not the first time . + We did this to make money . +We do nt know how to take it . +Do you have a week ? + Might nt those be they ? +Many more are women . +But what was it like ? + It 's going to be a big game . + Who 's that man ? +How many would want to ? +Who we are is not what you see . + I never could get that . +In no way can I do that . + The good old days . +All of this is to the good . +Now how would that work ? +This could be a very good team . +You are not going into that house . + But now it 's all over the country . +Here are four of them . + We can go on with our season . +That 's what you play the game for . +Or they will not . + The President 's right , she said . +But few people do that . +No time , no . +And what did he want for the children ? + When you are out , you are out . + It 's not the time , he said . +It was to be the first of many . +How much more do you have to know ? + They do nt make any money on them . +There is even good will . +Most people do it the other way around . +But it will end . +So I said , If he can do it , I can do it . + Then : Come on . + It 's like a court . +School of Law ) . +We play as a team . +I might say , No , that 's it . +There will be many more . +They do nt want to play the game . + Well , you are there . + That 's the way we have to be . + I think they know it 's not just a show . + It 's not going to be as good , he said . +That is not the American way . + It 's what you do . +Do it my way : go for both . +But that was not all he had to say . +Should she take it ? +We both want that . + We will not have a season at all this year . +She did it in two years , not three . + She does nt get it the way I do . + Who should I make this out to ? +Just a little , but still . +Just for a year . +He does nt even want the money . + You work , he says . +Or , first off , what ? +That will be the case for the next two to three years . +You did nt know it was his . +But this is just a game . + I was right there . + Well , here it is . + But there 's not many of them . +This is as it should be . +What do we see in it ? + But they were nt and I was . + People do what 's best for them . +She 's not that way at all . +What should you do ? +But not only that . + And we think there 's a place out there for this show . +She 's all business now . +But that was in her former life . + But I know I can make it . +So it has been . +And I would nt have said that a while back . +And that is what I want to do . +We can get through it . +Have you been called ? + Two days , he says . + You had to . +We know too little about the place , but at the same time we know too much . +He would like to get back to what he does . + They could come down , or I could go up , he said . + After all , he says , they can just say no . +What would they say to me ? +I do nt think it 's right . +It had to be the both of us . + If you are going to do it , you might as well do it right . + They were nt there for me . +It 's not that big . + What right do they have ? +And who would he be ? +But I still had two of the three . +Was it a war ? + This was not such a case , he said . + He 's still a big part of the team . +They did then , and we do today . +She also was a former director . +What 's with that ? +And that 's just the federal government . +I was like , Where was I for all that ? + But it is what it is and we have to go on from here . + It 's not right for the country ; it 's not right for the team , he said . +Who 's to say what you are ? + Here 's how we think , he says . + They are a part of my life . +We could nt go back there . + I want to take a few days . +As long as he can play out here , then he can be out here . + White people do nt play with children , another says . + This is not my time of year . +I think that 's too big for me . +They are going back home . +They just have to get to it . + It just would nt work . +Well , part of it . +Next time , I could get it going . +These are the good times . +And that was the game . + That 's after school , right ? + I have to have it . + If I can play , I can play . +You can do it one on one . + He 's very much his own man . +I did nt much like it . +But this one was good . +I do nt want to see a game like the last one . +What they did I do nt know . +Not that they used to be here . + And what 's there now is going to take a long time to go . + I do nt work , he said . +We are out of it . + Take your time , he said . +You just want it all to be over . +If not well , what not well ? +I do nt know where . +And you know how it is . +Were it only so . +Or may not come in . +They do nt get one . + They are like children . + If it 's there , it 's there . + There 's not much you can about it . +Not many , he said . + All 's good , he said . +How can we do it ? +He did it five times . +That does nt make it right . + It 's the only place to go . +And I know we did . + You have to . +Not only for this season , but also going into next year . +I do nt think that 's right . +That 's us out there . +It was only our first game , he said . + I did nt know where to go . +If it was not , do it now . +What more do want ? +The police are only people . +They want to take it out on you . +They are in New York . +This team is good and New York is nt right now and it 's like , Man , what do we do ? + They did nt say what it was . + It 's all about who are you are . +It never will be and it never has been . +You know your team . + And I said , Well , no . +If so , how many ? + We are not here against you . +So will he go for it ? +People who do nt make as much money as I make . + Out by how much ? + It 's not like going for it the first time . +They have no children . + When I get to school it 's going to be all business . +You do what you do best . +He can still do it after all these years . +But the officials could not think of another case . + This is what they do to people they do nt like . +She could nt think about that . +But they just come for the money . +You can just play your game . + This is not the right time for me . +But how do we know that it is nt the other way around ? + And want it that way only . + Would not go back . +That 's three too many . +You should have less and less . +I was on time . +I , for one , would like to know . +What if they are on the same day ? + This is what life is all about . +I do nt think there is . + It 's good to see them back , she said . +It 's not the money here . +And I think most people do . +You want to do it . + There 's not much we can do about that , he said . +You just do what you can . +It 's not just today . +And they do , too . +It is , then , for the public good . + We are all in it . +There 's just no way he can play . +So where is the money ? +Where did the old me go ? +I had to be . +This is nt a game . + All of those . + To make money . +Do nt be among them . + It is more than just the money , she said . + We could nt do the show five years from now . +Just do nt end there . +It 's about team . +Or was it four ? +I play each game like it 's my last . +It 's a long season , it was just one game , but this has been going on , and on , and on . + Every day I think about that day , she said . +He might have one a week . +That 's how our team is . + He may have been right . + I work and work . + You know how it is in New York . +I do nt see it this year . +He had to get going . +They do nt know where . +We are not New York . +She was the one . +On and on they go . +But he did nt go . +I think that 's the way it has to be . +He did nt have the time . + I did nt think much of it at the time . + You never know , he said . +And I said -- he may have said a little more but that was -- he said that . +What do you think the city should do ? + I did nt know what was going on around me . + It will be the same here , he said . +These days , it is not going well . +Where can we get it ? +I think he may be right . + It 's what we get . +It did nt have to end here , but it did . + This is the West , where so many of us are from . +And he will have to . + I know that . +That 's what they want you to do . +There 's no time for it . +It is the family way . +Another day in a long war . +We know what we have to do . + They do nt work because they do nt want to work . + What is this , who did it , and how did it come into being ? +He was there for the music . +You do nt now . +We do nt know as what . +What is it called now ? +I know it 's going to be the same . +SO what 's going on here ? + Is our play old ? + Some of these companies will do well , she said . + And I said , A what ? +But it is also big business . + But we own the business , he said . + Where do you work ? +It was never like it was before . +This is what war is . + I think she was right now . +This is nt even the same city . +If you are going to do it , do it all the way . +But it is nt all that much . +Where does that put us ? +Now I know what I want to do with my life . +I do nt know if I would want to have much to do with them if they did . + It 's a man 's game . +How might it work in the United States ? +You take it from there . + Well , here we are . +OR , I can put all of this another way . + He 's been the best to work with . +So I set her back down . +If not in this country , where ? + It was there , he said . +You do it , and you get off . + As much as I can be , he said . + They would just come in your house . +She has her own life . +We are going to take it right at them . +WHILE WE WERE OUT . +That 's how she was . + I like to come up here and do well . + You did nt see me take that , did you ? +I had my own way . + Can I get it now ? +I did it for me . +We can not back off on that . +What business is that of the police ? + This is all over the world . +THIS is how the world did nt end . +But she is still at it . + We will never know . + The only way to do that is to come down . + Do we know you ? + They might do it . + Is that what it is called ? +And there are all these women . + So what 's it to me ? +We are going to have to go back in . + Part of me did nt want to take it , he said . +I think that 's the way it should be . +More and more companies are going to come out with this . +And now there is . +I know it all . + I think they were right . + But he was in and out . +THE MAN TO SEE . + Right place at the right time , he said . +That was one of those times . + It 's not my team . +But there 's so much more to do . + That 's not right . + But we did nt see them . + But we know a few of them will end up here . +But how do we get there ? +Though he would nt say so . +So he put up with it . +You think they want to be here ? + You know what my day was today ? +The next day she made more . +You play less , that 's what you get -- less . +Both have work to do . +What 's she going to think ? +Or you may not . +It was a big game . + Now , what is this ? + Come home with me , he said . +It is so good . +Can I get Government money ? +She was out of work for a year . + I said that I was going to come back and do the best I could do . + He was too much into what people said about him . +You have to do today today . + I did nt want it this way . +We know them , they know us . + I said , What do you know ? +But that was nt the case when I was there . +I would say much more so . + I never game up . + My place is here . +But now I do . +That is not the case this time . +Are there more people here ? + It was the way a family should be . +And the few companies still in the business know it . +He said he was going back . + It has been a very long time . +It is going to take time . +Even if you have money . +Some of it 's New York people . +A : Well , not in the same way . + We do have the right man , he said . +But that has nt been the case . +This was a big game for us . +What are you going through ? +For the most part , we do nt . +This is a big family . + What is he going to say ? +It will be like you were nt even there . +If he does nt ? +DO NT I KNOW YOU ? +Now he could not do that . + It 's part of the game , he said . + It 's the best , she said . + The best you can get . + And then all you have . + They had one , he said . +What did you do ? +Where was he going to go ? +It 's a good night for me . + People like that . + For me , that 's the best part . + All you have is the day . + They have nt been through this before . + They are there for me . +Who can go there ? +I have no right to do that . +It could take several years to work through that . +So what is all this ? +That 's the way it is this year . +Does that put you off ? +But he 's on the way out . + He could be here , she said . + Go for it . + This is New York City , she said . + I still think it will . + Women and children were there . +He has nt said they have . +We just do nt know what to do with it next . +Who or what is going to take its place ? +He is one of them . +I did it for the money . + New York City did that . + We are all new , she said . +It is time for New York to do so as well . +But state government is nt like that . +So , I said , it 's over . +That would also be a first . +And I do nt want that . +This is the team we are now . + And so he does nt . +And so will we . +How does he do what he does ? +But I do nt know what we will do . + But now I do nt know what I should do . +They are so good to him . + He was very good to children . +Because they was there . +This is a business more than it is music . + Could I use some ? +It 's not me , it 's the show . +I want to think that over . + But there 's much more that we have to do . +Is there any of that between them ? +It 's our own money . +Or two , or three . +That 's not where we want to be . +Just what I said . +It 's not one or the other . + Do you go like this ? + But she had to go , you know ? +I can see it from my house . + It was so well set up . + Here it is . + I do nt know : how does one do that ? +I had to be right here . +I did nt know where I was going . +We just did nt know . +Their children go to high school here . + Right now , he said . + Take this show to New York ? +A : I think she did . + We should nt have to come back like this every night at the end . +But it did nt work out . + Here 's one that I think you will like , she said . + We are a big family here . + And so we just did it . +We can say , They are not who we are . + Can we play this last game until the end ? + I never had that . +A show about my family ? + I do nt have to , he said . + That 's what I said to you . +So they all want to use me . +It 's a new time here . + No good , he says . + There 's more we can do . + I had to , he said . +Can you make it do that ? +They just have to know how to play it . + But it was two years before I left . + People do nt think that way any more . +He does not know what to do . + But this is not what this is about . +I was against this war . + Me too , I said . +Where are they now ? + But now we are at war . +But it is so much more . +I do nt know what that is all about . + That is his right . +That 's the way this business is . +Get one , she said . +Now it 's up to the government to do its part . +The President has said that . +They can be who they are . + I think they are a very good team . + We do nt say where they should come from . +Right now , they are being made for me . +We all do it . +But it 's me . +But then they would make less money . + You are never going to get that called . + And this is what we have for the time being . +Now people will come see me . +How did he go over ? +Most people like it . +This is all we can do . +What should he say ? + That 's the way I like to play . +It 's what I like . + I have a new life now . +There were the good times , too . + They are being used . +You can do what you want . +You get more of what 's going on . +We do nt see many of them . + I want my money back , I said . +And women can see it . +What about next year ? + They just want to be a part of it . +Well , what if she did both ? +I think they set me up . +It was a good day for him . +SO what do you want to know first ? +She called another time or two . + It is not about her , but by her . + And I said : So what ? +All I want to do is do my work . +No one called me . +And it still did nt work . +A case can be made for all three . + I do nt want them to do it all in the first two years , and then have no work . +What does she want ? + Come off it . +Did you see this game ? +I did nt say that at all . +Then they were not . +I used to be in the first group . +This one , they say , is just too big . +It 's not about next year . +And I do nt know how he did nt see me . + A : I did nt think so . +You are what you do . + There 's more of them than there are of us . +He had money now . +What more is there to say ? +The political left and right are united . +Other years you are not . + She did , he said . +Another is under way . +You do nt think the same way . + He 's too good for me . +But they just did nt do it . + It 's a good show . +This time it would be just the two of us . +We were there for a week . +We do nt have any police . +It was called out before he could get there . +Should I make my will ? +What was it about her ? + And we have to make money . + This is what I like to do , he said . +We would nt want it any other way . +She made it , though . +They had the money . +If only there were more of this . + School was out . +Did nt he know that ? +I did nt know what I could do . + How much can we do ? +This is not my war . + Would I work ? +Because he has the money and they do nt . +It 's a day game . +If they do nt , they should . + Never in my life . +That 's what I should have said . +There were nt any . +There was a new world . +What more could he do ? +You may get it . +So you get on with it . +And they all say , well , it was a long time ago . + I think they are , she said . + Would I have like to have been there ? +Who is second best ? +They may not now . +He is not well . +They said , Who 's that ? + I do nt think that 's going on here . + People see you one way . +I did nt think it was right . + I said , Not me . +How the West Was . +I do nt know that we are . +And next year is going to be a good year . + I would say the same for me . +Four at the most . +And who is she ? +It 's not so , though . + It 's time , she said . + They were right . + Where do you end ? + Here we are . +Some days he does nt work at all . +So who were they ? +The first of many . +I was , like , I do nt want to do this . +All the people are like this . +I come from the same place . +They are as American as they come . +We did nt know where you were . +There was only one last year . +I just do nt want to be like that . +But two can play that game . + I get a little money from them . +But will they want to ? + I do nt want any part of that . +It 's just another game . +Well , there 's not many left . +Will I be home ? +And until now , that has been right . + It will have its time and its place . + From there I had time to make up . +Well , I do . +What to do with him ? +That is still New York City for me . +And we want no part of it . + It was a good year . +And how much money might that be ? + For me , it is just another day , she said . +I think I can be a good one . +Last year , we only had each other . +You get it all the time . +During the school year , there is no time . + I do nt know what to do with it . +I was going to make so much money , and I did . + But such is not the case . +Not for their family or for our country . +How many of them are there ? + You are in the country now . + You have to do what 's best for you . +But there is more to say . + But I think it 's going to be all right . + I called the police , he said . +He had to show up . +And they may get them . + And that it did , he said . +I did nt think at the time they would . +Now he is all three . + We are part of this country . +And where were we ? +No , it has nt . + Some may come back , he said . + But they did nt say not to . + That was nt the case all the time in New York . +But what was I going to do ? +But it is nt . +You want to be out there . +People just do nt like him . +There 's just no way to know . +And then the night . +But you do nt want it to end . +Still , he would nt have it any other way . + It was so public . + I do nt think I can take it . +How could you do it ? +Come back to work . +It could even be more . + What do you like ? +But I just do nt see how that could be the case . + People were like what 's going on ? +But are they any good ? +She 's all set . + He had it . +We have to do this now . +His family was there . +I would not want to be . + It 's still a long way to go . +That was the first part . +But it was nt so . +Both of them have to go . +I did nt say no . +They did -- and today they still do . + There is no one left . +That night , she did . +I had to do it all . +He said one or two . +Who 's on First ? +He has a big family . +And if so , where . +I think that is a part of this case . +I think I have more to do . +That is not right . +I do nt know this team . +They going to say , . +It 's still there . + Where were they four years ago ? +There 's so much you can work on . +It 's a new week here . + I have to say I did nt yesterday . +There is no way back . + Said it just like that . +Before I get to that . +Good for her , and about time . +I did all three . + How long can you go ? + And government here will never be the same . +They were too much . +People just do nt want to work . + We still have to go out and play the game . + They are going to do what they want to do . + It did nt used to be that way , but it is today . + And so it was . +It 's a new country for you . +If you are him . +That may not be the case here . + By then , she would be too old for the home here . +People are going into New York now every day . +Four of the A . + It 's a game I play , she says . + And I said : She does nt play on any team . +Music was his life . +They will want what they had . +There was no more work . +Most just do nt like it . +This is about you , too , not just them . + He has been so much to the team . +Well , it 's like this . + He still had us . + That 's all it 's about . +But they come back . +If you were president , what would you do ? +They are just children . +Like we have any money . + Mr. May said . +What do you own ? +That should nt be part of it . +These New York women . +But he 's there now . +They were just right there every time . +This is what the American people want . +They are never the same . +What do we get her ? +But we do nt know how much time . + Do you think he is ? + This is not what we want . +I do nt think he has any . + I just know it . +He is not on it . + Do we go on ? +They said they want to come to the game . +They do get you . + But they can think what they want . +I think you have a first here . +He was not in school . + I still think that 's the way to go . +I just never have . +But he could not make it . +And some never were . + Only he can do it like that . + It just was nt our time . +All three of us would go with her . + You have some for us both , I say . + There are only so many on each team . + When Was World War I ? + They are the people I know best , he said . +I think of it as what it was . + It is time it was over . +Or most of them have . +I had no way to take it in . +But we are still in first place . +He is the president of A . +We do what we have to do . +Just because we are here , he does nt have to be here . +I want the best for all of you . +We are a country at war with another state . +I did nt get it then , but I do now . +We know that we are here for each other . +I said I did nt . +But that 's what made him good . + This is what you are . +It 's what we are going to take back with us . +Same , to some , is good . +What 's the second way ? + It 's not up to them , he said . + I can not work in this company , or this country , the way it is . +But it had nt . +But that 's not what we do . +You just have to think , What will I do there ? +Not all of them . + But not here . +And not much more . + I had nt been down to the Street in a while . +And some have nt . +How about the first time , the second time around ? +These are nt some of my people . +But you have to have more than that . + They were good people , he said . + He 's just as game as can be . +This was the Big Game . + When they called me , it was like . + But he did not . + It 's been a good life , he said . + How did he know ? + That would end all this . +We can never get over it . + But you have to do it . +We are going to have a good team . + This is a good day . + But life has to go on . +This is nt war . +But it 's been very good . + A man from around here made it . +Where 's the money ? + I never go without it , he said . +But I can not think what they are . +Just do nt want to do it . + Not just those in New York but all around the world . + It 's more than that , though . + All my life , too long . + But not like this . +The market is going to go up . + What does the world have to say about that ? +But it just might work . + I work , she said . +I would never put them up . +Here they work days . +This was nt a good game for us . +He was not in the street . +Not more than three times a day . +How did you do that ? +But he 's the man . +They like what they like . + He never did . + But I do nt do any of it now . +It was all over in a week . + I do nt know what it was , she said . + But if they do , that 's their business . +I should have left a long time ago . +I do nt even know if they like people . +Some made it home . + How can you say they are all the same ? + Now they can have it . +Then it 's the game after that . + He never did get it right . + To do that they had to get the right people . +And if he did ? + But they are in this business to make money . +The who 's next ? + They are , she said . +Can I go too ? + It 's , We know what 's best for women . +Now you can just see it . +But he 's not on that much . +On and on , for much of the night . +But it was only for one day . +I did all of that . + Do you all know that ? +When did you get her ? + He did nt get his way . +This is not the place . +And here we are . +What does the group come up with ? + These companies can and should do this on their own . + You have to put it into law . +We get one , I want three . + We can make this work , he said . + About that , he is not right . + Now you can do what you want . + I did the best I could . +But it 's a new world . + I think , This is my house . +But that 's us ; it 's not even the West . + What 's he going to say next ? +You can use those . + Or , in A . +Was there another way to do it ? + Put it on me . + But now , we are back . +That 's my last one . + And have a good time . +That is because it is not there . +What do you want to be ? +But not for New York . + Do I want to come back ? + I had the time of my life . +She had to work at it . +He was on time . + They should have been at a good school three years ago . +Do they work , where do they get that money ? + We can do that , too . +Is this good government ? +And I know it 's been going on a long time . +What more can you do for us ? +He said , Not until just now . +That made me know : You are there . +There is no work here . + It 's been big for a year . + This is my night . + Now he is down and out . +She said : No you are not . + So what did he do then ? + I just want to work out . + We just made one more than them . +A year before that , one . +And it 's time . +After years and years . + They have the right to life . +The American people have a right to know . +They come from right and left , both on the right , both on the left . +First , how did this come about ? +But they do nt make music . + And it may not last . + That is what we are about . + I have some of them . +We have to put people first . +I do nt make any money . + We did nt play that way the first game . +Until this year , that is . + I said , What do I say ? +And where he 's going to go with it . +I think they will . +That was the end . +They could not have left home without it . +He is not white . + In that case , he said , this one 's on me . + Just in case . +I was in this business . +But you know that every year you are not going to get there . + This is our day today . +And he 's only the first . +I think you will like it . +And that is what he did with me . +But how best to do it ? +They do nt know what 's going on . +Do you think that ? + It was not that good . +It 's what we would have to do . +By this time next year , it may not be there . +If so , to do what ? +There used to be a night life here . +They are the people I work for . + There should be life after this . +WHAT DOES SHE DO ? +This year , there have been two . + But at the end of the day , it 's business . +What is best here is what is their own . +We know what they do . +It is going to take a while , though . +So they had you every way . +I do the best I can . + We were in the right place at the right time , she says . +I just did nt have it . +But the new me . + He had too much going for him . + I was nt going to school . + That 's what we were . + If you can play the game , you can play the game . +She 's like one of my children . + The old man 's way to do business . +This is all you are going to get . +Even though I do nt have a home , that 's where I make my way . +What is this for ? + And that was her life . +And they like us . + It 's over , man , said Will . + Would you like to go first ? + But how can they say so if they were nt there ? +It was to his place that I was on my way . + I had to work like this . +It 's their war . +But that is nt the case now . + I want to get it over with , too . +So it is very white . +When will that time come ? + To me , it 's just another day . + We would have been next . +Are there many or just a few ? + So , what do you say ? +It 's still a game . + I know there will be some down there , he said . + It can work very well . +This used to be my place . + What he did is what he did . +Was it in , or was nt it ? + But so be it . + It 's like they say . + If it 's best for him to go down , so be it . +I do nt think it has to be . +The people are the show . + Well , what of them ? +If it does nt work for us , it does nt work . + To me , he is still our president . +That 's the new American way . + We are not so big of a company . + And she should know . +How long would it go on ? + But it could have been . +But there will be much more . +And in a way he did . +We did nt know about that . + We know it 's going to take time . + But she does nt . +We do nt know if we still have a house . + I said , never but I know that my time to do it is now , she said . +And I was nt the same . +Come on now , did you know that ? +But that 's not a case for me to make . +But there were only five of them . + They just do nt have the time . +Well , you do think you can go to war after that ? + It still is , many would say . +You never say never . +He was just never around much before that . + And I do nt want to be one . +What , though , is going on here ? +We do nt like to do that . +He does nt come from our group , he 's from another group . +He made it his war . + No , he would nt . + He said I can not have my house back . + Like : You can use me or not . +There is time to go . +Can you back it up ? + I go back to that last game , he said . +But more and more , he has been going public in his own way . +What is it about us ? +But it 's not going well . +You know it , I know it . + They know they can do it . + I just did nt like going over there . + But he made the play . + But I did see him . +There is no program . +It 's his right to do that . +But it was nt there . + I could never get him out of the house . + I did nt even know I was going to play . +But it was nt that . +I do nt do well in them . +Who did we think we were ? + We did nt think of it . +Every night , right ? + But this is his family . +I do nt know where they are going . + For years and years to come , he said . + He never had that what ? +And the days that it does nt . +We know what this President did . + The American people want us to go to work . +I do nt know what I would do if I did nt know . + Where to do it ? + There is so much more I want to do , she said . +To take us down with her ? + People should have that right , she said . + It 's for the people . + It 's my game , he said . +And the end of the play , I do not like that . +You are not there . +Some are good people . +But where do you go ? + I just do nt think it 's right , he said . +How do they do this ? +That day may still be some way off . + Do you know what I do ? +Who did her in ? + Well , I would be too . +We are like a family . +There was no way he could get here . +How it was in the United States I can not say . +What good is all of this now ? +He 's made it . +He 's just going to say it . + We have to do what we have to do . + So they get it , he said . +But they never were . +They might even make the show . + How can they not ? + No , I did nt , he said . +If I do nt know you , I do nt want you around me . + How could you be in my business and not be here ? + You play through it , she said . +What is not to like ? +He 's all over the place . + She said : Me . +But they are just right . +That 's all for the good . + You have to just do your own , and if you do , then the big play could come . + This is what we want . + It 's what it is . +We know that now . + There 's not much life . +Which companies are those ? + One of them , he said . + What 's it about ? +But that 's what the company does . +It 's not the same up there , man . +I want to play with my children . +He would show us . +That 's the way we want it to be . +Then there was her work , another world . + I like that he 's out there , he said . + And then you come back at him . +If not , I make do . +This was my first time . +It 's not the same . + I do nt go up there any more , he said . + This is the end of the world . +What is the law on this ? + Think about did . +Me and her , we were the first here . +There will be more of the same next year . + I been there . +I know what you want . + I think that 's how we all have to think . + There are good people . +I did nt do it then , because I never have , and I would nt . +And it should have , because they could have been big . + But that 's not the case now . +I did nt know what to say . + He said , This is for us . +This has not come about . + But a home is a home . + Is only part of it in the market ? + It never has , and it never will . +No one will know that until we see it . +Who was I to say no ? +These are nt them . +It was a no go . +Does it have to be this way ? +It set us back . +If so , it would not be the first time . + Who 's going with me ? +No , me , another says . +She is nt here . + But you have to see it for what it is . +Think of the money . + Now that 's all he does . +Now we see another use . +That 's where they make their money . +What should I do with them ? +And the last two did . + I think you should go see him . +That 's as it should be . +It 's what they know . + Good , that 's good , she said . + But there 's a time and a place . +There is a very long way to go . +You have to come as a group and go as a group . + It 's the first that I know of , he said . +Do nt do any good . + There is no law here . +And I want to know it now . +We want them to get back in business . +First left and last right . + They do nt just want your money . +But it was nt like it was in other years . + I know , I know . +And they could very well be right . +But that 's just one part of the game . +I think he 's been in office too long . + It 's not about her . +What 's so good about this ? + That 's all I see all the time . +I do nt think many times . +And in its place ? +You have to go out on your own . + The market 's going up because it did nt go down . + People are going to think what they are going to think , he said . + Well , they did and they did . + Next year is next year . +I was on my own . + I think you can as President . +It should nt have been me . +This is my time to go . +Before , when I was at home , I was at work . + You go to one place , and the world is there , she said . + The children did not . + I think you have to put him up there right now . +And what do the children have to say ? +It just is nt the same team . + It is is where I want it to be , she said . + I do nt go with that . +And that 's not the way to play this game . +This is what we see . + But you know how it is . +We do nt want him to , but he 's going to . +She said she would be back to work next week . + I did nt play that much last year . + It 's my life , she says . + It 's the only part we see . +He did the work . + Which is as it should be . +It 's just not the American way . + Take over the world , man . +I have to do what people want me to do . +How did it end up there ? + It can , he said . +How do you do it with five ? +What would he do if he were in my place which he would never be ) . + We will see . +That 's not like them . + He was in here three or four times in the week before that , he said . +That 's what I want City Center to be . + I do nt think that 's a good way to do this . +And it still can be . +All three times were the best in the state this season . + She 's here , too . +Well , you are out . +He did not say what they were . +Is now a good time ? + That was only two years ago , he said . + He has nt . +Where did the years go ? + And that 's just what he said this time . + How did you do that ? +You can go on and on . +I did nt want to take it . + Most of the music 's just not very good . +And so , here we are . +Then it is over . +This is not the first time A . +This man is the President of the United States . +But first I had to get us out of there . + That was an American . + Less is more . + It 's not if , it 's when . +The team did their best . +We want it this year . + They were like a still life , she said . + You get in here right now , she said . + They do nt do that . +After a while she could nt do that . +I do nt know how this is going to work out . + They could nt get them , she said . +It was nt right for us . + He : What ? + That might have been a little much . + I want it to go when I want to go . + But I never know who 's going to be here when I get there . +Where was he when I was there all those years ? + He did nt have to . +It 's one country more or less . +The place is here , in the United States . + It 's a long time ago , he said . +It should have been left the way it was . +Too little from too many . + I say , like , Who do you want to be ? + I do nt want him to do it , she said . +You have to work for what you get . + I do nt want people to know me , he said . + You know this business . +People say , This is my home . + I do nt even know where we are going . + The season 's not over . +Now just think about that . +You think : No way . +So , then , what is it to be ? +This is our life , and this is how we like it . + I think he 's going to be all right . +That 's not what I want . +What is it they say ? +No way , they say . +We have some of them ; we do nt have all of them . +And he could be out . +What if it did nt ? +I was nt there . +You might want to think about it . + That 's just the way it is with us , he said . +You work out who does what when . + No , you did nt . + And this is one of them . +I know it so well . + In New York City , he said . +You know who they were . +What was in there ? +There is no way around that . +What Does He Want ? +I do nt know if she was out there or not . +WELL , it 's over . +He may not have been the first to use it . + I just like music so much , she said . + I want them to go home , he said . +That 's all I can go on . +And if you do nt ? + We do very well at them , she said . +Now it 's every other night . +But now it has found her here . + We are back in business . + But will it ? +They know it all . +You were one of the best . +One could nt have both . + But if I was them , I would be . + This is what it 's about . + I do nt think that way , he said before last night 's game . + It was nt my week , that 's all . +No , more is at play here . +We can not do that . +Not so today , he said . +There 's too much there . +He is , too . + Like we are nt there . +No war at all ? + But that 's me , he said . +You are not one of them . +We all know this . +They do nt now . + It 's the program . + That 's what I like so much . +So there 's not one way . +It 's show time . +But she could not get through to the American . +It does more than that . + He does nt play the way he used to . + How much does he make a year ? + We have to know who is in the United States . + It should have been more than that . +I want people around me that think . + We are women of the world . + It 's out there with the members . +The world will go on without you . +Would it have been the same ? + I do nt have it . + I do nt want to go over that , she said . + These people did nt do that . + When they were going through it , it was like we were going through it . + And I said , No , I do nt know that . +It is too big , even for him . + The only way for them to go is down . +That 's where my home was . + And at this show only the best will do . +Did you see what they did last night ? +Not the case here . +Long may this last . +But in the end it does come back to you does nt it ? + There 's no money , and no work . + You never want to see him out . +Life has nt been the same since . +An A is not what it used to be ? +It is not for me . + People think it 's the money ; it 's not the money , he said . + How do you say no ? + You are here . +The market was nt there then , he said . + I do nt know what they are . +Will this do it ? +Now she may have to be . +Now and four years ago . +But I just did nt have it . + What did I do ? + I know I can do it , he said . +The President is against it . +I know this year will be my year . + It was a long way . + So that has been my week . + They had one today . + Day by day , he said . + Days Like This . + I said , How would you like to be in one place ? +Where has this come from ? + I know you , he said . +We do nt get many of you around here . +But there 's another way . + And there may be more , he said this week . + He said , What place ? + This used to be like a home for us . +How should the West play this ? +HOW WELL DO YOU PLAY ? +Though not to us . +He 's been going through that for about four or five days . +He never said it . +He does not play every day . +Not just a few . +And that 's that , he said . + This is one time . +Be good to each other . + How can I ? +They are all too much . +I could nt even see . + We are going to work this out . +What is your program for today ? +Now there are not very many left . +They have five children . + There are some that 's for it and some that 's against it , he said . + We do nt want to do that . + I think it 's going to be here for a long time . +What are you going to do . +Can I get it ? +What does she have ? + We do not want war , he said . + Now he may think he can . + I just do nt think it 's right . +They still do nt . + But then you get a new one , and you like them , too . + We do nt like where we are . + It was going too well for me , he said . + And we see that with our team right now . +When will I be going ? +Or the year after that . + I want to make money and I will make money , he said . + This is about him . +Do it the right way . + He 's been through this before . + Do you think that 's a good way to do it ? +When you are in , you are in , they said . +And I like people . +It was just the people who did nt . + It is the best of the best . +The American people do nt want Government to take over for them . +People would think I could nt do it . +It can not do both . +Who is it then ? + You are there , he said . + We do nt know what they are going to do there . + It was like they were going out of business . +Not that he would want it any other way , he says . +And I could be . +But the day has come . +She did just that , more or less . +But I think I just want it more . +How much do they get ? +He is there with her now . + Which did nt say much about me . +And , for now , the country is without a president . +THREE DAYS TO NEVER . + He 's my man . + What should I do now ? +It is our right . +I can not say that . +And there were nt that many people . + Where is she going with this ? +Where do you want to go from here ? + I could nt get to him . +They were the same . +That is nt going to work . +She also will play her game . + Most of these people , they did nt know me . +Show us what we get for this . +On what will they get by ? +They are not in school . +They also do nt work . +Is it too little ? + You know what ? + Can you even play one ? +More and more people do . + Then that 's what I want to be . +But now he has company . +Well , there is one . +You are out of the program . + It 's the music , he says . +You can do it for a while . +After all this time under war , they are still here , she said . +Through New Year 's Day . +And what is right ? + This is the way to go , he said . + Well , it 's night . +It 's not just the money ; it 's all of it . + And , you know , that 's part of life . +What you get is what you see . +You do what I say . +Are they the best ? + I had to do what I had to do , he said . +This may be so . + But we still have a good time . +We are just going to do it . +They have the right of way . +We are in their way . +Who 's had time to take them down ? +But that 's not to say that if you did , that might not work , too . +The other is that he does . + She still has that . +But it did nt last long . + He does nt want our money , he does nt have to take our money , she said . +I might have been . +Who will be the next president ? +It 's over for me . +We put more people on it . +Now they have three . +It did nt take . +How long would this last ? +I want to do well . +But what if he does nt ? +Do I do that ? +Some say even less . +Where 's any of that ? + It 's not that they should nt have made them , but they should nt have made as many . +You go that way . +And what did you get it for ? +And it is long . +It was like she did nt know where she was . + He said : I do nt know . +Some of them have a long way to go . +I could nt think of what to say . + It was a part of it . +Then come the children . +See if this would work . +But you know , you never know where life will take you . +No , we do nt . +No , I had nt . +He can go his way and I can go my way . + I said , Who is he ? +I found out I could still play . + That 's all it will take . +But you can go home . +You would never know it now . + That 's just not the case , he said . +THERE was more to come . + And they were right , she said . + So this is what they did to you . +He can play for our team . +But he does nt . +It did nt last , but I was out by then . +They are the show . +It 's going to be like that for all three of us . + He said : I could nt do it . + It 's good for me . +We should not make much of it , I think . + I had to play him . +She had four more children with him . + I was at home . +That was what was new . +It 's the same with country . +He is set for life . +And I know that he 's right , too . +They are like a family . +It may be you . + I just want the children back . +That would be a place to go . + He has said it several times . + They are big . +Here 's another way . +He does nt like that . +I know what they are . + This is our life now . +She has a new life now . +THEY can take even more time , though . +The world does go on , it says . +It 's good for him to be with us . +I know what these people are going through . +We can put the family back at the center . +I know as much about it as you do . +They were his life , and his work . +We are going to much see more of this . + He 's over here . + They just do nt get it , she said . +How high can it go ? + And he said , How are you ? +He does nt even think about it . +We can get there . +So , you know , that 's what I did with it . +You do nt go there . +That 's it , you know . +Most want the war to end . +In Get It Right . + Most people just want to get their money out , he said . + If they do nt , what are you going to do ? +LONG FOR THIS WORLD . + No way , he said . +It 's up to the police . + What about that ? + He said , Well , so is this . +Only time will show us where we are . + It could have been over . + I said , Too old . +Now I think they should be . + It does nt do me any good and it does nt do the team any good . +Could nt or would nt ? + She would , and they did . + The team is down , he said . + I do nt think he did it . + If you were to say , How are you ? + Going after one company was a political game . +We have to get back after it . + It was just the two of us , which is what it 's all about . +That 's just the world . +He said : A she ? + Where are we ? +But now , all are out . +The other is old . +Would we want it ? + So , now , what would you want ? + It 's a family business . +But will they come at the same time ? +NOW it is over . + I did nt think it was that . +He said we are going to work , you and I . + Where people get their money and how they get it . +It may also be the last . +Only one in five said no . diff --git a/NNML2/train.m b/NNML2/train.m new file mode 100644 index 0000000..9720330 --- /dev/null +++ b/NNML2/train.m @@ -0,0 +1,244 @@ +% This function trains a neural network language model. +function [model] = train(epochs) +% Inputs: +% epochs: Number of epochs to run. +% Output: +% model: A struct containing the learned weights and biases and vocabulary. + +if size(ver('Octave'),1) + OctaveMode = 1; + warning('error', 'Octave:broadcast'); + start_time = time; +else + OctaveMode = 0; + start_time = clock; +end + +% SET HYPERPARAMETERS HERE. +batchsize = 100; % Mini-batch size. +learning_rate = 0.1; % Learning rate; default = 0.1. +momentum = 0.9; % Momentum; default = 0.9. +numhid1 = 50; % Dimensionality of embedding space; default = 50. +numhid2 = 200; % Number of units in hidden layer; default = 200. +init_wt = 0.01; % Standard deviation of the normal distribution + % which is sampled to get the initial weights; default = 0.01 + +% VARIABLES FOR TRACKING TRAINING PROGRESS. +show_training_CE_after = 100; +show_validation_CE_after = 1000; + +% LOAD DATA. +[train_input, train_target, valid_input, valid_target, ... + test_input, test_target, vocab] = load_data(batchsize); +[numwords, batchsize, numbatches] = size(train_input); +vocab_size = size(vocab, 2); + +% INITIALIZE WEIGHTS AND BIASES. +word_embedding_weights = init_wt * randn(vocab_size, numhid1); +embed_to_hid_weights = init_wt * randn(numwords * numhid1, numhid2); +hid_to_output_weights = init_wt * randn(numhid2, vocab_size); +hid_bias = zeros(numhid2, 1); +output_bias = zeros(vocab_size, 1); + +word_embedding_weights_delta = zeros(vocab_size, numhid1); +word_embedding_weights_gradient = zeros(vocab_size, numhid1); +embed_to_hid_weights_delta = zeros(numwords * numhid1, numhid2); +hid_to_output_weights_delta = zeros(numhid2, vocab_size); +hid_bias_delta = zeros(numhid2, 1); +output_bias_delta = zeros(vocab_size, 1); +expansion_matrix = eye(vocab_size); +count = 0; +tiny = exp(-30); +trainset_CE = 0; + +% TRAIN. +for epoch = 1:epochs + fprintf(1, 'Epoch %d\n', epoch); + this_chunk_CE = 0; + trainset_CE = 0; + % LOOP OVER MINI-BATCHES. + for m = 1:numbatches + input_batch = train_input(:, :, m); + target_batch = train_target(:, :, m); + + % FORWARD PROPAGATE. + % Compute the state of each layer in the network given the input batch + % and all weights and biases + [embedding_layer_state, hidden_layer_state, output_layer_state] = ... + fprop(input_batch, ... + word_embedding_weights, embed_to_hid_weights, ... + hid_to_output_weights, hid_bias, output_bias); + + % COMPUTE DERIVATIVE. + %% Expand the target to a sparse 1-of-K vector. + expanded_target_batch = expansion_matrix(:, target_batch); + %% Compute derivative of cross-entropy loss function. + %%% vocab_size X batchsize + error_deriv = output_layer_state - expanded_target_batch; + + % MEASURE LOSS FUNCTION. + CE = -sum(sum(... + expanded_target_batch .* log(output_layer_state + tiny))) / batchsize; + count = count + 1; + this_chunk_CE = this_chunk_CE + (CE - this_chunk_CE) / count; + trainset_CE = trainset_CE + (CE - trainset_CE) / m; + fprintf(1, '\rBatch %d Train CE %.3f', m, this_chunk_CE); + if mod(m, show_training_CE_after) == 0 + fprintf(1, '\n'); + count = 0; + this_chunk_CE = 0; + end + if OctaveMode + fflush(1); + end + + % BACK PROPAGATE. + %% OUTPUT LAYER. + %%% numhid2 X vocab_size + hid_to_output_weights_gradient = hidden_layer_state * error_deriv'; + %%% vocab_size + output_bias_gradient = sum(error_deriv, 2); + %%% numhid2 X batchsize + back_propagated_deriv_1 = (hid_to_output_weights * error_deriv) ... + .* hidden_layer_state .* (1 - hidden_layer_state); + + %% HIDDEN LAYER. + % FILL IN CODE. Replace the line below by one of the options. + % embed_to_hid_weights_gradient = zeros(numhid1 * numwords, numhid2); + embed_to_hid_weights_gradient = embedding_layer_state * back_propagated_deriv_1'; + % Options: + % (a) embed_to_hid_weights_gradient = back_propagated_deriv_1' * embedding_layer_state; + % (b) embed_to_hid_weights_gradient = embedding_layer_state * back_propagated_deriv_1'; + % (c) embed_to_hid_weights_gradient = back_propagated_deriv_1; + % (d) embed_to_hid_weights_gradient = embedding_layer_state; + + % FILL IN CODE. Replace the line below by one of the options. + % hid_bias_gradient = zeros(numhid2, 1); + hid_bias_gradient = sum(back_propagated_deriv_1, 2); + % Options + % (a) hid_bias_gradient = sum(back_propagated_deriv_1, 2); + % (b) hid_bias_gradient = sum(back_propagated_deriv_1, 1); + % (c) hid_bias_gradient = back_propagated_deriv_1; + % (d) hid_bias_gradient = back_propagated_deriv_1'; + + % FILL IN CODE. Replace the line below by one of the options. + back_propagated_deriv_2 = embed_to_hid_weights * back_propagated_deriv_1; + % Options + % (a) back_propagated_deriv_2 = embed_to_hid_weights * back_propagated_deriv_1; + % (b) back_propagated_deriv_2 = back_propagated_deriv_1 * embed_to_hid_weights; + % (c) back_propagated_deriv_2 = back_propagated_deriv_1' * embed_to_hid_weights; + % (d) back_propagated_deriv_2 = back_propagated_deriv_1 * embed_to_hid_weights'; + + word_embedding_weights_gradient(:) = 0; + %% EMBEDDING LAYER. + for w = 1:numwords + word_embedding_weights_gradient = word_embedding_weights_gradient + ... + expansion_matrix(:, input_batch(w, :)) * ... + (back_propagated_deriv_2(1 + (w - 1) * numhid1 : w * numhid1, :)'); + end + + % UPDATE WEIGHTS AND BIASES. + word_embedding_weights_delta = ... + momentum .* word_embedding_weights_delta + ... + word_embedding_weights_gradient ./ batchsize; + word_embedding_weights = word_embedding_weights... + - learning_rate * word_embedding_weights_delta; + + embed_to_hid_weights_delta = ... + momentum .* embed_to_hid_weights_delta + ... + embed_to_hid_weights_gradient ./ batchsize; + embed_to_hid_weights = embed_to_hid_weights... + - learning_rate * embed_to_hid_weights_delta; + + hid_to_output_weights_delta = ... + momentum .* hid_to_output_weights_delta + ... + hid_to_output_weights_gradient ./ batchsize; + hid_to_output_weights = hid_to_output_weights... + - learning_rate * hid_to_output_weights_delta; + + hid_bias_delta = momentum .* hid_bias_delta + ... + hid_bias_gradient ./ batchsize; + hid_bias = hid_bias - learning_rate * hid_bias_delta; + + output_bias_delta = momentum .* output_bias_delta + ... + output_bias_gradient ./ batchsize; + output_bias = output_bias - learning_rate * output_bias_delta; + + % VALIDATE. + if mod(m, show_validation_CE_after) == 0 + fprintf(1, '\rRunning validation ...'); + if OctaveMode + fflush(1); + end + [embedding_layer_state, hidden_layer_state, output_layer_state] = ... + fprop(valid_input, word_embedding_weights, embed_to_hid_weights,... + hid_to_output_weights, hid_bias, output_bias); + datasetsize = size(valid_input, 2); + expanded_valid_target = expansion_matrix(:, valid_target); + CE = -sum(sum(... + expanded_valid_target .* log(output_layer_state + tiny))) /datasetsize; + fprintf(1, ' Validation CE %.3f\n', CE); + if OctaveMode + fflush(1); + end + end + end + fprintf(1, '\rAverage Training CE %.3f\n', trainset_CE); +end +fprintf(1, 'Finished Training.\n'); +if OctaveMode + fflush(1); +end +fprintf(1, 'Final Training CE %.3f\n', trainset_CE); + +% EVALUATE ON VALIDATION SET. +fprintf(1, '\rRunning validation ...'); +if OctaveMode + fflush(1); +end +[embedding_layer_state, hidden_layer_state, output_layer_state] = ... + fprop(valid_input, word_embedding_weights, embed_to_hid_weights,... + hid_to_output_weights, hid_bias, output_bias); +datasetsize = size(valid_input, 2); +expanded_valid_target = expansion_matrix(:, valid_target); +CE = -sum(sum(... + expanded_valid_target .* log(output_layer_state + tiny))) / datasetsize; +fprintf(1, '\rFinal Validation CE %.3f\n', CE); +if OctaveMode + fflush(1); +end + +% EVALUATE ON TEST SET. +fprintf(1, '\rRunning test ...'); +if OctaveMode + fflush(1); +end +[embedding_layer_state, hidden_layer_state, output_layer_state] = ... + fprop(test_input, word_embedding_weights, embed_to_hid_weights,... + hid_to_output_weights, hid_bias, output_bias); +datasetsize = size(test_input, 2); +expanded_test_target = expansion_matrix(:, test_target); +CE = -sum(sum(... + expanded_test_target .* log(output_layer_state + tiny))) / datasetsize; +fprintf(1, '\rFinal Test CE %.3f\n', CE); +if OctaveMode + fflush(1); +end + +model.word_embedding_weights = word_embedding_weights; +model.embed_to_hid_weights = embed_to_hid_weights; +model.hid_to_output_weights = hid_to_output_weights; +model.hid_bias = hid_bias; +model.output_bias = output_bias; +model.vocab = vocab; + +% In MATLAB replace line below with 'end_time = clock;' +if OctaveMode + end_time = time; + diff = end_time - start_time; +else + end_time = clock; + diff = etime(end_time, start_time); +end +fprintf(1, 'Training took %.2f seconds\n', diff); +end diff --git a/NNML2/word_distance.m b/NNML2/word_distance.m new file mode 100644 index 0000000..de4f608 --- /dev/null +++ b/NNML2/word_distance.m @@ -0,0 +1,25 @@ +function distance = word_distance(word1, word2, model) +% Shows the L2 distance between word1 and word2 in the word_embedding_weights. +% Inputs: +% word1: The first word as a string. +% word2: The second word as a string. +% model: Model returned by the training script. +% Example usage: +% word_distance('school', 'university', model); + +word_embedding_weights = model.word_embedding_weights; +vocab = model.vocab; +id1 = strmatch(word1, vocab, 'exact'); +id2 = strmatch(word2, vocab, 'exact'); +if ~any(id1) + fprintf(1, 'Word ''%s\'' not in vocabulary.\n', word1); + return; +end +if ~any(id2) + fprintf(1, 'Word ''%s\'' not in vocabulary.\n', word2); + return; +end +word_rep1 = word_embedding_weights(id1, :); +word_rep2 = word_embedding_weights(id2, :); +diff = word_rep1 - word_rep2; +distance = sqrt(sum(diff .* diff));

pk03Dk$>^Y2d#2vF8-5Z zXkIp7pZdz%mx7&pf_}Qaowczp#J@b8y(va7i^=&>`+bc!2R{dbF8iZiG|_Tr@F&OK z6o2C3LmcwwU2hCFFON5doY=cMXc{r@X>9NQV2fRQY<)fSgSyG#_2C_SIbIiPH_m;g zF}=HD7LUah;mpY8@s0J-Epboq`QA7b;=VZ6#QLCd(SPZ_G$0vfVOXpv?nnHbF6Dwjz(CPk(;Vxa~ zY}i{jpP$lq?DNU?ER4nfK&ZLzOJl^(huq&9yJKUV9oE(c&BGrb?8@Qz(rG+}bzgr2 z4u$&c3HQY}`bmt#|Axjis@tgVQ;kQSeEFb<7QR-;o9AOScy+k%O*{8^+!pGg2lzc9 zJ{o#O|Ju7c==_cNX*m0L@qfkL!S@vO>r?UZ!55oDn|*PxJH>VLF?*vf?o2WIc&uC7 z9Os4iH*z3%-hjGXA9A!Q_*@8a@Hq>6?~7}~x-*Z&(8K;L-WiKQ@6a(~khA{~zZQE# z-He}!S?F=OeKf|~eX#Mf@dq*Pd3)^p{o4|63I6X4I-d@?GZybvVV_O$$P*jBe7-%N zn~&Y0>kDxt)I&UC@HfbJ3g>3AKWM%ntns}u7Up9$xH9Oa^}>*IG3n1)oE7Y1Rj8Bm z^oeogaa&_O<+n*Lu8pO7hWB2^~NMEtIqu1p?oNDotP)oY>!4)Asw&Z^Ee6IKTl}EXt?V(VU12M(WWlY1N zkOzMG=SRGc#izpFx|m|*(%QH??5p9%pz-x#{fW@?&eKcN1MyUx9P+R&_G!`(n_82jl%AH~%R<9klDUDTa;H8q4qVF~#-}+qU>buq#g+g0|uRqQ-9xnzw}C zNQ+*KQEegoJW@gLh*?wwhP7so7a59j?or+XH1Zr|Cpu`ej}XOA72mWZjP6SobY*S9FB!xpAGrYCt|uK?6I*J;$vSP|19ndzGmS(AMX1t zV(-~dgU^LM_njL#q~WR1XUjtzVxZ~X(2v&5cf~9=1RuuM_0*1_iM=W4<$o3@#yesm z*yQgsVgH1n@%`cVj%_}jqhsVu|HzqIsHOhf94o?|r$bCM8tb9QVoN*|Y_1O)9}RY$ zrT6an+Jo`y*t=bQ*qPp{-@)*7`mO=8GO*n=Wm7c##hB+*f)PX*gP11 ze@==g;-#@8oH-+$k!!j)274o}QO~Pe)4R9CzBm%g;!SZ^$c?*f{$}vEJ3bKmLp^+H9UTJa8+Uen(n4X=_SN1&+;*v*u z&OQ`!c6Izs+!1V^75slU#Bps{7vDK?&wReOFI{wwH?7B<`*h5LtwSLPe2CwiM!L*5 z1byP3LZ1IA-W6=IDM$3l_4qC{_O^WY$1EO>k$-oO4e^Qh?eWeSTKVMPeewD~n>fX# z*TrW3oscuW^n~7Llbu!J%<6ESy~A-JPKYT+Tr`ONhBz8}Pj2}a)Aiy0mttS&4Lu_^ z{^jzMF@B%q;>~e1?6a{s^u+lguY8{w{JMKhJR4sR`Moi`E8}IsKl@^m2QeK9xw$oH zl!qxsJYy^$hvVenWBg5`i&nYQ2kf33e5?pQoEbhp-lhN_SpV*oEm>0av+E9{dLf%kNA|o*M_q@gY}t$G761(7UgVlVV+1b6%cr4taH!U$N{6 zHXaUI>GQUB&F8be?*BaG<8whfU89!noEKAAms|Qzk6GLi^0+DN9||_!7~&G29E_MY zHjZv_~7gvsf8xLXFjI{3acoudBKGyguZ37P~_n zXU2VTR?ubs&0zc6@uOg$UiRM|H^rMm{9~PNb9I|SURT7}A3bwPYtG1{^J*cUyF-5e zCN7KhA@|N+9rC>~M*f{QUz~r%$DWv+)eG!;57wqIA9{vfzGzq#&N*{#Yzy}IdqePJ zUp=)v^xPxS08 z_g&9-2SN?64*njE2Vx3-mdC;QSpPc1pZEKs`B*&sj2b$l$Mv&4 zHk>!NcVVc7wT19b>6wC0eRDy)H{KN=4(H`myz*oGcx(%E8b2EEpU-dadvCC1pD%j# zn>@TUR)@INL@xD+G0kFe_r`Glry-A1uyu0mjJL$wg6@%@QQKitzDCVvjrrdd#xIYL z$H#M$wt`JBJ=!(IFGPuI<{ zHBO5y!H!t1)1+tRLax+vRmjUi(8%8A7`YIGJgf~qr*L0B#4^?{Ys`i<_xYNFJ^G%G zAI4Js`bs~r;r@8D&b#N%_+1d6SY8|U*;ngf|Jue&Yslu7aOa5_bum9D_;p`Du_rIX z{;aY5OfmfUd-3V`T8us#JwXFoBNzJ{tF1meE9BMhkn^j8A31f#y<1|$>-_1VhnB?@ z_D&7wwgtV<2OWHrc7e5&Gkf_^nW1_T}cO zI6eL_=v5DXoc(S*8R~4^+AQ?M6+u6r`(qY-&_cs3#G*IFFvVG6?d!q+nxN5dvU{t7 zEjl*G!|{CVjniVhAHOXR#T&ytvD;_YZ_a_(8p}c+J`?=i6ZXYy?w+^ws$fSysHd9S zr`zwd-WKnO<7Q$i_aZ3pxwLix9*%^U!E?E@y^U&5&GM?_r&+& z_rrPmrjQeJzU6eh3p&Pln(wKZ`igHB>cx+^XuLP%S5EA)aek=fBjLW7=;wb$SmXct zVAuU~!+m#F$EMg8qX&n6`uKOxR}VcKG|pmG4Ew|O#jTBahX%QwLVju55gTJ)jC(Je zkLh7!7HawJU~lLc`?M^~*TqAJH91z7e~u|=@Y^*0PK=tp(3+aqmy?6B7_+!1^x3Q9 z{lWjx`SbaF>g(>P;gQBP9*uXzc_CK6x$M)nA>?2RI(+X6?`-^js_~Y%J5CMpEcLG! z_!S@f-aT9TKs{+-!*>?y?*7^sG05)}^r*QpKmQ^&#_cikx1%vz?vAtkpA^1R$UR*j z4>{zI9rtJx3;W{q+xu|XlN0BiG3J+_AIE7ig>%0fd>;yDw+CBqir2^HkZ*Bs4g0%- zO+B83to5DT%t*Ozldv#-aZi%x)4#w}v+Q!aL!M+}O zX7fE@~55;h5X2ubIaqe!W(p!2JudF*mUM_jPt{%e95bL=yb++ z)I{#h)oCF{e&{lm1HW_5|51qd$q>)7xHC4+$7~-6w&e5vu>XcQFK!NYXTgs8(Ys|n z_jhRIhb?<@%+^1I{D?z+nHd1h}^I_g)_$oz2kRbYAnVzp+CZ6)?m;0jF>`?jX3P7+mY~Aa??CWR%Xu*czsqC9#va@L z23{Gj40_)l`uAX56ME#<*d6@QcUkZuhTGzn;M=}D{+DouKeeODc<7rNkDS znqLz~gFW-7gAYB-{wL;NHMlpN5%1=pmwsn|Cx%`=w#Be>ed9OABcXmL#$w2eTGAyx z{`BJALC-~@FGsx29SUb@n8iEe_HbVP>2v4G*b|q;migTG!*NyUr@KOp_+?v-J~W?; zi=P$o`|(8V4Kd57zM#dO3xfYUgFQJsEA+kE$j7=6`{+Gq*q=gQxvwXN7I&7%55hTd z(XzBZ4m6j;E#bcUY>n-~j`Q?b`FZ>(9itob@YJ5+~37gK3Sijd; zy{C}(e;;Z$i#0)$dYu&ROu@#1aPO_b?krA-UBSM5sOk3ke4L+}-xZgHdW(lW@jVi9 zb6?ORXMP{W>-?ekdDz=JpMP~epZe0LrgD32$kFAo5PEiLKE_!(>1A6SQ@kOT$31a> z=+E(c#^&CjS?y^#HthTRKXNG!Hnzp)SQ&CN3%#);*kDg@KM?XP_hR-YjoDXI8oY-M zF?_$F@nXdv@1Xqo0?w*0$*Kkw*Z5s;fXjJLzjFl?Fs9vW9S{R{ZFm2FBUmFD=vyD_*@=e3}?J&=Y9}}!}(j{(ooO0 z#E$FqcXGSe%jW-63#@62v?#P|o{3O_??d*8-eD19NRKLwZw|rd@&hvLx zxZ~`qu&*vVB)oWCV540$>>#5-!luQ#k`&ken_ zJe(J=xb(yMF^dhc7<8_Vi(^adiv97%kdte}8NVeb#hEdM_@588V%HnT1HrC3sNbl^ z#~O=`ANIZ*^wH)%d$))4e-`3ZyG`NEUKRB13-|TCSmoEcwUM8pf7N{d?!N5F*CioW z?i`7m!aDy~#{Yka4)WBcCLWwA0=$1K!W9Q16Db>X}i*=J82YOf~Z9NN{! z{?jq+yQ4;G&#trl=bB*C-wOA!5Ns}nyqpmmV{`mCZVtAW1^;{E3voxN z(G>qC-Wu%qo%vkQdtSJIOxzRlMH3BE9F9xkNU$sZrTK8z+7!;pq2B)eV1HM9FZ9h6 z&YTq9hgz?XvqCQIiE$P~%VYC3dPaYq*?0Z!M`@a>HK=I z<+o0K*N52sMvVUXQR9*SLyhIp-0u+I>|79hn2XmN8-7Or(4mHMMu)Ln7|Zje;r_U{ zG+uGBEA|6nuFq+if}U}n9z7s_e#f5<&p5YlJ|BHJHRsR% z@u81sWmC=goz3}t-|-Gc+;a1|SQ+$<9LyTixi{o$Q_wzzK6LIAG3xPL<82}L{LB0G zp(n-qidcw0k7vT~2fJc+ho4!9e`nDDo#5wa$jNCzgSq`@83J ze)Q8lu`6crzlHnGsp%|U9h<}NIltm`W?4KNe-QqiV_jZG{g0oI-SPL$eL4S)pi55t z{=0W-d?{`X`i_l^xoiQLenZJ@ffOUorAC_Q$`ee0RkxjOE(d zt3yrKhMcoG?u@x}&Ww0Q9n{Htq)T2$T|e8H|KE;V;{OOSisS3CaXwf7qhM`~<+ ziczCkHCO^jHjb)YaPXEhm2x&RetR+z;a` z!QKbLxijYThx=}vuRYOM-0zH!#?jzQEw{(ISQW#r+cTEn0^v8oEYqiN8Nrc z?hCf|2fMU;Kh7Kz)<%6^J6}J)uN_{^qd!T z)9makW9NKK>(_$MOJYl`4fou?Irw*ujUUIwq0ZyYy|JC`FCsIyMu22+~-Rz)!m*s8?+x2dxDLclOuSV*sZekJJMKS!0INW`E$S1$- z>Dzx5UkG*kXt=K~dRDCLtJ(13cYvQM9*TQ{ZTY_@{66ui<_Ck_qv3C=u~>G-32`9k zesid=c>D&+<=#*W8fc}<4ZB_{Bq;VLcXS;`QC8u%5Y!q)LQ({g)^&y&CRhXtW9B!-iPAY zaDNuo^|aWoiZ=$mblelPogLQHVhT1_#8a`ffA%()-@9V;v$K5iH+pycUjKS)3n6#% z^2vB#@Ws~ns-64q3N@FP1My4@pY~6TABH#d-jHuL)KcEgi=jcx+v0^Vc3&>kR)3k( zKK{*t#(8kC8WP&a4i#@qWf0Uu-zz4LQe$yoh^QI3pHX zoK^dq;w|yEu)iYQrQiEH6t~2+p^p0e+4zfa-acE-54+17Ul{VGRy2uAUG)Wj&R-Dn zOvn3UOUMV^zI3=JAL1NyHa-=zP@|*4o^#^!e!n&!(>8^>P`x-m%j9k#R7SfzrNSS-r)1(7<;Q5doyZxTZsS0m_qz3 zf`58uu_n|@9e*!w4g2!*`H+``@rsy&e>U~6_}!zy`o1M!`B?flNK9Mep;!zy+!ecX z3&EG)4!!sXu_ulTdgS1$kP|s_cUQa+Y?v?gr+!=GmhcY6xFXp6La?_s*cBd8;|pP>Xjj<=f)Eu_K`m}N6zF*el~=BJ{2_6r=P?t4z*_A`YdQs zH`?wBZ;Qs~!hLte%ckCU=8jkuZ0ak0v9x~6o2wZu^85bzSDqK+k7E`G<9C9ei$dS% z!Oby?5zEw=&R>k@Kx@Z`cwQgoBfgD|FAe?Y9-ZF&j-dN%VcmEZa=Ieyi|^3ANq)f)j`8|gI@ONbAH(RbYu3!&4(P?yE3)~dsB${%wT6>KGsv> zpl=F(SHzP+%QJBxcE@5kFMn%;Ke3+_Yz`aN=({Pr#kYk%l!r$`41B7+9DO2Y!QP08 ztx*Fpx%0ch_R}$Zxuf6g(>>AI7yYa_j3ZUt3~Zu*a9Xzcrt$kF|TkozZLKH`iHOE)Qqr znda98d*6*sL5Dl5!ru)wITZJYx2RTAjCk0T_gQ=>#IiYN@yp?!uYTkE(s*ysI0Y>u z9=X{V`-077;q5&T>hZ;(hwdY>A=GvG9GXrE_Kf9&%^ktduf~_c-u9r)U2(n;ZwP*W zDfs1Ub(|Y&DW{{JKWIE^GyJ(DZ~q(zV!S=)wuX0pG|aCL_MM&PU%v~q$+5GyhI1o7 z;&uK|h+j>Q#&e;5{}}%!^wn2F{8xngde`~?GcF4;idF3P<>L2(CVrp`%5T7-9b7pmTV~epZ?2Ad?ZwqtzH+Ft+cqd|A9#6(Ehdnwj4YhwZ-W2ZB zu@JMM-S?)D7g|StE@&)2tAZarc0&w*D;h5g_W74Db#vC4JA#e_F~yz`2mA6g3;TX= zw#31>Dt3kZ+!*wp8T6{L`Ync>Ou@%bgU!=p7MF#5I^)hG;hg%iiUx|6zP|J|6m)Hy6)~Vywx#x`=_li{rM?cT?OMVpU&ypN_Z0+rs$|$LPt; zjh$!fwAdO`sK4I`wQyg*jrYwaUFU^7sL4x0+%)hj_O;=x_@}UM%om$G;w!}zbgl?~KNwfW@5d8C z`&F?R^nN|=3TNf-%-~OK-wZv#-s^(K^)Y?}U)$KZyW?NSvao+b@X6OK&YF*p_T@)@ z7UHrP+Rtswzx(ca&*uAM76;>FLC@Zpg?;&575joMdc=NHSYwO6;a6_?6_5KHf}R^= zb6B^(JU$Rp@L?|g|0OoX$k&sN)ynVx&x1d|zidqL_hC-gk@#-h8}`2ydVy{^o`M#d z?5nl6<9*y3yW`T>6UPOc*M+-u)A?}Fvo=yfUw5tZJB7J?i2H|e zY^;mDL6bM*-(R$|b8*P$@u8oV#W!MCtdEo9r}6br(>I3m&Zy7j!RDFa{K24EzOIi0 zLAx^_32}*EtbEbotgx+M2mXm`GF^HS3)xqAWu{~&{XXvHxve4(w z-4o6_r%yf*?~hrqt(M;RBf$?1^jr~ButnP?aaFt!`a|w$Sutl#UwM=}T5k*S((`L! z&$>B1TjQ3vA)Mn!9QMU-?e_UxPS(cCaBjq^HqPA~qld)p{_n&TcZArD_0elWUY6Qe zI(B~icE}g)V%!nS=5w|54zCXy&D>Ed!d_qjM4&cS{5=`~*+7l(Rzk7Dr~Ef4lDkA<+mKIr0K4?Y-T*%-&hh;zk! z{gr*64ewoCpxbU=iR#_Xf@~e zJ8@>5ANGe9`sB~=1wUh*&6mf8acLYE|2EXxn_%N5!H+nnkf#+P-}l8r(8aIX`aSY~ z#P&eEG^Y4;@Vh$b85)e~XHO4^`J#9x*!y|N*Dv~)t6}G7jcFG5pTyN6?_1)Y&cF)HncVc@m zHpZpl4!vqL?%P|4-wXQqo5hYeHstm%Lk(%NzAVJCJjD9pcsAsZEk5LEL#&9sAy-eu z6!eXEYR)G;Y`%9smWL_qofL9RpMR6d-Mw)r)RPb21Htx)Pd|Ze8qSS7gKc(vX`N!^ zWAw+K*7TOWkx%~hiaj-OmpyuDF{f8wIrB)!gSGv!7|xs%L(@WIe(cK+JN#MyY|!|+ zu*Uzzaa(*hJ{0_@F(3Bj>iAd}e9c1LjOCo)8{_-o4o&|u zc(4B>)&{-1LJvF^Y}wlx{HcS!I3w8fj!zF7R)<)w3;CNujHkrLaPKc-yd`y{Lo6=} ze%>F}opJv9V2kz*VcmIeLymqW)`vakjKxLk6l!4a=8zltS{}!S-sDR?_@9E_Jt3Zd z2>I7n?9773M}na}#wd0N?ILtk7N z`k&v2L+tXuCG;4Zw}szKw&Y@I&6f7m=w18l@i*SiG+&d)Psh-;y0J6P^C9OK#A4_R z>o1ORo)0lw-xLStW4{NRW1OR#fAv*YwpPTbts3qR@l2sN?2CPz*MHWx$34NGdb8#2 z@n`?-@lYHa_RbDE^elZ-{8G68ks#$eIYMwvORLO(3pmy_un^WgI{;({mr0R z-?-1Nw=b9Wcf~AD4tMn>A4A89jd#x1?A!CVbDSA*?Qd;!3_bd1WyrG_UmyIvJLvUh z*%;bKyu;q`HR}w2PsHtEe@n=nxQ33Yu^NfyyhI`)$@i{*Wy+`8|dxB1;Db(WbFkc?@uZT^-#;AjM6^!dBEA^4)v*!mR1A3M&|C|%VTFaXU%>3r;y|Eo1q5Qwgr1)IW=yH zJA!TgSBG`)o2^43_ft40f9`)F&JR7cEoSj-{Aq|;EosuHerM^wFaA893GaAQu>E%- z2l65ABcWd6TM=rdM<0lfhIrX^_tD_bn{aLlvB{HlXC4o~w~xe#)w;Ji&WQE+cvFn} z$TK~AV;16gTUe7XxmyUfM*U7|EEci zGj!{}dqP~xg8dyKPuIle7`@?~eZJ&b%+{u$l}^1v2m4!t@7-~1@WJ2EFg2!=j#;qb zZ;E|duMX$=r{|2|-}u^a?yBIA?@@Camey3RKNZi#O~KE`;F~>nmZ z)cik${@fq4kb8IU2>DnD@mwC(*ynp`z3guaI`pktv$H%NjMv1@;QQA@d{c}***71v z!zXQL20JwBEAh$GPh#Xpd~(4rUwqKV?yd9hKlHsQ)QTVb2jdT87T)2m`I!Ab3;AY4 zUx>?hh;h_VkMXAlJA$T{#L(_O&8GxSQ#dRC_lEq*^J0vB=NE#lSI5(_ zC%zCb3-ODMX1dmd{9PSe!aaL?Db$?Y{ANEg(yF#4Xg67djw9&}67{zaI z`~S~o-3R?$*LS|3OWEMff!-Wzhr-}D7&~|cgD39sauetwoXAa*=~{NFO;8%oaMB@Y zY)c*824kyjm2L`S)TM=jE;t8GYDkyu2}T=!*`=Vs!n9V`>~Wch6n4Cc9pUMb zzt7Ayo%6?YzMtFo`}My0{H`m+DS!IW-wS$Z8QN)8KkrZN?6d9s*}<;4e7-5Bpj!{n zC7)B!{)Jc(Q_#w`x1yia;aITmtA>2&5gKV<3igi1H{wt%%n{eQK{qX8a`z>{)}|2i z%|Y|Qn1wvbk3QF1{I7~p|09h@ZS9ZV=Z_ZW+0z$(%gnzLe2ec}VV?$hw6-p2IV;4y zFMc^54EIO>{8Z!ZA)n%WK^%%p;C<@{Cz3-n8I(7IDaud5%To%aQ;NN zPrrVr@3%s}-Ip)5TMRbk?be{@_3`339Nwt=TVh4bf~LJOY_DuAJ~@3)%wl`6t!CGS z*!g~P*_RGJe#6IG%?hK7b;?AJ&Z{oQS z|K+he)XsVP%s_J)tGO#)`22hB!C)Umx!OO8nm;_I+_jjF|3e?2Oz_^YLA5;Ohcyfxf=b({$C*;ns{ z5a0Fjfp~Y=*E?!>XXtJ9^Zi1Ih0mq9D4e&yyhfuh$GZOeV9@LQ(DTOmTpiDjUkkC* zEHBp25AlxvUu=9h_>;4(!4I2y=$xQ$e++$kYKo!Dp8U`?Vmzzy(fCaG-8&Vd-`wZ_ zf{^zIgMT&rM$r6&xMlubp5KG5Z3wm=j-QHA=eIOI5Pux%{<(0L5B0*;Q-W=*G6-OYA#BeXKjf zKJ6C<4bEBP%bK1vUkvu`ZwkF^oeq2JV&rChV?O?M(7iV3d{wwJdU0wzYIken?eTbw zoIKjtz2}49rSRM3j+nN`EZE%_^ly$4!!)0>adR9G_i2|exo~!WxTjuc27A_hKOfG@ z7oWRh3j1FQde!%JVNETae>T+O%W-48I!?qD;eEQp-->XLA3EKUd;8XWy^ZriKIo8d z>wMiEo8oZDzZ$(OP6R(M4ChDQot39=g*@sde`DFF=gN=^^X~@xe7z}-20Ob#U8kV! z^jH(_(=h6@&{z(i4>9hK*?jyDeVre@pcXF;`rMaiZ-<|8=IO@Y4z;{4RtCSLci!B1 z3O4w^iIK+JYODLLO$#*g>&*dh5L)~T+nB}HTXF@ z4upEj_d=|VBf;M+Xkl0H(5Y`8i-W<&H$uL|yEkY$8D9+NUlZb>cNWKDXM8301lwYz ze_hPNJ!|T!_h|5Co1JT73bFXw6NA|A4|>LVv0N53T^(-=n)vv;VAJ_2ya6$o)5FFr zFyYBKu`Wn(Dl(6{%M}V zUD`*ii;d;RJvnn;JiB6wpAU1r^l7=ic(1Zf-6|-wk^24*OFan}6M##nZvo+3`@w#X{(VmEpd# zbjimo_&;O*{bXPLa#x5)9Q#8*^5s6=emj=paIo*p%Y!Ypt;zK)=$HSm#p>YymUwfp zx4f3_+owU@*Tv0oZS05*G4#k2dq+e4+#S8j#!~PtUn3rUYtP;LL#{p;^7Fev&z4vj z!^XD8dc%9#8dK2xh2T?;M?cW=@8UZle;*6?e>Uz5_NQRqZ-U+!?^M3*kGC(!JA?K& z1v_%6CLf9eF=Ck->j`)G6`wEN>NRZA_qO=Ivxj)AKVq>xWdORBR@ZpSH4*hJ( z^|7Es9;Vn7eh20Cn<20CvN8JhvBq+?F@}BG562X0q&J6OzNX;IdEZ&EyC%lDp-ET;#`ISF;qwz#s75tqM&hURE=oxXy86R>?*Lz~*b9ucMTUR4zKN@m-BIJN} z|7*Q5_&5>#&4PcrR>!rmBlIf2Z2BF$INVb+dE&$Vs<<#V#Fn6MMcAKWXRM5^@ta}) z+hKne=4Z!^A&2bIVtx3afiHHvrJoJ)-xSWic|KRGrEq3%(5p9oG42WRofT8ODA?T; z^0P7AVZ(2j7}VtSu&!4YLhrFN-jQ0J2wJC5bN9B#;~^$C?VpI>n1AW_8~*-K6Z2tn zZDX~e>u^j#liwJz$<1p*pB)Suw}d-(X%MwE6d& zebv%gcD#xAh1}5h>G($2my4eZwe$UN;T*eaV zh7R$|o&Hk)S(wvLBWCgDxFYyu<43{%hT!+LA)m&75U-9Cp;l9joax^Sg08QG-0}C3 zU{4=>HAW5GU;cZo2I8Un_7JDs5B-}O%k%vqNA##8?d(4mVshVnyla~DpZuxCtAZ~v z@wYjge{ZNC&3_i-{z7B-pNp$PylTnT+PEv!a!o9+mmKT~cj($3?EhtmK|JD^g8wUn zE&BP8pPT37ZGGj!p8S6`hQGzezZ>E?8DcvTvk=R7f_)mCSqd?q8BCfKl?Nv5BnS9fuQrZy#!LI!q zgU#z=Wo!&FjJnc!!FZP8>?he~eHy(Ou6EjWj?~lzP7gO-R zHu%{U;$0adzkYY*XZc<8Dco5I^Q+@+@kin8$g}(6p~L$S>#3Mx^qTvx2>GRrcIPjR z-;4hov*1teXcVve9}oAfPvML?pK_xfuZc55epbfVU!DVbWs_d|^@rYQ0J|BLsw!}CqXIICt|HH=oeLLhuPs)`spXz0wKYsuB`JBzShI4w3 zz0sfE4;}8SIp1O#Jsj|F|c>M6eAZ=AL6ymfwdg}Ydcaqn(94_{N5exxpVD&JnE$m_S~UIe7_KS>o>!Fw)xWc zKMwVB{#7B*=3?Fv*T>nhJH8X{(=HZo&f;z00! zEZo^UpO5qFn>$a(EG`e{KNfO)#(eG`-(QW3L+e6KY>A&=Yii)^MX@vV!7l}kdduFM;(|CnpTD^8p9ejE70&*{eExXfYhnu8=$wW7 zC+B1J9y)*A_=Y$YawUHIe9MnKJP_ZDuZ8-m?e^ebuko`Zz8L3(_@-ccx{E&;+o)} zKRsgqFN1EinPO|aCTLdY^TXM_;qEPQIJ~7<918WjHr)ASoE^@2H?%(!_Fo>m<7nt% z@p!{isDV2#4(I8o*V)$xTXcwT3Nc(7$L6>r$L@Hy@^&DcUlAV)Hq1|kJnB!H*^$Hd z$JgUX{A_FqddB;bYd+2m`bYiPzB=9(?9<{mla{B$c|Pw9`_?yxK6xY##_pKK&TvO< z!$9NO8j9B%YzLATeaaCjIrxu^ZnV zblo4${r3-@=+cjG?oBPVh%Ry}-n><<3M8p8yUSUl=4A8K=9=<_?`RIn=scI3_3!yy*&vGbjO;&ah6iwWs18!5)3%?~OC!@rLgTd2wfGyrl8{p&sHDk2_+P zAM0ZH@_cUp^&t3C;2 ze??ex=d<(g-}m*KZGQ?m5cjc=UmA>`S@xAz`4{KNkGJzksKKeAK@aW=vABOI+*uR+ zEroUY*&f%&O~JPP9|Wy`7;lWB!~dSY8G4f+b~eYhaQJ zdYcRJ(V*FRYks%gI~q3x9elFO*B``N=3{on!!ND!cXO}hZwvgxfh4;wve~0V)Q-x&hl|a&}cq# zJnr7tn*1CKTAmF#H|GEGxO)zp^gHV}nVyZo_7r^Uakk}&_J1BU-W6hW#yTDB(9FNw z*xw!}LyXRRKI|O~zORib)`a~_f^D{F=J(OiC;usaHoTS3gfk=FUupa^G4kQ9d-IpX z));<=X7xK2vtZ}$`FG?=4aK=F-W<-$o&1Z>eAMG_8?TDfgDv}q!kaPY-#zEmK(6UC zAN{+d@rK~@>JY~R!N!M!ouN&>&1W&K7BU_U(e6KG<+*=3-uD8+=_2+91rVH1zYUe|6It&_V`rLp~uvDB^{4x? z;l11(a-|;IV`I2G>h%4_VqOR_^SLKZ#h-`s`g@%JX5;(ATjE!L(eCes9G(^YO+mY_ znBO04%Fz_|x#gajVsHaX8$SXE86tHSs|3 ztM+1~)!x>SFSg~HUU&I)?y+#^FXBY-X?^sg`|MA_z8bT&DmKJru`XsI&OZt9ssFCv z@6{oW7YFU$_vga-Z^h=YzCCEWBF3BlSYvvAJyr(2&WK%&XwhHx*jOF%z7Xu63c9Va zwLQc$axyg@y(stpCN>4TQ_#OH?ubvtg)#CmY&d&g$lbxvUx$O=<3ZOH*0;tD@%6Co z%-wM;UNN7u?>E)j`WU@2{4KQRw`RPjf7^J9_Xqo8m7gQwjf{JzHU7&G&yVA)AtzJF z8@qBq*Mp%y*92Q{h<_jdC7z0l!|%ffVhS}3}j{PC8dU##1`N^PN{q&t0(&fyt zn8moetFf~eg_<9TS+M0S-D)+9@rG#`{k5YpeexhL*3Id7BHj^q#@<*Fd~6Fo#bWO4 z6z-4T5xIL$%z|w`mxAtL-|zGPGoOpk-fiJ`bajj#p-Jq1YxvkW|4w}m2HWx=UU#;J zwNYbzNtYPpOpp`4?lWH?|wKw5n`d$?~?r98jpl^y7@Prh5FJs>anshTkd^4-V&F@d2w;b z|Nf8zwUjS$Pa&Vi{!ZQyUyq@2Q)7M(hci1uOzeFr)aKHlOFUwESDYVeJM4(veR{3Y zB9CW=~x?&hJMgv8)I*ba~I9W z>`%eIvwR!JZzsrk6IvVr&Yw)NNPD zFFW?=9yMlv3j6F>KNj-CmsseyC-msS@Rrn)9sZq>Yw@x_&BtQDE5xUkv!L1f&amhH zQ^CKO%=PL*@UIs4$JpQ9SpOalI;Y_Cy)ks$+<0w_oLD~^+hc278SebIU~d*;l&d!c zyW)91wglhKZwh;N1p5~Tz2nTtmpx;(u8< z!{52#{oE8{)ZcWmw9{x8}?`D6{?9NAHXg$*S&S3i+Ar^c5P4U*)9!sGg|3%2TK9h65 zmwH7%xhGF@ME|oPm-Nf0Jvwg)ex~?Ph=Ja7;`)#WdhUo7;r_K@O?=i~80vOj*cay? zg}Of&`(kHUcb?rbc3xl5K)3T7V|!Tp+ZgqdJH0n*wxhB8Q;65PT%DMY|3_c@hvEmJ zKeomcj|RK$EylXoAG46#Xd2hIMziOX0|@hSExYG3?DAnvUF77xcr5mW{ojofG5SPo-ko0XmWLL1w}l$;xe#9rvC8e0A+{@GZ?H`# z9c;+y6km#2@N+8I5-a<3>lOA+5AoA6g|)@_Y_L7n*}pmLyRX($>$mITU>u6!hkkmTAMaZ|J|DjqC*u>rmfqHb_RaUlEZk$)nBF7djsDAc zDA5&Vfup2TJD%;=*ZHr^M`iq-z(;moBWo{gb)exH|O)NpNM{l)Gq zXxJS;iP0Y~Z7kNW&)3+!Hu!f>es+fZ>Vr|Q{f&o4n%2zs<@?c~Mf`H2|7fR|{V7KM z?aAT!F$)^Sw>reZuKdtJr(O{w-|U+YE#}M5i=V%5e3YYKLaN6kiU2zjq(8d@0>bWB1*Sfc= z7u0Zb&_gdjJ43zYifY3RYL<82|oQw+Uq z?TS^QU({}XHc!SB!zS%# zg)>Lv*7!!~Q90tD{+EX}weuc^FL#~|eyr=eDSjN**X2`QcFn&dKXT3YmqKmX zq*+YA9&+}0ujZV@CM|{{+`fF@SQ{tfj`&ot(DUV> ze-@iU4yK?({Z<8k-huPq4E5R{?K$*p?r5zYw!{UyOQ+gFpF|i_>Bj z{IYMKE%)^)d+N{6`@`Ofk`z2tKW>wZ(L9S$*wo0j2M{a+B` z6#Ls^xt_mj&Y%1Aie+DnKAAOM5$f|)H^hnX#^rPTUhum% zem{OI=#!(-zq7{fzcq~Q)3zlZ4ta*To_#}1A(l&nw!?8jcsu;kx)5~All(Y03-_Fr zlbyjgjn*Cs_xP93@tYz}xnCdR_m0i=+^U#jCufL$8^6o-Wa#W=i*Q}zZ8cGCE&PV3+ulBtqXmVE`{pRw2MSMG!>s>x( zPwvDd^Wn{5}`^~D~tZ(?2|Ba!pY_1KOemTAr_VnKHDPH=#H#syG%dmfT<*!JfGGhTj}(AB+*}KQwm!vJksG zIHOKS=6{$^YpQ@kMfzB9yoX1K>UA96~gK9YlT!{{V@eCABuHxO*{~EEXFKui;IFDeyy(xFsb7cKKk}`4N}1{PV$=zStfocxPN3am{+UXZ?7vsgCP{59jPpF=|AEx%<9i z!ty*GZcf7#_C~CuKI5)+{VTu6VitGA6G6M4cO4!vGekz=l!;bnXOep=cf2l&~!#@h{wa3!|`-{A?RRV9CSO&uN?6Cr?Dmc zo#p#fSeF;JX`=hD!@V6rlm2G+EwL~k({_5eKjNJ=z98uJb%vdlF$GO)gU&ti=fSS| z6!yj84!d-nGoRC?-tzQN91Ull4LwPtIa}uPvpS~WLye7ZkF7C_z45*<7pIzlW}8+OZOm|)wlXV?4xF{YCQbP zwR6_ai#LRPv8^_bYFo%J!X?htbn=Bd529Jv!t~&FHtkJKhnWjtAn+ z^SS+#Y8IP1}OayJJm=dkVfbgdD94e%NJCpYT6oaaP>U$ivnU$9V6j z=IgV*e5#r6ENByt?+qc=j|cl~jXJ2&cpHn2XTgqrx~E`M-2V{c{!-(s=Ii#Y-xFiZ z-xF~lMt{?zU%wM#dVA=tjj=PtcSq<`UuXE;A9~Gw_Fo?Ar$=V-Z2V!!hqJRdGhP|; zx-aaxKMUGc1l#)eu@LWBaWeFs9PEnW|DySL)>o~c4)(mWcgJNxzk71=!uU$eg1;|^ z^P{#q=5xKiC+Oo#J!oDzpUcITSRZRb-<&c3^6jpBYQz49aAv&ksj(hd8*<0*_P95W zgqT-{zkSB^sn>Udy(dB)#Grq~E=PY7-m~>@#)_arF4e`CzLAeR8~cr=?RfBiAjbZ4 zjn#mSrPv(&>lbVCVE@wC6zY6#IA`CxP_M(WD)xr^Vjel))>vNO99P8uUw`rOjiA$g zKJ=PgiGlAa`15z|Xvl&1)oFF;XJfwj*AH@{*Nxe5&bvD^=x2Kt{4RzyG14=I8ai)% zDMo&*Um5P`H?`sGM9?p9eplSNDyDFUcIy`ho6gZR{8_s@oZA`VV2{3SaZkwKCGnHE zK0X{n|2Y42YijH_`=c>_`%i1UFP!t%-y1aY>pS9G*;szxAE!bNhmBQ@#b9k?EU&XW zmxu4Wf-bSh=`5VREcD6!Att%=JrvIKEeA9njP$PQv*vjBbzS!Op2ZGLHVQneIHN~c2=Wsj}V!Ars7PKygGkQxt>C=mRiEkn3 zWY77%!ROm!oVD()t&cT911)r25o#ib>Pq_!A>L72@wy|A`h{=jhEC^p1f8?^`{0KU z8tt8o^Wy2Ck$rJ*4C{}CnAy5EwuQK+pkF@SWA9YB|GE(4V#vQ*(|&%4X%_l!dpIu! z=Qq#iG`>D)xH$YzG;;7ajSt2w__wYGeEGdS67Bwx>q!>IHGmf_C~oI{(seSBTATin_cg_!ra1f<`?hr+l3j z_QmeZ?l=`UhMsYj&o70TUJzdiYujRN91OLRANFq!8pNxX8$yhFNN#9$|BSdS_*b*> zf9w9n>hAo=pV(>ho8U|D=pQ=R9I-Df+mkEym*U*`(R@DscC!B)@xkEF_g{q`5sNxG zL-&2bhdlDf=0(9i&DYN7_8yN%!&nY~5?6#ibbj0)??X;$<%`bozHVv!gOJ-(VSg5j z!3V#GgFb!o$xwINkA^(!UEddmx27)qyF2`g{ep0o55J8x=#d-4-otTu$OC)ZLO#T^ zA*{J;?yS2stJ(cA^teBZdxF+GgEqZ%AlzqH56PLi7|)Cy!597G3~eu;&-LOPL;O?7 zi~KK-*Vr1pt72uaWj_4#J#6uBPd@%S%pVHc)oov_4`-%OtJU){|IW*=_ay($&0-<0 ziH#vQbbWI^=Ii!2Ew;wG7-#i8ABRJnY(5f~#i$!!Q?U7aVV})YVa@&J_C}t>JZxOu zSg(syjPCtIh{yTGcrK2`$v7|M-u`%-Q)Bm@kNqJJ_T70V)Xx0okb_&pc^a@KE)4Je zP<%da3Vk|@5y#%fYH)p=ig(7J2V49OU*=+PeimoO9ib*q2Y+HwKk>Oci_tGrV>y!d zU2#URNtYg)#RYSwzTy-gf8MeAEVji$&}`p*Z(#J3e6cG&vCA!OABgvaJ?H(c-Wl#+ z5*y>D7`mO)JD(0YF<%Ng*cB_=;up(?7<$AbZ~S12(a(BEEzQ+!3g^YMCgk9p@P75r z6nxXQIgZ6kMv>qY0;7&gVXE?yrOhkJ5=dx+=1hWGro`P{oz!w2HQm_kncZX6Ad)Uh#3VRzvU-M^9=YNfF z1^b)B8Xqg-Q$d&WABkDKD$Wb%_J_W=&;R=HcFgJ87Jo9IPkr@`+S?m_C*NXp_Q&z% z_{X>^7E==&Nyu|JC8|s2DM9KGc{k^?o?sGan!7JByoQWzcm)sF$~O zG_0{RdT&Ex^?7gbH{yAsvG+pHi5ULq@TSK6%*N_Zuiwfk6>D(isMz0O=`mO!V5V!l+hTMqLzB|VDwglY^LC?qH2l2l7Tz=_wpU&cYc@InnFCrBR6dG zwJYS~wBX~1F$??W$MN_;oCgU*e?zBq<2QEnjH-)?}hQFQ8u8QkpybF8uo{A~l+Yyh&^D%mbf4LQ_^J;Y{*!2DSd@TOi zoFjeT6({0YoEx{s$+$VhO83^71zYl^o+ECt@;B~Ur=L#e+<7kO+ZiJ#@}x&E2{!c8 z+TdG$&W=st9(#1C!I$G7<7luUZ+u-B2Vz595$fZ2V|~0d9*sw0A?Rh-*uFU%{#NL< z!?8N#`9mT86XEykmT+DkX{Prt;$y+a7lJPO-FIFN*i{oT%e8nu93Kz%+~Hr2?6XD3 z(_vo@j>JRrxwvVZLfwb{{f))O7LEIYO&aWN4)(4NJ`c?2Tl&iH-^azl9^ZUk9^1mc z-hWH*aZ?O`FKRr+rl4y>d@#!P&c_8w&mopa7JE+4f*9` zbI{8UKkQgn3wfQw{`PQ39M=RtdYUdiNeR|?R z$cH@2%@lIHI&Kc}ZwNg?%lWY`hE4giP7|AST@h+2rccFE*b_TD_Kt-;UwQYHw{zw= zw=LKg%h%%ca8_=7cg67kn#S&28c&8ZG~OTbAePau4>qRxuR|{AG55Q{p1NHa!w>zV z=j<=c_vGk-U{`;6Z#0Zpo^AZukZ1O3bYH&3s=vI)e-@jAzcq13h|iagVUMnzaWrm? z^}(Kfn(S>2I;Ie}9z76rtqQfVFE@I|9rxu&zR!y(oZ+5U_+jN zCDiH3a9&;>3o-fXtBs-mhVH5Hk?=cA8=vf780?Stqo4Tra@-pihrO{j?8`T8v!H{Y z)v+*#?bCuj=j?kkdWe6Toq2maANJ+oRHy}8{L0yL@%o@e|H*@QvNzZl%dSv|TZ8R2 z!RAs7o&5Rj{)Jc-*N6D!uzGI)7$t zkK=J??2Z#5x8CE>s5bY6n$Rh>Db@tNe;C&EsQ5;1>7r%Wl~;ae@s%+DgHSK}#D7`H zGY#W6hRQ=HjKF?WN$yT+P{D zF`v`(jc}J{HJD=b*sL+FJH!1KhqF)5=O_BgrT6#spzq?iE)K<4<3z~0`wz#dn8oSg z{ofdLd0(`i8^0Vs3HoWY=6x=ID{Gs}#mnb=YU}(I^0^qBg5D{95KjfYd^vkTI5TqQ z%bq**>L>o`yd&u3=a1u^VNX4GhVyJ)75n4TSpJ(aes`SLle`*JV~?`(?k zCiR(qQZOFG;9E^{L{4B=M^-t^VH}UFtThL1j|L==CLq5cAZEJidl%!!LjGAV&Vo zKNcH;w*AY#qyPC`{-)`9H1w&vcg4*?GylWRxbOUzLVs-x^GzY{2VzI4&z@lKpWfGB z?(7e_r)O2H4Dml1?hKuW8=nz+M|`v3PrZ%hORlD{ric7)oC=!c=lA2C;l7?4HC$*s z#j$ue-W`tw8&8CuWXE~GUpqtG>bNrKRoAh{j=NtDZ~E2Y-Rh}Z<1=w2qbh}C(1r%?Z+ zp|9kG=J8vu9$yT3xj6WyQ#}vN=f3O@d&56JD?{(tr}?qaFTV87g3rsszSv(E@?rmT zaaVjdhJAYN)2#nai!JfZpm7Qs=sXo`87eut`NUm%87et z$B5yN8#}+;r+bUR)>1qlzY%J$=dX{4i>q0En#n1MwF|^RUHtq`NX|lIJ#7mR; zQd|_PgWj9M`M(Qyy{ofAoyTv_6^(x>*zk3J7Wc&H*YQ2SHTtHYcW7{z#=YVGy72o) zpY!g?;nU#`d-5euQ@E?we;lWU_cJugMc82=AH^eoCJdd~Q{8b_TFNAyaPcd>L_H*K;v3|aOY2OQjPdc2DJH4x3^0YC2 z6f45o8F5*NMK8(WEX2s(f!G@A=gi2{IH!jCO#eL`cLx2V9&%?s^oX5p`(ppw5V!bm zi(BHILGug3*+U@~cTWX-vtVN(z87M1hR*SuBWJ_^4;sHDUL1cOYX6~lHeMV2tqL~9 z`NJ4JCjTRL<0)ogte*0tE}w~&L9h9h@#`UWxn37j@UH*CluTeF~39`(CEbBC>e+K=Lu zKlj)heQjM2>kmFJk5|Uop|*!(idl&1v*Et8Uk!ON=U+^EWp~U%Zk`Li?vIy+{Cp(n zI~ueek8cERTY??u?+Z2X8zN>phyL3dd+&0*KW+~8c7*c_LF1{Q&skcX71Qve2F~0Q za&RQP5w#VIa|ePR+S$AzUKb;GH0j@6^R=yg*9GmfFsD%;HQzOYZn z=ml{*qK4PyZCdE?Wm<7V2pOPjc31H8So}r!E%aM2mY2pIp)Mbax5hJZYuIy!203~t*yo$=b>Zw3>Uk*a>q$PR zaDU|BU5)LJIO$ZI4Z)te4BPIp&9}Xcp|{VBZ-l!S27A`ok$d@F8}{YNcTeaOV|lRe ztXh93o{r~(A9WhPFTc@vO{@;T0krV*mCz5~5S@Oj*uE}SE}Kt{<(5AB-Ip6a%x@3+ z*_egjvc0iBb_RVTzQc`a=SPn0vFja-T#4&_A+{;((E&OZ?u}2y$#`S@d5m5b|9=WGza#i?f4mDi_RrUi{eATn(~siC;rzA`A01x|cFqkw zxiFuP`_7NwXZp-XJytb75PJ8^G4d_`(KGyr$(b9%{lhWE(Et6$Y^jg9W+BJc`I0yN zFDIvh#>HTp&V!+seC><((x6SO?+kX2#GNtXnHsY}$NeF{dfs!pAUcHxD=!12!I>hD;h;Is-$KU)vZoDP-#IQRxX47vDd$ewgpTwx2 z`=1GSjp-EwJx_%A&Dne=&I@P7_jst6Sj4(9^xRFMcKT3!vtVyc3~ge*D%^9Q&d-Nj zS-&fG&cEZ1IGnpLQ9UE#$*Z6*OLe9GgaF@EQ6pRe!lE9Mu5xNiws#C>n9jG>3W zlW|(m%|5$wL$7`HRudZ7q)XoA+xd;b93%!=&wzo-u&wUxg5PPHQo?(=zV$kwYVspI~?qf{~!2c-@ZG}$d`VU zzZb_W#37g7))XIzcL$yBoE1}y{C<8uKh{?+<>z7Z#k5UKaQUSfA0%%>KVRn59@5WW1k*9x-P^!g?Rb-(@^gd;r+fR+*42f`4d088{=S{ zidonf*DGRM$nA(-ZdL?8YlFVg|I>WFzOT6S(--4khj>Ok#PO4`FE`GQ{PV~6=ykn1 za(H#)*93p!rCW|K4n5!;?d;;y!Pdx!_{5>VtcmNPP_HvXZ1T%KUvCTge-uOCs>W(8 z2DasNe~fxv(|A|V_wu0Ye+qf}OdJUQzY^kh?t$15*9U)W9*Gn2y`bl(;%i}FjJJi{ zeLL9YSC5NJj6WUhEXC$IH0TRCdnWFPx5lSpq7qAl^g3QkjWd0ruHJycg-Wcxx=NMYe<@VapkLIVs{_shIy)7Y5cImz;wuk%b?#@y; zGmFt@dhvgb7su;D?&a^iaOa8O!*?OXe>m*Pr+n!FZ<4-^A;&M7&-Kml_5Q|k$jUg|@fh`U?$UTPJ{Ib& zu0I>Ikb~cgouSrzsM8dFgUp``x`q#Nc`tJ4OTRrma4epTyTU$w?(Uz@^|PGQswN){ z_ebv3(VkjA6711H_r~Cx)+y}Cn_P)WtoqTuy*CA0SBBcTOCx_nA1!)HzU;A~kFF1X zzaRbv{8mgMCpQE?Z0rmEJ{KFpoxA6}zOQ(u82+AZ{7WIn?Cg%8#O82!T}&Zg-sh`B z4;>5nd||vVei-t@&Z)RDhIa8ShCZPGaOl5V;`G=Xd|6{htn}%}3&Z{I#IDdE=JGd% z_>a!V*5qnU41LbiD6fx&->P?oxa3$3+1nOs=dQUtjl7%FHgd+cSjPQ(=lfgw(rbSf zqn6el2)TJlYz_4ipIn;DrP$R^-o)b0-Z&9zwHn z=ceHAV7x9a2)5P*ecpzg+!^dHglyW^?(*!?NQ_tDS`^0_K@$FZ2j2VzCg!VcYQ;wvHMDV#kOe8}-d zLC>z>=gQEV_T4)icZ6Dvyl-qgv`>w14!O8I+|yfAJRAQ<@N-oRpPL%9$@a+**E3;V zY{ut>9@Edx%Kh*^>}+mLez%9SE5lrFM$YuOyt*TI_LqW>TVwBhe0JY^;vK=R^G}Aq z8{==oOB;)cUU}LP9}2PaFSqV}KaR%GYhB;cBwn?7O~~W+F!wj$wc$RS>ZXqL9*Oq^ zA1@Ahx+dIL2lX58Yii7o*wm5MDdhFi*cxKr8E+5v7lTc9rkI6&^>=UNa>Pf^XM@)L z@wu=kw(o}Xt3v!M!*83h`1~%|SKm(r|K>x3b5OJ0aef>L{;W?Szuqjp^31oG?g%kk zAAb|KHU4~D5~IF%Hx}0v;x?D3tAduLczMVneeRE*rp0`F@H>lPOFoSGzivK0)OTa} zTQG9ww@hx`_jc|J{`DGvKaM9tFWwpSErc_(5dRb-Z{~;N%y>HV#{F?Y$m2h;OB6h7jjLH-dx@*uWZgY zeQLQi*uNp(7<{llg?!O-FzE67vM)xwTN=B+Ki)K7f4HxFzAx04z3<1-SQ!iRxf-pC zZ^VaU#J0JyzM$!kf=2gV7$c{%#%l7NkV9wK7w@GZcDeZ5SP?s8*q5h&AD@p+@vS%( zQyd8KjQY`N+!oJ;oQU0hI({x_kgt(TvA-+Cv=DTtwR3L|_Qw5-8`~Gl zt@APai$SY9ei!6@WjO2Z6|pz0%bRuQr;wWqLQlLm#N*C1|BCl;&^ZM?#(rld}XNEptNABsDmnrPi>%RVc zHvTMT!Pdz*5ks>x;9smGKl>ZYBfIy6nAx;1k81R_@K)Gzeshd`JlNP9xhn366~UGo zjea#3i+szyS{#kDL;dB_m*(%pnqYtA_PWM2O>tMyVZ0P?3h&=tHKUL34I$r~LJxc{ z5aX zDYgb}v-oy6N9PpmsyoDUIM^4vm@bI_v1}}V?vK0iFwA>pPhJ0)bzn>qDcgLone+u@V5BBKr{{wse{;^G~vuxZR?8)uVh2L8D`I`lw z2ZF7o*c|q~p`TCd+r!`9Q^DUK1Y6?U z93!9JiQb^s9$WT?UYgYK&EdCO&fXa6v%JP{Y5o`S+TibC%t8$2`ddCX%;&VKy}WM; z@4}bOPsH;0|r7 z@^C!({}-_$?3=Si(}B<%SI668YtTj0(O`=%KGf&t_;IMEp1CgEr)zs`i7DJ!4EAXK zLHxIH&z|$c=d3Y3>hoto6MwVd>+7K(em3Y|8Q$xmWpf(%TOE61cMQ$nYOF8W`Y$0q znta(i7PB}n%!hXO|5b?F`SBYeW*TU6{@S=QZVfu*?r==85bW%a&GRvBXT{NQo}H({ zIbZ(t*3dCErcrLiuoUzh33Zk`dw&1u@g|nr;M;lj)`t3T3U^lp9qgV8c1D~}G-huK zcl{0C8SXpx)}Z-^u`l$B^LGV*L-V7J_1^WdGM*3jo{Ou(Z=tgz=7q*`LZkj)4ErN4 zci$UJ;m);jZs?zzLQcIq-`CE+Q(yOdM{n$JtR~`Te@)Ooizydd-k>e{x}iekI`p~ zjo%*pi-Q*Rm}1la$A6H1YVJg3ajD>srg<#`x!92ITB~DNYQ!o(tO5gl~OYA0vNz&Ss%MYO@gPq~@#Q zoRG)Lcp%(SOZlm>ysry$?CjK_{Y#<8vl#LGjbvwkbNqeivwLDb8S>l|zFT~$oAb3X z>OqIPuu+SngZ|~U^1LCYI6l^d{McU`AC94G_!Z}oxHa^BM~wM5C+CJ3-g|Ykc6UX% zOZzP7T8Js0iBShOSH**|B|Lv9t`2(l#A4XLJ@{95HNG&u70zZMmVQqmp4pP0ob_u8 z_5MGWG5U31dqcmx)&;+#)@F1^h%pN@s$TqlGw5=UE}E_n`Ox$3;Onn~CUdzy)cU=_ zC!Oxn`0;#OTomG%@AG3tsOOF0{V=PZ=`nw5B(`2S z6U(_?PciZogQnk%anJLolcb`AGEyh9|4ta??^vL@_(96$`I1+CP zxu_)@HKB!WwN_^{2tMt*_qx~?<9%>Oi+%l~hi-9x7*~dwULCV|IhH~WXT`{$e=*fw zpHGR$f;KhK%k$!$p*|Oeeu=*}M!ueRFMC$^S@18Gob_nL{b_qW_)4sgH19Vxw|GtE=O9^@U?J9Zfe2L z#UY>Db+EnDO3p_blPy3HUTdqQv2bnNj*!>*v|xOgDgOmSr_uZcaeSB8GL zt7qozm{6B*#SP(}@7b9#bc-v_ig2zUchA>r`@JpR9`<*HIKxIgZr&$z%KsE%?F;?TKX%`X`+`0>=*RG{rfNWoT&Cd5nh(&W zrr!_tG><-QYON2eVsr2{a=5Csci_{ZXMB0~`+TUoxUY*T#627%#wD%g%w|o{Kkl2` zbs?AYLtMG4kMHNM@GV&x;!WZHcfzyUh@*D=ZwdP4qK0NwFKO~_d^{FH4diZLAI--Z zp`G1#9I=1UHq^>G&T$#>L44E5qm{|*FQ;@f*U9*mKfy!mr3$A5_H zV!TV=XwCO|@wzZ)cZK=;Zaf}*O~LN1!PeZVBb!4(%Tnmq6!P?|M>M)SzQ<}g=9#9Q z@%B*ng`jZ?&-$zHa{NKKryg{;dqFJ5sO#rjA0MMGdU|%KtGMjm9Nv|i;$Xq`pn1uan^jzhnc$~oO?gnycXBQzPKy+yCcRoR(?;%4WX{b1{-(PM6T*+ z&x~FYYOoN8Lk{l@x$5&#p$6X#we6HEQFXa#ud?s*f3YM;s1% z`Fn4OBTw@;zE7)Ki}7TPp6Q?1>arB{pB!}D7Neh|hIEY?Q?sYSeg3AP*&Q*xBl@pj z-wOIpi~B-N_Q$qZe!i>cQER{Sn{DeUMjZMM#Hfe3v~QaKp4+c@$H)C~Sv(i=_gxgn z`ANa|$~Y_3NIttmKl#_=$AW*h;`%*5%&I>8m*CG@KBvblhTdo9YiDXEf12nOkMCKS zNj9|dw=SI1O^?{i_1)34*_s6(>NSP>_+1~PcQnJhDn5JtnS#CC&D%ZUy?-=D?bS!` zpAPZIuNgZw_*Fl?X&5!)OAQx7KI*buKYKow!nr=)5~FUj)_mBfmv1^ftNjz9=CsL) zj%#8?*b`g+8^a!aFFq3Du^->G2U@HD#qnai8e%WkygYX`;D5}3cxGjL+#dYPYh^gw z8B_2v>Y~oRH#Y_Qk>Bpte8YR>?&dIa&xZ3^u)iw2Z|*O|m}z}^bI`XV4##*O)y!S9 z_NDNR-WF4sg>Q!1d@JOzCCneaa#3q{<*_N;Q9rs4#BD*ZcxrK4(06rsm)t!PYNZ~3 z70y@8pJ_7(@@GpgJ!;N={BCG1ck^PF+!?cfu(kUO@%mUDQ#hy5-^8PXKk=sEYn;2U zmeR4)Rh$!QbZPLh7_^ReZ)I!w$^GJRM;`Qzn%Hw^cbEnK zX`tr~^XD;p&-Z*N9t_&d7kk?NAoy83|9!mQk&`>(o)CI8YRL!Rr-pY-UVB3QN4|g8 zdieU&*8e$9549bB{JL{%(BRz{`+tqIV?&Idh&S#nwB8nKZGB}dhPnC0puvo~JB7Y% zj{gz=A;j_?s2dya<@ON!TcNi<8;=AH;yC-w7_+H2w66iJyQdtH1o#MvFvv_})jZw=xThp^L zt_V6ji%I`g@oMmOP4M%hkozBozU~h-_-3#>Hk{L-mi#S*T=e5z^Yt11@*(EFaCb$p zza@S?`1pnRji6gy_&F!mhdk7R&)Ix!4p)WR(tC2~EB{+U|DFu*9nJi)y*}vnPO#Mn zdVdgnvfCYcDDRQS&el(bSl%l!o{3qAbzzMB+34dew#64hzP^$7gqpka;c)MmaPAHt z?s#Tv&pfEfzR*AW&X;TT{6d@;tAdR@-yQm9kFQUMn481?fjAVq=4*Mo%eVSWu_4rv z-Kdp5*%xC9_F~BErZ_#=tcW{N}p3e=oqps@lKrDuR z_RD8}RnPKYis!?uRG!&!nf(_;P2v?fn2W()uOEwr`LkRP#2?4ch37G2 z_Fosbg})u{^7*|uFZla%h&l3mvbCJQ8=nug&|fwC)0hSQzZ>R99^VXi_){}E*^{q4 zya!@9e?$CwjCuTeYnq3>?~9z5;>?hz*hj+s>w~5#Jj;)r+{ANNjjgwYJmi0C95a7@ zykC0NLL7Rhpph2$w};pd#Hh_Bt%ofQ=f|hwaIn#5KD-z5{&I|28a1BUV<%7ZqZd=i zVP&v)_T!M>zMxkPei*0E*XqAJcE*F@zI^?T`JhSu_T<8r4tM$d`;fy~VUESy5!c3% z`7`_BgQh8l#%-<7iMItU;=dZ=ZiuB&&neuwIQWu_`togGjV}uEkB^7qXM@Hm4#t0s zQ8zu{+g!diXkQ3^ovEK(XF->KI6pT=|2DSfkKOu^+Y51dd^4Q!Jq3-cg1)`+g_s2& zkHjbA2Vs`K67rhDy|2c>P?NQx9%?@J)PcTJf`9dSCGLw~3wHL@LVlhP1si=d|Mb$j zGQ?a6dGR}iy*0t+k>JDGk)TVB-W%e-JYUf`@P5eA?_bBL z*Q~X>r^Q`C2Mu42d*|y}zZ*gycEv1Ciq)ZJdL$3Ar_keV!SA<%&ppAOcK)xAXXk70 zhD%$6a0g=s z<+C*wgC_d)nqRSwg!6S_ww#Z=yfb_~9XEvg-hyq>Vbaf z4LiNRHq=0EJ{q@%cS{Y`lg7^m+fza>Xkf2j-X-f>LT+2)NVqG$d`4fa?+vl-{b8&N z`ELmKhClkn{N>mga{ZIwW19ckXLDIte>Xelq~ zb0FAx{;QyW`S(iQXF(es&b`-rV-{vYF8&>IB%HrJ)L_^A`Q(0Y3;lO4?iBQozV2>q zHl5Fcf3@2j&%~HT@$~cg_;ef{{K(rK&p+*dYH!3k)Y{C-SInjOO1vCX*!N5SV$egk zc~;9kaYfksgP`l8P(yn=LOs-N39E>p&SGPV8D?HzN1qvcG=44) z2JIU{JimOc4|98ATodf%@N1#w=Y_h{C!RC&O}Cl$JyY9N!Kd>n?hJbQqXT@1#fEOZ zF$X^h-%om0#=4-D?X@8vy|^b1hvyN8f6sn5g&NQ~p2hUd^c}i9rm!dP?*u<=>7(h? z7`-qTk*b;KNF61f3-Z&C`tP20mkS8C9gRbkX8>cf2>mn1#G{&e!kg_i*s{ z-Jn5y_k4@Y+nYl^!{0w^P51CU>Z`wc!d6cDuYR+jee_BV#p74aE{;D8@#XTnp>}@7 zFdK9@-!NZK{p#I#C)uosXX1=|Eo!X>wA>Qs#S~+1>ELg5@XyvgI!+08a@9Bc?9Gc9&xhR9QQsEA zd$TgwvZHV0zpC|z;_CQd(9d>zsDYfH4R=q7E%B3(+iwLwdZRAlzZmw^=FZ^nBcWd- z&fTqNVOHcL*D3yG{6>5?^pqdHJ`m#F7-BfzH(#&lcPX}nm~^w5LjAdOZ1_AX?h3QKd>#(sx-meFnDLn6ur8qA9JyhQ_gAX;K#r-da*>h%w-WC5TmTTqj@|fa1VODMk^TNkF z!z_qz7TEuC$XQNdZSLi8+7o?W(u`h z75e=`sE52i6^Fy~6ynN5jD?^{{Bh0?-QxRYcTxCOPvKcyxtK_^yXL*p6NC7>goB? zSguKKv(SHW20Ad^e?}Aeb4fGOVD^pm;Y}ASlari$e#Gc~BSQXoYrf-I`YhuNG{jq-K zy*b39>9jCgmxkW*@p91pbnxYU5Z}H3GJh6-^z4GxdcwE5zbTwQA7Y#y@}zxz$cNvr zgxL0Gp^tlm9UJ+r3wfx~fp{fO3BB4M4~Mf~39;2w-PBx7ykE4)g&jR#3g>25zI0p5 zK`h?}b{EDCVee2}9_CFw+|i?#;>x%&^vYdvf)YnqI!#WeaQXVI2d1ueW5@4JPR|Y*3RYdQ;N$!ly%>7kc~?xq-Y@;;VbqK-aUPG~jtfE^*2bsfNSqwv zOd-De+d_Q))LH)S`Sz$2yGz2}sKfVK`zDC3KK|dHXEPvQdA=ch8~;Ac;uK=gsg5ti z6r(=sc~^Wn)Il%gAa^x>CGHDx>>V9!)Pud6i+@o(77Ic1?)mTGe$~d@9}NA_x8ZX| z>skC>I6EoSVlns`cTQ zTt=SvwB8GNl?*TyCDXMeBgoPz(w5c5E|zcWsb+v2X6Li{!19)EO9 zad})3?%P*a`S39dx!xZuLOsmOc)!e#d0B{U;oBnq!I1y{xGv;(Lx{a481>@VZ^Pz!la@jt~< zsLK>`=G$HG7=ND(-|zo7oUvUWXU0iE*U!=CW&>cc+`H4;+~)M3Qs%l%o1<^Bo5FB^WR zpi4aeFPQxl!`~~d)s%iQe}BGKbMM~AW4vE{io@61P+#?17oQ4wZjL_+w!4EyHCg_A zxaZg6)}Y5XZh4KK>Uqqtdun-SSnHX(To;E!Ej^zY-f?p=3wxf`l7#)b73WXa4ASm*1t3qrXee{N5Gbb+z3QheAJ2jy>V;-FSz5+pOiXIn>)d zG3a?F`2B9^_ZdO|m`nQpBDRP7+k(A)w&swn-kF_I!vn3=-Tsztj~ddg-?upd6< zMF-S%Z)^;GHrJjv#~bHsKIP?iZOENJb3mI|-sMX}tWSpeofrB?7oVfw=2>0;WWGP^ zmk)N<@>iox@q_RUq-WH3)>Oud&-qcYC-^!#&JFQy z4txBlpLugfd_DAD&^X0^pZ}`c1Hr~G|MI12XQ;1uzO}n!DMr3xsM}B1SBw`zZtT@f zE!a=7Bd&;rF!OZo4>R?VI1;ni7xaktSX?lF7Vp$hBj;+ak5|s0)k@!dgPn`ND&*ul zac`)LXYZO?_&pFbs^`$k?r{7l*xwklI4Rg{i49>k-52laSYDH}dLF$wy*2x_;TyvK zo$-a>@7U0*pM<>k#hANYt@T?Dw}d`TaVXfH5cEu84)jxBhaEpFgSO>!J@l_{e{*PmJy1T-+&WTpe$mF6KYHQju`V{w$;`Qxi3$B7{BVkhq*pCyhmaU zd+(>*X5o&xKR@hwf6Uj#F@?Hrh*>-ya`HU-$(Q`Ze`Bc4sNbH}PsFGd-}_^CToq%U zpLmf|!+d^&V-W1}>=b>Ob;!drHCjQ5}K=UU;zZT=NI40!3 zK8_1Hd;eYtIiDF<#qgo;Vm=x25L?gO<>TdWE@wIF*P5W&K0W4M9*4uZ+0jG!>DlUV zek9DBy6y{gVeflHGcEiM-)mcoxfuNM@u8q|3N?8#J{u3m(D@6kzZ~q%96jDk-*@q* za96yi!x^8eLcVv+pT{>;{p3l*hR_$exWmV|e_ZSFH-N1?_l8)bX5u^32Y#N4p?lO< z{?`W^_UbFX_kA%Agt-!1f34N!>KOiCX?YSd6Hvwd9b3_g83E(&+_ zp8pf#gK=>F%%}CW!S56_(EaAvAIAp`C&o3gBG!c*_s00bW znqRY~zv}*6=-Cu<)&ujUmNbt#$XWfI9}K?bKIY+>*7VTNhW$dw?RP?*^>}NH9Co*s z>!U&YNueH_gMV>m;rxk^+v;#em)y)3yA|=Xu^8&j-^at*BQbROT?#%=j@yDi_0sz( z_`N({7xEB`_R%x`X`jW9LXKyK{?q52y;NU(V^x z!EPz0n8mU2@whVFm%se{>K)sa@%rG)>`gK1sFoXI7HalvY>WREuf>iy6!Pbb?N@`2 zDQ2M_X4u(zu^4I~-dn<5nufkH`(}wxJ)x1kdTfciVsmVdlSBRPj#VL!nyAOOV-~ju zt@Q7TBXNDO`BuCm?D>Y$v^HpZGQ?jBwR|kxF*7&B!H^$K^v}Y5chu5a&)CuAcjWi0 zt<~<;81v0WE~kX~ANTgP7DwLRqoLckUQSb79^PRwM@{|mNiTiw{inDp}&9{aT+KlzV(Jk@%6{xpqQksm#WW6a>swZ1px zHHEwKJ2S?7%zoEBf1dSA^I|yv7x976Bl@hx`)a7)?ik-9F{f~@ z2Ih5nZS~HcT-1wy^;n3Z*ZCCc;%_ql>bxbkhq{`t!=a9H*&DMsCsxOXV0T(v7mo*j z;w`Tg9iI8%YnuPkBwxDB$?`jDbAPbmPrPBjZ@yL!d3*o)z9WVYv(5hc81>lG`j=yG z=pX%O%-2`lF%XRu!z?A6m5pZY8>^Wm9}S$O_@ToBL1L!m!> zu@~oX@Oxv7ew%&gr-U=JDDF~Bq2@c{&0*i{nKQk7IxdX+!u#==xI655zAV)Cgpi** zZwYnegJw0L!Tw^6S6TAvu|N!$D4vGCp=3HJ7%3U$3S#63FbbFODo(C7QU zDqarp)sbE~$Wa`6`JaX7Lt*Cq@^wnk;QsJ0rx)kX?l1Qz9^27RaeSw?$Kep`i{akx zn1#Jjlhv)A@!{?p=j%81E51GTW+Rv7w%&j9eNN1R|5xIVV#M?#Fs#ct_Ou zCn27FwNMAYXT+EX=X5?5?w%Dx-%YKZ?+UZJ6lRf~-v8zNm;aMO{_A3Vd(6y{@NHo4 zK7Zr;uD){G8Dfrk@m+W#%*5W1r*FcThlSSaa!K&_mH0^TC6_gEW6-lF)Y!gw&j)`~ z@J9=OVt*^#vA-%dg!qrf-C_3FZjJkcZ!z8V-p=Bw`g`|7O`0-jk2Uh`YA6 z9N0e`bc<&e4+Xy$22JOOzRR07IV^>EYRAWwVRqO*6|}KmAFmHJSRLoY6ng3XveqAK zclFEfu|fY7qh|8fZ+iF>gPsjR$ERXtd_3ggzTa8wkKd1BFTOb(`sCo>PJ6?dp1Z#> z7Q*-9Yr*cc_)IvzIJ`GBe<-FHJ)}?F9}PY9{Pa)#UePoE&b}HW*Wp8+m&I%GhM0vK z_&cDU^qLL*5`XyT=TAbupO4>(XX1;+ zQ8l20jT+A4--aCZaZ8LCV@}*ZEod`KYJEYN`^9j+HpJc*w5W$)+V%wB55-M!UO1;m z&(4mM!`-1({lwcD8)HStNgc#lh!cWdb>AH0%pLyS=hHsFYIRE-2%-YkVqIJozaCS#KfbGUog3E%4Q7UR?~Zt*_Iyo2`>AnLIA1<5a@`$o4*fV1 zbn!tqdw#^;8?#Vj^Jos7FUCR~4$pE_1GT*)4hDOg&BB@CeHQN8@|n>2Y%KA;#t~UsK3~pIN*<-W2NUoDX?TaU|HS4e{O|W{C~I z$Ho45IOMA~`k*i7Z0PyD*6#~iNAB$T9zB0s>sLbFBmSz^8$u1uH68jh&c#^>wK+QU zUj7#b|NbpAg?!ytxA9Hjdnu;4C)l4B_l0kSyhbkar0tv#Qw;GuPoZ}Fi#PNg+gc6e zIDYwc_fO+Lhchv}H#ANmjyc{OTjQb_dgS+LJRI~+;axl!?EfnG^voyQ-;NP?W$U+x zeA$m&|DpBSF*F=%y({>U@0sDwsK;Hc^~C(i*^IhtZ>+bprgu-!r1pN@S&HG)-t8fu zYvY&VWAo?F_Ipauu_^d8e{!bzsc?2_@W+;RbNo;oh_}YEA@|YyvHxf7?F%~PXP*|i zUm4zCz2$3Xh%fHppj*xlg!}STbN6YIkD1_i=%qzW{a`Z-^&2ryYR!fYbMR!G80u=S zeiH8T$^Y{BD|!}h-1n=_^#4h?GX-C3LJ!x*@|xIl&)o4(<5xp|^r)+vtJ(db7T#CC zrw2Pa#9~X|`N5BvpNwzBrWpRs7vDQ#d@rZg?$S^16q|!zHGU~R8qWvc3-O8A5L1jh z*SFph+e19>(#~K{^P55+#Z?Ph?2nv2-TIwDFFouo4t){#gs?Bh;{12?QoL7#{~yP$ zpj~WpE@xV1ab~dBE8it~@Q+zIzcX$Lu`Y;>VJ6s|8+6P2U&pp!&zC-|kHui~{kSB= zGqd#V4ttk{zq7P`JKSA9AM~FTZw)%0jVaiP^~E?8L$^IKe-Pr(XWkD4A9UOIeu()( z91}kZ`e<^82G9KJ(W&w0;a&Jj(6v97Yc(t12>$u@EgAh1|F%$9ddGKTXX}STPxVo3 z8u-{Se_rZ$3jWuGJbVMp2D@>G-dX%cJREf26|coF1lz^=@7jLFQ4jvqO*}U0cV7Hu z@a-K}hlTm`_5EHI-tl`wFZ5eZQ^JuH01+&gHx@ zK0JTccjx~h{yN?nv(TTfhW^WSim|t%H6LbT`I*`*#IME3m)@tt45*QO+?#^_)#3R- z+!|^({w8}?Q!&iEvqSM}@U=Z?^6r^4`{TYdI=pATz2eB9uLpzHXF|>S+8t`Ke9ivy zppBoS!?$L6&hPH|%ozHd>E*#tfA5#|ENFH9ouG4yD`IV!o1esT-{R6u!}{=U&cb(T zSICcE_lI^dE{^eDozdD|8s#HzdiDivn_}E?rr+k_i=lUHPY5O63)b+VG2IvH{KC@9|?KvkGsQ6hO=!wW=(IG z$5qQ4LwsxV;l8@Kw>B;bcl4Cjt>KKO*?j#I1t`=gV5Z7H4)?E* z1EI#grDN?K5?B20IgnaeNEPNvPVsBpLH-)(TpBemn2h7WnP;+{2i4otP+-W~5)aSvF6TOQe&X^~? z`?WY2qt0^wble@IAI@jNX5>G$md}{8k*C}~5dSXj46}7Yct8Eh&n(jVwYW7t5;T7+ zHidk=bN0r*zwK&e|F)0^eKe>CZR+Lji*YDk4fQ@V#Jn<|jNLKf&})Bn@JG|Ag_)!G zp5TY(4~O&HgS|a7FXvG&y`6=7$Hk}_?fmQuGxXns=A}3@rZAsl*3Ovky{BKj+8k`B z;9I<>{1@!5`e`pF+(_G$P~*cXe& zBe6GTp$5*x9UA>Rif%q03c9D*AIHb}!MF40=j*fkorQbn#)C0>N6+CH@8I37`8*J# zKk{O~CCrU|zJC;IrZ2Yz{rX`B)X*J%uZk(uK|HnfjvN(_20Qa+Pd(_Rf7JWl`C1L! zpJMsBd}#Y*jC1ea_$GLt)kM90kNnd0OL0T&33Zm6?;9=qy@EpXr>%Nud|+>+7aa zv*AY{7B9uo;aQxuacStiSr}`*U_DNnfd|VcH#WBJEilB%6pN4s*Nw39R9}DsJ zV9)MI%wlzTU)+B=%#M1!JJfXw{n8J6v|>vv#+~t6h&P2ZzU;YkOZX0-5pPeqF`{VTaGd=Fm`+<1d{Q0(i+4JF!dU#J~ zVQ=(xXKQue9cE+}>|Tmr4QFbnkNl~jcaaZy$(8@t#WOMVn?d&S`^ET$`SYfJY5h{D zskmyUPE+v1ue{{xZ^o_|8pR%S$Io@~!*J*Q!53}f+#ciJn1B0I(7n7qW?P;&1z&4p zbI?DoYS-r>*D5E5#mpAFw|R*X=3=}r;&})3K}!EXX{*}04{=B8%?V-NjUq1D2ThMhdHpUy`n4o89(Fc0el-;O-xzv+S#1xN* zxZenN%il5g<-9*W7IHU-7X`gyyZc+A&g%8!koP%pAa09CxhF4WPX+Cl#+LY(adAu`2LI|O zAO5$8ob=!a;oLo%yc7IQp$@CUxqP0Fm*VIcbs2qAUm9ki_UbtWALf4a;~TB{dpiCm z7Q^!ta#c_7lv!9A{`<|j`%{d3ti_}C+i`h_<6PaZ3Yz`OS^jc9E$$075byNh-*@?% za7Qff4h>U?12#7YfASkW-#Oo-Wz5<6t!Kg4o)CLS90~E<=SO^g^_K1_w?+bBg zzb@4Aq8RmY=dWVCr{8YP|1IH+PTKYaKWpQ?A?JnQ_ejv?9T!_4Foif9!#S8`@*;26JgJpn%x$9aZZ?-^>Oa}*E4N=UK8??$Ca@qMi0NxS{>r6kFYg*a! zcf$FKP}@;cIlUZ9F@@Y`F>+TgalaBD3D5FA9RFhedsV;cWB;i*G1TSwU{BB9*cHol zZS7fJ_NLI2RdG(J+brC-el2Ff#=NM{=*O$A)s=R2eI$N4#GJ*GA;v@Do5F|plV0|# z!~H{{M*PyYFCLFsEX1~;$NkZ7dS40O9(D4L@GagY!CsvI7-E|b+G*iW++ja@FtsPf znsC><;aN|q!-5oJk zv|bec$}ZzX?obQ9Zwva>Wg+aH8lMaP^oPcghjTrCEZFlq_BOVDbI9#WVSmK^Q0uE> zDa^$EA@02)#*-ocDc&Csg!r_+H~4bb9WmtcRLI?#yWSsKM{ep(tG@>q#m>-|Yhr&K z9qgCa?5v)z4So2h@zoG>^w+(!;~jB0Mm^Q%)u7{+5LXTxNNZeaLGHJ$@-3 z4*AkL^q3#HT^>`=Zq8|*!m~J^k3S0c#a9Qh)X07P@VhdmFhgtN!@-umQ^K7SV^z@S zOpGnD82mfi5TkCZTMt{>&xtcakJZrH9q;e$K@)%S-Wlp6ryapRo&2wl_k_Fl*2d_o z9DRq_(|BCS;mR2ChRvv@IWz<2oIjfRqw(~R$L3fbi+}Z{ecTaOy~jMzs-6$VwvgWx z;=6CHh6mzEOu_#A;8%Wr<-wQr_Lzd6p?_uTeL?SqaYKm3b~gW2-)qA>$y0pxAC3Fw z&veO!2C+w8W|qCZp+l~J5}%E2;VwJ*m>uw7 zo9~67_0;elT^i=(&%)mivD`H?*0lX7?h3vCL6{}6JnslK5MzJb7;=3wE)Vl52YW-0 zyws15e;V=`u|^%2+q%!6o{j$L3EleQzIRxDY&_o^=f$e9|8L^axGJ^lvJ_0#$8Y;P9Fg<8r_55=Wjj(5i|$C#OC zTB{4+v)CJYBd^`zo2du4#>k(&{Pu;OjAwoH-8dBbKIUD0*gKckmGfuyqjA(>Xcc#g z{}f}7_Tf+NdZ+Rs5}U&F6!NCW z9EyKc_~zUZ&&E=y-O9KqwukpxpTyk}Cx^V{xpw~ibiXv69~;8C_~Jejqc(48O{d<9 zKc3C7J7U}w?9KA`Ki&g%X1g{<{@Yp~3HhBDpNQrD)cwhDXX&TT z==UzK3HQaLbIcImZwUcWXh-vl~V&tdC z>L!Q#V^7>0FU7+#3wwVTw28ke)Q}DuXuTx##J)H*jQ5AV8tw=_eAm?Eg?bEd} z^yyo{A8p>Pi$ad~#1o;9N@*jqzg{y5zInRq4S;aN;|;Nyaz=hiqT)b6I3 zg*f~?AM&7IITov*j_yFO@=^QS{i*o`^X_k|EcKKx%EZ;M0WuKCp$ z&(7}++U%?8eZh}CF_%B9DZ70ku3nrFW?%|;_;z-FJQMDi3%-`;tDaNrkB^1=JsSM+ zaZOC2wtUemm-XTNr1*Z&`VaA^F$;Ed@S~n1?%%dv3>wsUiqR`I;KTc-_U`L1+uP^A z?k~lOF@?L^;=1@iuoce?*#B_wGiF`SY1g|~;tTPw;-OfG*9V`&{)?^0d$p?dhIlsk z)C2j`JB2ejeI~vfYOcPw#kC=~qk_iWaY;D$EHD18H-&m12zUH?=I4|+Bc`xN+o`cD zBhCa*V#1N0Z zH-|Gb;Y@$u6XylpW6s6*w@$6tt0Dg%k6((91%JE4*?)`ELY?SRXFBAx{O{B7<&6Cl z?A4K$)xqa1XjG4-I5wPlZ$?a7DP@$G%{ zt9SCD!Lxep3GwuZ2JtQqd8yB@1|4F0z9iT?|M?K>^YNE)An38j{)$)#_EU(rGCmRJ z=c~c@WAX0LqcvgghGlE_Z;VaBhd5u3SK@Fur;EO~&7X%>IyQv6_WWKOXT%idM?b}$ zg8d_5j$e+gp>Oh{{j9hs*nK_tJTC4EHnh{GKkGwm>yyIy6!eb$RjtMU+n7Rr-XFf% zsEb*Y>mS6>!QS`8JTHd*EwMNF_iRn)?Xf%5=#HRA{}+Sr=i-(y1KtJq&8uA21busg zPntaY<~!$Ktrp|{*dKc3j1Riav^?ZC=FGp*#QsJMz4UKe_AEEGRtxXoG4WvN9lxIo zHNH7UyoJ_kqo3m)vbQqSYkScD?Vx?sWoqrts?hguhI~D5h)r>KJQePLCB(igyi?zb zBk`&DK#cy3yl3sn_xIv`G4lVd)^v!qF4Wsh+FKiXrataI9OlUL`-9EFI4#@K5%-$bpNEBAMYSmtAMEYFWWcl|Dey35bq5r?nwZt^#adty)UcUPEm zHFj=()nHc~9nZ$~K?i&B^q*F>nT5DVg?j7=xt|fYg*`JtpE&P`!}Il{{i^N$&_^{< zn=xNoTf6>p7#j;rk(1K3@oVjOP`tr_jgkaY@jBON{sb{MK@ohrQ>*9I#t%KkL~X z+!*qwPe074zK>^q%+=#@-+X`8ulZ$TPS~6pr^RPNJ{v;rvtVZ?)Ne7wqenb;p6>}g zpnoxFcSr7e_i)hg5An{>19$Yn9$$XV@rXCg*Jj*2dNw!5#?E+0d^_k>vsv)*jiBS4 z82fad5MxgLs;AzXCAIv=@xkEF^A}=cycDxoh<_B$<+dtl-5gVxt*x;yoYSDLpACJP zf(~{^huFJ=4*S;M2{luP$3jf;==FD6e!miWs(!=AQfqZNH`vo9Up>1jcEzw2&%PYT z{P49r-k9|l+t)XmRt24W>$M)!^IX^)J*43m<3sV!!@J;J7yn%`^wBk&Kl86%bU2r{ zI!)o(eKFUE85n2Qo9EBY%msV3^6wCNdv$tcwme*hWDZG2?%1-V_1%KkmQLHzGZ-)EsT^|QyAx;nW zZ;W$e_56AGr+H1dD~~DciRaE);roE>o__+1;cJ7a4P z;$0H7(tK4+!B%~~AEPJtw&v##!}*vs?~%UFg1&{Im;W>3K&bn#hFsnrcZR;2Der{u zhqdnzf7@eI@HYj0w2wPmTGPH1Q_yoL#2a%wwRWG*C+EK>_RF_-_mSYkJ0kYg@tL4o zp3bJ=gU!&R#w&xKSHe5=&R7%f^0g=A;k|Uux9=l;Q>YKk?D@MS4hEl}j>B=-`jaQ>6|-l*xAXYq!u_+l)@6nDi5p>}ld3g=>v9?&yt zIJJIV918O#KY5v98pJ*l%i}Hdd`67=)8+g2(Qw~9`!1=|=8%sX|3*9)r^a%BqmCo) znA`KS6HAVAz9qyu9Q^%tjD9T7@x=DsrTurqotHvi#MLV~%g;IA_O^w&@V?B#{<$HS z72)pMFjwN66MOo1b@)D<9DMDMyMw+d_+l$Z^;i|>g#GWuc`*gw!%p7r|7{!y+CCfN zPBCoxxFdFkzAeVJLBq%5UxfGfwNQ%qo% zjj<=>Ld#piUB7z4r*Fp3#2?3>$1LP=ajc4GV$9Xn){9}**2gKqmwK47Z6U{{Py-sa zgdT|H{<@$`ua6G-E${oRXW!+aRn3>L+3W8YLw`MQh*?|^@*nyxYAtWj`-b?RLtZq$ zIp}mY-o-y@?f%ohVqm9=R*!t=(#-qBG`@? z^6}lGVG4FfhaT<;wt6dfdHq3bjdel)@5b{4nSQP4A3N!A@@;4>LOQ-`jc?V;*TY18)oUGedU;e>C3~=Ix9Sm$ofI zzxWHGA8NWk%qkmkE)BM7!_J;u#JoK8K+fW?jJJood^=w?|6S^re_GUPW9YH-U9m0J z2Ady+-m9N{)Pk+`Eg=WB@ouQW6mnzl_o1Lm{(S1aHQyV;-6?3aN6XkBJ@@?^`q-QM zhjY*G33v4R z{c&{YF>U7Yra3h6OVg?_e=mgi=Y)Fd)0SW>KYMZ))7cd49}K?ey&!%q%gYxztx_O!|__&8qQyd9dRUR zQnRbVtn7{P9hh3n(QJ&Fcb~nQ?+!CFp7n!fHF-Mj4)&wZ^h|TaT^nMWFPc|`ecEWa zIX)EQeUz&^X9oM<2sODb+@ps->kq^g^Iv=P*mr*xYl2?-_&*RsAN~43Hyz?R_Z?ur zKJ;|-PyS2sVu<0s`kxW@{zvG~sE3-e8+z?~zCHN2X0sGq;*_9G&9{Zv&U^#djrv=Q zZ8kQ9c{11ht&LF|x{eDueLmdR-%*GEyY&?RKJJZ8F?zu7a)0#F!pHexeul5-Tki`# z+?$1(i_M3%c^P$lV7~v?{raXkJ28A4ym#)Xk=|PG4mtUiHye7ck16;c`d)0UpQp#F zFw<(PzO=g|$CW{^dGTJE?_tNESo|Cvv!MOFV5jbMJrZ9Je(hZp`ak0TOl$d#8u)ko3GjPN%!-?UjBMZznakQ zo@X)XIy)YZDOSeogGTR#Sl^5f$C$^9TZ=#HFygFl?~2$H{M$DJ`ZvWa^qIb`p`Pc2 zShE;@hTie6{6=TKPwWa+ zhy8a1&F08leJ;EMmxUZw#O@HE{g305VZINC{<$mmpT>U<^RyW1B}cZ`2Hot}27S-R zM?=r=2|3YVe)&5(*gJRE`7gxD!A?D#(>II5A!oVjlRR#V^Mm#ggZ&AyYQ87dg)zQU z;_1@9`d-1YZl3UhWK*lh^9>DV@Zwtjz@ z3HRjv-H-!4`gmVBAKwi=={`2(^6_9R_Y>pqgZ+4S#h{n}wQ)(v=icB`EVg>FCHVS4 z&_c8P&6WG?t=(52d3Yb4x%Y6a4(INQ?fyyex;PYS@a~YOeYH71me-07?}qa?1}(3| zj`-bhX9~VXA87knu)84SC-$g6jlUO{1byPu%-?x21r4;Au`y3-{8G%q{EqlrTYn;U z27ff38oTDt3;psj;_q!e3w8T+sLj_yAAQT7i06X;%^{D^1#Nt&=OeKx=$5ZK(tL4@ z{*3(eg?}2@iTmMrAn1KEoO$=;MZcQ!r&s(xANIcye60;O=f)IlR|ReAxh@_HG5B}a zzS!Q0SA$M|t`D*Ai7_urt;Jm#?D%~!cE>s4OnmkuFB;VFJ0aei!rfcKnYH+4;e=qj zF;;|c)6U?JojCORW{9&UhK~E@>yeZBqHhYm%_NPVj|+m)WdNntnZ7oIkUp;Sa-o`f1n|X6+xsH*?JQLTj-` zUEJk^?dkDa(4~iLoE-^!E5n}JUK;A}oIY{H5MK`;iaUd?n9ljp12H$oF~NpUv-+jr zbJRw>yF$Kxeg8%t`aR~wJ4>Hue)wA(?+tnFh;eV6jrZy0&de0eM}_l8;@0>?*k6h% z_QovaM30!Ge%o8$80^=FxQF9F(D!(#fmxWsz5f_u>9M|^67uq{Ed(tvGehs8*50=* zu_E~UPSB#SVvlDr)K1(_#pV!e3ir&^sc~8y9qK2CS%|+aHpCR(1>a=PamVhIiD41l<+MMHY6AHvL9(D*4>sm+GRIGKYrIUrzh()EuUFbPz zvIZRHOe|%?CtDRk3S&L8&?7Wr3O%i+Jzz=kuk(8Bd0#Wv+!O2W9A{qheZF7s>%Q;n zzV7ROe}ZbE{`({M_*WzQ(VJ@{@qKM`)&9)6FPfstOHQXndiQYT{FX)5JU%}k%ir~p z`ly9-ab`asiC;wDh|Zn=igzx?TeH^ES2c%NwX@d2$hY-pA~~pmygnVNk#R>O=V+W7 zY>LdSZsO%s`<%ko^lo?L-Mb?7RXcOm{^V1AjxUW4L~^V9d_mZJ`gl+D&B&SUitJy! zee8(T-#W(Ii)VR!FET&xfk^Jo;zyDF%kjy`dpRGC?ALmW$oguc7K=#!?~jg04@U2e z%&9hguf|mV@;1MHy)F{3S9n-H>UwKr{>!2}qx!9vi~Y*A-mqwU6!Fwio>OE#>sF2x<6AB-Js@_~{8yaXekro=WszE~iGD9K-*b_DZHVMze)C)# zdA~j4Z;RwpXXDxX>!Kr(-y(h4_v*d%d{5LtP1Wk;$Qs_8+xk-^FY)SVKC$xS`72(1 zKOA|#KiU#mx6Z`h3+LyJ`TOh9H=pvVFkJd-#^S$Y3U;R|$cjf)ZBfa`hquPT#|Lf?%$a%RtQzUL(bWe0w_?8LMTa8iyDD;C>SDb9GnZbfcyoMqepVN8 zYHlukbM({E%cDD@zJ~c1(Z)y*?2PR5>ges!Ql#FMv-|hE(H}(C|59Wx=B<3r2%j3+ zmwdk%T^?6YuMH^kv}{kzBtJ*_-)yNA@h| z$D*pe{Eb)Fha-J!FV6R}NFHiz{31FllArvYxp8XiPSl-xX7=o9iu8mU>ILii`}*k1 z(Z!LtihVY0U1zIroagH3y6C%+d9ZJZ+-{HL|6uf%$UVh!Rxdf)|Nj*IUBu_e?4aZ*0eYAYX827cQ86N(jSjR=D9bzBT@tVdQW7Wdfyg(KC%yM8Rwlk+%o^& zm%n;Z&A%P}_tAk!ebmE#YrNXpuQ{Cki_s?{y)Z>9BJZo7)?67mBl#SQ?B^Si{Wx#A zRKKd{jZv?UoXw{`KNT5Ud-+yaE}qTxaO7On)SAvoKK7ulZ;##?iMOu3Z;5*UOnH{) zt z77@>wDYA~-?NzThSADQQ@@`cmpT72#XXnv9a~P+uFNwzYp3NmM_fHNN&TMV>OO5cR zsKy@*uZgCp>Tj&N`l}9?M&=dg+q60QXyhK87uCGCgw;%Mt%%Nv+?m?*j<9*e-_icc zscLI~_e8!C_AgiQ_Tt`N9Eq_X^|&T--uAN;Ie%+=Z%%tS6p3|q&Pwe)e&$arf^ z(Z)zm@XhT$EQ|D`oa>DBj4}O;*5$eOXHUlb+h`Hp6sg1Qk#XLCD>@@GMvmt4Eaz?W zbM-yHzTMvGo#T-`*{A&*=h<9em|5=X_VP$go$eUt%DbJBIqRMEe>pOrdGif{=^BZMeeR*kQ{i^+C;i|Q@zWUTXhE^@Dowf6c*zQ&&$y*aY}RnZqC z`@SSP8i`Ri@6B;{bXO$it&zL?UDKd6*bh`%z@< zm!hTU-bmi&ut)pW!)pBpk=XA?Tcdr^>5+YyN3W{M?x^zrrLeJjUmey)=9SwwBDtLr z9g5D2yfg2n=zP$Qw+QY-qZPD?_JoQdbpBnZ3t;+Kwk-2Z2*}W5E z?K>hpAh$aseJEDm_UZgR>k(t*U-hy-E{@c0iuAJ_JgcAk^2NwJ_I6QZ4f(z% zIuhB>QnZN9ip(vyosl?uu*X+L`y=s-$bI_XqQ8#p<3MyIvi2`V=SJ35t9M1;h@Ot* zYfrxr@zhFA6)P8eHK)Jc{cU8B75ZfcJ%j8=Gi>rRzy>zZ`^4; zYn(gloaLr=yCdFh(eFg>jc$yrsV23aelhP9iB%spxF)(Oa<-L=`g{Ltk(hhu=S%bV z^2nNEN$od8_e52XQ^RW`HMOSP?Q3UbKhH$wKNkH~^tt)D?(vl8t&zS^w<{uJt+y1( z4}T}BempBISGkz?6VW141HJZ@NZr(BOLSTE;m8=hC&vTPB6@rD&PZL2)ywMlN70JN zJjU6F{kc;oN8;B-)^~@jeR}kCWWUDQ%c}YLZTWjzjU@T{`s$-^(|8~`&&fYBe{rK8|{nEi4I53sQUJ0;jc!IMaG-I zzGZI+%f~x&8LM^=MfXLojJ)@*>h1AC*FqBA13dTX>Ts{1sB`C>1O%(Ef7G?K^9M)v3ZRng6n^N>rO*|GUquNW)e zRgw9YBImS-)a3SPd*tpqA2s+~v_3NDvgnk^+}1Sa%IM6<85$!W{r3LI7~fuduqV0M zv$6K=%+x}Co%jC8_|HeyknipJx*xCEO+#T6(&*$xVes@&& zN6gicTJDO(tL>iXw)xqd--_gUNo35mk$L5@h|Y?P|4QWk9giwUJ)sTP^2eTL|=~Nw=r^_YAFxT&eXj3L^nsqy)tqJ>bNd4r}1}2=KRw9 zT(#5FcSTj3DXibmkDP&AoonTLZ&@%(v(2W#{-*bTFEt9g%0bRo^{2 zv-w{esjV7TebvglS48^iqtSaJYg_Mdq%PYd`R^ILL{HxjP&jzGUmgP zJe;$?&hpa87-!+k&yB2Y4;v%eQ=~5DH|G?|$KRfxHN}{FS!4|F zaAeQ7MCy1~^h9)VWV~~c%Nrwm))P}?t{bB2X*H7Xha%$_QO&(0>`r(V_cPJ{$b8oJ z&9siQkc0iIwRh@aE&GcdY zrz87Y7OjuOm1qCh&_#8OuYx^aam6>b5RYk9zj^u}H4w z7yAp5+Bk1{yKf(fwnp|KpEIH<@?H&%TNZ7J19D=2S1|X1=#a?~E3aeXWk}j*KC5%I`aoah~nV9v+#Wy|=f6kvgd5 ztD{FF`}$0zUfxfUdF4^Ha0k49JbF6%pQCA(_4N0O=$U8{?TEzx$H*Giw$AZLo!oVv zdHJu6#QXg>Rz0^yYWLP~zIJLTH=KJSo>zo#y6MZ5&H!@%CQH~c!_eR!~&(4{} zm|wiTiTz>3x1Kx>M(Qy|)lbgd81JS?>{3+sPo8SxyLL%b`_dD;qA4<`T%3XNcSKtv zYnV&T<-0qodR!V7OMEfTOKs1J?u_)Z_s&2~uZ^tnqsX_$yHn@C@^r`Kq9)F7eWYi^ z$X%W3vynZU^LVs5GN0J1BDsAidLlBP8d+Bz4o2P^KSl0V)#}jf*@L_Cjz|rRH_sVS zujjEmACAmx%w>^v#BGas_Gs)BnX6*|`OM<&*V@j=cjJcW_apsa%oK_9EMNO}9-dc4 zk3@9_;>{zsb0cf(OXsUT&j0er*_YZ&(6!bPey8Go~6iHi?4Y-<3)5@v?e+w`a<-csN(#+BU&4&g_>K_x4?Xt zL=Qz*Mq8t|M$T_Xq=xeLP4)K=qb<==bWQZzk+q%OtD*-Y`P;WT$?2--i;=z9mpb1X zshj!hzUuiYdRz3v`LFT!M0Z7EijGH9B&N<=y>5-<`Ak%M zIX`UAdeEM${?6&T$XvCaJGCk@mz>tkY&^+vdE}hMESsOzSuKsZJNm`w`AB`Pi7tuM z(|k343ahy~VY#i3Hb-)H#@2LJ*5dDqjzsc(AaWO-#aklti?fDt{0k#7YBWV^DJQ=l zVvX4!xes#jUhG4W+F0*Lk@KG-^{#x3Uqr8t?#Te7t*(DVB$tT@cCRtplrf`S`*)rdUln+oPDOl{$1@%Ci_gzGz_iRKNJ% zZjIdaebE;qb9ENaTSV1goz=g5toP51iZ>5zO)-3Ies_LdWSxfwuD;;oKb~WXjo%nO z5}9Yi!1}Cw?0m!&+rRUv_0_GjTF8r!>#i1C-`ZzI;+%75XInmga*iqXZ=240<`_P< zZs!-8kG-ej;{#WHruffC{>|38_AhUFzC7yu`_0GZyMOl1$=}*vv2*S0&WhpV8wQqp z`Ph3Zwx7<{zam-|ogT@#bG>)QS4DcWv)(Kpe{+s0_O0!_eU9N{xpdYC7N@1 zcDChX@y|tHj+~SIT^QM$J<6@K-;(mN_{vvb+#W5WV)N_2z0p$STi5x)=Ht8Pm}2AK z6rC1Lk!Sg1`L7!I&zg^~pJR&Ex${kP3?DC|&X+YGtLq{v);FCm%Ci_gmant1Z@uDO zXEiAw*Y~Q}_-{q#I2xTYu=&cz;=~kt*LfUoe!nLNqD3T^&T3IUel!wOY`pW`GwZg2 zy?-E5kCUPw4eY&sdM45r=MDVf=3}v9iVqE3cax8wh&mfvKDK_HkKETq&ZpS7yz_H& z3?GZ_yu0~$YxH=uGkPkT23G6x@tM&S6+b)h2lFh3kIkRlET)4gALD<3%K14|&ekp;ub*Rzz3Xhem>OgL1JNS7FjC9T z&Zhi2Co#p_1~#AgDbfe;8u)PYvGaK(au*lTX9o6dEFW82O!2(~%SQ|!Zy#8G7f1fx zW{wvIcGl(NDH2m`Po4eu+!XP#{n(c?JU8NZKGb~tjyb0IJ$deY<{ZPvE2GZ(vHTOU zT*}AxFDGjl_sqb)ndM`-iz#+aoz3Td@y&Vj!0&B7)@x#lKR58V<`_QS7j-_T`MB0! z3j5Ztk2R~NnBtf6-1+-+3?JA0Ys2=a9-VJ%J{IqLy&+l?nWyvnn~%ktSB&rC z!vpKZ^09h|Dc&@&`4*A0UKX7)@aE>@{c}vQ{`K#-3nJ_Kz3uF~S3Z7djw!a^&L5v+ z_*i~&Q^z%tUhBNA`Pe?i6dT*wSTQxH*v?a)#qhE9eIHguw?zJ3)Y7x`I)nRb2_hVK7M!Ptcx!nSnb8| zu{w6Po_*V|KHo90J}w`hJjWEqmsb@^DlT-1Du?7j1<=Hut)nBvuW?z~}+;p5u>p0Mwyy?0j2 z^6@XvF~v{jx$|$&F?_rt>by12ey{A?xW5|s&gNt1CZ<^4o$EaLC*s}B$NI{g#qMTj z_g75aS-sg=z2xoA_}v=$iRR-+=a^zScHTF~@bQgN=WCjee|?TAuKuXsh_B~;XLnK0 z@bRewt3~SyuET(#V@4(OJSqvY$51psxW9#c@XLn9?Y~UN3kM)(}0H4y*M!QSs)1-!aGV@ynym zHJ>x8yVLnq&Bxm#cdgi5oz-%C#IL$`KHhw6{WnDyM<+#x23Gg-@wPdp*uS?r`=*QG z<97~hy#tXwI=^)Tzq|QZ{Nc!%n0Mp3!~aw zv0m)_+j9&b8~=E8PNaT*XF6}qv-3R^`L2F{VB__VGj<>E8Q6Qj*K4Ci^m79{+w$@8 zNKEmW1Aldn;p1DQ&U(Cjym5{xwx8Y6BI4~C*j(k~OXrwk--gc99K*-v?ri_gm}2vE7F+Y<9g&#g^9Q!R`92+8 z9xeX~?Dw={u<_P+AMTFs8hC&6vG_ZprO29U(^)^2kHzaRJ-RPCV_@%Ziu^urj$Sda z_wKXza`X-9d}s5qZ={%F{nh#7a||D=MQ3{{A8(ptishrn?D1IigMs_|WqIc=i7nna z@RVmUd~E!IXc2uQI(J}R`TnYnm}0-DoxLZ%zXu2Q4J;oopJR&G=ehIRIfjqrD}VEz z73tH?7d9VTOH8r3JFBf2J~n@?B{yE>fR9Gy<8@K__*hgvetT3t{#;Z()`R8aFGb~J z`8*KG@s}cNb@pDre=IWYl!3kX`?D&N_sD8f{)zbUye}W$Fvl1B=605w7(U)Musd2l z-Wsim{JtNEjt?yVDf;uM_Rx8$`FK-gKgG5GGvXOHMV+l#J{JFC9=41C+Oz}$tzjlt{% z5L0}j{kR8<$k{og&VSl`Y(I70es`QT6?~NZlS8 z*t_!a&N-&o{Lc0p(VqEl=j)n}zdOei8!u-)W*+%pbOI3?JV$u=&f!?vvj`H8~z_9(Zr_ zv3PY~7OjeSo#nea@^3otd^poRyQ$x{OrKL)qMQMIi`4do;&ZGWBAxvcb30;zAN(G+cU5;DIfocd>l@;2cwIy!*BzdMWy+1OH#m$6F))eq;32=-9xoYd$u={*l+| zk(zg&nvWNem?>IB-;Abc5#bdB`?o{+*xX`@FBn)pdQsdDPr$x?fBE>pd~WcMp8+9K*-Qqt3kY{k?CFDgMCxo{!~wf3!Su_WpL}mGAGa_8uRc-xp7L z?!0%7;p6Sm6ct-vUDieJ&9Z?XYCitGIi}cn-=an2TkyJp|EBp^{D-5}k=zdrtXIm% zm7m{NvCgOSGtI|8GshI0qqF(c+j-PI?p*!qPMsB<9CbEc?l(r;qV)sIuYBzP#}ZSl z?w!rI6kRm`bx%5<+kEW%EvDH1I#<1X_uQ*Xqt53yAL|t{#m5I;KF9E}Z%gNY(tNC@ zVv0XEu>78j7LmPtX5gy7-{}33`gN8=`PkhTQ~b!l&Pog)`wi+`>)jjQx#{7~zE|aA zwH8x+`@r%L!^iGc=gO6j)k9Cz_fh>ipOZ?|ez~am`mfW>1}WRdXzKjmY;qxM_8Vqoi=&mJ~JzN4M}Te*Dv&N-&o zc{M|XQvo0S`k(gq& z@2pl+#K&^$T>Z|+)^~^X$P}5Y^Vge?|D#o z8|Ro}-|o&U<`_OUwzGaLA3F~*#qxO}QoBEz#kD zmo*>v^}mtl&5`ws<=fdiF?_6coxj+8?7oUAb{9KeKgZM^m2YSH@!Y4cMeiT@c=Pf0 zNKCQu?$_#QRpeXQS$~y}ubyLySLC^~`{#aqIr6Quzs`Qs%E#8X|GGm@4y^z5Hy?|4 ze#Xe#yUubgA8(vvijC*hzX_&+&1e67T>m{0?vo;jxY=k3kM#@pY8 zk)AYvXZ3Jio1$BzWdqw+`PkhSQ+)2g)-&G}$?MXAS2Q1scOJf}RiDmN^RZs3`r!H& z7q6RR_*iV`srk6pH@@y{=T9~to7256u6{Zk&v$lB)cH%z$GR z?@#$y|B5NTa$xhx=Zt7uv~1w@&BuOo#1#83bzVNl@bSK=vpy;xTVFr)->A-NUHik< zuiq=Yh|0%uDpBe9+9y|Y%kv!c$snvZ`p#}pgCFS5s5=D(fAmyfOC zeeoX-Y(96&cjQ>~se!FkK0a-ZDPH8cv-$M6_% zI~+MPvELrpzi-ONE9RJD<9*-cE6#6e=LegQH_kD|#&(|O7(VX#RXyZdJl4a%anFqS z_-6+;Z~1uT98+v;XZsby$9kc&vnwBOnq!LPzbslm`)btrGtI|~NKEl51Dj93?T*y> z>4CkM|22_3w+-w*m5=qSnBp4$bMX#E?}$3TqWM_-+Q>IzRkZOZusJIR%f;B@X<+jo zj@^x#R?v@^1vN98>H(oU!Lxr?c-@`S|ik zUd7iB{INNPkHvL1SNVA598>JBb+*5~(b1^-z4P|wWAVNh8zTQ7=)WJ>_o#e){v1=dY`mUcMEqR?d;dt} z?oQE~f#qF37AK~7<-k8b$MCUQbpFle<2TPS#qx1p=C8k<)vf%hq4z(I^oCg zeD=V4O$;AT1KUsexXz+j{?2n%RO@u!(0qJuB$s0Mx%1&UhL7t!?+tH@)S~lenvcc1 z|N6^#xpy{4`MBbLEv%;JM4k0l`B?mY(JLdrW6rU&^~%Rzn`4SM=ehHaIfjq_KI-gy zQ$Du7e9njtMSnD~_r8gX$QfNW@R8b`nlXI*}syO?6*{d?D$s=NN`ESK`J|8GM~vGLU}&Si@9OR>FnR;wxEV`DoX zY(AbMF~!#He14v%h>zu?HbHt@3MKF~x@mu6p=4jqj%( z>-s`&R2eK31>J#$On@k4w?113S-0B6%3AzMY?J zK2{4c#d7UzY}E_j7}b98RZ;nPWmG;kwtOsqIbRZ)=O?jvb+|j)9KAH~UpF7?T`@n7 z|D?s>Kc3@@t!F>yMEcLO`y$uvkv{3{TUS07FQ&d}rw(ka?;9U44Xj7X$L3SF`X>4I zbheiBt8daYusw+3V|jI!OZm9+uNZft^HX^i&&N9lo|=#MMq-LTJ8-S1SFG>b*7+mN z$9K*##netqA+6`mq}RQoR$(|K#2S4Zy7pGT_(-q?IBXEDXoz<1?Y3?KVF z>}>z*B0YONl1pdrc^e|<{NTVJYCe8qjwv?2_VU*7p~$|9<2Av|8$-^zkH72WAp3B zFGt&>>jwUA^Ra!2DPBMD);u4GrPS`Plk?&(-JWBK7KQz4Gx@b4>A9^W52c z;`?iUJ#{qN5y`3Zqs_pU&1TA73=b6jwcV#rN&; zE$RHa=HqkbnBqNo?tJnb!^i(?A6wBB7%2y7{2eyau@rllNZTywd<&k^Wd3*D*_0;^b=+5Xb2KIh;w21WW z0|UFugHqTVQ%#`?$Lq0_r15~&gjnvHb?nb zEyWbe=NBV&_t$rzbL~ftQ)GN+vE}1iA~D6rJ6~t=y~sW~i!Hy#i78$h_(bPFCB_=7 zA~ou~y7}1evY6tk-xcwEvz%>bcdGn;zix>Coygtoe5Co<*@^ja{5LHISG|8Nydye4 z>b$J^SpSGAK0a{O|L*wp`_uV-&Bx;9tUgoZS$`dj4oBY{ct!KEdaBrTn# zH>1vPZay}rnBsi{*ZlmN|Jm^I=$z=9fvvwfQWLeUvoH4E_e%|45j{8Xsm;e?#T3i8 zv->QDkInDjV4jUTI`BQs$NIsy>0mTPhX*#_W6|+Qf9@UFdtvN98u;=?!^hrrHs670 z5xK{III#EjZyn>84eb5l=+m>mZs1yz`SqJKmB+Dx&uu<-FU1t= zKj$yUdn4bc&i=hqKDM6oTZ*jvQv-W{aiq`8b97*5RDPY8ee3zNBR$gDH>!MW{yLA% zVfSni6p>f^jOM8^hxL-Vno5%XWl=e2ljz5AmdMe6+Ez|OvWT=5UgzHe7&`xDQ{%LYEB z`PkWrDK>xA)HmO6#S|5*OXov*uHO?}`N{RhXie04YCf*@%&{Yqd*|0QA0LUt6hAod z-FZF|@o~*Rh2^~}>g?Y(@vlUk_ctF~-<@4V?#1ST)uw!W=Nwb) z-$0$+S22A2uLriCGjd0qzyC(=d~Wlx_@|=NqDvz=cV63k?0euo`5x?!?5DHer}DA+ zo!6(M>mvVM(Rq3E@tQfN_&}aJ8!v{B&0qbh9+yQ^RP0^ngLxLi$L8+5)O@^Yjw!aD z@52-s=QpzRna#&5BQeGQYGAby!^d|Ge17xs*2wzSz97=Oou}sGTOu*Vdj__DF?{T7 zJ73g%Z2$Vp9nqI>8o2tEk5@#U@45%ah+Fjo!7CvdrP#4 z{%hFyN202+_5UHB^1fnlolkM~3%~lJv$~d#t#5zsm_GjYz~5*-{>wS0*!b0vInA?n zVDEjW<>0+$(Oc>OL; z-fGd=*z)nFIi}cn`JNFSie53W_xg8LbU3@4xXx-_KHdLjNE5BmJ6sy1b$#oH(GO&IwAIo2TobSfSUOUURd|dUI!fLH{oi{ZfS3JHo(o3Be z&BuCGO!315AJ4NGJ~sdT(dtNT&mFk-w}@}tOHt>qG#}S|>ZcCtqRz{kkJUy@@s5H0 z|1o0t*!h@G4;%M41KUga_(&wC*gBn;@_Z!XW3}yE`*|_`zGxA3_FliZLz^S_z4O0p zK2{Sk#pexdKHpUPGmqZte5CnUeAV}?u=BA-v2{AT3u5?q!@%}XKK5?_F~w@rSxv<7 zan-L_etK()^pCsNSuM-Q<`Gk@ww-+o#PIRKfiG=7RvR(J@_8cqd{p1H&d)a=Pm%SC z<=WYQJ4_KD*S~*?_cR~xm}83N*I9o0^TJ5o?Xk1|-yNM1`R#niz{WoxO_7{d4g7fX z@tJc>vD$ZjY>wgMn%}(6cxTkvn&sn_b4>C6Ja;yqb9h^1KN|HY+`01m zdi?vMH%6WRQS-606;u4;z;YAA$KM)Qt;@&P%rV94+u3=G;bZSQA8P)I*xfB3e`<~| zHeY9Z7sJQ3X0g3>UYcY0xbAbY`sz>Lh(#p#&QqQj5r2xT*LiE6^~XukIrF>D`lWpQ zy*cK`@v|)kpEt)B%lD2*9{!!L_d4I*e0=#FQ@k$Eo%hZ$d~E(jm>vlu?E z|KH%p@ta!=RuBELC9+S?_EW!sdZqKOJg}bpFgnmt*OQr zMRM)zJ6As5Fvk@8J?d<}$L1LGECzOl<=1)M5l_!J#~lOLS@W^^t+_Hf(YHWM`PhEW zjEb$**<5u#cvU2(c;mq8TkqA)-4t7FeCGpm3?DC|&d#NLydzpf#m=|$m3bD!$Lg^= zIvO2|UOn({HP7~QYgA{}c|5;WiJKxmwjce!Iocn|rL%YCW4|?GikA&+K6&`PJS%!?VEZf| zixpFRXy7l-F?@VD>TJFGcg7WA`Pf^r_x9ty{Z(}5z-m`MK03z~@6K~)bBW<&|Bc+) zdUC9s{9C5;19_GoAKQ0lW6Q_Z5>vcp;Iro#K6bY|o4b6xc8)2QZ+(Xr;g3b{jEdd2 z&f?YMs_67cUY%?I?v(rdiKw%+%E#jMK-I`y>1;ph#mCdYdz+8-<`fk#4ZJDOV)(e$ zKNwcGtE0}|tN+GmN2FIfyMO+zV^2>;&kp>G=3{#hQ|uf%AIY;AJ~qD^zb)Dp9Upje z^Ra#uQ*5rzr_M2aY=7>`Ns$^~Jg~U(v3o71c=^D3Lku5Ry^F2qE`B^ZC%R_fOPY_x z*S{$i;p-#yDE?;y+q)P(Hs1ODqv)PU9-SA>$Kqdz<=W4VhdzHi{$^DKsst<~AOG_y1&F?%8MfSLU;JOQZEWY>Hsyt7T zn&IaL{!#PsiaDm(e7?teTOJz*zNGnByfxHVKJG$iy<9%t8l4u^Z-{@Jb=D{PfsdU- z=RM8G*UvG}65ug{#ZbGd9_@5;wJ=a^#SosXV-Ec(>I>R3L0!yHq5FwdQ*Ifjq-MxCwq z;mG=jBDr<8r}Arm&&S&osndl6`xcdte|wH8-kN7Q*x%!kxjMhA`B?466w9~9%UdrR zU+mk{SuSGuc+J53n~%-!PFeSiXxqTv`#x`s4n}h8JT)J0j>HtJLud6+2XlF+Upw1t z`B?l?q`&mt%7GtlKDKu;#pdX2KfaHZqd7bKEtn#H{VsGqwfXpx$Q>*;fAw?SL+4d| z`@o;iv+;Z^-_GVc9Mv3RI?LVMe0=)Af8Tuk@;RpX_w(G@dRIhx;XBdBft|+-(enA7 zTsr%2cw_ijyu9lEc-Pt4*LZAgF~!rs`b!KS>y^&qdVOvD^~id~YTsG^i{azD2DV=L zSiPLt&gf8d^T6&{`S|iVrdY3ZHs8KT{a%W84Q$QwvAz>iEbq>Bo*Uwy9eLmR$>!r{ z=a}N-dG2gJzi-aKJSPoojqMvDer5$0F<2-_GVPAOEELX1>*P+->=L|G>QR z>#vyN@%{Dl9DJ+~I$Q6m*?Td6KR@vLJeQBx&N0QtoAc9=I;|Mk`+d=t$a}wUozI$9*8OSZR;#Q^>&Z!Lu_YfUp}^XF~!w? z{JL)&!+OrSuN>I7pnSY}jw#-n=MP1-=GO-PVVunq!LX_Xm;u4@8TB z{iclf>MGwN)<^09j^rr3DjzrE2fMD9mtzis8?Pt7sK?pNni=NLXd5Ow};^YPYbZKMVp zq8$SpTRv7lF~$FO;Hu|I@u$e%JF8v!xa#N3#Cdej`IL{XCtgqZs~0;v z)AI3K=9pq<+1dK?^Z%1v7^zL?lbeqhk(grnY>Ad4=jC1Jmo*<-PkvM6?8oz7-h3=K zF~xel^R_vr?tuH#S*#d7-Z$_?&Byj*55A#)8Z8Fa*X83UqeWEg-x}lZi~#_*KQYG?8}IxUk-hj!#r}5I-}N5* zP4~XoeD2f~xqtqB+S&5iw7zd#`MB0E zR^QI{)J#q>rv2`26N$^XWM~>>TZ*v$HNAixpEWwzJqipR=y{u=V73Mzkg}SLaR5 z$9w0PV&mOEYdW{Zz~(F;`!+11V&m0cZ#ko70~=dD-WpAjeW|~3o%b~#%Tr9Te(St{ zj^ShT%TZ0-AJ}}4ME0~Z zng({(q>!MweaoY#B$MW$a+8z~GJ=~8gBE8qy zn&snPpJR&6-C5pZY7fr8v-MU-)^UfYf%SL!czZNO#m4&{RbL+;xb|~Z{L`a{qt0(> zK6ajBij7wrJui=q1AA9K{)IWF_)wlZ-#o|gvHA6*82@JY?7+3Y+|P`*MV16 z6xaOvev0JU+1ZwljT2M+;K0k~7(OFpv@udU5yZLzY98-KO&z*l~ zj^X3?M4j!&efJxEdGyf0&bEB~-_0?_#_I{^sxHo^^P>6Kw?<6y(!iVYEQXJ3{+(g{ z?0eAJ{>#T|E~eP{_0ig>*6zG$K3)@5e)!sG5f$5a=Re4^7(TXM@3$$>s{^muebv^Bavve$1!&bG7vKeT-8otWZ11K&2s@UiuFM;ju& z^sRyIy?kt5F~!#FEbm$yAB@BlUor5MXEA)No}KOA`H8tZQj5;sm5;Z~F~#0>HeO7P z(d(VfEryT3Iq=EN$G+2IimlaIea)vv`rz2WuWmlRbB-xCUQLXz?@DKPvwST6kx2f& zfxbDNeTT}&%jcM4vHuX8-}>t!J^RUly>}mdJEq84cIHu?vGe_Q^wCHzKZ*PL_BKUw zDLy=~Ij4w^_YJ(M`PlrQjoe%J-(EYbb@}+DIi}cIbvB>f71={rgIO{Fes) ze)F;U^w6!5-V@*Xc=NINs2O87KkY}S7&3z@NunIY`xD$dgxf>-`|~& zG#^__Oz|}XU!G?%eC#fD)*Izx>t7gciIzqBsq@O_lZy>9{cU=J-V_oZoXpY*I7R}4?aFV zu=(`z&PYu*4eYGT$MP0atQR|Po@4mfH^1|nn~$w8uSFzQ9XlV%bNTrCNKEm41K*x! zF?{UacGhd@RANYpmW4$7#*uPOa_x0rRfyjErZyMNL5W~lE=xn~-k$SI*_6+=d^YOts zrg+M8XY+Y>9=@N}>-?9^$Ku6UU!UALu$;@s&R9&byWDy29K*-v?R-k}aqWK*zAZX4 z>MXbN@#iBk#U~AX@*Km*%cIVJ(R^(E2O?*vM{XV1`InD3&N0RI*ZJ*p3?KVGJssJD zT&&aC+~uE$PtW`Eu^tg$EPws4#`i|o417uRamB0OB9cqzdaozVw=L@Iebq`H&bacc z^DbWv*3U7;#y=I+edc%86Y}9>^{Z!l=XqCbtdY(O zU-LPi&qbS~6$3Atk8g;?6dSMp)prL5-j!$T^YOufjknJYk?)q;cHZ55T?UYk9K~cjlt%j;>QQxFu&(x_rJ4! zmS1}oQ#=j4G0*D4$6`Bwz4=(InBr;Rt$DsNvj26F_|E#Ee0<3q^W*scX))ORb-v5O z+avu@tlp1AyCZpQ8+cdqv095MHg{)ph~d|Ko%c5%Tfb`f=V4=~s8}sJpQvBN*wc|n z{W|lA@2~ajRm_^mId>LUKHfIR6hEBj&bQ4me0+V>`FER-{bq;=J&pS zqn{o4_BnxwX-pV}J+Sr}4PO*4<`DCQO<=$EUm5;wS#}xa9 zbvB<`UJ$K`>c20FFK<3}mST$id%3gud|#$WZmR}n}7PzdUkJimQHVep~eUsIz*NkHzb0J*qd(9@trz zkNx+dm}32@Z>Q))^}Vq9*x5RRV(WG`w-`Q_pZ8m$rAVK5{!sJrkw{Fj{Oq&Vd46EA z=I3MU-5>eyhLfYkz^64IKNc;bV)whV`P6R_>EX=-+iUq){362jUF*EQ`FL%#Cn~mI zd)XN|k81`t{~eJtI~ZBJbLD$_e0wu*=QEp+r$|ikivyc)V{~KWcS8Sku6%jbKb@UT z`Pe$uKe*1X*n0M_=c`XUzpnXMy!wjq-*dYLKCk)My%kfew>s-HG1YVC?rc3h@bXBU z`geZ1`S{{Frr39}v-zCogV9UTw+BAnd~8iI#m030$d~8geCsyn7vAN2x zdCRYP%eUS&QTg~)QTf=|^0BikAJ^Fz+s_o$UgXw!MV>2vyfs=I`7Ll}*63{B@@tLC z!`gNKwuHT(qR!@jFnS_-Z?rV9dtN@)dt!>s|9rGAa%R)O8=H^CPEqmK2R4Toe$Cgp z*0Z-;=h)7xnvd1OeE+3f=VPDWjCMtx%~w9&H^&sqrE}$L{rjSeqt0T>uW@3EPc+|! zc|S$=^{#XyDbJmq=i|}NXkVl^JA1!6Qge0w{=oKJJ~oG#;uH0o zf8Xo1L(wY+uKL#)nBw>4xwH8$i1fJMjTZ;@ z-u`Zi7LohYc~A3k?Pm&`)1Er-Yd$_vJ@v~2(dtM}oy}K1-Z;k;`?q1|y>kp7Z;f_G zp6`zIR_Cet*nS?1%&86s23|BD?~23}yZ@ctZ83aY^*SkBecxG*nkE-mj;-851SNZi#Fi)|)bUruF*5l(l2ex15H%0nG?wvO`AMcOE6j!}Yi|1Q? zIO;67^0E4eDLzqssyCJ;PH*UwV(&Vuy%;_=cW3>jC#T3hUpBD!`p7%?&RU(XYd-$m z98+BVsJ@$`$D+>OyFYS#K01A1`Ie8xtC2mJM_+dSLi4fjs+eN`EzsGX#PIQ&f%S6v z)z@N*w+-yymg>yMZyC7u>l?8YEuzkPtb8oqdg`tY)4*cN$A_XRDn2%_9v8#M#|O6F zfoKu!iEbPC^UcTR5mS8Sz~;Lmsx|+^z}~B`eAh+JxU=tf`B+Y3ifevzEQ_qwd1v#n zc>VT#q#xb0&ib=_>^&9x+j)HdRC|xlh{P11I zZ$5UX#1uR8&gQfK>M8fMvwG++K6W0RdFA_i_Z(Afeq*kU)xSJMz4U`1px|okjUrZeohnrnB6{@UgW!+pq7_L(zfg zjRSlCROFmiMQYR8yYjKM#1tF9d-m%)D5m)7fiKRpJo)&vf#q2~R$DQ}uN~MKi{ayU z4=g|Zc5k#Tl51!0)mu*PmAN`U+I)Qd98>(YJa;}a$M8?Y`n7y)ef{Ql^{1nk53H}t z$5SMx_`tw5U)?G3o%iHffAF#Wbhh{Mv3iIpe*eJd%`tpz{ln4G=&I=Ef$h2c+W)?I za?~?l9oT=1m5*2Tzi^$rYx8~XJoi!Jc@tuu-Q{+y#SL6L(*L-ZOm}29fj}Aq8#-2O-4wa8jn`4TN zcR$QAMdt48zo*K_dRa`dwK|*ck;oj?mz`HNAIrmh#m>6(&N+sUt>0OF&0qfwbpF8h z?)QaXcdD~{Ts~I6DJrh|sJlMVtDWojk&neY?~T#H=!$`-=HnfanBrvv>nAaMT>G8E z>Sk}9Kh}JFawMi$y*uxlWB7Pe)Y*Rc_Fnr_Z+p8mIy~@0&Byo6F~zUUb7%8cJvWBU zZLMNG)Y(`ue5@v&ztVhce)ZiD9gEH#_zlg+;$MumMfRo^otK)At6s&m-m1Klx3xRF zFXdysC#HBBSTBj;W4+(myYeeeOtC$5mLKno=&H!No!``aY^<1K_3r$gJd5GuI|jB^ z`Pf;BDVC4?epz`Y2b&Ok3Tra6xaCE<2wiQbl%l`EWYpOzC71{uz#o6Td^EF zyU$|y|1azQAN%QDpLf2Rl9``D?F-bYId-Zw(=l_K!>7=Y8GR{r>TKzu))$8Ixe=cJjH-^EZ<@66xo?3m?n% z9nn5|eq=vQe$Vi+-x4zAix#$jWcb*8?I+j%cc8l#K5zI~{$$j7Jif3w6Tg2af2aG} zR}X7`TV%~A8*_bp{gx?v{?pOjk$PIo$?kVQ|HJSLqJvTSbqjaCe%rq_`r~M_`}){N z#%kY9e*5sTy&_Y7)50B}`P>p6h$cTfe0+Axl+|~#wUXiEu3K4uABoKAvyr_!`HA6U z^_D5Wc46&#H+i2Jhk8zSuReZY%alF;jpzfB-}2UO^08b$7Fk2j?iRjp_}IL6QCUBe zwIS2~cMG4+b^F1_cTa@vucsFNZ-zIDr#^*dQT)IyEy zzf%j#*T^Jm}ua`e@O4-X$(Tbc47E!_5eQ(qswKbrhs3?Cbt zOu6+lrd?!ilhvj^J`%~4z2_$HaxKHh+CLfHA03a3aq`jOW9u(d{=J2@XAgfkvd*U$ zzHs-Vf6s}$GyD#J=fc*se%JRK)?u>mLwzi7uCIx@uO{z?kFBZwR{r9`+B4tQ@1qO5Z+^R|`+oAR z!^he=7?nNm`+G7nueU6G{qV88wbJL4(K8EMANOR8=i!Af8b01dGG%9H@&&oxMSN`U zPVV=OkBx61>03^{CL7<8NFRRx*x!>c89tW(YUKUqoIJYlrNhVWQ~Bi!8{bo#cQ$|3 zT(w z#;4v_Mc*C$>caL@eXKv3@~Ea?ht4UJr{_nLwOJoqE1B|p7WR#m;bXO$eE#sU{=X4fgCB}~>n59z{`IFV z&rF`^T_4M8zx=|5wddY0lJ#3*vU5-$|3=i` z6Zp!gJ~n^n7I$Aw-VYx?72O?`U$XFHxt8H$v(ZA*_zhJpV=~H^Y{IEIO1Kl@Q)22>(Bgei;hR;I@!GIw+3rHyw8ov9IjYc z`_}K~=#j{~cJglc*xr#TU$wBkBE#>Vn*8eFWBnVGwNsZ*Eo@BnvGXree$&F8k2CiR z(FM_DwWyEHU8d|e#N-FJ3?F|qntbW-vHqQZwYK)!o_uon_=YW0_Wae+E;4WXWb#GB z$H$}YCH$YG`uKTKee8WwA72^O$M$FUgLZb2{ZLl#$sf!0F5+Wjp8T`J$J&-D+Z&VJ zli_3au#a|;>%M==-Yt{=@s{D^>!Qi#r`FyH_MP)P+1%>m>$gn#-MOA@d{0NasPEOu z_CkGZZU>{Xy*XKXr=uGq&wXNH`>8%Yv}MXSC5{&YM7GJO2{XtKRp9~+ZQ`K1dR{~ggY(T_&Q z7j|D8KNacc7Z&!8s*mOE=ZB-0NA||#-SF{|sQU+->n3!|2&%Pe)r=qhaZcqN%`)D z)kcPo?U%_f8b1EemMQyIO@4CA@UcBIS=;s7k4*Xh?*7%o{#N7LqaR(^`=$Q5*n6se z-&ykI*Db8Sdm`uQ!sy>Gd}{dEn#+`T3mdl#A8Y>)Bl*Xp7c8un^|86jl>hR=<{`t! zeoIYuR_o)R+A?M1`E2yANINV4%J8xL9g#h2od4y*zcYL+e=^!f7e{I_+1k{{|1pv& z8~bGYONNjC_l5tr;p3xQrtF!?@7*$dtag*1H+*b9&xwvi`^eZQd-v4G$0F^XjjZ9J zg|8hxZoOU@{#ViIX!13~$MW`)J$O@eU}4YJ$3MAc%2(xj^4(j8kB#4X(8exmKjr@Z zEv&Elxc#?{x5k_7x0Lqyxa-l( zck2JiJkzmY&;LPWzIR3T?PPncKK|mCDSQ5VHt*y4+w)xhTk$4)PKJ;F)56+Q&yMl3 zg|E-GdhyT2*06rp)Be||?}YO(SzGnH4l?B*Us#*Fh>wp&+TTUm>3%D#=Vb3#8GgSR zleK3*tHEE2jAQaAhL4?DnexenuiY|ytiJl)M^{8oEo@KJ@BT1P{X7~O%j6q|kKL0g z+e?!l*)n`=4@~~~;bZRunX>V>-ugKh?V_^!Vf*Lh(d!pBzWVr~EmQXFWbMezHYcy` ze{ZsFAFI1e`OLy^*fM;qCX>xq8{X-y*?K${9f}@^jD7N}hmSokQ#RJgC$|hAwtwa7kL@R!@+AwmJ>&PD@A)YI=J4@bw@leLVY2pi z(dE&p$XZQ4K74Gw)bhsYipY2;|HkmK_GHR8FRcI5k@=X*PcM9S`1rrtGUZR_da_!} z@UgQv*>8pV*t0Taty5i{4TNveZQC8o2(Wxe5|d>$A^!v-!kPBxt^^5 zd!oLx?bpfn(LUm1`Fo>Zj*diU7FL`3*n0ab$9FC!Up0KJADOaxP1gV8(FKulKfUn% z!^d(m<&z8Fux0pI`&UN#-A8Ia*?sf)KxAIKg)bUD_O9MVW%W?UgWKQ33wsZ`&+j{N z@@2!v-sjpb8{a-U5c%#K*N1!%aonT$^QK< z!^iGTJ~VvX^(h;V_r@*J+ak|TwvP32pD%m9^|&N_RisYkdl%Ne3?FM}^10fVd1Ykp zSeMDChmVct(dcO8+}*yg^*In(n{%D_-SF`~vLANQKJq=;Mf(VMJqwJ|CN(I=I%)*@e}mK302~vhiIJ$<&+d{+FVE9vP>; zCZ9iiY&_3I*4lFqEbMI7$MW7oC!#~qJ~|PV?aj$=%k@6$o_*)S#`{S0(dg+&9Ve?@ zeQa;F*4Xn8McQ~a^6#n1|8)5Hb6ckDeKA>k_T@_>-`F=Se8KSXEnB8+43q!amf>UV ztKS{b;ppEl>|I|UU$z~aF}0X%y|u~5<}mre;p4Y%nX-9L)}QZF`#8ApkzDJK zkM%kE1H;G1w@g|4&ScwP=VPv&5AJ-*&eY_KwhSNJ*Kcnjj(-XKTh5cA72{Dl#hk=cVVQCeqT(sUiGp5UKxEpx-8;N zwm0iz?RW1zKm15^CMrL>@VmAQAAcm8-1_`_eC>WRnruAv@x5E7-0>fZ|8T^gY`kBH z?EhCs+M4WLSs$yNOj-RVYhQ+s{hjRhM15?0UB|n_YGu93Pc3XcW%&423qN=G*n3>2 ztUvFB8zXi8sfD#&AHQ_Vl>2<=Y%M06llk*Izn;yH#8dBkqN}5uqVpHlR{cK@8;|@8 zBk!-*F6{o%$iG*$ryi5{!^if%OxbUj$?7h{$L2KI-0Gi;{~-74W8<@*Zi}?LTi8CR zkL6E9=JNIJ?_`MTc&(0*Y@`= z(yzZ%mYXc^+B?;{dM8a*llpiU$&{_*xa|@^tjT!n@&P?cWnU8~skC{mI&_-}bfp;pnQ!TqZw0d~7eul#Q=v z;nMKYNWIGXp8OxT3?F;`P-M-VnNtf}oBH@OTc&KUP1c_IUmo2Yy?$Z$e>^%6nTNeI z`S9@ZPi>j9=l790o5N2pe0KQwSoDX{+oMY&^PB8U*2gCznez88tpEEWYh?W9GP!e^ zbDaFyJ#e)#zPkv7X}IN5In89qL<@IMrV|%My*-d-^t$p zGCXV?leK5g9kV_rI~&H&$G#7fuOI%o_>H+=AOFObFYEtXk@;K`{kw%v4<8$gO!<=w zcf5S;y*XKbe-!DjZA@O*&pWN_hwWpTvi7_$w57h@iIbhh`q;UYDQj=?om+;F?}{et z&z$;=^6X@DZu@wB-*vn<<=)}wXf)Z_>tlKEi+yBozI0*t<-9}mYpjzmA3io#nX+dl zt83?jonx8uI~LZzImrEC^s5V7+xqzNEmQXV{gLPY_vn9H*nY2%x)s=S}{`@Ud~rl&@d-7q<)_|7kS& z$A*vp_LeED=NqG+i1v{^Gx-OHkN^IbDL<0y$)1O*@J?rByZ<+G%=6bTWWcb)x zOg=t*Y(DC1&;D^_Z%@8r_}D&`DSv)pearB%_K!r5MfSmN;hqmZJ{V0tJ$!6Gd^S28 zeSdUn;hTq#_5VzCLF7Gf+rs*+kF_ULR*T8n`x}vW<~~w~$?lt{@8T}<>}0j6k2}Az z=dFh}-W=Vq@SVfQcWs$+pT9l+6VV;fWbcCd*dCB6d)|AM?`)XgWcTVfCsX$PF0$t8 z>U}VoSKnV}TBdyQ!rGPLbZ}sgLzK&Y<+w@YAvv{UmyQgR3AGp`g&z#oenPS-CZAl zZOfF6&;9!%XYT6@yMH9wN2eqEc=C4-A73BIl#TDPNFQovtdotqe&;afqyO%mN5hv! zhoiE;lP}*gJlt$qdk<{)cKK^g?v;)A>Bt(}7uPIoE$U(BYNXMZnptzLg8($0+w%ht#8-cNT&`{>BRCx?G7 z_Pq1=WTe)9KTmeAKK4$ODLZGAJuAb<+P^F^=0AzFHTka(AIm=!%{?<&yN4tD3hx%y zc75FWc}8uF_0Qt=e_e71BW+A}-}_+~*}K+hvKrUN-fJ@DK5x(Woj2LOs^5KS4CNaZ z)}H$G%-Cy_Kb~vj;bVDg@b@BZ+C!7SIedKQmMME)4L`N{?_c=D@Ugt{pNWn}#xVIC z!^fZ4GUb=$dh!!nhL7iX4&?eoWNc;k)!sQ$hc_&IaQOJhmMI(SWcyBrk8fF6fA>Uh zj-2WDEbRUr(LTB>^893LQ@`gbFKRW$%K?yIgyJ&3D9P z^Z8QrK;&HQ7XE9)$HyY$_RiDK>lU`>>*JSinR3@-AOA??FO|FBc-?Q4uN*$so_ZOR z_l|X%{Py8vwUjCE7q)j=Z>)WJecT>dyU9N_eBAMwQw#r(!^h9tGUd*%zfV4p`;(97TKjx# z&rH5(`1r{!Q~sV@Pqr^*`1m&#_Fk)x)kUWK#f8sq89p{2=Y1Dhi^~@Nk>O)~$&~Gl z$;Wd2jp$FKBav^>WZ%yESl<3Ty!qdWjrZzkAL;wNg|+ukWDPEiybC9L-gEtCsMX}x z=i0vI<2x4a`tRb)or)%Ze)#w^kxcoTg}t+6_*nb*MBX{KNBf1JKYV;5+DB#2o3Ar+ zOLWP?YE!>;k|}#`vg~Z{-dwkBtUqgKEiaDj-O1iZ_3>Qqt8)ERryS{vE9+Q7?_}Ca_%G#Z*51Bu2f9Bf$TF2I-{nXdbiKsp{za!C$qh}+T$u|!l zTYs6d`m2vI^KMyK`~M+28~G;5O!i!Td~(Z_Z^-pz?KvMGh^&+M-(=sa`uOczrhIp< zCu{Eukv8ouef>q)^Y;6h=+;OLC%0ZO&?Lf7^qTPYfS>-h4gtaAZ9u zA0IxpKJSmr`)p)=CYx`4?4C^7TqgUL%J6aLUN)!6-i@7W-;*+BW1MV$Z;gyezn-1! z+4@+$+dlqcR3ASY)yJQY>f3|ME2BfvsmQx!@-@T97j2pH zS8_esTFLP7u}EFC{nw)N7M88w=VZ#SUD$YUiVjD{`mTlD_kOTP?~J~=u<=|T?IP#V znorhmef;W3rtEjs?KGwf|a#?gBGRDbghL11UGUb!Go_y_=;bZNan?0eQ-(L8^ z;p2C1nX>tNeiwDWPIlk^H!gkJ8UX^2z$UI@(3n<@|+Z>*H5!nX>x&J@E19CnL3;{M_MV zdq<{xa^V}c3?CbxF~2y{r{5Ek|H|<3(JfPU4kv4`=jC+xc=SM2zG~t7whSMeuje0$ ztmh9d?0nS6#x7I-qlGWqGJJe>G+7<$<9#Gk{>Z|{cO<$oGTzTD?0(O~FNJ?TvL0pi z`9fsPPeo5H{F340mu{J|^_{F889sJ~Ctoyt{N$D?Ka=ap#^*fvO?O>%|H9tS^|5u8 zDSKXh%vl{SURYoC@h*}n-@35%-9>z?zW$zx^kdGG^;;i*Ys-|K-O0vl4*SSjc;8HZ z`|$C-kxbe1*3tOS-~LX1#qhDb`K#G3I6hwbOd?%xy1yfXUw!rtxm@ts?y{BLqSS$oFR-;_VSu=}T@Gm(94Ehq1W zkJUw{?C)gj-I`*xbiaJx!sq2$hL7zx=V2GAkKY`VtxtVy?Pbc&(d1jV3?IKYn*5sK zWA(TrvSNYrj7Jz?Lb0CD)VxWXtgJRncVo zqCPfXXX8`R>$mIwkiTc6ee}tN<@I+aIufbTB2@bS&j59u`dzfJI@ZVcZkclD`@;BY^6qG|`{ww9NZst2$$x+N_`sGao6F=A zTZWIdZ;x1uedJp@*?j8b<59o2SiS0FYgfPPSbvv$*0lb)*0=SrhaQf!J^9JuWBG4J zYPXL*wy@gO$Nw>sDSO_tXQBtAS1oMp_3@8ynX-CM)}HszBhh~yy<=hbAByZB?-Dhb zeEsn8ySGf)^RJAI|5qaao}7H%@bR(enaCKAL^m#cX!uyoWy+rK{`M|@DmomMFI`yu zWcb*4?~C@4I{wRrjjR5-_`2M$|L5U%jXdspXu~(g{3c&Ae0|Hxqy-!E>8r- zy^}ptAIm$>ACB&bUbgTP!^iShM)Mso`C#ttqP`n^$0vK=>C2+uUs&Juv9*vXTmMf-#;K-1xA5)5$E}BP z^}Rg#`0(*3BYl;RF6{dx!^hh9K2xK8bj8AIQy>4QNT&Reg|*lHr;g6znW*gVWcO)$ zleMQW`&d2p3;*))v3KA;D%*>bkLB9_x-dEweQ@DBhL5ekOxai_|MZsOW8Z_x#&7?B zSM>78_$Iqozvo1z?D?-mmqZst_TA(ghL7cMiHzazMNcfOjrwg*ro6UiFX@wy-?p&l z>f@WYOxeB34{jMg{^97);!lhW_HCCh-@CB+_j~wwSl?8(HzzxT?(?yC(PZr%js7t5 z`%GOYzhL-STQX&BOHX`q=wf z=G*bJBZL3ymM_oo^ZtHhF6GwSo_`=Rm&xuMzcaOqjCJzC;p6r9j@s47_ivf%EK2?W%>fQy&|bOu5hhrFef5ITMrr z*6^|CWXfM&_#fojzpvEfMt^>%#u+Rv#aWI-dh!>v1M3 zpIz8oWcXNavU~NLn{ByQAA8^Rd2BD#$L4c)WK2gQdvmgXH`K@KAXDBg+}{)Y{&$1P z-!*)!f9>`CcmBeECD;1oV>O*@F7@%DEmJn<$(`>$zW0h6On%GoamUwo?CHtgm)hrJ zd2MXZcv(em))9SI+)qb*bMP$&`;Te0Q$Zi;q9Fu>SO|&F+)Q?q41qj-0<^ z(T$NYwa>|G|K{HQ@t;OAWqnTeK9b>M{aNFE^i=eoh5zaBvGLv!orxZg%y+VPdVTCS zr%YLmCL5a!A8X$?%G&aNaN*WdpK`ZGlhvX={_QPOR?Ep(ZW%t-{x0&qITfkN=^^|86il+|pqdoq0diwpDW`)e=Alz(ht z<5RDDH{Y5}cBVYb$Hp@G!0@s5T2Jjh8L4yGzMO2&$?&ngGg*7zh+Z6d?)bv;_3@{- zOxgPR9(yM`m&QN&Bg4n~yCevUWBb7#v9_J_WOJ+Ec^-^c-Ysl=_eC#__K~%o z{ITIf`rC=2U*?!oEi` ze0;&eCx?%{6J^TAb5CRsT^^mk@F$0lk3|%W{Q50ZK9=jxM*nNHkDkA<_j-N&j!34g|7W5L zqQ|$tll``@kM-+**&0rs^|ek9MCx1KE$r;c@UiE8-@ZTcZyDd7$xjR)%Udt+ICF9a zCaYI{{PrzVwhohjc+2qdzlkR6Zx>mUt0Mbj@^1LpUY03aFXwF^x%cx6yKfF^VO}>b ztp9IDN1|P%@5wyk`}^L7wg2hJnBExu#KNuTKK^e+#xhyE^|5m$Q-1lv+A|kt$T;nT z$qx@78<$M^)WX{PYNTKL&e~44R`s!WwM=;(j~aJ8*t^y^%buJ3DSQ60NPRyQ`BqJ~ zKJ~HvEmPLtWY5a*@dp-u^YHN}woKW0d=GY!eSX=(+N_W5kA2i}TkFY}=30)ApIF%Q zS4aEk!RQAUcHjQHJF=gx$7JWLKGv5^`ND z@y~6U^6j~vti7*A*F`Ukyl*BOQ~i#w{oj^*?Z52XHu>%?!^i3{S^wVOS4Q3ohZnZC z_3_19rfj^E?PnQ2J{CO{{k>=({iB8TZ=GKo?f)Ds|BI3R?7VwFPImu?BJ+4#^n!)m zR|jjpk6h37Q=46+uK3o4Jy#!l{>P*HBI8ht$;MG1-?C-Oeost(=a%8)j_;LWWAYuE z{FB4Sf3juDo_{x(} z-)TJNFaMmV`(pC(;p1x}ZI-(~zCYfh(KFHH%Z87gKbf-k>tyZ8*kks;cf(}&Pex~= z4@P$^+~@c4?Hg@O_C2kS)mEl_)xzc~!^gfQllAxMNalvfzMJe_TOV6Tnevf^?f34- zUD(;OK4s5O{!*@G`1sC+JzF22+A?Kxn*5n9!^h@ltQSUIr^)VnZ&(j=G55)z8a|eP zI@(2Qd1ztJ*2mUHrhNOtYAM6VCl|h9_*nnudpNSst>t9@Hm#54^?zg3I#2$_@Ui}_ zMR~ul_Kf#$ME3P37d|n3>|G#J_Uz>AaxKHh?_SvXsE_sUeC?y2gURdpun)A&$LBAs zJ^eow{qx8=Og@(D?!R4F?eC1rUs+h*{M{9(;bVJ2rmW6?7C)W)&0sZ^FPqzB z<2f9ufpOluu=?B`or(TK^j!;UyMD(dQ|?&I1MAQJ+C|=X{!;n$!q;r~`S?UMS$mH~ z#=ncSGufKf$3GCslFxMlcQTa!IkAKMEuW#5*`w{96eHulNJ|7`SQ(Ho=x&%%Dg z*2l&!Q}+A|BHzC2qem8g#qhEGF49iNG5PM{V|niz>vwJB3{Q67_}?1&?_u60lg+n2 zwjX86p1&@#2QQA)bMo=wV|~e#eK#gwzGe7WTa)!s|IgE(@y-2uFxR_C&9J>NS#9d$ z8@5bYdsjxzpq#&xcf-f>o;?$p``=smkA{!mzh%mvnf$FS!^hgcD7qvv7h{>czCS!C z!*AP@wP(LrUt{(gV6t~zee9biQ}%rGFACot$(Mg`Vb96%@oN^=-c8Zr==URYoqXT$ zar54ja@Kb8rNhVa>amMtA6{60_3>p}ru;Lxo_u7>@UgX@eB1ExE|MwxwoLXLa~JXZ zd(*o8N@U%<>n8ut!^fYFWXi3N+IZJI6;1Z8s*itg%alF;Q1s1c7kzeN@3Q(>-u&Ji z^(;;H?yZlFrSE5aO;jIi&-uSHIu&{EPS$7r_J4Q0Gm*NzXkqV``q*BODL=6AtG5gv zpN=LQ-{a8*+r9n5_L67#SZ=af)yJ((x%K4#yU1EhHvan9J(;rpCf~DV_}E#VeCP17 z{^$7ZgMDPo_-hM4Z}?c-GUZ1X*0v14{Y?I);bU#>qq24<8}EbBo1*=ngZ14!R(H>q z)pN4;Z;B2^_eJ}K)w4dnINC>L?~ciz$h8a~Yv2Aq75(D4)}L`$%gKIM)W`O=O!+S_ ztbOOlGacvTBg4nq+DGNx!rHTsjz-qP8csHj`ndUTgq`;viY8w-e0(hGeC)Y5MA|7I zT=>>4!^g%m*<9=6lUt^IuJ!&>GVh7>D?izq)yKxWi;VB`$U07bYWVo0Tc+Ik`Yw6@ z+ZU5}!^h7=GG%9fvf9b?o$z-SwwGo2`2K~vA0LQsU5#_{zZgE2*WNC&&((giTGq$L zE>pg2;m>awKGwc*s>#cv>ldEm{q5X49T{)g{S%Sz!;#2XC#yq!eD{_q?{hubzLDYM zlM7!ve5`-x#WVVKUMKqw)$cb+ru>%{Ha~OV<4-QEKl^YOweFLz9zH%49gNERg|&Bk z#D81l+MJyM`&pH0E{v5tq)W^o^*>cZn z=b(M{|KaGyNDU{ue@C>Bz8T%Q@WsQ&w``em+dpr6?nU`K`B#UJ-yX@7t@&hgk>O)C zpRB(xM7yZxXtHd5?0w`s`0eTXUoGsu^>l9^sn6u!9X{5-`)aAy)^W1+t&fjynX)-e zw)bTC_=bhspEGr9XD;skL??0NOEANA`!H`)8YKHf(% zlXW%yY8_LTEsZT@Is z=i_8#U;694GTC0QkA2tr?!o%0kM*~Y^mQaM*2%t2^|Agtf9)KMc2QY&^2uDw@Uguz z*?X%#HYSU!fRBV#U``(*D*89p|i$NRhZ<%k$KR7bD?b{UyVKxnd`xY)we!=$CfE~ z{oWGaxAkYD$^H#fAIqPN?5WR1+L?UK@Ui}6%AT3rakQ=Vd3&bMcmLcJZx?l5lfN;1 z{K`m8%GPVL`Ft}{;|C(|w#mEU<73fN(Jw@Aj}9#SL&L|~*QWK^MdmX3i^IqAeh(dv zu8WLy@>Rpf)r??t}^8l3meblk$-Pq5UK6ten0rQ+tdENTzK3)?**t71?`}?V0*` z7s-_MuT5t}n`akx-?+^Cg6Nus^?y&KO__@q)@J>VS*HBx!hXvd5C2?job_?**V-B5 zh=lQ$H-twDovNKd48=Fj7+mn5pWcXOWlTQvGU%O?>#`FJ={&BRAu2}f? z;bVQvls~@kbz6pywSQlm9;ndk}bo>p8wg%9M4227IyzgWDQ;&?H4xI`dD@! zl|484vRt=4to@s!=S1r298cDEef;_@Q}+DxBkS^|$oqG)b*PW^DN{bNu>G$+W47Lx zF0AePcpu4>)p4@+)L<7`2mMdhR(<@rNT&RXgCm-89eW~|T(PY1?>tknEru>?P^{3X_kbC38-naF!yfMlD zQgr9SR}CM3_m(L;|C2wlW%yY8mq(|fiz0QItoHTs$t_bp*Z$YuE|T$=%FgTLX8BmX zpN`tDxli8b+VgyD{PO+{ZJd`aELR_2vt`PC-aBL$8OLPp)^8s&W$%i~zJvOkzX2vc zntL+($DdvJt;5I0=X+*NUKo9I;jaxJfA5wld*1ojNBX>c;ob1D`gY_5~lN`{ZsVY2@0`CFpvBlDT; z{zoFusFO9FY%cZj>$gnVUY)GIGW@QF&B>mxk56xz z^6^|xwqLJ~{1!MAsm0`HhmX(OGG)JaChJdzkB>#p+>MdkD;72%`^Rs>3nR}=R-^h@ zdmoQJ6=~1+V)D-qAOGZ*DeLdLXcyUEYC5_5i;r)OCjaB%vud%ik0A8NZPxUz2Ok^Rc}Bxr?-89Fwh6eXOQ3m<2f7F#@D0C zy!!syOEP79X|gqu;o~na?7zj-$N$eQQ#Ky=uZwn(F-}(V`uM3xrtBIX85@C`~I+Y)o`-0)W`Cz zqj~ex>)Y`iBZH4_`Lgz`kKYwnMZV{g)k|FuM*5}6`mWz`{6)rhYo6~Mu<__`7um;M z&+^-bkFVb{WzWz3eQ&Ni9_+sL|MlqQ(OVY2WcXP7GG%K$*&dMT9=Ks){hc3O6WtO$ zvatKs;>FRMqYo~u-TK(vWXkt1EGxsue!om^dwl$JTc&L7C)*P;e0+Lg$C!)zmhmVhJnXuXRUmqXeGUZEiJ-O|vf6vzB1H;GHMD}ml^ZHje zp5I`T{Z^{q-%T=Q^PJrF%t77MX0pEO<7>A}+1Mr@+A@6HIhOTzd31C1Q1q3B-#2`G z-j*qQUcIcNevNhV+2LcgmnmPi@awk>AFIveJBE+-@BG?R?SJwk!^fV{fBAxieOqPt z_)81h+x4+NWy;1nx&8C8?_I}vRrtFj<0;Eb{<$r~$3GZNHh<&Mrhc8}$$xYB_|7d; zww{x_o)5==TV%Z^dq>qj7r!(2>*J4Z`Lgyq|JK?3%O@A^e&u7&_xJpfu-}UNsJvTP zUfcWV@#wCF&96Q-HktCTEqwQu;bZL^gYUq{qU#nuI(+PVBU66f!p@)!9~;kPwW^OV z-7;n4o_zk6;p6M0$=a%qU%h3@AJ6qcYF>V|~h$?d{2*&$SF6J5Q5apAW=;PULJ)HkSI> z*k#JT<&*6>89w%{nXJG2qeId0=)}U_KYtK;&cEf}v+xtc$J$e;McX|6CRs$43{we)w4a^5|5gohKK5$?&mp%aqM$^10@t-sbS;$a`zD{;j9= zd1Lew3+t~w{_!nSK9K9l+B2qo^lW4;C%f;zsTi|&qW@dO$@XjO_xoWrQOmNqOxCvy zAM1PawZq5yzbCpovhN;U_|D;D_o@8!!UwneeBAbpVIO&Ja=%A>?7K4Axa#A!=Nwq4 zH${`pxjxpHO!+wr-?(M?*qNMcf7HjuAXE0=ktQ48&qg;zhoc``*nRhIi?p*_`2QR} z{=3mGDt~!l?fL!XooBAbGTHulI_hsD|1D;6=flV9H2Lx2WBu7vJy*{x?0Mq*dt~9= z@UguuQ+{~i_vc!MkDZUn=4bz29_=DEoy?=w`p$*TM}3_4t0H5bY%kTv`$(p&=9Asq zM|`YSlUujeQ2*BSy2w5LWNTHw>n2k^wXm~qu6(ThE26JO-Wz|iaPNO4zVUuNn(V&% zTKn6h+ZOh3o%;CgTc-STxt{F2$ndfD)nAR(>EA7UWcb)SN~UaXlg(L%kF`6w?^9>< z`O&k{caZlMQY|fa^J%L>+rGleJJu9^Tm;|Om^S=dmep@CmWk*_#NkD z`?Eg2J2L*V@mfb?eNkk*lifGIedO7$McMc~v)}H?+aEs~X-D6a&mTUP*MHB*?F+vu z*UyjmSpK%?&CxremoMD*d}CXu$^L&2>f=iy^(%Yc`^XyXqpnBUe9hfEz&SDZ$!{7y z-bXU!TNl=!cc1;=zmrc6ANPEeJ+FQB*+@-qvoZ+-mt zw@lgdpN`D=TM>Wq-xxlY|6C+@HZs=9z8&?kdotx0E$rPa!^f{*SbsfVa<7Z*$FlpM zjea_MGICZXyRUCG_l$d!jkP|O_xtvN$T_mFCto^ze00l{?T^XFa(z!^Ph1t5%Vho8 zTc3(NYpo_*^ZNKLTc&({t|#kHd%n;5xolzg`R1gp2N(Y6@bN8Mrfe-I8^8AYZhvy& z1GzRnK340=YF-~-uw}~j;^cF^@2*S6`}uHmV&Q|s$HspmD(@G5f39Wt__+(;F??+P z-;BHiekAgnW3u_y$6t^N8=S{Gmvj z&cUgLKRK9*Ov{w7hE$?jPzK7QfC##SHi zBAK%G)y(=E&&w8m&G51L%9IZ+-1X&S?Q8q_(Jr#5CV!{zpW65Phn=_6QTbyF8=njx zoBQOBkKgg#6Mihx?u`o@Z+*P}e(*i2kL@p+vh|&8Ofr0|?aBJDkN@xP-+I`S2csjA zwVCX@P#^CinX)=fc5fH)v2W>Q->drA++@lp7yfqZ(>;2B@{@PD);=G9&%)+=Q)G^p zM~4@-HudoxTc+%JYqXD?JMZPm)~-J8ySwaLIQhhu;bU`|tUvqlzGxrmZ}LwMAD`Va z<)gWteD9Xw<2j#4b8W5mQCY1fzdF}4eEjl-wP!!MXPmwt#?MphTNZxb@bNphOj&ym zMOR1r$owatH+*a#$&|gatoFjcr_O7ar zweLLK7#XMao9teFEN>j&7pa#vCcCeFHMlCWHj|GJAAir5DfjtZd~F|yCaX<-d^VCP zd*1ys(Y?_H3tQ*uFHYcN@VcSQE(?UDEBWZC-IUXdyP;=Ay#-#p@P+`|z>8WXhhMd}_;dj~Ji+4@Z|qA6xjk;bZ$wrmXgV z7HhYe_90(h`}>XD>o~CSS?#Yzho4h`+{W-robKUu2d)d6p4=lXP zwG1EMy71k@$ND=R>7(zV$=3`Y%j^Hq$Qb;ctgZUkJInp@(S@A>89r8<$@X7;e8ZM0 z8_%K0_s%=zD+}AZ_3`_+Oxd_5YtQc&wNVFqZ}N+VkL_2P^3w|++%kM@ER&s=`ndJg zXZxM(-BBN_mvNTWW%9Y|<@+kf<9@rtJKF zHR^8!>owVWbiJ_iFH`RNxHg9G+wPU`96nYbnXsz~% z{hO~oHb+Jga=-msO-_?;!_sL|x zQ|e>+pN`tT{X1EI>a~yVjZQ@SsOpR)p>ti*SDR(^jFs=up$@Xr2{IM-lz9iR^wfA83(P$q% zcVYMMiL`ltbbMiZwLbphmMQ;Ht|x0phL7$2$zK>gZvThEYHM#!J~4dUeD{pCnf&=& z?;}3`^1}ag_*i?7MfR+7f8;O7)~?TD-!AQxwKv&489u&z;bXb({#Ex~)V0CRe0{9# zT~zk$WY5a9P4C9Z#xBFh+McXF#`wy}+FZ4;zUt%8ZJF|cTu<)$>2nuZr^))Rk3B0> zwx1^3doq2;{^r8^GhcIiAbRJ*r-zR_-w%YXle0A0eeXYO=ly@t!j}yn8=p-1yoIgz z9nq&E@1rj)tTy$rb&x5m{baT2T47_9DeGtQ#ao7tjdk*G4-+{&-*5w|F0w-9H(5 zPdf*P7yh2%W6#T!jcKyE%J8whJy~D%vH7*W2g0pyc^7Z8@v7TC`o2glCaYC_{Ns^K z`4tNrn+zWxT3B7`Nc{Z-@|FZl3{qvsa{^-EMo~@7V5t;I_@I%qxjh=|^SlC{ukMD|P z%KBGh>(p=WWHqgibGCkeWnp8lk004G z<=b;T`9oWVkN-59{By&{=KHnC+Fu`;+vKkgAIm=)os2GwjxX%~J)3t!{%TLQ{P@Dg zD8t8|x8B|{-X+?ftX}4HdGtW^iG@Aye7S#FWbTvoRUf}$%ak9>^<=e`;bVJe^3M++ z>)-y9Gp8>vY>xG@^DI-|Ev!!&KGyy-kuml?{%7%_qe({#!;}1rYFC9KMKbi8q3p-0Pd@MKF zz54jUEmMA1t|yznce62H9^LRA_`@TEt)XYjS1o*c%kZ)Oel&VCvhQ~bTZj6%XX4wj zwP*(0Kf9>>j)i4q`1q=Y&80p*xn;_&4; zqRIO6J$q&3o9r7mS>N^XMO&u)Te+UBJ@40>BJ=s>h3$>{cpu4>pIX?rZ6EQm_SJJ2 zT^Xt40CmWBtEw zVfX6e+qO)(^Y?o}?!S#Dzj*jq-DJx4z-050;p2k~>(Bc3{j1N(zDrj`{C=Y*?}m@x z6zQj|ee2jhUb^tvT2}_Q@YE{PyAF(_5x&Jla&lUDSG(orTG_ZW%uA zeC!#XT1|E?>tnT%DSu?)wr5NSqYI+Rp0AI+6J*M#7WS={;p5*}SbxUb_u7$#yZ@Y# zKZx`-*?zB&|Hmy;HqXhkKku|%r0=r1PB!jc#K-PUzHRt;7s-_GUf6uh@oZ$jo?dv~ zw?|&H-7l-RU@t=tLj`DZ1{;eku%b$#1 z99t*;F4?Z#`&ZH9kv%e5 z{?X`k^!(_;h26KV&Y5@D!G(_uA8SXZ>f@7JrriC(@BXl74@Z|ra+7^K>-ReUXw#iQoAD`VaW$Sr5+DG={>lU_F^|5u7Dff9b z@Xdd7G}-*>V`G;oA7A*nTZWH67ERWlb8U^x_x^=`) zdOZ}`Bj-m47JmKkvHMh3yUFVBJ|7#OTG|75ME1{QXRAJzzdKUnBhh^e|IzTVvn5mZ zyx$v_MZX_ekIAQpkLCTYs}}S0AfI+rwXu>SOKK$NIlIIvlB!wU}%z>f`l&bS&P5(M{3u$X=c7zUxy_pP$@s zg?90M(d551eEj(>Q+`#hC;x+78^b=bF6KP>9mB`^lqu_fvbF5Ey6!UNbL|KF|0DKrJV$aeaJz%alETI&wBY9QoExesK8s?3O9F zfBW1X_Uz;%!^iEbtk20E&x_+5%Lk*$pBz5^+?FYO7fk*Kxz?wCoP(cR*!`!YuA6Ve zU*7d;%Q=Vc3DJ$!6_GG%*fvVA7gJ!d?VPv%;Nk9&5?vp!Gf{=sM$m9;(j z{#?uO@or)7+WNTr=S=wdk>7`t?;Soio_iwu@W#mbnC$mneSCV$l&{J4WbJ(*vc^|M z7cIOSKGv5^+4#+08^*F*xc&3-N21A{Pu~%LH}@xhIoH;UkJV=KyM~XoXFT3P*7WLy zwN)QKxMj*O$n|9NGv{lgzZPAzur;aQ^>O~3^QWR;SomKIA0OH>W#@Ua`Rt+tk>7FF zX|lamAAe)Zl#PAze#`K&`Pom}-9_K&eS684@s7pDr>!&5v(fJ^{Gs7v`LoeJIxn&o zlP@1W_TO@4%AWUoNPp`4(uJMn`q(>2rtEq9V;7mL+Dx`z>SKFRrfhFacAmOl@s*KG z+1Mwa+%kN8Lp0g=>>ah`pI+F!>ti*SDgV~O_J#}}tIcF*rasn=Oxc=EmX+b-k1lNd zhoW^}o#Q_DCSQ?jb>L&QnyeP}v3)92)?erE{blUNSANODKfGo5*z+f%eRL$!*5nTl zAItk*-Wu8Ww=dlDbY1-CM8+{$`}MK*9*gYnU3A~VYE>V5My718lkIaEKE7z-*3?qZ<(^WO}1BL_;}rC`m;wK zh|Z6UZSt#!kLB-)jPb_E*`Iv#@bSC1Oj+$F+Y>T;?0Y`><-^CVpFM70*w>SPYWTQ$ zW9%AF)>nP}mFVKA?0igq&z9liv(aSzJsny5zZL0gviqNont98@KeOfe*xsG&`&b|U z%PmuWMXo37uk%$eXVHAi?oHn3T85A9o5{{yeSEI(jWNqS8eO_DufD(9mMI(CWNRVA z@48GrK74Gx-b;QnsZe_`MA`uN#Mru^3zHovZ)vwdr{kIMHh{NLnShL1fv zc|UwC+xGD#(LO5czxDk7@a55wsC<0ku9r1E6{+iFziaDb{m7K9?_~Y|Y4nEZvB=s_ zK0JKv-6K=>{H4(ok$&8p?7lU)D>BaCU)Va=$FeeI&rOz{?Y%J9Z5y{9Wwn@WJob+@ zIU8wv^2y<2?=qS4H4AI+nJsg7{yHb}-zZ1QGNVGR397vjge;_j;zPzW4SiJ-t&H#?Az@bKDJhq zpBz5c-=`yed@Fjz!tNj0ynX(9r^=S~HQBpShL6=^va#34yGW*N%_bkr^)BLLV zUVYxmWWaq%X1fAaDBwoLiF;bZ4rrfjVz|IU`-W9>|q zt&ffGo=E>Mj?{MY@!?}_$&{VH$*c~PYaqkNCl|hU_*nnOabaW}Us?EAuC=j?I_}Ayt&i32U{u~MtiNB1z838w z>pl7ZV%2VA{ygh5&&!iE9jJKdZYP$LD7}&z6mA>Sb#}%yAuP$55N>-{Of*c#cSihWmFzn6cZq&A&|aGJI^m7~k&FrqbV;IQ2MQzIpoX()o1rv9*;6`&M*5Ffx36qSW~- z&BwQoOxWMfY9hnKw@tjW`8e~@=eCl$bT!b6T=40PtnXvI3D(x=4r1Y;R z_T7t*?PZy8o?n%Bd+CRz&gLE;FD03<=XaF6BX2I5L+5ulAA3$Fe9y$%^S+Y#b}9Mr ziRNSZzbW}0WKY|l=E(5zBc;yzijS9)OxRpHdv+=Dv3s5Eqxg9H$b>Jb>(1sV!^c}EHoy2-eU6l_ zE$R1N6Fal<@vBEB?0N4mV@RK!H=2+A*3p0X?uoxXGJI@rbhb9}v9@HwZ=CooBg4mP z+1cFV<2@r2Hopf-_T7D@>nC2Cj}Mn*!k#}-I$83LIDg^~Hy@jeO!(Nu&Zi6?Yv0(e zDm`0zX5t&0kN?fcg!}kDQTJ{t8Eg1`6aU7@@UeP!wtwT}wUG(y&zf0N&#FyleaFW; zM<%?ft~>w!$nf#|OPycbe0=}NgrBVI&c9pN)=(eorK1ynw)uEfk_qd(^MSfvmH1fu zM@kE!A$8s{^T@znA zGJI_O>b8`&mDVQK|A~_NdQaUsvFFuuRXS68<;3=Sd~9wqVeg>M=Z#F>O;6QzXKl&w z@gGj?eH9-YpZB>nytd@s*jc^eV`GsCXTACuJI~`iUe9K{*nJ9n2XxN+m5*Oh>TLWw zO4i2N`t-!^KTwh}FYDC##^&QMj!gJnb=_He{!PA=?7^)QU(`zPPSCYtMW3>5_j}TZ_)VL-Fy?j7)gFt~+~H zhM#si|G#bD`0gs1^An{jCSGek-ZV1dU#{!U+Dm=EQ|zp%Z`gh7>iqZ)SpUxMua}mR zvG_~jFHQXYai5Q^ue$iXexh{Y#CJ3wtCvi8nKwYp=f9kHkoh9$F z&dzpxeDlbJowd#zBg4o0O6Ierr0w6F*uD68DanM5&wf|qrR4l~R?qnO?IoFTpC5ly z$^62`+1YnchL1gOez%prRoXf6iRR~>aL89qKb@oSrpweR`kCG*)avHMvM?^s%7oRsv-S^_33tr@pHa|GN_}&Byk#Ojx};yH9+7?VZm1>e~2LrR=ZH-VgDyZ?OFp zwho>B)|TO8^RX`K_B*9}CiZTOkDVEruy<=`?Wx;GN`42JPiJ$CkInDY$UISh{jQV` zYwx%v)>#teC&DqeJSM~+1WVbV{4u9W9t(iZ!X2h-i7h8zT#tT#mAnF zpLXJF$JpcJi%apb`B-niiQKm@JF8Xv)Hn6}MBVfLI#~+;)Wp_BhL7#N&M$91{_T+o z8=w7dEuFJ}HL?4thjAO5dW8M$Y;9zCc$wI}_*nb)^YtaQG5*d^HXr|WNha+1j7PgW zOX(XQF2%pca&slpx-MhLJA8XHf`QJ-FC~5o0v9TwE z_m6xy?cH4dM(OfWXZQ7EFWgu{nZB6XsLlf_9KDK9M!oNSU_O2+s zt8`~+)5M;Sk57+G*z?}e&S?I2&bylTTKn`?aRUh0HzF2%>j zXMfmtJ4*IaXZ4GZ?Tzd=ocS%q`njsqIqSj4$!Cn-y`A09weR>fCGCdoi_S+zhL87@ zI%_ZEJym>h$vncRCwA6l`1q-bpJ_hUzML`rptOBr_u?lf6W&+6weWYBN-|+%>3qS+@Ugme-r9V8Vr0S@&qvF*UdGt@{^n!9J!QiB>#Y6!KE-L@Gu|6N zEOoXQ<74jxnXqhUS(&uqEOyqPe$OghT2jl-<{cj&8kw-?kC*iEOC|fLv-!ry8zU1o zzRsT?89v@uy0T=9x0QTDJL}(?8}m}i_`~yldCAD|@$IF~2bzza9htEH)=R6BahPjo z@1^+I_|3%{^S4Z_9`UjE-&=ZZX;s=^>g@hqC3RkvHcjm8#>Z+a6TW+5?dAJrUe4yp zQrK^o&KHdgA8Ws}Z$W&leQR@lX=ll}JG+0P;&%~a$$B&oJD?K%_xyHvkM<(oVXXBOO;rC7aw&r8~ua}mR zaXRarow4|Me@Q0n{2BjJk~5Fa&SrdkPDv)LE}hj#<|ox_tun@~@6Ku;ADiD@rSFxl zC|y7Co12d>8kw-??N4XM{`I}@{QTzQ7mZ9f&pX4`aVd2^(R_S)X(@%XKGxFN-c;&* zp!s-T$@zM=w7aA}oz*oyws&QI6#FJ5gRP}}*jekmzpiEYIP=e$@XqS&zTXcoEv-uC z-Pv!5`1w5{6W%(p`5!K+(caQ)CjMsg@#)fQN@3$MKkZ&qvfiET)%f_;BNO(#Z}_U@ z`{%!Pb@sb6KHgEve-Fc{*HWyGYo*R=6(8GEGGWha|6iAk{nHco@mce2rBx~Xg`dEW z*8OC#xq3G2y0iYAzrQFQDOvl@?wiBED1EW?u8G}0Rr*NDx?9)I+nbN&&FNFa-!$>P z&ByZ2l{2mXdnR_@`S;E;&SheIEk0I@r4;_q#M)bx%;n*ddUdvc_2-m~0EXRY(ne0-oJ z6IQFv>SceaS>7w1uWCMiMalUI8;>^gti9dY*yQ?AA#Xev zl{QUmz2f83BNNW}or@Qi?6=OhHy_JiQM#dYWyu&j8)N(*H{PXk>SCXEcJ|_9dr>C5 zX=3w`;b%^rossy@#V@b>@v-^HhmTC0`tz}R=+C+L-F$T7r<#xD+{%*;dCDVCnK6cjfzQLY1{$DQX_kW$(c)eq^d49>+>ugWN$IhBe_}Iku zz6>9yeeaZ)lzhuNKizzM^T>pky6${nWcc_*sk8o!@4C{K(px9KsQLKHkqLYLaLE{b zFHTK-ar5!%kqLYLfs!`V@dFb-ule{7Mkbu+v;Q{N{mv)qI(roBLneII#Ge=$KEA2c z*;$B>FBzF|uSdqBHsOpVW0cQWHWgo9GRE*D6Wc2?e7sETT@fE^Kl|aU#rKx%nefhu zt%D37d;Vx?Ra!6EC!N=tkIhpiyldjjpP%=|UByRApDU?FXZ`OOzPg;AcyC?D$9|v5 zgq`iq-WM`_eC5RE9v|!9crtEt>wI5bZ!YoiRTHl_AIr&vtwrahu4VXG|E}%9hf2oX z*?TrVmd|{R%i5W5cr~$gmf_=56aTl($J)QFWKUmS+E=n>=6-!?V`AqbKK{nYg#V_l zJHLHo_*j42OZMW^rL~Ej&-hs0H^+Sab*;YFmd+`8$96u@e5_V7;eEy0PmR|m_N}od ze0*f$Rr9g&c;9*Fs++NNcK@-`4JG&O?as;a@k>W0Y`lISc?WDQy<%ebca*l3%;}Da z^`Cz4EtWT4&&2Qi)6K`8cb>CmPfToGtR)|-SLd89KGvT7f2?%8WDK3tU)q|V|48N2 z7Pgi$;hht|ab)=TEv3%iYd+S$TH7&v z*PX8%89vs&`YxrX$KTGzr*_u(n$n?(H#Hw$J~CnLd!M9jb?&@Y*Gq|y)uywt$H&?` zQ98Hu!IJgqd~5UZ>5&P0-W*n?M@#RR_=nBM)>Tk?JG?7scrH<8-CVq*8#OG`;R&UR;KBYw__Ojw_tt%vKarA;O8=FZ2PkFAAF z*t4BqI5K?vP^t4B&Bx~ROv&0A_pynuYCgVfWWv_6^J-+W#@3{>{_FvJ(mMU-#A+WO z8^28WqKU1y3?FCx?8(C=HSPRl^YN`EnXu>8_(aJVPfh&F=3~DrWquT2-7@&!jC@#s ztCF#vDScyN`z1cMMlxah$Fr%Yz1dmq)sv4uJMpUd_&`Y}Y<%|Hr6updrzW;{;$!*L zPQR`*K6QF&DRssE?HeEa%^e?`dwhIJDL&S|{k^-SzlSHz{Q1}(>HMe7$LEYpSo>=3 zeQs7~>2Iz0yQNQ+I?KdQ-rDLzJNA0#-)cTSI5Oc? zU3XSP89p}d&iaUtmr~}2t#y3ty|R?TADVbyT^}kL^P{CVPps|u_{Nb5tJhs6WBOjn z-sr4G@l!AT`Tbx`?WxZ8RQ&9(JIlMT^n#N9JL})OX-nzPOIs(l=i=iJk4)I}yGnaX z#%C;@-`;%u&XEZlW9QVvn0$8*l{&AQk9`AV!q%>{G0E`pA5Cms}KBEjv4l@$myA6ZUTE{M5+svGG{H zhf4OrGO;nl$MS0NZ%W5XTPOb2=3{yDxwhoJwl?wY&ByZg#;SCGDYXu}e^*Hj^zZxC z*}FeJmS2^O{e`7pm{@(kS-PU+-(fTVTJy2?)N@tZUV8n+r<#wyHZtM8b=_GlW%&5? z#6Q)1tpBG=)^91PX=m#gKWi!z-kA6mb!~n5_+=9tPkemM$b^l@em+q8M2X*7ebvi5 z;RB`36RTl-d~jsK+IL=kLzj|u?Ck#Dk}=#`(tc-qFFw9@WWs9Gd2M8}S2Mq*eB^&PF8?Q{*SUNw~`@{Nse;A`|=flm%506avjdk7mEhEFn=KEmD zJH^>PII;UVZ`SB|=~yW&-}!GwhL7#>&dytWtbO%aO8W6F=zO&K__HOM@M>b~@oY(5 zzg;r-&ieEIGmlfH%O`d=;$wA@2|Ev+wfD)A@o4wvi9H`5J8v@KCntWSu4VYxvz_g& z_}Exv!p7r$d7@wOxW}4=ggVY!HM0sUdFJiWG{BMN8{t2BNH~R&em&t z>EhDf(%lp5Z-42!l6Q*p(^+5f@t%Ge0@nKyfLx%4wXJydbD(U z;vY62%Uch1K3Vdv>g;UC$4`w+*!k&v$;j}r_Lq{gvsU{0#O59!>q{nl!Nm5H3?FYy z{L{_H)=#~R@u8AuI(t4oRy&z+>gk)NruIf>`!7D0*Z!80dD)|#Q}4^l_uSQ`&c|W=cBg4nOot^b}f5|>smDIKKdCkW+j7&K5{kigwmrj*B-`RY8 z)5wJN-T7T3!^fLToj=rk>^_CRHL+T_&&R2MYRvB}vy_rotIo&jT8598iS66?Sbd!* zYkj8l&WVlZ*^)8X*YBJ7%I0J39Vwk#%K7fRxB1xn>U1f*d17tJ@NwQxVdFEl_ms?G z*Tlx-{qdU8KQAq%*ObD}OXsWVdMWYoiHX%JKK}5?gtLBsR({T2XYIwu#^?N7!&^$` z*?GPB__ZSwUe$GH=UIl2weRn$^peuW6RUfC{GE{rUs2bc&F@UPkAJHq6Mp%`**`K{O2*sS{T-zvr3*_RnE2u5W3`kC|L2LdXN}iN zYG5yRR?GO$#Y^3fkF~e0q^A1RUT62>CnpoWX5xP`p66q^&f1QT?;V+N`sb&g&T{eb zyW8{FeB6J!9Sqoq|zyI-65oaSTW^L}-9{N~;}@rmYRd4JzfI;&*=cJ>{Nk8dBDuzor}J~Di4 z?{sz!@x!^ihc zEE_-1$%Ku^`(RaiVd^f_wd;K8$nf#@Qs=ei zWAl~?%XZ!~GJI^j>m_?Ub?fYG#>dA>`UpE`owtq*AA7d*mCeWdO3tL5b+~@wjpk$Z zlnH-hV(nSqm_69Y;VNJY9tfB zU}Ec|Hmj0-cmBi&n~yIUnXu<~l#J=Rl3H}uc6@A(GGVpoynAH$*t4CDKR#A#nea04 zC+k{2(w5 z`3uYUTk2D#&gK&z%Rf_6=fkCw6W`r@EPq$Ynf`aB2PbxaQ%Rc-l>Gke?7n{W^K&Kl zJMV2iHb>MZ|sDev&BCN?(f&&P)*esA-!-`+A|b?odM%J8u> z+1Yr$UUKHPmad#wHa@oYGU445e{y8_Si7C|rwz}mRmKx`-+WG%e3ze?_-C7sQ_rQ? zzFI4FR{Qu^O=ZIR>Fiv}@N-5xZ!{n4Kl$y&J4^Cm_d5HQ$nf#OiJxpfwufcH_F89s z$z%^|w{st#d0G$8gqMludfrm^Wz-OVdE%Rzk3T&!;Z%>f2du;-^l|L)gCQ ze59_;`N!?257hnJN-rqgII*_l<9|9b;a{xl&gyel>FLt(aj!EkzP}fZOxW+E&e}Uw z%D;)9oY=fBF7Y$R&aY}d)}DG;|T5<@BOm7w7ujvXXmGyk29X@i`PodMdxkJ z$J&w!+pC@J6`AbeFHEdIzu8_{y0G-YiSKPbeqdz6@2>04n?{C@|FG2gck4R)!Tp^7 zu>00$DP{dT|5Wqww@W)qVb5FtlO^Ag^!20of|kMR<=ODY#M-~Cq^8C$*V*&&v9p}E z`ne7pYiGZwjCoZ$U9xvN+r#m(y(SZOCOi9P$?&o9-&OL=Qc~m2_F#OxwUTfeQ-+!Kepk#gbls+=?(tK?1$%N`K~Dw%s{-`Duqvohh|o7nl1;bY_V z?@D{&&eCe)i<^(-)u6w_I&ajyypOQo#Ksf8dtzge;bXrII^WuSe0pTU#$$i^_w%JC z>)Cl}K6ZX&!k+DXZe7dpv9WhvnveBwzj=48l`fljTl4YOkqO(wovn!sAHRQM`{AzA ziPEa{a}$53`S|jY37b!6-v${zcCYihnvebOF*0HEKT_ILQn#5?Pk!pz**iTx?)%Gr zdsE5&3U8kHLnFh-{&v<^{EW^0aK^u-yc3ykXyt6K^yh%Rg4SuXMEJ zz1i7$d-VTar?*r}Wv0W#i)$BNH~)&RGvW_8sc1{rFh_+LSp{`s&0tH6NcEneeT3-TC_?!^deq z{|3}Y=Wo=t?*$+K%Eam(ADgR8*n6gP>f7Hxncw}D{hv$b8oqjB?aT1-u8Gq=KkKLe zHIoiFuRl`fvx{i7vyvzMQo*nQ7tkNa)X z`HgjLe0= zS$*SUdHc`!%u`>TKi_=(wvh?{VO@9D-l5W}WM6%3V)KuW<+qiLk?+0N`Ml=iwUG&X z{okN1`Ix4WdjTPJoV;^S*ZCagc-yB($Mo6Z+BAOClylclid?N?{U ze!g(x8=8;r9htD-;+?f2!^hgczGM$t2k(x~ztwy!e}CyWN~_YJPrSdbS0(=blDzq^ zm$bWU;>VkhjY}r{_KB^B_m^|~aOoE(c3)ph$@%)ziG4fbV{0rE_PpN@mzL}c`=_%t zjF07AFC}x9@2uVU_{$}k@HZ#kIWl~#kIv3+{G4N%uru0O{ePuop7A@+`DEg2yR*G1 z!^iezXX_Fl>wmqpyQJ>+b!X=?K3+;PVf&%8zLpXntG~Y=EqO26%boW&AKyJPVdHzG zbfn}tYt`9Y<3AUFvF^vmzcKP*a725CBM(@i8B-bTJ!OrjZ9cAJ3l%y ze0)c#v;Le%eHx4Tc3zr~)mA3#`J4}RdTU8LVfoJHufGRN*74}X8Bg}4v2^}IU8^tu zx%k57W3`qKe{f>;mEq&hPi#EqaI&+IdpSzqz-zS7ass&s$p^u%f(A3rrRVe`rNhIduT z7{mJSEPq`|4ec{y@BEVHV{OTVUpeuPk>O+QA1<9NSv%|6+3$|{*nJAWY2wwm&&S$# zUVRf!l#Hvh@y5sUd9NKUwjaF@!uL;X9x{BK`FynbonO>^Y;8Ro{?1Qe?OTs?OD`*3 zKC!ink2gjp>}+(-eAPJrowoDV=Hsi!^I_xf>|H6t$Jxta{XJT;_fM958#^0Ye7uxo z!q%#@+Ak$OwtqY8?~#%<&AN9s&iL4~6gHO5r^bCgwr4s&)qJdf`}LhA=XYb`bDEFk z?M^Rc}7d;W!` zW#XSy@5?HmdgIJJ?D^j;*~8BLGO_#i%hyZl{(^}QH6L3$nXqwpUg}zgkBzOf{!Wza z`A?L5Cp+7R@$tVOnXu>L_z z__Y)7uWK1T_Pp=qwIy@-*@^#C^Re2=g!fLY4H-WE-o$DbAM0Oz{HE~Uyn15$B|f&F zWx`kf1n%|8x~WgtSUO))*VdemJ^$TO-fgd&_)B%YQQ~7~we!B=y`%oFO6Jnpeu$6L zpFOaYvLC|g+WGF0;p6motoZTLsZ!@#n~zVAOj!R{mA+MaZ^=IC?EafdXO%82S%=Qf zUVMDx$b{{U&fb4Ae7t93{oPfvM=mXGpV)op?QluI>f2eZ<74@QrEiyv-P(0_KYba~ z%o!ga%d3wX951CFVRP*~*TeJIm8{kJbMUd|5Zkg zO#H8!kB!gzeX`^k*M~~h@{ZCu6Kh|;2TMnBV6r6jL?d%(Pmy|eb?WBC&$ z{hulQ(}~^Bev;c%vY)~qpE&tj%1_-puQeY(QnDUl?RNHW85urStInCPTCPg>mO4BC z@v(PE>ho?<%cIhf8}WzPtHYUJZ7a z{=EKMG>!qb+Tn|m0_Xr;^rOppFAE!RPkMx1@H+)C)@ry<#{6ExnXKl*x zvGMLGZ7x}d3nxCm`S_PdChU20w=U*upLJfEkN1{j!bd00c$~4UW9Ng-$MTnz?km~n zey?@@C(Xy!MkXxVSsOBGW0}}`81t(1#gaYJSsmkJHI)hPnb`Qv@6ytrmv&D4isobW zlL_0aozvb@zV=>U>b%x`Y_2k4WAFUWMuv~Qmpbdu`_0} z$L__)o{gV&;`^)pZKb>u{&Zq{&m8&qo{2rLzrQTmQ_oE7{<9^S)1}qKmp32NYW&4J zCeC<&uKcyqW2Mf<8Xv!PWWqPrb>~wf!^hsKozHGQ*8g3lCrW?6v`l=W`PkYnrLZ;V zYz<_xHriK1-gTwj6Yp<6mXirK7lYjZFBqiQSXo zr+xhm9;bXtgI-6^JY&`yIQ{9hD zd~Ngbj*$s_{^^pMX~(;=v-^*g9xgfaFQ53*=3{Nigx4mvA7uF0+&Zh*S4!JT>TJB7 zjmI;7@0}{WbK=ZrDc{;ygU-D8{vIjGgn!ie%KrF5WjmXTeZ$8)C-!ZPkM$!H)_>>c z>VLg5YT^B1eL8#h#m7r2-#dJu6d$YIQVOfL_usD4%_a5joO;_|)<5SlY|nI-li}kJ zPOLq7d&K>hPMr1IQvUIhdUZC|_*iXa!uDO~oNqps?QE{`aq1s7o(D>5>^aw&+tK3G zBmA=RI{WP=!^fUCKI@R0c7Ce)Sl*hX&rK71KWK-KKRvPM)##Rzaosnu_g#E^@yLYt z)^%rlRfdnXuQuKp2TO08_&+xvtEEiXyRox#EyKt5N@sn<$L>=&{qgXN$NjMJny)sT zf%Tuj`F_gho7q`E@$oB5Y7^F<^}DXLl`<0Kir+sJS z@0GOI`SRvtW0MJcep~4?CGSP&v$OlD-}d7BOU53)bK)0|3?HjY=Z`fXYhPQ=#IBNe zZD;rID!r++D#>=Xp7F8T%7ni?@p&V|$M$+>{rUbm``;>Uo%rGA<9#LLU6sCAx_aV& z)O@UcYhXRURJwIyXC*$ClL=d^&c{ZEkG1doFC}}=d!V!S;$wSIChQ&5S$oc>Ia+u1 z?JOG~+m|xoJrirsdhRaSw--!oP2%I@BNM)(t~;MIGJI@39xa_N$(dVc{XbJOzF#e6 ztYPXYY>q zIP+bK^{Y0W)hRx9hGoL`U1$4GhL6>+^U{2*|NBeE;u|R6`323#H;zo$^ZK{{yl-!x z*#2FW4wb%KvZp&g+k2N1JC7E!Zx4!1Ev(%Xv z-(P*mgq@|%YA(aa>ebnNa(`Fxz2kmZ{X5Hhzp9INu9(>P?dPSGecM@k@$p8<-VT3a zV!y#;_*lQ4^=E(C!`iS9I{!-Z@tKhczpk!3r~dx^@sX0X?Y!1}EPu3QjqHU@6CZ9q zzI9~6e^A$*wP%i7O4>8`&Ig*0?M<1m=hsWumaN+{vArH2TTkyJeOgcNw$9E_eEffm zOjv)``>ayVL+7>TV|nkO%_X&6Cbl=?<6BBgDg5lj+L7U7bL+gP`B?u4OZL(~DE->R z+K7+UMkZ`*oy}E-kB?7m-0|_bBNMhCJD(mIJ~rO0$IjwYCF>FXpC`V0Wcb+gOUW6@ zIqQ5w^YOb&&QbUW6EAfw!^gfQot?k<_}-FC*nU&1rDWdLuCr`>te!IA4^Hg8EW^kD z&BV`ZK2{I={`%6flC#tKL(Ruej7-?`#^1luoln#~<5z2}mYu)ad~6+M!bd08pYv?2 z*3G-9vwHHKt-DL|uDy?pLrpq=vHAGUkqPgu>(2I}3?F}U;^#LXtFcUY^TfMGhL4}? zd^*2sXP@6O@gFrGJ6kg0b0$^~t`$~_OPECAk^YQ7C3Gc1z&f1dUV{`5Ng688ZM<#r4U3XTW!zJ@MQ&R8F`iPIW zj7)f=t~+aQTWNRciqdrxdpE_$?o-$v=&U_;zqq7^M<&*Pe7vt@k7-Bt(us{VKGwec zRVCNfz4N!4kF_fkUY|I9^V4o;<9nv04gP_N?dSOTEh7{5yzi&6u1YVRIP)=Y@3W=U z+50j+wttpV*t|Mx&;D4IjO)n6uWCM)H@*jlznWOz+Tr8AUiQtg(po93J^A}eyGq{Y zojre9Nj-k4bZX+On~$}poh>E(AD{T#=417d2`>|?O=^g(>rx7rzZZx=3{v^ zyRD?op6Ps6^YNEQCVWXw^Rax+(&pmtmiCl>6hGTC*!Zs~EhX#e z>~*$&@v(2GO!&%)jb}$m|Bsc9P3$bk$Lb{$HXi$Qt+cD;Ty*yPG(NUYGGYBcShA+p z(Re!>Z+tBO@sc+FeQEQ=pKCt0CNg3BqqFu-l(ct#>G=~sule{rBNNtkXYU>vKK6a; zd|UIewUP;|U1wvH;bY^KcgC!#v(h>9u}6P?-0$qZacRq(oq^7Kn~(1vnXo=P`@YHW zac}?9x;A$0hu=D}XJz>K-4koi{@PPg$JNBnUVOY>T9v|T)!A8);pbd*UYd_TSu(fq z`zF4#u4VYxc~IX?CH>mFogZ&LK0PvF->1&!j0_*E$Bxpr(i=(}6JOqZocj5m94I-r zonO{`{A5WceAC4D*Y%SnJ~rph`a4s4{_y?ptDSc@AMY>8ggvirtCDv7zVB?_@v*tc zgguWxQ@XeGwuxWce5|fAVQv37esSGT2J7!NrK?K(mrtzy`1nspChTl<{=Jdma1Szv2Th@So`W{JuWVNX<}oEk29X7IPG*k)O@@u=_~x@iL>5( z>}+;E)_kmP0C$?5He5{?$o{f)h zE2S^2_VMutOYyPu6(2kE@$oxK@v-qAE7|i`mDVSA*5f}H?;H6~)!)OVdrO_wEcx#>J`>U=f4;kK2{IoJz09Jq%NJ+Ha@nuWx~eN zS$oEi`D~r|OkJA~AD=z3=eLy}D(OqE^Eu7O^3Id9aIB=g&WD?i?NgcX?uj>z3?Ca~ z=WjG0UokRa$1gLQpPsq;O}$JXdIrSLMb_SD+g)$*kif1>$V{=220FTJ^B-ktZ=wf(o0 z?4z}b*PD;+C7H0b?0mt<@Ui)HUYd`M&->|g$vS<1V&jdUHIoUSHSyhbtu}o8z{K}A zAKUXXVdHV$USIlDNk5&BD;e!)9<1&0K+u3vR@o$YxIP*DH{#D~%XX_mwYoEd& zo%k=teLl{5-CS%PmQv?^b*-L!b@!g^Y%j*g#v&6omd^S+T3VG(mHx+x-M5domfU~k z#LiND{Qi*%AFAul+LGbp7fhV-Sd$-=tbONiHXpku6IP$QO6IvLJv#B5n~(M99hbeH z^Pz?~^$ah~$A?QYVeMU8+ErRBS;NjZG#~%;$b|RTb!YQYKWET;eKoOj93RWuAA3rh zOP5W&yZPAoWWpCrtUcpjm8{v9CO*@A{MC^O8$;(0jSL^Fm$mw6$y)L|_p^#OjZFCY zb=^7b-B$iaNgthWZ$6e^FD)f?^Y6LN-ZSy@&XEc4E4F`*m5klq>+D{9yp&|Z_E~59 zY$^Sy{b#(-l(f04^s1l0&R8-y>mS}<)voTSjN}W$N zA74B&;nQ{9S^p1?mY$KFHw4c|Gj z_KuX!E&WpI>WPit7_5mosZHk-&Bv+d3yYVMv)TE)=HsIy6MnL;J8SP$>GI+0zq9ds zU+Vj|lC|i((R_SnWWxSk*;#)dFJ%u}_s-hSKEd9{*&A5j@v-*&`~KFFbMfuL^6CYnPGU3eUSo!ATecsvmh>s79 zOjtXe&lwp$-dD25?<>8dq(AdgbI%!TXEl$H<-Nnz>-^Hei9g(YeBQ`}Ur^Vbt-TB% zADMVh^RfQ@rqqUU-aN5(;^QkvCY-+bSY0~*r{?1wBNH~p&c-W~u|L;%AFTUw*~gu| zJK|$wvcJRTYd$+m?ma&7!RF&X9GUQ!>bkSDF2l#CCpM4xc-P2;UsczgvwzgUd9*J& zzqk2V-!fs(Usl>(vac_g*qq~I>nIbppSPB-Dcw}EH#-|ke5^n1+0!2>{n^B76(4UI znXt9!Y&~T7cwgzRalO=EYw2ECzn#5%WcYaxb-uj$*!Z=-t@NqV-4nZiru5sTRq5V| z-OoCGqF8OLNBI7U?;IIER>RKPd!}Shyr$&)-?{haUAC#Dzwm*H%}0ihJ^yg&d!;`v zX}j~0=HpdKCOr3lZ{17(_`H&_g!S23TQdB#+j&p(@$Z(rPq&qvYqjp|{`$CgUHx^g z<-+#QsnTDS><9Nc`)|eZ@$DlM-doo{j-ROe$zbC#|NSNN`$;VSvXXsZo)1oZsQLH} zBNN`J>&^#9hL6py^R>;#&WcRW9c!r{*VgO4l6IDf z%_Tmze*OGe%bZ30JEc`A{PKzQcdWFO)YtlVcAu}W-K9GwHkbJLhLH(-{zS<6oNCy2QsTG@EWApLvCHrZk^vQ|uZa#i+WWx4W*6*z1 z50$K6_@xu;?`UaNx~!!3osTyktDQ{P7&}`V89r9a&ekkG*8g24zu69!uASKZpD8&r zUoG7<@q3$(Upq2k&u=T~%io(PcHj5jnXqooa%c5)p7@WHw9$D>^Rc}3Tb0g~-ZSxE zH6P2Hf8G)HR%d5sDe>`R6I<)}*uIeoKQ*!6J~Diq`dib7N}lWN{*ID0GxwjLczg4) zwU!AVo>+U@H)em;th0H>$4f~jti8_0wUqeTSDmeUe4PH5VsqV8>ilF~$H%vpWWsqq zW4^8Kb>3Om#?QxZpV;%(TgJOP^9^6sd~7T-Vb5FNrDQ$)rLehow!iFOzW?r|ta4w9OKXu@V$YgS zIP1m7+UtCG^Rf1Km5kAPnn!16H9o#&WWxS-J~lEu{N`~#>|NAZ|BsZOEp0AcHu1I1 z$L1mvzG33`j|?B%A6XC2dEWfO7fyWM$nddtI%_jNHh%lhJ4D-Wn0TZ4_@_rE?0Iv) zthBqdY2q`@$5)I@*!L(Mv zX5xoOhL6>*^KUmF8=wBSl$_&@i9H)1?=Q)OJ#P(+$#+>>op(1M%O5G_9rF5#x7M}( z`1tU|o>#+@rJbcuPW-;+;}?xg*z;;}yHSPS5>v}2ivGw%*SxV;N zFNIG`ym#E^WAp87yjPUYDm_%vcjp&0AIoPww4+YeBfNcLbCcm`o}D+EkB!k7!lx#_ zb!7PXbg8rP{h*|e&84qQY`@0GpC6g<8|u2Vameto_N|4?pOpT1Vr|FA#vv2VcYu$z z=dAnPyDIIN*mLo*y)6^Y`+%SK!M5TDOP?zlXXl@7KGy#OrKd{T*fO#EkCg1$rDUIV zKD+t&-jN9#XJ^mK@bT`6Z)`p`ewpw;oLDSuAS98KHf7jVe`}O^`*7a zznj>-_;~Bcgb&qqXYE<9vr3PbtWD=Dn~&c=GU1Ery0iAyOZSzwmF(xv?`=L-58rkB z!8-WwI-T9`=i`>TUP{gicCYiz&BxY3Caj*F?QI!8{@aP4*L?g3BNH~?6Q%qcZ0E!o zA0MAv>ii#?kNaEl z_GEnQH;_!&c<(By!)+z^JG<}t+LAgxG_iK#$#=m+uf&u>!YR3CBH*EKiGV%|I14|N;xB)%_lzo$EDq+ z@Qo9{Vr2MO`=?6(XX*W={S&)yzuE8hmHBmEnvc~+ChXZC$J$q4-^DE@_2|6Od@TRn zk~ymL1rzH#K6Y+o!oM={dq;+kt&cUkxwMo{OsxNBO4iQ4Gv>}}6d&8~GGXm?)}G%h z-pTJPJvp)QsHr(ECF|PRGx71OOETfrPvAGz{baE5WItJp)HiHxI?G#Q_3|FI*E`?d zd@R4M^iau~IP;yC=HpM6WWs-MV(mFk>bfc!UuS*9#~US?@GniQy{xZxE-hK#u>0!& z*3!KtN%o{iObC>bv`| zC)S?*Yd^lEbn(QQkNd`De{@#Y`1lt`CcL+3O2(%R`^(rmn^$~%!^niQK74GfosTph=idWi^|2q+d@1Rxv+=}F-THVu zZ;q?d{iSzKe7gDg;gJcyv93G6Wn}nR``Nqq728kel)~!JSyqORzc#V<9xQ#lw7F#L zo!z${OUXRfCSGqo){jhhet+mghL4X-{9Nl{{f%L3NxMIetw}Q2e#-jsXFfLad~8ge zjW0fauJQ4`&-@lKx6T{Q$DbIP@J)5y`O_oA$LfDY>HLy!nmKg#TPi-z{KMy!*I73E z7H5686kA_sz4PJbWBKgwe_4F0v?~3}68`+e@^_W2+07+=biT6r_}wED_PqM~jdywJ z#)&`Be5`IV;a{FO^R=eF8O}!MYnqS!rjrT#UUk;q-!FN`_zuZ-c7G|E^FyVJCbmBD zvHhB?>v_Gbe|)?enXs{S_PvzhW8*nmy1DeW(y57WZ9YCdGU3$E`OP`$yfh!5DXDMx z8x!xZYZ*S)zB-zN_n3Q~U(|eTzsiL775g6PQyr~w=QlSWpBS02=heh~KU`Al&ek_R zHeTPrwUV|rPpn4q@urapd#2E>u*;nzbTiAkJh#N^Rax!?i^Tea|$mL>q~}@ zy+1l@&-c_={!Zx?6aRJdvH8ktEBmyw`{wT*piO7Cvv*;9tbgsK&7Bj=YM+m-Mdu^U z$9qO5to^J{`Y^t*cWvkN$H$&`mOSH|V~=(|*nDiQWWvkD)-LObwQsD>$f{(no!x)7 zbZtqy|NX>YYd)4Y?u_-T6X%@qu`zV^{MSqNxP9Xt(b?GJjn4XtkM%1P)^_LD)U^yBt7&I_ z#ZSLk1O1x6^*>qKTYBll)--As3eC*lI^M3f3Bg4mOKkV7g8SnA(?=O9})cMuT$Lb;z&htxo&V{*lUT;1=QIZK8 zXJ_jw!^isTyrcP8|Muq%rLULlgU;?BDQzj)%MVZd#^&R}Ldv-|r? z#^@Yn?BSnpKE7vU!k)jb^wyGpms+pR7dIcDJu+d>r%!w6OvzZnADH;2k>O+i4WaXn z=40(|Eg9PcHY%|{9NxB?}vO-%)hhR{CSCw&zpE@ zKDH(@VdL*?y!N76s;Ti-X{4XcIq51e{Mkeg}-z;q_9WUK6ar(QheDjp)e5U#M z^vHy@|AUgc8ux*T?XCD&UO)D`zSN?#y&FIKSSGA~o$s&f8%uorrisnZx~SoiQvSUV zzM}b9UozpfiH%=-zgS9}onO#=tUY~&J#Q_thh9Ii{_H0{_V2mQFKIr0W@N(Fp|ieZ z_;}C6sgH3krAJDg-FJSSnJ<>kpZH+&@xvn%K2z77FBus=*1r9*l)g3ocGh=%tbTWu z>>=yqUgxYIAKOcvwGkid-}6gJ-Thm)vrK%f4l?0uCRS$|K6W-bTZ8!cwvh=NZ|BdA z3?J*av++MW{0r-^b1xG%*UrwM3?F-5e?M3HVafV+ep~bLJ4Pm)`hC0n)U~s-1w|wKcx77K@=HrV-ChU3d zgQaAj*^`~kJwA3%COm%+-ZwIQd}pb1-XGq9zgIGs&ekVBHoogh-X*(A_f71+eXuHB zR&p*opVNHoo=n*D>b;}1xuk}jf2H~Ow?-zsr>;9|@9&nZwR7V)PvbdZHxj z_fcoh#>etUO7_&vC1<;{``#}nN~@ClowXky%R7H+e7s~`JA3cP$5)R`*z?9^f1fIS zVq#;DkJVl#eD=il$0H@}EhT%cv+qfKY|UiCvYoe#3?F}?)Y;tQWAo|nQ~PcysUtSF z&e@xMd~9UGOY`y3l1$k9wX?k_!^g&RsC2Sqo$r{~dd0^lMkefe`^$K&llMz!`S@5q z`{&x??4Pi`&{;n+*&`bhYi~zMP1SGxC$P0h25Z-|;XM;;-+jKluy^9Sn~yU;@3f4$ z^U{25Ean)N{c-$E-A@MV&w8FNsqdu|r@nkF|7giv%*GDF-kIve&->msl zC2P@nUtJ$5txD$VUT0@3K2{5vu=Vb&zilOZ>h-0+H?cDoAAfvg!k*XuQc{n#iND)? zEGrY%Z|4g}hL4TEvzo-mmyb+Xy*eA;U8N(X+e*%8XYZHz__2`*d)_n7?5~$Dn%I5k z)f(HM_Cn{!n~!fCnXvWm+}ksTkCe0*)_!OEP9}TMUhaHzUCZ#XHR`Ot*Oaa(Ev3IZ zamHhuCrfJ4SzY2|XEyc9`Bfk5lIJ=fYChJV`5r4RrNa}u@9f#LSC!oF{BZN}nUM+q zNnLmTC#eCtIqadeC+&WKVsvJkN212WAnET*3>>aII()f$FeeEXSwsWBg4nW-r3mV>-s`5Q|5wN5upob}`5%_9@`ZtJ{zWcc{~a*XZPqWqsn$HXj?4O!zYsdl$&?vG&!+ ze*^hMNgX?%X+E|`WWt_z-ttZ~*Us0}wYB48XSuWe86Ru!ROz*)ACx{YvHQ-`t)*in z_3gYgA0IBsg!dJzkNvo-v~%JE&BykmOxW|*-<{gpxuB%Bot?Y*SS@A3zccZ>M~08TUh1r`_;_t(!v1zP78xG4ww>*r_*ji( z!s>NJX(?sTcV2HkHaGo+|8!#Q%J8xO2GCi5-cP=LOG%%dwH+V(_GDbxdd0`;93Ss5 z#mDb0#mDyf{!-X@yl2(u+0qjef3x{mtz^RXYG<{V;bZMP6DLc~k@|Q3X!G&jkqO^j z*PXSOHoQxXU3+2o^=m%am!1Dh^YJg1tXJ6c50tFYxh2=$JwH3HWjm{_93OvfV(;7d zSbN5APMb=cWU;a5#8E5pa?+u8W6*Q&H$^4{reZ^g%F zmt?}3pEWTL|C>~2_pd0em9kEqt!I3^w`Bdo)}r&dweYK+<9;QRq5J^-G8KXqNFYFg3f!JkBvtr zY;K*6O@@zeo7l7Q@y5u6_t$l2<6AFnDXII{CSID4KUtCqd#3X_buGik`$~_NjQ2>% zUh2HP`Pe;~@UDrUYrT(FW>qo|{dRt;`Pe;~@PUcd<9j80e1GYoiS4KO_yr}I@Rbv5 zZz)+5Ilm7&doDiS7@6?Sy6$}U$nf!(N}V?~AFIFqmXdY1uRFUJ9~+BISl^wOy3Ty@ ziIPm%eAV|aOV-NTcXr=1*7&T_S0=u_`PjLV34dZ@-)I?rzSo^S8y|bu`KE_=PpmB& ze%kFk_h&BY51ZdVD0xO5{&wQmH6Qz?$b>!9`Q;T}M|^zE$b@|x zI{W|6$nbGrAAO!*I#~+Kbatj?`1rz!?Tz@@Zz-9ucSL9X`+j?;I{T}M-Phi?OUCSd z(fLEo$MV+mcu7BN6F<^?ylrH{*0J;6k>O*t?`%Brv9Zd8_e`AmSTh-G+j)EQ@vn|d z*tzJeJ>S1gC3C%dV)xbe!IJ&`{fT!rA0Hi=aGqBu^S-jw+5Pp>M@tu!Zk%{uT|ZsY z-cOa>?|gsr@w-MQtbP5RReC|`vWeY`kG-p8!sksaoA(*c{OqkQrKQx_TE@rn`%5QF z=521Bk2N3rZ^<%Y&p$S!ThfMaw*%O_!^e9jR&V=HjUO+)X5!P$$5~J3JNu%u zZ%ce^ZS0+}v3B-bK!%UA{zLIypHOPCgv$cw! zbyK^rF?QZn*PiEN&vy1~eEgx237fC>tbu)c*~Hg1AMYNS@a1*gdB@1`vG$)S>F;}` znJ`~ zhbY)BdTbZPX>F_QW~6d-Yh_7$aA$PGX~1Q6qAVNlZ2bX3;k2xb^i(#|EOd2^9n*h^~nA)!B1(ydm=4W^FplmyhkeOtJmw ztZf-S)_$G6HR0zY&x_sDo!wJ1b${!-v-W)7d8f`%XY2V~w2JiWv;4-${NFpV_Vl+o zIusqB*x4%oM7+xL^0D@;-(N@fM7K`-FPo3$wQo&67nxJ%2bz!18<}G7?~0tuJ(0cX zysP=xGnr!VbnfGMQ=WYwGM-}3FNoByJ7?#_pKU(2{$GjoX>EV*S}a zXX@1G;KXM(A1{$iv9;~2J@sKu`u*0##;d;rk-OqO6MOz>RCmf16aQ&Gn;#$l{fWKr zPT3k+zq2Mb*79rIGR59EC+p*!UpTS(splo~eEq~1G#_6)GR5oixwF1x_*nbKXZ%&K zovm5<_#Z}Uy4d^sqAMfq{dW@|Z$4HFGR5k*^ED&G$2C58xcRGv&U>4WKQS`J@5|@T z|8ivbxYpNi5aT}*bw1jBe9p)eAIs;?XO0XXFHvV>DIe>9OH^}uXkuCO=Hr7Czq0vQ zd)BV*zzZg}*X~As?R)35nvbvDT|Ph^dXor}&_jSL_At>0OD&f2cXyjRh#sMzx- zqXSWWZ*{h2<>MWZ^Z&m^{yWmy6I;9TvG&b-O=K;#(b;orw>@&Mk4>!3%g5G6rr7se zXXDd{^Sv>$7M+c)e5`-_cTHqm-tDYC&!3N$$ecP~-hAx7kSTt2V(-fEv9<2JG#{I< zOtJCu)Wk`Vv)tKtY57=IrdYPKTB`Q&Sy9y+zA!2uZ;HytwSRS<{y1J|XVrS}@wpSf ztohhoCsS-}o%MHiq|GZL_1@X@I%gZh=Dsy5{?^2QIWm0gd$Mz1Z|9`$qhfb^XLp$l zA8W6(v6PRszdtf3W3<+tjlX>S)sZQ_BAikFG4wG1EMJF)&=jNBpS@tuk7MfrF~ROjat zvb^tndp@hdv2}Hh-zIsf4=$HSeK~S`1NJ{?h7^2S^M5m<7(X)I;+R>@ura} z_Ws?`hRFG`2c3^MA3Mu3#opf^`CYV%o}KvjnvZL|N5b~{+^F;6=41IEMD}HGWbU1{ zQ9f3)GQ~Gf>|Gf?wzi$OHy`WYzNuw@&!1S|<>S|kOz{i(+*x~1MEW)F8z%l}^YNQT zrr4M}I|DL&Y!5qM+kEW1My6Ojb>2BLeEgxPbKk!Q^6X`ic@%rTMD8^2zkA{zH6Q=t z$P};5=g#IL!^i)5;@{5a{n4?=b7!G*)e9fXKNxL_mk89p{1=i8W0if)?NSjxxpTO#v$ zCOUm$bz43@(RumGcuza^{H549D}(PJ?-uXO=g!AQhL6p?^Civ4KN^{0d*6B8$nfz4 zQRlmwkG(5XT>HH~-o?@8sIyusAIn=eHFfj^?76%3ebLtF)`{zV_mF#7U!9+9KE7jQ zicikx&c-Ce$FH8)+Ln*?Z(QGr9*%xIu`!j8cSO#wHhvf#n%J2vAHRHLiuJcAvR;oz z@0wU&<>Qx)%uBKMoCRm@#pv{j)oJ;-YO}cBx6kHubJW>$b384&eLU;zo$~RTktzOR zK6kG6%wN5HEb4q&^YM)%Q>>Oce|lv2So@Dg)_7~=4(M!s%Exto71w#?W9>a1of<8X z_Bub*e0=7}6tBzY&c8Y`e7ryEtRBk8`rj5Ei0tz+abHhsaB*}bD)xLs^rhi_V&eY( zNAm1-k@t(OOJ`?YhL5YBinV9$4o23(-P-wu=HpExQ|x_fvWgyvJ}~il&BvFFOtJUt zJbWi?-JFf$M<)LM$nbIR-@4aWik;)m&Wa2lSO4dS)r!6EJlDrEGJJd}>a0EAclvmB z^wh*hn~(iolPSJ+;$tJj$J(#^=!;?ZjQua(HL>p!89rV+@ny}&+LkHS--c*wWW9cQ z;#$8YzV%xlb+-29V{0W-?6*Q^_lFE0Ti?#=xO}{2WQw=vbLYPp89p{%ZCbN6k@fHV zADfTm?WcE6jn1CfzLk&dlT5KYuCuwx@bM`VSAXjNV5Hy9=2kxb)W{Tj|HqN<5bvt< z&eoxPEdSw1AJ<0qrn9{%AMYEP;@k4M^D;7gtbKL&e58KXPF(Zd5dWdbnsheT@@w8Q z#cL+kp81^}ZH#=^b^i0_za?R9GPP88_!jdI{%r8?`%GnH(vE(9PggkSjxxujZCrk)#KL4UGZxZdv3pc zhdRsd+RoOpeC(M_v1dPt_vLwIurn)PtpEMdD)JlRyAxm0e0TifeHQNsZyMf{`MXSPFU!ZCQ?Y&PtUY}^7+nypCbo{{ zWBGHVW07$^GO_(DAAfCRimj*qPm9!*z3c3`ta`Fe&PwNRHXq+SGR5Av-tOr4NA|w+ zs`*&^RUdUO%QwDzN2b`^I-fK$d|b6yd`0u|p^+&zUVBpah;};5+j~B~XySVRNc@e_ zwy3kUEFUkCOtJU%_n#u;P>Y@4-h6ETUln~mvTkph*f`5S5x+Ih%g6d(6WtiCjXdk@ z?3IsSJ2J(e%jeGCmEmJ!>HOv9WBu=oteNk^qZ6OgeEj{9Dfa%R=uo7M`zBT^<>N1o zOtJUv#n#9=ynJH&Q9f4hGR5A1FtP^5?srpXwO>9yI5NfFe=ah{s{hVAn~#4zGWOyf zVPo+U?GMv09WV*1x*br@E}Ycq#TBQyFX@yj%Q@iF^CMlxM~&U;JMumbW(b zn`)WZKAS%uo4S$jH1DtKG_A?YrOA*&jsKqVp}y$Gak#V*PafR6g&D_*naQM_Z!vBky+h z{OagHv@SY%V(pZV)sjr{_KCG;J?@XJqqEgn{gsb@Kawf-{&Uf7(J9dfCRRWDqgC|7 z$li25oX_QB~>F|CVIj@s~u#*4f=qKK{*-DK>sDK5# zWbU2qVfpxmktz26qmetrynUB;KG=MG&&U)T|K8{i#xr+I=bB%&?VjpvJ@m=P^5*c4 zsOq${y(k|)7O9b9?{>DHGJL#dVskAYTPvC3Wn#4~!^h5U=QEm*J(DRuG_m<=hks>c zEjp{u^0B=AdNDdZQX8GEZTVQO%M>pY@6Kl#KGt{V9r^6JHM%zX>xqqLiOf+=oH_B* zeEfz;rg+oD`r98Ji#9~-CN{qE@r5H(Y&_1>pGW$+cVe|tKK>6QQ~Y!J+*y0-+u48j zc-Hym=HtH@nPTtTU-L9B=c6;Pe1G3DGQ~T`b3QiT&f0f(tJkg3u8Gw``Pg3Wii+Je zowa9u*F;~7tZQe_)t`)-@@{ACmya(RnU`YotPH+wTUtiaKA>eC(M_vEK)sjaP<``*>fI&%YKKZ}A%@R!=f~tZq7= zs9vkK%=Ml~Jr!%C^ODape5{T-J4fZ?^^r{Rj&SwouXWX5vA#O{o~^aV*F-YK_NKG- za-aK7S95B)v$o2wc4dl}i4Wzo{`lDV{f5~Uc~4uN)mr)ZS0b5WYt`9YW%&3+`{PU< ziPXifP5kBNWAoo1-4s0)y=CHK&BywEOH{mN;u;ShYu|lR|6a28o!^$vwLe(Zk>O+Q-yKySyC=RUpY_Mb#^2e$Ny@K(pSYL) zb@aYSzVk0PAKMq1VrQfClFu@H{I@4I{teNA$ehf-^EaE1KQ}VPH|BF^H6_ExZ=P6R zSt%bI|D#dW^tOqg&u8n;$NKARzUAX3k|{Qx=b}}#Kl;JM zp4vGv5_hE z{)Z!LXna>rthUO>_DQDr{)w+289vs&w!QbIsNO3!*Ut4@g^$g(^ZMpvbs|%&{m$kl z!^hg{yr%j1w2>*co}IrnGJLFdJDcyJXcg(l+IN;Mzuv3;(cZDBd@Nf&wr}O*JEHRO zvr+l@gHieTby4})cps0nVQscftggz(@)t)-RCh{e=dgTS`~RJA?Pq8I9w;AQ5qZCO z?Zn=d;a5AIy<2{@)7v*5=Vf2yUbtoA8=H@{EmLfrI$IMNK9=n)TR!&tqT0j8b0{*F zPe$iWtgZ5~?+BSGCX{2;xn6%J*Q&*t)l&rd+)J{otg4a#IMWq^6`$y`kWnU(^>1R zKfmW??91kff2aA_*^((KB?N#)-$e21?xAL+4rpOstA6eVZA8S6AKPg%w=f+q3?J*Ov;MA*%+ z$13`I^ji~~OZoVkkttr2&z-eb^SvOfZ}TlSj?U&*agF!v;qT1f&h8ZN z@^R&j!8tP4&epJeyhJj^^ZB}bWcc`NQD^62U$lMvbq{uSMm*=^w@v(D^RcWAF}@3->BQRk00AFEH9;+Ics?lOG*<%z9z`6uGn<$3wIua`P<7pwH}MV4 z$Hpg9yd%6d^8Pm?_0`#PHK6v)+t@l^)qJdGWQxBy@#!PO$NQqrwf=l;e)awFP}ut0 zv*M>FHdYxvRy&>F)_kme^Iam}E9$xPw&r7P%M>pYe?FgO`1sJo|EBp^-!jGau=6D& z!^g(EAzC8ib+$VDtyMn0Ba$gTHnH|DjI6Q!@O!lLx0{c@JTk=x^0~9Mmf_=nF!9aJ z$NE1M9f^)c=T7|A=Hn|yrg%+0cUFHge5|%Q>u+zQKj-eAiLF8T*xeyheDTEhj|?BH zjn3v)KGwfIU!vNR&Yr8EcSrIcnb_}>^09Hr6z`k(?2+N)+oR6*zI?3zZP5}vKmK-B z)8*s+BU8L1pKE=!BWtaTZ=3jQBg4n~_s;oI)p6%z&Bxa2U{w76iFc0-A6vW5`m@Kz z{F&(Z#E&%}*Zo$kz0TV68~2V#9lB3D|9Hj_*nby zi+4mjBYWK0^Zn5(s(S2fEal@Zk@*yFpICc$M^{H%BWJ1e=H_E_mMQkWTB-5tr?a+J z5g#uTtC{lg`e=!YwQqm)@n~diI;*Af@s3FUXGg|){lx08d~7~4#Sc&X&XM8c>!Qxa zw=X&nsmqy-qkJrH4(lW1Tr;t~D<7*hnPTrhANg*t@6^s}rhNRl$lQvZht6tIrq0Qm zCf467GNub6d(~NAjF#m2KQGJfms9CTLa<>SXkrr6)ko>TWaTdR7G-7B6K8(ZfKM~07$ zx9WBkw%^x9#lJOi)dBxRd~Wmcu}GW6wLaG1%E&qHY#+<7x{xXM{-MY`y{GNYpKd<3 z7c#}GiM6L54@B1FrzXCy`S|F_6#w`6-1#4l3?Kh?RO3}6na_T2sI%r23+b~f+w zYYqB(tk3iEvG(>wwT72YY%JdAW3|!QI+c&L=YF+DzPHs@XZKF|Sib7fII13tt#N1h zZIL$k@1OW@H6MR}WQv`w&bvp3k9S1c)xLS(JMm@B$9IfO@eTRh`RgOY#~+M3n~(d! zy|6XfGqLCP*F3HBO%vCB#mDl#4<3r-*G%lWe(cFv(T65BfA8HNY44ng&ul(c3o^xb zPVCIf@bT*>uKAr2|6p``)OlC)v3imzwpX3E=d%nS*Lu{y(e=^Uc#NHo<*kjo!Ww$k zd1v$S=SHU396MV}89vtj{%92)jsDMx-_U$)KkTP^{A8r9&e~HSUyHV#fYnX;Sl$_S z&dTq+x%v2br2XRWO}u+#_}ChD*5BQcHC1X@c_7W9u znRt6X%kXhuuSfIQT3D~*0~4Rj!qL3{0aXU|`VPLGUHU!Cnu`B*K;6fYBN z@57NATpwL9vG>cbx{@ijFP+VMYsAN%bzYi}?Tt*aHR-H2WcXNHosHkv?~km*6BBz@ zKK|p8DSjZIJAYtg`1tQcovT0JXPYB!cUFt#W6!Brw)4L6oR2S$I`3*ec3(Xh?T=Q` z#)+Mc^6`0*OtJAl8C@CO5-k&}o$_(@=ba_;J=$4ql#jh5Q|vr+Uh-LnkL_(|{e2?( zP-NZyYT`4Sk53ty;@ThIDF-9%cfP&(_~%Ea*w{MXIx>8$ef3(u7wlDM_xYiSk1w3q z+Ln*C_hMu}`2WwuHJ|h2o69p%=NFof*NjZD{qJl|W%zjC#M_&XYrY4=YUrG(^P8HF zwJB4q{mv(9Up;I4H={ih>)#z{O^-zHocOxtWBCiB+ah(fb7J>L`FKa9|K}rP`<;o^ za{2g-ktx>SRnd*n+Q|Gn8+-Zq*^w#!YCdO+Gb%tup+V1@Ad^UbQ)>miWZ{=g{)q43Z*&kW2V&4m$ z*NhAwAC5X}@1#iW8MC%J?`%H){Kyo)KA$_+`2Jn|E26bgXU~m!6`ALICO+1D?3~FI zn_Fjn$nfz46Mwn+SpN@3k4F2VD<}5*vV3f>WQuo$H$?XK@#w=7dsaSnFUb@;8=W5- z89x4I)cKvw$N$U76r0a?qBA1zIV+vdY(Dl|N2Yl1#OhCmkF~#wemwqeoY;C;BQ<<9 zde_9KHy>MjnPO|v+1O#WlWt@ve+yJA3|AWN+3)Kblyrmyf+GQ+(0H+WSf4y&%tP zyx3ZU?AK@q44gQSn_9>wk&Vfibz`I)AzO_{}3zyd$3< zkL<6xADGyET0Yj_PulO@d0zXCk4NjH;@3^AUl~5Wdt!Z+kKGM2#l};gm$1J3_}m-i zV|yV}yqZ{j$nddR?5w}N(N9Ij?YBzjOPY@>zY4F3jIFc#tbFYEt4#3?6YE=skF~!q zx;8pHa=tphviVrv{pDSCZVsK_(|qh4$`oHZvAUGuSB-Yo-`&x+$k>*N)kXQ(SeB@G zNBH{4eAU6l6Ic5+2mN$Dl+SgZPsD5TynL)*`C{$YbNAHW#NTKc?0x5FYvgRcX5w?2 zkKZ&h#ol+GeJ3A`w9#3ve0*$VioLI%{C2a>&rEDh%g6ghrg(ckch+95uQk$ktruP& zm5;4w`PllEkF~ci(vQD&e-=Bdo#ppLtLP(<-+-NswS4@kNT%5P+amXfb#)JPR>S3E zW0WaYkF}r9#oHr$Tm10fz+cYu%3$O1{dH?}Wwd|dQ<{&R1DWC-Ve_#E*2P|SUYd{P zoqzK>5NW5gbt)fQdzs=B)q^vszFr^czw_qi z{ECs`<65g?{n_98jrr#jSNnV{|CPu(n7hB7Z)-j_HqVQVt+V#jxN&_wQa_!2pOla7 zm+`KTwnfJ$_I~;Jb0br{JD)q-BN;w6md^Uy5E=K$k@2bzHMKF?JMq5eW9`Wl*Lv`= z_B=Z~x+?OW)Ye<+`|$H($julD$^ z$a)tWd*@G%3?F|m>a4x{BQ>v{OtHV6>${SNe>9#K>(4y?UUX%2Xkx#a%g62*nPTs+B73+i z`sT!UHXqB|-z9SYI2)a}H6P2$6kj^A_MVTH$Qag7?7i~wzL6<*-a60ismmp*8r?gw znw8;W@4qE7rmFeQmp31qkG6}w|KZ4Y#I=#OJMU>eespAtWjik;!^elB&c^K2EVLHyQ<>wRq=iCz_Tex&*M+>t5vx3jxMhKK!k($3m0AM3yRyFF~2 z#!+m%o$EaDvAK8FcKO);$rM}L&aWLAK0X|EHa__!QU?!B?A|E9?hu(``_x%`?wvJ} zac-FSOU=g{N2d7UeD3USkl|zB8J+d#{8&@_f5XHdZ9aZ%WQyI7=J1*5HIXrQ=9Ta7 z$3~`D|IW0tR_D0$Y0byhO1^lRSbO&K$*5|(v)V5o8-JZ|>+`Kh|HU;v{nir+i2vn|8N`u|?!J8x~YOsvoH@#WDH6+bhvb(P`c7bdRpTEp9-gHh*0&Bu?A zO!2q#x$~z-hL5X#HL;3}v$J(AAA3ipSlgXf`7Fc7-m^3}+C zcXo!#$M#*O_|A#7CBw&mcVhiL8rcK6w@v)<=HoYvOtHQ@J6kgRI%l1qYCg7Cw?)O) zw)4Fs!^dj5^Xr?B&F7qvxp;iG=0~E9ky`D%q50TdC{yfAbzVO*e7r5{Y#qz5HI*q= zSDjyx&(@ufjo(?_8dVK;zO?z+zFLps2PgKN`2M{cym5mKR*8E z#NTc{J{-vuYhSG%jEsBd#7{RL8=FkA@pt~>$nf#cN1fGP`FP976mQSx&c6HbIxkWSowqh0JJVG!*!$}B&m;4g*>`#Q zSpM$FxRyvQcV6Fo?5?PK$J#F+-xQUPm#BPfP0Po>6fIG)z3N=^*&hGu$X(IdSjxxi zMyB|i`P}*Bk>O+QzczYnqz=rz^Shgm?Tt*a@5#=$j0_*&7j;(qT<7{c z5YL*fi>y`WOPY_>r{~qq-ieRov-bJ;oQbWE_5D(0j8{y2QuDF(ktzP}#M(2SgOT%p z{lvWT{Z$V##oo96zJGb{{Lb}Tl#iFFv$Ik@_MD3MPh98wGx6UW{Z!Q1cn(FicIMt$ zyVjJCt##)u&BwJ*#kF2bo>d)pwg%;6&(=l7_O-M2%yAVx5WQ*QP0h#h-alphRm+{P zYd*GKmq+^|bFns^tzG$e_sA3<%jeGecR#5aXWv{qFU`mLlPUJTdU4ksjqF8d{gsd9 zeLt!ZzXkNwd1*e@pG>j&`^|nldMxr?^pp5-%iz-^`C@H%c5Y<&b%r|sar3b|&i)mf zpZ)lqNNuRq&eo@VEU*2o(VFNJ6Z>z8<>RYHrue7xx%01$3?FO%k?7X(*IspgsQK7j zWQuEiOFaAj{;0FLl#f3h$rO9vemk4a%_S3C>+lwW6xxY{q3xO^Ebzh(K4~Im5*z@*87vuT~TMx zt3KSP-c=vPUz>RE$nf!Jqt4p<)5vd{B~ss=>pb#t?cZr(uh#1P7rWm& zUpg{;{6N(CuI6Lk%`(NmII;OycQtV|I%ndWn~(J+Q@n2CUmY1f*8ZMo6}boRoY?aV zqOH+Kql+j0c=NIK>g|0spI4E#vG$zj&5=E__nobE`Ph2P6uYN7zjE8kyhw;CRHPRhsDxqN&mDj(~sd|c~uec0I5Kxfab z|G$s!k9JOcZu9Z6ktz26Dze7b%-QL@x%v3$$Q1vVeD3Ugnuqn$hrRFospez-`@Y#8 z$v!`^d!&44UmdNFE;s?(>+-QRlrOf=owav&WG#+F8z(;AeEijsDfa$@(Wc0_ zADLJ!mX9wTnPSg68;1-ZADej9e7q}?Sw*`d{vZx@o)fj(o1YydZ4vk3_}xzjMt; z8_vPzsI#$^kH0Z8#Wj9DwilhXe^vB%qEAGpPkdqXvGHr$n6>xMC)S?xzl!9pnAjeb zU;E|0JQ%$g-7&GfDj)l8CsVAyYoaxgv1_}tah8vNFfzsdcD{FHcv$=9`R!;G`TpsA zUGuSgowXOj`lezv(Yel2oiXoki_!#&i6DQo4ZW$mWj8I3?FO%g6PUO;?2#+&bCbP8z+9>$ndfD-S0=ETO) zS%!~yMV-y(`RM$}J-2@1ZOzBtl__2(w$Igm?YT_xiT2<6sqr1FeiK+@ZFk<)e5@Ur;(ZgJsD1Nw@9m5po!GPT z@o6Jdd_12!9~&7ywtfd9<2W^XW@77QKb)_RMt4o@{f8s%T@smJ=Np=jJ(DT^>xs2z zyi24m-#@Xjl#f@DO!3i)Uz5+Ph>y>m_&1u5^>2-h;Y9W9J})1e%b8KJ_d2Tu89w%` zv;L~SYaX5#TldZz^VwYa*m`z$CdskgI&z9(>=wNho;vY00UokSpYP<8i zpVn@P>|w2AXSG~DRwvfCSo@t{HZpu%{b^%=bW7CPUX+j3y-e|m&R^BmtCD+1w2F%L z=lT87Q_-ChA8S6A_kFdBYOOl&h+q4Ad-$Hn{uckz#P(l?k6$;j{@l-MLj65Fv3JVH zKQ}VP-dB(AHv8neq4VpTk6##>V(2Ub^dJgvHoT3*;&z<6YINt>^_ny_Wt9M@i_Op zCsrHfV|g|FQvI#Vv+583DAHfC_xD5xquV2M?d)0kcRMdWNkZ}TlrXif8_Uy`Kp)BH#Z;aN2XY9bUsmi+n>FWcAfjq zUu`}%o)@C8MEa8Le5Cn!&BzpAn9rSSJ&aTTw?v&i*Z!8M#@^Xj%E!h;#oH!c#&bS) zmODFJIc6yk|{PG z`}=6LAv%9z&tHt5i0+Tfr}JaY$Lg`#vF2)1o5j|>vu84VtUqU9dn9-L#Ah}iUpg|y z_vCYD?d^|Nk-f4OozH7N)~8Idadob7@o|m!rm*&xsPkVoA3LW@RP258e=@o?vId>y z%g0ZROtJNLrrsB=i~O6Tvv*s zDXQNT`zQ9?{vV7sM!v5)?`l3?6Uh`?i_XXLS%#0bZ;TtF`y+Gee5mRE5pbCc4A{GA8#F*V&f@Rt7}H4*niLLY~C__{N;&jy${4+qP55?POLrSH*U3PES-7f`}@yErr7)HLycY;ZJbywl#iWtnd0jIjCebvPeh%6 z+#J{H6P16 zFAqg)BkR$5UGuT$RJ?xTd&YAz0>aBD2zvQ`b`b)*mYG>`; zJ-nOp*P41>tnNBH4>EkLzg>~Ft9CnkZf$*kIZsC?KHPk))@6#F)y{Pu`1szav;Llr ztk)Z(zd!NT=Hs(QrudqC?re=^`1oBD|3>q%xyuxPYGUJaCe*F$zKJhtK9=7Ssi(R( zJ6nVD@e&=3iq%YK?H!2pyEFRR6RU>@Bj2IbPG|3wkM~5{FV_C1$e8W<4HLh&`S^n) zQ|$e(MEblfQfr-^m-6w2BU9{s`DOU-*3Q;Ln|v&4UW9Fs#Sl;=oHCQ+C+w$3Z z@bQNy_HOyrj!d!I@BAzItS>&U{=XJhkKc+qd+t2j-&M46;&g$4_?Vb_Y7w5Ti?H3<^dSr^dudVAN_t7;IzoGef z70DD|HnH}s{}LIGn&@n-<>Mh zWMpmase7igbt@k`?{!}841Xb7qT-V#R@X9oY|T5X$?~!Nk|{R6TcX2}nttoVo*S3- z+ZL(g&Sy6tJ8Lq<%f!{*U&q(4d3E-@`Y^^HMEWbPvGY&Ff7E>ZhvVI1?bmvr9@f|T zs961UHg_35{`kblnvcz2rr6)k`tS8tN?gVsd$ptH3tAMYEPV)fBk`_|PRX)Je4>^zi@mq@1A`|8`- zx+pTv&c;$cmOmc-dUQB4md@TUAFm>rV()hLeZ7kKSo`X4iHv*Q#Ku-We(lH_mo)}Qq_5*>~H*NN3v`S|RSDOM+)4~`5UYrpPCb!=^_zVWA`^0B<8!uD`!UlrXFb@tp?SCM{p zPrSeR*zXsa;vY|Z`N;6GyQ8!B%g6fP64^s-u9?_*E+5-NnPTr7_tVjB(H~E2ZslWn zYpg%#di}&|y?p${$P|08v#iWZwWrT&58H3&VO?}dWdAz$C%lqvqTiSHR1J~lt^ zye?WrYOV7%&Btp-=B4;(%i!0HeDS&Y-1+8_;bY_R`+SMiyZz~WsQK9X82@>ZvH$0Z zdFA_i|Hu@p?atOthL2B~_=e_V<8?-Eie!16J-46RBmG=3@v8ZFZzNM}e$Pkl5bbQ8 zSo`~IQdxn*4gigPew1B*mK!4BKMy5JKx=WEGtv|>WQ^i z`>9W7)!r7rd}8^lquMWjJKvJe_K}C>t*0|(pNzTl(tK?0GR4N;c}qUa@bN_x>rcNo zMr)(h#O7B%me-ydyf)f7v9&25`;8=1?ER{fZ-jq0QZvP$pV)V!3?F;nx%18y(LEEp zo6E<)G%_#6+S?PYqQ|3ePwdQ>kF_mRY%Mx#Z*O!Ya!%}hXX7p(o3~8yrirzuCbh9E zx^QCo^0B=3uZ%t#ojmdN&Bq@fnc^M!tUvW^AFWMi^DiG;f0<(ao6o`M%;;+q?{7Yq ze>Ad==J>$G$C{7Tu}rb|I%`Ab|7&~t-xitUmguaB&7pj}L^8$dvh$jJULrnrt~#%6 zKCbmXKV0`y=LegQ>wYRW?#||OD6$T>MEdXiubYp5dSr@gKaR)0IP#mUv$ZWB8;?w} zJGry=+@%{M>!GdA>a%>jie!r4IkEPhi2gzJ@`cn$Y=Na64~#~6YHyd{DYAx?&DkKncDTN*xlH9T|Ue3 zvG?uY66wb|?R>oX_*f)UY`r^g85us_9(C5AHGD^OedMfk-rIaEZ|&6VS&@9_OPh~( zMAlfwJ?*==^RDJ&?LQi++nXYD>ul`hW6xxYZ=1N@=VR^Le>Jv5*0{5?Qa;`r$rO9P z&c8Y_N6(AxW9J)2hL7z{=S!N8-3Kzo$0ojPWcb+m>wI1FvGv#A*67se=)|9EKGwfX zv9WZ1)5!3#^)TP{QT=z0&i18zY`-p!iZ7a2d;6nR@4I`{jr!_*YxA+ZJ+_yt z$lN-AtNGYGWQx77zWx6HRCMmdp6`i_!TI!l=eIQ<%R4`QL;QJU{GB~l56+w47S^Nl z+U8?*AXB_dY>j02SYMsjG#_6d$rOKlVrwJAuXXBtbMx_zNPBhW)pqA?`D|Q#Y%ZOb z=Hr@g@s@aN_UpO*+?0xm;{;Bou>@FxD%U>Nm6dAYswX?p<$MVLcP5bcl#M&$$|NO`ld*AxK zJ96)wH?cdre0*oL zRX)q`vAe0W{^Y-Rr#D@5>ZlH1Y0{;bZ^Jq_gqpukO5^6MrtBtpgwX&C*%_WrW6xxYZ<^THWcc{9iQV1hZB;$~LHI4v$x&x{ZN1d~9nZ5fBXh>?{LT+I|3v({JTD*X zPrWYD!RVZc-`9Lx<8!BMj;u@PZOz9=MyA->ceWl6M#kVS*IsA80m{en>T6%5-xnvo zqxtyGktzN{K6h3hGJI@){?>hAZ96*$wfiVeIT6Ml}Wcaw|)BEV`_vRAm8(%T; z(dOfSJ2J)Q+F9E&{OYH3-A7BFSD&5#Tl+UZ^>}r3Ao@Qhw&vwywJuX!`^(4L+Zb8D zeUW|Z?74ZVp9i8>PJBu8vAN3>YqRtAk>TTNe+gS3_j2cNHXq*@$rSrO>b&H$3?FOX z+z&?1(YlE*Yd-d_OtCw!^P5M8kF~!gavpDw_DpPl%g5GSrr7)2q9xi8>ASPO%dc_t z@$Jv^^0D)EC^DXtBIE4rw|V*4*ky`W6C0oVTidrp#@^YTSU!GyWQvdFb7$>c6RnBV zidySztmWf(j!f}&`P^B1_E$}OBKqlxSIx(_Ml!|odYzSL+P6kn&2)aM`S|F_6n`wA zJG<*;_}F@MHvV0aIh%*y*quMxeEh+YDfYhec`!28ODA?_%g1U~rr7&eM<+$~-w8VZ zM)R@Sa!!lA|Fe-Xt5a=s-q?IB@BUgvwfCK!zw)vE)JO4-@Ewu0G_QLn{(SSX{)}sL zq%HN^*;vcR`$ndCdp>v8-mb`+t2z13tLEbiBbj3F-x8URJL-&ycQzl(Yu~->^Cc61 zr1|)8Bvb5t^HbAR&z-edKCXH${@r+;wWnUH-quZQeb0>eSl(|YciisCSUTI!Es?sB zyJKQ^Px*NN$Q1upK6kG5s_{LQ=biO$e0*Hv+Y~mhQ=-o9*7EUdN2d6P`P^B1Pej_j zGJ4s>_cb4@Etz8f4W{#N=d<(R4m~$Id1BAq8|x$Mcw}OGTYl}cOtHJ5v$eK9{95?$@#zy=V;Mf)Ik7&=$L42E)#)oD^X#lX z%g4VrGR5A1FxnTn+sv)=JmpWoz;d+)r|I6k-k3}T{y9|D<3bBOtCuZ zY<;eXekS_q$lN;Xr+n;e$rRr{vAalyk7Yaa%CEmN#q)FXeKNW=Iv81p&e|>?yBlSS z_e^ZQS4THR_I2IFuV_9tPnlxl*%zH3dEfuT>FoL4kv>k1jIHyr=41H{(GqFTes{K4 zMNUdAvGuFLahIAFF4X;uj{?p7(v%7}vcM?`=NzJ71>QUU#;Z zGJL#!;u^m@sMfjj!RBLYU|hvJC$9D$j(&?e6Ozizye}Ap9y(rdJXKl$; zA2r_kyuLld+am82*B32kD{XZDh9;wyNvi6Q&?{)URnz09bcWdW8 z&ByZBM{?H5ecSm5&BxA$OmVH(5>LOci8|Y#^07W-iuX;deHlL1z8d|rNDW%|&epwr ztS_13)xrx1UKnq&yR)-(lHu1{b~d;2vHmwie%Jg? z{qP~4r$JW?qwbl9Q=3`@*DfYgaxh>im-8-@8&hNTtZKSR` z+pF@i--a^9HD2pseCE>mz0Jq38=2zje~Itjv6r2Vt$cicBvb5ccfMp~_*nby^UEW3 zw3=Akii#hbxb}*V4@I5zwgstKFsPnewV|R&6vAylQdt~_7 zI&{{bf4|)k-5D(t`)(;8*S~*?&A;<9GJL!vvR?IXqDv=Uo6oX*{LIA0w=Z&cxL@4O zoq6T^`>ByBHm}Ynj|?Ac-}vpb+WpqV`ad}w5f-5s6PkPIJN>&`oykBzU+OWk>Drr7v8%X@B**GG3w{DtOY zdnr?V<;2=ok4t1-or%t`Xg)SKnPTtPe4WeBMdn-VKIwdXWcc`S)Y<&r7`-wwzl{@b zYd+pEGQ~?ich;Wq+4Iejz3MDmJ~p2hBWrSgv~S|2`B>gw)E=KT@n!j}4*2+yiSKAW zHeU5;kBxK9#5ET_Hpb50zaVnPPKh>6ylOsnhGdHUw};NgEW^jzS0`%Hyq1ZLseD}d z17UUZ`Ka^$=3{y1!Mbmc>{n;MQ_IJmQ?b44Y)?JsWBcX%ZWTQq{mI0C*?jCfPo~)T zJ`fq>Z${eg{E6mcYbI0def{#DkCut8UHN!@v_!?~qOr zzNhMLDOQ7>o!P2Q{OL%h*q(RxOoor0gU;^9^07Nnrg+!H#`|#ekx0AFf9I{u$LiDYkB%H;)V-n_Fl7Rqd_9YFQl?n`h@GpJn)XM^yD(bz|Jc zvYqQ}@Ui~gCq6r~^Y1I~mXGfonPTsoQ{8XI)%j)lY`%QFcH;Y*kBwcX*tj~MX#BsN zjB$I{T6VTR+oA)Jww8%+Xg;>zOH}-?Cf44e$QphI!7|kO#E!~@!LnH_`H1Xti8V*eIdFfIy|xG?q$CztcAVlyfh!1n@sVMi7(7& z89p}0&g!Xr{H~EHHXie?d-Wer{LOr}e|&7Lo!2%W-!U@9+TRd86j^&U)cKE_j}MJZ zvG;wSFOhS6aN_;V$MWtI?VKH%TjzTI_4xMA+3Bp0^6{RLDgJCecdquV(K4QOUf+By z?~JV??NqH7KiPbI*T@u~ka_=3?CayXZ>x9mPlLvQnCHT?$blj{S$lt#b`sM-8B@ss6+bxf^CQE@*GHZ0Y5BFk?h83>Z=HBo^RfN$zWOqU0~0^fd~CkzO&?cA?%>XA znvd@tnPUA}2j|_o{KCZA*WT07Pe=c9V((ikYj!;Pxrsej56+2w-#PKF=41WIpB9}N z8E@yWHy`_rFH?Nq#M-kzk49COosFq{Y`oV0VB|OMv5Bu}K2|$2#rm^v#%w)&mvvUV zK$#*{3eC#z&~pNRFR{x(O(;%{eTDIcpF&x_Sl=M&Y_`N_D8)cg90cQ+r~8=2yh zCsuF!qO&7)xMt$FHXqmi9SmD5>(Kf2&BxYArnuI}nbP0qqt0uakE=g5X)dpeI{Q6c zKGu&+vG<>hjzn_i-`V`@`(_DWA8m+=YrO71=g7Ku{#5gE^|v*wj?{SPs;{d3Wn}o+ z{omR6^jl};+k*W&!^;h=gach`Qc-G-TB?k z$7@HXSS@t^egO7e=Po`}TT?Hbk2z{$BI3{kO*6zcNyno!``atbLi^i{24kJMm-9 z$MXB4`uD6F>+Ebg-+XK>IzQih>|L4ST@xFd3?IK|;$zLn#`i$<=4chULp!@m%Exbu zWQx6Soxc?Q57C7ad#(4xaN6Pt7SSpEZ%nlb)!CieV-XcZav$0oj|`FKa9o|eeC z*H5gU^0BN;@iMV&Z||Xemf>S(x3jj&$HuSj4@R>7J6C7tt9*R#$P{~jZ*)`Sdr)(WMg`bNTqOktz1R`5D*I=*ts-qxtxEN2b{O_G1;P8E3Pz^(-HI zCR42TJ8SR!$oW37Cq-<Ss^1 ziarwgPU)=g^09v}$Q19N*!c9R245DvYhq`+eC+O$Dc(M@_Wm?lBIiJTcQ$@LPrvSm z&i>ne`S^p8OtF4D8;{IS8jm@zBLA+rYhvS77xzTfM(6XJkJW=di`PxOcVzfj`;SK6 zSw;HlTzkpK#?X0N^RatSrg$~6wUgmvXT7sJC?79T-3QqISg)I+osn#3^ZCo@^^tKr zJMrt9kJYYB@wF4{Lxzu!PyDUsWBp$cS%2r!?}yID@2q_#vYtmKRs-c@bC)T;WMcif zzpBoyd*>yeYd^5smMNaUAB@la;(qj-gJ;E_>+jzT ze>Jhakmuur6W`K&T=zM1L@y?Mc-kr~#?;IIE{zBCGf#&0TN2b_#9*iE1 z%;WxvYkqvJ-Z~#>KGvSKlXEATb7%EQSo?>fRrIOo z)`>mWuQTkulPC7v{@fAW7#Tvl>_%dDdAw<>OT(Q*3qxXF z+A#6f=Hs(Qrda)VUN!TZn zZ|qS{2GUKC_XsxE%|JG ze5`$Sbw=de{QHSLx3}(>YP0j)zVTQ4*m}wo>!b5yBg4n~b4L7|R69>kd~x%!tW0r@ z*L>90B~fQ{i(A8X(FI}p`>W9aPp1>^a5^4DH_Uc7f=cY+KbzjNa2 znvZux+VUIOzMFsNBhAN;k4&+%*4f_5@UgY(ytDb(`IIT%HL>|S|My4MOs@0s=3})j zQ@kVW{aWLvCf26)_`c}ut|}kzie!rQXAM`8b+~h4Yg|5lVPuN^?QASE zJY4%x{OirfHQ!C)y4O4JZ$36(-@md;`5E^rIv%O5&UZB*pApFv+q=%zRfdoEP3$|Ud~AHx{{>-dwTg;w zn|O0R%kc4;6YIBpto_eM&d%1z96P_g`B>gMeK-1ev}s~BT|RbpWQx~JYz#7d{PKzQ zXFm5v--xu+*>ij6zE$V1oY-^c(R*h{w@>W3nmIpGXWH)kn&#sdMy9yNSM}*`?tErG z6W`xAOzeGQJ2kp8GKS8c>r+kak5&`A3(Cj(SVhGq`$C2L@ z#_8XlojtGf;SSceb5s1)iTnCpn`inn{$jP=*V$M&(a_G-WFg?e2@#pcr4-pTNB z&9_*4=4lRpJK8<5`IV2qH8REC-xyhQecV0qTbhsMFOHVzP^2C@f3o@bm61%b_rDTt zi;Vd@6I-wH>kP;gFB9*`XXCIZABvof&hCctvHl;7tY6&|o&Rz3v9_J*V(&j0IqUY( z-gGt|^;P@y_{7$j`1QB*-}GGn)^3Tci{D4D<7-<^0D@7eVn5u(q6IgboOkC_}E@|wrAzn zIg}|rKJjDuyo&hPI(D{3ee&dnZ%u{YRpG(M6H9>#VKv@sW`!zBZpb9~~J!w#S{1H6QEW`>&47 z>Gp{|H=aL;G)OLRu$ zd%N@I=3})kQ~d3TuO1mbHnz_Cv)^^b)=YdwKC3rAJ~XlStj{m-+6sLpB~k?%(b)MAToS> zXyTfmb8fs#)Y%@Dj~|JasQ876wRde~O!c=jul)M^lb&nu?#TF;$ahZXgU!drDpS03 zVl^zo$8Vole-}qfq#b+Ld2jP^jnA6j7TNF4p1TK~<$oLb>|U)sbRT!N7R2}0Tstq# z$Mbq<-<}wQ-(`m;c9)co{kKk;;%g?>p88We`f|QI-_U$4e?esZH$=Bjte(x^8T371 z4?6qzL-|;H*6-VqeX%B;jlFz))5sLtkIwp&;bU!e{&e$k^;c{yI@jLuvGMkL)rUP? zBCOszyNAlh+aj4_?{>DXGJLE*_uwkB?%L}7KQ#RS&->r}5>;DE;Yn8#zjC}Du`P^Ci?o0osx-{~< zv*-JxRkS;LWa4w0k3FYibM0(xJ?G=ICU&;UuX83-Y#lo9%jccZ|I3>F$NqVhXP%cQ zG-*Hyot+L5A)7u91_j$VjI&eIgdis}5NxZ1qRp^&Aax{^Q5<601r}yQp@k{aAP=Eg zSSV>sWkyPC4^F1h$k{0Cd@Oz?ArJv=mav5lA%)pt>Q)JjN&njGC7oNkb!4C;?H`xE z@8^2%^XoqMInT!lAMcph{GHiV^k}57&UZH-`|U5L_{xd(cSq!mTbFS=n?w0OZ9cVj zd9Qjaet*2qYC#Mi8?Uo>AJ%g)dMJ8pWNw}9MfrHmh$-Hi=gt?6 z7(Ukjk?3Uf(&*`l*Eb&@7%{~)zslJedEeQ4eTsJvx*I!R)_lBe#1w1q_u#$J3nFvv zytnySF2xjoZ{j~1F?_85x<5CCH$?WQ*nB#xJu!T&);q6jKK5@#F~!D{pYx-Q(dQ;U zz4_QwCtxXu$F>;IAHJJAxk|2yli{C@~n{@qCzNBZmh_2y&We=)^RPOQJ5L}y07 z9+_L`zi&R4KQYDHtEU%7#@Riw_i}wnq}|bpm*!*h6;piI#QJmo-WWX)*}Kl}mh!PV zi79p-I_vMD$haSl>_O+hYCiU!iuK+3sqvnVeV;mip!xWfBc|AV>ie~Q#2T;ITsv3a zeC&5q=e5npyCVBl^DnC_1&N2f>fU|yZQe=J%e=h4~htgrI1wqlBRh3}8l z!@HtG6ThkXc=w1Yep#M7Upiv=_+yd!t227v#CPP`p7ODHdsBUWWnz7q10TP5V(-ew zHU28>9M!%Tf1&wUeC1{pb{ET8vHW+wAkSj>So_POW6`U>S}@wO3DyerRrzvTW+k=$c7+gW{;k9Uli zV)=McdxUKE?}^P;uUxsh7ythUO>;(edxV10CaV!10HUpZom>+JHe z{_YtuOaA&Dq|ajc^1O=9i_E37?{N88e|5f$saBk?;_VY}7%_Z&anxCVmqgB_HUH(r z=67g##&JK3ExvK$&x{y8wqKo{qw=xw&BwgV@4<;{{951UyzhK-p5=g#)l+A+Qa(1` zmPi}xP}iOBZa%gjVv6lm=TDCqKK@u_9lsn|)9n-c_LYz2QB1M+`m#oO`Od`FRz5aA zF~!To`m=wxG{3WNL$$^FqhjZ!^H;}vKK^{v*?8*nn&{f-o{7ER8mS9;w>O==Um`jG zVkAGEy?-RKhw`ZH&tiLAG5FFEU#vgp-F%IAWa3rx@y19@vD|ewUom|A<%!oc9~=LH z$evym*{jaZL;2Wwu-|Wrjz#vWbFJs;_(!8Bqt4#zUk$kLthuxP&EYlU?`q=nnvXvl zt)k+S6B|z+_^W8s#NP9qnOaZhrTN&|u;yazYd=ne?}%1Wv2)bf9V&)j_o+VRSe-2s zKiqtLL9|50dnPuY`=f^<>)tZ)s`Y+QBC$7f8uzxlYvw;%TD z_NcS(MEUsU5mWrSJa?8?F?@Vz;@S^>?T36Xk@H|bI{Rjqk8g{_6z`o_EsEh|>yw`s zMc0nMoyC-oe`&-NYv1Q*PnXD?@aYp+HRA@GFsZx!XGXH%IySw z`S|P+Q~ZNGcfN4M@Ui}@KJ_zm)f*p+KN9_6WZu_K{I%v|eTpeQG;#IMul|kouE-gD z`^3IA<>MzJF~#O*Ui%~YJ2COUX+GW+Z5lDF{B`$eTU_~ZrtIapQRnNMkEdY(OU-9bi;%H;^K`%?0#8A*7T+5u8ALRKE7bY6l>q} zmzc*s| z*gQL%Tlx6-h$(h&bXKEc`1p*8?WcOQ)|W(2PHgSvW3gh2*H5fJ_5XNe+}BUMv-w!= z#1wyU;wSPfhL81M>p3s%ezLY=<96PfXEA(ya$@-{A0LXu6rbum$-xq-xy=)sTlrW& zVv6q=(fmrL2Tz;d44)FuTMr|J0ER6J~Cp8o%PQ8+Z1hx{I`U2CcdQk zxW<21*xB$c=xqLVFKiz%>+`pG+r(=|3?J`}I_qzV>UiuOgu^n5&0W9r%&>U_BQxW|jN_u`9<-}!e(3?IKE>TEyC$L1!c*xq+GzWR^@ zdwTZ7_N#n+V#E}`KhK^0_hK=8>@0OYtNGaY--^s}f3%wT(dOg3qE%F^y}J6f$hgMr z{ORW7o^N;S1(AFg@0?g}#qjZeH?drnkMAEb#ro~6FEKxDyo>U##>2HgOIUrai#i`~ zKK^nfrg+W7m9K5_?X};2owX|;o4c4|_0;)P_2k_9y`yf-rL(r><6V*cGo~8Uf9Ipk z$4exp_`t;WX^HsQ{{!f3{l-5QsZHPd&b;#dT_Q2X=G<9-KkN7NU*-MRB6-CAcD9!C zv0QmyY|lFz&w8GU)*y?Z<>OPWZ%_Qoq9uCk#CJ9yixX2U zx1BeS7(TXMH6wTS(%L)!Me}jpGsTDFb=KdPqW?R3TjY-Dd_(iGvBeZ?zdhO(T@yKf z`=eDPPinifdMO`&E)r8L-<>}`V))p2mqf<1_7_fUeD~pjNM25x_{Qer?~RyZ{cnx_ z=V*!4Q|I-~$9qRivHWy4Z!vtlW#S#p$Hspo`cCwCw07dln~(J=rdYeqYFi8+%XR0o znvb;=Q>+#{*I0aPzE4N%qL)UOP3--_$Q;z~;h)1BS`4<&+7|DbSpQWA?+bgcCW@Dd zotZt+65%&aZ12j)KO8Z|Tk_m_HDdVKeEcSM?>Z05#OktqT=n|v;RhmX?JT$D!5mWrUJa@K!7S zule{5(GnHceqJ2U-ScGB`Jv|H=SEENyYt-n!V$yA`ad4Ym;3bYiQS#$W9LXrvG&%d z5BIA%cJ^)+h$$yJd(>AW-_ySKy?e`(^A zc^1RRe><`LHQo;*_l!O6yu10>{)j2|?d@Fimn-wK*PXqW->Lz3apyDgY!CQYyndV? ze{Y%i@#f=yI%0}X&vR$}sbyo@r}YzWZ$1_)rdTa>zI(**@oz?*o%!UV{Vv4o5U-GWM8z=UD zQ}kT)%4jw5o;;V2#UF}Rk#;|t_@?G#{fa5Rdg51&7(V_VqRz(K8u>OjgO5)9+2&*8 zh$;3>>#V;GQPqz=JAXRQ>WYugo!D6^A6uW8;&)GMJm>R~$T?CgogZsH-WA!e^CRnc z=fuV;AD=a1ijC*Jaq4epHBdfQC*BvYnOJ}Ci`=nduAJEW`u!kpk4H;X{EmtLHqT=C zSbOVr9-NokCjL_u`kR>bSEyDIc$k)OxY~?d&{> z;bZgZT;s`UoukhBE+5b1pB1lstiNwYtLR8{-o)CMk9Uul;xqExc~_q8(<+jyof98! zJ{E8P{dW~LWbZqBS3ds1h$((yo;zEQyWGEV{yfsQv)?x5W8+)D813AhowY9?yNksX z@Ax^auZqFTh%Ywx&VJvE;bXb&Y|qNa-c#{q6aUNco{#i5`hIL~5t=L(Ru0MojTP%5!J^$yue0~^Z9eiWwzKzgaaH8r6Vv%*^RamKaWpzRS|;9_=koCd z(GqQqaG&q9c{XSBE%x4>;+ts8T-F)_u~-}#&o!^iU7+1$#< z&XSm7<95Dl#PIRYo3Fc~=8nbxINBVUhwpyp%8xmC=e%{UHhe5z|LdcR#9**7 z6W`u^{3j!(*jSzQZyY(eHG1j9JDZQs95Kam+u7cW;h&0m<=0>F#pdH2-xF<&9-sK; z=HtH`F~!g2x%0P13?KLP^4<_xd-2JM)t?wX-aWCqqkR0<5mRhD=k2s;iJZ~S_O*Px zJrYx_@6P`FhZsJteC-Qsw?v)oZTVQfmZ;dbzq9_-7q9l9v-Ovcti&A+ocC?9`y#1wx%&z;TB z{?>Qt$i%BWI}3a)mz{Uz*_|Y(>VDnCYnzWZjhJHX-4EK`5ZyVk@yf^MyCu3fsygfZ z!{*~dk@_qC)WrI8b{~k&jm)F7wU&>?TjvrP-*1b~_PTuhiAYSb_HTaYI-JdtHwU&=}kC@^;dG4$~^<$0tJ%3{B zE+1Q$m}1|A&ib>@H9xi5`Q>>wKR&*2;)k1$oi{PX`nSL4^lRg9=Y7q`%ZMp9x6bk` zhL68Aapj+njc>n}NSmD#TUYt`^bu36{qv(2M)yX)JhA+ikF^t1{Mw22XZ><~TI5^b z`Ec{Gc>5*Bxi{CJ#lFcEgMWR*7wgY?`g&xqthckV%E!)=m}2eCbJ8!DIf2O z+HSy zz9zaQGG=FO%EuRtm}2?p{DBd}$3KZWpV@qDeB<>yx$`4=XHM%QEH|Cat$cjfh$+^; z``Vg68mW!W^?qyoo1(Q*XLBjP<|U^1`iU>kv-$F|{*Om$eq&_6I{)M5WAXNAT~zzj z+1TadS48q({KUkyK4<1wq~1GU(0r_KF~!bsXZ^XqKNsB>Ia{6gG#{Uc#1uPgoloXj z3?Ki|#LhP)*oJDa=u;p2xU)_3{%cSlU|JM!Gwc=mf+batc$JMV8k7HCt-<-GH%`B-km6yG-So;-`;WBvQ>YLD&vTPEI>XZ!nP zbZ4}7V(kw`HRjfd-36;?YlQEbcu(`O{(c-CkDiJ)PVBvUk>e#=MV(LNd5KmLzHnmg z#k{n_Yw0XE<>NPxnBr<*zo(YG@BDC{t%r{2W_M9%>nR^UIbw?cRh~OLZ({hk@@Eh2 z)9$GAZ#Ex4H)4u^l;_TV>x$u@ioe=?{P{?H@yEi>zkJHIv(nk!S3VZ6HY+Fk>U?9K z<%f^O+pm3*wW{0BH#8qVG-8VP=ehH)JYOEk-K(NcPwf4{$R5h8xpcOM@@qZT@63t2 zXX39lADf?;V(aYu!4bp9--|lS$B}3i`M2)JC%&!u_^uICyfe?8504l=*1vT*Uynu3 zX6L7ykJpWu;uqw(vz&IvH3g_X>(PimO5Ks`Pf{=6w7sIxf8?3 z=3^e#xg}D+o%c2$TZ5Ql?RnOqR_s;hcQ+rO95Kb_()rMc;o}`qXZhe8!`@#ov3)Eb z%axd7?Kec$Q2lgvSC)_63C1e6zRqtLF?_6l_u$b;KF*r>^5$dlPe<;6{q1=P+sE}$ zXEj+q-V%u^Rtuf&jTkj=e0*;trugiMuN*Oa zEdQO2Up_Ye_DIgv?Tr)r{aijawwPjlbhg)G`1p*8jdxAtzB4!Dc3#tbEH`3`Pfo1A zXChmtkGDtaw%FP_9~&`ztbg_3T*=S> zII%gDkNx%*Q*7+cuO2actpBH@YolL_oVCvKR6ag5Vv2XuYS~GXXm5*I#*(fwSP1+C+kv+o!t@T<1dexVtMX-a>Vel{_Tf#T@b0|&ffo* z$nTaV(pTqW&Btp;OtJRb*q={CmrcAhAB*1-$@jC-Z4-NcJW?Ysi~fA#{{DCJ&RWD4 z|GSAloM$n7ti8GVZ;MN0?wzk_J~kII#q!$On#J&OpWm81Ul5sJvG)g~H%1$x^%Lu- ze7uUp6q`$DzxP%Vzy8hAxqcJ+J%_&#b-uItcSL6rdX|aRvTjYc*n%XvwrX09p=>e{O03ZM@;bx^4$5zh~eX3iaHzbXygp;j@&n$ z-G$|2`4dyTE4)8iMK6i`*6OVPZ%6+;S|Z!bRP*tg5mUT3&z+rJF?@Xb#KtHe z9~v>mJM!Gw`pnn|T0UwzygsSkHm=Z`cW-#B85 zeTO>h?+>C^N2|y@IvcxuygRD7;=7~rvAruFn{)X!f9GZuofh3OvH7^~wh!O^(0On3 z@qtK8vHDTN`y%_Mug>0;k8c?<#T)b7*?i1fO*v~np4hjze0=kWDempf@sdbi#rp2N z%Ci_gej@5D*Q@A>2>VOL#@iBoGTI&)t8?X(kL61aSCMn@iHY_1-RQFD!N@qBuWvry z6NxF-zVf*_Y%OwLeEG!UohNP9MdCY~?}kY2JQ;c4S$liFDLNEgHL>?^iL6;2ILn=n zHXolgVv1j%=gu`=|yc~Qg(&j4@Khu0% z@%Mzy>5EZk|7Iv3-!@{3YrXd5>}ZKPyZg$=$D$=FUOTb=#n+D;^*>gEIzh3owYZgRiw_Wqx1Ua zWAT?o&XBY8$%*Bzd~AKr_Y%pwJ~}_re7rvrQ@on^;XI4s<8Mu@7Rs->5L4{8NoVU( zzpH3tBuAaU)_i#l4ZU`l^Y&-yUs??4#crovpQeymQ19%kTY> zKCX%mO>Dj8WAU|K>u^7>qT+W>Y|di%SX}2#op;uFos?o~0xelKvV2A z*ZTQby!l)li8tTQ<}1$qV4p6S_^r*y`jdY(c6PL9V(-+*|6q^NX5~ZyhnkSLV61^CO0jPfYxunvad|e7z-- zXSwP8x#r`$M@+HynNYBSC8^_dSv|0Pc$Ek-x68x%c2V>_TKL! zH6q{U*Lhc-tzVt#!#&zr``V|IVKrjUia#*%%_D}7wLcQsWBX>T&T6=PY%DRwVmq($ zEQXICo7lVZvAPgb{L|`XNzBIRT~TNGFCSZrnBt=o-#B9USiU;jqw?|lM@+GNS%2MW z?!C@$&$D{u<8vprzVh*BM@;cedG0JPV))qj8=@sL&Rr9mXZiS<5mT)F1CcXuRpeQ& z-09aw%f#Nx=_+`<+Q?YrJk9Umt;#%+e_}im%qs~k7@s}ep#m-yj zlX(`y$L7}AxaH$h&F5hJ8bj_n>u-tp*tekbvF2lK#S~jx=j|hgkL`VD-@5X#e5uDn zkvMhJS?!gNzc6Bo-8Tm!cgX3HTy)m|mdH2C`ev?t@v-TJIIqkE#=(eo$v-uGBO z>YLa3lg-D^M!t*1zD=E%Jd5Gu%Gb&9td=^jYd*d^5>qT+<|k)Wcb(Nr`Pkmb=}+UO z#bEP09?6fp>bEDptohiUi79sXbpEd+hL82%^P$cvH`v^lsJQBnkKYh=)}Qv*Mrzzz zJJb8qa<_NjbqFT@l-FtPO+ z^Tm;RK0I-)|BLah?SiQD&gSE_Bc@pU`kve!mfuxW{DX?$vm*=_ijrISX$eFl4ayNHYzvbiKiNqA2nE3s9{+)=A<)X9k?3dq|{w@qt35rK6akO6rVG(S`ov?J0>>XmdKnoMlYS%y;44Qw#5{`d*UbZEQXJrlg_Vd zJ~qDn*&Z#CTI=lYDMLrd{?&)w7cisobS2O~LMA8ndgU*%W7Vv6Om z^WHogkB`l(v;8U`Yb&Ps+KHVbF??*k#+O&)*oV%qZa&^QVv3!I&ib?VPel(!b)OVp z+I;-Z5mWr-Ja^V!3?F;fS-q5xty@g-mWit#`Ph6PiLAr7#$C`^f8}HE#1wCv*j&W$ z@f#+t{1{s;T@-b;cje>188OA5%yVaBiQ!|l)p>jK@vi7lWUoCRnfSuy<5eW4c+JFn z^Sp}q*!rADW2k|fCwAYKkL5^A@kb_>3o(4WOzf^HA6I^l4d2=BY@Xuz_=$_A%HK8#vH2f}s$PuS+4o?3#K)T^)_z0e4&E5K2RfU3`S=SXrda!1B6Bz%Y1`R*=eMt+ zv$I?4#PVzZi^X;pE2j6+`RDZ~57i$&)qXi2ak2NqI)ClUN-Rs&Bx;H|N7{$$i8)cSM#y>1JP-bS~YfO`7R$H z9x=t*za-il{UrJ)6W`u^td_+TtG&+pyC+f;OC;Bwjaz=rK}_+k@HNqkB4aHRKfn3- z%xH;4Kid2-lKal`Q$D_R#1vbf-08pO(OG=? z_>4&Z#UGv6ev08^Ywc`2_4M^>x#m;(XcbynM7TbAu^YNZYOtIW|-je4%5g*t77gs))yfbfcoqybX zET3YEmx;}#&O7e?dtQc$joDee8r&9bjDB-sXQh1njS*9Q7<=H3J9pw=Y(6&r zFGc#Z_D@Z0ugb^b<-=XGKjL-v{!pZ!jnNw?HlOnG5{W53KJg8CULrpJ(!}p+K0Y~O zip@uU<@~)J#A~D5BCa(Of;-83K9d-6zJ@Y;r-8AuY&Bqsxm}2eK!|z4s zL>nf4Tl4YZ5mT)F_UNf-V|2m9>ZRVF7rtS!mXFO>O!4z3)}LIt*FO`jCjLjw$8x!finZ%}U7p48@rNh2-tzHRMoh7} zbbj}U;bU{`Y;EOZ>#6(W+_2w$?vmoWCf+$>_;_v9S%32TXk=c;Ctful*ZD6t*Uq09 zF?_7Q&fjl7Hg7S-yC*ikx&zh7u4qf-j`>OS!imK@Pu94KHckBBHy@j$m}2eqzax?l zV|HFOADfT-JrIfAH?i6;ANzNVm}2Ltv+;e;+)wiMhKao^AL~m@vG(%$rs!BCzn#6W z`l)`@Pw~!)*XCLOe5}3oye9f&w0+{G`Pg?xO!2!W-j(OaBI`BpbrV;8@bQrmQ>?x9 zI2+F8eG|W@`S{$IZv$ACC@4mq+H+*?h{!uN^VP+8f8* zKN|UVb$)a6vG-K$40Jwoyys*6%j+uoQuOMHy+0UjiRv5Bd4Kb<`0~yRTd#J-yC*&| zV)*zEqs~`0AM0C8vGIESsMRG>SJ?QS=lf87c)vc<&n*)>Bjw{;M@;daJa^Wgv&M7B z7{BwZf2PSjbgm5-N5OtJg6voV*5kNx+v&i>m&`MAbE6kbJVN1f%nd@TOv z$Q<@W_O`QJm5-f0F~#S*MV-!2Pou3;qeEh+v^GBMG-!Wo}t?%2B94?W)==}T5 z$0tWjvAK2jp7{P+uX=Xh{c`lbOl;2O<9CmkV*PZ!e#G$c<ilQT$HzxZv0CnY#)#o#{dKmc z@_*X;+z0kcU0bg)Pm6vf+C8!N`gzUxd-25j@ScyqIPv!8V`GacmjBL&MhqY8w{z_k zAKRk?#PIQL zQD^HaAFmxT#n$(9WM6kipP2aL&Bx{}rnuTK@hY#KjZ;3}9rb+g$#eNwKExEOv(9sU z8DBmgh}6QTCO+AGY%DRwzC)e$_iVI1S|YX7nMYM)yTb0{%OdAg|D6vvAAfSh6q|GB z)rjF^zu`Jx*nDih&a@c&?)OILJfk>+FZ_CRfIjs7_5d`_OXMt>Y(bML&P`Ph2oeSK8@c6L{lk1vYqKEu`CeI@VC zZ)fW%AHQnE6sx(;Yex(pSHABJtE10Fo#nH9EI-dg)-I2$iS2Fq{}49!ipS=2FshvF zomi~=@Ui$q(N&Q-xu-jOU;R55&fzL5e(S^)|Kj+&qvxW|-)cVgZ4guZ(ur$5=4jrZ zjXK}de5?k=6u)|6YZSxBa@<+o%C8)XDb{!Ad3?F5@v*+d6w7aC>+@}RN#s6~i_ULo zK30ojihV;m+gCAs>@tTSC=RCWM z)RMV&Uf+CN@k>~JZ;m=2Z$1`(Ph^k35#2cPt~?w6+DN{Q-`Ra#KDO6lihpTh<6RQ1 zB4fUDV&mE0x_hsf_^~|epO4=^u{D*CtxZhvSrgwdV))pd)4B2~w{<`2>-@+(c26wd z;JtjhtQ_S!ZW$%g1W5a)Gx;8gA$M!-@vH!NxdDn#wu^)W2GkNBQWyG#^{5m|`{9S$~g5=CCHZ za$@h_GTs?)%f!xc`S`98Q><1xFC&JJ_5Wyeb0qHJiM==fv!i3tM<>3$`S{EcQ~XPL z?yN5{e7tUA>n|VsmWnC<4->y?#PIRQqHCfzMH?e+JL{+X>a+KMB=5_|`t$pFTk|{n zJyh{nyuG|7viHtr=c}8K?Sq(NV|Cs%V))ozcmD0>WADTitGCX3M+_gEYiILU-}YdM zeqQ~4bHwNaYuDLXEg#FZm}0r>Y<&CoU{p2Q*?h~#H%CiUe8a@v6W`z3pQpla9nbdJ zyU#^GnOJnmO+)>q9B*Lc?GuDmSjyt(=KJ0qsJ+B=)};?}6M_wGgU>gKwM zy|a=H6NRcm}2dpj_Qm*Iq}1Jwr_m=t%*O; ze5}7`B4^mV&FN?HrWS*(MSQWjb*|sFe7ra6e7yPCeD+6b=OvMxcK%WGvG^^~Rgra{ zHL>$vKE7?l6l*WP)n1)-wm$9oSiE}M5Pd&VJDqnnAD=m5ito>JXYYw$e>?xTzBfO4 zR9|v^a$$UpXFom z$0O@CPdV*;LG!VA?Zt?F=fsXlQkK~-gMTkeEjVZQ+#utJKG~Md~EE_7dIcvm6&4r zy(Y4sw?=nQY_8?w_l=lhbLniIV)(V@&enf0vSwp$oY?!C&$;0%B5}o+OlxsZNwDIQ|E_93?J*ev%bo&e#I1v z?JNi8#IJmGp7XIgadO7Tmrg7na=$fNB7JR*mI(j$#Ok+v>@E~jY@E*e-ygYW)SWZi z`T5PqmyMX>n%|-Lz7b!KI-5)R_^uICto_dDa8!BiyuSJPNL2a8tEhauJt`lIT}8zY zPAnf{_;{Jv{BDWV%;xB$6U$lo*nOhEC8~etbT&r$_={1Ejh&_P>+F>;KU+pj@s2!q zHeYkSHj)?X?p*cBulnqKL-Voz4o24G_vbRPwUm#IxkSazX=n8#hL2x7v3s?AeC3EK z-jwIg)-Hx$dFVXn=hKPX67g}Z&o^Kdxo}+?g@s7kl86A&0 zJ1gbm=Z%#Q#^e7tSq?>8SiOJa)k)!F>i|K}q2j(<0F_8Yl;yk^7{ z+q=%Y@@x!eOWyvciQn0LZ2YGqXY{P-@`=6w)#x3Ob^mbURr9f2iYYc9>)#(e9Ql@Y zzPkDNx)D>Xz1rCn8UL>)=9Ta7h7nV2FFVVPnA+o)O?+FP#qhE9|7qk-u#SxrtI6`Q zwTUU#zRs(9vA@o4vG@DN^W*tzKfNoyd17~>7(SMtrz7W6?%z1EyRLkE$%rY|wzIP+ zhL6q9d>)L{vhQo>A2c7oXT%g+YiIi?hL7z{=R?iMJ4Q^g`CxN;wz;bXPX`Be2%<9qkX$oM~vmllI-zQya~b+$fpI4!C(*tz!OH}n2Tq&_-( zZ$3*@>+bCAm5+@tH^tSSzdgDy>U?4I@hTEito`xmsYtDzF|iz%U-=eOe5!m~j~qB- zGcV1@|B(FF{PcM;GS_1B=)7gb@Nvzr*m^fb--)h>E}B@o^08Pk#oBdV@?8C4>k(6I zJok_D`PJz26N@b$9~&{n+I9ZD5yQtHjXIlK`S{R?DXx6*vH9u4netoBTsz;~eC#)a zm}2cWL@$mWkL*?FE1QpR7%|2FYo0rQYsB!e{?+xTB7JY3cvqf{ujZ>wXYJMCi=uNQ z`R#n7`S`*SQ!HtQcIgBUfXZl7KCbq~+H^KQ=Si;ai{3o(na#(0A~D6<%cF68`*%+4UHRC2#T0*hV*RNParRwp zc9!Gv@m(XPxaPBpe@XOQ)cOBtKK4#bvGyCHW05|WiOsuwye3+rVtsW!nP)M4tpCTN zqmgmE>%24{S6{`u;?>;Ng)fiH=clp!R17x$eUTcxC)z!+`YRvXD>23Dr?dW^jhxp9 zBXjAjZTa}6Bc|B;I_uAQP?OHO_noc3>UYg}ul9;p6YK9_bZN9HI%i`2myh)&rnvT# zkN<1bS^xI&-e_a=rHSRad@TNh(aFd-YPs`{=Hr_GC1GbleCO+%kAHu}6w8f0;t|8g`t1C%JnxU>@X^THJD=Npyl%u4zc0_7@F%Fn~RuY<9GIL7sJQ? zc7A*FvH5O@wndjlH%xp{^Ram6T}{~6H52;=l#ksHzZBVrPesp7{Eg;g{kucVLv8D$ zv-g)otLRXq|LxHdJw5(*zO(sw?T9JXUOV3qb+%{XPd6VMU%Z;vmpOL+c=NINXCrIy zJI&wDa$i2KwHIq||Bpt$5gD`dn&#uXM@+Hy_DinZD|;sP{+rS9$on%Uw!ZSQI5EZE zb^dwnx3us6Jc}u)&BfpzFU*3GYX~Yy8U+($N&u>la zz4Nw;+*@kB^B0dY&$Adl{+AP*Yx&q(#T4ti^O9#Ve5`F} z^HtwAkb1IT*7N4b zeE+ZLP0^0=Y&`GvtDZWa-h8b6=17|#M>XGK@8w&5{#o>niM@B;<+%PG*7=6!W3_M1 z#p?S|BquM6{Fdna<>q7a6jN;cTJKlJJL@g>x3j(0o`;{9cti8?-$zeG#m4Gf`SDGx zbI^Hx^YLSm`YhI8XSFPbkDr|Q%I0I^tHUL#emnoL`FIr>uh`$tJ)e8??kkae7C$qw z_r&+t-gn;Dd~7{pij8+LvR>m{J@L-wWB-jwOtJR9Cohhy|JcO0HXrXFF~v3h#`tfE z)I{eSn~zU*UzmTL$+IUmo^|oD@vL8sY>wO|o#m%|Y(8R&FPym6zb*cn=!~ed_T}SO zj+kO+x3k|2V)*#liPcW|_>vJ*Y%eN8m}2c;A6*sMQ_uEmiB5ICzS(@NjrA8lG4VZl7Q@HZ*x7jUBk%4> ze>?NaufP5M#qB*lFxnUEe@o8fkL10x-;Cws z+eS>W_G-->%+Z=U%YFIyT_dJgd;MFFbL3oiw*K<5|Fnk$*X?Ja_(b^RfIG zuULD1ogJ+rXQZ?D=6^C$*Jn+9W%IH4C90gOrOxKIKB^kq72Xh8*C!*j+1Xsn$8s;G z*gkc(?_&7)KTK?X2coKx3ns4nh>yiv_qOP~NPTp^qWSou5mT)F;m91HjrLD0H|1mb z6;rJJ*65ySiGFcn@8xe_8Zmrqe#XRW zA~n#t@=>+1d&Kaub#~s_e5^La6mOci@}r*Z(>tTi`Ys>KwV2{P6U(I-e$_!|XRmy0 zeEC&V+S#Yh$D5ChE2h|a=zQsj;bZIVY`lZRU*+$Ki7&`=`S@fcrnv8yy7${?6%`w^ z^C$8whL6p^^U{1=Ybmbzx>GKW+@GEAYCd*HiYc!4*Tk!PrL*~zkG~#Ot>Kza@%1By zkMABa#l~~qeCIbu_PX<5Hy?XX#oBgu_PyuVJrPR`B=RBa9iXz%I{8G{ncKXb7yn2Ked*#Cib5A{;HkM7d9Uo&;4#sUleK6+1ks; zSB{usx$V4V#PD&Q*J9&2KlcBr=1GoQRK|h0ZrL9~<8uy(3aL&Ozt-iCd}>TiEnB?{?idt{9AeMT>Yu}qtOy|Hs|td{%Y`(QGM4t>+gX`tofas z*!e0SUom2e<)!oQju<|EZPeL#k4EQ2&dX}z+nSH{y^4yLiS@THaweAO_KA1pS^f`1 z#{9~}+Le!eYsD0M*I6#a@NxB9Y(Dm5TjYHH>xspekHyQq`th6VvWdMnzWz2vYPhrf zl#h>%m}2?p{3j!ZkIl8S_T^*ayFZr5IpcMHVe_$C6;piQ#P1m~e5`+KULtk!7ZZEG zCE79mx-UA*rT2U+zVA2hKy*%o)lp~h2P0>|y|+v(KjmZZsaSm(|83Fn=<$=z zzHdwCN1Kn&88OAqMQ3M7Or0V9Z;8schR)V5o{#NiXYK!UBu2iSiO%L+K6ZbIDRwt> z)}Q;!nwQAC&VIX9RrxU={2X%E~R{te#wZ<~+B+jHl4 zW3*=Cz0JqJFk*`BcjvzzF??+9oewo1S1lHsPt8LvtQZ_Q;-Zh?a?+xAO6S zjFzZ)SJ>G5BHxoYPyCMN;}avM_aNm_3o<3UDWwl^YPjdQ(XI{ zZnfoip5xs))fU@(F~zT)_%BBcAKQ!0#ws71&-O?S>eJqK-r0P7c*GRT|EA$-ci+S( z^ISfz@s_YX^OuVEPV6r9o{x^|+hrukTZ>f`Ci?`VB>mW%T7%_FAxWS%?M{9Y8_x{T3TZpz2L0b+`^ zH~#v_I*(55{gz05Ti2r#dv8AK**zh)v-OpacSX-e&aXOEi=EY5`FQP!DLyC9oez!} zK2~R)U(tO0x)D=s{&Mk;qixYc6Yp<6mOC-U+IBuUV)$79+oO9T-?3%l4>lj0-x3we zm%d&ey*9G8&Rd#~tKNSauUZV=80oXvSe^eO&tmxa?ZvF2mHzr++@J@Jo53?J+Nc;vp&R_;5SYx&rF zD!y`J{cRfFmi+yB`(evArxG9~v>mugP;~{n`6#qu+?Et+UwjtDTtQQ}tK( zl6kx_TB2g}?Of|oA9CThP-kl`AFDMn#d6qLteDE}*C#f2F??L(FJbf2cjv8nE+4yt z#1yZc*m}kAvGsPA>+-RCLrk%=-}%)ehL6qn{%Cu|d)~yyn~&u}OtJQA(_QJEwRJwD z`B?m8k^PqEWn%5i$JVk$#o8Z;o{IeY-`VKAv-w!Piz(KAYg9SCcVe}=Hsa&YO{~4O z_c1%mMa>Ie8X3R%g6yhLJ(cZKzNe&o07=85I9e7t7F z6n`eqoz3T9WKP?n4HFx;{F;N9V)HpWvj67&-igm|KE8g$6sytB?;kOI{E4WuamvSA zMojUJJa@LfB~owhod+kjj`H#D5mPL`oez%~KDK`KUE}Jjv;3P6AFGYd+8>Ipikyv0 zCO+PL?021*;;&6?y&sAGJo@L+Eff1qT|Rzx#1wxz&z<#WeSS;Jq5O50oAR;v1Cjc^ zAhPz(k2W7${|(WR=!r;fI{$t1vHu<>rr3CAN0sAiCzez3eEeqtc%cOl&-! zIQ1@wK*F_{4}Qc0YAKcf|0q{poDHRb=n>M_VTrTYj|@Q~Vnfug$Y@_}F>c z6v@FVI%DG6pHIcVJW|7*KiGWyL?otI`-71=t|IqG=i8c(Zyzzm`s)1E5yQuyk2)W1 zKDIYvikFGaPc2>*$+3Fw?6*q!xYn~h{79ruJFl9LwG~smEBtg+ccR~Zo$Z4*d@R?U z{SGa^ev^tRzJ6kRO?-ckOl&>+bLYzAOD0xFSrKDk?ravER00_;{JvddkOQm#FxniS3`U&X2B*{C4WBefjvnh$)tD zeY@xEv-95Bd-LfrosYG6EQk6jHeTnSj2J#XGwS?D&BwhSPUcz7$ba#=iSHgUe60Pq zqgAv$GWX7Ey?pGR5L2xEwrE4NFQR~6$BQeF7Oe|ImA3MvP&ucz5UuRgHdHvqRpKU(AX~YyeTb=cH ze`L&iBHz2t>a%?8tcod?fAju+bZ#UUowqa}SN@BQZ$H%}&$>FxTlv`B#S~j#XKibJ z_?3~E;>zDDp8UDXI={2|*xJMt+pEs{6XOia$&(ZBY(8E)Vv4oDCfXNShyFWzZ|=^Z z`Tp05y|-UiMe4#FI@=%pJ5zT@#_g;g%E$WK7_Euq&3ro_Yd&`Wi7D1zK9;D~)A^C+ zW3kp;te?*M7Q@Htuk$(0$A?Btan&0io8JS`_GlFypIE+l=SLf(y5Ebn-w-X4^_fd& zXP|ss@!~vR5p{k+^RcnT6#u+@9!PBE8EY?}#rI6CKj(Lewnp}NiMB>q`_47KKIN?T ztN2CD#}AE|;`{R4`Hm68$NG2w9E#o))xP~hS^H;3J9BqV^igb_&i{VI@Uhs=a#KFG zZZSWN&AVdojuBsMep{l8Bm1;@V!toS$6p>X#cT51S$_v3cfmIz{dQKTt75X|BH$J&MO}q|FP(3BqvW!e4_c-T`Z>9`a7#rF?{U&JsW*Dx-9bF4?3UQeC+qS znBol+-#cRX_}x)w>)9SH!#_6hrsiYw6aPfyJ0x$Ny_XkbS<`zbHqY|0|2`q6*!k)F ziV?%d_Mo%*n}fMj4m22sf1S-of7awo>VIqWj!53z7oG2FKGy!~=(=bXT|Tk* z?k{^{UdHb1?kFFdgP3CDcfNGQ@Ui}%j;h9;rOx(I4*2-H6W`u^eCCKLHg;$86H{|~ z&BV1{aqbm4?0jkSvG^r&$6X(pYv;qw$Kv&A{TrjxCjNBuamB0ouSAbTov&#=zIVhF z8>9375yQv&-yYo(sdfLKr?YQn`FPEUDL#_t&g##2&eU_!r4x%SAFCBH#pd%&v?tQf zwu#kZ`FKwxrr6o*TU)J~cK;C^hDj(a=^0EH)w~Fko{ptLQ=Hu5z zVv4oDG5TIq^X}|Sm5*53Eno?jK2 zOJ}(%A3NV-ikFGskY_P`yepE=r=rUvlj|eDRXVG$ z^0D#NZ;kh_Czd<&;NuTYd|~skvn8h3J<{3Uh~eXBCN}@4qb0Jh&P`{vSUy%;Vv5yH zXL}*0YU)(yrS?}{8GCzFyiB}nyyssQJs5TNzU~rh+!MJEitT-8IoK2NajoC)y5rF* z>imn%#})5P>vws<1&yP)&Zd@MI&iq%SI-vu#zeCEWJ z-#Swt$otM}%emv@inkwoqcu@y`&vF$TVjf}x9$fc^>u7wXRUnv-Vsx*{lQ3GTi5Q1 z-F4+-`Tk~P%yrQX6F=8{{O?ChvAylA_Qmk)9CWtU^09H{r+AszdJaXa$UeI(I{$U^ zv3NBo$3KW(IPtDLoA2|YRdn{m=QSV8wU}c0>}=j*_}E$NY^?I}D@RPR`Q9J>e)K>j z|DENo{K~bMVr%YvexCKs$G1-WO!IN&_u}yX6REq-$D5DEt66czabI`dmFH`sekMB~ z%e(3y+fU;bS3d0FJ&|u|XLoh^_@)t4?2hYfKH4vlzP#)F&F23@SY1^=SPt}A{MCs+ zKVtaUe106s(Y9#K#Cw{L)s~pzWnya+!^isVY>e{%{}|8y^!w$;Jll`s5w^Yq(Node zBemK2Q1kJQ5mT&xeQC3Kyz6W&tgu$Hzq#bd~9uEiq}kRe$Pc0MDBu_U)g*t-WgdR zZI7&_v%9Q(EdIA5ztPI?ysi0IyjrQ8ns;aKJ-ZX-Nv(B$Tl2B@Vv6scSbs+%ze%k9 zB@=(5`B-0Kiq}p2(1_t<{qKwpM5{;+IvczEQ}N!sFCXh~Q*;l5~zb~YH)4vlS1-oAR+Mwd-&U&_bwvnO)LJRWVGSbu$e`m42K z-xljGK0NVDM+_eur?a(|k1rlE#qPY$SBw}wUK@2bU*}B?sjK5ZhxfJ^to{AbpGMmv z`7yp)wNL9OHb(jQJ0qspZ=KHiKRCQ4f5m%WeEr0C=UEIN-#M}QneU$Ae{^DXt1TZJ z|4<~)@@8F~t)+atM74G-x8-B~)xVKe;Z2d87kmF)^vcNnf_}51a zAM0N|?u&Lu*4Wv5=k1ZG=GEDI_o2Nu_NynprukT$nBwy$mK!mAd~9M~`TjbCVv1id zvH7XLC9*H;C;nmcv9*XPHkZ!TU+w7^^S*PBgX{niu1 z$8Vn4Z=v$B`I+-m(Z)!fbe8k-v9nvXRChr6@}fWaFz2fxXS=iaAB+?ZhL7c`v-vwecSSFVj!*3UBg2=6%@dnv`L!-F z#rChWb87AU`c8FTnvc!LJy~o%zPDeF^m}sR$}b-qqqDxsulu*=u|Drki^|83Mdjlf ze|uPstM$&#cKLPA#S||S-oIe^XWsLfAnqTpxu4hTdVPNXxW0krA>DU7rFB`MOz16 zZ9cY7WQvWqv$>Gr*SvR@Ex*d?Tk#9kr@!kWcaD0Dz4ParkL9n9mZE9?+j(>IvApx| z4E{}I9y{B+<>Tc!Q+!*VJ6l&7KHfF3ahH#^zY-af^*U={b(fE)NTztaUk}b1KHeVr zJ!eej#hu^zl;-0%&6#55l{*|w(V>C$|LI8oUmJaQ;ES4%)o0vSM&{Mo?`%JmkFAkR z@v(vJB^f?GFtEK_KGxq0qeY}2O9PwR^0EFt6PXWlt{Kyw zW%yY6b6zbR+F*AA?%@^R(2g!Ol4)LFKCJViUBVtb?WlxO1C-_E@9>u-N= zZpz2+j=X<9_P#RpSHAd#-kbZ%);cI(Y<}$DUykmHK0dJb_VlCC>mt7uJKJmJWA|hI zp2P>E^0E5PiS(iVcIK7uue|-Ik9AHuD_cIkByyIDFC5r;HTLS`wFAE@&-%;9+CLh7 zBDy%5qR!sCf0v_oM(Vde?J?hJW9WQ;^YQAODc0}K`YOY(HS1jSbKjhMDt|kFvH93u zmMLB{u=;*6+7n$LeQDsknvZwPnPPjT^9Sb)AFCf<7CjiLzw@H`_~uBa*j#s3-?Nc9 z*%ujG=cVRj-vXIp+0N!phL6>6zfIBKM3)Zi-zMc_ce70KH1KMkW%yYAE72m_6m1yT zelq66k$t^1uy^HSXHKSA{q~J9zbHCqVDFtT{ry0+7}%VakM-x3kulrn?%~d>&BvF_ znPTPlN6zKmNWVHeYvp5mNv7Dkbe5IjSGmq(eeSoa4;z2&o26Dq@giPl=SMqyY+Rky zXMBfd-`aMzmlhEpZyZ>i<>M)mDOP{&cWYdCd$BXyS>I*&*xBoRQS-5~GR4aSYv2Ao zCAu!McRKURufH%6}C*jX|E#r9)o{hcD?ek@W~=bM|4jaQ~v`5Pnax`>Vq?ETM1 zU!46-1DgwF`B>gwbSGUMoiXr{=3`}LiVqB2_4BKK^K0&oN54Ao_B`*6J{i3t+B2~E zDcQPnqHq^}o)l+{+{9w%Giwi>AmrzIou~=40h#ip@)B zXH|xezdW$^HqG9R`D<^=7T-6peJsPrwcb-$f316G`?q|&h-8YbVdt;pc@gokGu~Ny zS4Zv$b9~{z+w=TL^xf#9Xv@H7H6OeGWQwPO^-YG4)$hLbJy5^3>#TndMdoH>wDJP% zTT>ZqOv)BpyUth689p|*owfg5X+FMf&J_Pyo;$10ygU`1 z9NA-?|L5job0$-)y!D(SV{u1zUekR1U?fv)Z*=~bbB2%Ae<)f+yv+kU>*Zs4=kIXz zipW0e{BZNJe4Xd&zdccG?{t1L&-%~DwZDqbYd*FgWQq?Ae4_hBUQWNKf%Vth{lx8-B~_q|_ppRbTD(&d)U;YtQ+0?-{%MqVw_Q<2THiV(mQ>xf{)cyR)_dM?o zMaKr#M)~-*Ia92>`hF%l7`X#Ff4cctIhkVp?ELyU!^hP>-<TIm#<0+CU zuJzTYTOw_DwjSl>9_Qxv*R&V)OzUJqPVgJ2Be~Lde@ayIbADchzT^*_S_`v^D^Rf1vr*%=Sap$S| zxYoN^|2n&KWcc``fwi|Kaz@OXdFkx_C?9(#Q><)f-yW5ZtG{=L?IYRF%gx97>prxG)>VHyFPe{i z7iEgo-`O1WZ|AW*%kZ)O9f;13u8ockY@W-R}`qp{M zvkV{GTb;G9&4(g;*|)g!)O>7>Ws2?F&Z~Kr;bZGjcL(2oJrWh~8Tk4+!^fYGI=`#= z_`x|-Y;HT7XPKIFYu35e?~}8CZvJ-uZ1b@`$rSG!SbfI5h>l19ZD8wPK9)B>_O8F~ zqt5p?AAf4j6f3U}i|BpP-WOnJxia{}bH3R4I-fsh_}Jd*d}s6V9do8w|8_^_WJh%I zz>hW`-w<6K727`tB6rV|(X#`qUwnvOS!PUd zo6|+K5*cIXDbM9&dH312==;${1Do6OvGK_iF9vo`$ndfHJ-dTm8QEu@)l)t`FlUNi zpXbi%^Ih@ZD~$7ofvsoxxbpQ4v!^@XlxJszkE_4d?bOH~= zbl<@Ca`{-jGR4Y&FM3UMS9Hz5?t$|0@i|lc?L2q>$2r5t?~FQY&l#vYXL(@nozKJ3 zwb3O5dw(F>8X32B?`+M=#|P(3v2k}+mkb|YIk0T`*x8jS-ZrqhWcc{Zfv4tUdrhXe z=Epaoe*bs2&gJ91k?|HQzb=xoR_6@-o6W~t=1j5m?|jyr;bVR6{Eg=0TE8Q6_Obl! ztgq_e<2?gE(R_S=BvX8J;A44~;bZMT5*fEW^woi1*L=KV&J=IYv-Z9cS?BcwtAA5u z-`NA6ACHzJ?HW_(Mf36Lkxa3=I&aOh3?KLU`THXE7hCtvyXFiZYpb*R_DA}-6>P7&CcpO6fL5A zq8kT(WAkyf@89g7h}6~DJd}^Cy<+7bjy@hKYhQGBX3DSgBU5aSJD;3q=Yx+Q9QauC z@#%A>__;iH*0u~EPXpI@_$OMwhnkPwH`cG%SUNk0GJO2xz&~m}UO#7w&8NN|jt)fj z<7%Y7bE1<5mbV}D!FR*FbzW)yiFiximyh2%=Zo#7&Yzhxd~9wz>qGf?_nav{HP4;h zKQerL$-p0MKDK9NijDtUkv-%0sQuE}`$LiWyC=GAVD*)cYyRz(<;Z>0`KjjP&(4`* zzgIi^2FmcU`k#)Rl##-aS_Cu|&d7Gk|PrN58A8U7tia$TF^^@Uab#>Oa z^06}_Q#=i9u4VXGyPa!(?YYB|x$P`lJ~m$UETZGlRRh1h`PjExrdWHgjJ_T{8|@g_ znv`Gbvl`DDo*HSh^S7Ii)qihvAUZqRIC*``uZ#{3<6?e4_fy{}k!>#(~!~A8X(E>-+cQ!1j`Q_*mX|Y$?)*bpxxXd@L`c zpR193tMkF;WBK)wZ^o^Wx;k%aK311ZvGVeNA8AY9JNxZjK7Rk4Dc+Ok&h8Q!e%&jb z-_?Aq{r%Bh(Y|QMzz;SbADc79+wsuq0m@~yk^W6FWn=^b|`@whNqR8Iv?B6ft^c_h{!s&BxoLKL75HS_}LiBI{B-uGdP-WAiEhe7w{$ zc-NdS-j?Ui2j>hQYyaBly2#x5mULFOe7rnoijA$a`fiU-iqzwMXY*qow?x+XbpzLY z+!xg6Wr~*u9@kU-=G&S2W~3jT zFK<4sd!bk#JAZ1<@bR~z&gQy&d}PiPtH1M;bB2$9BkKI#=Ho}_OtJAZrc2+V1?3Jlmsu{E~tHr1@BV_e7tL z7SZ~F{dOxK+j}y_2L|3cXZX1Kdq#L|v>J83r1@B0W_PqB`q04dXg=OEXNr~Aw(_S& z)4=L3AIqEH@W<{rjixueb%g5)iK*G1OhQ1q#RozwF19do8we>Oz=VNdu?)!FxTRwKiWQvtn{{@kCdu-r0H6Od1WQy+`_~tpo$H$}2|F!ve zDK__=Pnk1(d}h?y7|X}jLZ*1rz_ng{Y<&A8`=su%&g1=NE$l<xIR^myew#>sYMr z&f1jeZFYX4_Mc4IY9AYq`CCM{N1q#5-Q{C>>+1ZPS7YmZWApJ1bEf#2Ja@ij&hYV( zsPnbW$L2z&Sl>I_zcPI6``o$4Yfsvn=R}>ozb-N^{d{6z`*kInBKP0&z`L4{|HGUq zR{rYf*CO+1?{z-E`S|FZDgJPtJL~WFql=;`vL>A`Z9dkfOtCfX{P8)%$Lh!S-BP6Q zoewu3PmxTq^5$uZw7Wd8Z(sRX|74061FLT((uV`lSp%ET^6?bO6yGth_NIuBYkll7 zW!6TW*EAnrGG~hQ@1e+<_8m}1=c)O4HLAX0dv}V8&1GkG%J8fH&QtTTvOlSQb5-@@ zt&#eRjmLfCOj^@Z2cDXb)g@D`{NBhNVK4uif&HE-A73?Rir=2+&g#<_V^{9e1M7SF zc+;FIuJQ4)`u0caJT2NY@b%5dpPw_u@5*y$^}RgOo_&AKz}hGuJ6kfv%G)n@M@!Mk z1AnRcxbpt{P>rp#f0LJwt&hGHD{uVf-CQpQ_FK1n{IzHi6+b%gzt6J_AFJQoo*Fqv z)~2&NrhII#$`qe6u=?z$3nG0`wzKl(;~jIRSosZ+IWW)D!0w{*v3)j0#n!I#&OFQT zvHG1IYj9;G+gY}JtY1|hcHfkbFOSN{_FDPaT$GQsum4|&{CA^U2bL|r%E=V34s4#Z z!^g(fx%L(xYu|nGt;jex4gBur<9&0c_^v#6-Z5wR*!_HA z^Rc}B_QpuRM}DID*j&gIn~Tmhes}WW=-R0Bb#t0)`a9bXGJLGR{%(!b zvvXi|m5;YXJELOd?ad1!fz(R8`yf4k9W+OVtwtbZ!&yb z<1E&nXQEr8Ba!wxYpZ%M$Sj)FEt<6 zc&xeesqW6FG#_6+XNtAexz=|P{}-Y?QRnNMkKGwE#g`3S>+gP9n%{N)eDm?PIa7Qv z&z;q0|JqOX*Ut_7-k5>shSr&ayIf-^zBjCRHD{<}$_8z|}wg-$eFG=jG<(rz4r-0|PJeEW^iD|B?|ZU{z8W1H`1feFYft|=J_R&_KV$po#j`e zMdaLBkIr9cJ~mdF;zI*l|K}p(o+4xDyxe^J$eby@HP4+-nlpU7H|o4-KCbzFENtDT zsI&J6qTSJ7M&`D&_wEmUJ|lWyVEOW~y&_Y*X<&D@3?Hk%_RXH~xsmlLe$T-2=IF}E zTt7MR<;}<2qm}4zRP)~Xj^<;1nWEw(bT%&7C)=Hu(;OtE?EtSy2K##nvdoGMPzJeM;ivdw)t4z8M`aG zCfYIZ`}=l3uQ{CJ72BV0jh3Rnjy^Q-+nSFTkxcRT zUVy8A%Go2AMV;$=&d27zvpFvx@0v5k_D5&qao;=>xkuF3dAa%6-6~Uj>%jW2jYVYM zeHS}h|MGE-*Lv4|*;!lVW4|q?s8}7HjmP@w-%4~~V0U2oSl;*0H_RS6G;r-5KGt9R z)1CQnWUf2A1Ix$q`tPhbTOS)(UFG9{K4*%r$aCk@=L{cjiaHxp`6ps)U4E^*eDN6r zn@9VBkB!Ik6zR8db+#7eV|z`e_@x8yn=^c@eto$*axU$q&ffbTJs2I2UNi9S=3{-8 zDRx(O)~*a6+YjraEz$bu=)iy4e5^nEXb;GLb>JJDkB`ln;+=W!T=RQHeD!(0II3^Z zV&Jdm*}UMWZOtJd6MaKE(k-gCQ`_0GK&za&idG2h@WcXP9wSM-+H)p^2 zq&#<)*T2)ErAS?!jkWyRFDvm5N7|VNmMI_mR!vdyoda8c`4>e~q;H*%G#^_}nPPL< zdEcDjW8<^GFO05?c%98h`S{v7Q+#utJL|7H?7xGN`rXky-+6P>*q z4*WaK$2EU7C;oOmE6@7F!!@4b9nHsE=S*?+XG?th>b|J6_P-U~73uGhfsMC(tiE-T zI_{nSc3$6ntc>@?-yT?f&if~#ha=~|Gp~Gq&&c-Uk$L6xL_Wa)26kQqF7oE**`S_i4 zruet>+*y70qkBYM8wYlF%Ez)Y#g`7OzDFY8j@3w8oo{G9-X0x~jzwoi)4=K|A1|UQ zDz-;E*Zh1x{`K>_&Sy6tt6TZvY2Z8ZT#`hm_TG4$ldB?SJL_-x`1Cnbd?3%Ax6T&gyeVyeHC6>*;=R z$4-$w)_J-4_~|)Qye`k3?GqV3)}B6?qx++q27X8Lv7Ah?x$b=SoZ;h-MV+;0JnNz( zk@@Y+E8kytkxcPj1A8aK$J4<3nvb>r;^?;`<2Uxsmoy)n6PaRb-dTP2qx;&o=GO+k zr}_A#Ia6%yJ0F`feEe^t&WDg@v-^qY);C@ub(r; z`nxW2R+gfZ2X^+#$2ZKGV&(6R_C@C2*gMOWk8hka#h=M@=f#}iV{Lcd)qJe|d!jGT z{`!G;HXqB|-&17XmIv1V^0B*Err0`kzGKet@oLmrdpzHpozWud?6<+rXc6JJ4{SZl z$Hpg9ymR0O^DM*1Re!Ovoohb+GQNIVtIqDy^0B=8{laJwZ5nt(^YQlRYtea;xqNb9 z_geYbzeQw<7XzQ0XBj@;Ht?64kM-C7RNo>pH=SS9e5|iB#eX#L59SOXtN%c>HL@n^ z?!0I|wzsN%d``58iq&U6PK%C4#@N~KhVrpCWs3EsbM>YAsQx{X--Dlz-ZilI{ru`n zonL$;T8WBx4qW}0bGP{(baqC{$7|+HakYO&d~>oR>U_NU_$za!*nD)hS7rFvUhceT zKGwc_dpUAX+%>TG>bN4Z_hdVJZ@=9a?Txk!tZ(Jx-9KDHM->wEclZ6s5C-N4pOhL6onXY-+bzY*-4kvBFUSAUC@>uhW?d^`=T zjqrDe;nBQmyc__HOJKk?!>SwX?ofmnQ;bZj~|E}n&=Wp~b`J9%;^5)~xXypX_h34afbEbI8b7$-2KGjEiLf<;;XZd)?oGDgb z|Cb~COdmU&i}JC#mMK8Icyw+y~MQnuK6==_E`!^hh5+ht3{ zd)>ernvdlVMQ@Chn+A5bmXD2Xii(Y`v-OeTV{6^H){T$*{J1;q9pf$b{-S6(T8U~e z7F*ZO@)t+1jQnn}=AFH-{q%fwc7IB~>c^Kw`cSOC)kvT1Df_AOXPb|$r%dsu2Ug#@ zXely3=Am=--boa; zL$rua9r(KDWA(`t|L(x*duwD4>?do{*<6>8&zv*G*0Qtt_--OSej?)IK3~q+S&_Lbc3wI^HfQ+wXw>=7n~&9Rzif%Fnx8Ms-zj=L zI%QycwtT!Zk|{QS$0Og~J<;g{+aKlQMI=+KKgMn?uZ%qVe(B%8j@-YU4>ccK6PaS= zjc0dcoch{XfBAPt+amu>rnB z<_sU}V`uHx`Q^Vfa(;{d&w*uS_*Jg6xh%itReix)eBQv(~T3?Kjg!1n8l=6AoIzXu1_ALqU1$$9U*EzhS%e5|d` z%I}G;kF4WG1AD(W+A_ae8u(Ss$MW{u6lqJFowZRuHm5Sh%Ht12KZvYd=grN>#wJtj ztaYxr;A8dU)1og#`qEi_<>O6rrnu_kSA8qt#hkl$V0%LweC!+D*}L+wZ>dc2_OSUk zM(4_Rvh(H5$NDK#Y^|E?<^_xbRB zQn&KO#?!g_!pF+5L{s#5^uWLen~&XhGR4!tyYei<$JVj4{kA{4diJe-=jG<(aeo+J z`FNT$#p>#;z17H^9E1@8VaU`m7c3x>duCW#Ses_MyoZ;g)MxC{1 z4sMBdM8^mIM)Psqv(Lv*v@F)G%gGdb*ZHbB z!^h6o6_GpMx@d2T^wYfk*1+=XBIWJn%LexE{PIu4ugUxJvG!J@)1ot@CkNK|^0D_+ zto(+^ouQt^!1ikSKMkwT`1I%e=>CDNefikgkSR8AopkM~i_EH6Py` zEuv!cZ#+*$OVQ?meT&M++A~+{Bm3yP1G{g^$Df}w#mZ}Y5#1BrIIugpd@QejyCeI@ zH@>sIQ9gcj&J_D?()m?$hL6>+zxL~YinP_)`&UHoi>$-Of$gR8@f67vKRdActd~2^ zp15XU<0~IuK4*%}V`pQN;o~n4tUY_>u1H&t4Q#yS;~&nMV&(0vU6FnHrh&KT*?9Iv z_K<96eJUTHH)o0$dG4$|<+ZPzeb(99l#iWLnPPjVv-iaJ*EgZ_UpF6XOQu*`o&EQx z>JL_@OtHPt*?4&F!XuG=(Rpq2@x_r$@kIlBcX7n8T<6=HkE?vK{?vWDCv4wriHfa7 zXZLaKEnIi)^Re}<4A$Pg(dKAFWNkW6&BwmyGR4Y29^D=3n|3?*zWp?;zPh{44O>6w zzgXLy|8maovGVr&-pHBSG4QeGV|n|^@<=#`Pa z@H@Nb%E#O0O!1mLcebZw_;?yv-^$0@e<-p>Q)K-*^N8>7>cAVCkFAGH@wW!HS7rEE zTb<8pKGs*6;%Q)Q)p+ps=)IBO-B(8!3~YYO#~+?E#kc3V^V{YOADb`pwutPzlLt1o z^0BicQ|w*mTjvZPYp1iabo?ucIMSy?);uoAkxX%o zm#=>tqR!s)%*k@JIlkF?{lVDdFyi|GH=$W^Bv8{YvxR`^6oo# z@1I6j4s6ZK$Lf|T)@JAG&lKNSe=+K8F3QLDzfAFc16Tk0p6YBJYp>x?MfO1P&Vkiu ztjD5lk-l_ZG#^)gi*?lT!aR=@K!Mf$Nk@I%eV#wJs2ojbp8&hYVv zqRy{tK3+sJ#p?$?p65lx$KM{q0!^U;Wp z<&D>V*4JrZQIr|FHS^(3~k&ekuBg$h_FsKZ)g? z=XXcyS`6&>WBJ(LT13S=2L4{2W%$_n>a4vlM%LWgxxYH=OZoV;Ia93e&h8``e%(*o z!W$yvw}(1k*?hb*XNn)qb7yB&hF|Blv+>mVxhH&QWUm$X_x`(tv3Xx?{GC_l3?G}D z&g#>jDSBr9+j&>>u{yjjb{?EBb8;Yh<-qFqo6tMwZW?$^^Rc{s*gw@q=cVRj<6n)6 zowv@`Oom_U*ZK9$$J&29dMr|}GM#_ad@L(dJPqtlmf>UdKN~4i=b*DT%g6HeU;Q^K zUT15sJRh$gSo!CoDbl{V?Ckxf=z>VuYX`oh`B?tD(G|0=?atO(J$!60cV09f|6wFk zym?^l`TescG7s+^*x4x`%iBLcj*dp|=gyyPKE8g=6gy{~KRsvo*mt4xRn5n5pEJe! z<9yVaULDwb-Yt>!*)j0{+I+ls&J-)}em6g7Mf%p+SuY>UzcpHltjo&4?uYWR_GF6B z9QZHi3?FZgjK^NohBMsR-Yp;N&muB*bEK`#>MFnLl_^$N=dnHgxi9)eWFOrVe&z z<>Q*av%?>Y{+Fop=bDc{I%kSslIPCmLWYmm5B&4Z$J)1NJ|0<<#lW>zeC#h3E8AH; z-uF5?8(Xzi+{@Mea`64$e6U%*?W7y++7vz z8QA-~B6skP=#GKiapmLfk@l>adH98a>-QcX>uYCT`Sn+(czmya&Pk2g8U9IZ4l0AK zrF^lu?X3Q#$oV}S`37`eG#^`knc`_+^CH8?>c2R;K6-8RTLb$&Q$F@vN2XZ$P0^K+ z-vZ{Rv-kG>uIN`I-}lbWUitX1=1lQlE!B!4xebylddq=HtzCrg%f1JL_-XpTC&rY0luk9aw%- zw1`fP?1#?Y?}?s>?vLCvosTsi%bQ1hSTkhe3jiG$3zWtFtEh6LV{QJ$vUzsz-)t`69e_5n```!56 zjlO4{Khb=A)to6--ujsv^YX=ky|+IXk$V5*!0%{2{@XcItiSr_&N&>tXkc?ve$CIt z@r-3lbk4wgn~(KLrugE4)gi;j>jzf0{HjN$xaQmXpBS(I+B%ud}%-A6xs{ zpLl0fK33mqRBQ6}f$bCH;$we1tE+r$uDmav2G*YOTo9RCeeZmz`MAdG-qVjGQRidL z$L3b1c#RN*KK{9ZjlF#Q4|As2Z=lZlvmsK(yzCj+c`hG+bj}njZ{6LYmqu#_wm;ne zQ)C~m9r*m_<2TKjV&yN4wnW;vd0_7!jXoEdx6=pKX8CxEWQy(A&dYh8qPm-mr?c^{ zM%P4VM;{y5`=3;wxv2WE^Q_I{-2?l5Cd0?Z(%D$b$FenEe4_iQ?xVBv-h7+eV*Ou< z)OFwdx3g^dc<-DkeoLM^+ov*oY`yBfkXs))PsRGt+1(_=$NFbK)Smmsz+cR>eZt4u zvtCz5=KZmOZ*4wSzr3}r_NK71>h;^Av$-rE-!*57{eJ1ZdCu_hB~fSnm48t*McV58 zWb^UyIaBO>cQzjD`A}p(oHnrf%g5Tcf9o#4bYOEY$H&_5d{XnVyGy3nI(9b4GPSSMVOtJEtqAQ|jqa6cR{SU;yDAIQ4Uu`}A-#M`Qtewn-Ct!UkAIq;sXGHFe#|FNs`MBz@GiI(kYkP|L z_{hNeUp}59nPO|(`9Pkhh>y1ptUuO79rm$j_raD(8T0y+Sl+k9ntmvH&%oAye{^Bw zjH|n|c`hHz`xa|kzaAcVx%pUDrdWUWM*93*^xc79)_m-Dg-r4Bfp3^Ie5`)!ZM+|g zjt+cN^YO7cQ@kzDozI^$e5`)!WKOKdG_bbI$MW|7&S+D#h;~NB)!!@P)&A_fulZQt z9*c^V$HuFVe*1L3sQK8s$rNj|v-?YikJbNpG)2bcOm()G%f~w+nPT(b`LlC|kFSq9 z8%z0E`}Udn{%-V}1HZ5NSXQQZU*qUp>oeuO zeemX}v$-iBpC8E-D{rs8D00^Q_r=a{Z$8!snPPWWXLZQ%vA%cya`SQZzs|FMb+*R( z&&Tq+BYV?YnfuPpO!;_wWPD4}7oydH)%SShcbIc>>A>>k9DZYK+-oN$p zJN+v@KJa_y3?CnkI#12V)?B9eM+57Z3?J){`{%{ck%-s1`uoZFPegBxI`fF{Z{_W& z9nqVj&gQv%>K2L`qtGJIU~y)Nv&n4-@1X8Bm&-DJ&HB7N(ukL6c?Ws27h ztgpoPSKm6@3*}>N%M@$7^M!MUkE?&hTbhs0nlr`P>b!Q&@Ug$0&4<09jJw(Yi|OpW z{p*f0f6D_KOZj-yoGGsL;@5g%cjo4(>Yu{)>HDJ2?w<1N9+D}xR-N^A5%IBe)7jX| z$5YhLmi}n(spzuEdUaN|eEj1%Q>?u6Yu)aSYJG~e+1b95;p3wNf2#S|yvh_mJ@74a zhL4S<^N!}@JLXLB_B`vmJy8AX?E6(dz9iE3V*TrUV9xMy?T2FXb#JsGs(J7H(dOfq zMAoBN`SsCrQMJ+e_07lfwWi8F5~;6PzdBzzXZTnjJF9OcQpcXi@956@Sw6mf&J>$( z{nd}Ezw^|5tnd0zti0bBb%r+&tbbQW%aMH`*Lh3xajy$2TRxtm^0BjDe%%A*YscJ_ zkE{LSI-h*3zu0{vV|))q*2Mby+gaY(d%pW=Y~Nm8j`(;QSbgT#TIjdE-1*t&V|m}3 zDUvsa&Ig;1wJB4)W8nMe3?CnlI=`X$So`MV!N}g&Gw|5IBY8hX`ij>KyrKD6`6;r- z`n@`Ejfao*wX^m6YC_-6*by!lw4WQvvTY<%|56xEz` zKGuA^Ei!M##@bnZ2cp_D8wb{J?eMW|=ck&Fe|gRntKa$C7x{*&tF!TzkKZw8ij~*y zmdH7Cmv@#cA5W1?@y>y*@4eBw=+5ZbfwiZ8Yjs<6?!d|)iryHV9+}V1#$7&sc+M32 zcU))fse@Pj?)+Hu@x_s`6&pk6ns0qvM8~7f+Akk#Tc+5%&gygD8&lnRoooId$a}ma z>a6@T(G*$xO9%GtC?9J>rugu{?hY9~R=@SMUiSIXf&X*!v3wt|y;tMK-uouLIa(W; zpU&I!Y&`mC9!B2Ud|dszFYN4Sqw^1&kIkV>vGwg-cL5*&K{Q3?@X6@lz}}mi<;Xc2 z*;n2k?4Q$N%$j8Ri`Ss1m+IQBbXel!HosFY>T=^|wV{#@s|4#GqtLIFy^W3@W zyEgv4k?&(??~Q*EIq$a)d{Xmqt$+Pnd2_tZ7v|Z#@Ugwx`Nz%2=g*m9{n1Z%qq5m`^IMs?~YanHs~1R`e{0SZ>!0=2Z};5o1E1M^tZy>KpBvcP$?&oHI}q)ToXe*N_O5)a4>HBdTh}Qv z|K_T*T>1FQNTyg{Iva1@e`~|9il(Sod**K`x-0tT!0Ia>%WJ>(XWy%MimXYoJGAqq zd7dIZR%hqU&BxYKrda#x+ZegK?6uBcZ9aa_oGDgbefFC@wQbg>HfnUm#cG4M+BvD_jmR%d7RnIHSo z|L60r^F__ach8yPzsqxH=SGH))o)Gp<4Ck;;M<#ze>`W3l|K|MBJ+6Oz|LU#SUWPs zPY$d;cY*!jJK?uj=gXUqub(r;>g}vPZEEK&(T@iH`R3!_oHNBo^W6Dw=L{d)Go24K zAJ_gV)*pLmcjTNo-<_>>`MCN&&3@fKGWhD|<0&d1>tFeJPc%iv=CAXbJj?L0{&&_N z^=*mHitM4zJDQKJy-e|C16ykuK3)v0z18Rok?;2H13%Y%TzPxOe^aQvRP4Py;{6{+ zZyVVAb&+#uj{Vl}yxe^J-Z@kJXr4P)e-`oAN5Gd<4tp>`1N`2tiBDicOZY&<$dwCfmi1YA1m+s zdpL5Ar-7|``FMNeJN8iYc%)os=dFBvaU@fG(!koUzSbTxhGOq)KdrQEv3s_&v!K4Z zf2V=fS97p2{AZE&ihpTf`TdbT+!d`Kcxpbb`p*t)XDRCJ{h`P=MqNh-{{80T^X5#k z^3KneNO|>l-rRgFe_vE%{^G#q%lP^DodYYcto}MD&R=KWzVflW-ze5Zz53X>+T&yM z-r4?AerIGK|7hU7&Bxla|7%X(I`EhBY<~Dyot^EK^0E6^rnu_oT^QXxzb|(7JL`YV zm$f}7GGE2+kL)vvBsMxT#%3~c=F6aAB``Bi|_K!W-+56fLOX1Ctz80T8u)1XURc~kY+24nwDSGk1 zvgKDfnPPqGtiE;8HIZ-H>cG|B#`wnPEOwSJ9~+xY@zH^woHKk}?QaP$MJGp{?VIwk z{UcMXy#4S`k-cGVI$zLyY%OGpmA^95UwhD4IzQHY>^F)`@l6A7&$IbF9Qp4OD+7C1 zK7L@%6sxM=&^09R&AM2m>Q>VT3LM(r8baQlJbj!f|nvbuYGsX7rhUl3{ zn_nGR{ra&hGH!WUbK-0mOJ`#!AOF#uDOR8Pw~p@boddtT`B;7tZHj&_a%XkcAA96Q z(G*#`&iYn9HjY}~8dLekSN&TKABfyu=8 zug=j|BJVmIL;2X=mMJ#&&g!$Cr$$rcedlrhjHl+W)={Q-&%o-pKh44Ak+wTu*?cU& zKiU-O`}%?1iRI%*=1j5j%G%4Dqw5Af-h6!0oGDiRvFM%AZ%1z$*!x#UABkQT*~gvj z>GH9)s=bc?T~t0k8kLW4i2hwvtUYtPB|0l|H+TNOnvZ*aXP(`y^2N?dXZdweU-Qmu z^KOc)IktYCm47I*hox&G(`qg>tuRCCh__+F8 z>|JMVSAVhj_)fGpT14vUd~5Tue~-u%EAOm)Fgh05Po1ac<8vaJ;#v>h?&wI=+1V%` zYfGm1#(|AZhF|0C>|0bm*1mbZE4nngePH7)AFErY_}c?pI~hK%Cj4bZ2~_E!1$@SG{0^4wYbGJO2d zz_R6IXHBM9f1Zxat9GqfXY1peHATv-9oSwiA8SjdSoxJmot5isUdqR7BIS#f-y1y@ z>6`WFY~9Pp+LtLdKJU%*`bb-yy?4I0M5jjg5B#a-WBL0ceR6*v8u&fU$MWvSeUW~f zi_Y3EAKP;>#pbcI_r&*C{q~_f>v`Y6WFle_-uv+x(f| zvj*1B^6{N>rnu(Ey7?VkXR6p;-dTAWK34v_k@h!4*1hvDH6P0xPu1Z(bk+}b^RfCm zA8$T>!<;ErzxDq6=%UEI)7gDnKDLKsioZUv?~x22``cN$@=sL9xp`kc*1vB>&fvP} z(t(Y+d~E+XGs}^4Gx8P9$2;as@#Z{tR)-89>s#lo&BuQbnNQzB`Aq{`^YZcQ=S;D8 zosCI`kIijo?L9nu&QiTEwl_Lg9ek|({>UDyvYj_JA8VV6Wjjyvdp_1q=keb==1GQM zzaRA1nYT~24eZ~8<=202Sc!K=`n_{hNSf%5B4kSTT_ zcQ(h)Js&R(>>QSlkIk84>tkH*h*P7wFN&4zEN^_~Z)apIovlUr_;4gs?B48bFUs(- z`k#)}sgIWpygknsM;Arr<;MeSt9-1lGQ}r4Pn+_duf6{|@M+D*N9RoOO?mF@yCK8J z)~a)TPx!dbhy8F(v>bJ=_t(Z(#y;+Ree<#Pk|{Rs&d<#mK3<7Bn_uU3Ut|sJr_S!C z^6?#Wruh6kch-OR>$=EyMO&Tih4OK&&-1bVRt7I3brv5Q*m$b{*M+T({uevzouA0F z3?Hkz^LLt$wI@^Tj_d4OFT=;?!}EEOat8*kJCcttpEJeQva>xa!^i6FtUYJtf#}TW zl!4#Wd@Qf+GomArz1{ien~!gwGsVhV-&>*`k-gA)SM#y8ktsGOoo|~ne60RW(Up<; zTpsws=3{-4Dc&;hhB?E>>Nk(aqAMa}=&Y~hyNS38UMk+=7jkE8b@bmyL_xYnPPqFtUY^VV{|b3oq_i@AIlq$IjDL% zzpwfD`bZy&?XAu~J7@S<{nqnvv^G+AXYcQg+}+-tJ@ChxkLB-+>KvGx&X4EW`QV?3 zm0v{eEPed;z}8oPr$~Q{t+RLK>0db>tf&_ws?w zRry#}rr6wep7Jci$NJKFL-TR9Zw}uZJsNfPUj46#UKBkz@UiA&dF%6JWUfY5clp@+ zT2FtsMCD`mNcmX(=6-kNUN|za@s^LjHfM^Bue0AcGJLFl|J_7p5vi;5hnkPyF=vWD zljqLW-)YVnTj%dIAKw_s6f5uipB|Zed${vAnvcDcDP9a*<@wmUb~Xp)<4Yo$V*N26 zPepS4&h}pU*c!?dEAO0Iw=<*123B|ZcxlcQ`>oKq=0_hMiEfQL+biW`b1PG|aYY!Av5ZyVUyWcXP9Ux;e${%YXA$g}z4WBCmc?_WlD4ZODb*xrySK51a} zO_9F1k2Vf$Eal_vk-3>7d*AP_&eo=Uyd$dLX87i)e0(S>AKws_kM-}=$i6l2)~EAI z^H0RS?d4;t^IPOo?jn$L-Vn@mnq&n@b)|#k27YR_5YuXmFuki zosm6tIGP4tX+EyKSNuS{&gwJX+G9Hh_Ff&!k#QSO=c)PF8p{+{`+RJ?{$3FA)YbW( z=410OQ>^aJ2j&bPZ;d+Zzx}E2hofr-_H8O3dr!qR{wZGdx3jyj{JIzQxA@q=#(rzW z$43VKar3eEpN;lK_Q-7mTf6dW-^vu9Kd}1Dh5JqBqJh1y{dhEdRiysn*9|Pc5?QB3 zbZFpOZ~N}d$ap*dv*zQM&6(oU^W53DMTU>fVP|t+KK7o9?;2SD_ebst<5X8?b5%Ze z-^diZS2}B3hL64L{LSX$56zk4ujIM2{^|dVBIm@~bpCqtv2~Iu_FJK|HIU(BZFTm& zD<2!HO!20Hx6T{dAT(TZi(oy!l>44@ZvW6`cxY$1OIHE^^cG1Joq=Vdt-_^JLl!&KaQrTxW<2RJl|4l-T83y zapnD9v=;VIXYbuF)yEGGyvVb@^YK*!8;^bN-1`l8eBd88AAe@f6l>r4Gl%+S?46G^ zAFE%c*uLznzH4UBm<|kF>%{N-bzPpfMC+r@zSrgB>*h?cad+M`XZTou)Td96Mb@jc z_qG2%6n;bWR8(vXo&VLG;bVV0Z)!d^M(>NY=i6k@IhPv;cJ|B1?lPHT>un7_5SbG{t?$AP^o|3qx= z%E$JNd~wY$A8Swl?uy)3zc}!*=41JvkKPq+i&h4%`F8%)YaTnF(|oMH{n5Ut&QoW7 zDj)kcIZwsL)!DdYe$sf=uV4E9g@M1+eEi&;Dc0xC@0c@u{KlxW@#&Lxtc$*O_Fg~i zZ}-SF@IN*mpC3(8vH4b>r~IV@Z)iT2m#aB_U|{FR{PMB6?7Xr0*j&mK8;|?-;^^+k z{nWYM>%$b){aHNzdrMA+kL}aW>hpcRHq!2W0~bmPGP(0puP%M_dc&h9rEK3*NzyYlg-IaB=lJa^VV z`^&tWhYt>HKiSvDt(u~gBUI>ju`J+K-#VJEKKZY)(2G`_8E5>Zh3>_n|$g z9ewF+Jnn+~qot_kN4d zkM*hZn&xBu^LxOUebc6a?a%VD{A%=6bWil@7vMWv20IhV7VCTGIyZc*z5S6jygt(B z&iYn9w%25ecMQCD&hWAN?Zd;-H4(qFF_+)Rzld+$jHk1HmtSL$Db}9*;fy(VWME@f zo{zQJS@}(oIW*R<4}5O(@g;Mn*qA#jFT=<7YG?l)wR~(WGR6ARdF!0v;~KB^kn?P> zx!+c!rGdS-9*gLU(U}9E-+U~uo<(F|ym4UtEgzdRnc|NQtiF|K5m_^R=&V2GWB0}5 z(Q>5Rx`Bpw7S4e5`-ZM*9D7;GYGuDlf?CS>hzWQujCr5Smu=nQMnV2H=bY9bZEdRc!&q-%vt@**u zkohTA{*maW$T*J={GXeTADc79_S=P#Z=iFyW8i;mKGtWMV&(1O)o2l!lg_?5vW$^z`sr|?N zdDUm0mlq}}9VK)|ZK8xIy`8!U9=nEhG<6$eltg9-wzb2g%TU`*>a5s|a2odqpt3bk z^~ZFYu9viFm{PKMs<2wz#ST_g9~tjfZ#b@O_IryML&8uI;~5k-C{j=i|-C_l``l{j(nFL%$~{ zKHq$-KWqDJbUO0R>-^g0V|ndbb7#g}JJ_FHFlD<6Be$`o&#*ts&6&c6dCboX%rrz8EE_uUg8Za)6LNT%3&s;AmH6UN@z*viM&UZ%Ll&&S5&efey(C%Sav zZOzA5jZCreoQTZZKHfF4-+$#}`$4AI{_ku&>aru+92s}#oz2HJpJLBD(;thB%k!Pp zqI~Qu%M^RBbberD_*nZ-MV_heSZC{6K9>LG=@n>;9Cbd}d@S!QTf@_lcS&dcmyegIzi;$WKDNJ} zh|Wd!i5hk`&hoLgWQynUn|qDF>Y$%ueRn>X>#7^Jmt~5-II*$F@UdEUHXdVpF!JAp z^xe6}tIjt@k4Bw+pUcPc_U01VFaA=o_B&Vqp1D2pKJ9$C`S`I&rueyuU!7|iK0Y(C z{tiXXxph1~vHFycwIx&R+0J`LhL6>{^N%$j*L;_-Iy@eA{zUV!wUsHhHl3}ROs(0b ziS_6GVh?$*dKYxw(tP}vBU7yH&el(ck9+&Oa&51ljf&Nyvv;8kAHQy5?Kz*$y1%C; zwyx!4ZOIg`PrPqr_;{}WOXDq(wZIQeyubNaon?x(XOHZRJ{bM0iQQKx_jW|;-`V@2 ze5|fA#mmInlHp@}yz|$akM*x!&Xj%R+0HjMAHQZ~iamdQc2NyMfO@}9`XJC;lG9F_SCrA!~3IERD2-(J<*=1_Ic-f zn~$}xy=xe@~T-5s5r*f+a;Y+f?O=O%vN z$nf#`sI&3kAL&ya?1j#1R6aI-nPP2r*539=t(WM~#HX8&Yrg7XE}NsyuV_Bj{wgwt z6VV?}{JYJ^+CLesqHU3V*xA`BAOB$_Q~dK2>)(02IWh)&qw~v~kG&&hik+Fxo|WNa z?JrT^L!Ix+z1nB^!AKp7)v)seBg4n);r;k@bTqQoo!vhaEm6&{v%bp5-UH@WY#yEW zjSL@~pZ&Hw@|@o;ot@qCvAp-0HThQb{)w$q`PlxEDfYbjEm4iTvp&klmqhw6{`(W# zOEP@?>WR-ZAJ=?;G`uHzH0o^bT=~nw*1=xy?EaIHHTiU8uAQ}CK2`^r;@3^Ay(JHz=+8?c=>m&S{iS<|e^<4NZkv&~}W@7oRk$LQhyiYn`*?es6>fcNF^-=jR z#=P?V)!&K8m|hy)GO=2gUv-r!_73c}+9#VP-qn08zdfoNT|BY-{k+)Y`m=7> zedld0(&y(Ue!ltGeJb`Y=)8>ke60Oqd+tx8B`VfuXL<8C<~`A&iQPAEb9V3a#P)Le z_}Iu4n|tS-Bh%NQv;NeU=eLf(ov&^_{wL#p@jG(eS$ijipou_EY)TSY(RdFtPE~_r{*p_H|M5RTE!1GJNcv-r4@y8!gf9 z$ZzM)?!P25uHTC8oY?*^A6Na1XGf$ioliC&uOgXZW9w|ptEk3&aN={hmf_>ypV)Z3 z&yPlLi|nP&&QST-Zw{Ga&%3s#>|?*BJG)nYdvb~F>$QpPpYri%N2d5o zx$gX9Bg4nmrL%KdK6amqjpwoGp~yb@T#n!I#zLDW$?SClxVB|UP%Fbt+kF_sTtews;*8X?f51-BR zwKuT+Z9f!mo>(1Z`1sO^)xUgfe)mV-x#qQPVl^!v%Rd%fADOH9b)M%}nevz9JDZyf zAFoZkxA}PM$P{}gb~ZlstbZfhJDm^adPl^^hbOLj*i)yXCF=Y_^YJ~=5*6P!agE2E zYoB&@Zp*JTY<-GPPi)-8_xF;Cos07E#>f|O6U zKDLiK`<|7Lz3*j;)vNRFk>O+StS;cQB4h7tKa`JspYD&G zkt5Lq6W90a?)V>#jIZ;5YCg7iWQxCcV&j$JW8+oVW0CjB#S&CjNuwV|nc@k$pXXpUtIwyc(I}7joTMd+X8JsLpif)6K{8 z`Cj6ckF_mRtk#|V8%~Cge`(^!nvY*SGR0rdb!X%E&geDiT=lAN(z}!Gd{?eN8}YIC zb!THOA8XHF|7Kl9YTbEP^RfJ<$R2lIzdf=08__D-`*+~WTLxRZRaE@CiM6lYCGwsz zzs{d*K6c)W#~v`RCno;yn~$|`J)AlJE#apoR;%)>et#XW{|4ynow+%39Em3_3I-6Vh z_~FR=u-LkEHa3~>wqD=L{WnF%^DibgKl}9~(JGSZY`>L{H$^hviOsh%*nFMGgV7I1 z#@U%yzQ6W}OtI&km-+_ZGx2@7wrBYGV-tH9m5*zE^r3e4N#`e;k8c^7;#$9J<69?t zwe#NQV{0W-Y~ObN%*gQZyQ0pRjTBBbj3JwHE5D zPkXm>_0PxhpNqa4-4&@(XKPkOo1)IX7v*Dl`^TBvi1gXn8kUcD zk4&*ScHTKMe7rB}tiLCt7lwaoVzrRx<4;fQx$^OW$azq|+oNBd*!}yXB{FY+so2~) zJA3Z)@dqY0e*T$At+q}4|1=-Ve<3nHzYDB)=YQOMY`n*!Z$;|*rHSusKK5@Onc}M_ zzH(&v*qV1XzV*mDeJ;9ZVsj|J=A$;=NmoVM?0mZU*nKLtww?9uKEKA%+4!ozyTjh? z`YX2YJIj0jS<{2ju8Hlv^0B=yQ+(~j+L7U7?OR9t(>%QYI`{F~8#^N7Ew;v;<+cB| zXmj+?#G9IrFCLjPOIpDi9Fxg+{?#nkxX%~&+YMVh}5UJ z>a&V>Z}iHjbKS3+`R(7?T-1+`FPhl%Pey90-(}(x&Bw;RM8%%#?4ArCZ%k|sudAZyqwR@&o>|MADQB}kY2W+!c(jUK*WTG1_N+Zs>>b;=>a~imUiLv}ZIzF;?|bgu zWj(H)*nNKOG4IpPYNb6sUZ40o&CfS#PvqO&S&hrbuN|4<8jpE<*YP_WL-}~;$Q0Lj z_*i@TUn1*v&>8-z?)^XM3-F>?~`m*gQHLn+zX6JhAg!KGwgrSw-4a-_BPy zA1{$i@jshbTT8^Rb~}5v{Ayq_nw`2 zTl4Xsj!dz(JJv^R4SQ|3Me>AbSWcYZ?#Qr^0KGy&9(bnj6 zbo<2ae=E8?s_$&)N1Km-BU(kp@10m}W%&5x6B~Q^_@R+0HXi54zO@&e-Ok=M<=1;h zrufGuuJ#^}zdO1z>Z~5+V{0o@>@0S6Plk_|iEn8>*1y_YQ{UrzCf?tC{5vC4{ENBn ze9g%4am~-3^S-p!o!zf>eKh>8XcZNopV->V@bUV@^*-m<``p@j=lcEq_KAJ#%E#_g zu|7I$*Zu1I#rpd~?teK_Q+;z=ZcT*m^sk#_adj+b4G4`YzFn{XQ`E z^0BPpYrQm$P|0te3nS=#))rgK0ZD& z#Rqb&@0#OZPOP6j5g(gJXZ`z*pN(qXoj=ulyggEzV$bV)iPXov&h~5h*xr#TzJKDc zj0_*YJnDR^`Pi6citUlk<}AaQM+rr7h^Tt(`tt` zQ@nX%?fF*KH}RztKa^|Z=VSSAMz=)%#~&V<;sd$1|Ga~ritd|O`}URl z_NLzxoo{PC{*93-_Wb>kHtaL+g3jJU*u}E`A3?M?IW3DwdrimGJI?;JAa`0xW;GipN^dG&e|v+8^6qV zVtb@AwO`cBn(vD)pIGh6$HwCw_DJ-V$a(0jUbROz!e=9MEWUW+TJJZd&aqnu8QoT&VEmqkBv>H_zxyFU;Fj0$o^iNSYPF1wU;UO&g*P^Rf{9x zcSmYe?EVsIQ@?8yf3x}6+RGFloA|zw;o~<%oxk0DZ2U6C-VL4Y4;enT7dvaa{OYIP z+xl0}B{Dy?k?p+Rd|Z34SbfaZvsK5=N1Bh%M^#^}zw+_UsC-=g73=T1$eFe8ovY3l znvX9UnPT(xzIbJ{iu^w7?0&VUPPa$;DfZ6kEdR+!4ZIg`n)rD0vGMPX)P9My-PwDu zeEdKpQ*5m}e|lv2*m&-bz7QRXmWeNKKDK5{RQ&M7x8_=gj}K0Kq51fWBU5a?o?k@| zMaJ3Lzfa4@^44S(or`u)d`t7O{CZ?h>2ue_Uu!{BKk@=BHlwL>Gj zGGA?VHjeV~xsfThZ##c#WcXNr_Sh=2w)*X?9_8atM>56cr(R2BU!0!!eDksAWQv!G zz1w8?*xWj=Hy>9mijBv3)$sO+-}&a|V`G*n_DpBL*Jb$F+3W1wmXGaMnPT;|N1O}a z^h+jo#>>a%D^qN2onLIe>f{Vq`&UlVyd~9EK=9Ta7`H?BE@qBss#`fK~^5*$?WUV@TPn3^qJ&QfBey5|$#{JG8 zZ9d*SGQ|(&y0iXe`1tU|)t`6L5`87={Kn>E`IFHqvW{<=*!`o?&d9jUuk-fiWBXS| zpASZdC$?VYV{3mnD&9A7&F9W7-wD-}yxI@m(WRd@$FY z9~~J!{+ChbcQ+sF|Muw0$lkeaVq+;E`!>oHd#>}jk>TU#qRv$hXUZPacjp_LkL}0j zBYkX*)UC7jHX`qzZP806{!H_+y(?2(y1b~c~#@!?3Oc>lyTUjFrw^VC^w%C9=f6xaDQ#}{K`Eg!#mJX?G)*PZVj89shr z)Y*9d&q$m4ymsPk&BtpaQ~Y$UJ8NHtkBz0X^HDy2W@L(u#~S}$#B&xq?`S@@cV&uC zPkeG@__*GmtMH@IEm3Ffm5`Pd$pDSrFJ?i1hN+7C4c zb?fY%sVzP}J@M}}A3GZ|#h&fF%C!t1Z<_ex=Hm+^Q~V>j?ri+l{di=5ymjJlH6MTP z$P^n#=le&7kFSq9d$*O3FO9B`if^CT_}&!lkIqG3pVi$HZz_e$~_boQFpv_3UiE#`1&F_eZYld>;yLiI%AN z_{7HJdAYxg^x4_C%g5UHK3F0(xn$z~&Bw+oQ*3QJtAh+5t5;|JZHj(>_%mN>2M3-=@w7a{YXy&#y*%CRUsBvAprC@jcNpu}t~+ozW5%d)~9pMn4~|Ccd}% zSZ);+d*1iaoIV(-S!egRMyDdb<8Pl>J?uaGL1vlwzUE{3FEMjc+5erq1UWjWQwa^ zhvFZNocYf0Y(7>Snc}?@YtJ6}P_#s{o!6R=ofVm4bLnioW%$@ybbeLyvHqRKQ_<;2 zzVk)R$6pwkV$XKoGBSMZ+tyis>T8WIjm}T}MDwxn$Q1wUiM6Nxd!oaU_3Z4oO!@el zNT&GvC$4(j8ed(ni#j`7<>Mb5nc_=w-T50M!^hg+8!gd4iqxpHv6Wxrlqpv0&IfXR zI650SFZWHXzvIy=vTrV*_^+Ce<#$K7M>jTGW1WBK*SyVrUCy@?MuAHOYiqr_C&E~J8RGW*%STO zNPC^PH6MTP$P^p@_DH*)v!R`E?@#Q$^}Q=vq6-uIOH zGLk9wZ0DmR!^he`8LcAE{ey}BQ}eNU$rSILxYnDGwZA`lH2O&7`Ofz?AIooz)KJZh zsq-Dp$Hzvd_)xApdsc>zeMdX{mXwcg9GT*({}SKcT8lbg*L=J+k|};O)w z?_Blb*SI==q4`*S%%j*iJOA3q@bMi{XKPhH-Ze7CRj(`J+spdvT;tsve-%9ub(Sw5 zYtMNxX4l&%*51zO>gcVJYxP?q=fxO0|4j4oJ&{bYd30VM89uJPTdY5PS#)Le%*4iA zK7P;06u&yxoxeUZd|dOnHeBbw^OMcT+FFZ>@0$3*k>O+QACLA#uZZ41@tw`bpBS0q zZ|AzR_Lj&Vy%4=?VznqA`~TC(6u&UB_T0NZ+8upzV(*&rvHc-aY~4Dmj|?AwaAMzp z^0ECPQ*1mx6>W;NadP5nkB{FnGR3zwA8W7gSMR7Lvexy!>U>G_@ePss6l-s9bYFBT z(st*i`PkZ5|JZrkh>k`FqjMAc@9pJd{i&~7?2PJsd?()8GWe0mv&GtbN%Y+CovqH* zJ|D|__NOD`{@ld=T~a>&ha*$$`8P$|BjZrJ&P(&Lcaco->50{^?t2fvbKEaB*3QnI z3?E-Lv9&E9FOf{K{;Z!i)Wo`VHoo$)`JRZbh@OdlVB(K8A6tK!;xiL#??aK=sq@*1 z?Y;8xj*%($TxWBU;bUi@v$o2|)=H+>c)TCgcr7|Pv3mVxWUp)2yP`9%e1ESSnPSh| z@84;?Zpyt{FKlkstJwIA_07??=-|Y=nvbosOtJT6=WmS+A6xs*`m-Os@Aa##&PSS$ z%};&R?nk5D6RSh{cztAw_vN~?{_l_MIeTO8#D|)X?NOQH{`}SP)l6H(cTap_Wcc_~ zQD^_gEFW(gnc}LKv3hr_hw+?>>?yVFe5CpKH6v5(dHc(rcs6?b#KuxS{`HY5HXide z9&_h+epU0ay2%vlxAPMt!^c%$W3)e3QD^t-yxEI>vp*gcAD;Ntxt8JMGtuFwSbNUT zdgPq``NS7DAHRQOieHxN&NaTZ_?si^+4-M0AA4WO6noxTULxPw9TTf%`S?GKO!2?Z zb!YAEjh3kD)_H&P@uQJ?7Jqo+1G&~t{l4^_@4O|~)`E{WCN>`44@b{OM<;ex%dc}Q zQ~YA*S$lrZY>NJyi63e{HZPfC=cDs)=h~W>qwoIdiOsEiyhJj^YTa2oOT@?aLT6t2 z{yNJt#mmITSDtsPvnX49cH&(l!^hTdBXWHtx@cnUpNv+~ebJp0+gs)1FOE#H=hq`= zX6d;h%< ztw+|XbDcXrzISAbJ--o||GDUu6aUlZV|n#-UXMr4W9LoH$8Q~(V*9c4S4M`9UmkVV zpMD;W4n}I-*}9aE?PHnZT@!2XpG5Zdj>!J$?7sbWS9EK1dg5<4A3r%V#T&WqtTr-y zY;8O5Z$37Dnc`a}Hom>l*P>I=GO_#mt8b8X?tDDgOT@=&+4*4eu{}}s#=jqxkM(Ch z_RpiyyCy!P@U)}AriU%uPUZ0Fx?K9;wh z>ha~sGo6>_V|n|p>gIjWSzn&#WAFdYp7*}p8ZD8zb+%W^$L`4#pPE>EC!%=bi1R^6^JTrnt|~KD#F}*JAbPZ0s_8yfLx%_C`zOeE3Vn{&u#1?jN3YF?RQh z)xNW_$<&%WHL-EY@bTe^jqerFvFIyerawvATAy{@)ybTXZ_=?5vhw z=i7XrjB1@bn?w27S}sxXCnv7=D<5AHbvC|}(JC?yzmYq;|INs^QXg-cSgp#(<}Oq0 zH&y4uxt8H$?VHc0NKS1#yDzWC#$UBBKHq$N=g1VF$#rM#si!@x-=h;-pYrkDBU5}h z*PZVe89x4tsI&g;Kks$xd+EeW^YMvDrr7g5^M7}AX5#J5$MWju416H^p^4o;8LcAg zt&W{P+kEWb6f(t^PrN=de7rB}tUvYK6Y0;j{cTU}h^%dA_g!npy}KrUruq2&BUAjc zTz57W89vr`XML29)mf(as)?EJ0HlkI=(J4F16^q zG#?wMO!0dsc29;7dEyT3JZ{;l8I#7CNsFN{pF_jzaSeJFDN&Hc>8 z)!!0df2X6)|3mY!ymnTRyxMkNZ$7r4WQyN5v0BOSvG(m>XTVsjZRe%=_}3zt;$NIt zon`pA#&1vUjl6$5-`0G*ie!p?=Q{7t^(x|H?LQV-+aHfMPwc*X_20L=t2)~+>dVLS z8Il#u#smI_sl+T=m}`c5Q7t-`;%uo{=fGmpUIC89u%v>inwaWBnhB)}reo zXSws9=HshIrr7iMM^%q{7pc?Vh3&a|7TZgn{Z3r(1sQA~cm7QCv6{*h8?Qc`;e(O; zo!x&SvIfTGUC?=HK6W-_inmOBJl8UOd>}I3tD~nPd%Cm!<(J4lS(|uo^YNKTrubVE zpU?G~h>y*;^Q!r{`hPfV%r``x?WOYZYe%NIo?qe{|Bk5h-)lbpp-859^TgUy|Ei(! zcXr?V_jF_oYSH-%&3`dAzw+@nM!vY_b1ME4sdHyzDIY%`$rOA3T=aX9bK-n;-qU=% zZDfjX%5`V$T@sn=h3NAWyT1`#5vjx76MGkykL9a=uFsGA#ro;&-73S!^*t-TsQFm? z=DbAqgZgyVPWjmS$rO9OzhCy{`toQ!!fM&sT*}8sN2XYPJ0BbwJ~r3RyPA)UM}JpG zACIg-=f7?~_T7;wwl(bfW%E!MxGR2XMyC!!3M5K1+Z7+1*(R}>I zktsfs>(1sb!^hg+9%=JJbbey@y>Db??1|3Sqhq5xHCiTie_QmKXjA0+zeJm(%OkbxyfhzM!>TV{ ziqR)H!r*{XM%cIzF*|Q9hPG5jjtFZaY8Ie0)Aqr((}P8{HM@^Y)4Var5z?k4&*= zJ8MU#x7qpj-0OXLw)(}!b1G7U8zVL8Y&~{H=6E6c)rpTaA6Grq%(|Y8I(t`?U+)c> zV!uB-KbmW6&&MB_Sbv^hMee_A;`7bNPmE0QTXNm`wvpju?R#H+H8QUCiR=Bx$M$h& z^|SBP??|MEo&QDi@tH`bxX-V~w95TrZFPQEu8o_Isq@#HkG21FWY1g??VR|T=HmmA z?~-TkiSC=&yRUpKCsXWR=N}juKGy!B=(5PUStj1wd@Q>}#h&Y|jqlc;`P=hrk+E)_ zcu({3RaeKN)_lN9S9bkInaOkuf=IuC;wCx;46e;v1Te4@WY^p4Zmd=)UM<6RS=6 z*!s&9f8WH~dm;L>=mU}S+WCFW$3HPL#n$7S(Gqztd1rREhswv^O)|x+iLc6ay}z&; zucBh_l+MP#5vj-CNNqcBYCc{fnPO|w`NO$hB0kpsW6?%*S7a`oji-DpZ?7A}w#ZmJ zn@{<8iE2Jr+vQ{J)q1}_yeraP@$re}y^p>W?T(g-jlX;>Z!L~Q|26X8D>`p(KDORp zj;@G2e{f>sDIfRoU&!^ZN5)^Q&Yj;fGJJen)LDBQ(Pfc3eSTu^qw=w}lPUIWXWy_| zU#xxmV^3tA_D_7W`B>iH^O1J{YGPjb{yHl%#UG#8_+E>g#k}3Y1iM3~cdH*hvnsj#G{&yz* zrt+@ue7N~|iDV8(OQgNS(Gp?bqR!T(e0)h%-z)r{sC;}pDj(Y$<>U3Je7r9zANTd~ z`{jwqS`{Cg_yZ%u$J*+AU-Pl{WQu=zV*T4cOXNLO^(cN#^Rc4+g^l;Q!``*8&B4a!_@%JFmC_emvS7dCzyY zmgQsLL78IX>AY)X_}Dshex~{OXGW&@K(6ioZP6b^pPbmBStdt{0|?|o7GW81_p z6V&l=r-$d5r+{FKT^Rc}1bywsa;5S8Q?U#@3E16=o=)7-a z_*nZ-M*67tVrToQe5`%@t@!xFSBwlFAB;Lb)qMP)N2d7aa^3mF$ndf8J{GMa*J|1M zf#zd#ktsHp&R-fCKHeR5HrMj;jU!WhAlLd>BJ1$ZiPgD$e0F4tugZ02?aJ`+!HLcP ziO9aOr>sZkoz2IqNT%5H#%rA3kM?nAd$)Y7cD2`W?eAjk{bBU8Bllwe{@tE?`aB)I zbz;vy9~tA`Xqni%uzYN7mZ(^bI=d&s$JWPuu87o9Kb`MwJ~kfv%igjM`tGc+^6{3D zDL$O*&f4>Pb&2eQPfu*GmyhK)Mb`LOLuQ+1Iq)<$RTFOkfp zk-gE`yS#j?zDpz{>-R_J&CSQ38JXfux$dmJs<-`TZ>x9lH4~r7wG1Cueg0v16{&4! zV=f=RGLk9&?8Ntt3?Enf-f70=xz7Kx`S|?E6np-WXlt}9GGF`6^`3~=S>F98hrdj0 zKg;v6bN1cXTq}dEy?n8A(|Ik|wLkEYNTzsWV&mnlqD@iNyZ9~5$MWmZ&5?eckIvPe zT02L3qt2c!zuJ*0_Wa3c6&b^!iM^A`$MW{?5*d#@-T9v8WBXmEcw=Ji8PBOm-^;|- z|N3ZmRPTw-#!!B(%M!16UN84*y|A++Q*4iPu6G?Dt6OKaE*~EonPT(r{D&jM$L7*m zJ^t_L+GtZ`Z92PeKfgKpT;$u(*?o0X&n=O)>U>l4vAN3>UzqrR9vME?ew}CUWAin? zVzueKV`TVPU!ApQK6|2Fk#Tg^SNT}}{^O+a zIzQfgtbQ`Z_N!XGD_TXrIk9(f`Plfr5b2}-cIK7uulCJZ&5uRjocL7p@pB_ntiM-B z=ZAm$#D|-YFOOu3_1AgHwG1CSPo1m&{0~NI)A{qw$JSKlJMpVp25VpauZWgN+nwF_ zZ;;nV`hVrb?%R`Vk$&GjvHRXnOC(qCyJB}^|HZh*U-NYB`K?iX_c~jP^6{2viHg;tv-X@BHF2-nH%@g{ug**JvHHjq zYooLM!_)pXQT0{4-h3=4Q@ms1dY+Gsx3X7-y^pm~{HGJ!=Q4c!;KbUqA1{rzMDLln z?t5;3v^nZ*|Cf)AO{Ul$>s;;C_hZTZ&T418eC*lIJDZQI{bKF=jrnY}JGypad!c;n z9Lf}{MdzaLgt-06P*wlw# zXIc}Mf{=8-A(y#2Ebe;)sJ&BuQo$rRr?vG!&7*uLnjzg2WH@|}HPV&~s@ zPDfWpTPD7#`B>XB#p>7j^&`W_*0!^KP(I!_GR1e~y7SjZhL6qXv1n^l&vv$t%f}y! zE{}?x>(2hScNsp`{u0$U#J8xk`}aroz|nE9^Nr2N^6oE@cKoH{jftIe_xV`uIy%6V`*j|$<-aD~2Wcc{uiI?W%pNeFPPfT3(xg`FX=$}WO zdBpcuUQPT4_@U_V#MZieyfr!;6)zK82N^y#x6W1HE8^c8eLm{!zJGUH;~kMT=xh&^ zkFAwVvEO2y59C^nR*@Pzo1K?jmygY>-Y0lxv_!?$y0h`hKOWih-fx}VzdurwYa`?B zys7!vzX4^6e{y2&Ij>)c{7&(H>TI8tkB^T`v9WhHcNsoDHL=1_%Dfk zUphbAd@O$<`rXJl)V{O(Pe-yZi`2HWd*$PMMyB|pTz9r6GW=Sf&d)R-tKT=HC3>;< zr?n^_uSaW9u{m{Ce;Gbj+s;e#@!KPr;u90w8!~*nbK=^+e5{_b`c!vku(Mi}kLAtZ z9^Vn^qx09AkLB&R!;yK)cJ_Sv_*f)UeCNcQM~08(I@=HBV{OY6e|+MNk>TT--;Lw? z;{5Hb9XUSsw{tyTbynNXYHK`IbNjoq=l?pYIV}@=f0`d3-#+mT&BxliE2{5-zB=2_ zPe$5$Z=~PO8_mbsyDl;h*LP36srmRvN2b`>?5zKt(Y2AW{n5nsUitWkN2d7mx$ZpI zZ%^)5E%7fzo1g!^hUR^RF}??;e?A{cnxl9I4~MiQWHdq)lxfR)&wYuTIZJAB{F9mMtGYJTk>KKHr`t(q`w=&BykdOtIQ`*51iz6`6zad^h%d zWw7V%8NZLNjMgUJ+kAX>WQwoKb!YE-89vtj^-=A4=c=>0ZI1X=Uvt)m`B=-&Ki+)o zJ{2FGcp3Nk*xWlCU)AGW_?6KrD!ygn${Uk)bEZ0PZ$6fPGWv2 zoVw4)+Uk5o^RaehiapzTZvVG)|EHpV6S?>26I+||Yn^0@H%+WP`$M0HB4@4hfm|Ek z5?TK(6JOkXd~#%pwa;5ck4CSbSdGfZJ4dE?U#>fA@3F|3?MY+n{ORUnbR=cs&qCXy+>V`A<7S+t5a zMY|?8KjT?N_RpOY`|tJTV`Gyk-Zt@$k>O*x&Yx*MHYSl#Y^E;Z4jbEnt!HKIr_J;92A9d!H@2^_Q6fYB78yP-coA^lc@vn|d z@f&j8+4$7Np1CNxVPfMbAFH!W@!5$tjSL^FWoLV-e60WbBkjI9+BUI$Rz5aPnc`1P z+}m5_o*HSpc<;oShW9?br9g*yBOsu^ZB6ZWwYGPw4 zAIsP8?Hj|seOE-q+b7np3?Hjq=NDTKpXX^@$j*=>3mi5vHd4g>|Av=HW@xP zKj*K$=l^VCYq}}oV{6;l+Lw>LFJ+3ge_gaE+8SxAv)Yu8t)H4*9lbTOw>xicKGweH zeS`0dj!gWa=HuNXQ|$S#Mrx*C=dtroH6Pp8GR1!}vGH5SRkSy3SkDrcYim#k_ z$+Zk08?SnQFuEhse`kBHeEitR6dPOT)yUMC{q3xM86MXE68%E7BjR`V-7FvLOQ!hV ziPg*aH=^sJZ%(|g`MCDSDtuL>E}aiHA72y66z`w-+{p0p`=ZXqUp{u9iqB81KIZ%8 z$hp#Q=L^lppBkBB=dkmpk*V{k{ratJf6eT>RzALAWQvdHy7Pf?-*-}-mZ-C~%E!*e z5*6>7SnXu^*!ViDTlsj~$P{b0v$kaZuKjtZRe$w5WQ1h|=KN{Kd|2q166RS=6*x8dQHkQt6 zEyKs^-q}7XA6rYA;?omfIWl~_M4gR)XJn5YjE+t0{?^DdPet}eXKj{`FBzF)&#TQp zh@4yB)y}s!AIqzU`Rs`fP3)ane!V|sikFGE=h|5K*nYO&YthMQHSxLTWBYv-6&qi@ z@828N_eNCw$i%-gGJLFm`}OI_K2!V7##KH(F*3!Te=K@3((h_w`?h>6Z;XDESN%Kx zY4fpXtx@r&i7$){AAca~tUh&~c7)a5e2UGZv-!!?{CrQxKeDT+*cdw3_mYo2 z?~K&kwcT0&=39L_Yn^3f_*h$=59E41vM213*H8Sl=HnXA64vkOsI&Q%kDVu(;u|J@ zVr2MO`}T)5xHWosV)u>LJ421$II+2vkDYCqV)I=^Cn9ygD}suFplr)A@_d$DWZX z_PqA&5BvUiCjJ-A$L}7QVs+`fb7c6qzK6y7v-ZxMTKKnE=k?~}qa#ziO+a zI;(m4*tleh@1NMaNQRHsCiZOk)s9TDT6Q*HYo)&1BDL@QspezvKAGb8PyDix;p6`` z>RkK5n0%-1i8{M)eCqoBk@sk4eV31aY-EZ(|K7+No{sd<`Pt@UdtIjZhbDetWcXP7 zC!$>Q`S_(HQ>?Ad z+S?V?KCJVh5A42rE|LD;G_l{-<=5|QnPTUu^O0QZpN~&WT>W|GrpUND8&~-?#y)n> zUl*N?ti!2^59GSmb5r>3(JCso=AE@yXU`ecrZq11uJ3F zvVQh{=QlMUZyA|lW9h8DCHit?pX;;pCC$gir~j`;=FRKue*K_cax^M{&`^(|AZ@6JoEYkXM!`uoLup?rKOk}1A+V&l6mT1EObht3x@ zAFGf0-WY8}p5H#$KHf3$*K=JyHg=ifGZSmiJ~B?@{`AC8HXqCP`P&;ymzWG|uozcw` zyI=e5d&4h}E{lrmd28^R=)S14^(h~_PsP79@tJX-kF{?U?GM z@xhTPeq*jX>u+yl53EO9CiYvQeC+(o6kE&A&cnZpekFQ+w3^tx@+&7(>|ST%bAGLp zaW4}ad-+)Z_eY1KACK&v&T3XZ*1r2oWZ%DYV(+5zv3(&^?D-Q>ogw!-e>T^i=VNo} z?0IcjdwbXQ{^&yV*O7N?XX{-)_N+{??@niXRECdhzWc&YMQYdCT*}At>(SZh?&$AN zZ2il}-#0SFp0^&pxl5!Lo&9^Se7rf5Dc&@3wfBYi*6q2dv$>a#H%6w|JUSm689shh z)LDPuj7~>tW$im3X+GXNGR0?d-Pw3#_;?kaiHfVgOXDq(T6A7(KK8AbDZXZ6W0&FM zQxhL-KGwhWsrF7zyvnuq`1q=c)u?>@`ADW%?K>~Imf>S_>D>1UJ`jB?awg2l`{=u| z|6WiT?D;37^++wYO#GVWV`GsiwoaYx6&XH0H?c96kDnWvV)eFP_e7f_@6yg6Z9dkw zOtI(n`FoM|T_#q~@@t>S6wmudw$>gWjbw`T_gj&3V9pOue6ac0+Q<~&F|qc1a6DF<64ia!@nH8A?mE{^07L~6nozI&PUc!+nskcAJ=?~-xaU3XJzyU*&h9@J+4G*$R_6n`-WlB*T^pU4*z?x-6_NJUxbw5k$M=m) z@yl}E`P(DI$CpQ)osIJGzL6<5p6jAj#cLDq z&GnTLAFoeryyau#Jsx@I-Wna8_+0bxnMkJi#KgY2XCgkfrk%ZK%E!*GOz{H~8{bBB zYWVu@?EaIHb+=YqC$?wG$7(54{LIAF-`V)bB73v5yZ+xUVT@Q^*<0@7u^+E z=eJF~x%pV$`^kLniS|#do$~SNktsIU&PPXv|99alTK>h@{LE_=U5H*e@vEAT{q~Y6 ze(G;wnUGZ{X%e>?kjl#liQh3MhPx^J5J z^UcQxqN<O*t?R;PJv9*;c zHnz?`GBSMpv8eL{&Bw;89`?eyNG&^?Tlx5BMyB{ct`9|zMAlpFJKG!OV`G;oerRIf z4;emI%g*{+kL)k)_}kgLp?qA~V$ZAp5*hc}#QG~A%X@!oN1dFP&bykA)zg~SzmGiA z*?sM8k5-X$(D_31@%fP{_WkPoj*;PG?Q2u*9*tf;vHP;-u|L{7@qt_$-$rB|uA11o zmyZvQOtJrN(^)$*e5`-VHdek4Cpdo$a0SvAp%QcUO^b zRp*n<$G!Kx zT6Wf+dYIo^BKx=V1I@?sUyh9N8__RK{H5k&d2{;J=zOF;ovnTOc!^|+&9AfhED;}T z-<*uuJZ8SS`S{+EDZVGyoojwe{OY5#v6YYYXB@>xCq6hbeC!?Gd3*D*{>|69)sJ_3 zXZ@9r?;4rnXL8;7a=Q8sM@tIu9@Uiyqk6sbk*QX|4nvYLJGR2W zyRCeDIw~J)t9<;IQTe#~EB^0BhL3ALpA38N?uk18Z1eGsktzOAt~+bb`_vfDMY|@p z*UPVcFH^jCV*79{;^QYKHjnbL{{6LX#&Oxi&QAGQ-!jF<(fPw8!^hhH(MX+kN7kmZ zeNsL)4w+)lTQARC6=}Eg(tLa(k|{nsakclh_?shZ*tza|=NOl^IFkd!5}YA73BU^VoPd zqNCBa=)sA#RX&!LDR$O7%gXTUxz5gV`MBCEemGv|YL8#fb)Lt!o?ML&?~7!LYk#Q4 zMGQE$^`ulQpYqS=9bz=Led~7T-#kD?X1G%=|+Exd@ zDLdcRe0<-?6mQCP=Zi;%kBz1Ck2D{f&wAt=T>GK3=gY_Mj?}i;^UnLF(dp>=iMKZ& z%Rd=yMEX(N&ik8>t(Q!(z13OYGW>e)boOldSdEvc_{oXwB^f@xYvN0rj}MMa@m0C* z{PvOIWAnEkPer~9pPu++^Rc}mQ~Z+?AIP=(9gVg{#?x7U?!PWlCwsl~(tNBgGR58{ zoz+&RzhgS@%RL!;3hRGI#CsvyJF)R!AK6pJX-{;%rukSqGR4b!0GJLG<&g$t|dq;o2Ke2CN z`S_BNDR$;MYfm3{Mb3)%bLTsnkLA_QH^XzzR%dOLkE?w(u_qpgI=lbfeh>a{xqnr3 zWrXGLkF1M*c5-6hyYg|h|47)LyC&+qzxnvTj!f~(a@|>b>ieqb>geu?wO>9qZkb~9 z@2tJAMA}%DOtHPxS$p1VRpT8Kzb4n)B0iS4Uh=%BCjL_M@jFJQ_=#M1 z_Pv(j_O6pDUYqzpu4_E% z^mt@!#ro~6_A-3zozeOJ=Hsm+Q~dEKo3Fev-WXZy&dx>o_~wx*R?E)X zI~KhsGWMCxrTm(gOz}KlZ5uNmTZ_*6dwH~H{B^JM&gSEKzS#5D@Kkg`c-oige5U#Mbt6;kd*|aXqEAOZ zF|qg7*u0EO?Q~Y><>T!mQ*7>?tG{#N*S*l$dX$f!F}^QWQ=RR-48Q82^IRXhldJl` zH6Fjwvi7C((tK<_GR5`1b$L&*za9O-#NPXR=5TZ}+BLCu z%EvDpnc@rc+Q9icz`uJh|CoOX} zR!imMW#o&kQ)lDj`I}9ho;UH&G#~GaWQu)X^>|gd>bZDNJngR{dt>gMFKs^dcd1PA z6BFAj89ug7oj=fgY<&7PKlkpjiTy^FkC#ZM*!b^?-W)w1dDq!mmX9}&OtJf@v+>B+ zn#p&5Nz0#&FU$M#v9`2d{KpgP?|8H^vR)sYSe=%Se`#cj-;(Ff+S?ylQ++QJtD*Ao zTC_yPzCRQFa&+DBJ6qrKv8->4&z;!ZW%ziR_;B;F{+(a-up!cJ=O1f6mNy@Fp1pke z#Cw~M<#$B(;WnPTS;yAM7cnM-HwTW?;~SZ8gOk7d`Q zVte0t$+HX}+n3I#n~(MXaOBQjMHf%3Cd}bBbQ8Ujmod}@_W8BIw#sbvDzpfYrkr5 zL-^Ms-xeE7XL4qm?EMpwc|8Tp>;7{SubPh!M>55G z!bhU#M)yWrC*Iq9{GO31{@FZtzIJ5z`1w(1<9$5xd-O|@+UxAS-;>I0nAjZU`S|q2 z`09-a7xM#yfji{KAQ?hj#h+Jrirs|30!rTcWjz&39My ztjHX8Pwc(*v&Xd#otNfg=hgZY>tDP6=2oW{O?*@HvHX!}75Urj6BGCKIY00AMb@X- zdwc&E(Vs;(Pi&9N$MXJNMQ5VRCw5-T$JPH5HqTnmVr$vid}a7}nYj9Q20s)zH=Ui8 z^6`A0eDA#Y=E|tPFSZ|@KF8;cAde|%y!P(F57 z$rP)x&ieQF#fHc}c-OhccQn4-y;0}--kCZU*_+Pw{&;+AxHam$zxmi0WQxz7SbO$* zi5`tMPyCtY`lSAWIx{%=lZiPQrA+{Etp^0EDuDOP)(wXc3Z z9ytqdp4i=6KDIV8#qN~OSBwlFn^$M^D<5lHrucuE_~gj&@wcPS#;<*Cn8(hEo$>Oq zygs#aG+HKBm*r#aE>ZERiM6K|>i0sObyi#Us_O5&iR*i3>`?U0sI&LK5#1O4PIUFe z-XD%uk$L^f#I=5WeEG-}y8}9J7#Tixt~;B5`S@KUQ~Z~C?reOu{^y4;j&?@H)~B=e zk>TSTCbkddW9^&wJ<%$oAKOov;`NE$B{F=h{Uw_3)wOuLB75KYK=bhu$rPJc zXYDQ#AMc6G=dU7bxpCry&Bw;)yO&4bAOCh%^W|gfF(SO*t z)Y*EKk5`dQvHrAwW%D}U(R}<<(JCsg@oLXHe<o`PWDf{C(r7=YUq-QuN`?lc0YC2zHhCex_W%#tD29^Ri@bY#(z`vrO5lv-j!cD znPT6&zn!a}jNFx-f4lkkEhAIx`}N4*41N#3Gx7i0eEitR6#M=w(XG*Sk+wR2w)xoD zWs04p&UL=|*#1~w`}g(8_&Tf2^0D(NQ+#M*iLYrs_PtE8TIu|hk>O+W z>#RSXF>jCl?Zhu=KGwEO@xF=8ONNiFW#`?^$NJwA?TofYYPYlZet*^EXCrIUd2jRa zWg}B;Zk^3jrsn*aiS?)bCGxwrHnCbNAIr)VtMAVGk>TT-?-JI|=BTr~tNi-AM5fpo z?ySA4Kl9oV)g1B0sC;};R6gDtm5;Tj{%(slMB69!P5Ic|Ws3c6(fQJm>3?%{?&JS% zvTD=#i%(3freye7eRV!teaV#n@Wk36e*N3o_?$8K&y&#|6JOkXeDlZ@`(8aPk$ceJ z6P@*0KK4$gSS@sR)|ZH1=f1PCmXF;}$D>uWEBfG%;0-N<_m6yW?U(g$Ak8YV+{K^2W0>+8U|*&epJeyhJj^#@qSYJTDO+tCi0BwibIF}gi^#>7XOkDoa* z#lBaU7e>b-ZFD}=eEiLkDK_@b>P3c+>mDuEpZV4MA545ho@M#?l@q%^%E#KfD{^Mc z!~S))Pvzq!k||azo$EZh6ZS{?@BIDd`gFFowXmD<5x)%E!j{&gjm_ zI{YX$9`ijXdQ+tD&L3|+{@BPAUz_L7$47>bPeq-Lr~De5O!1#ie0`qHg^%^s+4!%F zu88W~bl%&1tS#$TtgX)Ww)(@`H(vX#mi#^6+1$#<>RzVU_pgfnc=+$1*!%mVstJ41 z`3reoB0m1u#2;=xw*T&%Z$v*GnL}rDEg#FTM;jya{OH8Sr@cO=&enX1j1Oy1J1>v4 ze`aET@0X7+8ku5$e{|Nr_Rf#4i_~;ydsRMmx5*U$)Wq6bBKu^#+U{&T$Fmm5@_P<}0kM(a))Pui4PED+K%EzZirdVBdzI$Z&So?i{oarU9KiK#>Z)!d^ zpCi#K`u*so6Kmfc;T*ar9-P>C%g6FNB5QI%^zg*izI?oMWQw=uxwH0+Ukx0K>`iB9 zpnUxNktwe4m-yCsE$aL?&Bx{{Q*3;lZyXsuzBuZvZpz1dN2b{M==|l8;bY@H6rGH$ z#T^sBqWO4VBvb7B2O{gVd;Hs39hQ$TADLp~==|o9;bVK;S$}s$+amkAV`B3tA73*v z#p<}Twq^MEPbSu%{~k5x1Cd(k?0=^yA3KXO#oFz>C(lcCMf5X~`su6|%E$6*#NQMf zqQetAALZjyBUAi$dG4&eKOebw<=;0<{DC}|kInx`WRKK`_B%hf`Pkaa6t7RL7G(HX z`^O`DvOV%`=l3-q%Re4j59e!{*xrXExTZcnY=T-Bunv*HEm!0?KS%#0F zHF2%imGS+SZ;Co!+I;M+$rNv&*!sxuvG%RY5}8N+{ZRa5^Kp&Gec=qLjn3v#K3*c3 zVr_J;_N@Mr<{qg9!$heP9tgZ5^U72Ek2Xx+*=OyCf>nC;&%EuRvOtH2)FC$ZZ zY|C?JV`Pf;XOF8UjJ5OE z@@(w_2aepA&IA8X%!eLV6zvu|SW&HrR%pJY2<)qE^}Tjb99Y-H}8?U&kHqB_@| zPd6W55FLw(cTD`^k>O+g-yhYOpFQ!1@@)Kktd2Tc=kl@kjDKhJwa9!r>!*AyZ=IIN zT5X=#8kdjtFH?ME;##j-%k%QSv$+}*A1@PYul%#IF_(|ERqKa0MdjmKU+Z1JL7lzt z`@22QOJuL{=O#A)^6~MJDb}9zr7z>SVB+=WEideBQCBvpJTJpE5GVb$1I6NFBXp;zyg0D}PhiJ>XvH?ESXr`p7z+Gx5RZW9uPP?0fwj zjh-E8zq7fOkL|Ba@vRd-b7c5f+nxPy>E&Z*L*|F^(lXeZ$ro>**xuINhSi_iHK*&N zwTZodAgY=%p3b}STz42=BAH@i>Fhn#7`5;Gd@FK?9-jEz=HrbcQ*5t0JNGht{EsF+ z(|r88ktu$6o;yEnWcXM;xVNlV?R)26Z9X=4^-%2F&h_^Qzy2PvFDE18_`<~2sQk0> zpX7b{*mw^{cSbLb>`iB9rhIH1GR4k*XX`4%$5&6Rze}U_Xf1NrcHYr^yozLs_k`7e zJ`O}*oLKwn@ldpiPEYK8t>06_7ev;wcs23g=2?c1ecRc1ZiqHSa>m;Ey5?hhBU60t z#A-o?kG1daeQ%_F{dcaj#mDC7yjWB7de6j{G#|@5YdfRMBYkwX&gJ9kuh{q4-;Boa zyopaVAItBGmT1fPx3hb(e0=xF6z|J(XX|q)^55a_j4qnknJFLZ-#D*}?5DqBIzOlR z_=%Az_Wga))zK>27j>@ojmO&G5q0+7Z@`8~9j_+#P5Je`OtJZOep8b2)?d|v zcGZr$DE{!oYEOobUpTS$u8)l0-|gDz?EQ|&Z=`j#)}3oSH^x^>YP+-d=SS+$zOE*= zU*%)-UPZ-wCw^9*W%yY8?kjhMKCDe=dsROE&5v%bs6&ZbPUv)S3-b9H{P_RUX?xgYi0`4^gx&F8VmJT^t2n%Mf3k3Tvx z#oxHI|VvG%q^>f%)N zp^5El`S`w(DgO05cdqs9Yu4F0sP)6{L z%@comWcawoeVQ*ye}VXuWI#Z*jicN z;$`BhPdR7v=}~9x8Sl>MucIp_w#MaS{m2wA6CcjA3?E-RvAruF>;DCj^>P1rwoa#` zKZ?FPvG;X9IrnPYdK7!_JUjCTqXQFrZ|vH3Z~DIT1;Hk5*Cfxf7ee3?J{9xaQBV`P*+b{PE~r6B|eQc<;y*zbMb0Yk$?F zG1}wKf7yI2FJs>7?V}Tay7~A|MyA;J>iLGK>ZaE!K-;dPkJ0rE!*_g`5 zvNFZS-ubUbhL5$cUetj7`0r(VU*A?8Xs1}+b$&&jR}mjuo6cLBkC#ZM`1r)`&L!gG z`zEgYm5+_Bv$ZTATaPOuf0Hhev2`}r^0B*4rudGD_m2!8Z;CqWPi?Eg--_Nl@t!=p z|NKqxSY&TIYp;B~b7YFO-C29rMjN8q>&|lxtS4t~d~BSZFK<3JpSqhb99i{Oykp`Q zj|?CC-d^7pS=UD+{^%+RE^;v30KXwC3K``WKr+XZN@aA3r+ro0^Zc?|ywG(vCgu?6;$QEbsTq z`kfcuJh5?>kF_ULynABp{e0xisohWf2$nauYolF}_B$J6`8D2JpAC6;OJseDKQeKx zhdnSJeRaOL`B+`a6#M@ENDce`?Gt*vn<$I;QK zv-y{goq3sJ>t&sm$hg!_=ewJa^=C}xVtjtfIO~XyP{(C)LDD(h$V8bZk|}ae0LV*m&K4#;IL%?QAaP<68gSVZU>JuRD9c z9{I+(aNl%xuFA*n8ku6>ABwEmosqTetbWSJe>yV7=jOSy_SD0p(e}t3Iy(bw;D{;}wah-ZB|d++(C$h|kS--7b7yt&%r(~Z5$TH!2?+ukX#t9k`mT>?{n!7!(K7Mn&BwnQEm85N ziK`x*IrDNhI$zv;Y~N&xYdlZJJ03ZkoxSJ#W`FcQP3&$dAAe|MikE`2WBbj1-cCP;Yt$uxUVbpm;^YP}9DYkZ_PGySkoA}rB>@4$fwO@a8?TKgp*7Uj2=O;eee7tvLinUk!qkeWp z+A4O}cUB8B{QB>?2f}K6bM&=|)qDBacQVDb-fGRd`1_{wdzz0Q8<}Ez)4AGnhTasJ zTW9xK`S_8MDYlQD-#IdTd^+lULG!V_kSVTu5?C&U*P+UTv!}=R(bOHrMiN-c^@N-tCXd$HuTk#e2f*(QVO<(M=Qky(=HP zt7VE$P3(@A;bY@>zaEYbMXQPLXg)U9RaAV{#M<-wr7gdM^?mW3&Bxl4DK`Jke>yUJ zY@D5IzqJ3H=wC*iy}v(NBInTBbiTUzxZ3+{cvEEmJD+X;-<8Zqqf4S!Pi(Er$Hp#G ztUsRfX&=-^XX{gb)k&`(|4m;${#>*~#rp2NEzdH1tpDqyC9*!7C-z%ee*JFB6dQYI z?cEhQb3YMXH?h4fAKO!zV*A@!dq<*GWF55I`InoIt({Eqxf5%z?$_(XOLQPAHlNPU zpY!|iNG)uim{-1kca2Q(&heg)wcXiXmS6iSQ@l)U&uYK1@!cQQ8l9T>oII~0K7QZC z*2DZRjqI~p@2s!#@!H4~``(^e_o~y*a^>T_QOynC9hHx@_xb47@$cgkA8kIi&N9X8 z6Ym}wKGweato5=No&9~diuib$*!MdkYh+$)6Z>1Ke5_xYVs}&L?~e>0>$kJ-%g6ea zDK?&M(UxdKv^KH#YP$Bsx1G(=c=_0W({}c~|4qRfsmq-c>$80PS0hvG`}IhlH$^X* z*!wG^H$?j1Jn=tlK9<+tvFKpr9_{SxmycgIGR6Dy+*y12{NC{Y!Nk?yBk_+%C!)^3 z+I;Li75m=2oGW#%ug-^>kM~5@Uk&Kbebd=lD<6M%WQu+NwrCZdi9R{8|2{4MY;6C^ z$A3BU#m;8uCq{;kYrS@c>zsGq++E|OKHfC3{@mwl zQMK9mL(RvxMA|R5CY_%%AkYwN@jY&EFnW?JN`98yP+}KIaXa<9!pKZa&^NGR3|( z9&4`OWn$}5KKA_*6<7bx&w8{s>TK=H$L4=|q@4?*>nGmXeC#(vruf4X9~l`weqq$v z_+A@XAMgFQe&?G1i{o1dd(pYxTc5RPSJc^FlwbQIQ|$ZuqsODV`#WFTeC%86Qf$4P zl_jzd{vPXG`@^q2>0IOQHP+cUd%ekTh}<8WB4h4sEahYWd$dgPk4>yS^IanSSgX$F zT0XW1GR4~NTF`^(4H%G`>ViGMuLGJJf`#QM7|a;H2R?VZ^An4kT;IMP<wle@2ZU7p$8`3)qJcDWr}}(;x~*8AKPF5`^>G8yT)2{ zzPJ)BRq`rJr=-;5rQUK<%t z=LegQ-#9YG*0r;_$?);n>gR*;?~QJZ_D+1J`S{BtQ~dXN?ra`1d~AMCM#m$2dC$b& zKQg@U<=<;3K9%S4@$ZaGvF|U9^yMzxHL>5B^0BN;@t&}{v^e7t{Til3h6&QBW|KGwdo_WbBWk@e_o z-O9%=9GPO@J3l8QXY*$#_HFsqj!f~_Cw^6)je(CZpLkpIv9*#ZwpN|1e)!mUcSXi) zpR9l9YnzWZjZE>LJU=fw5v`)5 zypbt>MxHyXO&LBm_Rhv$KE8Nlie)>SkKaY@EYY!vH#HyE{BH}J^X91Y&CSQJADQA$ z=DBnAe?0!i==P}dCC$gyLZiJ;g+`fF`8=H^6Ffzrperi&kS)a~(n~(QJGR3}MMeEV8NAAnc z-)}zNIx@w3^4!nE_B=0<+Q8=2`7_PO8%Czsc7&gNJ?UPUs+*0i(s{C0dU`gXKTY`*1VZ7ospGbdI@GJNcBkSj{<0-cGop+B+ukYHcOY-hjkv%N-_ef{!sTP*# zZzKEJ*?af%*P@G}Wny(-K7M7iM8*Dw>U=8CGJO1Z6YJ0Tt*i0;U}C@VO+O-`P5sUu!N?Y&?}Wu0J06Vsq~N&XM8c_e7nYh4Sk> zxo;ki-W2`n#Okkn{5vC4{L(ykHg*|4w)UOXPWkw^N2XXkb*}v|@9oi%sI#`p$JR}z zc=yEGGuOJKH&5(a^~c9go!EYtkGG9XvG%R!*2um+XX0C%k83>UU>|Ef#XFjhYd*!k zKNPJZb$rLfhntU`O_^fr(AnH&YJJ=rov+HX3?J*?SWiagddbAK27Iiq&NYAY`lHCY zcfO|i_?D3=-k0aj+SA7>+7;RB&P$%l$MRbuHGX|`qKrr2I|UPgwG_e93O7HN0p&o&?XPNsO7*m$k!Infdw zpZJ32V|6N1e75@a`=n3ztQzjTG#}ernc_a48ndw#n|EhxV2-sOCntU|&oX@MY<1S( zUD0LHDl)gu?t}8N_5VurSaeI|H>R^b%E#^&nc`1OeA~$I@e*}D(|r8pXo-sVgfEPY zdvA2-#NK;n&Re7VCVq4C@xhTPwm$anSaeZz-o$_3e7tF7ihXa7SJ8%Oed2qYk3Tgs z#ryNz*<57!xa!4u*N=I2w)f@ZZ;ec`->1&@K!%U?)p>vO@#{yX*m&-a{wS(C>AbV~ zSUo-#72B@^k@MvoT{>~?$4BEoKl*mm*<8!V-yNCa+7IirE3&tpKi+(N@yHabfzHdw z@UiyYzvlBR(Z8SA`|n4q$o`#~*jks5zcDh!ug-I4Ss6aIe$F%gl z(T&mOiG5!_UK^QWXS1`tkl|x%+j)2MajjqdUYdVrZ7mTW@0!?Jm5=M}74MJNS%2!4 z=WaHC`)7S#6g_+5cQ+sV-g!_5t4K|C{<-F3_km2YemZOK)6wrltLQls|J&wcd3W3@ zdN{ggV(;B^)@c>Je&VMzA6p-pV(anN$l7d->}}_2-@ML`mZ-CRD!=wjrr5YT+po2V zkKHewZ*D%;{}YkgdUkYb;&(P5%iG_pBJ1_n6Ti3lSl)b=$T;m+XM0^felU_Lu6p3( ze-m{!?(*w=$P}OLe5~jFh0%?XzB=FDd|cxx{)u><%}@QR|J$Oi6Yp(4HddM9*G;TF z<8x+>?*|iCf7aCB9op&az5A!1`OY`x-4a=I{E~@%|BYyg+;i^M&et{{?}@fVACF!e z9h&%?&BxlW`{AOnzlH2U@&1XAj|?CC-oI-5CnNjQ+1$&=m3K#(^BqxVby9xSj7;&_ z>PNfVqq`$_L+AUNkAHn+ij7BYucA|t`>FFK&Brf{WQu)%I5KBzvSH%Kn~#r{l_Ega8-2W#M&z#TiYw6V)fP8KFaX%Jrk>&^6`5{rr3CPMed6AXz#?^ zn~(QI&X>KhuKwGy^YfdJe{*Dt_vN{>{_VFlIS^^H^XBH`YeuHn_YXzJbY5g$|08S- zsvW$0v{|e_`@f2;hZ^W?Z_3AaM^z`-_{zuHD!L8fFQ@-4k$Xx%&TMDrvwSRn zS+t6@bMeIX^RDRA(dkGXbiS$iSbG;nk4Mg~+Uu;nt|vH8ms`+hw-8NEGv!NkU| z{UuWCzc}$)^Rc@~rr7v9FL{>XW8>+pzlS4p@y@t9A8$UEmwS2i{qb*Sds{xG7n?vd}Z^ocQVDx#MV%TkG0uZf0sq8=!} zjl1&?nvac5rufQc{VozoQOLY|Q23kBm(5 zKhJaL>fapyFf!K8?`b}kS8v8>+?yvp)O@@ra=x``eJ`4LZ}aiKNTyhScSYvBMAoA7 zyx+!Fb$}m>>bzj>`FryIXjgRa#QH5Czhh*IYd*)~zdL$E)LHx5ejvIi@?B@Y1?6LV zAye!OcCPuWn{AP`?7TD|o4ZW$ygr9VhL5%1*K@v)+?CqoV`K09rsm`QBU5ZXoz<5N zAMcpB?pi*s`O9yNjHUDK&BryrV*kz8S$n=e8J!dP{p|eC=HvH_Oz|Cg?raV+e7rt! z&4*v}xiS1;bYJwriM3IFwI@@2w)UJ4wZ25|!p>{W$Ny<$idT8=>^<@QtKPM5U00Fy z@4Tz|c+1EXtC`N$|H4SkT@$^2V*P2~o@|JoocNo~$9+Gy=lRUY7r#Bvo!>Ard|cnV z2lhrEjyn7AgYxmUBU5~3o;#l&89vtjzUX+gindPdy|s9Gq#t)?XYa3wmdM(#O?-Fr zakY0W{BZOuQRkm%K9+Z{sGB9yN9U`WkIh4-SY3A3mJGkz?YuM}|4mf=;fJCnD)z3k zcQW;j@jJ(lM86$b^Uk#%x5c*(KZrUTTlsj$$Q0Lk<74ePUw1@HWE`Ee0<5s6#L#-|9SNB=p7S# zubzK4T1B#*pWA$Fy!HEHT$`gMDz+b;&0mI(wcq*M&BxkbMMolYaeg{m)AF(WuIQmi zzq==P2bPa3e`omUc-PtA+2v#TP0@Rz3!?Rj^;bT&p7!Hp zuJ)fEJ{CPI>ilEP$J&%BHn-06{I&m)=!(dF_4< zePQBTnvcy#rr3UTULP4g)<c$MR2%%%S|N9r?!$q9yYE zv57y|e0+LjiXY5#=U0pjAHOE*tUu$uF4Esk6JOJO?5>n4_Pur55*>|}iM3rmmbdoy zsQT^fy}UD`pQlcIQSqdL4{Ecs_q(DcvQO5&^ZT2Rjn8}ixXb)bcIK7uUt^Lfwq~6# z8W}!bqRvN}kFC=Z6`N1zny)_1$Jy(=G#^`Qnc@#myeZEze60N^BXzq(=F)j{^YMct zQ*8Ze|Bi=GM)tSZTsrH|^MOdtZ$oE$T|QnSnc}JkKDHK}wOu~GE|MwMzq@dW+&kMR zHs12_w@0Sf_r_x{j9Xuwy;pzM!F|4eV&f_>X89p|z&c^5tV^N2b_#J1=>bsk=e@+oI=1C!$rQ-33suhzA1&5Xb9-_Fif`E|~$ zU$HhiAItL+@v-@JzNGp1g(FjJtexLFGJLGB&P(&L`Pi>ZBmJ&TZ0_aPI>;1z*V$Uu zx?%0x19P)ZdnZ2Ae0=%H6n`hro!!4OeC+S5&ZnD?&0VJ0SUc|?89p{%=hgF#ku%l# z>gHp4Yy9%zuTAXzUC~n`{T`b5-sWTLBU9{q_r;4Mf75z4K7H!TS?X+!%g3)Cnc_`( z?yNoM*IKH*6BB!1=UG3_l=h43y_&byvYlni$KF?a{yiF%kF}>>{CAXjZl2iq%g6GE zBlpwI(eo$v-g<6~%zN*|=3GAZn;}!|U1xtQ%kc5J6YHydtbczWtVhPUb>bTTD*h{@ ze-?FqPxJ9(kxa4ge?Gb*`kTnUbhcmRJG;+56?cCYC%g6Rkrg;Cv zuOAsc*1okk5NXFgceaP+V|nMN>U^2_c%F@ykM~4ZMo)`g6}gK#YrA~>`H?Ahmv+{_ zI$ehEZ>i4S$@44M+4t)8(a1V`u6n&Te0Ov*D)xR`WG?)D6MJv{c1OQj$7|6N z74P~HY>bt``$oRlI6GT!_tS;ZvFP@RA8bB8I5NfN<9z&e^nysOb+!)WWBDs0eVvK? z7IapJ<>RYHrr6v%s~s6WR?D4b%dhXM-hF4S%g5_c`MCC}*!b^?J|Eo@8GmPcUq05R zOtH1=40boqGI3c_iK?k?w#1$m5<*sGR5D{b7%V|!>_&V z{8!D#e;N6{xW;o~JnLvYo!{JiEWa-@_oLA=vArrE-yAJb@o!K3mORVw@dXp_Xg=OO zGR3tYYEmEDqs|XDAHQN`ieHoG&U^B#K8!={d)L|b<>UGLT2H?@uZsNL*xCA)k1rXS zVtsWsPZ>Tw+x*SjoHs=Fw)2;pkF_IHygqTY&&TGY-=7@M>bbMub2&b?Hl6iVKK|s$ z6l?#k=%VOfM4z7cEzQTZzDroWu0@@9H6LFe$rLXWTMrpN_IFL^JDQJWWr~-HjqiA5 z5A^xLAHf@12JavFV(qO**6`-Y`gDG8^Rc{sFN}6X%fx%~T=#MPZayBb_`HczWAR`tS=cpUM9Au<>T$q5)~hxcwe4n_}CtHwg%wK*F*t*IT`|q93FBus=*8cM%d+zUo z2PSrpmyef7rufQ<-9<}uWrS<~=4DNu9d$m~d@TQ4(MzKTBWvFIjm^jMS4KOd^P@u( zdw+3cUEUHo1D(D9e)MGI?7E9PdvCt)i`>;WP3*n%r*7&TcK+Mu<6n%-zj)uo)!vKa zYwyyibG66E@`oce!>cxgUv$9hu@K&z+4;hL5#> zS7fd2nZ4<(cFV{2j7+hAJ8vEt9)8Jq|HJsQmcjb=ZSlt^e&)#VvGJRSJ+$7w@BFOh zW9uhVyklauBE!ek{>ku{BKJUNeU*>@Vq}W7)%pIB;bUXztk3dmEHcIZ*6Hm0_`d!| zHeP3R6*=GjTcPvm=Hpu;nPO+Vv-XZh=B&N{dt&{UkL9gVod@T)v$mWQKE7>Y-#cdq zqGQqR6JOnYT>UL!?W(iR)gK>ki#q%ME0J+HCu1;_c1HYEhJvvHJ<)rL&*!HJD`6f?Z*=Fx-m5piWgDZd6W`Q)T=`doUlTny>g@gZ zBWKinpE~ia&BxCinc{EexwHAWPd7x`wD+C$XMXBT-RZOQs`=R6FH>A+n~y&cb=Lml zQT=_W?atQIUhwh$iFY+0pB$NDwbc3Mk>TSHN1b2ad|c!6H`Z;D+Uop^&BxB1O!5AS zt&I#HYyTUOGvH1%$Ijl%nOB{Q&T6iF?3`GyVr$-c!^rUQiKw%)UOrxrPDI6Zm-DOs zvHJgNWUQTyU;QkRby=HuSM#x2kSW$y=OxcFe5`%zb}%yUt0wkdeIJTe(WxK7`&tIq z_z#55Z&TFydCkWsBAMa~CSK3;iHMKSww~sDZ*)A`Jn;j~$IkDTNX?ud{n*6D|74_1 z8GF%L?UY}2BvZUhtiQw2$>^<-|8JtRw#vu*N2d7mdG374$ndd$J8x+|w(s5-tL@I# zRfb<{+rV*hrodNU^Tygcfx4$H^#?~aW1mC+j}{y_7w zoJ_H^(D~Al;bUj6^IG%qLnBix+u3h|3?E-Su`^db_8TTsyl>*qcF)KZ+uzQ{D#OS6cmCF+ zRrHdH_vLvN@%KgdPyFKM;|(KIyvlQDwJF2L`oBN2hsK~LI-5)R*#E9yb%T#b9thLfx(=c2|{;ie>O6FtbODE z)c98)o$LMX`0kSHqt4c_+`FP{V6yKib&gx2rk6$_Q)0&UX$9gW2 z+HrO|TQBv&Q`g5PKDYT;d-8JT_0@^pvE|o&`~G<5Sif1FZ*D%;zWJ)7hoe_d?7ev` zk@2eQ&WD?i^(9lhKC!)&;bZM@iIzzFU!1tsgO825v$2R@Y_s1(Ae|=<%UzO+1#&cJ+H8Ngn(b@aUqkWNa%q(9%UX4ugt~_^ED>D45o6Z}W zkBwDr6&sKLy~mpQ-wpiRd9C?aem!!Z9g5UiXZuq=wgxiA`tAIYk>TT~MV<9`JTm4} z(SMoPd$oEXa=$$?v2V-ApBtItJM-MR=6BopZg2kWys!EAp-86Kz1-Q_$ndeTbao!g z$DbUT;u_EH_MuiDb`zpPjW|K9)B}HD?}goY>gQ$G475v2)dV z@5u1+^PydM)tk#sLtNIf7YX8k-g|_JheYH z9(z@M&BWSs$E!K(?Y}2GtKssovmjHvOl)p-Ua+w(QSt7H^?z4n%&X{*iG5c-_MVFG zoVeP1JpK|{-_C2z$Gb+RSdDZxE*UwH!7vA?zIKEu|w ze5~*C@qdiU$NqjQA6Nf7!yBSQQD^U;9ht|`Xqnhrl#k`_iXMy9s=0N(t@-%a$Q1kj zNVJMBi|lo0>s~(oOjPxNeeZ8|HG3d(mvp|l`B>g}S4Z~fJrjF>FnV3&Z`1oH_O5(< zYGjJvmFLb+8yP-+Nz_??_S0{SyLkJ==2||M_wOolR^>a}lk#!T*RwscSLT2H#7pzB zwq%OeCf2?+uqO85-4j31d@OH&s(*XiSuGkDADesU-)lbJ6Il;u;91c{6Yp(4esE-p zosG^<85uq{UN!Jgg zbzUDCKCZJ-tUqm>jMV7=HnI2aW9w&~Z=86o`S`MtDX#T02le2$u(Q6)$L}4P;`-kB zlW8>G>k;t8_?aqgqkDX3UTQp8R;KvhOlrxX;K&pkV`pv3@T-06vqWl4 zEp&dU`B+w__}IkSuJy*oumAcDxA&d*=2^ddZ0?=^b@Q?I?2U77ANEb`{9PY8D@P)2 zb@uyGKE7aNir4ep`E2)r_RU+{%f#kdKGyyc6>Goq+1hvK-V$wy%(Jt8%dauW6#L&c zJAW+C#>2;It+Vw!9Jw>LM*AlA-u=ESx-HUIXML5A|7>K6mppg2KRh*JUyQA@|DGxz z%j^G8w2B^{_>IlS+efDO>O6NgALBP)>+zk5=l-0L>Kj|XRa9&}I#>HkeDAJ`I%{9u zUJ&hwE}hs}C?EU1ktsI+&idOH9gocERTF#v*2uW;9`8D@nvb_e+A2OX@tgB3!^h^{ zS$|JN=C_K}duQ|4{>JF`=+wlQG#{UcWQw)#KGf&$MyrW`s`=PlS5dLPJ8Q4zV=m5` zwu?_pEbs4u$0BvFb~|rwKE8Zpip}3QMRThGpCyFcoDZb^2DjI&s+ zbT*#4&klw^7CEoQ`zAIX89p|b&hD=AvGtO1rrizBd*{8)#~&J*V*AlqEy(ck3n$j! z;pk+vA+q0{k2W8>3uTIpv9tE7o|mw*cR^I_jCZ!4+WTm9Uvy$(-brb=MI=-Fjfr=T3?G|Y=jzXI^f}SHqt5SXKE7jQihXatm&mx(KU2{DX#V8*Lqr;yCZ#HH?i?=iLA|okxb|3H6NddWQz6M zc}Jd4M0{N1DX#u5%)9N8wmN&Sp6$VZjh;5~2bz!NcSYvqJHH>D)u%mo=FMyC#J+dG zS_9u2cV~BB`Pg2`6gv-{_4jzR7Ma`0iS=JTe(J~+8_!+QzDV1~+_~P{-vg1F>+HS$ z>u-w96YKk;h>tIy*xbs;+LkG<{p4f))qPi{%Ku^O=WnzZjCN!?*ZS4B#{afx z6@4&zaN<+V$3HtV#lM^9&f0rrWN!AQ&T6su_U>5ZJN4Mv+Lw=)NT&G7iM40U`gAwx zr}Mqd$NG{fcBggr`z6E2+TRr|k$rskkKhe0gHMcn@t!;%j@}ztBemYyJy1T@r%dtB zO>A9c`1qcQoyGF8zb|Bp&2KIGQY2@;{#z`6SLFQM5v?YEPxH^l-_QH<&&Kb}`||Ps zHS)#QPyH;BeVN%kTYlZSGR4cp=5su{F?v>H4LaZ5d@QeimdL%LRyzB>e0)_TQ>?Z- zzj0*vxZ2+yHZHZ$dA<2~_sA6c-h7wHILy0qjjz_j-=Ce&&9e+2Yft@|gTE=&TIZKF zAAfRWihbMpz{v2i_RZ7Z7ux>v#Q(AR*m}qmpEL1qjSL_EMATV-Pej^LCznp_H@~~)Byf5M}k+tgV+w!X&nc~k( zydlrp=VSA6_FfwK`_8-L z^Xz`&W9PB6@2`*Qdw=V6Ha6e$vF|(k{&2K0vUbbFA8tOrB3h#2T94X;8}qKSeXt+= z+LO+En~&{-aTHhkTjDK|xpekkeXk;Q^|FcWL;3jbktz1Q@!l3```E<0n~yITnc~BF z?rg3ye7tL7wO2mgJTk>Ko&)iXYtC@MV-y1e5@8^ip{Ze_4o4lTcg)SouAWu zeCx;*`(FD?qz?TqcK%ZH@%@oZ@nsVmn+zYXCRRh`<2})~NDXX^ZlCzc=40nwrr7w8 zNA~3W=w~L@{{I|35Ls7!cdotXpN(JDd~A%`DK?hQ{#&``fxj2Y6dSMm+P!vlWUV^i z(|mmM$P}Av=jV+KAAdLMtiLVM&d53P-zJ@{kGWgFQ_*)OzNPtC8#2XLOl)mr_;|;} zwZ?qh$9H3%UlbW%ajlngp!V0I&bykAt*uP)fr*zq%kZ&#r1R^WkM*yX4@Lf-xqaeS zHXr}vktx0)&z-d+!^ihdysi0o@5mItJI|es&wkh61s6^H)jXe$_*njlNdHwAoxj(7 zEbo4B-j>MTcK#2|$LdI?_}@>gFBv}GG4a{z!+!Z2;#twbiPd5G_#-1z{DwSt)~5^~ zuTNb4^Q%71-x^;Rslm?oG#^{9N26oWosqsf`?h@irI9K2ZRb~y3?F;fS$}HX*o=Ae z#Md+*8;?w}_B!v$GtVAvi2NpWHkb184@Rcgc&e_|uDPo5V(+zSKbOdQc3x{fHaD4K zb=-N$vkV{4fA1V`KGwhNebK?l{oDE3&Btm)rudg8Hg*|4-a4_fP(F75$`t?o#P(K( zkB!&3o$p$!&ia1SN$Lk|gT=mMYdc8h;V^nkMT=iy7_$5(i<1^k1 zBjYsJ&hKbGR?pVA#^bl9voRSPzs9#Ed}&noR%d;ekBx0DDmI?Z?(5nge0L;MY%HC3 zj0_(eQ|H>B&&Jp8JyB=b^6~n}6jytEti3If`TK6~#PxoOZ{GUqe6aag{*mb6$T`1e z;u^oZrN-UaZ(I5Jdy#P!+sn?{v)<}eJ^Qxv-Ob0^k||y$Rxi%W$>`!pzO(fyAG_;h zif^6xM4szD#KwD9^kDRg=rt4Dr}FVHj!f~}^W6E0k>TU7MxFI{I5LO(B6nZs8jpHd zMQ5VU^MB9FyH7Vn#$nGptL5_XrjaRL<+-!|Wcc{o6YKAIs-qeJJ+2r$#b1| ztbP6eRixk5#5Fd4c19XqSN^6{QX{TRb9NB?=^dz+7~hfMM1 z6YKxZ=$=S@|J20iHXqCXpV2juvHmEQ|4)%SeoN$hbhbC;WAnQ{QWv$4oi{We-xB$* zc+mk2`C( ze0=T56hA-Dovq)I=;bZfS>5QvH~5ni8_$mDFCy=Md}8mH$Q||S$ox8ce}7bac>ctG zN9`vcyE{6&Z_3Bovp%;*YS`R5n@9QB{MC~_%+nrrzNq=wH?`0BYf<@lUsOIeo`<6g zBKOelAHnvnGFa{Vw%FQr*1qwpAOD(L=Np@kH;+uQbJ@Atvj!U?eRV$8d@R32|1YWb zAMEE{o_Bs!Q@c*rhVHi3*m&TPqcG%16{$Q$#6}(4D{OP5ZmG6}94R&;!#HCZE6oA} ziHMt!w!x_uZ@nfEyH;C~Ddc#Op`NV3b>;7A!Pv&dODP_Ew{{hy#MxvKtWB+ozxH~~ zJon5!pAn{+{o@+FpX<4v&yV}_<9keET>d>gu=m!$9IX9Ye*_d&2;P*5iFCv-Z{R3<7^2mI)Me5c04b8{)&x6s2qeb+wf%R2>^(#}XKjXH}{=QYy z&VK*O$6M!2@qKyjJk1$CHa_)Qi`0_e+50OZ|C_~X^zgvm+XK$`dC{SP4>lj4h-8YL z?aul*5%IBpJF9j1SX=eKr(pFm9(8(G^y-1#@8x4_BUAjLfwiX|?}+^0TwWUZ{^sLa zFK5DeyEN*2N%Qd($rOKP;94g>R&V3k9hv_(2KKIeeC3=euKBz-{ymYs(b+i4$L1tc z?EAVuor7ni+oEFm&b#IeAHON;Y(9Gz-(b*m-AKyG@ihch? zq&;Uq|DBD!eC+RjnPN5S{J@;y_JQ^1Js)e|nYuVq zfA?7DyPA*hoHNCb<+=0YbB2$tQ|Euye60Vy(FY>yr0>p~n~!UJ#W%(4tUdK!irgEQ z3_LX-Z-``yeSajf$Bj!noyYdAWA%j>k$#Ki>pb$++FBO7PdlGGXZTp{Iv;I5zIV

RyYre&vx4&K+ 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