Copy Link
Add to Bookmark
Report

Doom Editing Digest Vol. 01 Nr. 221

eZine's profile picture
Published in 
Doom editing
 · 24 Apr 2024

From:      owner-doom-editing-digest 
To: doom-editing-digest@nvg.unit.no
Subject: doom-editing-digest V1 #221
Reply-To: doom-editing
Errors-To: owner-doom-editing-digest
Precedence: bulk


doom-editing-digest Tuesday, 28 March 1995 Volume 01 : Number 221

Re: stair linedefs
UDS 1.666 errors
Re: stair linedefs
Re: That max lines thing...
DEBUNK alert
Re: DOOM 1 -vs- DOOM 2
Re: DOOM 1 -vs- DOOM 2
Re: stair linedefs
Re: DOOM 1 -vs- DOOM 2
a staircase with differing floor textures!
Re: stair linedefs
Re: Tag 666

----------------------------------------------------------------------

From: fenske@rocke.electro.swri.edu (Robert Fenske Jr)
Date: Mon, 27 Mar 95 13:49:04 CST
Subject: Re: stair linedefs

Remember that you can make stairs that descend instead of the normal
ascend. I don't know how the linedef ordering of descending stairs differs
(if any) from the ascending stairs.

The 1.666 UDS states that the turbo stairs are crushing. Is this
really true?

Robert Fenske, Jr. rfenske@swri.edu Sw | The Taming the C*sm*s series:
Electromagnetics Division /R---\ |
Southwest Research Institute | I | | "The Martian canals were the
San Antonio, Texas USA \----/ | Martians' last ditch effort."


------------------------------

From: fenske@rocke.electro.swri.edu (Robert Fenske Jr)
Date: Mon, 27 Mar 95 14:04:38 CST
Subject: UDS 1.666 errors

Perhaps a list of the errors in the current UDS would be helpful.
The ones I currently know about are:

line types 105 and 111 descriptions are switched

only the cycling crushing line types lock out further sector actions
(just mentioned by Steve Benner)

creatures will not attack through 2-sided lines that do not have
the 2S bit set; they did in v1.2 but do not in v1.666 or higher

Robert Fenske, Jr. rfenske@swri.edu Sw | The Taming the C*sm*s series:
Electromagnetics Division /R---\ |
Southwest Research Institute | I | | "The Martian canals were the
San Antonio, Texas USA \----/ | Martians' last ditch effort."




------------------------------

From: mneves@eros.rdc.puc-rio.br (Marcus Vinicius de A.B. Neves)
Date: Mon, 27 Mar 1995 17:23:39 -0300
Subject: Re: stair linedefs

> Yep, this much at least I knew. (Check out Tree2.WAD, released last

I have 2 questions:

1) How can I build a "circled-stair" (that rounds a pillar, for example)?

2) Is there a .wad that implements one stair like this?

Thanks in advance.

Marcus Vinicius Neves.

------------------------------

From: fenske@rocke.electro.swri.edu (Robert Fenske Jr)
Date: Mon, 27 Mar 95 13:46:22 CST
Subject: Re: That max lines thing...

>I have a WAD with 65 sectors in a grid: from one corner, all sectors are
>visible at once. I have set all floors and ceilings such that there is a
>step between every adjacent sector. I have not managed to obtain the "No
>more visplanes"
message yet!
I experimented (but never finished) with this recently. I set
up a a long hall of sectors instead of a grid. My tenative conclusion is
that the visplanes error come from viewing more than 64 subsectors at once.
Since each subsector has a floor and a ceiling plane, the actual fault comes
from having more than 128 planes. But I was still missing something since
I could not 100% predict what would cause the error. Or for that matter
what the difference is between the "no more visplanes" error and the "visplane
overflow (#)"
error. Part of my confusion may have stemmed from the fact
that I assumed that you could always see the (sub)sector you are standing in,
but that is not always true so it doesn't get counted.

Robert Fenske, Jr. rfenske@swri.edu Sw | The Taming the C*sm*s series:
Electromagnetics Division /R---\ |
Southwest Research Institute | I | | "The Martian canals were the
San Antonio, Texas USA \----/ | Martians' last ditch effort."


------------------------------

From: Robert Forsman <thoth@cis.ufl.edu>
Date: Mon, 27 Mar 1995 15:01:07 EST
Subject: DEBUNK alert

Greg Lewis <gregl@umich.edu> ,in message <Pine.SOL.3.91.950327123648.14211A-100
000@pong.rs.itd.umich.edu>, wrote:

> They
> can also branch into two sets of stairs, if one stair is not a precise
> rectangle. Doom just regards any linedef that's oriented correctly as a
> "next stair". Note: no official testing on any of this, just my
> observations.

Well, I just tested it, and NO you can not cause stairs to split. I was
skeptical of this from the outset because I remember somebody's post from a
long time ago about how much difficulty the person had creating a staircase
that split.

His solution was to tag multiple sectors to the linedef, thereby creating
several chains at the outset.

The other "solution" is to use disjoint sectors. I can also see techniques
that use disjoint sectors whose adjacency is "behind the curtain", using
linedefs completely outside the playing field to affect the course of events.
If anyone is interested in an illustration of this technique, email me and
I'll post a sample wad as soon as I implement my MakeHiddenStaircase.

Reaffirmation of old info:

+ the linedef joining the two sectors MUST be Shoot-Through (2S) to
propagate a chain.

+ a difference in sector height does NOT halt the chain

+ a difference in floor texture DOES halt the chain

ALSO, new info:

+ a difference in sector special type does NOT halt the chain

+ (possible rehash/clarification) If the lowest numbered 2S linedef pointing
into a stair sector points out (left) into a lower stair sector from the same
chain, then keep searching for another linedef. It doesn't stop the chain
right there. This makes construction of switchback staircases easier than I
had originally thought.

In case that last paragraph was too opaque, here's something even MORE opaque,
code for my secondary highlights. Feel free to add this to your editor, or
derive code from it, just make sure you credit me.

case line_table::Stairs:
{
BitSet prev;
for (i=0; i<context->sectors.len(); i++) {
const sector &curr = context->sectors[i];
if (curr.tag == focus.tag)
prev.add(i);
}
while (prev.card()) {
rval = Union(rval, prev);

BitSet next;
for (i=0; i<context->linedefs.len(); i++) {
const linedef &curr = context->linedefs[i];
int s[2] = { curr.sect_on_side(0, *context),
curr.sect_on_side(1, *context) };
if (s[1]<0 || s[0]<0)
continue;
const sector & secta = context->sectors[s[0]];
const sector & sectb = context->sectors[s[1]];
if (prev.contains(s[0]) &&
!rval.contains(s[1]) &&
(curr.flags & linedef::ShootThrough) &&
secta.floor_txt == sectb.floor_txt) {
next.add(s[1]); // make sure we don't infinite loop
prev.del(s[0]); // we've dealt with this one
}
}
prev = next;
}
}
return rval;

------------------------------

From: fenske@rocke.electro.swri.edu (Robert Fenske Jr)
Date: Mon, 27 Mar 95 15:49:01 CST
Subject: Re: DOOM 1 -vs- DOOM 2

From v1.666 on DooM I and II can use the new line types. I know
v1.2 DooM I will ignore (i.e., do nothing) the new types so I would not
worry about any line type differences between any of the game versions.

For DooM I v1.666 on, you can have the new DooM II things in the
WAD without the game crashing; it's just that the game quits loading in
any more things when it hits a DooM II thing that it doesn't have a sprite
for.

Robert Fenske, Jr. rfenske@swri.edu Sw | The Taming the C*sm*s series:
Electromagnetics Division /R---\ |
Southwest Research Institute | I | | "The Martian canals were the
San Antonio, Texas USA \----/ | Martians' last ditch effort."


------------------------------

From: Genesis Krzyzaniak <genesisk@eden.com>
Date: Mon, 27 Mar 1995 16:04:27 -0600 (CST)
Subject: Re: DOOM 1 -vs- DOOM 2

On Mon, 27 Mar 1995, Robert Forsman wrote:

> What happens if you use one of the linedefs that was introduced with 1.666
> in a normal DOOM 1 wad?

Works perfectly, see: rrward02.wad...

> Are they used anywhere in the DOOM 1 missions?

I doubt it...

> Should we allow users with only registered DOOM 1 to easily use these
> linedefs which were obviously added to support DOOM 2?

I don't have doom 1 but if i did i would definitely want to be able to use
the new linedefs...

- --
Genesis Krzyzaniak - Genesisk@Eden.Com - http://www.eden.com/~genesisk


------------------------------

From: Ethan Brodsky <ERICBRODSKY@psl.wisc.edu>
Date: Mon, 27 Mar 95 16:14 CST
Subject: Re: stair linedefs

Marcus Vinicius Neves wrote:
>I have 2 questions:
>1) How can I build a "circled-stair" (that rounds a pillar, for example)?
>2) Is there a .wad that implements one stair like this?

I've forgotten most of my WAD building knowledge, but I remember struggling
with rising staircases when I was building Crusher. You can find it at my
WWW page or at ftp.cdrom.com (It may not be on other sites, since someone
named their one-room level Crusher and uploaded it) I remember that the
linedef numbers had to be in a certain order and the first sidedef had to
be on a certain side. The rising staircase is near the coords -3000,-350.
You can download crusher at:
ftp.cdrom.com /pub/doom/levels/doom/a-c/crusher.zip
http://www.xraylith.wisc.edu/~ebrodsky/other/doom.html

Ethan Brodsky

------------------------------

From: Brad Spencer <spencer@ug.cs.dal.ca>
Date: Mon, 27 Mar 1995 17:55:24 -0400
Subject: Re: DOOM 1 -vs- DOOM 2

On Mon, 27 Mar 1995, Robert Forsman wrote:

> For those not interested in the stairs question, here's one for you.
>
> What happens if you use one of the linedefs that was introduced with 1.666
> in a normal DOOM 1 wad? Are they used anywhere in the DOOM 1 missions? Are
> the necessary sounds in the WAD? Will they work? Should we allow users with
> only registered DOOM 1 to easily use these linedefs which were obviously added
> to support DOOM 2?
>
I use blazing doors and lifts and everything all the time in Doom. All
I do is type the number from Romero's list into DEU's "Enter a decimal
number"
and it works, sounds and all. As far as I know, all of the 1.666
linedefs work with the original game.

- ------------------------------------------------------------------
Brad Spencer - Bilbo - spencer@ug.cs.dal.ca - Dalhousie University
"Everybody is Kung-Fu Fragging . . ." Remember... God plays Doom


------------------------------

From: Robert Forsman <thoth@cis.ufl.edu>
Date: Mon, 27 Mar 1995 17:07:21 EST
Subject: a staircase with differing floor textures!

I did it. I created a "single" staircase with two different floor
textures. It uses the behind-the-scenes linedefs I mentioned in my
earlier post. Basically there are two separate chains of staircase, one
for each floor texture. The user never sees the sectors that glue the
mess together.

The whole mess was created in about 30 minutes with the PFME's new
MakeHiddenStaircase option. One thing I have discovered is that
creating staircase chains that abut is a tricky business. In the
process of rearranging linedefs, you can introduce a lower numbered
linedef into an environment where it interferes with the functioning of
a previously arranged chain.

Sorry about the size (18K). Flame me personally if you think it's too
big. Just walk through the teleporter and then walk forward to activate
the stairs.

begin 644 funkystair.zip
M4$L#!!0````(`)F&>Q[X5S:@<30``.6N```,````1E5.2UE35$$N5T%$U%P'
MN!4UVOYRP-L`%5`I4@Z](QVD!J1)EU[UTFR+6%&Q1E3$7K"BZ+4W[(@5S[$L
M]E77WJ^_;K'L_EM$4,"
S;_(E=YTXYC!<RK-YGCR3=]Y\)9DDDSDSYQLW9>#@
M:D34_7XBF9.IU22HD-(;RXJFT^ZZM*&LF*B9*:6+N$2H(XA3+B<H99$`2E$5
MBU)`5<Q9G:H`U:8]J*I!+:@U[4;5+>J&8R&L,:I.Q51447-/J@&\IT5[44W(
MU;"HD!H!5;6H`?4`Z[B&E*9:%3J;4'/HV,NB]M2&2FAOBSI1!ZI&^P`5P=>>
MU)D**K0407\![##J#:E"
G&.T-[07P3=&]6"M&#RC.M!7`JV,]J7Z:%6!1;V,
M?N=9-6J*LFOM'M02V;6V-K5%J:9%C6E_E&M9U(SZH%S;HE94%ZUSJ#NU`W+M
MVX\ZHKR/15VI"
_KI((O^3-_2?)H!E(+=$K&'F$?3+5<@JHGN-,ZB_Z._X#J-
MM>@S^I+FTC2+4J)0=*4Q%GU$G],<FFK1SU1%S*8I%OU$.;1BLD4_T";TQB2+
M_D4;T/L3+?H[_9M>H(\MVE^T$L]#,Z-IHK?H0J,M>@^U.M,HB_Y([^.*CK3H
M#_0VVC_"
HE?H#5I&UUOTH'A4/$<?6C1)3!?/T@<6M16311::&#TKVHD,[#!:
M*YX3S]"[%CTAGA'GT0J+5HF'Q%IZQZ(/Q9/B:7C`*"<^`GK+C4%,FXXTS*+G
MZ$6,PJ$6/4//8XP.L>A)RM!2NLZBN\1]XERZUJ+;Q-WB'+K&HC)QNVA'@RU:
M0T_1V72U13>(F\42NLJB:\5*H.4672FN$ZUI@$5WT+T8=P=8]#`]AMDRR*+[
MZ1'H?=VB2\1R\2B]9M$%XE*QFEZU:*FX4+2B_A;=0G=B9/>SZ$:Z%2M`7XM6
MT$W0^HI%2\1YHCEF&J.K<;7T2&=T.5IZ&G0Q.DF<)DZEFRTZ7IPL3J$RBXX6
M)XC%T,OH=^(8\3"][$:(.%L\A/ZV(T2\+1ZDERQZ6;P!5&[1[\4KHBG&.:/S
MZ1*L(W,L.I<NP`HSVZ*S<(7T_&1T&OK]9+K,HD/%4>)DNLBBV6*^:&16/.,U
MZAU(P^T:^3K6R`:8H;8-=`)6CBZN#70,5I'.3B<=!7:I12/%6'$\/&(T3(P6
MXS'#6>=WT+D*XXNY?XL-XEYZUJ+_%]^+NREKT;?B'^(NC#5&?Q'?B3LQ$NWL
M%U\#/6G1I^(+40\CE-$L]%!=K']5T1L-J!1C90*-M];_"
>LSL;XPJBERN5ET
ML$5U@0Z!M+Y3-*(Z0,?1.5;G('&@J(M5C-%4.H1NI]5N54S52=V&$6-7S-1>
MJ7LP2AD5IVJF9F`%8PLUC$YEN7YBH)B"M8>Y+?!L*M8E>^="S6FPPV@WH.E8
MW1@5`]5!"[E]DVD@5O>65N=8K%<-@9D;3Q*HA>4.Q#7HA-6'T>&8^9V!&1V&
M]>,>S"
9['TOMGFH`R:KFWC(<,[$^KCSK7(A9TP>]RKY<!:]+L6+S>KV<]A2]
MP3)W+;B!\(#10T"#X"NC!X%&P"-&KP&-Q*K(Z$V@45@Q&;T#-!JK*:,/@,9@
MI67T"
=!8K/.,RH'&H0<8?05T$.X6C/X*-!'C@-$_@,9C;;>CCK[!FC_1<M^#
MFPS,:"-0#]R_N*:BKR'5PZ(SZ6^8#6X&+,#*W:M"YQFT'KTRSZUG5%W,1)_I
M7FI.^XC=Q:'H<4Y[XVH>COG#]O8".@+7AE%MH,/H"(MJ`1U,1UI4#^AW&(>,
MZ@M]'198M"_0`LQ01@V`CJ29%C4$6HC9JJ]FBAJ+1N)H7%-&341:'(-YSJB9
M:"
J.PBQGU$(TQSK8S,UPK/]]L2JRSAO02RW0,N9&T$HZD4ZQJ+/H)18!DQD]
M76#])%IDV]X!:%^<Y9%U'%;GKA7KR['T*58EM_8LHB\P)QM8=`#T=:]8LQ;3
MG^ATK'&<ND/G&<"<N@&=B*O!J2M07>Q-6&X"9MNQL,J>27!GX0IS&@K4#RWD
M]I6A?2TKYM$XK/'],0N8NPV<PEC@-`!R9T(KI_YFOA]O+8P`:E4Q4R=A!3D>
M:R9S8\`-@%;6>1=TMJ[P<R;=C;5^F=4Y'C4O`.9T$-`)6/DYC0.2F*VL916T
M-*X8NR?1J5C;3[*HHY@G+L8]@-.1D+N$+K;H"*!+<6_A=#C0972I18<!7407
M6C07Z$+HY#0'J`WVT6QA!MU'2W`?8C1$7"
.NQ/K`GEV/FF>#96ZPN`E[AK/=
MM16W8C_AUMWAXDZQM.).,DK<B[V-N\M,%`^(972>NYKB$7$#[LYLX3%86(EQ
MR6@-T.6XRS,Z$V@Q^L+N1L5"W*<76]1)'(=[N!N[/<6)XC3T&Z,>XA1Q*^[V
MG,Z`%KUO(+/RG0YT$^ZPG!8`E>%NS^E8H)LQAC@M`KH%(XC38J#3L(_@="
K0
M<KK"^GDUT!7H04Y7`5V%E82Y%4!78_5E="/0-=B;,+H%Z%KL3!C=`70=UF)&
M]P"MP-QE=#_0]=CO,'H8:!GF+J?50H^>1NX:H4_:8"UG=`\]@#DXR,JMQCAK
M"Y:YZ?0H]AV]+#J=?L3X=ON0);09=Y4F;E^`E;L>[BP\^^=AM@V&5M;Y.'3>
M#3L\.XI2N=Q]&,^<=@.Z'Z.+4P'0`[AS<:H!E,;.QXXZC*,Y%7NB\W!;;8(]
M$J.AF%'W8/:RA5J0NPTSDM$^0$TK_!R->3*W8I]U(545CV'/R>D]]-+CV)%R
M>A?H=OC.Z1V@9GB:LF,7HV->Q=[M4BH2];'#MGLPW"
ONP(Z4K9=#[@E@3I\#
M/86=#J<_`[4S3V$Z3:,GT,;!ML^>1I^UK]BC'$QK(?6$E?L,<G=B76$+WP#=
MA56%T=^![@5BN2JI?XE5V'$SJIKZ00R%#;:0A84.%?NL.=BW_1[/1)Q^@I9U
MP)Q^%'J7M\ZBC4`=*UI[)&H-0_^SSA>@4S\1,G<$=L7#P3+W$KB'L%=@KEKJ
M+>R:'[*H)'66>*1BG[5GZESL]=T>;._4^7@.</NS#\3%8@U&):/WQ>7B#]C9
M<CH8GKV!IS).LX3V9;BMN0[/#D_CF871G\3/XH_8,W%*882L!<O<5^(3/(&M
MM>A+\32>SMQ.]:\BBR<WMXO]FW@!3W5NA_M/48HG/K?[72^FXIG2[8P?%S/%
M"WCN8K1)]!6?X+F24QOX^2EV/YQ:FW'F]AH78_UX$/.34?742^(E/!US>ATU
MO\`^B=-K0.5X-N;T(M#GD..T#N@SW'-Y=7L5Z$5<#4YO`KV,YQ5."
N@57#5.
MYP"]BF<G3LN`7D,O<KH(Z'7L]3A=!K0&S[^<K@!Z"SL_3EN`WD3/<]H,]#:>
MHSD)]/P[>(;E]#&X=[%'Y/04T'O8R7+*`+V/IV1.SP-]@"=H3H<`?8C=)*<I
M0!]A_\9I!M#'>+;GU`?H!>Q%.+4$TL<.%KOCA(ECQPSI0=[9'<=.'#AF_-@#
M1G9W6.PB-A7+#AHZ<-2H+K_%AF6W3G.5H.R.8ZON(G:W($L[3+8R;$$E9`MW
M$5NTB]CB7<26["
)VMTJP5`G9@DJPM,-D__?98>,'3AMTX+`*7&V[L1,F#AG7
M[1=X^VE.QE;?2:S?WBCK'\.R_8)V=Q;K'Z.L[W.-H.8HZQ^3L+[=_D'9*.M[
ME436/QX4]"K*^G9W%NM[M7M0-LKZQR2L;W>/H-THZQ\KP^X9]"K*^E[M+-;W
MJF90-LKZQR2L;[=64#;*^EXED?7MU@[*1EG?;A)9W^Y>0=DHZ]M-(NL?]PYZ
M%65]NSN+];W:)R@;9?UC$M:W6R<H&V5]KY+(^G;K!F6CK&\WB:QOMUY0-LKZ
M=I/(^G;K!V6CK&^W/J7QC/3;;)RL/G;[%>M[M6_0JWUA][<UYY,-V6T0E(VR
MOMTDLK[=AD'9AL'VYI,-V6T4E(VROMTDLK[=QD'9QL'VYI,-V4T'9:.L;S>)
MK&^W25`VGG5VF_SJ["^]BK*^W:9!NTTC_>S;S2<;LMLL*!O/.KM)9'V[S8.R
MS8/MS2<;LMLB*!O/.KM)9'V[+8.R+8/MS2<;LMLJ*!O/.KM)9'V[K8.R\:RS
MFX3U[;8)VFT3[.=\LB&[;8.R\:RSFT36M]LN*-LNV-Y\LB&[[8.R\:RSFT36
MM]LA*-LAV-Y\LB&['8.R\:RSFT36M[M?4':_8'OSR8;L=@K*QK/.;A)9WV[G
MH&P\Z^PF87V[78)VNP3[.9]LR&[7H&P\Z^PFD?7M=@O*YF/3`:^BLK[=[D'-
MV\(ZNU'6M]LCJ#D?&VIO5-:WVS.H>5M89S?*^G9[!37G8T/MC<KZ=O</:MX6
MUMF-9Z>,'3M8C_3>.YEUQYUM-S\[;.#X8=M?UAW[!%D*LO\+LFX\#YPP?(K^
M&F)7W8_F!NW.#<I&=^;N.=2UJ&\LZ_#V8WVOHJP[QGOE7X7X-V*581W><>_:
M#@W*QK-N;"
21W;IW;:XWXM^UQ;-A6?\X(.A5E/7[>?NSSN>P5S*H.<KZQWC6
MV8VROMV!0;M1]E<6@G;#LO%OM9QL_!NQRK#Q=I.]:YL7;%$\Z^91$EG?[OR@
M[/S@'BF?;,CG?+\BANQ6YJX1_T;,7=_X=VWQK'\,LX."7D59W^[.8GVO#@C*
M1EG_F(3U[0X.RD99WZLDLK[=(4'9*.O;32+KVQT:E(VROMTDLOY*N"
WOVOXK
M&_>N+5YS^%V;STX+>A5E_9Z<'I2='GR/DT\V9'=&4#;*^G:3R/IV9P9E9P;;
MFT\V9'=64#;*^G:3R/HC-LE[JZU[U^8T1]GM^:YM6%`VGG5VA_WJ["^]BK*^
MW>%!N\.#=]A\LB&[!P9EXUEG-XFL;W=$4'9$L+WY9$-V1P9EXUEG-XFL;W=4
M4'94L+WY9$-V1P=EXUEG-XFL/_=WUKNV9-\CE0:]BF>=W22ROMW90=G9P:N?
M3S9D=TY0-IYU=I/(;MWW2&YLQ'^/%,_ZQ_#W2%."
LE'6MSLEN$>*EW5]%65]
MKZ8&O9H:O._GDPW9W9:]F6MO_-?"E6$=KLQWR(<$6W1(<![EDPW9C?\.V;4W
M_EOBRK#N.#[H593U>W+[L\[GL%<3@IJCK'^,9YW=*.O;G1C4'&5]K^)EG=TH
MZ]N=%+0;97V[261]NY.#LE'6MYM$UC_&WV%=7\5_+5P9-MZN?XUVW%=#!P=E
MXUEG-PGKMW=;_F'D>B,)NW7_/]HZV3%!G[<_Z[R*LOXQROH^CPW:C;+^,9YU
M7D59W^ZXH.8HZWL5+^OLAC7C#KN)<LA5J8K)N>SF;"
J[6:9H2U9(9(6<1::?
M@9'!"]HB4Q)9(6>WF+K`66#((J-N"G53M+&LB#:JHC2R-+D,.8MS61S+D:DX
MC4S(Y1NH.&MR>5%V0Q:Y#%DAER++HG)DVBBA2T).%I4B*Y-+D15R&7(6N1R9
MBM7&-+(L1KUBU"]6T*N@7T&W@FX%W0JZ%?3B/&P0;MY%@@[1OL$%:5U'6
M9(D,7V`K"
UM9V,K"%KCB+&R!1U:PJ6!3P:9"VQ3:IM`VA7:IXC)DV"VF#=EB
MB4RP!_NH)U%/HAYT()<AR_6HLQ[^X$@X2LC)#?H([F?"
M9!"F4Q";2HO5INR
MQ67(69.I1"%G-Z6194D9LD(N198FIY$)N;Q8HK[<5(8,OY$5<AER%KD<F3;K
M7(8,/S:G2VBS1"
Y%5B7@H5^5$'02=)"NOPG^(<,6=*$MR/`!NM#&S>!,UO44
M_%+P2\$O!5]42=K@\@*TI0!M*<B:7(Y,A6A/(=J#+`NA$U@6PD:A-#F-3,CE
M!6@/<AFR*H!>Z%+0I:!#%<#?`OB-7(:<12Y'ID*T"
UDBER*K0M2#'55(T(OV
M(*,.=!-THYW(T+%)PH:$3@D=*)NLD&$;NB5T2^B6T`T.N119(6=A`QGZX1]\
M5H5I<Z2JR#FUA:HBYZB*GG>8DS_C/.<<KK6)HD:*8S=)\\WG>A.E89`N2X[=
M-\`\%W.,E=8XG\N\;<HZA@^I]4961U@DQ;\R]S=W/8ZRU@I,+K/.EONC#O^F
MT,]\Q\NQUUJ"R66>M^5^J#/:U.EKOC'FB&PMP.0RSYCR#)J/<A-3GFE^%^48
M6?/UD[(ZWYPOU;];2H[2I&.`DN3?!*?3/,@VM7KT;[F+S?EY^BV56FEM]469
M5_;>YOMJCOS6'$PN<[\M]T8=7@W[F&^_.29A,S"
YS"I;[H,Z_-11:MZ"G6_]
MU&_B5EJ[S5"_I]#U=1RW7(8C/1UNWGJ7F;*.X4:2HSSI"&ZD;K$Z%Z!\NRD?
M:7ZGO=.49YF[_W&F;&(0RN--6<=[RV5N-64=[8W4;::LH[OE,G?8MJ`/Y3+;
M=O@O.1Z8CKU'DF-UZ>ASN<R-]AJA'^1]]IJBW^1:.P9P'67&E'4L,I(<S4='
M%"/),5T.T-_Z2H[/HZ,UD=ILSK<UW^+6%'P>9<G1H73<SEQFF)4=A/H_F'(;
M\\WP!CLF!Z$._R[9RORSZ4D[;C$FY3I;'^-9OFUM89QCP=9)QT(B55-P&;)R
MD1V3^I]9RI1UQ#=23UK]&,/R>5.NJ^O(,TT='4&1E#+G6YC_N2RQ>C"
>Y3/F
M?!U]7IYESNNHM"3Y?PO3:"[\;V'.3S?/T1QO;JX>,ZJZZ1,=FY8D?W\_E>:@
M?BM3?YIY9N=H=7/TVT]5:.LW11V.&]E4CU553;!=_8:TNFFOCOE#LJ<IZZB@
M)*=;/4T@RS$NF^C_5J@"JU/_2E-HZNNHD*26F/HZJA_)5;;MF#N2HVDU0:U<
MYB?K@YZ+!=:N;G<U4QZBOX66'+=.QXDB5<^<;V_V%_4%GT=9<KP\'44VE^&O
M-'3D*E*U[+73WU37-O5UQ-A<AM]NUM/75!UM9!N:_STM-64=P3B7.<^4&P#E
M,@^;<GW]BQ!N%'Q-Z^(\1^;3,3%S&8ZEUE[7D0M-G7KF?=8F<UY'MB)57W`9
MYV4-P77:0W:A'3/Z%Z>CK1Z,<U5;\/EVJ+/(]C^NJ>2GB"
DT&^=;&UM3S>]"
M'*=PMKX6*F7TZVC$)/EWS,FT/^JW,?6GF"
>O4\WY_?4O>^I'>TTA*V=8/6G4
MY]B.<\RO?RGC3UI?+U7%Z-=184G.M'H:H_XL8KOZ>\4?S7GS+RDE!/<GQKE:
M:OL->N1/Q#KU_Z%,%?N.OXHI-]#_SY*/&IV-=!WYO2GKN,HD^3\)DZ@7[+8U
MYR>;)]EKS?E>V@=LL(0IX[SD_Q),I)ZHW\Z<GV2>QZ\QYWOJ;SL5Q_73\6U)
MSK)Z]+>F-YAR=^V#>M7ZH+\%W6C/]T!]CGW70]>7'/FNF_9?E5J=^AO=5VV?
M-((/WYMR-WU>KK%M_._OOUWUF%1S[/D&J/^H/8\Z<K4=GUW)_4+:1?]G4,VU
M8QBR\F%['G7D(^;\0=I/E39E'3<WESG,MEW_TL)1_G04TEQFA3G?P_Q*EC;E
M<=I/U<SJ&8<Z5]HZW5&^SO:#O@?R?Y_&:C]5<U-?QT[-99;;.MU07F/;KI]<
M^#]+8[2?JJ6IKR.OYC)7V#I=45YMVZ[OP_R?G]'ZVW+5T=37<5MSF<MMG2XH
M/V+*9V&MS67>,75T]$.2WYCS'/OP6U->3GJMXCATMV`.Y3(<T5='=23)\<TX
M-N.7ILR1&;\R91-?47UMRCH&)4F.$*:C*9+ZSI1U[&E20^QYV)*#;3]C[$G^
MGXF.(IS+'&/*$\UO4U>9LHXD2^IJ>QWU/HC_+S%*?S^I]C-Z=`3;7(;C0W;6
M?2(Y4F5G\[Z&_^<P4O_O0'4RYSMI67F.*?^'O>L`LJ.ZLG=^CS3S1UDH@1`,
M)IBDB`"1G\`(D4PVR5@#"$S.""$P7".$P.0<1/@D@R0;!"(C^"V10201)&"]
M'BB"8=<&VX7GN_Z(WGO.??WGB]VM\FYMF=I"HWJZ][\;^J5^[W7W[=/`PLW*
MCL`YBL^5_/V$76"GHZDS$GEA.GD@Z69EQ^\<R>=?'L<)7&?10Z/MSJ9S*?F)
M\!,VY(F]$\H>'/=T!,O5RGQ@\HFNU>`^)^)<)@_$\*R<1T:BWFM$/[:OU#7C
M7#K!=#P2<2C?-3@\MH/-L3HYSMMV7H29L0U'F_XL\JNQ[)-CW4=:_O1H.\KX
M\\7+8.N+KA'+-@+G3H/;#C>=7N1?)6*CXPT3_2^LSWQB_^D&Y(EU%G+N(\FQ
MSSBB%+A@:1.PQD7]6>9B>9@M"
:V'S;^MZ:P[,>["#C0&&KFH/X-\11YB[T#P
MD$FR\GK4)T)>V)[ZP"
L7]6>'+PO.#\<SG@^4S?*ZU">^7AA/?>"4B_J=A9<$
M<XGC23]HDJR\#O6)SA<"]8$Z+NIW]%Z0!T0BXO0#)LG*:U.?V'YA.^H#EUS4
MGV>\*/-$(B;U/.`YEW]`?2(#AFVI#^1R47\.T0Z4Y[*C5A.#,&Q!'4<@W)*\
M8PQN$VTM/_ASB/MQ+!U'_XY1N!5U@%!HXXW\?3+'^!GT'Q%`8YGG86\6ZVMU
M#&M'_T`W'!?S@2TZE0;7R73T%_GI@C&UE#P0547_Q/)<C_PP/NI<9\?U**CS
M8"
OO1C\V'^@?8_ZUIN,12\I]_33J$&$X+(@Z-K^%M\D##5?4L0J!A2NZ-/)F
M&TZC+9##1:=%G[:O"2EYQQM>2!YH]!+\COSMMG?(RHYY?1;V'?I1G#]O%R!B
M"
_.-#WXGO61ES,J.@ST-^P[]D+QCUWY&G6DRQ73N9SXQEX-CGQ)Q.3CR*?&6
M]?'H?QI[W,N&O<Q'T8_Y#'XG_3:[GLO*CKA])O2UG;PCZ'Y*'6#G2_`[X%=8
MOV5E1VV?BFM!_3UYQ]_]A#I$G-9YT78J1XX?%]>.[>3/0'Y83%O@54MP]$M@
M0F=E1Y]TU-EOR-\@,W`>47^&8'_T'GF@ZXI^19T90'L.CN;MZ,Z.CPH,8U%'
MF+P1ML%1FB^`3CB"_&R9:_Q@COFY.&X80MZQ;K/H_P8K6XACPWS*,MH"[U?T
MRYA_O>F,)P],=PDSR`.1/RM[9+:C4B^*/FULZ[*8?[[IG$8>F--9V7$^@3B=
ME1T!U/&F7XKUPIS]/LLPDQC5'Y#'MP"R\A&QG4\W_@'R^`J!!+_3?0G:7QW!
M'%C46?E5Y@.).BL[)JOC4+\>^QUKX!O1#^Y_3(I^+C9]1V8E&K4NB3IG6+[C
MC=Z$<H9Q/!80CT7_PGS@1XLZKNHLE#^,B76YR6S'15O;-^F?R0-]6O3]6/<;
M3<>CMS]`/^O&M`5.:U;>E/.,H[1N1IXHHF%/\D"
J%G4$5^!49^7?Q?+@'L-?
M(S_+\OW=O&>)_>KOG;XO=OVJPWFL9W#<,);C!)BE67D/^G^&^*5^C_<]]+-N
M0OU%L`V;4!^(IUGYQ]1?A/&FCCOOF+Y#F>^(OJN3)YYO&!;]+S+;36*]GC%^
M;/2#,>[O]2W#G*1CZ7,ARA#&\+C`7<W*NT>?&(-'47\AQK\>'<NY$'6/.G.-
M']+@.ABG_O[>4DE-?U/JISA6&$W_0'G-RKM1?R[GQ:.IGP+Q6(^)Y4E-9W34
MF6W\8/)ORU.FLP5UGA*[[@\CZ!,8LUEY9^J\@WS=/.I@_O;WOMX2F]?5,?$7
MP$\83EN@U6;EB;1]`O=[PO'1=H'E#V<^T(.S\@CR3\*/;$3;IZ&OCNN/[UUD
MY>-Y+.)#ASYQSX#[25.H`_3IK-P2]QZVWPCKD0?^L5V3DG\3_H-_I8&(QKIQ
M@Y=_">[5D,=W8;*ROY5$7%[=D?E$Y0T3HL_7L<9%?=R;\?>RB(ZMS<PG-K86
M8[V>,+YO;`=;'W1`M#6?NA%Y(')GY<:XM[']3%@G\KCO=0;+C*]KB$[EL8@1
MKLMC_V+-]'<LWY6RY6]&_3+&21C%]@0><%;>M<%M+5^.H7X9V-CJ7TP@,G88
MU.`^RZ8_BCSPP;-RM]CF\W$_)^8;KXZ"
CZ^"B$XA[XC>O1O</]9V?P_S:90M
MC&1Y@%:<E7>)8P#7)?[.)+Y[@CM^PGZWLH6!T<_3IC^RP?-Q7^HXZ@R0OMCK
MLOQ]$9^@JY)?A9'MP\A_S#4<G!;P;291QW/I*T6S;:8$7[H2785\'[[UX!$V
MGW&_P#.M,!`^=8VH;SJA.?H9@'LFY`=*B_GL39T68)#J`/(#^-S6\5S^()]'
MGY(,0KZN&?6-#XX$-TAZF)\^S.\!3%$=2'X@$9\<G^5S*40_(2G8?B$K.W8P
MOJ%EYPCY/JAO:(SU:C:=)O+'RPF6?R_Y$WA?9S;Y$^4DTYE#_B33$IT;\TU?
M9]/GO\D7\;I`&_&=#,PD^/L4#]%8AE!(</VJCBF,+VM(F$/^"
^Q3_)JBL9D8
MK8XR5B1NJK^-T$)$2G_.C2]V9.5[R7_$ZUK6U[_%I:OQ5W\@L^G0V._]C5\]
M\GUP3M&V-_)#S]@.UL8Z)-KB^(XKU`M^0H^8W]ML>T9;ZUL=S/Q^1&-S_*-&
MZ88YA_F]@+^J1?+X$IH$QX'%=]"R<H^H#P0YCR/O"?W0+>KWDAROMI=T-_V^
MS.^.9]`Z*.KTQ#D8R]-D?/>H8[;!W])I`A:K]HOEP3@:'/.-#X[3V@P<8.U/
MG=Z,YQD2\XT/CA'\":[\O'^[=2=N<+_HIUER-+J>Q'UU]#$?A?C>'/YUMU2T
MA&_*X6MJJQ@_V!*^=X`OZZQEFNM:?7`?&/L&K.>X3X+[!;@'@.MZ[$6P;H\U
M.ZQSXXQB;=K:['`_=7O[C>N6"
49Q3Q[?%<.7QO!5M'TL[6^E.-ADAYILLE'L
M,X\R6ZRQN/]YHN6=9/14H[C&P-=!\%V,LRWA*T7X"L>%EG^)I4N-O\S2599P
M#PKWSF99'7`O#L]L;C.^9/0.2W>:O[N,WF,4Y]9<HWB^<K_1>4;G&\6]L4>-
M/F;T2:,+C):M;*GY><[X%RSA*UCX2A:^[X7OE.$;9_@^VN],']<F'QO_B=E\
M;OR?+.]+2W^QO*\M_=T2'IXU--CXM%1LL/%EM+_103;W#FU(;%_3(&L:Q3V.
MM2T?U\L;V.\-36^XI=$-W653HUM9VL[R=S#Y!$L[69IH:6?+V\72[L;O:6DO
M2WM;VL?2OI:_G]$#+!UH_$%&#S'Z,Z.'6CK,TN&6)MLQCK#\8XT_H:$@)QH]
MV=(IQI]J]'1+4^SX9YC.6<:?8_RYEJ:;W4RCEUK^E99_C?'7&G^C\3<;O<5H
MR?)N-_YNX^^U--M\SK&\WUC>/$OS+>\12X]:>LS2XY:>L/2DI06F^Y31LJ74
MTD*S6V3I><M_V7XOMO2JI=?,S^M&EQA]R^B[1I>:SOM&_\7H[ZU=/S3ZJ=G^
MP?+^W72^M/25_?ZST:]-]C?+KYA>U?*DT"
B-EIH+#=+3:"]+_8P?:'20S:>K
M&3_,^#40:]"
`*^%00(P"(Q$:@M'W]3T-=;(09;(\V$9AF3*V031#7MJ)7Z"R
M?*F^JU)G)]$.,IS7C(?`C-T@6:CF,EW^@<T1T:>MCI;;R6B(`GR_HV^C+#P>
M\E`&4)3I+5V"X]5DN1V.BZ\\(@Z#QZ,,3X6-L^,VR9NL0^`*XV61QD`9OMB%
MF(#4+A=#@_W[!K^$]%5=K(P;$$Y46;WL-6T1Q!%@34']C$]"
U'E=>PAB#:PD
M&67+$04"F21O:$]!2]3W`\H+^HJ^K(P#81W,XAL\Q;;Z&GU17U!Z04D:$5>"
MZ!/7>4G["&)(<KMTN=`.]'E]#CYK=A+M(.MK\S/L4'?H6TEB6=+ES^@B13F]
MS1C3PC8#?=;V.VGL]^B+/B'K;VMQK%^6QOJY3)+>MC9KW9C0FITDO6Q-T-BW
M-@G%/G*=HJT#B&N@7?<4L0V=[9$NU%01EY#+I#-0!EK6IY7Q"
M*>M=?908;G
M6(B90-UA5ZHR<@(Q$-6G=($BI@*R]N[MS&N/LB?U"46<16L\7JBF-1F>`\&+
M2*OX\;PLT!F*/1SB)JPLTM3.LH"
B+(_K8\I8C8R+99.5"]$3B'.H/JJ/*&,T
MI*LLL`-]6!]:P2[0SF5XCHF2H2Q^O-#ILK3:BF<9G;E/E"
^7A<XU91UAW(?Y
MU.Y&JXC^4+;/?'U0V^MDI2BSXU37DP=4_PM9FY7EAS)/V^ID;5$6JFW5]>5^
MQ2^4Q?-<AG;90.Y3Q*3@/#()RE<%19E^J[^A79>,7FBWD<Q=X7BH5[3OW-#V
M#LH^LG.3,OSR^LW1V:Q?JW35/67]I/,>_37'63Y>TCK9O3HR]GON,ZWFLA&V
M-PEU=BB?C3;2N_1.15P-ZEZ*=<YE=^L88<R-C9<TMDL:=4;C?D&MS;Q>::SG
M<-O[Y./:1D:4N<ZZMB="S$R*K1G/,3O_FEPVQ*ZU$"N$X]G_36F5OYI0ASOT
M=F6\3TW&7XC_Z1PG)45\$62AJ95V3J7S-KU5&2-4D^$7XX8ZMY1;Z!-U<)^A
MTW5"YQ:(R4#LC\GL?^IK4QOI++U)&7-D/M5D\*E1YV;=1G`$SEG1I^N$SJT1
MGX$8*HR7(N*J\(OQ59TWZ@V*&"
NT69Z7-BE]!KD>8Z+(L51$C!=^!=)K]1I%
MS%?N$W7/9=?I]CQ>;L?SJ!A(K](KT2Y%K!WU98'L:OV1M*_@TX\'V0Z(%[`:
MN9V7SW6D<[SM:1&WQK9N00P;?H%*YQ5Z.?JHA>T2\[0ED$Z4RQ3Q;SA>:XO0
M+F4]T^JE>@GKQ_.A5@=O@XOU5RO(>#Y$NJM<5.?3?>6R7?#\KM/*@':)97$=
MZ=P9SP)1(_?I_1=E^/89>QJRO&];7&<[V[]K/!Z.HSBG24O5"W4FYB7*`N=6
M97N"
7J`S%+%V[;'?H6^CIPGT?)U>L[/_<SO*]K9KA5(<$_EQ7*=4W4OV%<[>
M-N_FYT-^/IVGOXSC)<3QV=76/Q%%'U%F-6GJ&DMI=7\YE[*\G"6>8Z$)]!=Z
M-GWF92FY'67GZ('R;9]IE!T@![$.WF9>=E#(]K-K(,1"
PJZ]F+*M;&0A[K!Z
MEDY3Q$BR?K5Q!EE:/5.G8MTL^ABLMTNKB-<J<7S:V&U!?"6B(!%C6:J>H5/0
M#RVM')^PRV5I=9*TL6^YWA9];=2H\U.[3FNK\XFU!A3KRFEZJK;5?"
)N,Y=I
M]70]7#3V0_UX@>QD/4GQBVM_,65>+CM%CV"[^-AUG^U1-EF.M+FUZ[SE6D7:
M5CU13U"
M=IWO^1A$>8_7X[!6U=FUU61'V74G8S0E7]\1P>GT6#T&]6MJC7,=
MZ]>$N,ZVZK%R-&2U\>(RUSE&CI.V?#YK\;)C[(+^7(X7K;5GWM8N.\RN?],Z
MF9]_ON?8$_=I.FOEY+KBLM"YN5TO(]Z4;89YNAJX/H`>I3_7$/<O7$^J@?L7
MT"
/U"$6,JMNY?FN4X5E,B&L<]W-5_"J13M;#%;'9+(NM<1+W#*"':AOW$[#C
M>DN9ZQRF4P0QL.[3?96B['2[S@]Q/ZBQ#.U1=II=_R-.F_W7S#CKBE.M3-*?
M*7]ASHIYI6;&=5>FR2&*F&S.2\U"
.Z=ME9_JP=JV@HR_FMO,[FPYB#+T7RGZ
M=!VMG"6_$/SB/-^,.&Q$7P?2`_4`U5I9VIB'LH#NKS]1Q(1SO8UVI:ASKNWQ
M(<,Y78K'*46=<_`\%K'P(MUL?+$]7"
>MG"GG\7Q(X_HG\7P`W4?WUE!W/H0Z
MV;YZOB`F/#\?<)Q<MI_.L./5U@?FE2+=4_>`SWAN(K:Z2[:7SA3$F+L=?`9$
M35-V@5PHB('G/JL9\?#XQ;CXRH]U=VN7=LK:FU/*G*:5W717A2:O.Z)^+ON5
M7(P0+<Z#4FRGG=.TLHON3)_<>T>[7':)7"
J(P><^JXAX?/YB&TS4G12Q^9Q;
MBZV4.4TK$W1'A2;W4E$_EUTN5[`L/!^*?KP0=2Z3*X4Q^-YF;)<0=2Z2JX0]
M;?-\?;N@_W^D.]C8[6H7C%VG6AFO0;T][1JHKLT@VUZOE5#79J%.=HU<)Z&N
MS>#3J5:VU6UB/]AL5]>>D&VG-TBH:\]0)[M>;HS]8&M5;+.\7;?6K;1+)K$]
M!>\@5&;)ECC':N,3YQW'J9V'6^@XRCCO1GV7:>5FN85UR-O:9:YSD]PJFOML
M07MBS+O.U7(;VYK7`<TV?W)\0A:JTZ7$-LOKWM76H;*Y;J9=LC2V&=X5"94[
M9%/E>R+8:Q3QSDA@_:326AFKFU#6RG*ZOLM"
Y4ZY2UKKZ@X[GG]F-T9':VNM
M[F[GLE"Y&\_7ZN9!J4C%:6MEE(Z,<UV0^CD2OD?H<&U=P:ZU)N-S)8Y!/S?A
M$W,6Z,:ZD7;)/,]IJ,R5#97OT,1Y%WFY;`Z>V];-K;!SVEK90-=7O,/"
-JN;
MDU&6'^IZJ'N=76M-=I_<CS;CG)S&X[E.J/Q6YK'_?!Y,8UE<=H\\('B')^\C
MX]D/:4=[QSJZMD*6]U%:DTEE79TO>.\E[R/8<:]H=C_0M12RO(_2FDPJB*&2
MNG/:VZQ$G59=4[W_6B5O8U#(UM!A;&M>PT;]7/8HOMY;U[=YOT.VN@Y5O(>4
MMUG:P5_-*.=JNJI*75OG_8"Z#-'!VKZ"'7]1AF>]^,7]2SR.ZTCE"3Q#QKM&
M+*>73Z/L<3S[J^L'Y*51]@B>'=;&O,1Q[;(')16\\X1VX5K:@;>@VD@'Z4#%
M+\@TRKBF&ETD`Q2_O#U=QGG4Z#.RBN*7]X/+.%<:?5;Z*]]WLKJWY\?#FF7T
M.>FG>.\J]CME7.>-/B]]%5Y8EJ+G<:XT^H+T@5VM?K3#G&?T1>FM?*_*KP.:
MI8-O317M_XY>VE.%QTL;7*8=I%^'KU^6'O_)I\NTXR5Y1?A.&G8&+$,:ZY=V
M%*UY^,Y:YO,G\C"
^05OT52G5C>M21QKK7NIHTNZJ=>-::[*TXS5Y7?CN6QR?
MR/-^2#NZ::/RG;@X)FC'_DL[WK1M:MK1-0;S\0E9@VU[\`MVWN]=LH*^)7S'
MCC[=5UN4+9&WA>_BQ7&&O#3*WI!W)._;O*V\[=*.Q?*NI!U=8]#XBNND'0ME
MJ83:VN'K0^R'RNVR#/OKEIK,]]Z9R:HG,[9$9?<)N^T];M(F,F'2/KL>.#J/
MC/IG2`K_*V\-_[12G_2-RD[C]]T1,;,3=AN_[^AQB$K$DTE(\,;IMR6--<F8
M;TGDO[7Y1R1COG/)Z.]<\MVWP?_/=OO^M/7WIW_^)Q+,;\C9=-*82$?723"_
MH75`$6>8K>#MV^W6^#T<(2M'_$K)2LG_[8RT\F_EW\J_E7\K__Z1OZ\E&R9#
M9$'AZ4):6%1XMO!\X<7"
RX7%A=<*;Q26%-XN+"M\4/C7PH>%CPN?%;XH_+'P
M5>&OA;\5_E[H+&2%0M(M*28]DEY)GZ1?LDHR,!F<K)H,388E:R9K)>LDZR7K
M)QLF&R<CDE')F&1LLEDR+MDRV3K9-@G)]LF.R4[)SLFNR>[)'LE>R3[)?LG^
MR8')P<DA25MR6#(Y.3(Y*CDF.2XY(3DI.24Y+9F23$VF)6<GYR2_3*8G,Y*9
MR47)Q<FER>7)E<G5R;7)]<F-R<W)K4DIN2.Y*_EU<N]_M'.EP5456?AT^IS3
MW9>$)>P!@@'"
%B+[:HP0\D+"D@`).P@,`@JR+XHCLLL.L@L,LD1DD!V1061&
M1Q`'<$%$ALD@,BB+R`ZR8^R^"
5-,R?P0*YFJ*7_TO=WG?*_Z^[JZWJM[7Y]/
MOBG7RO5RH]PLM\BM<IO<+O\LWY-_E3OEA_(CN4?NDY_(S^3G\@OYI3PL,^01
M>50>D\?E*7E6GI<7Y65Y55Z3-^0M>4=F2H$2"14:S(,AF`\+8$$LC$4Q#$MB
M.);!2E@-ZV`];(`Q&(L-,0[C,0$3L1FVP!1LA:G8!MMA!^R$7;`K=L<>V`N?
MQCXX`)_'T3@>7\9).`6GX0Q\!6?C7)R/"
W$Q+L&EN!S3<26NPM6X!M?A!MR$
M6W`K;L,=N!/WXGX\@`?Q$![&##R"1_$8'L<3>`J_P^_Q'%[`2W@%?\#K>!-O
MXUT$"
B(D)DT>!5->RD^A5(B*4#$*HY(43A%4EB*I`E6B*(JFJE2=:E)MJDOU
M*89BJ2'%43PE4"(UI>:43"VI-:516VI/':D+=:7NU(-Z4F]ZAOI2/QI`@V@(
M#:,1]"*-HK$T@2;15)I!LV@N+:!%M(2643J]06_26EI/&VDS;:&MM(VVTP[Z
M"
[U/']`NVDU_H[WT,7U*^^D`':1#=)@RZ`@=I6-TG+ZEDW2:SM!9.D\7Z3)=
MI6MT@V[1'?J1@(,8F5FSQ\&<E_-S*!?B(ER,P[@DA_,C7(;+<7FNR)6Y"C_*
MU;@&U^(Z7(\;<`S'<D..XWA.X$1NRLTYF5MR:T[CMMR>.W)G?I*[\>_X*>[%
M3W,??I;[\T`>QB-X%(_A<3R!)_)DGLK3>2;/XCD\CQ?P0E[,2W@I+^=T7LFK
M>#6OX76\@3?Q6_P19_`YOL"
7^`K_P-?Y)M_FNYS)0DE%2BFC\J@0E4\54`55
M8554%5<E5"E56D6H&BI.M5'M5`?52751755WU4/U5+W5,ZJOZJ<&J$%JB!JF
MGE,CU._52#5*C5'CU`0U44U6L]1\M50M5^EJI5JE5JLU:IW:H#:IM]3;ZD_J
M'?6N>E]]H':IW6J?^J<ZKVZKNRI3"
2TU::6-SJ-#=#Y=0!?4A75175R7T*5T
M:1VAR^I(74E'Z6A=5=?4";JS'J@'ZZ%ZN'Y>OZ!?U"_IT7JL'J]?UI/T%#U-
MS]"OZ-EZKIZO7]6+]&MZF5ZA7]>K]0Z]7W^M_Z6_T2?T*7U!W])@@@P:-MIX
M)MCD-?E-J"
EDBIAB)LR4-!&FK(DT%4RTJ6<:FR33S+0P*::5Z6:&FI%FE!EC
MQID)9J*9;*::Z6:FF67FF'EF@5EH%ILE9JE9;M+-2K/*K#9KS#JSP6PR.\P^
M<\`<-(?,89-ACIBCYI@Y;KXU)\UI<\:<->?-17/97#77S`USR]PQ/QKP@CST
MV,OG%?=*>:6]"*^L%^E5\"IY45ZT5]6K[M7T:GMU/?LPG/G+&KA2E<R<O`9E
MWW\YLX?YU/TMZ+=Y?]6\?_0+DEW/%=FMR34.!$7\.T-^O\PH:^2*;D+]<C8W
M<B4[KI0L-]>&_.*L+&8&\D"PY>=;#&6ZUTR.7XAO#W2/7VYR\YP=4B;XK,)\
M8YDL5B&^F4_XOSDY>Y[_U7[Z?YU7^/><O#X<L]]:SK6*HI*(%ZX7$`G^_3&H
M(@*BB<A-%DG0%)I!"
@R'YT`+(\J)2%%>5!`514/12,2)QMD<^\*ST,]'H2"+
M\T1>D4_D%X5$85%$1&4K<)98]7T#08>/$M'B45%55+.:$D62:"
J:Y:JVMM`.
MVD,'9Q$ARHBR5EL]45_$B%CQA%7G$.XX:1^;GP"N/L@&!%HU144Q4<K/1_LF
M7+6S<=5$=5%#U!2UK([FHH5(%BFYJJ<#U!<-Q&-6P>/^O"
5$R6R>56R_EJ@M
MZEA&+7\5IZ6P'%;\+#H$7H<W_%X"-(%$F`K3X$/8#7OA"_N@?@VNPQTHX,\;
M`X]#+,1!?QAF8R&B@`@5!45Q$2;"16GQB(CP4<Z:JKMOE#,=9L!,</'*.;:6
M3M//%67I:0XM(!E:PF@8"
U-@+:R#];#=MVUX#W;Z&AVJFV^L^)1?WCT,W`%0

M9SCFC$LVP]L6?Q5NP6VKUF'+07G?]NK>9\:#.W`X"V;#'%CLFS!MS;$=\F"E
M*[.UN@*H2&@%'6$23+9JE\!K-K<6[,.<R"."15V??P7?[+4R=(+.T`7^`/NL
MNAMPTRH4(DA(X=`.YTJFHJ`W#+2ZW%'%A;#(HK=:_(.8-89X^!+.PCDX[X_K
MP1/0$!K9T06X")?@LA^M`4?@J^S^PZ_!L@>L@CL@G0ZK[EN'03`"1L)+=@VR
MHO=T.YNCD;#`F>1D.B/)@3#/F>'\%TT!>`%V^-8A!ZV^0_!W.`/?_X?"GM`+
MAEK4N[Z!R2[88S&'X1^0X2Q>?,W._&J/'7T%5W)L9SRHN:(-=UCM'=]"
ZSA\
MYT?3H`T\"5U]^ZQ--O<Q'("OX9A%N&Q7^`0^A<^=S4<N,ST*W_CV$Z?O8_D9
M[(<3<-)&7<P=>GKX68*S7SRV:-2RFOO[QHV=H69:8E)RD]0LPYC^H?8;(RDY
M$!](2%UA^_MC`5*3XOWQX%8`&Z7]U0FT3@NT#Z26:0/P:G&;#S3QO;&V]P<8
M:/.IJ8'&:2FM4RL/!KA:%"`Y)3[@`.%3`(9[#N^G8>Y<@*IDM0>:V@C`SH5V
M%Q<"
B&N>TKB9)?D34$L!`A0`%`````@`F89['OA7-J!Q-```Y:X```P`````
M`````````````````$953DM94U1!+E=!1%!+!08``````0`!`#H```";-```
"
````
`
end

------------------------------

From: Dave Worth <mbworth@argo.unm.edu>
Date: Mon, 27 Mar 1995 16:12:01 -0700 (MST)
Subject: Re: stair linedefs

The best way is to make the gap as was suggested then to move the
verticies together, this is how I have done it in the past.

hope to have helped. :)


------------------------------

From: fenske@rocke.electro.swri.edu (Robert Fenske Jr)
Date: Mon, 27 Mar 95 13:34:43 CST
Subject: Re: Tag 666

My understanding was that the 666 tag gets activated when the last
"boss" creature is killed, with the DooM I bosses being the baron, cyberdemon,
and spider demon. I don't know which DooM II creatures would be considered
"bosses". I also thought that the 666 tag only worked on E?M8 levels. On
the other hand I don't know of anyone who ever really experimented with the
666 tag.

Robert Fenske, Jr. rfenske@swri.edu Sw | The Taming the C*sm*s series:
Electromagnetics Division /R---\ |
Southwest Research Institute | I | | "The Martian canals were the
San Antonio, Texas USA \----/ | Martians' last ditch effort."


------------------------------

End of doom-editing-digest V1 #221
**********************************

← previous
next →
loading
sending ...
New to Neperos ? Sign Up for free
download Neperos App from Google Play
install Neperos as PWA

Let's discover also

Recent Articles

Recent Comments

Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT