commit 2c17544f3ffb83279ae300d53ca08198e41aeb1a Author: Joe Taylor Date: Thu Dec 22 16:40:53 2005 +0000 initial import git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/WSJT/trunk@1 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 diff --git a/Announce.txt b/Announce.txt new file mode 100644 index 000000000..f75553a79 --- /dev/null +++ b/Announce.txt @@ -0,0 +1,91 @@ +To: Users of WSJT +From: Joe Taylor, K1JT +Subject: WSJT 5.9.0 +Date: November 14, 2005 + +I am pleased to announce that WSJT 5.9.0 is available for free +download from the WSJT Home Page, +http://pulsar.princeton.edu/~joe/K1JT. It should appear soon +on the European mirror site, http://www.dk5ya.de, as well. + +I believe that all reported bugs found in beta-release version 5.8.6 +have been fixed. In addition, new enhancements have taken the program +well beyond the capabilities of the baseline comparison versions, +4.9.8 and 5.8.6. + +The new WSJT 5.9.0 is faster and better than previous versions in a +number of ways. A brief description of the enhancements since version +5.8.6 can be found at +http://pulsar.princeton.edu/~joe/K1JT/UpdateHistory.txt. There are +many program changes, so be sure to read this information carefully +before trying to use WSJT 5.9.0! + +Of course there may be some new bugs, and perhaps I have overlooked an +existing problem that you already know about. Please let me know if +you find shortcomings in version 5.9.0, or if you have suggestions for +further improvements. + +Sorry, I have not yet found time to implement EME Echo mode. When +that is done, and when I have finished some further enhancements to +the decoders, WSJT 6.0 will be born. With some luck, there may also +be a new User's Guide at about that time. + +With best wishes, + -- 73, Joe, K1JT + + +Additional Information for Programmers +----------------------------------------------------------------------- + +WSJT versions 5.8+ are the result of a complete re-write of the user +interface, timing control, and audio I/O portions of WSJT 4.9.8. My +principal motivation was to make the program multi-threaded, both for +real-time operational convenience and for performance reasons. +Another strong motivation was a desire to move the program away from +its dependence on a proprietary compiler (Microsoft Visual Basic) and +a single computer platform (Windows). + +The user interface of WSJT 5.8+ is written in Python -- an elegant, +open, cross-platform language that has been a pleasure for me to +learn. The remainder of the program is written mostly in Fortran, +with some routines coded in C; much of that code has been carried over +directly from WSJT 4.9.8. + +I hope soon to release the source code for WSJT under the GNU General +Public License (GPL). To this end, I have separated out the one piece +of proprietary code formerly in the program -- the soft-decision Reed +Solomon decoder licensed from CodeVector Technologies (CVT). A driver +for this decoder, optimized for JT65, has been compiled into a +stand-alone executable that is now distributed as part of the WSJT +installation package, but not part of the program itself. With this +approach I can honor all provisions of the CVT license, and at the +same time release everything else as an open source program under the +GPL. + +WSJT 5.9.0 now includes an open source hard-decision Reed Solomon +decoder based on code written by Phil Karn, KA9Q . WSJT uses this +decoder automatically if the proprietary CVT decoder is unavailable. +In such instances the "deep search" decodes retain their full +sensitivity, but fully general decoding independent of the callsign +database will be less sensitive by 2 or more dB, depending on signal +fading characteristics. Separation of the program into two executable +units is transparent to the user. + +WSJT 5.9.0 uses the following open source libraries, which are also +available under the GPL: + + 1. FFTW, by Matteo Frigo and Steven Johnson, for computing Fourier + transforms + + 2. "Secret Rabbit Code" or "libsamplerate", by Erik de Castro, for + accomplishing band-limited resampling of data + + 3. RS, by Phil Karn, KA9Q, for Reed Solomon encoding and + hard-decision decoding. + +I hope that the open release of WSJT source code will encourage others +to read and understand the code, get involved in improving WSJT, and +perhaps porting it to other platforms. Versions of the CVT +soft-decision decoder for Linux or Macintosh will be easy to compile +and distribute, if there is demand for them. + diff --git a/Audio.f90 b/Audio.f90 new file mode 100644 index 000000000..dc751ecc9 --- /dev/null +++ b/Audio.f90 @@ -0,0 +1,1248 @@ +! Fortran logical units used in WSJT6 +! +! 10 wave files read from disk +! 11 decoded.txt +! 12 decoded.ave +! 13 tsky.dat +! 14 azel.dat +! 15 debug.txt +! 16 c:/wsjt.reg +! 17 wave files written to disk +! 18 test file to be transmitted (wsjtgen.f90) +! 19 +! 20 +! 21 ALL.TXT +! 22 kvasd.dat +! 23 CALL3.TXT + +!--------------------------------------------------- AudioInit +subroutine AudioInit + + + return +end subroutine AudioInit + +!---------------------------------------------------- a2d +subroutine a2d(iarg) + +#ifdef Win32 +! Start the PortAudio streams for audio input and output. + integer nchin(0:20),nchout(0:20) + include 'gcom1.f90' + include 'gcom2.f90' + +! This call does not normally return, as the background portion of +! JTaudio goes into a test-and-sleep loop. + + idevin=ndevin + idevout=ndevout + call padevsub(numdevs,ndefin,ndefout,nchin,nchout) + + write(*,1002) ndefin,ndefout +1002 format(/'Default Input:',i3,' Output:',i3) + write(*,1004) idevin,idevout +1004 format('Requested Input:',i3,' Output:',i3) + if(idevin.lt.0 .or. idevin.ge.numdevs) idevin=ndefin + if(idevout.lt.0 .or. idevout.ge.numdevs) idevout=ndefout + if(idevin.eq.0 .and. idevout.eq.0) then + idevin=ndefin + idevout=ndefout + endif + ierr=jtaudio(idevin,idevout,y1,y2,NMAX,iwrite,iwave,nwave, & + 11025,NSPB,TRPeriod,TxOK,ndebug,Transmitting, & + Tsec,ngo,nmode,tbuf,ibuf,ndsec) + if(ierr.ne.0) then + print*,'Error ',ierr,' in JTaudio, cannot continue.' + else + write(*,1006) +1006 format('Audio streams terminated normally.') + endif +#endif + return +end subroutine a2d + +!---------------------------------------------------- decode1 +subroutine decode1(iarg) + +! Get data and parameters from gcom, then call the decoders when needed. +! This routine runs in a background thread and will never return. + +#ifdef Win32 + use dflib +#endif + + character sending0*28,fcum*80,mode0*6,cshort*11 + integer sendingsh0 + + include 'gcom1.f90' + include 'gcom2.f90' + include 'gcom3.f90' + include 'gcom4.f90' + + data sending0/' '/ + save + + ntr0=ntr + ns0=999999 + +10 continue + if(mode(1:4).eq.'JT65') then + if(rxdone) then + call savedata + rxdone=.false. + endif + else + if(ntr.ne.ntr0 .and. monitoring.gt.0) then + if(ntr.ne.TxFirst .or. (lauto.eq.0)) call savedata + ntr0=ntr + endif + endif + + if(ndecoding.gt.0) then + ndecdone=0 + call decode2 + ndecdone=1 + if(mousebutton.eq.0) ndecoding0=ndecoding + ndecoding=0 + endif + + if(ns0.lt.0) then + rewind 21 + ns0=999999 + endif + n=Tsec + if(n.lt.ns0 .and. utcdate(1:1).eq.'2') then + write(21,1001) utcdate(:11) +1001 format(/'UTC Date: ',a11/'---------------------') + ns0=n + endif + + if(transmitting.eq.1 .and. (sending.ne.sending0 .or. & + sendingsh.ne.sendingsh0 .or. mode.ne.mode0)) then + ih=n/3600 + im=mod(n/60,60) + is=mod(n,60) + cshort=' ' + if(sendingsh.eq.1) cshort='(Shorthand)' + write(21,1010) ih,im,is,mode,sending,cshort +1010 format(3i2.2,' Transmitting: ',a6,2x,a28,2x,a11) + sending0=sending + sendingsh0=sendingsh + mode0=mode + endif + +20 continue + +#ifdef Win32 + call sleepqq(100) +#else + call usleep(100*1000) +#endif + + go to 10 + +end subroutine decode1 + +!---------------------------------------------------- decode2 +subroutine decode2 + +! Get data and parameters from gcom, then call the decoders + + character fnamex*24 + integer*2 d2d(30*11025) + + include 'gcom1.f90' + include 'gcom2.f90' + include 'gcom3.f90' + include 'gcom4.f90' + +! ndecoding data Action +!-------------------------------------- +! 0 Idle +! 1 d2a Standard decode, full file +! 2 y1 Mouse pick, top half +! 3 y1 Mouse pick, bottom half +! 4 d2c Decode recorded file +! 5 d2a Mouse pick, main window + + lenpick=22050 !Length of FSK441 mouse-picked region + if(mode(1:4).eq.'JT6M') then + lenpick=4*11025 + if(mousebutton.eq.3) lenpick=10*11025 + endif + + istart=1.0 + 11025*0.001*npingtime - lenpick/2 + if(istart.lt.2) istart=2 + if(ndecoding.eq.1) then +! Normal decoding at end of Rx period (or at t=53s in JT65) + istart=1 + call decode3(d2a,jza,istart,fnamea) + else if(ndecoding.eq.2) then + +! Mouse pick, top half of waterfall +! The following is empirical: + k=2048*ibuf0 + istart - 11025*mod(tbuf(ibuf0),dble(trperiod)) -3850 + if(k.le.0) k=k+NRxMax + if(k.gt.NrxMax) k=k-NRxMax + nt=ntime/86400 + nt=86400*nt + tbuf(ibuf0) + if(receiving.eq.0) nt=nt-trperiod + call get_fname(hiscall,nt,trperiod,lauto,fnamex) + do i=1,lenpick + k=k+1 + if(k.gt.NrxMax) k=k-NRxMax + d2b(i)=dgain*y1(k) + enddo + call decode3(d2b,lenpick,istart,fnamex) + else if(ndecoding.eq.3) then + +!Mouse pick, bottom half of waterfall + ib0=ibuf0-161 + if(lauto.eq.1 .and. mute.eq.0 .and. transmitting.eq.1) ib0=ibuf0-323 + if(ib0.lt.1) ib0=ib0+1024 + k=2048*ib0 + istart - 11025*mod(tbuf(ib0),dble(trperiod)) - 3850 + if(k.le.0) k=k+NRxMax + if(k.gt.NrxMax) k=k-NRxMax + nt=ntime/86400 + nt=86400*nt + tbuf(ib0) + call get_fname(hiscall,nt,trperiod,lauto,fnamex) + do i=1,lenpick + k=k+1 + if(k.gt.NrxMax) k=k-NRxMax + d2b(i)=dgain*y1(k) + enddo + call decode3(d2b,lenpick,istart,fnamex) + +!Recorded file + else if(ndecoding.eq.4) then + jzz=jzc + if(mousebutton.eq.0) istart=1 + if(mousebutton.gt.0) then + jzz=lenpick + if(mode(1:4).eq.'JT6M') jzz=4*11025 + istart=istart + 3300 - jzz/2 + if(istart.lt.2) istart=2 + if(istart+jzz.gt.jzc) istart=jzc-jzz + endif + call decode3(d2c(istart),jzz,istart,filename) + + else if(ndecoding.eq.5) then +! Mouse pick, main window (but not from recorded file) + istart=istart - 1512 + if(istart.lt.2) istart=2 + if(istart+lenpick.gt.jza) istart=jza-lenpick + call decode3(d2a(istart),lenpick,istart,fnamea) + endif + + fnameb=fnamea + +999 return + +end subroutine decode2 + +!---------------------------------------------------- decode3 +subroutine decode3(d2,jz,istart,filename) + +#ifdef Win32 + use dfport +#endif + + integer*2 d2(jz),d2d(60*11025) + real*8 sq + character*24 filename + character FileID*40 + character mycall0*12,hiscall0*12,hisgrid0*6 + logical savefile + include 'gcom1.f90' + include 'gcom2.f90' + + if(ichar(filename(1:1)).eq.0) go to 999 + + FileID=filename + decodedfile=filename + lumsg=11 + nqrn=nclip+5 + nmode=1 + if(mode(1:4).eq.'JT65') then + nmode=2 + if(mode(5:5).eq.'A') mode65=1 + if(mode(5:5).eq.'B') mode65=2 + if(mode(5:5).eq.'C') mode65=4 + endif + if(mode.eq.'Echo') nmode=3 + if(mode.eq.'JT6M') nmode=4 + mode441=1 + + sum=0. + do i=1,jz + sum=sum+d2(i) + enddo + nave=nint(sum/jz) +! sq=0.d0 +! nsq=0 + do i=1,jz + d2(i)=d2(i)-nave + d2d(i)=d2(i) +! if(abs(d2d(i)).gt.5) then +! sq=sq+dfloat(d2d(i))**2 +! nsq=nsq+1 +! endif + enddo +! rms=sqrt(sq/nsq) +! sig=(1.414/rms) * 10.0**(0.05*(-24.0)) * (2500.0/5512.5) +! do i=1,jz +! d2d(i)=nint(500.0 * (gasdev(idum) + sig*d2d(i))) +! enddo + + if(nblank.ne.0) call blanker(d2d,jz) + + nseg=1 + if(mode(1:4).eq.'JT65') then + i=index(FileID,'.')-3 + if(FileID(i:i).eq.'1'.or.FileID(i:i).eq.'3'.or.FileID(i:i).eq.'5' & + .or.FileID(i:i).eq.'7'.or.FileID(i:i).eq.'9') nseg=2 + endif + + open(23,file=appdir(:lenappdir)//'/CALL3.TXT',status='unknown') + call wsjt1(d2d,jz,istart,samfacin,FileID,ndepth,MinSigdB, & + NQRN,DFTolerance,NSaveCum,MouseButton,NClearAve, & + nMode,NFreeze,NAFC,NZap,AppDir,utcdate,mode441,mode65, & + MyCall,HisCall,HisGrid,neme,nsked,naggressive,ntx2,s2, & + ps0,npkept,lumsg,basevb,rmspower,nslim2,psavg,ccf,Nseg, & + MouseDF,NAgain,LDecoded,nspecial,ndf,ss1,ss2) + close(23) + +! See whether this file should be saved or erased from disk + if(nsave.eq.1 .and. ldecoded) filetokilla='' + if(nsave.eq.3 .or. (nsave.eq.2 .and. lauto.eq.1)) then + filetokilla='' + filetokillb='' + endif + if(mousebutton.ne.0) filetokilla='' + if(nsavelast.eq.1) filetokillb='' + nsavelast=0 + ierr=unlink(filetokillb) + + nclearave=0 + nagain=0 + if(mode(1:4).eq.'JT65') then + call pix2d65(d2d,jz) + else if(mode.eq.'FSK441') then + nz=s2(1,1) + call pix2d(d2d,jz,mousebutton,s2,64,nz,b) + else if(mode(1:4).eq.'JT6M' .and. mousebutton.eq.0) then + nz=s2(1,1) + call pix2d(d2d,jz,mousebutton,s2,64,nz,b) + endif + +! Compute red and magenta cutves for small plot area, FSK441/JT6M only + if(mode.eq.'FSK441' .or. mode.eq.'JT6M') then + do i=1,128 + if(mode.eq.'FSK441' .and. ps0(i).gt.0.0) ps0(i)=10.0*log10(ps0(i)) + if(psavg(i).gt.0.0) psavg(i)=10.0*log10(psavg(i)) + enddo + endif + +999 return +end subroutine decode3 + +include 'pix2d.f90' +include 'pix2d65.f90' +include 'blanker.f90' + +!----------------------------------------------------------- savedata +subroutine savedata + +#ifdef Win32 + use dfport +#endif + + character fname*24,longname*80 + data ibuf0z/1/ + include 'gcom1.f90' + include 'gcom2.f90' + include 'gcom3.f90' + save + + if(mode(1:4).eq.'JT65') then + call get_fname(hiscall,ntime,trperiod,lauto,fname0) + ibuf1=ibuf0 + ibuf2=ibuf + go to 1 + else + call get_fname(hiscall,ntime-trperiod,trperiod,lauto,fname0) + endif + + if(ibuf0.eq.ibuf0z) go to 999 !Startup condition, do not save + if(ntrbuf(ibuf0z).eq.1) go to 999 !We were transmitting, do not save + +! Get buffer pointers, then copy completed Rx sequence from y1 to d2a: + ibuf1=ibuf0z + ibuf2=ibuf0-1 +1 jza=2048*(ibuf2-ibuf1) + if(jza.lt.0) jza=jza+NRxMax + lenok=1 + if(jza.lt.110250) go to 999 !Don't save files less than 10 s + if(jza.gt.60*11025) go to 999 !Don't save if something's fishy + k=2048*(ibuf1-1) + if(mode(1:4).ne.'JT65') k=k+3*2048 + if(mode(1:4).ne.'JT65' .and. jza.gt.30*11025) then + k=k + (jza-30*11025) + if(k.gt.NRxMax) k=k-NRxMax + jza=30*11025 + endif + +! Check timestamps of buffers used for this data + msbig=0 + i=k/2048 + if(msmax.eq.0) i=i+1 + nz=jza/2048 + if(msmax.eq.0) then + i=i+1 + nz=nz-1 + endif + do n=1,nz + i=i+1 + if(i.gt.1024) i=i-1024 + i0=i-1 + if(i0.lt.1) i0=i0+1024 + dtt=tbuf(i)-tbuf(i0) + ms=0 + if(dtt.gt.0.d0 .and. dtt.lt.80000.0) ms=1000.d0*dtt + msbig=max(ms,msbig) + enddo + + if(ndebug.gt.0 .and. msbig.gt.msmax .and. msbig.gt.330) then + write(*,1020) msbig +1020 format('Warning: interrupt service interval',i11,' ms.') + endif + msmax=max(msbig,msmax) + + do i=1,jza + k=k+1 + if(k.gt.NRxMax) k=k-NRxMax + xx=dgain*y1(k) + xx=min(32767.0,max(-32767.0,xx)) + d2a(i)=nint(xx) + enddo + fnamea=fname0 + + npingtime=0 + fname=fnamea !Save filename for output to disk + nagain=0 + ndecoding=1 !Request decoding + +! Generate file name and write data to file +! if(nsave.ge.2 .and. ichar(fname(1:1)).ne.0) then + if(ichar(fname(1:1)).ne.0) then + +! Generate header for wavefile: + ariff='RIFF' + awave='WAVE' + afmt='fmt ' + adata='data' + lenfmt=16 + nfmt2=1 + nchan2=1 + nsamrate=11025 + nbytesam2=2 + nbytesec=nchan2*nsamrate*nbytesam2 + nbitsam2=16 + ndata=2*jza + nbytes=ndata+44 + nchunk=nbytes-8 + + do i=80,1,-1 + if(appdir(i:i).ne.' ') go to 10 + enddo +10 longname=AppDir(1:i)//'/RxWav/'//fname + +#ifdef Win32 + open(17,file=longname,status='unknown',form='binary',err=20) +#else + open(17,file=longname,status='unknown',form='unformatted',err=20) +#endif + write(17) ariff,nchunk,awave,afmt,lenfmt,nfmt2,nchan2,nsamrate, & + nbytesec,nbytesam2,nbitsam2,adata,ndata,(d2a(j),j=1,jza) + close(17) + filetokillb=filetokilla + filetokilla=longname + go to 30 +20 print*,'Error opening Fortran unit 17.' + print*,longname +30 continue + endif + +999 if(mode(1:4).ne.'JT65') then + ibuf0z=ibuf0 + ntime0=ntime + call get_fname(hiscall,ntime,trperiod,lauto,fname0) + endif + + return +end subroutine savedata + +subroutine get_fname(hiscall,ntime,trperiod,lauto,fname) + +#ifdef Win32 + use dfport +#endif + + character hiscall*12,fname*24,tag*7 + integer ntime + integer trperiod + integer it(9) + + n1=ntime + n2=(n1+2)/trperiod + n3=n2*trperiod + call gmtime(n3,it) + it(5)=it(5)+1 + it(6)=mod(it(6),100) + write(fname,1000) (it(j),j=6,1,-1) +1000 format('_',3i2.2,'_',3i2.2,'.WAV') + tag=hiscall + i=index(hiscall,'/') + if(i.ge.5) tag=hiscall(1:i-1) + if(i.ge.2.and.i.le.4) tag=hiscall(i+1:) + if(lauto.eq.0) tag='Mon' + i=index(tag,' ') + fname=tag(1:i-1)//fname + + return +end subroutine get_fname + +!---------------------------------------------------- End Module Audio1 + +!---------------------------------------------------- spec +subroutine spec(brightness,contrast,logmap,ngain,nspeed,a) + +! Called by SpecJT in its TopLevel Python code. +! Probably should use the "!f2py intent(...)" structure here. + +! Input: + integer brightness,contrast !Display parameters + integer ngain !Digital gain for input audio + integer nspeed !Scrolling speed index +! Output: + integer*2 a(225000) !Pixel values for 750 x 300 array + + real psa(750) !Grand average spectrum + real ref(750) !Ref spect: smoothed ave of lower half + real birdie(750) !Spec (with birdies) for plot, in dB + real variance(750) !Variance in each spectral channel + + real a0(225000) !Save the last 300 spectra + integer*2 idat(11025) !Sound data, read from file + integer nstep(5) + integer b0,c0 + real x(4096) !Data for FFT + complex c(0:2048) !Complex spectrum + real ss(1024) !Bottom half of power spectrum + logical first + include 'gcom1.f90' + include 'gcom2.f90' + include 'gcom3.f90' + include 'gcom4.f90' + data jz/0/ !Number of spectral lines available + data nstep/15,10,5,2,1/ !Integration limits + data first/.true./ + + equivalence (x,c) + save + + if(first) then + call zero(ss,nq) + istep=2205 + nfft=4096 + nq=nfft/4 + df=11025.0/nfft + fac=2.0/10000. + nsum=0 + iread=0 + cversion='5.5.0 ' + first=.false. + b0=-999 + c0=-999 + logmap0=-999 + nspeed0=-999 + nx=0 + ncall=0 + jza=0 + rms=0. + endif + + nmode=1 + if(mode(1:4).eq.'JT65') nmode=2 + if(mode.eq.'Echo') nmode=3 + if(mode.eq.'JT6M') nmode=4 + + nlines=0 + newdat=0 + npts=iwrite-iread + if(ndiskdat.eq.1) then + npts=jzc/2048 + npts=2048*npts + kread=0 + if(nspeed.ge.6) then + call hscroll(a,nx) + nx=0 + endif + endif + if(npts.lt.0) npts=npts+nmax + if(npts.lt.nfft) go to 900 !Not enough data available + +10 continue + if(ndiskdat.eq.1) then +! Data read from disk + k=kread + do i=1,nfft + k=k+1 + x(i)=0.4*d2c(k) + enddo + kread=kread+istep !Update pointer + else +! Real-time data + dgain=2.0*10.0**(0.005*ngain) + k=iread + do i=1,nfft + k=k+1 + if(k.gt.nmax) k=k-nmax + x(i)=0.5*dgain*y1(k) + enddo + iread=iread+istep !Update pointer + if(iread.gt.nmax) iread=iread-nmax + endif + + sum=0. !Get ave, rms of data + do i=1,nfft + sum=sum+x(i) + enddo + ave=sum/nfft + sq=0. + do i=1,nfft + d=x(i)-ave + sq=sq+d*d + x(i)=fac*d + enddo + rms1=sqrt(sq/nfft) + if(rms.eq.0) rms=rms1 + rms=0.25*rms1 + 0.75*rms + + if(ndiskdat.eq.0) then + level=0 !Compute S-meter level + if(rms.gt.0.0) then !Scale 0-100, steps = 0.4 dB + dB=20.0*log10(rms/800.0) + level=50 + 2.5*dB + if(level.lt.0) level=0 + if(level.gt.100) level=100 + endif + endif + + if(nspeed.ge.6) then + call horizspec(x,brightness,contrast,a) + ncall=Mod(ncall+1,5) + if(ncall.eq.1 .or. nspeed.eq.7) newdat=1 + if(ndiskdat.eq.1) then + npts=jzc-kread + else + npts=iwrite-iread + if(npts.lt.0) npts=npts+nmax + endif + if(npts.ge.4096) go to 10 + go to 900 + endif + + call xfft(x,nfft) + + do i=1,nq !Accumulate power spectrum + ss(i)=ss(i) + real(c(i))**2 + imag(c(i))**2 + enddo + nsum=nsum+1 + + if(nsum.ge.nstep(nspeed)) then !Integrate for specified time + nlines=nlines+1 + do i=225000,751,-1 !Move spectra up one row + a0(i)=a0(i-750) ! (will be "down" on display) + enddo + if(ndiskdat.eq.1 .and. nlines.eq.1) then + do i=1,750 + a0(i)=255 + enddo + do i=225000,751,-1 + a0(i)=a0(i-750) + enddo + endif + + if(nflat.gt.0) call flat2(ss,1024,nsum) + + do i=1,750 !Insert new data in top row + j=i+182 ! ?? was 186 ?? + a0(i)=5*ss(j)/nsum + xdb=-40. + if(a0(i).gt.0.) xdb=10*log10(a0(i)) + enddo + nsum=0 + newdat=1 !Flag for new spectrum available + call zero(ss,nq) !Zero the accumulating array + if(jz.lt.300) jz=jz+1 + endif + + if(ndiskdat.eq.1) then + npts=jzc-kread + else + npts=iwrite-iread + if(npts.lt.0) npts=npts+nmax + endif + + if(npts.ge.4096) go to 10 + +! Compute pixel values + iz=750 + logmap=0 + if(brightness.ne.b0 .or. contrast.ne.c0 .or. logmap.ne.logmap0 .or. & + nspeed.ne.nspeed0 .or. nlines.gt.1) then + iz=225000 + gain=40*sqrt(nstep(nspeed)/5.0) * 5.0**(0.01*contrast) + gamma=1.3 + 0.01*contrast + offset=(brightness+64.0)/2 + b0=brightness + c0=contrast + logmap0=logmap + nspeed0=nspeed + endif + +! print*,brightness,contrast,logmap,gain,gamma,offset + do i=1,iz + n=0 + if(a0(i).gt.0.0 .and. logmap.eq.1) n=gain*log10(0.001*a0(i)) + offset + 20 + if(a0(i).gt.0.0 .and. logmap.eq.0) n=(0.01*a0(i))**gamma + offset + n=min(252,max(0,n)) + a(i)=n + enddo + +900 continue + return +end subroutine spec + +!------------------------------------------------------ horizspec +subroutine horizspec(x,brightness,contrast,a) + + real x(4096) + integer brightness,contrast + integer*2 a(750,300) + real y(512),ss(128) + complex c(0:256) + equivalence (y,c) + include 'gcom1.f90' + include 'gcom2.f90' + save + + nfft=512 + nq=nfft/4 + gain=50.0 * 3.0**(0.36+0.01*contrast) + gamma=1.3 + 0.01*contrast + offset=0.5*(brightness+30.0) +! offset=0.5*(brightness+60.0) + df=11025.0/512.0 + if(ntr.ne.ntr0) then + if(lauto.eq.0 .or. ntr.eq.TxFirst) then + call hscroll(a,nx) + nx=0 + endif + ntr0=ntr + endif + + i0=0 + do iter=1,5 + if(nx.lt.750) nx=nx+1 + if(nx.eq.1) then + t0curr=Tsec + endif + do i=1,nfft + y(i)=1.4*x(i+i0) + enddo + call xfft(y,nfft) + nq=nfft/4 + do i=1,nq + ss(i)=real(c(i))**2 + imag(c(i))**2 + enddo + + p=0. + do i=21,120 + p=p+ss(i) + n=0 +! Use the gamma formula here! + if(ss(i).gt.0.) n=gain*log10(0.05*ss(i)) + offset +! if(ss(i).gt.0.) n=(0.2*ss(i))**gamma + offset + n=min(252,max(0,n)) + j=121-i + a(nx,j)=n + enddo + if(nx.eq.7 .or. nx.eq.378 .or. nx.eq.750) then +! Put in yellow ticks at the standard tone frequencies for FSK441, or +! at the sync-tone frequency for JT65, JT6M. + do i=nx-4,nx + if(mode.eq.'FSK441') then + do n=2,5 + j=121-nint(n*441/df) + a(i,j)=254 + enddo + else if(mode(1:4).eq.'JT65') then + j=121-nint(1270.46/df) + a(i,j)=254 + else if(mode.eq.'JT6M') then + j=121-nint(1076.66/df) + a(i,j)=254 + endif + enddo + endif + + ng=140 - 30*log10(0.00033*p+0.001) + ng=min(ng,150) + if(nx.eq.1) ng0=ng + if(abs(ng-ng0).le.1) then + a(nx,ng)=255 + else + ist=1 + if(ng.lt.ng0) ist=-1 + jmid=(ng+ng0)/2 + i=max(1,nx-1) + do j=ng0+ist,ng,ist + a(i,j)=255 + if(j.eq.jmid) i=i+1 + enddo + ng0=ng + endif + i0=i0+441 + enddo + + return +end subroutine horizspec + +!------------------------------------------------- hscroll +subroutine hscroll(a,nx) + integer*2 a(750,300) + + do j=1,150 + do i=1,750 + if(nx.gt.50) a(i,150+j)=a(i,j) + a(i,j)=0 + enddo + enddo + return + +end subroutine hscroll + +!------------------------------------------------ ftn_init +subroutine ftn_init + + character*1 cjunk + include 'gcom1.f90' + include 'gcom2.f90' + include 'gcom3.f90' + include 'gcom4.f90' + + addpfx=' ' + + do i=80,1,-1 + if(AppDir(i:i).ne.' ') goto 1 + enddo +1 iz=i + lenappdir=iz + +#ifdef Win32 + open(11,file=appdir(:iz)//'/decoded.txt',status='unknown', & + share='denynone',err=910) +#else + open(11,file=appdir(:iz)//'/decoded.txt',status='unknown', & + err=910) +#endif + endfile 11 + +#ifdef Win32 + open(12,file=appdir(:iz)//'/decoded.ave',status='unknown', & + share='denynone',err=920) +#else + open(12,file=appdir(:iz)//'/decoded.ave',status='unknown', & + err=920) +#endif + endfile 12 + +#ifdef Win32 + open(14,file=appdir(:iz)//'/azel.dat',status='unknown', & + share='denynone',err=930) +#else + open(14,file=appdir(:iz)//'/azel.dat',status='unknown', & + err=930) +#endif + +#ifdef Win32 + open(15,file=appdir(:iz)//'/debug.txt',status='unknown', & + share='denynone',err=940) +#else + open(15,file=appdir(:iz)//'/debug.txt',status='unknown', & + err=940) +#endif + +#ifdef Win32 + open(21,file=appdir(:iz)//'/ALL.TXT',status='unknown', & + access='append',share='denynone',err=950) +#else + open(21,file=appdir(:iz)//'/ALL.TXT',status='unknown',err=950) + do i=1,9999999 + read(21,*,end=10) cjunk + enddo +10 continue +#endif + +#ifdef Win32 + open(22,file=appdir(:iz)//'/kvasd.dat',access='direct',recl=1024, & + status='unknown',share='denynone') +#else + open(22,file=appdir(:iz)//'/kvasd.dat',access='direct',recl=1024, & + status='unknown') +#endif + + return + +910 print*,'Error opening DECODED.TXT' + stop +920 print*,'Error opening DECODED.AVE' + stop +930 print*,'Error opening AZEL.DAT' + stop +940 print*,'Error opening DEBUG.TXT' + stop +950 print*,'Error opening ALL.TXT' + stop + +end subroutine ftn_init + +!------------------------------------------------ ftn_quit +subroutine ftn_quit + call four2a(a,-1,1,1,1) + return +end subroutine ftn_quit + +!------------------------------------------------ audio_init +subroutine audio_init(ndin,ndout) + +#ifdef Win32 + use dfmt + integer Thread1,Thread2 + external a2d,decode1 +#endif + + integer*2 a(225000) !Pixel values for 750 x 300 array + integer brightness,contrast + include 'gcom1.f90' + + ndevin=ndin + ndevout=ndout + TxOK=0 + Transmitting=0 + nfsample=11025 + nspb=1024 + nbufs=2048 + nmax=nbufs*nspb + nwave=60*nfsample + ngo=1 + brightness=0 + contrast=0 + nsec=1 + df=11025.0/4096 + f0=800.0 + do i=1,nwave + iwave(i)=nint(32767.0*sin(6.283185307*i*f0/nfsample)) + enddo + +#ifdef Win32 +! Priority classes (for processes): +! IDLE_PRIORITY_CLASS 64 +! NORMAL_PRIORITY_CLASS 32 +! HIGH_PRIORITY_CLASS 128 + +! Priority definitions (for threads): +! THREAD_PRIORITY_IDLE -15 +! THREAD_PRIORITY_LOWEST -2 +! THREAD_PRIORITY_BELOW_NORMAL -1 +! THREAD_PRIORITY_NORMAL 0 +! THREAD_PRIORITY_ABOVE_NORMAL 1 +! THREAD_PRIORITY_HIGHEST 2 +! THREAD_PRIORITY_TIME_CRITICAL 15 + + m0=SetPriorityClass(GetCurrentProcess(),NORMAL_PRIORITY_CLASS) + +! Start a thread for doing A/D and D/A with sound card. + Thread1=CreateThread(0,0,a2d,0,CREATE_SUSPENDED,id) + m1=SetThreadPriority(Thread1,THREAD_PRIORITY_ABOVE_NORMAL) + m2=ResumeThread(Thread1) + +! Start a thread for background decoding. + Thread2=CreateThread(0,0,decode1,0,CREATE_SUSPENDED,id) + m3=SetThreadPriority(Thread2,THREAD_PRIORITY_BELOW_NORMAL) + m4=ResumeThread(Thread2) +#else + call start_threads +#endif + + return +end subroutine audio_init + +!----------------------------------------------------- getfile +subroutine getfile(fname,len) + +#ifdef Win32 + use dflib +#endif + + parameter (NDMAX=60*11025) + character*(*) fname + include 'gcom1.f90' + include 'gcom2.f90' + include 'gcom4.f90' + + + integer*1 d1(NDMAX) + integer*1 hdr(44),n1 + integer*2 d2(NDMAX) + integer*2 nfmt2,nchan2,nbitsam2,nbytesam2 + character*4 ariff,awave,afmt,adata + common/hdr/ariff,lenfile,awave,afmt,lenfmt,nfmt2,nchan2, & + nsamrate,nbytesec,nbytesam2,nbitsam2,adata,ndata,d2 + equivalence (ariff,hdr),(n1,n4),(d1,d2) + +1 if(ndecoding.eq.0) go to 2 +#ifdef Win32 + call sleepqq(100) +#else + call usleep(100*1000) +#endif + + go to 1 + +2 do i=len,1,-1 + if(fname(i:i).eq.'/' .or. fname(i:i).eq.'\\') go to 10 + enddo + i=0 +10 filename=fname(i+1:) + ierr=0 + +#ifdef Win32 + open(10,file=fname,form='binary',status='old',err=998) + read(10,end=998) hdr +#else + call rfile2(fname,hdr,44+2*NDMAX,nr) +#endif + + if(nbitsam2.eq.8) then + if(ndata.gt.NDMAX) ndata=NDMAX + +#ifdef Win32 + call rfile(10,d1,ndata,ierr) + if(ierr.ne.0) go to 999 +#endif + + do i=1,ndata + n1=d1(i) + n4=n4+128 + d2c(i)=250*n1 + enddo + jzc=ndata + + else if(nbitsam2.eq.16) then + if(ndata.gt.2*NDMAX) ndata=2*NDMAX +#ifdef Win32 + call rfile(10,d2c,ndata,ierr) + if(ierr.ne.0) go to 999 +#else + jzc=ndata/2 + do i=1,jzc + d2c(i)=d2(i) + enddo +#endif + endif + + if(monitoring.eq.0) then +! In this case, spec should read data from d2c +! jzc=jzc/2048 +! jzc=jzc*2048 + ndiskdat=1 + endif + + mousebutton=0 + ndecoding=4 + + go to 999 + +998 ierr=1001 +999 close(10) + return +end subroutine getfile + +!----------------------------------------------------- rfile +subroutine rfile(lu,ibuf,n,ierr) + + integer*1 ibuf(n) + + read(lu,end=998) ibuf + ierr=0 + go to 999 +998 ierr=1002 +999 return +end subroutine rfile + +!--------------------------------------------------- i1tor4 +subroutine i1tor4(d,jz,data) + +! Convert wavefile byte data from to real*4. + + integer*1 d(jz) + real data(jz) + integer*1 i1 + equivalence(i1,i4) + + do i=1,jz + n=d(i) + i4=n-128 + data(i)=i1 + enddo + + return +end subroutine i1tor4 + +!---------------------------------------------------- azdist0 + +subroutine azdist0(MyGrid,HisGrid,utch,nAz,nEl,nDmiles,nDkm,nHotAz,nHotABetter) + character*6 MyGrid,HisGrid + real*8 utch +!f2py intent(in) MyGrid,HisGrid,utch +!f2py intent(out) nAz,nEl,nDmiles,nDkm,nHotAz,nHotABetter + + if(hisgrid(5:5).eq.' ' .or. ichar(hisgrid(5:5)).eq.0) hisgrid(5:5)='m' + if(hisgrid(6:6).eq.' ' .or. ichar(hisgrid(6:6)).eq.0) hisgrid(6:6)='m' + call azdist(MyGrid,HisGrid,utch,nAz,nEl,nDmiles,nDkm,nHotAz,nHotABetter) + return +end subroutine azdist0 + +!--------------------------------------------------- astro0 +subroutine astro0(nyear,month,nday,uth8,nfreq,grid,cauxra,cauxdec, & + AzSun8,ElSun8,AzMoon8,ElMoon8,AzMoonB8,ElMoonB8,ntsky,ndop,ndop00, & + dbMoon8,RAMoon8,DecMoon8,HA8,Dgrd8,sd8,poloffset8,xnr8,dfdt,dfdt0, & + RaAux8,DecAux8,AzAux8,ElAux8) + +!f2py intent(in) nyear,month,nday,uth8,nfreq,grid,cauxra,cauxdec +!f2py intent(out) AzSun8,ElSun8,AzMoon8,ElMoon8,AzMoonB8,ElMoonB8,ntsky,ndop,ndop00,dbMoon8,RAMoon8,DecMoon8,HA8,Dgrd8,sd8,poloffset8,xnr8,dfdt,dfdt0,RaAux8,DecAux8,AzAux8,ElAux8 + + character grid*6 + character*9 cauxra,cauxdec + real*8 utch8 + real*8 AzSun8,ElSun8,AzMoon8,ElMoon8,AzMoonB8,ElMoonB8,AzAux8,ElAux8 + real*8 dbMoon8,RAMoon8,DecMoon8,HA8,Dgrd8,xnr8,dfdt,dfdt0 + real*8 sd8,poloffset8 + include 'gcom2.f90' + data uth8z/0.d0/,imin0/-99/ + save + + auxra=0. + i=index(cauxra,':') + if(i.eq.0) then + read(cauxra,*,err=1,end=1) auxra + else + read(cauxra(1:i-1),*,err=1,end=1) ih + read(cauxra(i+1:i+2),*,err=1,end=1) im + read(cauxra(i+4:i+5),*,err=1,end=1) is + auxra=ih + im/60.0 + is/3600.0 + endif +1 auxdec=0. + i=index(cauxdec,':') + if(i.eq.0) then + read(cauxdec,*,err=2,end=2) auxdec + else + read(cauxdec(1:i-1),*,err=2,end=2) id + read(cauxdec(i+1:i+2),*,err=2,end=2) im + read(cauxdec(i+4:i+5),*,err=2,end=2) is + auxdec=id + im/60.0 + is/3600.0 + endif + +2 nmode=1 + if(mode(1:4).eq.'JT65') then + nmode=2 + if(mode(5:5).eq.'A') mode65=1 + if(mode(5:5).eq.'B') mode65=2 + if(mode(5:5).eq.'C') mode65=4 + endif + if(mode.eq.'Echo') nmode=3 + if(mode.eq.'JT6M') nmode=4 + uth=uth8 + + call astro(AppDir,nyear,month,nday,uth,nfreq,hisgrid,2,nmode,1, & + AzSun,ElSun,AzMoon,ElMoon,ntsky,doppler00,doppler, & + dbMoon,RAMoon,DecMoon,HA,Dgrd,sd,poloffset,xnr,auxra,auxdec, & + AzAux,ElAux) + AzMoonB8=AzMoon + ElMoonB8=ElMoon + call astro(AppDir,nyear,month,nday,uth,nfreq,grid,1,nmode,1, & + AzSun,ElSun,AzMoon,ElMoon,ntsky,doppler00,doppler, & + dbMoon,RAMoon,DecMoon,HA,Dgrd,sd,poloffset,xnr,auxra,auxdec, & + AzAux,ElAux) + + RaAux8=auxra + DecAux8=auxdec + AzSun8=AzSun + ElSun8=ElSun + AzMoon8=AzMoon + ElMoon8=ElMoon + dbMoon8=dbMoon + RAMoon8=RAMoon/15.0 + DecMoon8=DecMoon + HA8=HA + Dgrd8=Dgrd + sd8=sd + poloffset8=poloffset + xnr8=xnr + AzAux8=AzAux + ElAux8=ElAux + ndop=nint(doppler) + ndop00=nint(doppler00) + + if(uth8z.eq.0.d0) then + uth8z=uth8-1.d0/3600.d0 + dopplerz=doppler + doppler00z=doppler00 + endif + + dt=60.0*(uth8-uth8z) + if(dt.le.0) dt=1.d0/60.d0 + dfdt=(doppler-dopplerz)/dt + dfdt0=(doppler00-doppler00z)/dt + uth8z=uth8 + dopplerz=doppler + doppler00z=doppler00 + + imin=60*uth8 + isec=3600*uth8 + + if(isec.ne.isec0) then + ih=uth8 + im=mod(imin,60) + is=mod(isec,60) + rewind 14 + write(14,1010) ih,im,is,AzMoon,ElMoon +1010 format(i2.2,':',i2.2,':',i2.2,',',f5.1,',',f5.1,',Moon') + write(14,1012) ih,im,is,AzSun,ElSun +1012 format(i2.2,':',i2.2,':',i2.2,',',f5.1,',',f5.1,',Sun') + write(14,1013) ih,im,is,AzAux,ElAux +1013 format(i2.2,':',i2.2,':',i2.2,',',f5.1,',',f5.1,',Source') + write(14,1014) nfreq,doppler,dfdt,doppler00,dfdt0 +1014 format(i4,',',f6.1,',',f6.2,',',f6.1,',',f6.2,',Doppler') + rewind 14 + isec0=isec + endif + + return +end subroutine astro0 + +include 'makedate_sub.f90' +include 'abc441.f90' diff --git a/CALL3.TXT b/CALL3.TXT new file mode 100644 index 000000000..37d499f4e --- /dev/null +++ b/CALL3.TXT @@ -0,0 +1,4732 @@ +//CALL3.TXT agreed format for WSJT-PROGRAM by K1JT +//User-Version 2.14 02/05 WSJT-Excerpt of VHF-DATABASE © by DL8EBW +//(excluding extensions in calls eg. /p /a or exp.calls!) +2M0EXD,IO88FO,,,,,,04/04 +3B9C,MH10QG,EME,,,,,2003 +3V8BB,JM56ER,EME,,Clubstation,,,06/02 +4J1FS,KP40,,,,,,1990 +4K6D,LN40VK,EME,,vladimir,,,1994 +4N7AX,KN05PC,,,Zvezdan ""Zele",,144: 200 W 2x10el 9BVtx1500/rx3000lpm DSP,08/00 +4O4AR,JN94AS,,,Zdravko,,144: TR9130 250W 10el PA0MS-ant PreampUHER 15,11/02 +4O4D,JN94BR,,,,,144: 300W 11el,05/97 +4U1ITU,JN36BF,EME,,Clubstation,,144: 8el 600W,11/00 +4X1IF,KM72KA,EME,,Ralph,,,2004 +4X4IF,KM72KD,EME,,Ralph,,,05/00 +4X6UJ,KM72,EME,,,,,2000 +4Z5AO,KM72MW,,,Leonid ""Leo",,,07/04 +4Z5BS,KM71JW,,,Oded,,,07/95 +5B4AGY,KM64EV,,,Iain,,FT-726R plus 1kW Linears and head amplifiers,01/05 +5B8AD,KM64TV,EME,,Alex,,,01/05 +5B8AV,KM64FT,,,Norman,,,05/04 +5C8M,IM64PD,EME,,BCC-Club,,144: IC706 MKIIG PA 1KW preamp. 2x 3WL yagis,10/00 +5T5JC,IL30AM,EME,,erich,,,1994 +5T5SN,IK28AC,EME,,nicolas,,,01/05 +5X1D,KJ60EM,EME,,"Gus"" Ragge,,300W- 17el,03/97 +6Y4A,FK18AA,EME,,OP: W3CMP,,144: 2x 2MXP28 cross pol ant. 1KW,10/00 +7J0AAD,PM97OS,EME,,Angela,,144: 1KW 4x19el 2x18el MGF1801.043.250,01/00 +7J6CCU,PL36VI,EME,,Eric,,50: TS570 or IC821,04/02 +7K1MFR,PM95SP,,,,,,2003 +7K3LGC,QM06,EME,,,,,10/97 +7L1RLL,PM95SO,,,,,,2003 +7M2PDT,QM05EK,EME,,Umezawa,,432: 16x14el 1-5KW,03/00 +7W0AD,JM16JR,,,,,,11/04 +7X0AD,JM16JR,,,Enrique,,144: 9el 200W,11/04 +7X2LS,JM16MT,,,Seghir,,,08/02 +7X2VV,JM16WJ,,,,,,07/02 +8S4BX,JO79SD,EME,,OP SM4IVE,,,10/99 +9A1AAX,JN65TF,,,,,144: 16el 500W,04/01 +9A1CAL,JN86EL,,,Clubstation,,144: IC271 FT736 FT225RD 4CX1500A 2x17el,11/04 +9A1CBE,JN86BE,,,,,,96 +9A1CCB,JN85LN,,,9a7w@9a0tcp.ampr.org,,,03/01 +9A1CCY,JN85OO,EME,,Clubstation Jan Hus,,122,08/01 +9A1CDD,JN85LW,,,,,,1991 +9A1CEU,JN75RO,EME,,OP 9A3ZA,,144: 80W 2x18el 5.5wl 4x11el - 432: 10W 38el,01/99 +9A1CHI,JN95JG,,,,,,94 +9A1CHL,JN83,,,,,,03/98 +9A1CMS,JN86EL,,,,,,07/02 +9A1DFG,JN85EL,,,OP 9A3PA,,,07/96 +9A1EZA,JN86HG,EME,,OP 9A3AG Sasha,,IC271E 144: 2x4CX250b MGF1302 10mM2.087 3000,11/01 +9A1KDE,JN95FQ,,,,,,1994 +9A1RGC,JN75XT,,,,,,2003 +9A1Z,JN86FJ,,,Lucijan,,IC706 DB6NT 1W ON 3CMMSDSP,01/05 +9A2AE,JN86HF,,,Zvonko,,144: 8x24el 1KW,01/02 +9A2AT,JN86LL,,,,,,2003 +9A2DI,JN95,,,,,,06/95 +9A2EU,JN85JO,,,,,,07/96 +9A2GH,JN75IE,,,,,,2003 +9A2KK,JN85KV,,,Dusko,,,11/01 +9A2MK,JN75XU,EME,,branimir,,,1994 +9A2PT,JN86,EME,,,,,11/01 +9A2RD,JN65TF,,,Mario,,144: 2x16el 1KW,05/04 +9A2SB,JN95GM,,,,,,06/99 +9A2TE,JN85KK,,,,,,06/03 +9A2U,JN75RO,EME,,OP 9A3ZA,,144: 80W 2x18el 5.5wl 4x11el.082.215,01/99 +9A2VR,JN95,,,,,,08/99 +9A3DF,JN86HG,,,,,,04/03 +9A3JH,JN75AD,,,Andrea ""Andy",,,11/03 +9A3JI,JN86FJ,,,Filip /Bob/ Vadlja,,50: FT-101ZD+FTV650- IC706mk2g 7ele M2,05/02 +9A3MR,JN83FM,,,Roland,,only SSB-MS,08/00 +9A3PA,JN85EG,EME,,Mate,,FT736r - 50: 10W 5el - 144: 8x13el 800W M,08/04 +9A3TF,JN85,,,,,,08/96 +9A3TU,JN95EH,,,,,,11/01 +9A3W,JN74OC,,,Radio Club Jadera,,IC706,09/02 +9A3ZA,JN75RO,,,Davor,,144: 100W 12el.082.215,08/00 +9A4C,JN85LN,,,OP: 9A7W,,,03/01 +9A4CK,JN86,,,,,,08/96 +9A4EW,JN95KG,EME,,Hrvoje,,144: 250W 10el- GaAsFet1200lpm,11/02 +9A4FW,JN95JG,EME,,Zeljko,,144: 600W 4x17el F9FT MGF1302DTR 1200lpm,08/00 +9A4K,JN86FJ,,,Filip /Bob/ Vadlja,,50: FT-101ZD+FTV650- IC706mk2g 7ele M2,05/02 +9A4NF,JN73VS,,,Damir,,144: 300W LNA 2x16el yagis2500lpm,01/01 +9A4VM,JN85VS,,,,,,11/02 +9A4WY,JN74,,,,,144: 50W,08/98 +9A5D,JN92BP,,,,,,08/99 +9A5WA,JN85LN,,,Max,,,06/96 +9A5Y,JN85OO,,,Ops of 9A1CCY,,144: 800W 16x5el,10/99 +9A6WW,JN86EL,,,Zvonko,,144: IC271 FT736 FT225RD 4CX1500A 2x17el,12/99 +9A7W,JN85LN,,,Ogi,,,01/02 +9A90CBD,JN85OO,EME,,Clubstation Jan Hus,,.122 1200lpm,07/97 +9A9B,JN75XU,,,,,,2003 +9H1BN,JM75GU,EME,,Mark,,,09/99 +9H1BT,JM75EU,EME,,Paul,,,1994 +9H1CD,JM75FV,EME,,Henry G.,,144: TS850 LT2S 1KW 2x4.4lb DJ9BV MGF1302,01/01 +9H1CG,JM75,,,Joe,,144: FT902DM FTV250 100W 17el.132,11/01 +9H1ES,JM75FV,EME,,Fortunato,,,09/99 +9H1GB,JM75FU,EME,,Mantsueto ""Mans",,144: TS780 100W 19elDTR 3000lpm,08/03 +9H1PA,JM75FV,EME,,Philip,,144: TS711 4x10el (3wl) crossed yagi GS35bMSD,01/01 +9H1PI,JM75FU,,,Ivan,,50: 100W 5el,03/03 +9H1TX,JM75FU,,,David,,50: 8el yagi 100W - 144: 150 W 2x4wl xpol310,12/04 +9H1XT,JM75GV,,,John,,,08/02 +9H3LF,JM76,,,,,,1991 +9H3ZZ,JM76CB,EME,,OPs DL5MAE-DL6RAI,,,1993 +9M2BV,OJ30UD,EME,,mart,,,1994 +A22BW,KG38SU,EME,,lothar,,,1994 +AA0BR,DN70KN,,,,,,2003 +AA0BW,EM29PS,,,,,,04/03 +AA0DQ,EN12,,,,,,2003 +AA0EN,EM29,,,,,,2003 +AA0P,DM79,,,,,,2003 +AA1OV,FN43GE,,,Mark,,,04/03 +AA1VL,FN42HN,,,Chris,,,04/03 +AA1YN,FN43GC,EME,,Lee,,,2004 +AA2GF,FN02,,,,,,2003 +AA3NM,FM19JE,,,Steve,,,2003 +AA4FQ,EM67LQ,EME,,JEFF,,1500W,01/05 +AA5C,EM13SE,,,,,,2003 +AA5CH,EM35GK,,,,,,2003 +AA5IB,EM12,,,,,,2003 +AA5WL,EM32,,,,,,2003 +AA5WQ,EM26BC,,,,,,2003 +AA6GS,DM12,,,,,,2003 +AA6HA,DM43CN,,,John,,144: 500W 9el M2,01/01 +AA6IW,CM97VI,,,,,,2003 +AA6WI,CM97,,,,,,2003 +AA7A,DM43AO,EME,,Ned,,144: 8877 1-5KW 6x13el (DJ9BV),01/05 +AA8BC,EN90FE,,,,,,2003 +AA8HS,EN81,,,,,,2003 +AA9D,EN52,,,Dave,,,01/01 +AA9IL,EN62AI,,,,,,2003 +AA9MY,EN50FM,EME,,Bob,,Yaesu 847 IC910H IC706MKIIG,02/05 +AB0SD,EN30LL,,,,,,2003 +AB0TJ,DN60FN,,,Alex,,,2003 +AB3BK,FN10,,,,,,02/05 +AB4CR,EM77,,,,,,2003 +AB4OO,EM81,,,Vance,,,1998 +AB5F,EM46FG,,,Paul,,,2004 +AB5IG,EM12,,,,,,2003 +AB9FN,EN53,,,,,,2003 +AC1H,FN33XJ,,,Ken,,144: 300W 13dbD yagi,01/01 +AC1T,FN32,,,,,,2003 +AC3A,EM28QV,EME,,Scott E.,,144: 4x 9el M2 8877 1-5KW,05/03 +AC4TO,EM70,,,,,,02/05 +AC5OG,EM10,,,,,,2003 +AD4EB,EM65NS,,,Jim,,,2003 +AD4TJ,FM08LE,,,David,,10el Quagi 160Watt,01/04 +AD6A,CM97AG,,,,,,2003 +AD6FP,CM87WI,EME,,,,,2004 +AD6P,EM18,,,,,,2003 +AE0G,EN10PS,,,,,,2003 +AE0W,DM78,,,,,,2003 +AE4RO,EL97TG,,,Tom,,,09/01 +AE5K,EM36PC,,,,,,2003 +AF1T,FN43ED,EME,,DALE,,,01705 +AF4O,EM55LK,,,,,,2003 +AF6O,DM14EJ,,,,,,2003 +AF9R,EN52XB,,,Dan,,,2003 +AG2A,FN30FR,,,Tom,,,2003 +AG4QE,FM04KX,,,Timothy,,,2003 +AG9Y,EN40,,,Joe,,144: 160W 13el,01/01 +AH6EZ,EN51SW,,,Dick,,,12/01 +AH6LE,CN85NK,,,,,,2003 +AH8A,AH45OP,,,,,,2003 +AI1K,FN41IL,,,,,,2003 +AI3W,FM19PW,,,Rick,,,2004 +AI8Z,DM79,,,,,,2003 +AJ0E,EM29RD,,,,,,2003 +AJ6T,CM87XG,,,Walter E. ""Walt",,144: 200W 10el,08/03 +AL7EB,BP40IQ,EME,,Edward R.,,144: 4xpol-20el M2 170w,01/05 +AM25DXU,JN11CM,EME,,Op Jose Maria,,,1992 +AN6SA,JM19IR,EME,,Josep,,144: FT847 2x4CX250 2x17el - 432: 4x33el,01/01 +BY1QH,ON80DA,,,,,,2003 +C31MS,JN02UN,,,DC9KZ- DF7KF- DL8EBW,,144: 2Stn a´ 800W 2x17el or 11el.119 DTR,05/97 +C31RC,JN02SK,EME,,,,,1989 +C31TLT,JN02TL,EME,,OP I5WBE EA3BB,,144: 4x24el 2x4CX250 900W,08/01 +C4N,KM64tv,EME,, +CN8KD,IM63KX,,,,,144: 10W 11el,06/03 +CN8LI,IM63NX,,,Said,,50: IC706 6el Mast Mount 20db preamp- 144: 2,08/04 +CN8ST,IM64NA,EME,,Tarrik,,,06/98 +CO2OJ,EL83TD,,,OP: Oscar,,50: 100W 4el - 144: 110W 9el,08/01 +CQ14HZE,IM57NH,,,Joachim ""Joe",,,02/04 +CS0DIZ,IM69,,,,,,1989 +CS1GDX,IM59IB,,,OP: CT1EKD,,144: IC706MK II G 200W 12el,11/03 +CS6ARC,IM59RX,,,OP CT1FOH,,,11/01 +CT1ANO,IN51RE,,,Pinto,,144: TS2000 250Watt 2x10el MGF1302 - 432: TS,02/05 +CT1DHM,IN61CC,,,Jose,,,05/02 +CT1DIZ,IM58KP,,,Alex,,,06/03 +CT1DMK,IN50QP,EME,,Luis,,144: 1-5KW 4x11el DL6WUDTR,03/99 +CT1DNF,IN50QP,,,Pedro Filipe,,144: IC821H 200Watts 2x12ele DL6WU Preamp,12/04 +CT1DYX,IN51QD,,,Pedro Miguel,,IC970H 50: 100W 4el - 144: 100W 17el MGF1302,06/03 +CT1EKD,IM59IB,,,Pedro,,144: IC706 MK II G 200W 12el,11/03 +CT1EPS,IM57XC,,,Joe,,144: FT480 2x17el 200W MGF1302only SSB-MS.,04/03 +CT1FAK,IN50QO,EME,,Rui,,144: FT1000D FT736R 200W 4x13el DL6WU MGF,05/03 +CT1FOH,IN50RA,,,Paulo,,50: 6el - 144: 200W 4x 12el MGF1302120 MSDSP,04/04 +CT1HZE,IM57NH,,,Joachim ""Joe",,,02/04 +CT1WW,IN61GE,,,Tiago,,,11/96 +CT2FEY,IN61NS,,,Paulo,,,11/03 +CT2HSN,IN61CC,,,Carlos,,,08/01 +CT2HSO,IN61CC,,,Luis,,,08/01 +CT2IET,IN60GD,,,Frederico,,FT100D,11/02 +CT2IWG,IN51OJ,,,Sergio,,144: IC706 100W 9el,02/05 +CT4KQ,IN60BP,,,Serafim,,DTR+,03/98 +CU2IJ,HM77ES,,,,,,04/04 +CX9BT,GF15WK,,,,,,2003 +CY9SS,FN97WE,EME,,,,144: 400W single yagi,01/05 +DA0BV,JN58VF,,,clubstation,,DTR,1994 +DA0NRW,JO41GV,,,Clubstation,,144: 3CX400A7 4x14el or 17el,12/96 +DA0WAE,JO41GU,,,OP DK3EE,,,12/04 +DA4RG,JO31FG,,,Reg,,,11/95 +DB1OMA,JO42RK,,,Joerg,,,01/03 +DB1PB,JO30UE,,,,,,12/01 +DB2WD,JN39VV,EME,,Jens,,SSB only.280,04/96 +DB3BW,JO42AC,,,Hans-Jürgen,,HF: TS520 - 144/432: FT726r,04/04 +DB3LA,JO31JK,,,,,,07/02 +DB4ET,JO31,,,Klaus,,,11/02 +DB4LL,JO54SM,,,Nikolausi,,144: FT221 20W 4el.010.300,08/01 +DB4VQ,JN39MF,,,Günther,,,1994 +DB5ML,JN58OI,,,Michael,,only SSB-MS,09/03 +DB5WC,JN49EJ,,,Gerd,,60W 11el Preamp.250,12/03 +DB6BX,JO32OK,,,,,,11/96 +DB6NT,JO50UI,,,,,,2003 +DB6RO,JN58QB,,,Gerd,,,12/03 +DB7OB,JO52IJ,,,Gerd,,144: FT221 100W 11elonly SSB-MS,08/00 +DB8AT,JO51CP,,,,,,05/04 +DB8WK,JO33XN,,,Hinni,,144: 200W 13el - 432: 200W 20el,01/03 +DB8YL,JO41EV,,,Sabine,,,12/99 +DC1ECD,JO31MH,,,,,,10/04 +DC1MUS,JN69EP,,,,,,11/02 +DC2JR,JO64CA,,,Klaus,,,11/01 +DC3QB,JO41IV,,,,,,01/05 +DC3VM,JN39KK,,,Alfred,,,12/99 +DC3VW,JN39KJ,,,Guenther,,only SSB-MS,10/04 +DC3ZR,JN68CV,,,,,,01/03 +DC6DY,JO31OK,,,anton,,only SSB-MS,1994 +DC6GF,JN48OC,,,Christoph,,IC 706 MKIIG PreAmp,01/05 +DC6KI,JO30IL,,,Wolfgang,,DTR,04/03 +DC6RN,JN59WK,,,Norbert,,144: 2x12el 160W,04/03 +DC7OH,JO62OK,,,Eric,,DTR 2000lpm,01/01 +DC7UT,JO31NJ,EME,,Horst,,144: 4x17el 500WDTR,03/01 +DC9KZ,JO30JW,,,Angelo,,only SSB-MS,09/01 +DC9YC,JO31PJ,,,Dieter,,,05/03 +DD0VF,JO61WB,,,Steffen,,144: 550W 4x7el MGF1303 (JO61WA: 100W 5el BF9,03/04 +DD1JN,JO50DJ,,,Karsten,,144: 600W 11el Preamp - 432: 21el 200W VV - 1,04/02 +DD1WKS,JN39KK,,,Wolfgang,,,01/01 +DD2UJ,JO61WD,,,,,,10/04 +DD3DX,JO31TN,,,Christian,,only SSB-MS,07/01 +DD3SP,JO72EN,,,Sandro,,50: 5el - 144: FT847 4CX250 17el F9FT MGF1,02/04 +DD5DX,JO61CA,,,Alexander,,144: 180Watt 2x17el Preamp333,07/04 +DD6UBS,JO41AH,,,Stefan,,144: TM255 MGF1302 180W 11El F9FT - 432: TM45,10/04 +DD9SQ,JN59BH,,,Martin,,,07/98 +DF0AK,JN49EA,,,,,,07/97 +DF0BV,JN68AH,EME,,BCC,,144: 2x17el 750WDTR,12/99 +DF0CI,JO51CH,,,Cubstation,,,11/03 +DF0EME,JO40,,,,,,2003 +DF0LBO,JO53CT,,,Clubstation OP:DK1KO,,,05/02 +DF0MMO,JN49JX,,,OP DH4FAJ- Matthias,,144: 200W 11el,11/00 +DF0MTL,JO61JF,,,Clubstation,,,12/98 +DF0SAX,JO61VC,,,Clubstation,,144: 20W 13el,12/98 +DF0WD,JO42FD,,,Clubstation,,144: 8874 250W 2x9el - 432: 3CX800 4x18elDTR,05/03 +DF0WF,JO62VT,,,,,,01/05 +DF1AN,JO63SX,,,,,,01/00 +DF1BN,JO31GD,,,Paul-Eduard ""Paulus",,144: IC821 HLV-300 300Watts MGF 1302 2x17e,07/01 +DF1CF,JN57FP,EME,,Jürgen,,144: CF300 3CX800 4x13el (3lb)133 1500lpm38,12/04 +DF1GL,JN47CO,,,Joachim,,144: IC 910 100W 9 el,11/04 +DF1HF,JO43VL,,,Andreas,,144: 2x6el,02/00 +DF1IAZ,JN49LD,,,Ralf,,50: 3 el - 144: 150W 2x10el MGF1302154 300,07/01 +DF1OC,JO52,,,T.,,,1993 +DF1SO,JN48PO,,,Dieter,,144: homemade 200WDTR,08/98 +DF1VB,JO31RM,,,Jochen,,,05/04 +DF1ZE,JN49,EME,,Michael,,,1994 +DF2CQ,JN58SE,,,,,,10/04 +DF2OOO,JO41RF,,,OP DL3ZBA,,IC820H 144: 250W 2x11el- 432: 130W 2x23el Pr,09/99 +DF2UJ,JO61QH,,,,,,02/02 +DF2ZC,JO30RN,EME,,Bernd J.,,144: TS2000 LT2S 2xGU74b 750W MGF1302 4x2M18X,12/04 +DF3FJ,JO40CC,,,,,,1993 +DF3RU,JN59VL,EME,,Karl,,,1993 +DF4LY,JO44SM,EME,,Manfred,,144: 160el Col. 4CX2501000lpm,12/96 +DF4MAA,JN58WH,EME,,Wolfgang,,,05/97 +DF4UE,JN48RR,,,John,,432: 4x27el 600W,09/03 +DF5BN,JN49GU,,,Walter,,,08/99 +DF5DE,JO40CX,,,K.O.,,,10/04 +DF5JJ,JO43XO,,,Peter,,432: 700W 19el - 1296: 500W 26el - 10368: 20,03/04 +DF5NK,JN59PM,,,Frank,,50: FT857 4el - 144: 600W 11el - 432: 500W 19,02/04 +DF6HT,JO53AH,,,,,,2003 +DF6LO,JO52CE,,,matthias,,,1993 +DF6NA,JN49XS,,,Rainer,,432: 2x3CX800 4x30elDTR rx1500tx2000lpm,10/01 +DF6OB,JO42,,,Matthias,,,07/97 +DF6VW,JO42KH,,,Ralf,,,07/97 +DF6YL,JO31WS,EME,,Peter,,,10/04 +DF7DJ,JO31UO,,,Herbert,,.153,06/97 +DF7IF,JN48DN,,,,,,2003 +DF7IT,JN49IN,,,Volker,,,10704 +DF7KF,JO30GU,EME,,Dithmar,,144: 16x18el EME PwrDTR+ 3000lpm,12/04 +DF7OG,JO52BN,,,Klaus,,144: TS770E 4x150 16el,04/04 +DF7RG,JN68HG,EME,,Georg (Op DK0OG),,DTR+ 3000lpm,01/05 +DF8AA,JO60XX,,,Wolfgang,,144: 100W 17el.132,12/99 +DF8AE,JO41GX,,,rudi,,,10/04 +DF8IK,JO30JT,,,Hans-Peter ""Peter",,144: 300W 11el 432: 400W 27elDTR 2500lpm,01/04 +DF8LC,JO53GX,EME,,Lothar,,,08/99 +DF9CY,JO54AL,EME,,Christoph,,144: IC820 9el DK7ZB D200 550W Preamp,11/04 +DF9IJ,JN48CX,,,,,,2003 +DF9KT,JO30GU,,,,,.167 DTR+.167,11/95 +DF9KX,JO30FQ,EME,,Rolf,,FT1000 144: LT2S 3CX800A7 Preamp 2x17ele M2,03/04 +DF9PX,JN47QT,,,Horst,,144: IC706 180W 2x10el Preamprx2000tx1200lpm,07/01 +DF9QT,JO30OR,,,Klaus,,144: 700W 11el MGF1302DTR 2000lpm,01/05 +DF9QX,JO42HD,EME,,matthias,,,1994 +DF9YF,JO42GE,,,Uli,,,12/03 +DG0CAL,JO31,,,Ullrich,,,06/00 +DG0FE,JO62UN,EME,,Lothar,,FT 736r 144: 100W 4x17el - 432: 2x21el - 129,07/03 +DG0KU,JO64AC,,,,,,01/03 +DG0KW,JO64MH,EME,,Klaus,,144: 2x 13el,01/05 +DG0OPK,JO50GG,,,Michael,,50: 5W - 144: 150W - 432: 100W - 1296: 35W -,12/04 +DG0TU,JO61TU,,,Op LZ1DP,,,08/97 +DG0WJ,JO60CV,,,,,,11/02 +DG1BA,JO43LB,,,Dieter,,only SSB-MS.383,01/00 +DG1CMZ,JO60DS,,,Michael,,,08/01 +DG1IU,JN49FA,,,,,only SSB-MS,08/96 +DG1LY,JO44RK,,,,,,03/04 +DG1TA,JN69GH,,,,,,02/01 +DG1VL,JO61WC,,,Henry,,144: 150W 17el MGF1302388,04/04 +DG1YBO,JO32RG,,,Michael,,144: FT225RD 80W 9el,09/04 +DG2BCP,JO43DC,,,Peter,,144: 4x 3.6wl DJ9BV+GS35 Pa - 432: 4x 11wl DJ,01/04 +DG2DAA,JO62GU,,,Friedhelm,,,06/02 +DG2GEP,JN48DL,,,Markus,,144: 200W 9ele Yagi,04/03 +DG2KBC,JN58MI,,,Ansgar,,144: FT847 2x2wl BVO 300W LNA,01/05 +DG2NBN,JN59NR,,,Dieter,,FT847 144: 200W 2x3wl 9BV MGF1302 - 432: 300W,08/01 +DG2NZM,JN59IV,,,Matthias,,,06/03 +DG2SRL,JO61HN,,,,,144: 2x17el 300W,10/01 +DG2VC,JO61VC,,,,,,01/04 +DG3FK,JO41PG,,,Thomas ""Tom",,TS850+TV TS790 144: 17el 150W - 432: 4x17el,09/03 +DG3JO,JO31JK,,,Bert,,TR-2000- TM-D700- DSPCOM,04/03 +DG3XA,JO43WJ,,,Andreas,,144: 200W 7el - 432: 2x20el 300Wonly SSB-MS,05/04 +DG4BH,JO30RX,,,,,,01/03 +DG4EK,JO31NI,,,,,,2003 +DG4EKE,JO31NI,,,Kai,,144: IC820h- SP2000- 17/11el- QQE06-40.088 D,01/97 +DG5AAG,JO51,,,,,,07/01 +DG5CST,JO60DS,,,Sebastian,,144: FT847 4x9el GU74 750W - 432: 23el 50WM,06/04 +DG5HV,JO43XQ,,,Michael,,,01/99 +DG5NEX,JN49WS,,,,,,93 +DG5OAF,JO51EP,,,Karlheinz,,144: FT736 400W 2x17el B2 MGF1302DTR + JUDS,11/99 +DG5SMY,JN49QA,EME,,Marc,,144: 4x 17ele 432: 4x 23ele,08/04 +DG6JF,JO31,,,Günter,,,10/01 +DG6LS,JO54AK,,,Söhnke,,144:TS790 8877 4x17el - 432: 8x33el DJ9BV 3CX,12/96 +DG6MBS,JO41AH,,,Mareike,,144: TM255 MGF1302 180W 11El-F9FT - 432: TM-4,08/02 +DG6MGP,JN58WH,,,,,,1995 +DG6SYL,JO53QP,,,Anne,,144: 150W 11el 6WU Preamp - 432: 150W 23el Pr,03/02 +DG7MHR,JN57DR,,,Dieter,,,03/03 +DG7OV,JO42VX,,,,,,10/04 +DG7RBV,JN59UM,,,,,only SSB-MS, +DG7SF,JN48RR,,,Günther,,144: FT736 300W 2x7elDTR,06/01 +DG7SFL,JN49XF,,,Michael,,144: 300 W + 10El. - 432: 150W + 2*21El.,01/04 +DG7TG,JO43TX,,,,,,01/03 +DG8NCO,JO50VH,,,Uwe,,750W 6x9el MGF1302300,01/04 +DG8NCY,JO50HA,,,,,,07/02 +DG8UAW,JN48BR,,,Stephan,,FT-847: 144MHz: 50W 7el Preamp - 432MHz: 30,09/01 +DG8YHH,JO32QI,,,Alfons,,,01/04 +DG9BEM,JO43CD,,,Thomas,,144: 350W 17el VV - 432: 300W 4x20el VV - 129,01/03 +DG9DAZ,JO31XB,,,Tino,,144: TM255,11/01 +DG9GLA,JO40,,,,,,12/01 +DG9MAQ,JN58LJ,,,Raimund,,144: IC251 200W 9el Preamp. - 432: TS811 10,11/03 +DG9NCX,JN59BT,,,Hubert,,.126,11/99 +DG9NFM,JO50QG,,,Chris,,,1/94 +DG9YIH,JO32QI,,,Helmut,,144: 500W 17el,12/04 +DH0AAI,JO51AR,,,Harald,,144: FT225rd PA 200W SP2000 4xDL7KM,08/02 +DH0GHU,JN38VN,,,Ulrich,,144: TS850 LT2S HLV300 300W 11elDTR 3000lpm,09/01 +DH0LS,JO61II,,,Jens,,144: 4CX350 500W 2x17el Preamp - 432: 150W 21,12/03 +DH0MBH,JN58JD,,,,,,01/02 +DH0OAH,JO42OB,,,,,,2003 +DH0YAZ,JO41GG,,,,,,2003 +DH1DCN,JO41BD,,,Marc,,144: IC706MK2 11el 100W137 DTR 5000lpm,08/03 +DH1FM,JO61UD,,,Tilo,,144: 90W 10el - 1296: 1W 30el.050,08/02 +DH1KBB,JO20XX,,,jörg,,,1993 +DH1NAD,JN49,,,werner,,,1993 +DH1NSP,JN59JX,,,Phil,,,01/01 +DH1TW,JN48QM,EME,,Tobias ""Toby",,144: 600W 10el,04/01 +DH2FAF,JO40,,,j.,,,1993 +DH2OAA,JO42TU,,,Michael,,144: IC275E 4x11el 6WU 500W1800lpm,03/04 +DH2RS,JN47TT,,,Ralph,,144: 75W 11el MGF1302.140.250,01/98 +DH2UAK,JO71FU,,,Klaus,,IC910+Preamps - 144: 13el - 432: 29el - 1296:,04/04 +DH3DP,JO31,,,,,,07/96 +DH3IAJ,JN48HD,,,Ralf,,50: 10W 4el - 144: 100W 10el /p JN48GD 10GHz,04/07 +DH3NAN,JO50NC,EME,,Matthias,,,12/97 +DH3VE,JN39LL,EME,,Bernd ""Erni",,FT847 144: 500W MGF1402b 4x10el - 432: 300W M,07/03 +DH3YAK,JO31RS,EME,,Winfried,,144: 12el M2 750W135 DTR 3000lpm,12/04 +DH4FAJ,JN49LW,,,Matthias,,IC821h 144: 11ele 200w - 432: 19ele 40w,05/02 +DH5FS,JO61UA,,,Fred,,144: 9el 120W - 432: 4x21el,11/00 +DH5HS,JO31FF,,,Heiko,,FT847,11/02 +DH5HV,JO31AS,EME,,Jochen,,144: FT1000+LT2S or IC910 750W MGF1302 - 432,03/04 +DH5LAN,JO44TN,,,,,,05/97 +DH5MK,JO41IV,,,Michael ""Mike",,144: 100W 6el MGF1302222,08/04 +DH6ICE,JO61XU,,,,,,07/04 +DH6JL,JO31MI,,,Mike,,50: IC-746 4ele HB9CVDTR 3000lpm,06/00 +DH7FB,JO62SM,,,Frank,,144: FT847 GS35b 2x9el DK7ZB148 2500lpm JUD,02/04 +DH8BQA,JO73CF,,,Olli,,144: FT726r 300W 2x10el PreampDTR 3000lpm,02/02 +DH8GV,JO33RL,,,Thomas,,,07/01 +DH8IAB,JO30NO,,,Werner,,,05/04 +DH8IAT,JN49GC,,,Thomas,,,05/02 +DH8YHR,JO41GV,,,,,,2003 +DH9FAG,JN49LX,,,,,,2003 +DH9GCD,JN38VF,,,Christoph,,144: 11el 100W MGF1302.127 DTR 2500lpm,05/02 +DH9KAE,JO30BW,,,detlef,,,1993 +DH9NBB,JN49WS,,,Martin,,,01/99 +DH9NFM,JO50RF,EME,,Christian ""Chris",,144: 2x17el M2 750W - 432: 2x8el M2 750W - 12,03/04 +DH9OK,JO51AS,,,Edgar,,,06/04 +DH9OY,JO51AQ,,,Edgar (Eddy),,DTR 2000lpm,05/00 +DJ0QZ,JN49LM,EME,,Frank,,144: IC746 8877 2x18el M2 MGF1302,11/01 +DJ0RU,JO31KM,,,,,,07/02 +DJ1JD,JO52CK,EME,,Uschi,,DTR,08/00 +DJ1LP,JO64,,,d.,,,1993 +DJ1OJ,JN58SE,,,Heijo,,144: 100W 2x11el SP2000DTR,10/00 +DJ1SHF,JO73AM,,,Andre,,144: TS711 120W 2x10el- PreampDTR,11/96 +DJ1TU,JN48TR,,,Klaus,,,08/02 +DJ2IA,JO71AO,,,Dieter,,144: FT736R 100Watt 9-ele-Yagi,08/02 +DJ2IE,JN48HV,,,,,,07/02 +DJ2JA,JO40IM,EME,,Roland,,DTR,04/04 +DJ2JS,JO31SL,,,Volker,,,04/04 +DJ2QV,JO31PF,,,Maik,,144: TS850S Trvt 200Watts 9el OZ5HF - 432:,12/04 +DJ2XS,JO53AK,,,matthias,,,1995 +DJ3FI,JO31DI,EME,,Hubert,,,08/00 +DJ3HW,JO42LH,,,Joerg,,144: IC-910H 600W 12elM2 MGF1302 - 432: 280W,08/04 +DJ3LE,JO44TN,,,Hans-Juergen,,50: 25WERP 5el - 144: 2x17el 600W - 432: 2x21,02/04 +DJ3MY,JN58QD,EME,,Christian,,144: 600W 4x17elDTR,08/99 +DJ3RU,JN58,,,kurt,,,1995 +DJ3ST,JN48,,,,,,2003 +DJ3TF,JN59WK,,,Wolfgang,,,06/00 +DJ3VI,JO51BS,,,Siegfried,,144: FT736r 2x11el 750W3000lpm,01/01 +DJ4SO,JO44WG,,,Klaus-Dieter,,DTR,11/99 +DJ4UF,JO30BR,,,Eckart K.W.,,144: 300W 2x 8el MGF1302138 DTR 3000lpm,09/04 +DJ5BV,JO30KI,,,Gerhard ""Gerd",,144: 600W 11el MGF1302 - 432: 400W 20el - 12,07/02 +DJ5CL,JN58WH,,,Ingo,,,08/00 +DJ5DT,JN49IV,,,,,,05/02 +DJ5HG,JO53IU,,,Klaus,,,06/04 +DJ5MN,JN58WH,EME,,Bernhard,,,06/96 +DJ5MS,JN68KS,,,Peter,,,10/99 +DJ5NV,JN59KN,EME,,Günther,,,12/01 +DJ5RE,JN59WK,EME,,Thomas,,144: GS35b 250W 2x12el M2DTR+ 3000lpm,03/04 +DJ5SQ,JN37UW,,,Ivo,,144: TS870 LT2S 600W 11elDTR 2000lpm,12/97 +DJ6JJ,JO31LG,,,Heino,,,12/01 +DJ6MB,JO30,EME,,uwe,,,1994 +DJ6OL,JO52AP,,,,,,10/04 +DJ6TN,JO54CF,,,Gunter,,DTR,09/96 +DJ6WD,JO40AT,,,Karl-Heinz,,DTR 4000lpm,03/99 +DJ6XV,JO31LQ,,,Peter,,,04/04 +DJ7AL,JO61VC,EME,,Jürgen,,144: IC910 VLA 200 4el F9FT,11/04 +DJ7FJ,JN48AG,EME,,josef,,,1994 +DJ7OF,JO51HQ,EME,,Klaus,,144: 6x17el CC 17B2 MGF1302 EME Pwr090 250,09/04 +DJ7OQ,JO42WJ,,,Erik,,144: TS 850 LT2S PA 2x 4CX250 Preap .5 dB,05/03 +DJ7RI,JO54CH,,,,,,12/03 +DJ8ES,JO43SX,,,Wolfgang,,144: 300W 17el - 432: 300W 24el - 1296: 100,08/03 +DJ8MS,JO63CT,,,Toralf ""Tor",,144: 100W 2x11el 6WU Preamp3000lpm MSDSP,08/04 +DJ8OG,JO40MF,,,Matthias,,IC 275H 8el DK7ZB,04/04 +DJ8PB,JO44MC,,,,,,1993 +DJ9BV,JO43XN,EME,,Rainer,,,07/00 +DJ9CS,JO54DG,,,Bodo,,FT-847 200W PA 50: 3 el 144: 9el,09/04 +DJ9CZ,JO31BC,EME,,Karl-Heinz,,FT847 4x15el 4CX1000A,02/04 +DJ9FG,JO52TD,,,Rolf,,HF: FT757GXII 10m Longwire - 50: 25W IRF610,05/04 +DJ9JY,JO31JM,,,Wolfgang,,only SSB-MS,01/01 +DJ9KV,JN68OK,,,hans,,only SSB-MS,06/95 +DJ9MG,JO52TC,,,Peter,,144: 2x 4CX250b 17el Tonna2000lpm,02/05 +DJ9YE,JO43HV,,,Klaus,,144: 400Watt 15el MGF1302,12/04 +DJ9YW,JO42QA,EME,,Heinrich F.,,144: 2x10el 500W - 1296: 3.5 and 4.5m dish 3,02/01 +DK0AK,JO30NQ,,,Clubstation,,,05/04 +DK0ALK,JN38TD,,,Clubstation,,,06/96 +DK0BN,JN39VX,EME,,Contestgruppe Bingen,,144: 700W 3x 9el F9FT + 2x 11elF9FT030275,09/03 +DK0EP,JO31TS,,,,,,11/04 +DK0IG,JN58SE,,,Clubstation,,144: 350W 2x11el,12/96 +DK0NHF,JO62JR,EME,,clubstation,,,1994 +DK0OG,JN68GI,EME,,Clubstation,,144: 700W 8x17elDTR,12/04 +DK0PX,JN48JC,,,Clubstation,,144: 350W 2x17el157,11/03 +DK0TU,JO62PM,EME,,clubstation,,DTR,1993 +DK0TX,JO50HK,,,,,,03/02 +DK0UB,JO31PK,,,Clubstation Ruhruni,,,08/97 +DK0VV,JO61WB,,,OP DD0VF,,144: 550W 4x7el MGF1303131 3000lpm DTR157,03/04 +DK1CM,JO40LG,EME,,Oliver,,144: FT990 LT2S 700W YL1050 18el MGF1302 - 43,04/01 +DK1CO,JO63SX,EME,,Hartmut,,144: TS790 4x17el 3CX800A7 Preamp.086 DTR,04/00 +DK1EJP,JO31DD,,,,,,03/03 +DK1KO,JO53CT,EME,,Reinhard,,144: 8877 4X17el F9FT-full elevation MGF13,12/04 +DK1MAX,JN58SP,,,Max,,,05/02 +DK1MZ,JO42XP,EME,,Stamen ""Stan",,144: EME Pwr 13el MGF1302DTR,11/03 +DK1PZ,JO41TH,EME,,heinz,,,1994 +DK1VI,JN49HH,,,Ernst,,144: 650W 16 el.- 432: 100W 21 el.- 1296: 120,07/01 +DK2AM,JO43AK,,,Dieter,,144: 450W 4x14el MGF1302DTR,12/01 +DK2BJ,JO30BS,,,Ulrich,,,04/04 +DK2FT,JO42KC,,,,,,2003 +DK2UO,JO30,,,heijo,,,1993 +DK2YCT,JO32RG,,,Chris,,,12/03 +DK3BU,JO33NO,EME,,Harm,,50: 25 W ERP 5el - 144: 749W 4x12el Pream,05/02 +DK3DUA,JO61TC,,,Thomas Rudolph,,144: FT847 1000Watts ERPDTR 3000lpm,04/00 +DK3EE,JO41GV,EME,,Thomas,,144: 8877 9el F9FT,08/04 +DK3FB,JO31UC,EME,,Rüdiger,,432: 750W 4x23el - 1296: 150W 37el - 2300: 5W,03/01 +DK3IK,JN39JF,,,Volker,,800lpm,04/97 +DK3MU,JO72GK,,,,,,10/20 +DK3QZ,JO31LP,,,Detlef,,,07/02 +DK3RV,JO31,,,walter,,,07/96 +DK3SE,JN37VP,EME,,Salvo,,,01/05 +DK3WG,JO72GI,EME,,Jürgen,,144: EME-PWR 6x 14el 5wl MGF1302 432: 1KW 8,05/04 +DK3XM,JO43XL,,,Thorsten,,144: 700w 2x2wl 60m asl,09/04 +DK3XT,JN49FE,,,Bernd,,,10/04 +DK4JN,JO31,EME,,a.,,,1994 +DK4OG,JN68GI,,,,,,2003 +DK4TG,JO31LB,EME,,Lothar,,117.180,01/05 +DK4WN,JN49EP,,,Wolfgang,,,11/03 +DK4XI,JN39NG,,,,,,2003 +DK5AI,JO51GO,EME,,Wolfgang ""Wolf",,,01/04 +DK5DC,JO31SL,,,Peter,,,07/02 +DK5DQ,JO31PG,,,Nicolas ""Nico",,144: 300W 2x10elDTR + 3000lpm,03/04 +DK5IT,JN49FB,,,,,,2003 +DK5KK,JO63EX,,,Matthias,,DTR,01/01 +DK5LA,JO44TR,EME,,Reinhard,,,08/02 +DK5MV,JN58WH,,,,,,08/97 +DK5PD,JN39VV,EME,,Lothar,,.040.280,03/00 +DK5TE,JN58BG,,,Stephan,,144: IC746 HLV600/8877 2x13el 432: IC475H 2x2,05/02 +DK5WO,JO30AS,,,Norbert,,,09/01 +DK5YA,JN49NX,EME,,Udo,,50: 4el - 144: GS35b 4x9elM2 PHEMT 0.3db -,07/04 +DK6AS,JO52,EME,,andreas,,,02/01 +DK7BY,JO33RJ,EME,,Karsten ""Sten",,750W,03/04 +DK7LH,JO43BB,,,Maik,,144: IC271 400W 2x3.6wl 9BV - 432: IC471H 100,12/01 +DK7LZ,JO30,,,,,,12/01 +DK8EL,JO31LJ,,,Thorsten (Tom),,144: 100W 9el MGF1302.162 2000lpm.162,12/04 +DK8KX,JO30,,,,,,05/04 +DK8VS,JN39NF,EME,,Werner,,,07/01 +DK8ZJ,JO54AG,EME,,Martin,,144: 550W 4x12el,10/02 +DK9OY,JO52CK,EME,,Detlef (Det),,DTR,10/01 +DK9RL,JN69BB,,,,,,01/97 +DK9TF,JO31NF,,,Jürgen,,FT726r- 17el,05/03 +DK9TU,JN48MF,,,Manfred,,144: 500W 13el DJ9BV,04/03 +DK9ZY,JO40BE,EME,,Wolf-Dietmar,,144: TS850 Trvt YL1052 MGF1302 4x10el 2.2,11/99 +DL0AO,JN59WI,EME,,Clubstation OP DJ3TF,,,02/03 +DL0AVH,JO52,EME,,OP DL7AWO,,144: 700W 2x2M18XXX,07/01 +DL0BWS,JO61,,,OP: Normen,,144: IC-910 100W 2x9el - 432: IC910 4x19el,01/03 +DL0DBR,JO54WC,EME,,Clubstation,,,06/99 +DL0DET,JO52CK,EME,,Clubstation OP DK9OY,,DTR,1994 +DL0EF,JO30IM,,,,,,2003 +DL0FTG,JO53FM,,,Clubstation,,,04/01 +DL0GER,JN49CC,,,,,,08/00 +DL0HES,JO41RF,,,Clubstation,,IC820H 144: 250W 2x11el - 432: 130W 2x23el P,07/01 +DL0LAU,JO61JF,,,,,,05/02 +DL0LN,JO31RS,,,Clubstation N29,,,10/04 +DL0LSW,JO61XU,,,Clubstation,,144: 17el 750W,12/99 +DL0PO,JO43CD,,,Clubstation,,,08/96 +DL0SHF,JO54BH,,,,,,2003 +DL0UL,JN48XK,,,OP DL6SAQ- DL5EBT,,144: 11el 400W 3CX800,04/01 +DL0UMK,JN68BC,EME,,Clubstation,,144: TS790S 4CX1000 4x17el 5WL.123 1500lpm.3,1995 +DL0VV,JO64AD,,,Clubstation- DL5CC,,144: 600W 17B2 Ant 9A4GLDTR 2500lpm,12/04 +DL0WAE,JO42DC,EME,,Teuto Contest Group,,750w and lots of aluminium!,05/04 +DL0WH,JN49HN,EME,,Clubstation OP DF7IT,,,1992 +DL0WX,JO30FQ,,,Clubstation,,,07/96 +DL1AAH,JO52EF,,,Dirk,,IC910H IC703 144: 17el - 432: 21el,08/03 +DL1AOQ,JO50IW,,,Dietmar ""Dean",,,05/02 +DL1BKY,JO33RL,,,,,,2003 +DL1DAX,JO31RM,,,Rüdiger,,144: IC251E 100W 11el - 432: FT780R 30W,04/07 +DL1DSB,JO61,,,r.,,,1993 +DL1DUR,JO70KV,EME,,Jürgen,,144: IC275H 700W 4x11el S3030DTR,08/00 +DL1DWI,JO61VC,EME,,Gerhard,,,10/04 +DL1EAP,JO31IK,,,Wolfgang,,144: 12el 750W172 DTR 2500lpm272 / 363,02/04 +DL1EEX,JO31MA,,,Peter,,144: 750W 10db ant.DTR+ 3000lpm,09/00 +DL1EFJ,JO31GM,,,Norbert,,,09/01 +DL1EL,JO41RF,,,Ralf,,IC820H 144: 250W 2x11el - 432: 130W 2x23el P,09/01 +DL1ELY,JO31IO,,,Stefan,,144: FT225rd Mutek 17el 150W.181 5000lpm JUD,01/01 +DL1GBF,JN48NJ,EME,,Peter,,,02/97 +DL1GBM,JN48FD,,,Michael,,50: 7W - 144: 400W- 432: 100W- 1296: 200W222,07/02 +DL1GGT,JN58AO,EME,,Tom,,144: 8877 2x 12el elev. 10368: 5W 60cm4000l,12/04 +DL1GI,JN49FG,,,Ralf,,,12/03 +DL1GNM,JN38WB,,,Michael,,DTR,10/02 +DL1HTT,JO61FR,,,,,,11/99 +DL1HYZ,JO62,EME,,Uli,,,03/01 +DL1JJ,JO31IA,,,Ulli,,,08/02 +DL1KDA,JO30FQ,EME,,Alex (Sternchen),,FT1000 144: LT2S 3CX800A7 Preamp 2x17ele M2,03/04 +DL1MAJ,JN68AH,,,Alex,,144: 2x17el 750WDTR,12/99 +DL1NEO,JN59KV,,,Markus,,144: IC275H SP2000 Beko HLV600 (max. 600 W),09/99 +DL1NFI,JN59KV,,,Matthias,,144: IC746 100W 12el M2,01/02 +DL1NUX,JN59LG,,,Attila,,IC706MK2G FT847 (/p JO50KI),06/02 +DL1OJ,JO42QI,,,Henning,,144: Elecraft K2 LT2S Beko HLV600 2x9el 50,03/01 +DL1RNW,JO62GH,,,Ronny,,144: 150W 12-5db Yagi,01/05 +DL1RTL,JO62PH,,,Heiko,,144: 13el 100W MGF1302,07/01 +DL1SDN,JN48PP,,,Dieter,,144: 2x11el 500WDTR 2000lpm,07/99 +DL1SFK,JN48PR,,,Oliver,,DTR,06/02 +DL1SUN,JO53PN,,,Norbert,,,04/00 +DL1SUZ,JO53UN,,,Uwe,,50: IC706 3el - 144: IC821 GS35 2x11el Prea,01/05 +DL1UU,JO62SP,,,Wolfgang,,144: 300W 2x9el135 DTR.220,03/04 +DL1YMK,JO31QX,EME,,Michael,,,02/05 +DL2AKT,JO50NV,,,Jens,,IC746 IC706MKII - 144: 700W 9el333,03/02 +DL2ALF,JO50IW,,,,,144: 100W 9elMSDSP,08/02 +DL2ARD,JO60AR,,,Oliver,,144: IC275E 350W 4x17el.149 DTR 3000lpm,08/04 +DL2CJ,JO50,EME,,alfred,,,1994 +DL2DAO,JO31PH,,,Harry,,144: 600W 24el,11/02 +DL2DXA,JO61VC,,,Bernd,,144: 150W 11el.117,01/97 +DL2EAA,JO31KL,,,Dirk,,,07/98 +DL2FDL,JO40LN,,,Michael ""Mike",,FT736R 50: 5el - 144: 150W 9el - 432: 19el 2,08/03 +DL2IAN,JN49BC,EME,,Thomas ""Tom",,144: 1 KW 2x9eltx1500 rx2000lpm,07/01 +DL2IE,JN48,,,dr. r.,,,1993 +DL2JA,JN58,,,,,,02/04 +DL2LAC,JO44MR,EME,,Ernst,,144: 18 dBd GS35b 432: 20 dBd GS35b 1,01/05 +DL2LAH,JO44QS,EME,,Karsten,,144: 750W,11/02 +DL2MHS,JN58,EME,,Thomas,,,03/00 +DL2NFX,JN59IV,,,Michael,,144: IC746 100W3000lpm,04/01 +DL2NUD,JO63LE,,,Hermann,,,05/04 +DL2NWK,JO63SP,EME,,wolfgang,,,1993 +DL2OCB,JN49IS,,,Stefan,,FT726,01/03 +DL2OM,JO30SN,EME,,Roland,,,08/01 +DL2RMC,JN68GI,,,,,,11/97 +DL2RSX,JO62SH,EME,,Olaf,,144: 19 dBd MGF 1302 DSP 1-2KW,12/03 +DL2RUG,JO62,,,,,,01/03 +DL2SDQ,JN49OC,,,Thaddeus (Tadek),,.238.238,08/01 +DL2UX,JO61VA,,,Mario,,144: TR751E 5el 25W - /p JO61VC: 100W 13,08/02 +DL2YDS,JO32,,,Stefan,,,08/97 +DL3AAL,JO52,,,b.,,,1993 +DL3AZI,JO51ME,,,,,,01/97 +DL3BUE,JO72FH,,,Joerg,,,08/02 +DL3BWG,JO62TQ,,,,,,1995 +DL3DTS,JO61UA,,,sylve,,,1993 +DL3FBJ,JO40,,,,,,11/01 +DL3GN,JN37VX,,,Udo,,,07/01 +DL3HRT,JO61AB,,,Karsten,,144: 10el 2.3wl 100W GaAsFet DSP-NRDTR,07/02 +DL3IAE,JN49DE,EME,,Daniel,,50: TS120 trvt 6el - 144: 3CX800 750W 2x10el,07/99 +DL3IAS,JN49EJ,,,Nino,,144: 20W 10el DK7ZB - 432: 3W 23el DK7ZB - 12,08/03 +DL3JAN,JO60KT,,,Jan,,144: 9el 300W,03/01 +DL3JIN,JO60LX,,,Peter,,,04/03 +DL3LBK,JO54AH,,,Kai,,144: 250Watt 11el.082 DTR.382,07/96 +DL3LST,JO61FI,,,Ray,,,01/05 +DL3MBG,JN68,,,Christian,,,01/96 +DL3MGL,JN58QD,,,Carlos,,DTR,12/01 +DL3NAW,JN59KV,,,Wolfgang,,144: 500W 2x11elDTR tx1200lpm,08/03 +DL3NCR,JN48QX,,,Georg,,50: IC736 3el Yagi - 144: IC275E 11el DL6WU 8,01/04 +DL3RBH,JN68HJ,,,Robert,,,05/99 +DL3RU,JN49FG,,,,,,2003 +DL3SAS,JN48OR,EME,,Hartmut,,,04/96 +DL3TN,JO31LC,,,,,,12/01 +DL3TW,JO44SK,,,Thorsten,,144: FT1000 LT2S 6x6el 600W,01/03 +DL3WW,JO60FL,,,,,,08/04 +DL3XT,JN49FT,,,bernie,,,1993 +DL3YBP,JO42,EME,,heiko,,,1993 +DL3YEE,JO42GE,EME,,Klaus,,,01/05 +DL3YEL,JO41EV,,,Ulrich (Ulli),,144: 9el 3CX8002500lpm DTR,07/02 +DL4ABJ,JO42XP,,,,,,2003 +DL4ALI,JO50JW,,,Steffen,,,07/99 +DL4ANT,JN49LF,,,Jörg,,,09/01 +DL4AO,JO42NX,,,Heinz,,144: 150W 11el,07/04 +DL4DTU,JO60TS,EME,,Norbert,,DTR,01/02 +DL4DWA,JO61QH,,,Uwe,,144: 120w 13ele 432: 35w 19ele370,01/05 +DL4EA,JO31,,,Frank,,,09/96 +DL4EBY,JO62PM,EME,,Klaus,,DTR,12/03 +DL4IB,JO64CC,,,Manfred,,144: 11el 300WMSDSP,12/98 +DL4KG,JN48OU,EME,,Gerald,,TS2000 - 50: dipole - 144: 10el DJ9BV 100W,05/04 +DL4MEA,JN58RI,EME,,Guenter,,144: GS35b 15el MGF1302 432: GS35b 6x33el,09/04 +DL4MP,JN48NV,,,Manfred (Manne),,50: 100W 5el.095.195,01/01 +DL4NAA,JN49NX,,,Christian ""Chris",,144: hm 750W 2x15el.144 2000lpm,04/01 +DL4SUN,JO63CT,,,,,,10/04 +DL4XX,JO43XK,,,,,,07/97 +DL4YAO,JN58,,,,,,05/02 +DL4YBM,JO42DC,,,joe,,,1995 +DL5AG,JO41,,,,,,01/03 +DL5BAC,JO43LG,,,hans-jürgen,,DTR,01/96 +DL5BBW,JO32NH,,,,,,01/01 +DL5CC,JO64AD,,,Manfred,,144: 17el 600W2500lpm DTR,12/04 +DL5DAV,JO31,,,Uwe,,,1994 +DL5DTA,JO61SD,EME,,Arnfried ""Andy",,144: 4x11el EME Pwr GaasFet DSP59.134 DT,08/99 +DL5EBS,JO31LH,,,Juergen,,144: FT847 150 W 13 el Yagi,08/03 +DL5FDP,JN49LP,,,Stefan,,,11/02 +DL5GAC,JN47UT,,,Robert,,144: 400W 15el CueDee CF300DTR,08/04 +DL5IO,JN49NI,,,,,,01/97 +DL5LF,JO54,EME,,Frank,,432: 1KW 4x9el 9BV 8.5lb - 1296: 20W 23el.010,08/00 +DL5MAE,JN58VF,EME,,Wolfgang,,144: 8x17el 700WDTR,01/05 +DL5MAM,JN58UB,,,Karl,,144: 100W 10el,07/04 +DL5MCG,JN58KH,,,Wilhelm,,144: 11el 500W3000lpm,01/05 +DL5ME,JO52SD,,,Mario ""Mao",,144: 100W 18el3000lpm,04/04 +DL5MEL,JN58,,,Sigi,,144: 600W 11el,03/00 +DL5NEN,JN59MO,,,Thomas,,144: 12el GS35b MGF1302 - 432: 28el GS35b - 1,12/97 +DL5OAU,JO52GW,,,Ulrich,,,01/03 +DL5QQ,JO32KB,EME,,Thorsten,,.060.330,04/96 +DL5RBW,JN58VF,,,,,,2003 +DL5RDO,JN59VN,,,,,,1992 +DL5ROB,JN68HG,,,Robert,,144: 300W 16el BF981MSDSP,08/02 +DL5WG,JO52VK,,,Rolf ""Roy",,50: 20W 4el - 144: 300W 2x11el144 DTR 250,05/04 +DL5XV,JO53AP,,,Bernd,,144: 2x15el 600W.128.228,07/01 +DL5YAS,JO31WS,,,,,,12/01 +DL5YET,JO41EV,,,Markus,,144: 750W 13el - 432: 750W2000lpm DTR,04/02 +DL5ZA,JO51HK,,,Reinhard,,144: IC706 100W 14el F9FT,01/04 +DL6BF,JO32QI,,,Heinz,,144: 250W 13el - 432: 150W 4x11elDTR 2500l,05/03 +DL6EAT,JO43VR,,,Andreas,,,01/97 +DL6KR,JO30NQ,,,Martin,,,05/04 +DL6LAU,JO53CF,EME,,Carsten,,,07/03 +DL6MFK,JN67,,,Robert,,,05/03 +DL6NAA,JO50VF,EME,,Reinhold,,,10/00 +DL6NCI,JO50VI,,,lorenz,,,1993 +DL6RDR,JN68BM,,,Stephan,,.065,10/95 +DL6UAL,JO61XU,,,,,144: 750W 2x BigWheel,12/00 +DL6WT,JN39VV,EME,,Jürgen,,.030.260,04/96 +DL6WU,JN49HT,EME,,Günter,,,02/04 +DL6YCY,JO41,,,Maik,,,12/99 +DL6YEH,JO32VA,EME,,Andreas ""Andy",,144: IC730 LT2S 749W 2x2.2wl 9BV - 432: IC7,03/02 +DL6YFB,JO31KM,,,reinhard,,,01/96 +DL6ZAU,JO40JF,,,Gerd,,FT736+MHP145 144: 350W 2x12el M2145 3000 DTR,09/03 +DL6ZBN,JO40ED,,,Joerg ""Joe",,144: TS700S 80W 11el MGF1302DTR 3500lpm,05/02 +DL7AJA,JO40AQ,,,Friedhelm ""Fred",,144: IC-706MKIIG 3CX1500A7 MGF1302 17el. T,11/04 +DL7AKA,JO62QO,EME,,HansJürgen ""Hajo",,144: TR7 Trvt 2x4CX250b 15el DJ9BV.144 25,01/01 +DL7APV,JO62,EME,,Bernd,,,08/00 +DL7ARM,JO62RJ,,,Christian,,,12/95 +DL7AUK,JO62,,,,,,2003 +DL7DCU,JO41BC,,,Jan,,144: FT767 100W 4x11el MGF1302only SSB-MS,03/99 +DL7FF,JO62TJ,EME,,Bernd,,HF 100W FD4 - 144: 4x11el 1KW.063 DSP.370,05/02 +DL7QY,JN59BD,,,Claus,,,01/97 +DL7TX,JN49IV,,,Peter,,144: 50W 6el - 432: 17el 100W,11/01 +DL7UAE,JO62PH,EME,,Thomas,,FT736R 50: PA Tonna20505 - 144: GS35 4x3wl (,01/05 +DL7UDA,JO62TK,EME,,Dietmar,,144: IC275H GS35b 17el F9FT 432: IC475H GS3,12/04 +DL7UGB,JO62,,,,,,05/97 +DL7ULE,JO62,,,,,,12/95 +DL7ULM,JO62SN,,,,,,05/01 +DL7UME,JO62SN,,,,,,2003 +DL7YC,JO62PK,,,Manfred,,HF: 400W - 50: 10W - 144: 200W - 432: 750W -,09/03 +DL7YW,JO62RK,EME,,Jürgen,,.320,01/02 +DL8AKI,JO51,,,Sigi,,,11/95 +DL8BBL,JO42,,,,,,04/04 +DL8BDU,JO43AA,,,Klaus,,144: 600W 15el,08/04 +DL8CMM,JO52VM,,,Günter,,.137,05/04 +DL8DAT,JO31,EME,,manfred,,,1993 +DL8DUL,JO61,,,,,,08/04 +DL8EBW,JO31NF,EME,,Guido ""Guy",,144: TS2000 12el M2-10°elev GU74b SSB-Preamp,02/05 +DL8FBD,JO40,,,g.,,,1993 +DL8GAM,JN37,,,Urs,,144: TS870 600W 11elDTR,12/97 +DL8GP,JN39LH,EME,,Hans W.,,144: SE400/Icom 761/LT2S 750W 4xCrossyagis (,08/04 +DL8HCZ,JO53AP,,,Joachim,,DTR,11/00 +DL8LAQ,JO43XU,,,Norbert,,144: TS850 LT2S 350Watts Preamp 17el Tonn,01/01 +DL8NBN,JN58,,,a.,,,1993 +DL8OBU,JO42XI,EME,,Jürgen,,432MHz: 750W 4x33el - 1296MHz: 150W 67el1881,11/01 +DL8SCL,JN48RM,EME,,georg,,,03/01 +DL8SCQ,JN48RV,,,Eberhard,,DTR,07/99 +DL8UCC,JO71EQ,EME,,Helge,,144: 500W 2x11el or 2x17el,07/04 +DL8YE,JO31MH,,,Christian,,144: FT221r 17el M2 350W,07/04 +DL8YET,JO31MH,,,,,,01/05 +DL8YHR,JO41GV,EME,,Frank,,50: LT6S 2x9el M2 - 144: 24el M2 750WDTR tx,01/05 +DL9AN,JO62RE,,,Bernd,,50: 10W 5el - 144: FT736r 750W GS35b 2x12el,08/04 +DL9BDM,JO33RL,,,eilert,,,1993 +DL9DBJ,JO31VH,,,,,,12/94 +DL9EBF,JO31FH,,,,,,2003 +DL9EBL,JO31,EME,,karl,,,1994 +DL9GBH,JN48RW,,,,,,12/01 +DL9GRE,JO64PA,,,Stefan,,,08/02 +DL9GS,JO31OM,EME,,Alfred,,DTR,03/01 +DL9IM,JO31,,,,,,07/04 +DL9KR,JO40DE,EME,,Jan,,,09/02 +DL9MCC,JN58UA,,,Johann (Hans),,144: 4x 2-4wl 700W MGF1302 - 432: 2x 7wl 700W,08/03 +DL9MS,JO54WC,EME,,Joachim,,144: 4x17el GS35b MGF1302160 DTR 3500lpm360,11/04 +DL9NDD,JN59KN,,,,,,2003 +DL9OA,JO64EB,,,Bernd,,144: IC821 100W 9el/2.5wl CF300MSDSP,03/02 +DL9OBD,JO42QN,EME,,Thomas ""Tom",,IC7400 144: 4x11el 750W BF981 - 50: 5el 25,10/03 +DL9RCI,JN68,,,,,,07/95 +DL9USA,JO71EN,,,Andreas,,144: 10el DL6WU 300W RXAmpl3000lpm MSDSP,09/03 +DL9YEY,JO41GV,,,,,,2003 +DM1CG,JO31IC,,,Carsten ""Gaby",,50: TenTec 526 10W 4ele 144: TS 850 LT2SMK,01/05 +DM1HD,JO31GD,,,Herbert,,144: TS850S LT2S HLV600 600Watt 17 EL M2only,08/02 +DM2BHG,JO51MW,EME,,Heinz,,144: 4x17el 2xGS35b MGF1302,02/01 +DM2DXG,JO51MV,,,Bernhard,,,06/02 +DM2ECM,JO62GJ,,,,,,11/01 +DM2GS,JO42HJ,,,Günther,,,12/04 +DM2PG,JO51,,,,,,04/03 +DM3FG,JN49LT,,,Frederico,,,04/03 +DM3FM,JO40MF,,,Matthias,,144: IC275H 8el 7ZH,06/02 +DM4KA,JO64II,,,Stephan,,,03/03 +DN1FC,JO41RF,,,OP DL3ZBA,,IC820H 144: 250W 2x11el- 432: 130W 2x23el Pr,07/01 +DN1MA,JN58VF,,,OP: DN1MA- DL5MAE,,144: 8x17el 700WDTR,12/00 +DN2MS,JO31OM,,,OP DJ2QV,,144: C5400 HG51 400W 9el MGF1302DTR,12/98 +DO1CTL,JO60LT,,,Frank,,,08/01 +DO1EDK,JO31RL,,,Dirk,,,05/04 +DO1EL,JO31JL,,,,,,06/02 +DO1ERS,JO31JC,,,Ruediger,,144 : FT 221R 10Watt 4el Yagi WIMO RX-PA06,01/04 +DO1NF,JN69,,,,,,08/01 +DO1YDS,JO42HJ,,,Daniel,,,04/04 +DO3MT,JN67,,,Tom,,FT817,01/03 +DO5AN,JO31,,,,,,04/02 +DO9ST,JN49VW,,,Thomas,,,03/01 +EA1ABZ,IN71QO,EME,,Ramiro (Rami),,144: 4x12el or 11el DL6WU 1500W (4CX250+GS35B,10/02 +EA1AIB,IN82TK,,,,,,08/95 +EA1BFZ,IN81SS,,,,,,04/04 +EA1BLA,IN53UM,,,Manel,,50: 100W 5el - 144: 1kw 12el MGF1302 - 432,10/02 +EA1CRK,IN73DM,,,Carlos,,Kenwood ts-790e or Icom 706 MkII 50: 100W 7,01/04 +EA1CYE,IN83,,,p.,,,1993 +EA1DDU,IN73FM,,,Domingo Alvar ""Domi",,50: 10W 5el - 144: 170W 16el CF300 - 432: 120,08/03 +EA1DOD,IN73AN,EME,,alfredo,,,1993 +EA1EBJ,IN73FF,,,Santurio,,50: IC729 10W 4el - 144: IC260 80W 17el - 432,04/01 +EA1EW,IM79WS,,,Miguel A.,,,07/95 +EA1JK,IN72RA,,,EA1JK,,only SSB-MS,01/01 +EA1KV,IN52PF,,,Andres,,,1993 +EA1OD,IN73EM,,,j.c.,,,1990 +EA1RX,IN52PF,,,Enrique,,IC706 MKIIG,06/03 +EA1SH,IN63GA,,,Manuel,,144: 17B2 170W GaAs-Fet - 432: 31el 180W GaAs,05/04 +EA1YV,IN52OC,EME,,Agustin,,50: IC706 2x5el - 144: TS790e GS35b 2x17elB2,10/02 +EA2AF,IN92,,,,,,1990 +EA2AGZ,IN91DV,EME,,Nicolas,,FT1000MP- FT736 144: 4CX1500b 4x17B2CC MGF140,07/04 +EA2AJX,IN83,,,Inaki,,50: 10W Dipol - 144: 100W 6el Quadonly SSB-MS,08/02 +EA2ARD,IN93,,,,,,08/02 +EA2AVY,IN92DS,,,,,,2003 +EA2KP,IN83MG,,,Miguel ""Mixtel",,144: TR751E 2M18XXX 200W Preamp - 432: 100W 2,04/04 +EA2LU,IN92ET,EME,,Jorge,,144: 4x9el 1KW MGF1302.127 DTR,10/02 +EA2LY,IN93AH,,,Enrique Gil,,144: TS790 4CX1500 LNA144 2x18elDTR,08/98 +EA2RCF,IN82,,,,,,08/02 +EA3ADW,JN11CQ,EME,,J.Miguel (John),,,10/02 +EA3AEL,JN01,,,,,,1993 +EA3AIR,JN11,,,j.i.,,,1993 +EA3AQJ,JN11BJ,,,ramon,,,1987 +EA3AXV,JN01TJ,,,Joaquim ""Quim",,144: FT920+trsv GS35b 17B2,07/03 +EA3BB,JN01VS,,,Pau,,144: 20el M2 400W MGF1302,01/00 +EA3BEW,JN01SG,,,,,,12/95 +EA3BTZ,JN11BI,EME,,Enric,,144: 100W 16el 0.8db preamp,09/02 +EA3CN,JN11BI,,,Manuel,,,03/96 +EA3DUY,JN12LD,,,Tony,,144: 4x17el 800W - 50: 6 el 500W - 432: 21el,08/02 +EA3DXU,JN11CM,EME,,Jose Maria (Josep),,144: 2 x 17 El M2 + 4CX1500B - 432: 2 x 38 E,01/05 +EA3ECE,JN01LT,,,,,only SSB-MS,11/97 +EA3EHQ,JN11HR,EME,,Jose m.,,,03/96 +EA3FLN,JN11KT,,,Jordi,,144: IC275H 450Watts GaAsFET preamp 0.6dB,04/04 +EA3GAW,JN11BI,,,,,,2003 +EA3GCJ,JN11EM,,,Amadeo,,Yaesu FT-107M,04/04 +EA3GFB,JN11,,,,,,12/95 +EA3GIQ,JN01ND,,,Ramon,,,07/95 +EA3IH,JN11BJ,,,rafael,,,1987 +EA3KU,JN00JV,,,Fernando,,144: IC275H 2x4CX250 16el- preamp.113 DTR,07/03 +EA3MD,JN11,,,,,,1994 +EA3MM,JN01WH,EME,,Radioclub,,,1993 +EA3PL,JN11PL,EME,,vicente,,,1994 +EA3TI,JN11JT,,,Ramon,,144: 17el 5lambda Yagi 400Wonly SSB-MS227,01/05 +EA3UM,JN01,EME,,magin c.,,,1994 +EA3URC,JN11,,,OP EB3GCP EB3FYM,,YAESU FT-100 ICOM IC-706MKII - 144: 50W 14el,05/03 +EA3WH,JN01,,,j.g.,,,1993 +EA4AMX,IM89AT,,,Jose Luis,,only SSB-MS,07/01 +EA4BAS,IN80HL,EME,,Miguel,,FT847 144: 17el 180W MGF1302 - 432: 35el 100W,09/02 +EA4ED,IM79FW,EME,,,,,1994 +EA4EHI,IM68TV,,,Jose Luis,,144: IC275H 1500W 4x17B22500lpm,07/01 +EA4EOZ,IN80CI,,,Miguel Angel,,144: TM255 9el 40WDTR 3000lpm,01/02 +EA4LU,IM68TV,,,Paco,,144: FT726r 400W 17el (17B2).080 1500lpm,04/03 +EA4SV,IM68MU,,,Roberto,,,04/04 +EA5AAJ,IM99SL,,,Manuel ""Dom",,144: IC-706MK2G 100W 9el,04/04 +EA5CJ,IM99TL,EME,,jacinto,,,1994 +EA5EMM,IM99,,,j.,,,1993 +EA5GIY,IM98XD,EME,,Eric,,,01/99 +EA5HM,IM99,,,p.r.,,,1993 +EA5IC,IM98,,,mario,,,1994 +EA5NO,IM98FV,,,,,,08/97 +EA5SE,IM98IL,EME,,,,,11/04 +EA5ZF,IM99VT,EME,,Javier Oliver,,50: 50 W 3 el - 144: 800Watt 17el LNA145 -,08/03 +EA6ADW,JM19LU,EME,,Peter,,50: 20dbd- 144: 40W- 10el- up: div. Spiegel,07/97 +EA6DD,JM19JK,,,Biel,,144: IC706MKIIG 17elB2 100W,05/03 +EA6FB,JM08PV,EME,,Jose,,085 MSDSP,08/02 +EA6IB,JM09SB,,,OP EA6FB-6QB-EB6AOK,,144: IC251E 150W 15elYagi076 2000lpm MSDSP,04/02 +EA6NP,JM19MQ,,,juan miguel,,,1993 +EA6QB,JM08PV,,,Bartolome ""Bartolo",,144: 2x15el 4CX400MSDSP,05/03 +EA6SA,JM19IR,EME,,Josep,,144: FT847 2x4CX250 2x17el - 432: 4x33el,08/02 +EA6VQ,JM19HN,EME,,Gabriel,,144: 1.5KW MGF1302 8x17el M2 432: 21el,01/05 +EA7AJ,IM87CS,,,Juan,,144: 300W 2x 19el,08/04 +EA7DBH,IM76GD,,,miguel angel,,,1994 +EA7EYX,IM87CS,,,,,,12/04 +EA7HG,IM87CS,,,Uge,,,01/04 +EA7IT,IM87XI,,,John,,144: 14el 100W.147 1200lpm,10/00 +EA7OC,IM77OV,,,Luis R.,,144: IC820 250W 17el.330,03/01 +EA7RM,IM87CS,,,Manuel Abian (Nino),,144: TR9130 240W 17B2 OH5IY2000lpm,07/02 +EA7TL,IM76GC,,,juan lucas,,,05/96 +EA7TN,IM66VP,,,Nacho,,TS2000 144: 100 W 2.5 wl,10/04 +EA8FF,IL28,EME,,Mark,,,02/01 +EA9AI,IM75IV,,,Francisco Javier,,144: 100W 9el.070,06/03 +EA9MH,IM85NG,,,Manuel,,only SSB-MS.400,05/00 +EB1BKG,IN62BH,EME,,Pily,,,11/01 +EB1DNK,IN62CI,EME,,Jose Manuel,,144: IC706 4x17el 500 Watt MGF1302 - 432: 7,01/05 +EB1EFC,IN52OF,,,alfonso,,,1993 +EB1EHO,IN73DM,,,Luis,,144: 17el 200W - 432: 21el 50W130280,07/04 +EB1EUW,IN82TK,,,,,,1995 +EB1IHY,IN52PM,,,Julian,,144: 17el 160W,07/04 +EB1ISN,IN71SW,,,Juanjo,,Icom 275H 16el Arake,12/04 +EB1IVY,IN53SJ,,,Gonzalo ""Zalo",,,07/02 +EB2AYV,IN83MG,,,George,,144: 250W 2M18XXX,01/04 +EB2DTP,IN82NS,,,Inigo,,FT847 IC746 FT816 17el 1000W,08/03 +EB3BAP,JN11CJ,,,Patxi,,144: FT736r 200W 17elonly SSB-MS,01/01 +EB3CNX,JN11DI,,,,,,1993 +EB3EPR,JN01ND,,,,,,2003 +EB3GHU,JN11CJ,,,Ramon,,,04/04 +EB3WH,JN01WN,,,Juanjo,,,1993 +EB4DF,IM79QQ,,,Juan,,TS-790 FT-817 144: 500W 17el - 432: 500W 21,06/04 +EB4EQZ,IN80DK,,,,,only SSB-MS,08/96 +EB4ERS,IN80BH,,,Juan Carlos,,FT736 144: 140W 9el GaAs-Fetonly SSB-MS.385,01/00 +EB4EUB,IN80DJ,EME,,Toni,,50: 6el 100W - 144: 17el 1KW MGF1302 - 432: 2,08/00 +EB4FXD,IM78BX,,,Manolo,,144: 150W 17el,02/04 +EB4GIA,IN80CG,,,Pedro,,144: IC821 IC706 TS790 240W 17el - 432: 100W,02/98 +EB4TT,IN70XJ,,,Miguel,,.183 DTR,05/00 +EB5AYG,IM99TN,,,Paco,,144 FT902DM Trvt 4cx350 4x11el F9FT,05/03 +EB5AZO,IM99RA,,,Paul,,,11/04 +EB5EEO,IM98PG,EME,,Vicente,,144: FT736 2x17el 4CX1500 DSP - 432: FT736 4x,09/99 +EB5EHX,IM99,,,x.-a.,,,1993 +EB6AOK,JM09RB,,,Enrique,,144: 70W 9el,04/03 +EB7BQI,IM76SR,,,,,,06/03 +EB7COL,IM77AG,,,Jose,,,05/04 +EB7EFA,IM67XI,,,mairena,,,1995 +EB8ANY,IL18,EME,,Marc,,144: 500W 4x 7el,12/04 +EB8BTV,IL18QI,,,Fernando,,only SSB-MS,05/03 +ED1GSR,IM79WS,,,,,,1994 +ED4RKF,IM79WS,,,OP EB4GIA,,144: 240W 13el1500lpm,03/97 +ED5TOR,IN90XP,,,Op. DL3MGL,,,1993 +ED6EIG,JM19IM,,,,,only SSB-MS.243,08/99 +EG3TVC,JN11BI,,,OP EA3DXU,,144: 400W 17el M2.115,12/99 +EH1RX,IN52IN,,,Enrique,,IC706 MKIIG,03/02 +EH3AXV,JN01TJ,,,Joaquim ""Quim",,50: FT920+trsv GS35b 6elYagi150,07/02 +EH5RM,IM98,,,,,,07/02 +EH7RM,IM76QM,,,,,,2003 +EH9LS,IM75IV,,,,,,2003 +EI2CA,IO62,,,Paul,,only SSB-MS,1988 +EI2FSB,IO51DN,,,Tony,,144: 100W 2x9el,05/02 +EI2VPX,IO53IQ,,,,,,1991 +EI3GE,IO63XD,,,Jim,,only SSB-MS,08/00 +EI4DQ,IO51WU,EME,,Tom,,144: TS711 4CX1500b MGF1302 4x14el or 13el500,08/02 +EI4VBE,IO42,,,OP DF1ZE,,,1988 +EI4VBS,IO42,,,,,,1990 +EI4VWY,IO54,,,,,,08/01 +EI4VWZ,IO55,,,,,,08/01 +EI5FK,IO51RT,EME,,Charles,,144: FT847 150W 9elMSDSP,05/04 +EI5HN,IO41UT,,,OP DF6NA,,,1995 +EI6CPB,IO63WE,,,Hugh,,50: IC706 - 144: IC821.310,06/03 +EI6GF,IO62RG,,,,,,02/98 +EI7IX,IO53FT,,,Dermont,,TS2000,08/04 +EI7RCG,IO62,,,,,144: 27el,08/96 +EI7RSD,IO62WX,,,OP EI2CA,,144: 27el 400Wattsonly SSB-MS.225,07/96 +EI9HW,IO63MP,,,John,,,10/93 +EJ4VNX,IO43,,,,,,1993 +EJ6O,IO43MM,,,,,,1994 +EM1U,FC74US,,,,,,2003 +ER1AN,KN46KX,,,Sergei,,144: FT857 200W 2x10el,12/04 +ER2RM,KN46KA,,,,,,11/05 +ER5AA,KN45CW,,,Vasilij,,,06/00 +ER5AL,KN45CW,,,,,,07/02 +ER5OIW,KN46KX,,,,,,01/05 +ER5OK,KN46KA,,,,,,01/05 +ES0Q,KO17AV,,,Tom,,,06/04 +ES0X,KO18,EME,,OP ES2RJ,,,07/99 +ES1CW,KO29HK,,,Arvo,,,05/98 +ES1RF,KO29IJ,EME,,Gennadi ""Gene",,FT1000MP/FT847/FT736 Preamps 50: 2x5el 500W,02/04 +ES2CM,KO29DJ,,,Aimar,,ICOM-706 mkIIG,01/03 +ES2NA,KO29JL,,,Andrus ""Andy",,144: IC706MKII 300W 9el137,04/02 +ES2QH,KO29LL,,,Aarne,,144 : FT847 700Watts 9ele Preamp - 432: IC82,08/01 +ES2RJ,KO29JM,,,Toomas ""Tom",,144: TS790 350W 9el.177 DTR 3000lpm.210,05/03 +ES2RQ,KO28WA,,,,,,01/05 +ES2WX,KO29JN,,,,,,05/03 +ES3BR,KO28JS,,,,,,05/04 +ES3GZ,KO28,,,jaan,,,1993 +ES5KJ,KO38IJ,,,Tom,,,01/05 +ES5MC,KO38JJ,,,,,,12/95 +ES5MG,KO38IJ,,,Guido,,,1/94 +ES5PC,KO38IK,,,,,,08/98 +ES5RE,KO38,,,,,,1994 +ES5RN,KO38,,,,,,1994 +ES5RY,KO38JI,,,Toomas,,,11/02 +ES5WE,KO38JJ,,,,,,1994 +ES6DO,KO27WX,,,Neil,,IC706MKII + Preamp 50: 4el - 144: 15el 3,09/03 +ES6LBN,KO37AW,,,Rein,,144: 170W 11el366,07/04 +ES6RQ,KO28WA,EME,,Ants,,TS2000 FT736 FT847 144: 1KW 4x18el 9BV,08/04 +ES8AS,KO28FJ,,,,,,04/04 +ES8X,KO18XC,EME,,OP ES2RJ,,144: TS790E+PA 300W 2x9 el or FT 847+ PA 30,07/02 +EU1AA,KO33SJ,,,,,,01/05 +EU1AB,KO33SU,,,George,,,01/96 +EU6MS,KO45IN,,,Victor,,144: 16el 700W MGF1302.178 2000lpm.300,09/01 +EV2AA,KO33PM,,,,,,2003 +EV2AAB,KO33ST,,,,,,2003 +EV2OEU,KO52IK,,,,,,2003 +EV5M,KO43KB,,,OP DL5BAC- DJ9YE,,,1994 +EV5N,KO42RX,,,OP DL5BAC- DJ9YE,,,1994 +EW1RZ,KO33SV,,,Sergej,,,10/01 +EW6AL,KO46KB,,,Aleksej,,.178 3000lpm,08/98 +EW6DX,KO45JL,,,Igor,,144: 100W 9el.087 800lpm,08/97 +EW6FS,KO35LB,,,Anton,,144: 20W 2x16el F9FT Preamponly SSB-MS.300,01/03 +EW6GB,KO45CN,,,Andy,,144: 200W 10elMSDSP.300,08/02 +EW7IM,KO53,,,anatoly,,,1992 +EW7IN,KO53,,,,,,1994 +EW7IW,KO53DR,,,,,,2003 +EW8DD,KO42QA,,,Valentin,,144: 4x16el F9FT- 50W,12/98 +EY8MM,MM48FI,EME,,,,144: 200W 2 yagi,10/04 +F0DBD,JN08XW,,,Frederick,,FT726R 10W 10el Preamp,01/02 +F0EJW,IN78,,,,,,12/04 +F1AFJ,JN06HT,EME,,Jean-Pierre ""John",,144: 4x11el F9FT 1500 W 0.4dB2000lpm WINDSP,11/04 +F1AKK,JN39CC,,,Oli,,only SSB-MS,07/01 +F1AOE,IN93RS,,,,,,04/04 +F1CCM,IN93MP,,,,,,1993 +F1CNE,JN28,EME,,denis,,,1994 +F1DLZ,JN19FH,,,,,,05/04 +F1DUZ,IN97NJ,,,Philippe,,144: FT225RD 2x 4CX250R 700W 2 x 11el pre,12/04 +F1EBK,JN18BW,EME,,Patrick,,144: TS790A 300W 4x10el DK7ZB,11/04 +F1EBN,JN18JR,,,,,,08/02 +F1ELL,JN18EX,EME,,robert,,,1994 +F1FEN,JN25JC,EME,,gilles,,,1994 +F1FHI,IN97GD,,,,,,2003 +F1FIH,JN23GS,,,Michel,,,04/03 +F1FLA,JN26KU,EME,,Jena-Jacques,,144: 4x25el Xpol 7.6lb 1KW MGF1302.022.270,10/99 +F1FVP,IN95XA,,,,,,2003 +F1GHP,IN96LE,,,,,,2003 +F1GTR,IN96JE,,,,,,2003 +F1GTU,JN05IF,,,,,,07/98 +F1HAR,JN18DT,,,marc,,,1993 +F1IHP,IN88,,,,,,07/02 +F1ISJ,IN97QM,,,Eric,,FT847,05/02 +F1IXQ,JN15MQ,,,Jim,,,12/01 +F1JG,JN23HQ,,,,,,08/02 +F1JOE,JN05IF,,,francois,,,1993 +F1JRD,JN13WO,,,Lionel,,144: TR751 GS35b 2x11el F9FT5000lpm,12/04 +F1MBM,JN38CQ,,,Alex,,FT225RD 144: 8877 4CX250 MGF1302 16el F9FT,12/02 +F1MOZ,JN27MH,,,Bruno,,,01/04 +F1MPQ,JN09SG,,,Bruno,,144: 2x9el 2KW - 432: 80W 26el doublequad,02/04 +F1NGP,JN39CC,,,Yann,,,04/97 +F1NNI,IN88,,,,,,04/02 +F1NSR,JN33JK,,,Yannick,,144: IC275h 17B2 2x24CX250,01/04 +F1ODA,JN13FO,,,,,144: 400W115215,10/02 +F1PUX,JN16XL,,,Denis,,TS690S 144: LT2S 200W 20el - 50: 5elonly S,01/99 +F1PYR,JN19DA,,,,,,04/02 +F1PYW,JN38UP,,,Eric,,144: 120W 9el or 2x11el - 432: 17el or Helix,03/99 +F1RAD,JN25WF,,,Yvan,,50: 5W 1/4wl. - 144: TR751e 25/200W.300,05/02 +F1RHS,JN03PV,,,,,only SSB-MS,11/01 +F1VJQ,IN95OL,,,OP G8APZ G4FUF,,,07/04 +F2TU,JN38LG,EME,,Philip,,,11/01 +F3VS,JN38LF,EME,,Claude,,24x20el (6wl) & 8x20el (6wl) DJ9BVs,03/99 +F4ALP,JO10OP,,,,,,12/01 +F4APX,JN23XL,EME,,Fred,,144: 4*18EL - 432: 4*21EL 2*4CX250,01/04 +F4ARU,IN94VT,,,Jeremie,,144: 4x3.6wl 1KW 8877,11/01 +F4AZF,JN38IW,,,Damien,,144: IC275h 500W 8874 4x 4.4wl DJ9BV Preampo,08/03 +F4BKV,IN95PT,,,Vincent,,144: TS700 150W 9el - 432: TS440S TRV 70W 21,04/02 +F4CIB,JN03,,,Franck,,144: 250W 9el.241,05/02 +F4CYZ,JN38SF,EME,,Florent,,144: FT897D 150W 9el Yagi,01/05 +F4DDX,JN23QG,,,Claude,,TM255E,11/04 +F4DSD,JN23JO,EME,,Emmanuel,,,01/05 +F4DXX,IN97LH,,,BRUNO,,,11/03 +F4JRC,JN23JW,EME,,Tempier,,144: 4x10el,01/01 +F4JVG,JN16UM,,,,,,07/02 +F5ANT,JN24RJ,,,Rene,,only SSB-MS,04/96 +F5AQC,JN05PU,,,,,,2003 +F5BUU,JN03BO,,,Jean-Claude,,,01/05 +F5DE,JN05DP,,,Bernard,,50: 50W 5el - 144: 100W 16el076 DTR 2000lpm,01/05 +F5EAN,JN06CP,EME,,jean michel,,,1994 +F5FEN,JN25JC,,,,,,2003 +F5FHI,IN97GD,EME,,jean pierre,,,1994 +F5FLN,IN94SR,,,Michel,,144: 300W 17el800lpm,08/99 +F5FVP,IN95WB,,,Jean Yves,,144: 4x17el 1KWonly SSB-MS,07/00 +F5GHP,IN96LE,,,Jean-Pierre,,144: IC745 700W 14el 9BV CF3002500lpm MSDSP,07/02 +F5HRY,JN18EQ,EME,,Herve,,144: 1KW 4x11el.077 DTR,11/02 +F5IVP,JN23,,,,,,08/02 +F5JNX,JN37PV,,,Jean-Marc,,,01/04 +F5JRX,JN25AW,,,bruno,,,1994 +F5KCR,JN26IX,,,OP: F1RXC- F1JLD,,,08/96 +F5KDK,JN23VF,,,,,,2003 +F5KPO,JN24,,,,,,12/01 +F5LEN,JN38BO,,,Pascal,,144: IC275A 250W 17elB2054 MSDSP.254,10/01 +F5LKW,JN23SJ,,,Roger,,144: TS700 60W 13el2000lpm,04/03 +F5LRL,JN26MV,,,Mike,,144: 400W 4x10el,05/02 +F5LUW,JO10MP,EME,,Francois,,,11/95 +F5MGD,JN07AW,,,Stephane,,FT102 + tvtr2500lpm,05/04 +F5MSL,JN26JS,EME,,Eric,,144: 8877 4x11el (or 4x10el) MGF1302.090.220,02/99 +F5MZN,IN87BU,EME,,Oliver,,,08/96 +F5NWK,IN97EJ,,,Tanguy,,144: 9el 200W,05/04 +F5OIH,JN06,,,Vincent,,,08/03 +F5PAU,IN88CB,,,,,144: 4x11el 150W,07/02 +F5RRS,JN36EB,,,Damien,,144: 200W 10el Quad,11/04 +F5SDD,JN23RF,EME,,Dave,,FT901 IC211,01/04 +F5SE,JN29BG,,,,,,06/03 +F5SJE,JN13,,,,,,12/95 +F5SJP,JN13VQ,,,Stephan,,144: TS790 180W 17B2TX1200 RX 5000lpm,01/02 +F5TMJ,JN03VP,,,Laurent,,IC706 MK2G,12/04 +F5VBW,JN03,,,,,,06/95 +F5VHX,JN04FT,EME,,Graham,,130,06/03 +F6ANQ,IN94RT,,,Christian,,DTR,07/96 +F6AOI,JN33NQ,,,,,,08/02 +F6BAZ,JN39EF,,,Henri,,,06/02 +F6BEE,JN08FU,,,,,,2003 +F6CBH,JN19BH,,,christian,,,1994 +F6CGJ,IN78RK,EME,,Louis,,144: 4x11el 400W,04/00 +F6CIO,JN26JH,,,,,,09/98 +F6CJG,JN15,EME,,g.,,,1993 +F6CKZ,JN09LH,,,,,,01/97 +F6CRP,IN96KE,,,Denis,,144: 300W 2x11el - 432: 100W 2x21el MGF1302-,12/04 +F6CTW,JN18,EME,,rene,,,1993 +F6DHI,JN23RK,,,Chris,,144: 200W 9el MGF1302370280,04/04 +F6DKW,JN18CS,,,,,,02/01 +F6DRO,JN03TJ,,,Dominique (Dom),,2500Watt 18el BF981081 3000lpm DTR231,03/04 +F6DWG,JN19DL,,,m.,,,1994 +F6DWH,JN19,,,,,,1995 +F6EAS,IN98,,,,,DTR,08/01 +F6EMT,IN98FG,EME,,jean p.,,,1994 +F6EYM,IN99,EME,,guy,,.070,12/95 +F6FHP,IN94TR,EME,,Joel,,144: 1KW 4x6 wl5000lpm DTR,01/05 +F6FLV,JN18AT,,,Jean-Pierre,,,02/96 +F6FTN,JN08XS,,,Bernard,,144: 4x9el 300W,01/04 +F6GPT,IN94SW,,,John-Marc,,144: 11el 400Wonly SSB-MS,05/04 +F6GRB,JN25KP,,,Philippe,,,01/05 +F6HVK,JN27LH,EME,,Andre,,144: 300W 17el or 4x17el M21000lpm DTR,07/99 +F6HYE,JN36DG,EME,,patrick,,,1994 +F6IFX,JN07CX,,,Bertrand,,,07/02 +F6IZZ,JN18GR,,,,,,2003 +F6JXR,IN98HW,,,,,,09/98 +F6KHM,IN78RJ,EME,,Clubstation,,only SSB-MS,06/02 +F6KRK,JN18AS,,,Clubstation,,144: 17el 120W,02/01 +F6KSX,JN18,,,,,,2003 +F8BKD,JN38LG,EME,,Didier,,144: TS-2000 4X11 el 1000W,01/03 +F8CS,JN27UR,,,,,,08/98 +F8DNX,IN93FJ,,,Thierry,,FT 847 - 144: 2x9el 170W,07/04 +F8DO,JN26IF,EME,,Marius,,50: TS680S 5el - 144: FT225 4CX1000 2x11el MG,01/05 +F8IPS,JO00SQ,,,Carnello,,,07/00 +F8KFR,JN09RG,,,OP F1MPQ,,144: 2x9el 1-8KW - 432: 80W 26el doublequad,04/03 +F8OP,JN26MM,EME,,Georges,,50: TS690 100W 6el - 144: FT225RD Mutek 2x4CX,02/05 +F8PKC,JN38MG,EME,,,,FT726,04/01 +F9HS,JN23AT,EME,,Claude,,144: 4xBVO3WL 8877 CFX13059 MSDSP285,03/04 +F9IE,IN86WW,,,Bernard,,only SSB-MS,05/04 +FA1APX,JN23XL,EME,,Fred,,144: IC970 4 x 22 el DJ9BV 2 x 4CX350F,04/00 +FC1DUZ,IN97NB,,,,,,2003 +FF6KBF,JN18BW,,,,,,2003 +FK8HA,RG37FR,,,,,,2003 +FM5CS,FK94LI,,,,,,2003 +FO4NK,BH52,EME,,alaine,,,1994 +FO5RK,BH52,,,,,,2003 +FR5DN,LG78SS,EME,,Philippe,,,03/99 +FS5UQ,FK88LC,,,,,,2003 +FY5DG,GJ35QD,EME,,,,,2003 +G0AEI,JO01GO,,,,,,1991 +G0AFH,JO01EI,,,,,,08/01 +G0BPU,JO02,EME,,michael,,,1994 +G0CHI,IO90PS,,,kevin,,,1993 +G0CUH,IO70LG,,,Steve,,,07/04 +G0CUZ,IO82WM,,,Colin,,FT726r 50: 50W 2el - 144: MGF1302 2x3CX40,07/02 +G0EVT,IO93GR,,,John,,144: IC202S 250Watts 3wl DJ9BV,07/01 +G0FIG,IO90UU,,,Alec,,50: IC575h 6el 400W - 144: IC275h 400W 10el M,05/00 +G0GMB,IO92NB,,,Martyn,,,03/04 +G0GMS,IO82XT,,,Tony,,144: IC746 IC756pro Demi TVRT GS35b 0.25db p,01/05 +G0HYP,IO84FN,,,Kenneth,,FT847 IC1271E 144: 1.5KW 2x17el - 432: 2x21e,04/03 +G0ISW,IO84OQ,,,Philip,,FT847 Yagis + Create Log Periodic370,03/04 +G0JDL,JO02UK,,,John,,,01/96 +G0JUR,IO92WT,,,Neill,,,08/99 +G0KAS,IO91UI,,,Mike,,144: IC275h 2x4CX250b 17el Preamp.111 DTR,01/00 +G0KPW,JO02OD,,,Bob,,144: 400W 2x17B2only SSB-MS,04/03 +G0KUX,IO91WP,,,,,,11/01 +G0KZG,IO80,,,Andy,,DTR 1800lpm,10/02 +G0LBK,IO93JK,,,dave,,,1993 +G0MGA,JO00DT,,,simon,,,1993 +G0MJW,IO91JO,,,Mike,,50: 100W 5el - 70: 160W 4el - 144: 2x4CX250b,1997 +G0NFA,IO91NE,,,Derek,,144: IC271A.056.285,04/01 +G0PES,IO83LS,,,,,,11/99 +G0RRJ,IO91FE,,,Dave,,1296: 100W 55el,04/04 +G0RUZ,IO93FR,EME,,Conrad,,144: IC746 GS35b 6x 4.6wl. 32JXX X-Pole MG,10/02 +G0TPH,IO92IO,,,,,,12/01 +G0UWK,IO83VC,,,Ian,,FT1000mp 144: TV144/28 GS31b 400W 5WL 432:,10/04 +G0XDI,IO91RP,,,,,,11/01 +G1EMJ,IO82WM,,,neil,,,1993 +G1GEY,IO94FW,EME,,don,,,1994 +G1HWY,IO90UV,,,Mike,,144: TS790e 150W 13elDTR 6000lpm,08/03 +G1OGY,JO01GR,,,David,,,09/04 +G1SWH,IO83QO,,,Gerry,,,10/04 +G1WPF,IO91RP,,,Matthew,,144: IC275E Tempo2002 3CX800 9elonly SSB-M,08/99 +G1XRL,EN35,,,,,,2003 +G1YJI,IO91WP,,,,,,11/01 +G3BW,IO84,,,w.h.,,,1993 +G3FPQ,IO91vc,EME,, +G3JHM,IO91LC,,,Don,,50: 100W 5el - 144: 400W 2x13elonly SSB-MS,05/01 +G3LQR,JO02QF,EME,,simon,,,1994 +G3NAQ,IO91HL,,,Geoff,,50: 400W 3el - 4: 100W 2el - 144: 400W 17el -,08/03 +G3UTS,IO94CU,,,Reg,,144: 400W 9el M2 BF981171370,02/04 +G3WCS,IO83RH,,,Ken,,144: TS430S HB Transverter HB Amp 2x4CX250B,01/05 +G3WZT,IO90UX,,,John,,IC756PRO 50: 7el 400W - 144: 2x9el 400W - 4,08/03 +G3YNN,JO00EU,,,,,50: 2-5W 5el - 144: FT736 100W 14el - 432: F,05/04 +G4AEP,IO91NJ,EME,,Bill,,144: 400Watt 17el ATF53045rx2000 tx1200,01/05 +G4AFJ,IO92HO,,,Geoff,,144: 150W 10el500lpm,09/01 +G4ALY,IO70UL,,,,,,12/03 +G4AOA,IO83TD,,,tony,,,1993 +G4APA,IO83VI,,,Tony,,144: FT726R 200Watts 9ele BF981.160.260,01/01 +G4APJ,IO83UP,,,Ken,,FT736 FT817,08/03 +G4ASR,IO81MX,EME,,David,,144: FT221GTi 2x3CX400 17el (4x17el)2500 DT,02/04 +G4BRK,IO91DP,,,Neil,,144: 80W 9el1000lpm,03/02 +G4CBW,IO83UB,,,Paul,,144: TS2000 IC756PROII 2x 9el 180W,09/04 +G4CJG,IO94CR,,,jerry,,,1993 +G4CLA,IO92JL,,,Pete,,,09/03 +G4DBL,IO91JJ,,,Tim,,144: IC746PRO 4CX350 300W 17el,11/04 +G4DHF,IO92UU,EME,,David,,028215,09/04 +G4DOL,IO80SP,,,p.,,,04/99 +G4DZU,IO93ES,EME,,Doug,,1296: 800W 3m. Dish,08/01 +G4ERG,IO93SR,EME,,Peter,,144: 16x10el- 2x3CX800- MGF1302,02/99 +G4ERP,IO81XW,,,,,,2003 +G4FDX,EN60VL,,,,,,2003 +G4FRE,JO01KK,EME,,dave,,,1994 +G4FUF,JO01GN,EME,,Keith,,,01/05 +G4HGI,IO83PL,,,Richard,,144: TS780 GS35b 400W 17el2000lpm DTR,08/04 +G4HGT,IO83,,,j.,,,1993 +G4IGO,IO80NW,EME,,Kenneth ""Ken",,50: IC706 300W 6el - 144: IC706,02/05 +G4JCC,IO90MS,,,,,,01/03 +G4KLX,IO93FB,,,Jonathan,,,03/04 +G4KUX,IO94BO,EME,,nick,,,08/03 +G4KWQ,IO92AQ,,,Andrew,,144: FT847 400W Preamp 16el Tonna,04/03 +G4LOH,IO70JC,EME,,Tim,,.255,02/04 +G4ODA,IO92WS,,,Keith B.,,,01/05 +G4PBP,IO82WO,,,,,,07/01 +G4PCI,IO91AL,,,George,,IC756PRO,01/03 +G4PIQ,JO01MU,EME,,Andy,,144: 2x3CX800 ATF10136 4x15el CueDee2500lpm,10/04 +G4RGK,IO91ON,,,Dave,,144: 300Watt 17el MGF1302 - 432: 400Watt 8x2,03/01 +G4RKV,JO01OI,,,Lee,,144: IC275E EME Pwr 2x9el MGF1302.075 DTR,01/01 +G4RNL,IO83,EME,,don,,,1994 +G4RRA,IO80BS,,,Paul,,144: 4x10el 400WDTR,08/03 +G4SHC,IO83VO,,,r.,,,1993 +G4SSO,IO91TO,,,,,,08/94 +G4SWX,JO02PB,EME,,John,,,01/01 +G4UPS,IO80JV,,,,,,01/97 +G4VIX,JO01PU,EME,,dave,,,1994 +G4VPD,IO92BJ,,,,,only SSB-MS, +G4VXE,IO91QL,,,Tim,,,03/01 +G4WQE,JO01CJ,,,,,,2003 +G4XBF,IO91QE,,,Mike,,DTR,04/99 +G4XUM,IO83,EME,,Martin,,,10/02 +G4YTL,IO92MB,EME,,David,,144: IC275 1KW 4x5lb DJ9BV.095,05/03 +G4ZFJ,JO01HO,,,Colin,,,07/04 +G4ZHI,IO91KN,EME,,Bryn,,432: TS790 1KW 4x3wl 9BV SSB Preamp2000lpm,05/03 +G4ZTR,JO01KW,EME,,John,,144: FT1000MP LT2S 2x4CX250B MGF1302 CC17,04/02 +G6DER,IO93GN,,,Keith,,,01/97 +G6HKM,JO01FT,,,Ela,,,1994 +G6RAF,IO92QP,,,op GW8VHI,,,10/95 +G6TEL,IO90AR,,,,,,05/04 +G6XRK,IO90RN,,,Mike,,144: IC820H Henry2002 Mutek 15el M2,1998 +G6XVV,IO93,,,h.,,,11/95 +G6YAY,IO80EL,,,,,,2003 +G6YIN,IO93ET,,,,,only SSB-MS,01/99 +G6ZTU,IO93HN,EME,,conrad,,,1993 +G7KQW,IO93,,,,,,2003 +G7LIJ,JO01GG,,,brian,,,1995 +G7RAU,IO90IR,,,Dave,,144: FT757 Mutek 2x9el 400Wonly SSB-MS.380,05/02 +G8BHH,IO82WO,,,Russ,,,07/01 +G8CLZ,JO00EU,,,,,50: 2-5W 5el - 144: FT736 25W 9el - 432: FT7,09/01 +G8DSL,IO90FW,,,,,,2003 +G8ECI,JO03AK,,,Derek,,50: 5el 300W - 70: 5el 160W - 144: 10el 3,01/01 +G8GTD,IO93,,,,,,11/01 +G8IZY,IO91VC,,,Steve,,144: TS700G BF981 4CX250b 250W 9el M2only SSB,01/01 +G8LZG,IO93SR,,,Graham,,FT847 or FT100,11/01 +G8MYK,IO92BJ,,,Alan,,IC275H- 100W- 17el.350,07/02 +G8OPR,IO91FE,,,,,,2003 +G8PYP,IO90AS,,,steve,,,1993 +G8ROU,IO92,,,dave,,,1993 +G8RWG,JO01BN,EME,,Niels,,144: FT1000MP DEM144/28 2x8874 MGF1302 9el fu,05/02 +G8T,IN79JX,,,,,only SSB-MS,06/02 +G8TIC,IO82VF,,,Mike,,50: 6el 400W - 144: JST245 trx 10el 3CX800,12/01 +G8TOK,JO01BI,,,Derek,,,04/02 +G8UUR,IO92ET,,,Phil,,144: 80Watts 3ele@10mtrs,07/00 +G8VHI,IO92FM,,,Reg,,50: 100W 4el - 70: 10W 4el - 144: 9el 200W -,07/04 +G8VR,JO01DJ,,,Ken,,50: 3el 100W1000lpm,05/03 +G8VYK,JO01,,,,,,10/04 +G8XVJ,IO83RJ,,,Erik,,144. LT2S 8877 17el M2only SSB-MS.185,08/99 +GB2LBN,IO85,EME,,OP MM0CCC,,144: 17el 100W,08/00 +GB2WQ,IO66,,,,,,1992 +GB4IOM,IO74PB,EME,,,,,05/04 +GB4SPT,IO74PB,EME,,,,,05/04 +GB4VR,IO57,,,,,,1990 +GB4XS,IO78HA,,,OP GW4VVX- GM0CLN,,50: IC746 100W 4el - TR9130 - 70: 150W 6el -,08/00 +GD0WKX,IO74SD,,,Graham,,,10/95 +GD4IOM,IO74QD,EME,,Andy,,50: 400W 4x7el - 144: 400W 8x9el - 432: 400,08/01 +GD4UFD,IO74,,,,,,1988 +GD7HEJ,IO74SD,,,Graham,,,10/95 +GI0OTC,IO65QE,,,Alan,,,12/00 +GI1JUS,IO74,,,i.,,,1993 +GI4KSO,IO64XK,,,Darrell,,70: 100W 3el - 144: 300W 8el,07/03 +GI6ATZ,IO74AJ,,,Gordon,,144: IC251E Mutek FE 300W 13el.270,03/01 +GI8YDZ,IO65,,,a.,,,1988 +GJ0JSY,IN89XE,,,,,,12/01 +GJ0RUZ,IN89,EME,,,,,03/02 +GJ4ICD,IN89WE,,,Geoff,,,10/98 +GM0BQM,IO85CE,,,Mike J.,,144: 200W 2x17elDTR tx850lpm,03/02 +GM0CLN,IO85HV,,,Colin R.,,50: 20W indoor ant - 144: TR751E 100W 14elon,03/02 +GM0EWX,IO67UL,,,,,144: 12el 8874,05/02 +GM0GMD,IO86AE,,,Tom,,,07/00 +GM0HUO,IO86OI,,,Arlen,,FT736r 50: 100W 3el - 144: 180W 12eltx1200,08/99 +GM0JOL,IO78VM,,,j.,,,1993 +GM0ONN,IO87,EME,,Ian,,,10/00 +GM0WDD,IO85JV,,,Gavin,,TS690 - 144: Trvt 9el OZ5HF 200WDTR,08/99 +GM0WDF,IO75PW,,,John,,144:TS940 Trsv IC271E 400W 17el,09/01 +GM3POI,IO88OW,,,c. s.,,,10/01 +GM3SBC,IO85IX,,,,,,05/03 +GM3UCN,IO85RV,,,,,,04/04 +GM4AFF,IO86ST,,,Stewart,,144: 14el Tonna EME-Pwr MGF1302only SSB-MS,08/03 +GM4CXM,IO75TW,EME,,Ray,,144: TS700 3cx800A7 9el Mutek,06/03 +GM4ILS,IO87IP,,,,,,07/01 +GM4ISM,IO85AR,,,,,,09/02 +GM4JJJ,IO86GB,EME,,David,,144: 4x3wl XPOL 8877,05/01 +GM4OGM,IO85,,,s.,,,1988 +GM4VVX,IO78TA,,,Clive,,50: TR751E 5W Dipol.222,08/03 +GM4YXI,IO87WJ,,,Keeth,,1500lpm,04/00 +GM5RP,IO66,,,,,HCSW,08/01 +GM6VIU,IO85,,,,,144: TR851E 25W 24el,11/99 +GM6VXB,IO97AQ,,,,,,02/04 +GM7ASN,IO78TA,,,,,,06/95 +GM7LVJ,IO85,,,gavin,,,1994 +GM7PBB,IO68UM,,,John,,50: IC756,10/04 +GM8OEG,IO86LL,,,Andy,,,02/04 +GU7DHI,IN89RL,,,,,,12/01 +GW0KZG,IO82,,,Andy,,DTR 2500lpm,12/98 +GW0PZT,IO72PT,,,edward,,,1993 +GW0VWD,IO81EM,,,Allan,,only SSB-MS,07/96 +GW3HWR,IO71XN,,,Heath,,FT847 - 144: 350W 9el Preamp,04/03 +GW3LEW,IO71PS,,,,,,04/03 +GW3XYW,IO71,EME,,,,,01/05 +GW4DGU,IO71SV,EME,,Chris,,144: 600W 15.6dbi ant,03/04 +GW4HDF,IO81JO,,,Vic,,,04/02 +GW4LXO,IO81,,,Jonathan,,,08/98 +GW4UWR,IO81LP,,,,,only SSB-MS,08/99 +GW4VEQ,IO73SG,,,Tony W.,,,10/02 +GW4VVX,IO81JP,,,,,,06/95 +GW4ZQV,IO81LQ,,,,,only SSB-MS,08/97 +GW6YAY,IO81LM,,,David,,144: IC821H 300Watts 17ele CConly SSB-MS,08/03 +GW7SMV,IO81LN,,,Jamie,,144: 400W Commander2 3cx800a7 12ele M22000,04/04 +GW8ASA,IO81EM,,,Gordon,,FT847 IC706 Linears - 144: 220W 9elonly SSB-,02/04 +GW8IZR,IO73TI,EME,,Paul,,144: 2x 9el GS35 .23 dbrx - 432: 4x21Y 35,01/05 +GW8OQV,IO81QR,,,Denis,,144: FT225-Mutek 2x4CX250b 4x10el DL6WU or,07/98 +GX4NOK,IO93FR,,,,,,2003 +GX4WWR,IO91LL,,,,,,2003 +HA0HO,KN07SU,,,Gyula,,only SSB-MS,03/01 +HA1AG,JN87TQ,,,,,,10/04 +HA1BC,JN87PU,,,Alex,,144: 3CX800A7 2x17elDTR,12/00 +HA1FV,JN87JJ,,,Pista,,144: FT290R 300W 12el - 432: 30W 25el143 20,07/04 +HA1KVM,JN87AL,,,,,,2003 +HA1KYA,JN87HF,,,Clubstation,,144: 8x13el DL6WU 200W2000lpm MSDSP,11/98 +HA1VHF,JN87GF,EME,,Clubstation,,,10/98 +HA1VQ,JN87GJ,,,Joska,,,08/99 +HA1W,JN87GF,,,,,,2003 +HA1YA,JN87GF,EME,,Gabi,,144: 8x13el & 8x14el - 432: 16x32el,09/03 +HA2A,JN87,,,,,,12/99 +HA2NP,JN97EO,,,Robert,,,05/01 +HA2RD,JN87WB,,,andy,,,1993 +HA2RX,JN87,,,,,,12/98 +HA2SX,JN87VC,,,Peter,,144: IC821H 600Watts 11ele,12/98 +HA2VH,JN87WG,,,,,,03/03 +HA3DXC,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,07/96 +HA3UU,JN96JO,,,Janos,,144: TS711A GS35B 5.5wl 4wl 2wl MGF1100,09/04 +HA4A,JN96JO,,,Janos,,144: TS711A GS35B 5.5wl 4wl 2wl MGF1100,05/04 +HA4KYB,JN97DI,,,Clubstation,,,1994 +HA4WQ,JN97IF,,,,,,06/03 +HA4XT,JN96JO,,,,,,01/05 +HA5BSW,JN97JD,,,Tibor,,,03/03 +HA5CAR,JN97,,,,,,07/01 +HA5CBA,JN97OM,,,Laszlo,,144: HF trsv+conv3500lpm,04/04 +HA5CRQ,JN97,,,,,,08/02 +HA5CRX,JN97KO,,,Janos (Jani),,144: FDK Multi 2700 250W CF300 13B2.140 D,01/01 +HA5CW,JN97PM,,,Joska,,144: FT225RD/Mutech B1016 GS35B 800W 10el,08/03 +HA5IW,JN97LN,,,,,,08/01 +HA5KDQ,JN97LN,EME,,Clubstation,,DTR,07/03 +HA5LV,JN97ML,,,Victor,,144: 9el 50W,04/04 +HA5OV,JN97NJ,,,Peter,,144: FT920+Trnv GS35 1-5KW 13el DL6WU MGF,12/03 +HA5PT,JN97MK,,,Tamas,,,08/04 +HA5RL,JN97PL,,,Attila,,,12/04 +HA5TS,JN97LL,,,Ivan,,144: IC-706MKII 8ele,07/04 +HA5UK,JN97OM,,,Gyuri,,,08/02 +HA6NA,JN98VC,,,Sandor ""Sanyi",,144: 250W F9FT,08/01 +HA6NN,JN98VC,,,Andras ""Andy",,144: FT290 7el 150W,05/04 +HA6NQ,JN98WA,,,Sandor (Sanyi),,144: 700Watts CF300 DJ9BV 3.2wl086 2000lpm38,01/05 +HA6NY,JN98WC,,,Gyuszi ""Julius",,144: 1000W MHP145 17el full el - 432: 40W LNA,01/05 +HA6OQ,JN98JC,,,,,,08/98 +HA6VV,JN97WS,,,Laszlo,,,07/01 +HA6ZB,JN97,,,,,,01/05 +HA6ZV,JN97WH,,,,,,09/04 +HA7JJS,JN97OG,,,,,,10/95 +HA7KPL,JN97OG,,,Clubstation,,,12/95 +HA7NK,KN07CM,,,Misi,,144: 200W 4x15el 9BV Preamp,06/00 +HA7PL,JN97OG,,,Laszlo,,.166,08/98 +HA7RF,JN97NP,,,Jozsef,,IC 735 +conv3500lpm,04/03 +HA7UL,JN97KK,,,Ferenc ""Feri",,HF: DM-100 - 144: FT726 or IC202 130W CF300 1,05/02 +HA8AR,KN06NQ,,,Pali,,,06/04 +HA8CE,KN06EN,,,Istvan ""Pista",,144: GS35b 400W 16 el. DJ9BV CF3001200lpm,05/04 +HA8CS,KN06BD,,,,,,2003 +HA8ET,KN06,EME,,g.,,,1993 +HA8KCP,KN08DQ,,,,,,2003 +HA8V,KN06HT,,,Gabor ""Gabi",,TM255E GS35B 900W 4X11el. TR851E 2XTP5040 80,07/04 +HA8VF,JN96UW,,,,,,10/97 +HA9MCQ,KN08JC,,,Istvan,,144: 150W 14el CF300.140.190,06/98 +HA9MDP,KN08DF,,,Peter,,144: 150W 14el CF300.190,07/00 +HA9RC,KN08NB,,,,,,1994 +HAM3DXC,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,07/96 +HAM3UU,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,07/96 +HAM7JJS,JN97OG,,,,,,07/96 +HAM7KPL,JN97OG,,,Clubstation,,,07/96 +HAM7PL,JN97OG,,,Laszlo,,.166,07/96 +HAM8CE,KN06EN,EME,,Kovacs,,,11/96 +HB2FAP,JN47CE,,,Fabio,,144: 16el 1KW,12/00 +HB3YIT,JN46JE,,,Nick,,Kenwood TS-790E,01/05 +HB5OK,JN46LA,,,OP HB9SUL,,144: FT847 8877 17el MGF 1302DTR,12/98 +HB9AOF,JN36LM,,,,,,01/97 +HB9BBD,JN47EE,,,,,,2003 +HB9BQU,JN37VD,,,Hans,,50: 10W - 144: 200W 17elDTR rx5000 tx1500lpm,08/99 +HB9BZA,JN36BE,,,Robert,,50: FT-847 V-2000 - 144: 3CX800 11Y - 432:,01/04 +HB9CVD,JN36CD,EME,,philippe,,,1994 +HB9CYN,JN36RX,,,Martin,,144: 30W 7el 10db Gaas,01/99 +HB9DBM,JN47BE,,,Mark,,,03/99 +HB9DDS,JN47IK,,,,,,05/02 +HB9DFG,JN37SM,EME,,Christian ""Chris",,144: TS850S + LT2S MKII 400Watt 4x9el MGF1,12/04 +HB9DKM,JN37SL,EME,,Martin,,50: 3el vertical - 144: 150W 2x11el Flexa MG,03/02 +HB9DLU,JN45LU,,,,,,2003 +HB9DUR,JN46ME,EME,,Andrea,,144: 1KW 17el SP2 - 432: 700WDTR 2000lpm,12/03 +HB9FAP,JN47GJ,,,Fabio,,144: TR751l 600W 18el M2 or 4x4 vertikal067,08/04 +HB9HLI,JN37JB,EME,,Dominique,,,01/05 +HB9HLM,JN36KW,EME,,Andre,,,01/04 +HB9JAW,JN47CE,EME,,Michel,,144: FT726r 15el or 8x28el 8877 MGF1302DTR 2,10/02 +HB9LU,JN46EW,,,Clubstation,,,06/96 +HB9MM,JN36HP,,,,,,08/02 +HB9MS,JN47PH,EME,,OP HB9SUL,,144: 8877DTR 2000lpm,12/99 +HB9OCW,JN46LA,EME,,Donald,,50: 4el 10W - 144: 4x13B2 1KW - 432: 2x29el 1,10/99 +HB9PJT,JN47FG,,,,,,05/02 +HB9Q,JN47CG,EME,,OP HB9CRQ- HB9DBM,,50: 10W 11el - 144: 15mPb 8x19el 1KW - 432: 1,05/02 +HB9QQ,JN47,EME,,Pierre,,.138 DTR,01/01 +HB9RUZ,JN47JM,,,Peter,,,12/96 +HB9SJV,JN36BK,,,Benoit ""Ben",,50: 5 el & 5/8 vert. 144: 350W 7elonly SSB-M,02/04 +HB9SLO,JN36LT,,,Bertrand,,144: FT736r 1KW 18el LY,04/03 +HB9SNR,JN36MQ,,,Gerard,,144: FT736r 800W 12el M2,11/01 +HB9STI,JN47GJ,,,f.,,,1993 +HB9STY,JN36IP,,,Bernard,,FT690R 50: 150W vert & 5el - 144: 300W 2x15e,07/98 +HB9SUL,JN46LA,,,,,,2003 +HB9SV,JN45LV,EME,,Enrico,,,08/00 +HB9WAH,JN47FD,,,Bruno,,50: 10W - 144: 2x 11El 1kW MGF1302 - 432:,04/04 +HC5K,FI07NB,,,,,,2003 +HF75PZK,JO93AC,EME,,,,,01/05 +HG1DLZ,JN87HF,,,Zoli,,144: 8x13el 200W MGF1402only SSB-MS,12/98 +HG2EAD,JN97,,,i.,,,1993 +HG2KNP,JN97,,,,,,1993 +HG2NP,JN97,,,R.,,,1/95 +HG3DXC,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,08/98 +HG3O,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,08/98 +HG4XG,JN96,,,g.,,,1993 +HG5CYT,JN97,,,Tibor,,144: FT290r 50W 5el - 432: 25W 11el,01/01 +HG5PT,JN97MT,,,dr. holman,,,1993 +HG6KNB,JN98,,,,,,1993 +HG6KVB,KN07,,,,,,1993 +HG6NQ,JN98WA,,,sanyi,,3,1995 +HG7AJ,JN97,,,a.,,,1993 +HG7JAL,JN97KK,,,Pista,,,07/02 +HG7P,JN97KW,,,Clubstation,,,04/97 +HG7WJ,JN97MP,,,sandor,,,1993 +HG9MET,KN08DF,,,Tom,,144: 150W 14el CF300.190,07/00 +HG9OZD,KN08DF,,,OP HG9MDP- MET,,144: TR9130 150W 14el CF300.060.190,07/00 +HG9SM,KN08HF,,,,,,07/04 +HG9VHF,KN08EB,,,OP HG9MDP- MET,,144: TR9130 150W 14el CF300.140.190,07/00 +HGM3DXC,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,07/96 +HGM3O,JN96JO,,,Clubstation,,144: 5.5WL 2x88771800lpm.373,07/96 +HI8ROX,FK58AL,,,,,,2003 +HL5XF,PM45OH,,,,,,2003 +HS2CRU,OK03LE,,,,,,2003 +HV0A,JN61FV,,,,,,01/05 +HV4NAC,JN61,,,Clubstation,,,06/99 +I0EMV,JN62BK,,,,,,1992 +I0UZF,JN63,,,Francesco,,,06/00 +I1ANP,JN44VC,EME,,Mario,,IC735+L4B - 144: TS700 4x4cx250b MGF1302 4x,03/01 +I1BSN,JN34,,,franco,,,1993 +I1CPM,JN34VI,,,,,,01/03 +I1CPN,JN34VH,,,,,,02/04 +I1DMP,JN35UB,,,Paolo,,144: 350W 20el LY.131 DTR,01/01 +I1JTQ,JN35UB,EME,,Mario,,144: 2x18el 900W MGF1801127227,08/01 +I1KTC,JN45HK,EME,,Alberto,,.085 DTR,11/96 +I1PIK,JN44TG,EME,,Pietro,,FT736R 50: 3el - 144: 64el GS35 Preamp - 432:,01/01 +I1TXD,JN45,,,rossi,,,1993 +I2COR,JN55BB,EME,,luigi,,,1994 +I2FAK,JN45OB,EME,,Franco,,144: 24x19el LLY YL1056DTR 2500lpm,12/04 +I2FHW,JN45,,,franco,,,1993 +I2ODL,JN45KL,EME,,OP IK2OFO,,144: 4x17el 8877 - 432: 8x21el 3CX800A7 - 129,09/00 +I2OKW,JN45OO,,,,,,08/02 +I2PHD,JN45SL,EME,,Alberto,,,12/00 +I2RV,JN45PL,EME,,,,,01/05 +I2SVA,JN45,,,,,,01/02 +I2UZV,JN45,,,,,,08/02 +I3DLI,JN65,EME,,Paolo,,6x19el 8877 CF379.018,11/00 +I3LDS,JN55SR,,,,,,1990 +I3LGP,JN55WJ,,,Giuliano,,144: IC746 100W 17el BF960.141 DTR 3000lpm,01/04 +I3LLH,JN65BM,,,,,,04/00 +I4BXN,JN54,,,g.,,,1993 +I4LCK,JN54RK,,,Franco,,432: FT736 3CX800 Preamp 4x25el LY @ 950m asl,05/04 +I4RHP,JN54QL,,,Rodolfo,,144: TS711+PA500W 17EL,07/04 +I4TTZ,JN54VJ,,,,,,2003 +I4VXH,JN64EJ,,,l.,,,1993 +I4XCC,JN63GV,EME,,Claudio,,144: 4x17el F9FT 3CX800A7 preamp 1db075,01/04 +I4YNO,JN54KP,,,Alessandro ""Alex",,144: FT-736R MuTek MGF1302 3CX800 20el Shark1,08/03 +I5CTE,JN53XG,EME,,Piero,,,02/01 +I5JUX,JN53CW,EME,,Giacomo,,,08/96 +I5MPK,JN53,EME,,piero,,,1994 +I5MXX,JN53JU,,,Marzio,,144: 4x4el & 4x9el,10/00 +I5MZY,JN53OT,EME,,Massimo ""Max",,144: 800W 4x10el BF998117,10/04 +I5PPD,JN53PS,EME,,Pietro,,10368: 3m Dish 20W,10/00 +I5PPE,JN53NS,,,,,,2003 +I5TDJ,JN53,EME,,Piero,,,11/00 +I5WBE,JN53JR,EME,,Enrico,,144: FT736R 4x17el 8877 MGF1302 432: Yeasu,11/04 +I5YDI,JN54BB,EME,,Luigi,,144: FT736 3cx800 2x17el or 4x15el.100,04/02 +I6BQI,JN72BK,,,Angelo,,,09/02 +I6PNN,JN72GL,EME,,marco,,,1994 +I6QGA,JN63,EME,,gabriele,,,1994 +I6QON,JN63RL,,,,,,1994 +I6WJB,JN72CK,EME,,Pierluigi,,144: single 3wl yagi 1 Kw MGF1302,05/04 +I6YPK,JN72,,,bruno,,,1995 +I7CSB,JN71QQ,,,,,,09/96 +I7FNW,JN81GD,EME,,n.,,,1994 +I7HCB,JN71VT,,,Andrea,,144: 150W 13el,12/01 +I7RNI,JN80,,,n.,,,1993 +I8MPO,JN70FP,,,Lucio,,only SSB-MS.383,11/04 +I8REK,JN70,,,Archimede,,,1993 +I8TUS,JM89DE,,,Salvatore,,,10/04 +I8UZA,JN70AU,,,Pino,,144: FT847 150W 10el BVO3wl.250,09/02 +I8WES,JN70,,,r.,,,1993 +IC8CQF,JN70CN,,,Pasqual ""Lino",,50: 100W 4el Yagi - 144: 300W 10el093 300,08/03 +IC8EGJ,JN70CN,,,,,,1989 +IC8FAX,JN70CN,,,Giacobbe (Jakob),,144: FT736r 300W 20el083 DTR437,03/04 +IH9YMC,JM56XT,,,Raf,,,08/04 +II0W,JN51,,,,,,06/03 +IK0BZY,JN61GW,EME,,,,,07/01 +IK0FEC,JN63,,,l.,,,1993 +IK0FIY,JN61GW,EME,,Wife of Enrico,,FT736r 144: 6el 800W MGF1302 - 432: 33el 600W,01/00 +IK0FTA,JN61GV,,,Sergio,,50: TS680 GaasFet 6el100lpm !,05/02 +IK0IXI,JN52,,,,,,1994 +IK0IXO,JN52WA,EME,,,,,1993 +IK0OKY,JN61GT,,,Emilio ""Emile",,50: 4el 10W - 144: 25W 13el,04/02 +IK0OZK,JN52VC,EME,,Renato,,350W- 2x17el- Preamp,12/99 +IK0PCJ,JN63CL,,,,,,2003 +IK0RNL,JN61GW,,,,,,2003 +IK0SMG,JN61FS,EME,,Pino,,,1/95 +IK0SOI,JN62HN,,,Sergio,,,06/02 +IK0VKL,JN61GV,,,flavio,,,1995 +IK0WGF,JN52VC,,,Francessco,,144: 2x11el 200W,03/04 +IK1EFM,JN44JK,,,antonio,,,1993 +IK1EGC,JN35UF,,,Daniele ""Dan",,50: FT650 3-500z 6el 1wl- 144: IC275 16el 4.4,07/02 +IK1FJI,JN44LL,EME,,Walter,,4x19xxx 5-72wl 8877 mgf1302 ic275H,12/00 +IK1GYZ,JN35TB,,,Sergio,,,11/95 +IK1HJQ,JN33,,,,,,1990 +IK1HWG,JN44DS,EME,,maurizio,,,1994 +IK1JXY,JN44WC,EME,,Mark,,,08/04 +IK1LBW,JN44VC,,,,,,08/98 +IK1LGV,JN44JK,,,Gabriele,,144: GS31 MGF1302 15el QD1200lpm DTR MSDSP,08/00 +IK1LUT,JN34TW,,,marcello,,,1993 +IK1MTZ,JN35UB,EME,,diego,,,08/01 +IK1PAG,JN35SB,,,Roberto (Roby),,144: IC275h 1KW 2x17el F9FT MGF1302.136,01/01 +IK1RQT,JN34VP,,,,,,12/01 +IK1SLI,JN35UI,,,gianni,,,1993 +IK1SPR,JN34TQ,,,Flavio,,144: Braun SE400 500W MGF1302 2x 13elMSDSP,08/04 +IK1UWL,JN33VT,EME,,,,,01/05 +IK1YWB,JN34UX,,,,,,04/02 +IK2CDI,JN55GN,EME,,Marinella,,144: IC275H 3CX800A7 MGF1302 4x18el8000lpm M,01/00 +IK2CFR,JN54,,,Marco,,,03/01 +IK2DDR,JN55GN,EME,,Francesco,,144: IC275H 8877 MGF1302 4x18el8000lpm MSD,07/01 +IK2EAD,JN55EJ,EME,,romeo,,,1994 +IK2EAE,JN45LL,,,Fabio,,144: FT480r 100W 17elonly SSB-MS.300,11/01 +IK2FIL,JN45OM,,,Enrico,,144: IC275H 9 el. F9FT + SP2000 50W,11/04 +IK2GSO,JN45NP,EME,,Enrico,,IC7400 FT857 50: 1KW 10el 144: 14el DJ9BV,11/04 +IK2JUB,JN45ON,,,Stefano,,,03/03 +IK2LHP,JN45SP,,,Angelo,,144: TS790 200W 15el - 432: 100W 31el,07/01 +IK2MMB,JN45,EME,,Sergio,,,01/01 +IK2OFO,JN45KL,EME,,Roberto,,144: 4x17el 8877 - 432: 8x21el 3CX800A7 - 129,09/00 +IK2RTI,JN55AD,,,,,,2003 +IK2TPX,JN45LL,EME,,dario,,,1993 +IK2XRL,JN45NR,,,Mauro,,144: FT736r 150W 17el PreampDTR 2000lpm,01/01 +IK2YXK,JN45OP,,,Maurizio ""Mau",,144: IC275h 4CX250 12elM2 DSP59,05/02 +IK3MAC,JN55SH,EME,,Graziano,,144: 30x19el 8877,08/00 +IK3TPP,JN65EP,,,Fabio,,,12/04 +IK3VZO,JN55XA,,,Giovanni,,144: 16el 200W,02/98 +IK4DCO,JN64GB,EME,,paolo,,,1994 +IK4DCX,JN64GA,EME,,Marco,,144: 4x20el 2.5KW,04/01 +IK4DRY,JN64BL,,,Steve,,1000lpm,04/01 +IK4FMT,JN54WG,,,Marco,,144: TS790 2M5WL 4CX250 MGF1302 20dBMSDSP,01/00 +IK4JOC,JN54WN,EME,,claudio,,,1994 +IK4NMF,JN54SM,EME,,fausto,,,1994 +IK4PLU,JN64FC,EME,,Ermes,,only SSB-MS,08/99 +IK4PMB,JN54LL,,,Antonio ""Anto",,50: X-Verter 10W Dipole - 144: FT225RD MUTEK,01/05 +IK4WLV,JN54XK,EME,,Massimo,,,02/98 +IK5AMB,JN53FU,,,Iacopo,,only SSB-MS,11/98 +IK5EHR,JN53FU,EME,,Lele,,,01/97 +IK5JWQ,JN52NS,EME,,Guiseppe,,,08/98 +IK5OEA,JN53PG,,,,,,12/04 +IK5OIY,JN52NT,,,Massimo,,,03/96 +IK5QLO,JN53FU,,,Andrea,,50: LY - 144: 250W 10el CF300 - 432: 900W,07/04 +IK5UBM,JN53GT,EME,,Luca,,144: 8877 2x15el MGF1303.023 1000lpm.280,07/98 +IK5WJD,JN53PS,EME,,Alessandro,,10368: 3m Dish 20W,10/00 +IK5ZUI,JN53RD,,,Mike,,144: TS700G 11el 250W BF981only SSB-MS,07/97 +IK6EIW,JN63RJ,EME,,Stefano,,,10/95 +IK6FHF,JN63,,,a.,,,1993 +IK6IHM,JN72,,,,,,95 +IK6MLI,JN62UT,,,Pino,,144: FT736 4x11el KLM Booster 8930.060 200,07/99 +IK6MMJ,JN63RL,,,Fabricio,,.115,10/95 +IK7EZN,JN90DG,EME,,Ermanno,,144: 4x16 (jxx) 1 KW,04/04 +IK7UXY,JN90DC,EME,,Gianni,,144: FT1000MP+LT2S 0.2db 1KW 20el or 4x12elD,05/02 +IK8ETN,JM89CH,,,Pietro,,144: ic275e 4x150 17f9ft,01/04 +IK8IUQ,JN70MM,,,,,,2003 +IK8MKK,JN71DC,,,michele,,,1995 +IK8TOY,JM89CH,,,,,,08/04 +IN3AGI,JN56,,,,,,2003 +IN3ATM,JN56NK,,,,,,01/02 +IN3DOV,JN65WS,,,kurt,,,1993 +IN3HER,JN56,EME,,raimund,,,1994 +IN3KLQ,JN56RG,EME,,Giuliano,,144: 180W 17el.110,04/00 +IN3TWX,JN56NQ,EME,,Wolfgang,,144: 3CX800 Preamp 4x11ele DL6WU full eleva,08/03 +IS0AGY,JM49OF,,,Ampelio,,144: IC211E 4CX350b 17el Gaas.280,01/99 +IS0BDB,JN40GT,,,Vannino,,,05/04 +IS0CAK,JM49,,,,,,01/04 +IS0GQX,JM49,,,,,,05/02 +IS0SWW,JN40GR,,,Walter,,,02/04 +IT9BLB,JM68QE,,,Giuseppe (Joe),,144: 2x15el 2x4cx250r MGF1302.129.389,11/96 +IT9CJC,JM76GS,,,,,,1989 +IT9GSF,JM67SS,,,Flavio,,,1994 +IT9GSV,JM77LH,,,Andrea,,,04/01 +IT9IPQ,JM78SG,EME,,Paolo,,ic756pro ic275 ic475 transvonly SSB-MS,04/02 +IT9LCY,JM77NO,,,giuseppe,,,1993 +IT9VDQ,JM68QC,,,Joe (Giuseppe),,144: TS850 3CX800A7 17el Preamp.153 DTR tx1,12/04 +IV3BBR,JN65,,,,,,11/98 +IV3DXW,JN65QQ,,,Claudio,,144: 4CX250 - 16JXX2 4.5WL,08/03 +IV3GBO,JN66OA,EME,,g.,,DTR,01/02 +IV3GTH,JN65ST,,,Gigi,,50: IC706 4 el Quad - 144 MHz: FT221 Mutek,08/03 +IV3HWT,JN65ST,EME,,Lucio,,144: FT101zd Trvt 8877 4x18el 4x20el.116 DT,08/04 +IV3KTY,JN65,,,,,,08/02 +IV3MPI,JN65SV,,,Edi,,IC746 IC271E Mutek FT736R PHEMT144 PHEMT,03/04 +IV3NDC,JN65RV,,,Massimo,,144: 300W BF981 2x15el 3.3wl176 2000lpm DTR,08/03 +IV3VFP,JN66HD,EME,,erminio,,,1993 +IV3ZCX,JN65QS,EME,,Maurizio,,144: Icom 275 PA 600Watts MGF1302 4x24el10522, +IW0AKA,JN61FS,,,,,,1990 +IW0AYO,JN61IU,,,Morris,,144: 16elonly SSB-MS,07/96 +IW0BFZ,JN61,,,b.,,,1993 +IW0BTS,JN61GU,,,,,only SSB-MS,1988 +IW0CUT,JN61TP,EME,,arnaldo,,,1993 +IW0CVK,JN61GV,,,,,,01/05 +IW0DJB,JN61,,,,,,04/02 +IW0DVG,JN61KK,,,max,,,1993 +IW0FFK,JN61FS,,,,,,10/04 +IW0GDC,JN61HX,,,,,,10/98 +IW0GPN,JN62FB,,,Alessandro ""Alex",,FT736 144: 200W 16el 4.8wlonly SSB-MS212,10/04 +IW0QNX,JN62,,,,,,01/97 +IW0QO,JN63EC,,,,,,1993 +IW0RBS,JN63FD,,,freddy,,,1993 +IW0RLC,JN63FD,,,Dario,,only SSB-MS,06/00 +IW0UEI,JN40GR,EME,,Antonio,,144: 2x9el 150W,04/04 +IW1ARB,JN44CV,EME,,Paolo,,144: 4x4.4Wl lt2s 3cx1500,03/01 +IW1AZJ,JN35UB,,,Silvio,,144: 200W 3.8wl DJ9BV2000lpm,06/00 +IW1BCV,JN44FS,,,Carlo,,144: IC275H 8930 2x18el MGF1302DTR 3000l,08/98 +IW1CCH,JN35TB,,,,,,01/05 +IW1CGB,JN35VG,EME,,Steve,,50: 3el PA - 144: 4x17el 2x4cx250b MGF130,06/97 +IW1CHX,JN35TH,,,Nicola,,144: C58 13el DJ9BV MGF1302 170W.100 150,04/02 +IW1DIM,JN35TC,,,,,only SSB-MS,07/01 +IW1DJS,JN35SA,,,,,,08/01 +IW1FTY,JN35UA,,,,,,2003 +IW2BNA,JN45ON,,,Walter,,144: IC275H 3CX800 4x11el - 432: IC475H,01/04 +IW2BSQ,JN45UJ,,,Jo,,144: IC746 !7el,04/03 +IW2BZY,JN45NN,,,Lorenzo,,144: 500Watts 2x12ele Flexaonly SSB-MS,08/01 +IW2DAL,JN45NN,,,Emilio,,144: FT736R 4x19LLY 4CX1000a - 432: FT736R,04/04 +IW2DMN,JN45KL,,,Ivano,,144: 100W 15el,10/02 +IW2DUA,JN45LL,EME,,dario,,,1993 +IW2HAJ,JN45NO,,,Claudio,,50: IC706 6el - 144: 400W 20ele Preamp,04/02 +IW2HUS,JN45NO,,,,,,04/02 +IW2HWQ,JN55GK,,,Francesco,,144: FT736r 80W 21elonly SSB-MS,10/96 +IW2LC,JN45OL,,,Luigi,,ICOM-756 YAESU FT-897 ICOM275H KENWOOD TS-790,05/04 +IW2LLA,JN55AM,,,Andrea,,144: 2x17el 100Wonly SSB-MS,08/96 +IW2MYV,JN45JN,,,Marco,,144: TS711E 4CX250 GaAs 4x7el + elv.only S,01/02 +IW2NEF,JN46QD,,,Flavio,,144: FT847 12elXY,11/02 +IW2NOR,JN45ON,,,Gaetano,,ICOM IC275H KENWOOD TS 2000 144: 100W 2x17,06/04 +IW3BKQ,JN56NH,,,,,,07/02 +IW3QTG,JN65PT,,,Paolo,,144: IC746 2x 17FT,08/04 +IW3RI,JN65RU,,,Claudio,,50: 6el/HyGain 144: 4x17el 432: 4x21el.155.,03/01 +IW3SGT,JN65,,,,,,07/02 +IW3SNU,JN65OT,,,Dany,,,11/04 +IW4ADT,JN54,EME,,augusta,,,1994 +IW4AR,JN64FD,,,,,,2003 +IW4ARD,JN64FD,,,Gianni,,144: 20el 300W,01/05 +IW4BET,JN54QL,,,Carlo,,,08/02 +IW4BLG,JN54VF,,,,,,2003 +IW4BTJ,JN54QL,,,,,,2003 +IW4CB,JN54XK,,,Andrea,,,02/01 +IW4DJE,JN64,,,,,,01/95 +IW4DLA,JN64CE,,,giacomo,,,1994 +IW4DMH,JN64CJ,,,Gabriel,,only SSB-MS,11/98 +IW4DQY,JN64AG,,,Joe,,,03/04 +IW4EHV,JN64AE,,,Fabio,,FT817 30W Amp 50: 5el - 144: 11el - 432: 2,09/03 +IW4EHZ,JN54ML,EME,,FAUSTO,,IC706MKIIG 20EL70CM 12EL2MT 6EL6MT,01/05 +IW5ACZ,JN53HP,,,ALESSANDRO,,50: TS2000 HB9CV 144: TR751E 4CX250 250 WAT,10/04 +IW5AVM,JN52NS,,,,,,2003 +IW5BLG,JN54VF,,,,,,2003 +IW5BML,JN52JW,EME,,A.,,,04/99 +IW5BPE,JN52NT,,,massimo,,,1993 +IW5CNS,JN53CX,EME,,Daniele,,144: IC275H 4x10el 2.2wl 9BV 8877 MGF130,12/99 +IW5DAN,JN53GU,EME,,Luigi,,144: 4x10el DJ9BV 8877 TS790e MGF1302.177,02/01 +IW5DHN,JN53gi,EME,,Matteo,,TS2000,04/02 +IW5DNZ,JN53,,,,,,05/02 +IW5EKJ,JN54AA,,,Roberto ""Roby",,144: 4-5ld 300W,10/04 +IW6AEG,JN63RO,,,Fabio,,,10/93 +IW6BLH,JN63RO,,,Franco,,,12/00 +IW6BNO,JN63RL,,,,,,11/95 +IW7DEC,JN81GF,,,Roberto,,144: 12db yagi 100W Preamp,08/04 +IW8QOT,JM88BR,,,,,,2003 +IW9CER,JM78QF,,,Tony,,only SSB-MS,10/02 +IW9ELR,JM68PD,,,Rosario ""Roy",,,11/02 +IW9FRA,JM68GA,,,Sal,,,01/05 +IZ0ARL,JN61IU,,,Maurizio (Morris),,144: 200W 16elonly SSB-MS,10/96 +IZ0AYB,JN52VC,EME,,Daniele,,IC-910H 144: 4x12JXX - 432: 2x19 Tonna,05/04 +IZ0CVK,JN61GV,,,Fabrizio ""Fab",,Yaesu FT767 mgf1801 11eleF9Ft 20ele DJ9BV5,06/04 +IZ1DXS,JN35UA,,,George,,ICOM IC-7400 (746 PRO) - 50: 6el - 144: 14e,11/02 +IZ1EGT,JN44LK,,,Fabio,,IC910,11/04 +IZ1ESM,JN45FB,,,Paolo,,KWD TS850 + LT2S MK2 + 4.4wl BVonly SSB-MS,09/02 +IZ2AAJ,JN45,,,,,,12/99 +IZ2DJP,JN55FO,,,Adelio,,,05/04 +IZ2EEQ,JN45,,,,,,07/02 +IZ2FOB,JN45MQ,,,Roberto,,50: IC706 dipole - 144: IC821h 150Watt 2x9F9F,08/03 +IZ4AIK,JN63HV,,,Marco,,50: 100W 5el - 144: TS790 3CX800A7 TS850 & T,07/01 +IZ4BEH,JN54WL,,,Roberto,,144: 1KW 2x16el MGF2407 - 432: 2x21el 300W,10/02 +IZ4BEJ,JN64CE,,,Enrico,,144: 2x13el gd Pwronly SSB-MS,11/97 +IZ5BXF,JN53GV,EME,,Michele,,300W- 4x11el 2.2wl- 0.3dbNF2500lpm,01/01 +IZ5EME,JN52NS,EME,,Marco,,144: 4x20el 8877 - 432: 4x25el 3CX800 - 1296:,04/01 +IZ8AZB,JN70EP,EME,,Lucio,,144: 4x11el 8930(400W)DTR,01/02 +IZ8DWL,JM88BR,,,Primo,,144: IC-746 PA 4CX250 16JXX LY MGF1302,04/04 +J45M,KM46CF,EME,,OP: PE1LWT- PA2CHR,,144: FT100 FT847 IC706 DSP59/Datong audiofilt,06/01 +J48XG,KN20GR,,,,,144: 8el DK7ZB 60W,05/04 +J79MY,FK95,EME,,OP K6MYC,,4x Yagi- 1.5KW,06/98 +JA0BLU,PM97OS,EME,,Masa,,144: 1KW 4x19el 2x18el MGF1801.043.250,01/00 +JA0VI,PM95,EME,,,,,2003 +JA1DXA,PM95VU,,,,,,2003 +JA1VZV,PM95QL,,,,,,2003 +JA2HMO,PM85IH,,,,,,2003 +JA2JRJ,PM84MW,EME,,,,,89 +JA2KRW,PM85NE,EME,,,,,2003 +JA2TY,PM84GS,EME,,,,,2003 +JA3BXC,PM74SU,,,,,,2003 +JA3IAF,PM74,EME,,,,,2003 +JA3SGR,PM74TU,EME,,,,,2003 +JA4BLC,PM65NM,EME,,,,,89 +JA4CMZ,PM65MI,EME,,,,,2003 +JA4KLX,PM95RI,,,,,,2003 +JA5NNS,PM63,EME,,,,,2003 +JA5OVU,PM74FC,EME,,,,,2003 +JA5YJS,PM63,EME,,,,,2003 +JA6AHB,PM53CP,EME,,,,,2003 +JA6CZD,PM53FM,EME,,,,,2003 +JA6DZI,PM53GM,EME,,,,,2003 +JA6XED,PM53,EME,,,,,2003 +JA6ZHR,PM53,EME,,,,,2003 +JA7BJP,QM07GN,,,,,,2003 +JA7BMB,PM97WM,EME,,,,,2003 +JA8ERE,QN02QX,EME,,,,,2003 +JA8IAD,QN03,EME,,,,,2003 +JA8PL,QN03,EME,,,,,2003 +JA9BOH,PM86FA,EME,,,,,2003 +JF3HUC,PM74UX,EME,,,,,2003 +JF3IPR,PM74,,,,,,2003 +JH0ISW,PM97LO,,,,,,2003 +JH0QBI,PM97FF,,,,,,2003 +JH0WJF,PM86,EME,,,,,03/01 +JH0YSI,PM85VJ,EME,,,,,89 +JH1EFA,PM96UB,EME,,,,,2003 +JH1KRC,QM06AW,EME,,,,,2004 +JH1OFX,PM85SM,EME,,,,,2003 +JH1OQW,PM95UX,,,,,,2003 +JH1SWD,QM06HN,,,,,,2003 +JH1XUJ,PM95UR,EME,,,,,2003 +JH2COZ,PM94mx,EME,,Yasu,,4x14el 1-5KW,03/99 +JH2OJS,PM85LD,,,,,,2003 +JH3EAO,PM74KR,EME,,,,,2003 +JH3VJV,PM74LP,,,,,,2003 +JH4JLV,PM54LA,EME,,,,,2003 +JH5FOQ,PM63JS,EME,,,,,02/01 +JH5LUZ,PM63FK,EME,,,,,2003 +JH6RTO,PM53FA,,,,,,2003 +JH7PAV,QM07DI,EME,,,,,2003 +JH7SIA,QM09EN,,,,,,2003 +JH9TJT,PM86HK,,,,,,2003 +JI1FLB,PM95WS,,,,,,2003 +JI1NJC,QM06FL,,,,,,2003 +JI3GER,PM75XA,EME,,,,,2003 +JI4POR,PM65NK,,,,,,2003 +JJ1NNJ,QM06GH,EME,,,,,2003 +JJ1VOM,PM95,,,,,,2003 +JK1HIX,PM95WH,EME,,Tomio,,4x17el 8877,03/99 +JK1LYP,PM95,,,,,,2003 +JK1XDX,PM95,,,,,,2003 +JK7IKU,QM09BR,,,,,,2003 +JL1ZCG,PM59UM,EME,,OP JR4ENY- 7K3LGC,,TS790 4CX1500A 16x2.5WL V-POL YAGIS,03/99 +JM1GSH,QM06IS,EME,,,,,12/04 +JM1LQW,PM96QA,,,,,,2003 +JM1MQE,PM95RP,,,,,,2003 +JN1BMX,QM06FM,,,,,,2003 +JN1CSO,PM95SW,,,,,,2003 +JO1LVZ,PM95TR,,,,,,2003 +JO3JJN,PM85AC,EME,,,,,2003 +JO3RNL,PM74TT,EME,,,,,2003 +JR1EDE,PM95TG,EME,,Kohjin,,10368: 1.8m Dish 40W,02/01 +JR1EUX,PM95TO,EME,,,,,2003 +JR1RCH,PM96SI,EME,,,,,2003 +JR3REX,PM74LQ,,,,,,2003 +JR4AEP,PM65RH,EME,,,,,2003 +JR4BRS,PM65,EME,,,,,2003 +JR5JXV,PM86XG,,,,,,2003 +JR5UOY,PM64XF,,,,,,2003 +JR7VXF,QM09AK,,,,,,2003 +JR9NWC,PM85BW,EME,,,,,2003 +JS3SIM,PM74VW,EME,,,,,2003 +JX7DFA,IQ50OV,EME,,Per Einar,,TS2000.161 DTR.161,08/00 +K0AWU,EN37ED,,,,,,2003 +K0AZ,EM37CD,,,Mike,,144: 800Watts 17B2,09/01 +K0BLR,EN25UO,,,BEN,,,2003 +K0CB,EM27,,,,,,2003 +K0CIO,EM07,,,,,,2003 +K0CJ,EN34IS,,,,,,2003 +K0CQ,EN32EC,,,,,,2003 +K0CXJ,EN26,,,,,,2003 +K0DAS,EN42,EME,,,,,89 +K0FF,EM49HO,,,George,,50: 1-5KW 7el or 4x6el - 144: 1-5KW 2x17el M,01/01 +K0FQA,EN35FE,,,,,,2003 +K0FZG,EN36,,,,,,2003 +K0GCJ,EN43,,,,,,2003 +K0GEI,EM49,,,,,,2003 +K0GRM,DN96OT,,,,,,2003 +K0GU,DN70MQ,EME,,Jay,,144: FT1000DEM 8877 4x17elB2 SSB Preamp,01/01 +K0HH,EM48,,,,,,2003 +K0HU,EN10,,,,,,09/99 +K0HWE,EN41BX,,,,,,2003 +K0IDC,EN12TL,,,Robert,,,2004 +K0IDT,EN10PS,,,Ron,,,2003 +K0IK,EN34JR,,,Brian,,,2004 +K0ILC,EN36,,,,,,2003 +K0IR,EN25,,,,,,2003 +K0JO,EN34,,,,,,2003 +K0KE,DM79,,,,,,2003 +K0KFC,EN34,,,,,,2003 +K0KJX,EM48,,,,,,2003 +K0KP,EN36VW,,,Rex,,50: 7el 100W - 144: 13el 100W,08/03 +K0KQY,DM98,,,,,,08/00 +K0LGI,EN42,,,,,,2003 +K0LLS,EM29,,,,,,2003 +K0MQS,EN31UH,,,,,,2003 +K0NG,EN10,,,,,,2003 +K0NL,EM48MK,,,,,,2003 +K0NY,EN44DB,,,,,,2003 +K0OG,EM47CW,,,Joseph,,,2004 +K0PFX,EM48SR,,,,,,2003 +K0PG,EN61AU,,,,,,2003 +K0PJ,EN34,,,,,,2003 +K0PS,DM59VG,,,Paul,,,2004 +K0PW,EN34CV,EME,,John,,144: 1.5KW 2x17el 5lb MGF1302.098.175,09/01 +K0RDF,EM29,,,,,,2003 +K0RI,DM78PX,,,Larry,,,2003 +K0RL,EM49HU,,,,,,2003 +K0RP,DM88AD,,,Bill,,50: 150W - 144: 150W - 222: 110W - 432: 110W,01/01 +K0RRY,EN36,,,,,,2003 +K0RZ,DM79JX,,,,,,2003 +K0SDH,EN34JS,,,,,,2003 +K0SE,EN34,,,,,,2003 +K0SHF,EN34JV,,,,,,2003 +K0SM,EN10RT,,,Andy,,144: 160W Preamp 13B2,01/01 +K0SQ,EN35,,,,,,2003 +K0TAR,EN34,,,,,,2003 +K0UO,EM07,,,,,,2003 +K0VM,EN42,,,,,,2003 +K0VSV,EN41LK,,,Tom,,50: 8W 5el - 144: 170W 12el,1998 +K0WLU,EN13XS,,,,,,2003 +K0XP,FN31,,,Steve,,144: 350W 3219 - 222: 450W KLM16,01/02 +K0XXX,EM46FF,,,,,,2003 +K0YW,DM67ED,EME,,,,,2003 +K0ZPO,EM15,,,,,,2003 +K1AE,FN42EJ,,,John,,,11/01 +K1CA,FN42mm,EME,,,,,2003 +K1FO,FN31QJ,EME,,,,,2003 +K1IM,FN31WX,,,Tom,,,2003 +K1JT,FN20QI,EME,,Dr. Joseph ""Joe",,50: 200 - 144: 11el 160W - 222: 120W - 432:,12/04 +K1MS,FN42,,,Ivan,,144: 1KW 2x M2 5wl,01/01 +K1OR,EN42IR,EME,,,,,2003 +K1OYB,FN43TP,,,,,,2003 +K1POP,FN51,,,,,,2003 +K1RC,FN42HQ,,,,,,2003 +K1RO,FN31,,,,,,2003 +K1RQG,FN54LM,EME,,,,,2003 +K1RZ,FM19JH,,,,,,2003 +K1TEO,FN31,,,Jeff,,144: 800W 4x12el - 222: 500W 2x23el,01/01 +K1UHF,FN31FH,EME,,Del,,144: 1-5KW 4x12el - 222: 500W.100 10000lpm,01/01 +K1VOW,DM25VF,,,,,,2003 +K1ZE,FN41,,,Ed,,144: 300W 2x4218 - 222: 60W 220B - 432: 400W,1998 +K2AAX,FN12CS,,,Mark,,,01/01 +K2AH,FN20,EME,,,,,2003 +K2AXX,FN12CS,EME,,Mark,,144: TS-930S Transverters - 432: TS-830S,02/05 +K2BLA,EL99IA,EME,,Albert,,,01/05 +K2DH,FN13FB,EME,,,,,2003 +K2DRH,EN41VR,,,Bob,,,07/03 +K2EVW,EM96SS,,,,,,2003 +K2GAL,FM29PH,EME,,,,,1998 +K2JT,EM20QI,,,Dr. Joseph ""Joe",,144: 11el 160W,03/00 +K2LME,FN31UI,EME,,Dave,,,10/98 +K2OS,FN13CD,EME,,,,,12/00 +K2OVS,FN30,,,Jay,,50: 250W 6el - 144: 200W single yagi - 432: 6,01/01 +K2PGB,FN20,,,Chris,,50: TS680S 10W 3el - 144: IC251A 80W 13B2,01/01 +K2STO,EL88PH,,,,,,2003 +K2TXB,FM29PT,,,Russ,,,07/01 +K2UYH,FN20QG,EME,,,,,89 +K2VEE,EM79WP,,,,,,2003 +K2WKA,FN20RF,,,Fred,,,2003 +K2YAZ,EN74AV,,,,,,2003 +K3ACE,FM29DR,,,Norm,,,2003 +K3AX,FN20,EME,,,,,2000 +K3BFA,FN10XI,,,Charlie,,144: 1-5KW 4x15el,01/01 +K3DJC,FM19LL,,,,,,2003 +K3EAR,FM19HX,,,South Mountain Conte,,,2003 +K3FOR,FM19SB,EME,,Skip,,,2003 +K3FU,FM18,,,,,,2003 +K3GNC,FM29KX,,,Jerome,,,01/97 +K3HZO,FN20AG,,,Harry,,50: 350W 5el - 144: 350W 17el - 432: 100W 24e,1998 +K3IB,FN20HK,,,Phil,,50: 200W 6M5XX - 144: 1-5KW FO12 - 222: 300W,09/01 +K3JT,EM99XO,,,,,,2003 +K3LFO,FM19,EME,,,,,2003 +K3LOW,EN91BK,,,Henry,,,2003 +K3MF,FM19XP,EME,,Wayne,,,01/05 +K3ROJ,FM19SH,,,,,,2003 +K3SIW,EN52,,,,,,2003 +K3TKJ,FM28EM,,,,,,2003 +K3TUF,FN10WE,,,Philip,,,2004 +K3TV,FN20EP,,,,,,2003 +K3UZY,FN20,,,,,,2003 +K3VLQ,EM92,,,,,,2003 +K4AR,EM76,EME,,Bert,,432: 8x28el (9lb) Yagis 1-5KW 0.25db,01/00 +K4CSO,EM73,,,,,,2003 +K4DD,EM60NP,,,Richard,,,2004 +K4DRF,EM74QA,,,,,,2003 +K4EJQ,EM86,,,,,,2003 +K4EME,FM08KF,EME,,,,,2003 +K4HJE,EM96,,,Ed,,,01/01 +K4JAF,EM70EK,,,,,,2003 +K4KAE,FM02AT,,,,,,2003 +K4KO,EM66UD,,,Greg,,,2004 +K4MRW,EM64PW,,,Robert,,,01/01 +K4QF,EM64,,,,,,2003 +K4QI,FM06,EME,,,,,07/01 +K4QXX,EL87RM,,,Burch,,,2003 +K4RF,EM84DJ,,,Steve,,,01/01 +K4SDI,EM56TQ,,,Mark,,,2003 +K4SSO,EM48SR,,,Colin,,144: 160W 16el,01/02 +K4SSP,EM47,,,,,,09/99 +K4TAX,EL96WF,,,,,,2003 +K4VJ,EL96LX,,,,,,2003 +K4WRI,EL98LM,,,Robert,,,2003 +K4YA,EM25,,,,,,2003 +K4YNT,EM74KW,EME,,Bob,,,02/05 +K4ZFY,EL18,,,,,,2003 +K5AIH,EL09TK,EME,,,,,1998 +K5APM,EM10BL,,,,,,2003 +K5AZU,EM40SN,EME,,,,,2003 +K5BYS,EM13,,,,,,2003 +K5CBL,EM15,,,,,,2003 +K5CFM,EM15,,,,,,2003 +K5CPZ,EM15,,,,,,2003 +K5EGW,EM30,,,,,,2003 +K5EWS,EM10,,,,,,2003 +K5FA,EM44,,,,,,2003 +K5GE,EL09,,,,,,2003 +K5GNA,EM20,,,,,,2003 +K5GW,EM13PA,EME,,,,48x10el,10/98 +K5IS,DM96,,,,,,2003 +K5IUA,EL29CD,,,John,,,01/01 +K5JL,EM15DQ,EME,,,,,01/05 +K5LZO,EM20,,,,,,2003 +K5MAT,DM65,,,,,,2003 +K5MQ,EM31WQ,,,,,,2003 +K5OGE,EM20UX,,,,,,01/01 +K5PHD,EM-12,,,,,,2003 +K5PHF,DM61,,,,,,2003 +K5PJR,EM37KA,,,,,,2003 +K5QQ,DM65SB,,,,,,2003 +K5QXJ,EM30XA,,,,,,2003 +K5RFI,EM16,,,,,,2003 +K5RHR,DM65UV,,,,,,2003 +K5RUS,EM32VM,,,RUSSELL,,,2003 +K5SXK,EM12,,,,,,2003 +K5TN,EM15,,,,,,2003 +K5TNP,EM32,,,,,,2003 +K5TTT,EM26CH,,,Charlie,,only SSB-MS,01/02 +K5UHF,EM10DJ,,,,,,2003 +K5UJC,EM20VB,,,Earl,,,2004 +K5VH,EM00XE,,,,,,2003 +K5WO,EM12,,,,,,2003 +K5WXN,DM61,EME,,,,,89 +K5YPV,EM54MR,,,,,,2003 +K5YY,EM26,,,San,,144: 1KW 13el,89 +K5ZMJ,EM12,,,,,,2003 +K5ZMS,EL09,,,,,,2003 +K5ZSJ,EM12,,,,,,2003 +K5ZXE,EM14KL,,,,,,2003 +K6AAW,CN80TE,EME,,Larry,,144: 4x15el 3wl 1.2KW MGF1302,01/00 +K6ALF,CM97BH,,,,,,2003 +K6CYS,DM12KT,,,,,,2003 +K6DV,DM13NI,EME,,,,,2003 +K6HLH,DM14CP,,,,,,2003 +K6IAH,DM12,,,,,,2003 +K6IBY,DM13,EME,,,,,2003 +K6JEY,DM03WT,EME,,Doug,,144: 4x25el K1FOs 500W <0.4db,08/00 +K6KL,CM97,,,,,,2003 +K6LEW,FM18LT,EME,,Owen,,,11/00 +K6MBY,DM13LD,,,Bob,,,2003 +K6MXI,CM88QL,,,,,,2003 +K6MYC,CM97AA,EME,,,,,10/96 +K6PF,DM13AR,,,Robert J.,,144: FT726r 175W 4xM 2MXP20,01/01 +K6SUE,CM98AK,,,Sue,,144: 650W 2x17el- 222: 120W 7wl- 432: 175W 2x,11/99 +K6UCY,CM87UN,,,Vic,,,2004 +K6UIY,DM14,,,Cap,,144: FT726r 1KW 2Yagis,01/97 +K6UM,CM88,,,,,,2003 +K6ZX,CN82GM,,,Doug,,144: 160W 2x2M9,01/97 +K7BV,FN31VI,EME,,,,,01/05 +K7CA,DM26JE,EME,,Al,,144: 1KW 42´homebrew yagi,01/01 +K7CAI,DN27KF,,,,,,2003 +K7IEY,CN88,,,,,,03/98 +K7JA,DM03XS,,,Chip,,144: 190W 19el,1998 +K7KX,DN55,,,,,,2003 +K7LNP,DN30,EME,,,,,09/99 +K7MAC,DN13SN,EME,,Mac,,,01/05 +K7MDL,CN87XT,EME,,,,,04/04 +K7ND,CN87QF,,,Jim,,144: 1KW 2x5wl M2,01/01 +K7NEP,DN53NF,,,John,,FT1000MP 144: HM 1KW PA 13el,1998 +K7OO,DM04,,,,,,2003 +K7PVT,CN88SA,,,,,,2003 +K7TRM,DM33VP,,,Tom,,,2003 +K7UOP,DM33XN,,,Bill,,,01/01 +K7UV,DN31XM,,,Ron,,,2003 +K7WUP,DM49IG,EME,,,,,2003 +K7XC,DM09OL,EME,,Tim,,50: IC746 KW 6el - 144: IC746 500W 18xxx- 222,03/03 +K7XD,CN85,EME,,Derek,,144: 400W 2x23el,01/97 +K7XQ,CM97QI,EME,,Jeff,,144: 4x2MPX18 Xpol 3lb 450W MGF1302,10/99 +K7XW,CN96XI,EME,,Mark,,50: 1-5KW 5el - 144: 600W 2x3.5wL - 222: 50W,01/01 +K7YVZ,DN13TL,,,Jerry,,144: 1-5KW 4x18XXX 2x13el Quagi Preamp - 432,01/01 +K7ZL,CN84JC,,,Tom,,144: 150W 36foot yagi,1998 +K8BHZ,EN75DB,,,Brian,,144: 1-5KW 4x17B2,1998 +K8DGY,EN63WW,,,,,,2003 +K8EME,EN72EH,EME,,Luis,,144: FT847- 4x11el 2.2lb- 8877 (1-5KW),03/00 +K8IE,EN52,,,,,,2003 +K8ISK,FM18DV,EME,,,,,2003 +K8MM,EN83IB,,,Ian,,,2004 +K8ROX,EN80LO,,,,,,2003 +K8SD,EN12,,,,,,2003 +K8UC,EM99EG,EME,,,,,2003 +K8UK,EN82LK,EME,,,,,2003 +K8VEB,EN72NN,,,,,,2003 +K8VP,EN91,EME,,Bill,,200,07/01 +K8XK,EN42,,,,,,2003 +K9AKS,EN41,,,,,,2003 +K9AM,EN52,,,,,,2003 +K9BCT,EL96UE,EME,,,,,2003 +K9BMB,EM69OG,,,Homer,,,2003 +K9CA,EN61ML,,,,,,2003 +K9CFA,EN52,,,,,,2003 +K9DQ,EN62,,,,,,2003 +K9DTB,EM89,,,Phil,,, +K9EA,EN94CB,,,Dan,,,09/01 +K9EK,EM79BF,,,,,,2003 +K9FYV,EN41,,,,,,2003 +K9HJZ,EN50ES,,,Jeff,,,2003 +K9HMB,EN52VI,EME,,,,,12/00 +K9HSK,EN51,,,,,,2003 +K9IJ,EN52,,,,,,2003 +K9ILT,EN61AU,,,,,,2003 +K9IMM,EN52,,,,,,2003 +K9IMX,EM38,,,,,,2003 +K9IZV,EN53,,,,,,2003 +K9JK,EN52XC,,,,,,2003 +K9KFR,EN71GG,EME,,,,,2003 +K9KHW,EN63AD,,,,,,2003 +K9KL,EN64,,,,,,2003 +K9KNW,EL96EC,EME,,Joe,,,01/05 +K9MB,EM57,,,,,,2003 +K9MRI,EN70IU,EME,,Joe L.,,144: 8xm2 yagis and 1.2kw,01/05 +K9NS,EN52QK,,,,,,2003 +K9OQN,EN52,,,,,,2003 +K9PO,EN52VF,,,,,,2003 +K9PW,EN52,,,,,,2003 +K9SLQ,EN70KK,EME,,Wayne,,432: 16x FO22 1.5 KW,08/02 +K9SQL,EM69RF,,,Robert,,,2004 +K9TI,EN51,EME,,Russ,,144: 4x K1FO 12 el PA 8877,02/01 +K9VHF,EN53,,,,,,2003 +K9VNM,EN63,,,,,,2003 +K9VS,EN52,,,,,,2003 +K9XI,EN61,,,,,,2003 +K9YR,EN52,,,,,,2003 +K9ZZH,EN61,EME,,,,,2003 +KA0EWM,EN30,,,,,,2003 +KA0KCI,EM17,,,,,,2003 +KA0KUY,EM07XD,,,,,,2003 +KA0MOW,EM17,,,,,,2003 +KA0MR,EM18GE,,,,,,2003 +KA0MWA,DM79LL,,,,,,2003 +KA0NNO,EM24TL,,,Lisa,,,01/97 +KA0OGU,EM29,,,,,,2003 +KA0PQW,EN33,,,Matt,,,11/01 +KA0RYT,EN34DW,EME,,Ron,,,01/02 +KA0UZZ,EN34,,,,,,2003 +KA0Y,EN41,EME,,,,,08/00 +KA0YSQ,EN42,,,,,,2003 +KA0ZOZ,EN23,,,,,,2003 +KA1JBG,FN42,,,,,,2003 +KA1LEX,FN34KL,,,Randall,,,2003 +KA1OTP,FN41,EME,,,,,2003 +KA2DRH,EM64KT,,,,,,2003 +KA2HZO,FM29US,,,,,,2003 +KA2KQM,EM74QA,,,,,,2003 +KA3HED,FM27,,,,,,2003 +KA3WSZ,FM29GK,EME,,,,,2003 +KA4WJA,EL89WE,,,,,,2003 +KA5AAE,EM06,,,,,,2003 +KA5AIH,EL29NW,EME,,,,,10/96 +KA5DWI,EM12JU,,,,,,2003 +KA5PVB,EM13,,,,,,2003 +KA5TQY,EM43,,,,,,2003 +KA5UEL,EM12,,,,,,2003 +KA5UEV,DM93,,,,,,2003 +KA5ULI,EM30,,,,,,2003 +KA5WMJ,DM96,,,,,,2003 +KA5WRG,EM15,,,,,,2003 +KA5YJJ,EM44NN,,,Thomas,,,2003 +KA6NBC,CM98,,,,,,2003 +KA7V,DN14MA,,,Barry,,144: 13B2 1500W,11/03 +KA8EDE,EM79,,,,,,2003 +KA8HQL,EM89VU,,,Jeffrey,,,2003 +KA8SFP,EM12,,,Stan,,,01/01 +KA8SSB,EM79,,,,,,2003 +KA8TER,DN43AL,,,,,,2003 +KA9CFD,EN40OM,,,Jay,,,11/04 +KA9LDS,EN51,,,,,,2003 +KA9LLF,EM71,,,,,,2003 +KA9LNP,DN30,,,Pat,,144: 800W KLM13LBA,01/01 +KA9MGR,EN41,,,,,,2003 +KA9OIL,EN62,,,,,,2003 +KA9UVY,EM58NG,,,,,,2003 +KA9YCB,EM57QQ,,,,,,2003 +KB0BFI,29EMLL,,,Clarence,,,2003 +KB0BVR,EN26AH,,,,,,2003 +KB0CY,DM79,,,,,,2003 +KB0EMR,EN31,,,,,,2003 +KB0FHP,FN20GE,,,Donald,,,2003 +KB0FRX,EN10,,,,,,2003 +KB0G,DM79PA,,,,,,2003 +KB0GL,EN35,,,,,,2003 +KB0GR,EM29,,,,,,2003 +KB0GU,EM28TW,,,Gene,,,2004 +KB0HH,EM07QD,EME,,,,,89 +KB0IKP,EN25UQ,,,,,,2003 +KB0LRI,DM79,,,,,,2003 +KB0LXX,DN96,,,,,,2003 +KB0MNK,EN34IW,,,,,,2003 +KB0NR,EN35OG,,,,,,2003 +KB0OBT,EN35KB,,,,,,2003 +KB0OZN,EN34,,,,,,2003 +KB0PYO,EN24GP,,,Mark,,,01/97 +KB0THN,EN44DB,,,,,,2003 +KB0TZA,EN35ID,,,,,,2003 +KB0USF,DM79LR,,,,,,2003 +KB0VUK,EN34PK,,,Matt,,,09/01 +KB1CJ,FN42JG,,,Joe,,IC746 50: 100W 2el - 144: 100W 13el,09/03 +KB1DFE,FN42ES,,,,,,2003 +KB1HGB,FN53EU,,,,,,2003 +KB2AH,FN20,,,,,,2003 +KB2M,FM29PE,,,,,,2003 +KB3EDF,FM18RH,,,Ron,,,2003 +KB3HWO,FN10UB,,,Mark,,,2003 +KB3PD,FM29,EME,,,,,89 +KB4BSA,EM73,,,,,,2003 +KB4FQ,FM04GR,,,,,,2003 +KB4RSM,EM66OG,,,,,,2003 +KB4WM,EM63,EME,,,,,2003 +KB4ZGO,FM06BQ,,,Anthony,,,2004 +KB5DAK,DM96,,,,,,2003 +KB5EK,EM15,,,,,,2003 +KB5MR,EM26,,,,,,2003 +KB5MY,DM13NC,,,,,,2003 +KB5UBE,EM12LQ,,,,,,2003 +KB5ULP,EM15,,,,,,2003 +KB5VL,DM73RK,,,,,,2003 +KB5VQQ,EM15,,,,,,2003 +KB5WII,EM15,,,,,,2003 +KB5WMY,EM32,,,Carl,,,1998 +KB5YAJ,EM14,,,,,,2003 +KB5YUA,EM44,,,,,,2003 +KB5ZMY,EM12,,,,,,2003 +KB5ZUD,EM26,,,,,,2003 +KB6IGC,DM15DO,,,,,,2003 +KB7FUV,DN44,,,,,,1993 +KB7XO,DN41AB,,,,,,2003 +KB8GC,EN74HD,,,,,,2003 +KB8JVH,EN80,,,,,,2003 +KB8O,EN82JJ,,,Albert L. ""Al",,,03/00 +KB8RQ,EM79SV,EME,,Gary L.,,144: 8 x 19el M2.038,01/05 +KB8VAO,EN91PB,,,,,,2003 +KB8ZUZ,EN83JL,,,,,,2003 +KB8ZW,EN91IJ,,,,,,2003 +KB9GPW,EN61,,,,,,2003 +KB9II,EN52WA,,,,,,2003 +KB9KCJ,EN52,,,,,,2003 +KB9MLA,EN61CX,EME,,,,18el- 160W,10/98 +KB9NLM,EN53UO,,,,,,2003 +KB9PCL,EN41,,,,,,2003 +KB9PJL,EN44GT,,,,,,2003 +KB9Q,EN52VV,,,,,,2003 +KB9TLV,EN45MW,,,,,,2003 +KB9UMT,EN50DP,,,Don,,,2003 +KB9VQC,EN53,,,,,,2003 +KB9VUG,EN52,,,,,,2003 +KB9YXF,EN61,,,,,,2003 +KB9ZK,EN62,,,,,,2003 +KC0AKJ,EN42,,,,,,2003 +KC0AMG,DM98GK,,,,,,2003 +KC0CHW,EN41IN,,,,,,2003 +KC0CRE,DM28,,,,,,2003 +KC0FTQ,DM79OB,,,,,,2003 +KC0FXY,EN34,,,,,,2003 +KC0HTB,EN34JT,,,,,,2003 +KC0LBT,EN35IB,,,,,,01/05 +KC0LMS,EN34IW,,,,,,2003 +KC0MLS,EM19QU,,,Myron,,,2003 +KC0OG,EN10,,,,,,2003 +KC0P,EN34SB,,,,,,2003 +KC0QR,EN10,,,,,,2003 +KC0Y,DM79,,,,,,2003 +KC2TN,FM29NS,,,Joe,,,2003 +KC3AK,FM19UU,,,Terry,,,2004 +KC3RE,FM18DB,EME,,Martin,,144: 160 W .5 db 18 el (no elev) - 432:,02/05 +KC4VI,EL88SD,,,,,,2003 +KC5BQS,EL29,,,,,,2003 +KC5BRO,EM15,,,,,,2003 +KC5LOW,EM22,,,,,,2003 +KC5NOA,EL08,,,Bart,,50: 150W 5el - 144: 100W 10el - 432: 20W 19el,01/01 +KC5NOB,EL07,,,John,,50: 10W 5el - 144: 170W 8el - 432: 10W 19el,01/01 +KC5UOO,EM26,,,,,,2003 +KC5WX,EM13LB,,,,,,2003 +KC5YKX,EL17HS,,,Reid,,Icom 746 w/ DEM 22 and 432 xverters 50: 5el,05/02 +KC5ZXE,EM45AM,,,,,,2003 +KC6A,DM03,EME,,,,,2003 +KC6TEU,CM98MQ,,,,,,2003 +KC6WFS,DM04RK,,,Dave,,50: 100W 5el - 144: 100W 2x12el - 432: 50W 2x,08/01 +KC6ZWT,CM98,,,Alexander,,144: 350W 17el M2 - 222: 250W 15el - 432:,05/03 +KC7MRP,CN88,,,Brad,,,01/97 +KC7OTV,CN84KA,,,Brian,,,2003 +KC8CCD,EM79VM,,,,,,2003 +KC8DLL,EN66,,,Mike,,50: 150W M25 - 144: 200W 2x13B2 - 432: 100W K,1998 +KC8GYW,EM79,,,,,,2003 +KC8NST,EN91QB,,,,,,2003 +KC8OIT,EN83,,,,,,07/01 +KC9AAX,EN52,,,,,,2003 +KC9AER,EN52,,,,,,2003 +KC9AYO,EN52,,,,,,2003 +KC9BTW,EN52,,,,,,2003 +KC9CMT,EN63LA,,,Michael,,,2004 +KD0BT,EN41,,,,,,2003 +KD0DW,DN70LF,,,,,,2003 +KD0HE,EN00,,,,,,2003 +KD0LO,EM48,,,,,,2003 +KD0PY,EN41UX,,,Darryl,,144: IC275A 2516g 150W 13el - 432: IC471H 70W,01/01 +KD0SU,DM78,,,,,,2003 +KD1DU,FN31FH,EME,,,,,2003 +KD3UY,FM19LG,EME,,Bob,,,01/05 +KD4ESV,EL87RH,,,Samuel C.,,,01/01 +KD4FNB,FM17TD,,,,,,2003 +KD4LT,EM81CG,EME,,,,,2003 +KD4MZM,EL87RG,EME,,Eric,,50: FT107m - 144: FT726r 170W 19el.125.200,07/01 +KD4NOQ,EM55BE,,,,,,2003 +KD4NUD,EM91HB,,,,,,2003 +KD4TJN,EM55CE,,,,,,2003 +KD5FFW,EM12,,,,,,2003 +KD5FZX,EM12MP,EME,,,,,2003 +KD5HIO,DM65UV,EME,,Glen,,,2003 +KD5KJD,EL29IR,,,Luis,,,2004 +KD5LDQ,EM26IH,,,Dwayne,,,2003 +KD5LWU,DM66AU,,,Johnny,,,2003 +KD5OMJ,EM04UO,,,Boyd,,,2003 +KD5OUG,EM12,,,,,,2003 +KD5QQU,EM12QX,,,,,,2003 +KD5QWO,EM15AJ,,,David,,Yaesu ft-847,01/04 +KD5XB,DM84,,,Earl,,,01/97 +KD7ETC,DM54AH,,,Roland,,,2004 +KD9KX,EN42,,,,,,2003 +KD9PW,EN54,,,,,,2003 +KE0MO,EN41,,,,,,2003 +KE0UQ,EM29,,,,,,2003 +KE1AF,,,,ABEL,,,2003 +KE2N,FM18EW,EME,,KEN,,432: 16x28 el 1KW,01/05 +KE3PL,FN20PM,,,,,,2003 +KE3UY,,,,mark,,,2003 +KE4ENX,EM84GM,,,,,,2003 +KE4IKM,EM73,,,,,,2003 +KE4KDB,EM55,,,,,,2003 +KE4MKW,EM84DJ,,,,,,2003 +KE4VUN,EM67MS,,,,,,2003 +KE4YH,EL88OA,,,Stew,,,01/01 +KE4YYD,EL97RV,,,David,,,09/01 +KE5CO,EL29,,,,,,2003 +KE5ML,EM15,,,,,,2003 +KE6NDG,CN90QJ,,,Jim,,,2003 +KE6PT,CM88UE,,,,,,2003 +KE7CX,CN85LJ,,,,,,2003 +KE7NR,DM33WM,EME,,,,,12/04 +KE7NS,DN41AF,,,Mark,,,01/02 +KE7OI,DN13SU,EME,,Dan,,,01/01 +KE7V,CN88JB,,,John,,,2004 +KF0AU,EN31HI,,,,,,2003 +KF0CK,EM38JC,,,,,,2003 +KF0DS,DM41,,,,,,2003 +KF0FE,EN41,,,,,,2003 +KF0M,EM17HO,EME,,John,,,01/01 +KF0OA,DM79,,,,,,2003 +KF0Q,EN44EA,,,,,,2003 +KF4HOU,EM86VE,,,,,,2003 +KF4JU,EL87,,,,,,2003 +KF5AL,EM13,,,,,,2003 +KF5IU,EM31WR,,,,,,2003 +KF5PE,EM12,,,,,,2003 +KF6BXH,CM87VQ,,,,,,2003 +KF6HQC,DM14ED,,,,,,2003 +KF7CN,DN16LV,,,Kevin,,,01/01 +KF7IS,DN41AC,,,Jim,,,2004 +KF7VY,DN17IQ,,,,,,2003 +KF8QL,EN72,,,,,,2003 +KF9CY,EM59,,,,,,2003 +KF9YR,EN54,,,George,,144: 170W 13B2,01/97 +KG0MW,EN13,,,Chad,,,02/01 +KG0SV,DM79,,,,,,2003 +KG4BMH,EM76JK,,,Jason,,144: 1000 Watts sp144vdg GasFet 40 Element,05/02 +KG4CHX,EM95LL,,,,,,2003 +KG4FET,EM90FH,,,Sandor,,,07/01 +KG4KAK,EL96VG,,,Leo,,,2005 +KG4MLA,EL88OA,,,Joe,,,2003 +KG5RK,EM12,,,,,,2003 +KG5SF,EM44,,,,,,2003 +KG5UN,EM02,,,,,,2003 +KG6DX,QK23KL,EME,,,,,01/05 +KG6ENA,DM04DK,,,,,,2003 +KG7CN,DN23BF,,,,,,2003 +KG7FU,CN83KA,,,James S.,,144: 2x11el 1KW.190.240,01/01 +KH7K,AL08UJ,,,,,,2003 +KI0LE,EM36US,EME,,Bryce,,,12/04 +KI4BYV,FM15CX,,,John,,,2004 +KI4M,EM95AQ,,,Shane,,144: 800W M2 18XXX,01/01 +KI6FF,DM13AR,,,,,,2003 +KI7JA,CN85RL,,,Bruce,,,2004 +KI7WB,DN62,,,Ed,,144: 200W 10el,01/01 +KJ5EY,DM65XA,,,,,,2003 +KJ5Q,EM15,,,,,,2003 +KJ7A,DM03,EME,,Chip,,432: FT-817 8 x 25 ele,11/00 +KJ7F,DN13VO,EME,,,,,2004 +KJ7OG,DM42MH,EME,,,,,2003 +KJ9I,EN53QC,EME,,David,,,01/05 +KK4NO,EM92,,,,,,2003 +KK5WA,EM45,,,,,,2003 +KK7B,EN57RB,,,,,,2003 +KK7LK,CN88SS,,,,,,2003 +KK8O,EN80OR,,,Richard,,,2004 +KL6M,BP51DC,EME,,Mike,,9.2m dish,01/05 +KL7FB,BP51HO,EME,,,,,2003 +KL7HFQ,BP51,EME,,,,,2003 +KL7IZW,EM13SE,EME,,,,,12/04 +KL7X,BP51AE,EME,,,,,02/01 +KM0A,EM48UT,,,Mark,,,01/01 +KM0T,EN13VB,,,Mike,,,07/01 +KM1H,FN42,,,Carl,,144: 1-5KW 2x4218XL,01/01 +KM4ID,EM93WA,,,,,,2003 +KM5ES,EM25DI,,,John,,144: TR751 200W 30el,08/01 +KM5OL,EM13RB,,,,,,2003 +KM5PO,EM23WK,EME,,Jim ""Mac",,144: 13KW ERP,12/04 +KM6WC,CM97OP,,,Jim,,FT100,09/02 +KN4SM,FN16QT,,,Jerry,,144 : 1-5KW M2 5wl,01/01 +KN6DD,DM03,EME,,,,,2003 +KO0Z,EM48,,,,,,2003 +KO2R,EN52,,,,,,2003 +KO4FR,FM16UV,,,Robert,,,2005 +KO4QR,FM26,,,,,,1998 +KO7N,CN84IA,EME,,Richard,,432.050144.240,08/01 +KQ0Z,EM37,,,,,,2003 +KQ6JI,CM87UJ,,,,,,2003 +KQ6UH,DM14BC,,,,,,2003 +KR5E,EL29JN,,,,,,2003 +KR5V,EM13,EME,,,,,01/02 +KR5Vex,EM13SD,,,,,,2003 +KR7O,CM97,,,Robert,,HTX100 144: Trvt 1KW 2M5wl - 222: Trvt 450,01/01 +KR8L,DN43AL,,,,,,2003 +KS0F,EM48SL,,,Mike,,,01/97 +KT4HA,FM15BH,,,Joe,,,2003 +KT8O,EN34IV,,,Eric,,,2003 +KT8U,EN80OR,,,Reed,,,2003 +KU0KU,EM28QV,,,,,,2003 +KU3T,FN20,EME,,,,,04/98 +KU4F,EL99AF,EME,,,,,2003 +KU4R,EM86SK,EME,,Bob,,144: 2x18XXX 200W,01/01 +KU7Z,DN41AF,,,Mark,,,2004 +KV4EB,EM66FL,,,Willie,,144: 7el 14el,11/01 +KV6J,BK29AQ,,,,,,2003 +KW0A,EM48RI,,,Ken,,144: 1KW 24el,08/01 +KW0T,EM19WF,,,,,,2003 +KX7V,DM42,,,,,,2003 +KX9X,EN60AC,,,Sean,,IC706MKII - 50: 100W 3el - 144: 100W 11el,09/01 +KY7B,DM43,,,,,,2003 +KZ2S,FN20XD,,,,,,2003 +LA0BY,JO59FW,,,Stefan,,144: 180W 9el - /p JO59ix: 144: 180W 2x9el,10/01 +LA0FX,JP40LM,,,,,,11/95 +LA1BEA,JO29XB,,,,,,1991 +LA1K,JP53EK,EME,,OP: LA8UGA Asgeir,,144: 2x4CX250b MGF1402 preamp 4x17el1000lp,01/95 +LA1KHA,JO49SE,,,kjell,,,1993 +LA1TV,JO49TQ,,,,,,01/04 +LA2AB,JO59FV,EME,,Clubstation,,,07/02 +LA2PHA,JO38IB,,,"Stein",,144: 100W 10el,07/02 +LA2RZ,JP20ON,,,Dave,,144: 160W 17el,05/02 +LA2YMA,JP32LK,,,,,144: 40W 9el,02/04 +LA3BO,JO59CD,,,Svein,,,04/04 +LA3EU,JP32BG,,,per,,,1993 +LA3WU,JP20QH,EME,,ingebrigt,,,1993 +LA4DL,JP32EL,,,,,,03/04 +LA4XGA,JP33VC,,,Geir,,144: 17el 1000W or 150W117 DTR 3000lpm,11/04 +LA4YGA,JO48AE,,,Jerzy,,IC821 144: 150W 9el - 432: 2x17el 100WDTR,12/04 +LA5IH,JP20NK,,,,,,1993 +LA5KJA,JP50IV,,,Kjell,,.070,01/98 +LA5KO,JO59FH,,,Roy,,144: 300W 17el MGF1302165 1500lpm165,12/04 +LA5PH,JO49XA,,,,,,1992 +LA5SAA,JO29SE,,,michael,,.144,1993 +LA5TFA,JP99LQ,,,Aasmund ""Birger",,IC751-IC706-FT736r-FT225rd - 50: 2x5el HL166,02/02 +LA6CU,JP20QL,,,Per,,144: TS790e 150W 16el MGF1302.145 DTR 150,09/99 +LA6HL,JO28TW,EME,,Johannes,,,01/02 +LA6I,JP41,,,,,,1993 +LA6K,JP33VC,,,Clubstation,,,05/03 +LA6LU,JO28,,,,,DTR,07/96 +LA6MV,JO59FJ,,,Helge,,,08/02 +LA6QBA,JP61BJ,,,Frans,,50: 100W 2x5el - 144: 600W 4x11el1500lpm,07/04 +LA6VBA,JO48,EME,,tarald,,,1993 +LA7DFA,JP53,EME,,Per-Einar,,111 DTR,10/03 +LA7KK,JP50,EME,,p.,,,1993 +LA8AE,JO59CC,EME,,ote,,,1994 +LA8AJA,JP50HQ,,,Andreas,,only SSB-MS,01/99 +LA8AK,JO38XC,,,Jan Martin,,144: 200W 2x9el BFT66DTR,08/00 +LA8G,JP53EJ,,,,,,01/05 +LA8GKA,JO59FS,,,Rune,,,12/03 +LA8KV,JP52QQ,EME,,Kjetil,,DTR,03/04 +LA8LF,JO59BR,EME,,Anders,,,01/05 +LA8OW,JP50NC,,,Arvid,,3000lpm,05/02 +LA9BM,JP40CM,,,l.,,,03/98 +LA9DL,JO59KE,EME,,,,,04/04 +LA9IY,JP53,,,,,,2003 +LA9NEA,JO59DX,EME,,Viggo Magnus,,144: 4x 19el K1FO 1-5KW,02/05 +LB7FA,JO59CR,,,,,,08/04 +LC1OCT,JP32,,,,,,06/03 +LC1PAT,JP78,,,,,,2003 +LU4HO,FF78RA,,,,,,2003 +LU6DW,GF05SF,EME,,,,,2003 +LU6KK,FG73ie,EME,, +LU7DZ,FF78RA,EME,,Eduardo van,,144: 1KW 4xDJ9BV,04/00 +LU8EDR,GF05TF,EME,,Dany,,,11/02 +LU9AWH,GM04SO,,,Edgardo,,,2003 +LX1DB,JN29,,,Willy,,,07/99 +LX1GR,JN39,,,gilbert,,,1993 +LX2DX,JN29WO,,,Jean,,,10/02 +LX2SM,JN39,,,,,,07/04 +LY2AAM,KO06VB,EME,,,,183383,05/03 +LY2BAW,KO25KA,,,Tadas,,FT-736R+home made PA - 144: 24el 2M8WL M2 - 4,05/03 +LY2BIL,KO24PQ,,,Rytis,,144: FT736r 30el 1KW188 DTR 3000lpm188,08/02 +LY2BUU,KO15XH,,,,,,04/04 +LY2BW,KO24,,,Algis,,,1/95 +LY2CI,KO14WV,,,Raimundas ""Ray",,TS-790A- 144: 150W 11el - 432: 25el yagi - 1,08/03 +LY2FE,KO05NQ,,,Vytas,,144: FT736r 300W 13elMSDSP,10/02 +LY2FR,KO15VR,,,Paulius,,,07/04 +LY2GC,KO25KA,EME,,Giedrius,,,10/04 +LY2MW,KO24PS,,,Remigijus (Remi),,IC746 + PAs 50: 100W 6el - 144: 100Watt 1,08/04 +LY2SA,KO14LL,,,Vidas,,144: IC821H 300W 16el MGF1502 - 432: 175W,01/04 +LY2WR,KO24OQ,,,Clubstation,,144: FT736r 11el 600W - 432: 800W 24el - 1,01/00 +LY3BF,KO24OR,,,Arvydas,,,01/96 +LY3GM,KO14LL,,,,,,12/97 +LY8X,KO24PQ,,,OP LY2MW,,,08/99 +LZ1AG,KN22ID,EME,,Angel,,144: 14el 100W,12/99 +LZ1BB,KN12SS,,,Harry,,,08/04 +LZ1DP,KN22TR,EME,,Christo,,144: 4x5 WL DJ9BV cross+MGF1302 FT-736R PA 1,01/05 +LZ1DX,KN22,,,net,,,1993 +LZ1JH,KN32FR,,,Ruben,,,06/99 +LZ1KDP,KN12SP,EME,,OP LZ2HM,,.172 1200lpm,01/98 +LZ1KDZ,KN32,EME,,radio,,,1993 +LZ1KG,KN31CS,,,Dimitar,,50: 4el transv. 10W - 144: 2x16 F9FT IC275e,09/03 +LZ1KJ,KN31CS,,,Ivan,,50: FT987 4el 15W - 144: FT987 250W 2x8el G,09/03 +LZ1KQ,KN22TK,,,Veso (OP LZ1KWT),,,12/96 +LZ1KRB,KN32,,,radio,,,1993 +LZ1KSN,KN32SL,,,,,,1993 +LZ1KSW,KN31CS,,,Clubstation,,,12/95 +LZ1KU,KN32,,,s.,,,1993 +LZ1KWT,KN22TK,,,Clubstation,,144: FT736 1KW 2x16el F9FT GaAsFet 3SK129r,11/03 +LZ1NO,KN12,,,,,,12/01 +LZ1QI,KN12,,,Bebko,,,11/01 +LZ1QM,KN12,,,s.,,,1993 +LZ1R,KN42AA,,,,,,1993 +LZ1UB,KN22TK,,,,,,1994 +LZ1UK,KN22ID,,,Savko ""Savi",,144: 60W 8el Quagi,11/03 +LZ1V,KN12QQ,,,,,,1990 +LZ1ZP,KN22ID,,,George,,144: 150W 14el DJ9BV1000lpm,05/03 +LZ1ZX,KN32IO,,,mitko,,,12/99 +LZ2AR,KN13SF,EME,,boris,,,1994 +LZ2FO,KN13KX,,,Shecko,,144: 500W 15el 9BV.138 2000lpm,07/04 +LZ2FR,KN13IU,,,,,,12/98 +LZ2HM,KN12QP,EME,,Andre ""Andy",,144: FT847 17el yagi172 1200lpm,07/03 +LZ2HV,KN23UB,,,Christo,,144: 600W 12el Quad.145 2000lpm,12/98 +LZ2JF,KN23,,,n.,,,1993 +LZ2KRU,KN33FL,,,Clubstation,,144: 500W 17el.191 1000lpm,08/97 +LZ2KZ,KN33FC,,,Zlatko,,144: 15el 100W,12/01 +LZ2PP,KN33,,,v.,,,1993 +LZ2US,KN13RJ,EME,,"Marko"" Nikolov,,144: 4x KLM17LBX 2x 4CX800A 2KW FSC11LF.,08/00 +LZ2UU,KN12QP,,,Jordan (Dany),,.172 1200,08/96 +LZ3BD,KN12QQ,,,Bogdan,,432: 250W 32el GaasFet2000lpm.325,12/99 +LZ3CQ,KN12PQ,,,,,,01/03 +LZ3GM,KN32RL,,,Ivan,,144: IC735 20W 13elBVO MGF1302.148.300,05/03 +LZ3YH,KN22,,,Dora,,,12/95 +LZ5GM,KN32QL,,,Iilian,,144: IC-720 50W 13eleFT MGF1302292,04/03 +LZ5N,KN21JX,,,,,,1995 +LZ5UV,KN12PR,,,Evengi,,144: FT847 IC271 4cx250 PA 17el DJ9BV.174,11/02 +LZ5Z,KN12PR,,,LZ1JK- LZ2HM- LZ5UV,,144: 2x15el 1KW,12/99 +LZ6T,KN22IS,,,,,,12/99 +LZ7A,KN43HL,,,,,,1994 +LZ7P,KN22,,,,,,12/96 +LZ7Y,KN41AX,,,OP LZ3GM,,DTR,08/99 +LZ9M,KN32RL,,,OP: LZ3GM,,,12/03 +LZ9W,KN12MO,,,LZ Contest Team,,IC-746 FT-847,01/05 +M0BPQ,IO91WP,,,Steve,,50: 400W 7el 144: 2x5el 400W 432: 2x21el,11/04 +M0CQZ,IN69UW,,,Ops DH5FS- DH0LS...,,.188,09/00 +M0CTP,IO93,,,,,,03/02 +M0EME,IO93GF,EME,,Paul,,FT847 4x FO20 100W,01/05 +M0VHF,IO82VF,,,Mike,,FT847 JST245 3CX800 8877 - 50: 5el - 144:,10/02 +M1DRK,IO93US,,,Andy,,50: TS60 5el 90W130-150,01/02 +M1GSM,IO94BU,,,Stuart,,144: 150W 8elMSDSP,08/03 +M5FUN,JO00DX,,,Jonathan ""Jono",,144: TR751E 100W 12el225 only SSB-MS310,03/04 +M5MUF,IO92JP,,,Mike,,IC202 IC706 various transverters,09/03 +MI0AYR,IO64VQ,,,Paul,,144: TR9130 150W 19el,02/04 +MM0BQI,IO85KX,,,Jim,,50: 100W 5el - 144: 13el.045.345,03/00 +MM0CCC,IO85MW,,,John,,144: FT1000MP TVVF144A 17el 100W,05/04 +MM0CEZ,IO75XU,,,Peter,,IC910 IC775DSP Transverter,03/04 +MM0DQP,IO88KI,,,Erik,,100W,05/04 +MM0KOS,IO85CR,,,Chris,,ICOM 290D MK2,05/04 +MM1BXF,IO76PA,,,,,,01/03 +MM5AJW,IO88KI,,,Don,,,09/04 +MM5DWW,IO89ID,,,David,,KENWOOD TR751/TS690 100W 11el,04/04 +MS0FNR,IO88KK,,,Erik,,,12/04 +N0AB,EM28,,,,,,2003 +N0AE,EN51,,,,,,2003 +N0AJU,EN11,,,,,,2003 +N0AKC,EN44GU,,,Charles,,144: 1-2KW 17el - 222: 350W 16el,01/01 +N0ATV,EN34JX,,,,,,2003 +N0BTN,EN21,,,,,,2003 +N0CIH,EN42,,,,,,2003 +N0CKK,EN34,,,,,,2003 +N0DAG,EM29QF,,,,,,2003 +N0DQS,EN22GD,,,Gene,,,07/01 +N0DY,EN42FA,,,,,,2003 +N0EC,DN70LF,,,Ron,,50: 1KW - 144: 1-5KW - 222: 120W - 432: 1KW -,01/01 +N0ECI,EM37,,,,,,2003 +N0EKT,EN21,,,,,,2003 +N0EOQ,EM24,,,,,,2003 +N0FFO,EM17,,,,,,2003 +N0FQW,EM39,,,,,,2003 +N0GPH,EM48,,,,,,2003 +N0GXA,EN13QH,,,Kevin,,144: 1KW preamp 18el,1998 +N0GXN,EM48,,,,,,2003 +N0HJZ,EN34FV,,,Rich,,144: TS700S 200W preamp 12el,01/01 +N0HKT,EM17,,,,,,2003 +N0HZ,EN34,,,,,,2003 +N0ICV,EN52XA,,,TONY,,,2004 +N0IDT,EN10,,,,,,2003 +N0IS,EM48,,,,,,2003 +N0IT,EM48RN,,,Dave,,144: 170W,01/01 +N0JCF,EN35,,,,,,2003 +N0JEQ,EM27,,,,,,2003 +N0JK,EM17,,,,,,2003 +N0KE,DM69,,,,,,2003 +N0KEV,EM17,,,,,,2003 +N0KIS,EN10QT,,,,,,2003 +N0KM,DM67VR,,,Dave,,,01/97 +N0KN,EM28,,,,,,2003 +N0KQY,DM98GK,EME,,Gary,,144: 15/19dbd antenna 1KW,02/01 +N0LIK,EM48,,,,,,2003 +N0LL,EM09,,,Larry,,,01/01 +N0LNO,EN42,,,,,,2003 +N0LRJ,DM78,,,,,,2003 +N0NAS,EN35,,,,,,2003 +N0NEG,EM29,,,,,,2003 +N0NHS,DN70LF,,,,,,2003 +N0OIB,EN35,,,,,,2003 +N0OYQ,EN25,,,,,,2003 +N0PB,EM39WO,,,Phil,,,11/01 +N0PJU,EN41,,,,,,2003 +N0POH,DM79OP,,,Wayne,,,01/01 +N0QBF,EM48SR,,,,,,2003 +N0REN,EN34,,,,,,2003 +N0RHL,EN10RT,,,,,,2003 +N0SBU,EN35,,,,,,2003 +N0SHR,EN26,,,,,,2003 +N0SRQ,EN18,,,,,,2003 +N0SWV,DM79,,,Jesse J.,,144: 170W 2x16el - 432: 35W 2x18el - 1296: 60,05/98 +N0TOU,EM29,,,,,,2003 +N0UGY,DM79,,,,,,2003 +N0UK,EN34JV,,,Chris,,50: 10W KLM661 - 144: TS930/DEM Tvtr 300W K1F,07/01 +N0US,EN10,,,,,,2003 +N0UU,EM18,,,,,,2003 +N0VSB,DM79RJ,,,Brian,,50: 1KW 7el - 144: 1.5KW 18el MGF- 222: 200W,01/02 +N0WJY,EN10QT,,,,,,2003 +N0WVU,DM79HV,,,,,,2003 +N0WX,EN34,,,,,,2003 +N0XKS,EM29,,,,,,2003 +N0XPI,EM29,,,,,,2003 +N0YGM,DM78OV,,,,,,2003 +N0YNP,DN81CW,,,,,,2003 +N0ZEB,DM79,,,,,,2003 +N0ZKK,EM29,,,,,,2003 +N1BUG,FN55MF,EME,,Paul,,50: 400W 5el 144: 1500W 20el Yagi 222: 500W,11/04 +N1CPE,FN42QH,,,,,,2003 +N1EKV,FN42JK,,,,,,2003 +N1GMV,FM05TU,,,John,,,2004 +N1GOD,FN41VQ,,,Lou,,,2003 +N1KTM,FN41SR,,,Clint,,144: 1kw- 2x2M9,01/97 +N1LDY,FN41JR,,,Tony,,IC-746 IC-910 DEMI-222 DEMI-903,01/04 +N1NCO,FN42GL,,,John,,,2003 +N1RWY,FN54NO,,,Jason,,50: 100W 3el CC - 144: 800W 18el - 222: 350W,01/01 +N1RZ,FN44EI,,,Tim,,.090,07/01 +N1SZ,DM79NP,,,James,,,2003 +N1VQR,FN42JJ,,,,,,2003 +N2CEI,FN20,,,,,,2003 +N2FKF,FN30BR,,,Bill,,,2004 +N2HLT,FN12LN,EME,,,,,2003 +N2IQ,FN13TD,EME,,,,,2003 +N2IQU,FN13,,,,,,2003 +N2JMH,FN13AF,,,James,,,2003 +N2JQR,FN13,,,Jeff,,50: 500W 5el,01/01 +N2JR,FM18CP,,,Richard,,50: 100W 5el,09/01 +N2KW,FN03XE,,,,,,2003 +N2MB,FN30CO,,,Barry,,,2003 +N2MCY,FN30AR,,,Ray,,,2003 +N2MKT,FN13LK,,,Jeff,,,2003 +N2MSS,FN31AA,,,,,,2003 +N2NEP,FN13EB,,,,,,2003 +N2NZI,FN32,,,,,,2003 +N2OLA,FN12MM,,,,,,2003 +N2OTO,FN30CR,,,Rupert,,144: TS850 LT2SMKII 200W 4el,01/01 +N2PC,DM78QX,,,,,,2003 +N2UO,FN20QF,EME,,,,,2003 +N2VR,FN12SK,EME,,Mike,,144: 4x13B2,08/01 +N2WK,FN03XE,EME,,Wayne F.,,144: 1-5kw 4x2.2 wl full elv. MGF1302.111,10/00 +N2WLS,FN02RQ,,,,,,2003 +N2XK,FN20RF,,,Fred,,,2003 +N3AHF,FN20SF,,,,,,2003 +N3AJX,EN71KC,,,,,,2003 +N3FA,FN21,EME,,Bob,,144: LT2S 8877 700W 4x12el M2 - 432: FT736 SP,10/99 +N3FZ,EN90xh,EME,, +N3JNP,EN91,,,,,,2003 +N3KKM,EM28,,,,,,2003 +N3OPM,FM19PH,,,Daniel F.,,,01/01 +N3RN,FN11WH,,,Bob,,144: 500W 16el KLM,07/01 +N3WT,FM19EJ,,,John,,,2004 +N3WXW,FN20CE,,,,,,2003 +N3XI,EN90XJ,,,Frank,,,2003 +N3YGA,FN20BI,,,Craig,,50: 160W 4el - 144: 170W 14el,1998 +N4CAG,EM86PI,,,,,,2003 +N4EQT,EM77,,,,,,2003 +N4FRE,EL06LL,,,,,,2003 +N4GJV,EM95PS,EME,,,,,89 +N4GKO,EM65LO,,,Bryn,,144: FT736r 350W 2M18XXX,01/01 +N4HY,FN20RG,,,Bob,,,2004 +N4IP,EM73WV,,,,,,2003 +N4IPB,EM66,,,,,,2003 +N4IS,EL96UB,,,Jose,,FT1000MP+Trsv 144: 350W 18el M2.120.200,06/01 +N4KWX,FM08WF,,,Ray,,,01/97 +N4KZ,EM77GT,,,Dave,,,09/01 +N4LXB,EM83VL,,,Paul,,,2003 +N4MW,FM17KN,EME,,,,,2003 +N4OYS,EM65,,,,,,2003 +N4PZ,EN52,EME,,,,,04/97 +N4SC,EN72,,,Roman,,,11/04 +N4TWX,EL89TW,,,Terry,,50: 5el 75W - 144: 15el 150W Preamp,01/01 +N4UK,EM84XP,EME,,Ken,,144: 1KW 13/13el - 222: 750W 23elM2 - 432: 75,01/97 +N4WI,FM14IL,,,Fred,,,2004 +N4XD,FM05,,,,,144: TS700SP 160W,01/01 +N4ZKR,EM65,,,,,,2003 +N4ZRW,EM17KN,,,,,,2003 +N5AF,EM20,,,,,,2003 +N5AHD,EL17,,,,,,2003 +N5AMA,EL29,,,,,,2003 +N5ARS,EM26,,,,,,2003 +N5AXJ,EM86,,,,,,2003 +N5BA,EL29FX,,,Brian,,144: 1500W 4x5wl,08/03 +N5BHO,EM31,,,,,,2003 +N5BHX,EL09,,,,,,2003 +N5BHZ,EM22,,,,,,2003 +N5BLZ,EL29EW,EME,,Ed,,144: 4 X 28 XPOL 8877,11/02 +N5DL,EM36,,,,,,2003 +N5EM,EL29,,,,,,2003 +N5FV,EM03,,,,,,2003 +N5HHS,EL29,,,,,,2003 +N5IS,DM96,,,,,,2003 +N5JM,EL49,,,,,,2003 +N5KDA,EM41HM,,,Gary,,,09/01 +N5KWB,EM32QB,,,,,,2003 +N5MP,EM12,,,,,,2003 +N5MWS,EM13,,,,,,2003 +N5MYH,EM32,,,,,,2003 +N5NDV,EM15,,,,,,2003 +N5NSH,EM14,,,,,,2003 +N5OCP,EM15,,,,,,2003 +N5OSK,EM25FI,,,Jerry,,,10/02 +N5QGH,EM13QC,,,,,,2003 +N5QS,EM45,,,,,,2003 +N5QT,EM45,,,,,,2003 +N5RZ,DM81XW,,,,,,2003 +N5SAL,EM28,,,,,,2003 +N5SIX,EM42XI,EME,,Bruce,,,02/05 +N5TML,EM14,,,,,,2003 +N5TQB,EM31PJ,,,,,,2003 +N5TX,EL09,,,,,,2003 +N5WS,EL09RU,,,W. Russ,,,01/01 +N5XCX,EL09,,,,,,2003 +N5XU,EM10DG,,,Kenneth,,,01/01 +N5YLS,EM54,,,,,,2003 +N5YSM,EM15,,,,,,2003 +N5ZLU,DM95,,,,,,2003 +N5ZWO,EM32,,,,,,2003 +N6CL,EM26,,,,,,2003 +N6CV,DM04UF,,,,,,2003 +N6DHN,CM98,,,Frank,,50: 150W 4el - 144: 150W 22el - 432: 100W,1998 +N6ENU,DM04,,,John L.,,144: 270W 13el Yagi - 50: 100W 7el,01/01 +N6HV,DM04,,,,,,2003 +N6KBX,CM98,,,Don,,50: 400W 2x5el - 144: 350W 4x17el - 432: 17,01/97 +N6KMR,CM97MO,,,Jim,,,2003 +N6NB,DM05,,,,,,2003 +N6OVP,CM87,EME,,,,,2003 +N6PYI,DM05KJ,,,,,,2003 +N6RA,CM87SR,,,Thomas,,,2003 +N6RJM,DM14CP,,,Pat,,50: 1KW 9el - 144: 1-5KW 4x18el - 222: 350W,01/01 +N6RMJ,DM14CP,,,,,,2003 +N6RPM,DM04UA,,,,,,2003 +N6RZ,CM87WB,,,Dave,,144: 1KW 17B2,01/01 +N6SPP,CM87WQ,,,,,,2003 +N6TQS,CM87UU,,,,,,2003 +N6TX,FN11LH,EME,,,,,2003 +N6VHF,DM13,,,Neil,,,01/01 +N6YM,CM88XF,,,Ed,,,01/01 +N6ZE,DM04NE,EME,,Peter S. ""Pete",,IC756 PRO II 50: 100W 5el - 144: 8930Amp 2M5,08/03 +N7AM,CN87QN,EME,,,,,89 +N7AMA,DM33,,,,,,2003 +N7ART,CN87,EME,,,,,89 +N7AVK,CN84,,,,,,2003 +N7BSN,CN87QQ,,,,,,2003 +N7CZ,DN47HM,,,Bob,,FT736 IC706,01/02 +N7DMA,DM42NL,,,Karl,,,2003 +N7EMD,DM26JE,,,,,,2003 +N7EY,CN96QO,,,Sean,,,2003 +N7IJ,DN44GB,,,,,,2003 +N7LQ,DN01FA,EME,,Shawn,,432: 1.5KW 4 x FO-25's,06/00 +N7MWV,CN87VQ,,,John,,144: 250W CC3219only SSB-MS,01/01 +N7QJP,DM33VM,,,Stu,,,1998 +N7SKT,DM33SN,,,Bob,,,01/01 +N7WNX,CN83OW,EME,,,,,12/04 +N7WS,DM42JH,,,Wes,,144: 8877 17el GaAs,01/01 +N7YAG,CN85,,,Arnold,,144: FT736r 300W 11el KLM,1998 +N7YAP,DN07HJ,,,Gregory E.,,.125,08/01 +N8AIA,EN82KL,,,,,,2003 +N8ASB,EM89,,,,,,2003 +N8AXA,EM79UP,EME,,,,,2003 +N8BSG,EN82,,,,,,2003 +N8BXP,EN81,,,,,,2003 +N8CGY,EN74OH,,,Ken,,,01/01 +N8CQ,FM05OT,EME,,,,,2004 +N8DJB,EN81FJ,EME,,,,,2003 +N8ITP,EN81XF,,,,,,2003 +N8JMK,EN90,,,,,,2003 +N8KWX,EN62AD,,,,,,2003 +N8LCU,EN72,,,,,,2003 +N8NPX,EM79XR,,,,,,2003 +N8OC,EN83AO,EME,,Dave,,50: 100Watts 6ele KMA - 144: 1500Watts 17ele,08/03 +N8PUM,EN66DL,,,Branton T.,,144: 200W 2x17B2,1998 +N8PVT,EN64,,,,,,2003 +N8QOD,EN79,,,,,,2003 +N8TDL,EN90BN,,,Greg,,,2003 +N8VES,EM79VT,,,,,,2003 +N8ZAT,EM79,EME,,,,,2000 +N8ZAW,EM79,,,,,,2003 +N8ZM,EM79,,,,,,2003 +N9AB,EN52XG,EME,,,,,01/05 +N9AQ,EN51,,,,,,2003 +N9AU,EN62BX,,,,,,2003 +N9AZC,EM68,,,,,,2003 +N9AZZ,EM57MV,,,,,,2003 +N9BD,EM28,,,,,,2003 +N9BJG,EM57,,,,,,2003 +N9BMH,EN62,,,,,,2003 +N9CIQ,EN44,,,Jay,,,01/01 +N9DCA,EN71GG,,,,,,2003 +N9DG,EN53BJ,,,,,,2003 +N9EGT,EN70,EME,,,,,02/05 +N9EMC,EN52UI,,,,,,2003 +N9ESH,EN52XB,,,,,,2003 +N9FH,EN63,,,,,,2003 +N9FTC,EL79EQ,,,,,,2003 +N9GVF,EN62,,,,,,2003 +N9HF,EN52,,,,,,2003 +N9IJ,EN52XI,,,Leonard,,,2003 +N9JIM,CM87XI,,,Jim,,50: 9el 150W - 144: 16el 700W - 432: 21el 50W,11/03 +N9KC,EN52,EME,,,,,2003 +N9LAG,EM57,,,,,,2003 +N9LHD,EN62BA,,,,,,2003 +N9LR,EN50DU,EME,,Larry,,,02/05 +N9MEH,EN44,,,,,,2003 +N9MSG,EN50ES,,,John,,,2003 +N9MYK,EN-53W,,,,,,2003 +N9NHC,EN61DU,,,,,,2003 +N9NJY,EM58AM,,,,,,2003 +N9NOQ,EN51,,,,,,2003 +N9OO,EN62,,,,,,2003 +N9PXI,EN61CU,,,,,,2003 +N9RLA,EM78CQ,,,,,,2003 +N9ROX,EN54,,,,,,2003 +N9SBV,EN61UQ,,,,,,2003 +N9TZL,EN52SH,,,,,,2003 +N9UDO,EN53DL,,,,,,2003 +N9UUR,EN63,,,,,,2003 +N9VSV,EN63,,,,,,2003 +N9WWR,EN62CS,,,John,,,2003 +N9XG,EN60WL,EME,,,,144: 4x 17el 1KW,01/05 +N9XIX,EN53,,,,,,2003 +N9YKE,EN62,,,,,,2003 +NA0IA,EN42FB,,,,,,2003 +NA3T,FM05LW,EME,,Joe,,,10/97 +NA4AL,EM63OF,,,Bryan,,IC746 FT817,08/01 +NA4M,EM10DP,,,Phil,,,2003 +NA4N,FM18,EME,,,,,2003 +NA6E,CN82,EME,,,,,2003 +NA7D,DM43AS,,,,,,2003 +NB2V,FN30,,,,,,2003 +NC1I,FN32OB,EME,,,,,01/05 +NC1T,FN32,,,,,,2003 +ND2X,EL09,,,,,,2003 +NE0P,EM04,,,John,,,09/01 +NE1H,EM84AC,,,,,,2003 +NE7O,FN53HX,,,chet,,,2005 +NE8I,EN82JM,,,,,,06/04 +NF0Q,EM48,,,,,,2003 +NF5B,EL29,,,,,,2003 +NF7P,DM09GH,EME,,,,,2003 +NG9R,EN40LA,,,,,,2003 +NI4Z,EL98HJ,,,,,,2003 +NI6G,DM06,,,,,,2003 +NJ0C,DM78,,,,,,2003 +NJ0U,EN71IB,EME,,,,2x 17el 500W,01/05 +NJ0X,EM29,,,,,,2003 +NJ2L,FN13,,,,,,2003 +NJ7A,DN30XP,,,Dave,,144: 170W 16LBX Preamp - 222: 120W 5wL,01/01 +NK5F,DM65,,,,,,2003 +NK7J,DM33,,,Bob,,,01/01 +NK8Q,FN20KL,,,Mark,,144: 170W 13el - 50: 7W 5el,01/01 +NL7F,BP64DV,EME,,,,,2003 +NL7Z,BP51EN,EME,,Kevin,,FT920,02/05 +NM1A,EL96VF,,,,,,2003 +NM5BB,DM65UV,,,,,,2003 +NM5X,EM26,,,,,,2003 +NM9H,EM59CD,,,,,,2003 +NN5DX,DM80NV,,,,,,2003 +NN6RF,CM87UW,,,,,,2003 +NN7J,CN85,,,Dan,,,01/05 +NN9K,EN41,,,Pete,,,1998 +NP4B,FK67,EME,,,,,2003 +NQ2O,FN13,EME,,WALTER G ""Wastl",,,05/01 +NR5A,DN84LC,,,,,,2003 +NR6E,CM88,,,,,,2003 +NS4W,EM76VC,,,Bert,,500: 1KW - 144: 1kw 2.5wl - 222: 400W - 432:,01/01 +NS7K,DN31XC,,,Richard,,,2004 +NS7N,CN87,,,,,,2003 +NT0V,EN08OC,,,,,,2003 +NT0Z,FN31,,,,,,2003 +NT4P,EM95KF,,,Scott,,,2004 +NU5O,EM55,,,,,,2003 +NU7Z,CN87RT,,,,,,1993 +NU8I,DM43AN,,,Alf,,144: IC706 1KW,01/99 +NV3Z,FM15,,,,,,2003 +NW0X,EM40,,,,,,2003 +NW7O,DM26,,,,,,2003 +NX2Q,FN20WV,,,Al,,,2003 +NX7U,DM43DI,,,,,,2003 +NX8M,EM79PE,,,Bob,,,01/01 +NY1E,FN43QP,,,,,,2003 +NZ5P,DM95,,,,,,2003 +OD5NJ,KM73TW,,,,,,2003 +OD5RAK,KM74WH,,,Clubstation,,50: 6el - 144: 17el+ PADTR,05/98 +OE1MSB,JN88DF,,,Michael,,,10/03 +OE1SOW,JN88FF,EME,,Othmar,,HF:100/600W 4el FD4 vertical- 50: 100W 5el -,09/03 +OE1XVC,JN88ED,,,OP OE3KLU,,144: 2x11el- 432: 2x21el gd Pwr.145.370,03/98 +OE3CEW,JN88,,,e.,,,1988 +OE3FVU,JN78VE,EME,,Franz,,144: 2x14el 5WL 1KW MGF1302 - 432 MHz 1x13W,09/03 +OE3HHB,JN87AQ,,,Harald,,FT847 50: 100W 5el - 144: 50W 17el GaAs - 432,07/99 +OE3JPC,JN87EW,EME,,Johannes,,144: 200W 2x15el CF300 - 432: 500W 4x24el (,08/02 +OE3JTB,JN78QN,,,,,144: 15el,03/04 +OE3MWS,JN88DC,,,Manfred (Fred),,50: 100W 7el - 144: TR751 1-2KW 2x17el MGF1,01/05 +OE3NFC,JN88,,,n.,,,1993 +OE3OBC,JN88,EME,,othmar,,,1994 +OE3OKS,JN87AR,,,Wolfgang,,,12/98 +OE3R,JN88FD,,,via OE3KLU,,.180.320,01/96 +OE3SJA,JN88GH,,,Johan,,,04/04 +OE3UP,JN87CT,EME,,hans peter,,,1993 +OE3XAC,JN88FD,,,via OE3KLU,,.180.320,11/96 +OE3XMU,JN78XD,,,Clubstation,,144: 150W 15el,06/02 +OE4KLU,JN87KS,,,Karl,,,01/96 +OE5EFM,JN78,EME,,wolfgang,,,1994 +OE5EYM,JN68SK,EME,,,,,08/98 +OE5FD,JN68SC,,,,,,2003 +OE5FDM,JN68SC,,,Daniel,,50: FT-847 5el-Yagi 100W - 144: FT-847 9el 10,08/02 +OE5JFL,JN68RL,EME,,hannes,,,1994 +OE5KE,JN78,,,Adolf,,,05/02 +OE5MPL,JN78CJ,EME,,Peter,,FT-847 - 50: 2xGI7BT 100W 5el 144: 2x,01/05 +OE5VHL,JN68SI,EME,,walter,,,1994 +OE5VRL,JN78DK,,,,,,01/97 +OE6AHD,JN76RS,,,Freddy,,,12/95 +OE6BMG,JN77JE,,,Manfred,,,07/00 +OE6IWG,JN77PK,EME,,A.Walter ""Walt",,144: GS35b 4x10el (2-2wl) MGF1302087 4000 D,01/05 +OE6JGD,JN77QC,,,Josef,,,12/95 +OE6KDG,JN77JF,,,,,,03/07 +OE6NLD,JN76SS,,,norbert,,,1993 +OE6XHF,JN76RS,EME,,clubstation,,,1994 +OE75SOW,JN88FF,EME,,Othmar,,50: IC736 100W 5el - 144: IC821H 300W 2x13el,03/01 +OE8CIQ,JN76FU,,,,,,08/02 +OE8HBQ,JN76KP,,,Harry,,,05/04 +OE8HWQ,JN76,,,helmut,,,03/00 +OE8OLK,JN76DM,,,Schoash,,144: FT817 30W 6el,07/04 +OE9ERC,JN47VL,EME,,Erich,,,02/05 +OE9HHV,JN47,EME,,hubert,,,1994 +OE9XXI,JN47UL,,,,,,2003 +OF8UV,KP34VJ,EME,,Markku,,144: Ft225RD 130W 2x14el BF981.122 DTR,11/97 +OG6MAZ,KP21IG,,,Hannu,,144: FT767GX 4CX350 200W 15el.147 DTR,01/00 +OG8HDL,KP34VJ,,,Tanja,,144: 130W 2x14el BF981.121.300,01/00 +OG8UV,KP34VJ,EME,,Markku,,144: FT225RD 130W 2x14el BF981.121 DTR.30,01/00 +OH0BT,KO09KW,,,,,,1992 +OH0JFB,JP90XI,,,Peter,,144: 2x17el 800W,04/04 +OH0LIZ,KO09KW,,,OP OH5YW- OH5LIZ,,144: 180W 2x23el.127 1500lpm DTR,05/98 +OH0N,KP00,,,OP: DK5DQ DJ2QV...,,,07/01 +OH0V,KP00,,,OP: DK5DQ DJ2QV...,,,07/01 +OH1AK,KP01TE,,,OP: OH1HJN,,,12/03 +OH1AYQ,KP12JB,,,,,,08/98 +OH1BAP,KP12AA,,,,,,1991 +OH1CF,KP00TC,,,,,,1994 +OH1FA,KP10PL,EME,,Kai,,,10/02 +OH1HSC,KP10CM,,,Olavi,,144: TR9130 60W MGF1302 17elonly SSB MS,01/01 +OH1JCS,KP10AE,EME,,Jojje,,144: 15el 20W,01/05 +OH1JJC,KP10DK,,,Matti,,,01/04 +OH1LEU,KP01UE,,,Tuomo,,50: 150W 8el,09/03 +OH1LSQ,KP03SD,,,Paul,,144: 100W ant-3WL,01/02 +OH1MDR,KP01VJ,,,Timo,,144: IC-706 100W 15el,01/04 +OH1QC,KP10MU,,,,,,1989 +OH1XT,KP01UK,,,Jari,,FT736r 50: 8el 150W - 144: 300W 2x15el MG,11/01 +OH1XTK,KP01UK,,,,,,2003 +OH1ZAA,KP01,,,jan,,,1995 +OH2AUK,KO19TX,,,jan anders,,,1994 +OH2AV,KP20JD,,,yussi,,,1994 +OH2AXH,KP20OK,EME,,OP: OH2AUE,,,08/00 +OH2BAP,KP20PP,EME,,jyrki,,.138,1993 +OH2BNH,KP20LG,EME,,Pasi,,,05/00 +OH2BYJ,KP20MG,,,Jari,,144: IC821h 4x15el3000lpm,07/00 +OH2DG,KP30CK,EME,,eino,,,1994 +OH2JRR,KP10WE,,,,,,10/03 +OH2KKP,KP20MH,,,Tuomas,,,11/95 +OH2LAK,KP10XL,,,Erik,,50: FT847 FT817.130,11/01 +OH2MFE,KP20JE,,,Markus,,IC-575H IC-275E 170W FT-817 100W FT-73,04/02 +OH2MOH,KP30CR,,,,,,05/04 +OH2MPH,KP20KD,,,Antti,,,01/04 +OH2NHP,KP20IF,,,Timo,,144: IC970E 3CX800 MGF1302 preamp 2x15elrx,01/01 +OH2NY,KP20CM,,,Juha,,144: IC202 RE035XB 320W Preamp 4x9el,04/03 +OH2PO,KP10XH,EME,,Matti,,,11/97 +OH2TI,KP20KE,EME,,Clubstation,,,01/01 +OH2Z,KP30CR,,,OP: OH1JJC,,,08/04 +OH3AWW,KP11VJ,EME,,Matti,,144: 150W 9el.137 2000lpm,09/04 +OH3BHL,KP10RR,,,Raimo ""Rami",,IC746+ACOM1000 144: 100W 4x5el - 50: 200W,08/03 +OH3BZY,KP10XP,,,,,,1992 +OH3EX,KP20JR,,,,,,1994 +OH3KLJ,KP21PI,,,Mika,,144: 15el 100WMSDSP,01/04 +OH3KLT,KP21PI,,,,,,12/01 +OH3LPW,KP11WK,EME,,ari,,,1994 +OH3NWQ,KP11WL,,,Vesa,,50: FT847 100W220 2000lpm,08/02 +OH3VJ,KP21,,,,,,1994 +OH3XR,KP11TH,,,Marko,,IC746,08/04 +OH4EA,KP32MG,,,Vesa,,144: FT225RD 4CX250b 2x19el MGF1302/ATF10136M,11/04 +OH4GGW,KP31PQ,,,Kimmo,,,12/04 +OH4HXK,KP21UM,,,Seppo,,,05/02 +OH5A,KP53NE,,,OP OH5LZY,,,09/99 +OH5AG,KP31,,,,,,02/98 +OH5HCJ,KP41EC,,,Matti,,,11/04 +OH5IY,KP30HV,EME,,Ilkka,,144: 1KW 4x15el - 432: 750W 8x21elDTR+ 3000l,12/03 +OH5KJQ,KP41JC,,,Matti,,FT847 144: 19el yagi 160W - 50: 4el 100WDTR,10/98 +OH5LID,KP41KL,,,Janne,,144: IC706 150W 2x19el120 2000 DTR.300,04/02 +OH5LIZ,KP30HW,,,OP OH5YW,,144: 180W- 2x23el.127 DTR,08/01 +OH5LK,KP30ON,EME,,Jussi,,144: 1KW 4x15el,04/04 +OH5YW,KP30FU,,,Kari,,,05/98 +OH6AA,KP03TC,,,Club OP OH6GDX,,144: 2x12el,06/03 +OH6AAO,KP14,,,,,,1993 +OH6AI,KP13MW,,,Clubstation,,only SSB-MS,11/00 +OH6AW,KP03,,,,,3000lpm,06/02 +OH6DD,KP22,EME,,jukka,,,1994 +OH6GDX,KP02QU,,,Patrik,,144: 60W 2x12el CueDee,08/03 +OH6HFX,KP14RA,,,Johannes,,FT847 400W 2x12el172224,02/03 +OH6JKW,KP02RN,,,Kurt,,FT847,01/05 +OH6JW,KP12AJ,EME,,Aulis,,FT847 IC7400 600WMSDSP DTR,09/03 +OH6KTL,KP02OJ,,,Lasse,,50: 6el 150W - 144: FT847+GI46B 4x15el 100WM,12/04 +OH6LRL,KP13,,,,,only SSB-MS,11/00 +OH6M,KP12KR,,,,,,06/04 +OH6MAZ,KP21IG,EME,,Hannu,,144: FT847 4CX350 250W 2x15el MGF1302155 3000,12/04 +OH6MPC,KP12AJ,,,Aulis,,FT847 50: 200W - 144: 2KW - 432: 250W4000lpm,01/02 +OH6MRD,KP12EP,,,,,,12/02 +OH6MSZ,KP21XU,,,,,,08/99 +OH6NDD,KP23VH,,,Taavi,,,1994 +OH6NVQ,KP13IP,EME,,tomas,,,01/97 +OH6PA,KP02PL,,,Ben,,,08/04 +OH6QU,KP03SD,,,Jari,,RX: FT-1000MP DB6NT transverter TR 144 H pre,07/04 +OH6UW,KP22WH,,,,,,01/05 +OH6XX,KP22VE,,,Juha,,144: FT1000MP LT2S 120W 15el MGF1302.147,11/01 +OH6YF,KP02VL,,,Harry,,50: FT-847 PA 7el - 144: FT-847 PA 4x12el300,03/04 +OH6ZZ,KP12BO,EME,,Juho ""Jussi",,TS790E,02/04 +OH7AXB,KP32WM,,,,,,11/02 +OH7EU,KP33MQ,,,Jorma,,,95 +OH7HXH,KP53HG,,,Kari,,144: 50W,04/04 +OH7LIX,KP43JQ,,,Raija,,only SSB-MS,09/95 +OH7MA,KP52EL,,,Dan,,144: 4 x 10el1000lpm,11/99 +OH7PI,KP32XG,EME,,Toivo,,,01/05 +OH7RJ,KP32TV,,,Pena,,,08/02 +OH7TE,KP20IE,,,Juhani ""Yussi",,50: 200W - 144: 4el 300W - 1296: 10W - 5600:,12/04 +OH7TX,KP32TR,,,Jorma,,144: FT847 50W 20el365,04/04 +OH7UV,KP33MQ,,,Markku,,.121 DTR.300,07/95 +OH8GEJ,KP25QC,,,,,,05/02 +OH8HDL,KP34VJ,,,Tanja,,144: 130W 2x14el BF981.121.300,08/99 +OH8K,KP44HE,EME,,Sotkamo Clubstation,,IC7400 gd power 15el 16el 37el loop147 50,05/04 +OH8LRB,KP24HQ,,,Tomi,,144: 200W 8el,11/04 +OH8MFH,KP34UG,,,Kari,,144: TR751A 15el 6WUonly SSB-MS,01/00 +OH8N,KP34VJ,,,OP DH3YAK- 8UV- 8HDL,,,12/98 +OH8NW,KP24SX,,,Kaar,,,1985 +OH8NXE,KP25SB,,,Antti,,144: TM255E Preamp 160W 2x14el,01/02 +OH8SW,KP22UP,,,Hannu,,,11/04 +OH8UV,KP34VJ,EME,,Markku,,144: FT225RD 350W 4CX250R 2x14el BF981121,12/03 +OH8VJ,KP22UN,,,Pentti,,,11/04 +OH9AB,KP46BI,,,Clubstation,,,1994 +OH9AEM,KN08AJ,,,,,,1993 +OH9MNO,KP46BI,,,,,,1991 +OH9MTE,KP46BI,,,Yussi,,,07/99 +OH9MTY,KP46BI,,,Erkki,,FT847 - 144: 700W 6x9el136 3000lpm MSDSP,06/04 +OH9NDD,KP26UM,,,Taavi,,FT847 144: 150W 4x15el preamp,08/03 +OH9NMS,KP36GA,EME,,,,,1994 +OH9O,KP12BO,EME,,Sotkamo Clubstation,,IC7400 gd power 15el 16el 37el loop147 50,05/04 +OH9SCL,KP46BI,EME,,Clubstation,,TR751/FT847 144: 6x9el LY 700W.136,06/01 +OI7UV,KP33MQ,,,Markku,,,12/95 +OI8UV,KP34VJ,EME,,Markku,,144: Ft225RD 130W 2x14el BF981.122 DTR,01/97 +OK1AXH,JO70UR,,,,,,01/97 +OK1CA,JO70GM,EME,,f.,,,1994 +OK1CDJ,JO70VA,,,Ondrej ""Ondra",,144: 250W 17el MGF1302.115 4000lpm.300,01/00 +OK1CT,JN69TR,,,Milos,,144: 250W 2x16el CF300 - 50: 20W 5el.139,05/00 +OK1DCF,JO80BJ,,,Lada,,,04/02 +OK1DDO,JO60JD,,,Jirka ""Jiri",,IC706- 144: 150W 7el- 50: 100W 5el1000lpm,06/02 +OK1DFC,JN79GW,EME,,Zdenek ""Zdeno",,144: 750W 18elM2 10m dish - 432: 750W 38elM2,01/05 +OK1DIG,JO60XJ,EME,,Daniel ""Dan",,144: 4x17el M2 GS35 1.5KW MGF1302177377,04/02 +OK1DKZ,JN69XP,,,Vlada,,144: IC275H 100W MGF1302 11el4000lpm MSDSP,11/01 +OK1DQA,JO60TC,,,,,,08/99 +OK1DRY,JN79OW,,,,,,07/02 +OK1DTC,JO60TO,,,Tony,,,08/03 +OK1DUO,JO80CA,,,Jaroslav ""Jarda",,HF: TS120S 500W 3el - 144: IC746 PA0MS ant,08/01 +OK1FAV,JO60CK,,,,,,01/97 +OK1FF,JN78GR,EME,,,,,1995 +OK1FFD,JO60CF,,,Vasek,,50: 5el QUAD- 144: 350W 10el Quagi,08/02 +OK1FID,JO80CH,,,Jiri,,144: Racom R2-CW 100Watts 13ele DL6WU050.30,08/01 +OK1FM,JN69QQ,,,Milan,,144: 250W 17el MGF1302DTR 3000lpm,11/02 +OK1FXX,JO70WL,,,Beda,,144: TS790E 2xGI7B 3KW 4x17el F9FT 0-4db NF -, +OK1FZA,JO70FC,,,,,,1992 +OK1HAG,JN79,,,,,,01/97 +OK1IBL,JO60CG,,,,,,1991 +OK1KEI,JO60JL,,,,,,01/97 +OK1KF,JO60TG,EME,,Vaclav,,TS790 FT847 144: 1KW 2x17el M2 or 4xKLM16LBX.,08/02 +OK1KHI,JO70ED,,,S.,,,05/02 +OK1KIR,JN79,EME,,clubstation,,,1994 +OK1KJB,JN79IO,,,Clubstation,,,08/99 +OK1KKH,JN79,,,,,,1993 +OK1KRQ,JN69QR,EME,,OP OK1MZM- OK1XST,,144: 400W 17el M2 CF300,10/99 +OK1KRY,JN69TR,,,Clubstation Rokycany,,50: 20W 5el - 144: 250W 2x16el CF300.139,05/00 +OK1KT,JO70WE,,,Vrata,,FT 847 - 50: 20W 5 el - 144: 600 W 15 el Cu,06/04 +OK1MAC,JN79IO,,,Jan,,,01/03 +OK1MDK,JN79PX,,,J.,,,08/02 +OK1MZM,JN69PR,,,Milos,,144: 300W 9el 360m asl,06/04 +OK1NH,JN69UH,,,,,144: 10el 20W,05/04 +OK1TEH,JO70FD,,,Matej,,144: FT847 100W 6el - 432: 50W 22el K1FO,11/04 +OK1UAK,JO70MB,,,Petr,,144: 100W 10el preamp160 4000 MSDSP.160,01/05 +OK1UGA,JO80DD,,,Clubstation,,IC821H 144: 100W 7el Quad - 432: DJ9BV Ant,12/03 +OK1UND,JO60XA,EME,,Petr,,TS515 FT221 144: 16el 100W Preamp,11/04 +OK1UWA,JN69QT,EME,,Josef,,1296: par 2.4m 180W 0-45db NF,08/00 +OK1VBN,JN78,,,,,,01/97 +OK1VEI,JO70UR,,,,,,01/97 +OK1VHF,JO70EB,,,Miloslav ""Milan",,144: 10ml M2 1200W - 432: 6m Tonna 600W - 129,01/04 +OK1VHH,JO70CK,,,,,144: 20W,04/02 +OK1VKC,JN79OW,,,Josef,,,05/02 +OK1VSC,JN79OW,,,Josef,,144: 100W 7el Quad,03/02 +OK1VT,JN79IX,,,,,,07/01 +OK1WCF,JO80BJ,,,Martin,,144: R2CW PA 100W 2x 16el F9FT300 / 370,04/04 +OK1WN,JN69LK,,,Standa,,144: 100W 16el CF300,10/01 +OK1XXT,JO70GA,,,Roman,,,04/02 +OK1YA,JN79IO,,,Premysl ""Mek",,144: 1000Watt 4x13ele4000lpm,10/01 +OK1YK,JN78GX,EME,,Jaromir ""Mira",,FT 847 144: 1kW 13el MGF1302 - 432: 1kW 5m,12/04 +OK2AB,JN89TI,,,,,,12/03 +OK2BON,JO70,,,,,,07/02 +OK2BRD,JN99ET,,,Jirka,,IC706MKIIG,08/03 +OK2BXE,JN89SJ,,,Draho,,144: FT847 100W 16el MGF1302 - 10368: 1.5W Di,07/01 +OK2DL,JN89AO,EME,,Mark,,,06/02 +OK2KET,JN89JN,,,,,,03/01 +OK2KUB,JN89,,,,,,1993 +OK2KZR,JN89BO,EME,,rudi,,,1993 +OK2MWR,JN99HQ,,,Alex,,144: IC706 100W 14el PBM1200lpm,08/00 +OK2PM,JN99AO,,,Karel,,IC706 FT736,08/03 +OK2PMG,JN89SJ,,,Milos,,144: FT847 100W 16el MGF1302 - 10368: 1.5W Di,07/01 +OK2PMS,JN89WW,,,Jirka,,BMT226 13el F9FT,01/03 +OK2PMX,JN88IW,,,Petr,,IC706,04/04 +OK2POI,JN99bl,EME,, +OK2PTC,JN89MM,,,,,,08/04 +OK2PWY,JN89IW,,,,,,11/04 +OK2PZW,JN89HI,,,,,,2003 +OK2QI,JO80OC,,,,,,1995 +OK2SBL,JN99HQ,,,Josef,,1200lpm,08/00 +OK2SGY,JN89SS,,,,,,08/96 +OK2SLC,JN89ED,,,Slavek,,,03/04 +OK2UGG,JN89EN,,,Jirka,,,12/01 +OK2VMD,JN89HI,,,,,,1994 +OK2WO,JN89IH,,,,,,04/04 +OK2XPJ,JN89,,,,,,04/02 +OK2YT,JN88IW,,,Radek,,,04/04 +OK2ZAW,JN89BI,EME,,Jan,,,08/04 +OK2ZW,JN89HI,,,Zdeno,,,08/02 +OK2ZZ,JN89DF,,,Rudi,,,08/96 +OK5ACR,JO60NX,,,Vita,,,05/00 +OK8BXF,JO70VA,,,Gavin,,,06/04 +OL2O,JN79IO,,,,,4000lpm,12/01 +OL5MS,JN69MJ,,,,,,08/99 +OM2TW,JN88UG,,,Richard,,144: IC746 17el LY.050.300,07/01 +OM3AU,KN08OR,,,Andrej,,,1993 +OM3KDX,KN19DB,,,,,144: IC-746 GS35b 4x6 el. 18el. M2 - 10368,06/04 +OM3KMY,JN88MK,,,Clubstation,,,1994 +OM3LQ,JN88MK,,,palo,,,08/01 +OM3TZZ,JN88,,,,,,08/02 +OM3WBC,JN98VG,,,Joe,,,08/02 +OM4EX,JN98HS,,,,,,07/04 +OM5CM,JN98DF,,,Palo,,IC-910H 144 MHz: 100W 9el - 432 MHz: 70W 18e,04/04 +OM5KM,JN98AH,,,Milan,,only SSB-MS,01/02 +OM5UM,JN98EO,,,,,,04/02 +OM7AC,JN98NN,,,Igor,,FT225RD FT780 Transverter home made 145/28,01/03 +OM7AQ,JN98UI,EME,,Zoltan (Zoli),,144: FT290r 450W 13el F9FT MGF1302 - 432:,08/03 +OM7CM,JN98NR,,,Milan,,,08/04 +OM7JG,JN98TI,,,Julo,,,01/02 +OM9AAW,JN98EP,,,DF8AA,,,07/95 +OM9M,KN18AM,,,OP: OM7AQ- OK1CDJ...,,,08/99 +ON1AEN,JO10UV,,,,,,2003 +ON1AFN,JO20SW,,,Filip,,144: FT290r 150W,09/98 +ON1ALJ,JO10SS,,,Jo,,144: TS790E 3CX800 MGF1302 10el 9BV - 432:,11/01 +ON1DDC,JO21UD,,,,,144: 16el 800W1000lpm,08/97 +ON1DSQ,JO21KH,,,Dave,,144: TS700G 50W 8el Quad Preamp.300,04/03 +ON1RR,JO11XA,,,Frank,,FT100.150,09/01 +ON2MRT,JO21MB,,,Thierry,,,07/03 +ON4ADC,JO21FA,,,Marc,,,09/03 +ON4AMX,JO20KV,,,Marc,,144: FT736r 17el 3CX800 BF981DTR 6000lpm,07/01 +ON4ARF,JO10MV,,,,,,05/02 +ON4ASL,JO21,,,Luc,,,1994 +ON4AVJ,JO11UB,,,Jacques,,144: IC275HE 3CX800A7 17el MGF1302165 2000,10/04 +ON4BBD,JO21NA,,,Marc,,FT736 TS440S,01/04 +ON4BG,JO10WM,,,,,,12/01 +ON4CHP,JO21JD,,,Willy,,144: 150W B5016G 11el FX224 SP2000,07/00 +ON4CJU,JO20,,,,,,11/01 +ON4DPX,JO10NT,EME,,Kenny,,FT736 FT847 144: 14el DK7ZB - 432: 2x 26el,09/03 +ON4FI,JO20IV,,,Karel,,144: 3CX800 600W 13el MGF13026000lpm DTR + MS,12/99 +ON4GG,JO20AR,EME,,Geert,,50: 9el mgf13025000lpm MSDSP,08/04 +ON4IMM,JO11UB,,,Dirk,,144: TS440S + LT2S MK2 Preamp PA3BIY design,09/03 +ON4IQ,JO20AR,EME,,Johan,,50: FT1000 TRSV 4x9el 200W MGF1302 - 144:,01/05 +ON4KHG,JO10XO,,,Gaetan,,144: TS440 300W 11el MGF1302 - 1296: 10W 35 e,03/04 +ON4KNG,JO20DU,EME,,Peter,,,01/04 +ON4KST,JO20HI,,,Alain,,,05/04 +ON4LDP,JO10UM,,,Oliver,,50: HM tsvter 2m/6m 30W GP - 144: 150W 13el M,06/02 +ON4LN,JO20IV,,,Eric,,144: TS711E GS35b 7ele M2 MGF1302155 2000l,11/04 +ON4LUC,JO20TM,EME,,Luc,,144: ft1000mp transverter 800w hf max ampli,01/04 +ON4MU,JO20SS,EME,,Denis,,Ft847 150W 0.5dB 3wl,08/03 +ON4PS,JO20KQ,,,Pierre,,144: 400W 9elonly SSB-MS,06/01 +ON4QQ,JO20FS,,,,,,07/95 +ON5AEN,JO10VW,,,Hans,,FT225RD TS770e,01/04 +ON5GS,JO21VD,,,Dirk,,144: IC821 600W 15el,03/02 +ON5LGS,JO10OS,,,Edmond,,only SSB-MS,09/03 +ON5UE,JO11LF,,,Dan,,TS2000DX,01/04 +ON6AB,JO21EC,,,Bruno,,TS930S,03/04 +ON6NL,JO21UE,,,Anton,,144: 120W 13el 6WU088 5000lpm MSDSP288,09/04 +ON6OD,JO20HW,,,franz,,,1993 +ON7CL,JO20JU,,,Rudi,,FT100D 144: FT847 17el high pwr300,09/03 +ON7EH,JO20FV,EME,,michel,,,08/04 +ON7RB,JO11VA,EME,,Roland,,144: 8x13el hor. & 8x12e vert. Full Az/El 1K,11/03 +ON7UC,JO11ND,EME,,Johan,,144: 3CX800A7 2x16el 4.2wlDTR,02/05 +OQ1AEN,JO10VW,,,Hans,,FT225RD TS770E,11/01 +OX2K,GP47TA,EME,,,,144: 4x5wl - 432: 4x28el - 1296: 32m dish,05/00 +OY4TN,IP62NB,,,Trygvi,,,05/04 +OY9JD,IP62OA,,,Jon,,,01/04 +OZ0JX,JO54VU,,,Soeren,,IC761 IC756 50: 5el F9FT,01/03 +OZ1ALS,JO44WX,,,OP OZ1DSK,,144: 2x9el 1KW2500lpm,04/02 +OZ1CDE,JO65CO,,,Jan,,50: FT847 6el 850W,02/02 +OZ1CLL,JO65GQ,,,John,,,08/96 +OZ1CTZ,JO46OE,,,,,,01/02 +OZ1DJJ,JO65GP,,,,,,12/04 +OZ1DPR,JO45IG,,,Bernd ""Ben",,50: Yaesu FT-920 GS35b 1000W 5el,08/03 +OZ1FDH,JO65CS,,,Claus,,1200lpm,07/99 +OZ1FF,JO45BO,,,Kjeld,,432: 200W 2x23el LNA435 - 1296: 40W 2x44el SP,04/04 +OZ1FTU,JO55WW,,,Soeren,,,1993 +OZ1GEH,JO65AL,EME,,peter,,,1993 +OZ1HNE,JO57,EME,,Jorgen,,144: 4x18el crossyagi 8877.022,06/99 +OZ1HTB,JO75,,,Bent,,,11/96 +OZ1IEP,JO55XU,EME,,Carl Jan,,50: 100W 6el - 144: FT736 1KW 2x11el - 432:,01/05 +OZ1IPU,JO57JH,,,J.,,,1993 +OZ1JVX,JO46DS,,,A.,,,01/96 +OZ1LPR,JO44UW,EME,,Peter,,144: FT101ZD LT2MK2 YL1050 ampl 1KW 13el MG,01705 +OZ1PIF,JO65AN,EME,,Peter,,FT847 50: 100W 4el - 144: 350W 13el Preamp150,08/04 +OZ2EEZ,JO45,,,,,,2003 +OZ2ELA,JO65,,,Michael,,,01/97 +OZ2M,JO65FR,,,Bo,,50: HB9CV 100W 70: 25W 5el 144: 15el 1 k,08/04 +OZ2TF,JO46PE,EME,,Ole,,144: IC271h 750W 4x9el Preamp,10/02 +OZ3K,JO45TL,,,Erik,,TS2000,08/02 +OZ3TT,JO66CB,EME,,Bent,,144: ICOM 275H Amp. CS31 M2 18 el MGF1303,12/04 +OZ4MM,JO55GH,EME,,Stig,,10m dish,10/02 +OZ4VV,JO46QU,,,Finn,,50:1000w 9el - 144:1000 Watt 15el MGF1302,03/04 +OZ5AGJ,JO56DG,,,Benny,,144: ICOM 100w 7Elem on 144,01/04 +OZ5QF,JO45VB,,,Jens,,,10/95 +OZ6ABA,JO57DJ,,,Leif,,144: FT736r Mutek Preamp 1KW 15el DJ9BVMS,08/03 +OZ6EI,JO45TT,,,,,,08/01 +OZ6OL,JO65DJ,,,,,,09/01 +OZ6OM,JO55EJ,,,Bjørn ""Matt",,,11/04 +OZ7LE,JO45,,,Hans-Juergen,,144: 9el 400WDTR 4000lpm,03/01 +OZ7U,JO45RL,,,Birger,,TS940S FT847,03/03 +OZ7Z,JO45WA,,,Allan,,144: FT847 1KW 2x9el Yagi,09/01 +OZ8FR,JO55SK,EME,,,,,01/05 +OZ8ZS,JO55RT,EME,,Henrik,,144: IC706 GS31b 1KW 4x8el,08/04 +OZ9AAR,JO45TS,EME,,Carsten,,8x15el Crossyagis- 1KW,12/99 +OZ9FW,JO65CO,,,Frede,,,09/03 +PA0AVS,JO22,EME,,a.n.,,,1994 +PA0BAT,JO31FX,EME,,Gerard,,,01/03 +PA0C,JO22FD,EME,,Henk,,Ft 847 QBL 5/3500 0.4 dB NF 2x 17 el,01/05 +PA0HIP,JO21JO,,,willem,,,1993 +PA0JMV,JO21PM,EME,,Joop,,144: 2x16 el 2x 3CX800A7 0.18dB NF,02/05 +PA0LPE,JO20WW,,,Bert L.,,50: FT847 7el - 144: IC202 400W 2x11el,01/01 +PA0O,JO33HG,,,Jaap,,,08/03 +PA0PVW,JO22VA,,,Peter,,144: 18el M2 3CX800,07/02 +PA0RDY,JO22KJ,,,Robert,,144: 500W 15el MGF1302DTR 3000lpm,10/99 +PA0RLS,JO22,,,R.L.,,,1993 +PA0V,JO33II,EME,,Nanko,,144: 6 x DJ9BV 4 WL Xpol 8 BLF278 Mos fet PA,09/03 +PA0WWM,JO22FE,,,Wim,,144: 160W 9el MGF1302,04/01 +PA0ZN,DM04,,,,,,01/05 +PA1BVM,JO21RI,,,Rick,,50: IC202 Transv. dipol - 144: FT-225 IC 746,05/03 +PA1GYS,JO22WW,EME,,,,144: TS850 LT2S 2 x 2M5WL,01/04 +PA1LA,JO32LS,,,Roel,,144: TS700 16el 60W,01/05 +PA1T,JO33JF,EME,,Timon K.,,144: TS850 LT2S 400W 8877 4x17el M2- 50: 1y.,08/03 +PA2CHR,JO22XA,EME,,Chris,,144: 400W 4x28el Xpol - 432: 400W 2x35el.142,01/05 +PA2DW,JO22GD,EME,,Dick W.,,144: TenTec Trvt 400W(2x4CX250b) 10el.082,09/04 +PA2GER,JO21EW,EME,,Ger,,,09/99 +PA2KW,JO22SB,,,Evert,,144: 1x16el KLM 1.2KW MGF1302,10/04 +PA2M,JO21IP,,,Frank,,FT847 144: 2x blf278 9el 432: 16 el,11/04 +PA2TAB,JO32GF,,,,,,01/05 +PA2V,JO22IM,EME,,Peter,,,08/03 +PA3BAS,JO21PG,,,,,,01/05 +PA3BGM,JO33CE,,,,,,08/99 +PA3BIY,JO22EB,,,Peter,,144: 400W 2x9el,03/02 +PA3BXH,JO22WW,,,,,,01/05 +PA3BZL,JO22SB,,,,,,01/05 +PA3BZO,JO21RS,EME,,Piet,,,08/03 +PA3C,JO33FD,,,Aart,,,08/04 +PA3CEE,JO33JI,EME,,Eltje,,144: 600W 2x16el MGF1302165375,01/05 +PA3CMC,JO21WI,EME,,Lins,,,07/04 +PA3CMG,JO21IV,,,,,,01/05 +PA3COB,JO32MF,EME,,Harry,,144: 15el QD 3CX8003000lpm,03/04 +PA3CSG,JO21WD,EME,,Geert,,,08/04 +PA3CWI,JO11TK,EME,,Kees,,144: FT736 6x12 el M2 MGF1302 8877,08/03 +PA3DOL,JO22MT,,,Sjoerd,,144: 400W 17el4000lpm,09/03 +PA3DRL,JO21PS,,,,,144: 30W 10el,04/04 +PA3DUU,JO21IU,,,arie,,,1993 +PA3DYS,JO21JP,,,,,,01/05 +PA3DZL,JO21HM,EME,,Jac,,144: 4x17el 3.6ld MGF1302 EME Pwr - 432: 2x2,01/05 +PA3ECU,JO32CF,,,Rudy,,50: FT726R 5el 175W - 144: FT847 17el 400W -,12/04 +PA3EON,JO21,,,c.,,,1993 +PA3EPX,JO22RC,,,peter,,,1993 +PA3EQS,JO22TI,,,kees,,,1993 +PA3FBN,JO33IF,,,,,,01/05 +PA3FJY,JO32EH,,,,,,01/05 +PA3FOC,JO21FW,EME,,Rene,,144: TenTec Paragon LT2S 17el (2x17el) PA,06/03 +PA3FPQ,JO22XE,EME,,Johan,,FT100 500W single yagi,08/04 +PA3FSA,JO23RF,,,,,,08/01 +PA3FVE,JO21WG,,,wim,,,1993 +PA3FXW,JO22QD,,,robert,,,1993 +PA3FYF,JO22DB,,,peter,,,1993 +PA3GBR,JO32LH,,,johan,,,1993 +PA3GVC,JO22MU,,,Norbert,,,12/04 +PA3HJG,JO32BG,,,Pascal,,TS2000 50: Dipol - 144: 13el1300lpm,08/03 +PA4VHF,JO32EH,EME,,Dick,,50: 100W 5el - 144: TS850 LT2S 400W 2x16el,04/01 +PA5DD,JO22IC,,,Uffe,,144: GS35b 15ele CUE DEE,01/05 +PA5KM,JO11WL,,,Coen,,144: TS790E 9el 400W,05/04 +PA5M,JO21BS,,,Michael,,,08/03 +PA5MS,JO21QJ,EME,,John,,144: 11el GS35b 400W MGF1302132 4000 DTR,11/02 +PA60SHB,JO21OS,,,OP: PE1AHX,,,12/04 +PA6BN,JO13OF,,,OP: BIY- BZL- FOC,,,07/98 +PA6MS,JO32QF,,,OP PA2TAB- PA3FJY,,DTR,10/96 +PA6T,JO32GF,,,OP PA2TAB Arie,,DTR 3000lpm,12/98 +PA7AL,JO23VG,,,,,,12/04 +PA7C,JO32GF,,,Arie,,50: 100W 6el - 144: R2CW GS31b 400W 14el MGF1,09/03 +PA7FE,JO22OC,,,Frank,,50: 6el leg pwr,03/99 +PA7FM,JO21,,,Dennis,,,08/00 +PA7PYR,JO21UQ,,,Rien,,TS450SAT HF: FB33 - 144: 25W 2x17el Tonna -,09/03 +PA7RP,JO22EC,,,Ruud,,144: 13el 400W GS35B,07/04 +PA7WM,JO23TA,,,l.,,,03/99 +PA9RX,JO32MT,,,Theo,,144: FT847 4x17el 200W370,08/02 +PB0ALS,JO21RV,,,tjeerd,,,1993 +PB1TT,JO22FF,,,Peter,,144: 100W 10el CueDee2000lpm DTR,09/01 +PD0ANQ,JO31EW,,,Wilfred,,,11/01 +PD0HCV,JO31FW,,,Gert,,IC821 144: 15el M2 432: 18el M2,11/04 +PD0ORT,JO23RE,,,Willem,,,04/04 +PD0PYR,JO21UQ,,,,,,01/05 +PD0RFU,JO32LS,,,Rene,,144: FT225RD 2x19el Cushcraft - 432: TS811E,08/04 +PD1AIQ,JO22RM,,,Jan,,144: 25W 4x9el,04/03 +PD1ALD,JO32FI,,,Rene,,Yaesu FT897- Kenwood TR9130- Yaesu FT817,06/03 +PD2GCM,JO21ET,,,Gerard,,FT847,11/04 +PD2VDV,JO23RF,,,,,,08/04 +PE1AHX,JO21OS,,,Catharinus,,DTR +,10/03 +PE1BVM,JO21RI,,,,,,01/05 +PE1DCD,JO21FU,,,,,,05/03 +PE1GBT,JO33BC,,,,,,01/05 +PE1GNP,JO31IX,,,,,,05/03 +PE1GUR,JO22TH,,,,,,06/03 +PE1HWO,JO21GV,,,Andre,,144: FT101ZD + TRV 4CX250b 400Watt 17el MGF1,12/03 +PE1IKX,JO11TL,,,Marco,,144: 300W 15el Quedee,03/04 +PE1ITR,JO21QK,EME,,Rob,,144: 100W 2x10el 3SK97 432: 60W 2x 28el GS,01/05 +PE1L,JO23WF,EME,,Rene,,144: 400W 4yagis DJ9BVDTR,12/04 +PE1LCH,JO23WF,,,,,,01/05 +PE1LWT,JO22VA,EME,,Jurgen,,144: 800W 2x3wl-Xpol,08/03 +PE1M,JO23XE,,,Kees,,,08/03 +PE1MVJ,JO21FV,,,jJ,,,11/96 +PE1OGF,JO21QJ,,,,,,01/05 +PE1OPK,JO23UE,,,Bram,,IC821,09/03 +PE1PQX,JO32LS,,,Andre,,,07/04 +PE1RBG,JO21,,,,,,11/01 +PE1RLF,JO32CG,,,Eric,,144: TS850 LT2S 4CX250F 10el370,01/04 +PE1RWS,JO32BM,,,,,,01/05 +PE2KP,JO22XE,,,Adriaan,,144: 6el Quad 50W.144 2000 lpm.350,01/01 +PE2PE,JO21LU,,,Freek,,144: 400W 15el Quedee,11/03 +PE2RMI,JO23MH,,,Eddy,,,01/02 +PE2SVN,JO21WR,EME,,Sjoerd,,FT1000 LT2s 3CX800 400W 10el,11/04 +PE9DX,JO33MD,,,Johan,,144: TS711 400W 17el SP2,07/04 +PE9GG,JO33NA,,,,,only SSB-MS,11/00 +PE9HNE,JO22FB,EME,,Hans,,TS711,09/03 +PI4NYV,JO32EH,,,Clubstation,,144: 400W 9el or 17el (/p JO32FI),12/96 +PP2KR,GH53IG,EME,,Kleibe,,TR9130,02/05 +PT9FH,GH11EA,EME,,Tony,,144: 4x12el 2x4CX250,04/00 +PY1EPU,GG88PO,EME,,Franco,,144: 4x 16el 160W FT 1000 Mark V Field + Tran,02/05 +PY1IAM,GG87,EME,,LUIZ ALBERTO,,,04/04 +PY1RO,GG87LB,EME,,Rolf,,IC706MKIIg 1000W 8 over 8 el,08/03 +PY2CLL,GG66RF,EME,,Marcus,,144: Kachina 505DSP Trvt 4x18el M2 LNA 300W,01/00 +PY2NI,GG66RK,EME,,Horta,,.100.220,07/01 +PY2PD,GG66RF,EME,,Jose Carlos,,MP1000- LT2S- 4xM2XP28- 3CX800 0-4db,03/99 +PY2PLL,GG66RF,EME,,Marcus,,144: 750W 16el or 2x15el - TS790A xverters,03/01 +PY2SRB,GG48bc,EME,, +PY3CRX,GG66RF,,,Marcus,,144: 750W 16el or 2x15el,08/00 +PY4EPU,GG88PO,EME,,LUIZ ALBERTO,,YAGI FULL SIZE FOR 14 21 28 50 144 220,09/03 +PY5ZBU,GG54,EME,,,,,2000 +R1MVA,KP40GP,EME,,OP RU1AA- OH5LZY ...,,144: 150W,07/99 +R1MVZ,KP40GP,EME,,OP: RU1AA,,144: 4x14el 1.2KW.072,10/99 +R3VHF,LO16XG,,,Clubstation,,.143,01/96 +RA0FCA,QN16IV,EME,,,,,12/04 +RA1ASA,KP50FB,,,,,,1976 +RA1AY,KP50EA,,,Serge,,TS450SAT Icom 706MKiiG,11/04 +RA1QA,KO99WF,,,Alexander ""Alex",,144: 100W 14el 9BV.140 rx1000/2000lpm,05/02 +RA1QAX,LO09CC,,,,,144: IC706 10el PA,10/04 +RA1TC,KO58ON,,,alex,,,1992 +RA1TL,KO67,,,,,,05/04 +RA1TM,KO67PX,,,Alex,,IC746,11/04 +RA1WL,KO47EV,,,Mikhail ""Mischa",,,06/04 +RA1ZC,KP59JK,EME,,Anatoly y.,,IC706MK2 144: 2x10el DJ9BV 1KW2000lpm,11/01 +RA1ZK,KP68MV,,,,,,11/04 +RA3AGS,KO85UU,,,,,,1990 +RA3AQ,KO85SP,EME,,Dmitry,,144: FT736r 250W 13B2,06/04 +RA3DHK,KO95JH,EME,,,,144: FT-736R Toshiba NB 170W 1x2M12MSDSP,01/05 +RA3DQ,KO85US,,,Victor,,144: IC746 100W 16el,09/01 +RA3DQT,KO95HK,,,Vladimir L.,,144: FT-736R Toshiba NB 170W 1x2M12MSDSP,08/02 +RA3DRC,KO95AP,,,Nick,,144: FT-847 50Wtts 17el DJ9BV 9.2 m long200,03/04 +RA3EL,KO82AX,,,Nikolaj,,144: 50W 16el,03/04 +RA3FO,KO86SI,,,Nicolai,,.080,1995 +RA3GES,KO92SO,,,,,,11/04 +RA3IM,KO56UM,,,Leo,,,06/04 +RA3IS,KO76WT,EME,,Sergey G.,,144: 1000W 2x19el SM2CEW 5wl crossyagi142 MS,01/05 +RA3LBK,KO65QA,,,Viktor,,144: 200W 17el1500lpm,01/00 +RA3LE,KO64AR,EME,,Valeri,,,04/01 +RA3LW,KO54MQ,,,Mikhail K. ""Misha",,144: KT931 BF981 2x10el - 432: KT930 KT3101,06/04 +RA3QTT,LO01GQ,,,Nickolaj,,144: GS35 0.5KW 4 x 3.3wl 9BV 0.35db.167,11/03 +RA3TES,LO15WJ,,,Andy,,,11/95 +RA3WDK,KO81BR,,,Ivan,,144: 60W 11el,04/04 +RA3YCR,KO73DH,EME,,viktor,,.090,1994 +RA4AOR,LN29LA,EME,,Yuri,,144: 4x 14elX-Yagi 1-5KW,11/03 +RA4HCN,LO43SL,EME,,Sergey,,,01/05 +RA6AAB,KN94UR,EME,,vladimir,,,1992 +RA6DA,KN96sa,EME,, +RA6HHT,LN05XB,,,nikolaj,,,1992 +RA9FMT,LO87BW,,,vladimir,,,1992 +RA9SO,LO71NS,,,,,,08/96 +RB4EE,KN78WM,,,,,,01/05 +RB5AG,KO60KT,,,,,,01/05 +RB5EU,KN78RI,,,,,,01/05 +RB5GD,KN66HP,,,,,,01/05 +RB5GO,KN66HP,,,,,,01/05 +RB5GZ,KN66HP,,,,,,01/05 +RK1B,KO69AK,,,,,,01/05 +RK1NA,KP71ET,EME,,Konstantin,,144: FT847 100W 14el circular,04/04 +RK2FWA,KO04FT,EME,,Clubstation,,080,04/04 +RK3AF,KO85QR,,,Dmitriy ""Dima",,144: IC746 2xGI7B 450W 16el F9FT177 MSDSP285,12/03 +RK3PWJ,KO83XC,,,OP: 3PF 3PNO,,,05/04 +RK3WWF,KO72QI,,,,,,06/04 +RK9CC,MO06RT,EME,,Stepan,,6x4lb 9BV GS35b,03/04 +RL1P,KO49VW,,,Igor,,144: TR-751 300w 16el DJ9BV,05/03 +RL1X,KO59EW,,,,,,05/03 +RM3T,LO16XG,,,Clubstation,,.143,08/97 +RN3QQ,LO00BK,,,,,144: 15el DJ9BV 100W1500lpm,06/99 +RN6BN,KN95LC,EME,,Alexandr ""Sam",,144: FT736 16x17el 1KW,11/04 +RN6HW,LN16AB,,,,,,08/03 +RN6MT,KN97LN,EME,,Gena,,144: 2.3KW 4xYagis.132,11/03 +RU1A,KP40HK,EME,,Clubstation,,144: 6x16el 1KW,01/05 +RU1AA,KP40XD,EME,,Alex,,144: >2KW GU93b 4x15el Crossyagi140 4000 DTR3,07/04 +RU1AC,KP50EJ,,,,,,07/04 +RU1AS,KO59,,,Alexander,,,05/03 +RU1R,KO82BW,,,OP RB5AL-R3VHF,,,1993 +RU1U,KO72XW,,,OP RB5AL- R3VHF,,,1993 +RU3ACE,KO85SM,EME,,Maxim ""Max",,,01/05 +RU3GX,KO92SO,,,Igor,,,06/04 +RU3ZD,KO81VG,,,Victor,,144: 16el 200W,1/96 +RU4HU,LO43OM,,,Andy,,144: FT290R 2x10el 50W,04/04 +RV1AO,KP50,,,,,,08/04 +RV3AO,KO85RR,,,Vladimir,,144: 4x12el 1500W,07/03 +RV3APM,KO85RU,,,Sergey,,IC910H,03/04 +RV3IG,KO87OT,EME,,Andrey ""Andy",,144: 500W 4x15el.125 1000lpm,01/00 +RV3ZR,KO80CL,,,Alex,,144: 500W YU0B KT939A.150.300,11/03 +RV4AQ,LN28GM,EME,,,,432: 4x4.2ld BV 2xGI7B 500W,10/99 +RV6YY,LN04BH,,,Larry,,,08/04 +RV9AX,LO93LK,,,Oleg,,144: 600W 17el preamp - 50: 100W- 6el.050,10/96 +RV9JD,MP80GW,EME,,,,,01/05 +RW1AW,KP50DA,EME,,Alexander ""Alex",,144: FT736r 2.4KW 2x19el MGF1302 - 432: 12x1,02/05 +RW1Q,KO99WJ,,,Oleg(R3VHF),,.143,12/95 +RW2F,KO04PT,,,OP: DK8LV- DL8UD,,,12/97 +RW3AC,KO86SH,,,Evgeny,,IC910H,01/05 +RW3AZ,KO85TT,,,Alex V.,,,08/03 +RW3DMQ,KO86RI,,,,,,08/04 +RW3PF,KO93CD,,,Peter,,144: 1500W 4x10el GS35 BVO 3wl Preamp - 432:,11/03 +RW3TJ,LO16XG,,,Oleg I.,,.143.243,11/03 +RW3TU,LO25BR,,,Sergej ""Serge",,144:1000Watt 2x13el MGF1302 - 432: 200Watt 2x,09/03 +RW3WR,KO71IM,,,Yuri,,,07/04 +RW4AK,LO20RC,,,Alex,,,01/96 +RW4WE,LO66PU,,,,,,11/04 +RW9FT,LO89TD,,,Eugen,,,11/04 +RW9MD,MO64RX,EME,,,,,06/01 +RX1AS,KO59FX,EME,,Sergej,,144: 4x21el LY GS35b linear.120 1000lpm,05/04 +RX1AX,KO59EW,,,Anton,,,12/20 +RX3PX,KO84SD,EME,,Gennady V.,,144: 2x11el 210W MGF1302 - 432: 2x23el 180W,06/99 +RX3QFM,KO91FM,EME,,Vladimir ""Vlad",,144: 2xBVO4wl yagi 0.4 dB LNA PWR 1.5 KW (2xG,08/04 +RX6AKO,KN84PV,,,Gennady,,,06/96 +RX9CHW,LO99SE,EME,,,,,01/05 +RX9SA,LO71NS,,,,,IC910H,08/04 +RY3E,KN75,,,OP UT5EC,,,1993 +RY5I,KP51BM,,,,,,1992 +RZ1AP,KO49VW,,,Igor,,144: TR-751 300w 16el DJ9BV,05/04 +RZ1AWR,KO59DX,,,Clubstation,,144: 16el DJ9BV 50Watt.120 tx2500 1500lpm,08/98 +RZ1AWT,KP40XD,,,Yuri,,144: 20W 9el.170 1000lpm,06/98 +RZ1QZZ,LO09BC,,,,,,07/04 +RZ1ZZZ,KP76EQ,,,,,,08/04 +RZ2FWA,KO04FT,,,,,,2003 +RZ3AF,KO85CO,,,,,144: MGF 1302 2x14 el GI-7B,12/02 +RZ3QD,KO91OO,,,,,144: 4wl 1KW LNA6000lpm,08/02 +RZ3QS,KO91SS,,,,,144: 2wl 100W LNA1000lpm,08/02 +RZ3ZZ,KO80GP,,,Nikolaj ""Nick",,144: IC-910H 4x 10el A144S10 - 432: 1 A43,11/04 +RZ4HF,LO43QM,,,Igor,,144: IC-910 IC-970 2x13el 1500W,04/04 +RZ6BU,KN84PV,,,Gennadij,,IC706 144: 200W 10el Preamp KT610073 4000lpm,11/03 +RZ6BY,KN84PV,,,,,,06/97 +S50C,JN76JG,,,Clubstation,,50: 5el 100W - 144: IC275h 2x15el 700WMSDSP,08/01 +S51AT,JN75GW,,,Boris,,144: 400W 16el LY2000lpm MSDSP,12/04 +S51BA,JN75IX,,,,,,2003 +S51DI,JN76VL,,,,,,09/03 +S51DX,JN75CC,,,Janez,,144: IC275H 100W 2x17el F9FT,11/01 +S51MQ,JN75NT,,,Boris,,50: 50W 6el - 144: TH328 500W 4x7el MGF13021,01/04 +S51S,JN75GV,,,,,,08/96 +S51SLO,JN76GB,,,,,DTR,03/01 +S51TE,JN76BI,,,,,,11/99 +S51WV,JN76SN,,,,,,2003 +S51WX,JN75OS,,,Dusan,,144: 2x11el 350W,09/04 +S51ZO,JN86DR,EME,,Joze,,144: 1-5KW 4x14el 9BV - 432: 800W 8x33el 9,01/00 +S52CW,JN76CI,EME,,Uros,,,01/01 +S52EZ,JN86DT,,,,,,08/01 +S52LM,JN65TX,EME,,Milos,,144: 4X17M2 5WL FT 1000MP JAVORNIK 144/14,01/05 +S53AC,JN76GB,,,Tili,,IC-746 M2-8wl 600W IC-746 17elDTR MSDSP,08/03 +S53CAB,JN76JG,,,Clubstation,,,08/97 +S53J,JN75EV,EME,,Joze,,144: FT847 4x5wl GS35 ATF43154320,12/04 +S53T,JN75GV,,,Clubstation,,,06/01 +S53VV,JN65UM,EME,,Stane,,144: 250W 16el MutekDTR 3500lpm,01/05 +S53X,JN65WS,,,,,,11/99 +S54AA,JN76EG,,,Franc ""Lane",,144: IC275H 2x4CX250b (650W) 18el DJ9BV,01/01 +S54M,JN86CL,,,Maki,,FT847 PA060210,05/02 +S55AW,JN75DS,,,Stanko,,144: FT1000MP XVRT GS35b 1KW 2x15elMSDSP.3,05/04 +S55M,JN65XM,,,Adi,,144: 8x3el 1KW,11/01 +S55OO,JN76HD,,,Goran,,50: IC735 40W 5el - 144: IC275H 100W 15QD,06/04 +S57A,JN65TW,,,,,,11/99 +S57C,JN76HD,,,Branko,,144: 700W 17el - 432: 400W 8x21DTR,07/96 +S57EA,JN76HE,,,Miran,,144: IC202E 150W 4x6 loop (full elv.) MGF1,01/05 +S57JA,JN76GB,,,,,,11/99 +S57LM,JN76HD,,,Lojze,,.300,04/03 +S57M,JN76PO,EME,,Bojan,,,03/02 +S57MSU,JN76EF,,,Uros,,144: TM255E 500W 2x13el (2.1L) 5°El 15dbon,08/01 +S57QM,JN76,EME,,tone,,,1994 +S57RA,JN75FO,EME,,Paul,,432: 4x 8.5wl dj9bv- 0.3db preamp atf35176- g,08/00 +S57S,JN76JB,,,Aleksander,,144: TS850SAT h.m. transv MGF1302 preamp 3,11/00 +S57TW,JN75EX,EME,,Bojan,,144: IC275H 1500W MGF1302 4x2M28XP085 DTR,08/03 +S57UUU,JN76EC,,,,,,2003 +S58J,JN76EG,,,Janez,,50: IC756 5el,11/99 +S59A,JN76XP,,,Drago,,,11/95 +S59AX,JN65UU,,,janko,,,1993 +S59DCD,JN76NL,,,,,,2003 +S59EA,JN75,,,,,DTR,95 +S59F,JN65TX,,,Ivo,,50: 350w 6el - 70: 50w 5el - 144: 500w,04/03 +S59UN,JN76XP,,,,,,2003 +S9TX,JJ30,,,,,,2003 +SK0AR,JO99BT,,,,,,1993 +SK0CC,JO99BD,,,,,,07/02 +SK0UX,JO99BM,EME,,Clubstation,,,01/05 +SK3AH,JP82XO,,,Clubstation,,,10/02 +SK3JR,JP62WK,,,,,,1992 +SK3LH,JP93IH,,,,,,1994 +SK3MF,JP92FW,,,Clubstation,,144: 6x15el 1KW,07/02 +SK3SN,JP80IO,,,Clubstation,,,1994 +SK4BZ,JP61QM,,,,,,1994 +SK4EA,JO79CO,,,clubstation,,,1993 +SK6HD,JO68SD,,,OP Fredy (SM6FKF),,144: 150W 2x15el1500lpm,09/04 +SK6YH,JO58,,,,,,08/96 +SK7AX,JO77DS,,,Clubstation,,,07/01 +SK7CY,JO65SN,,,OP SM7MRL SM7NYC,,144:TS850 transverter 130 1000W MGF1302300,05/02 +SK7JC,JO76KF,,,Clubstation,,,08/99 +SL4BP,JP70TO,EME,,OP SM4HFI,,144: 800W 4x9el MGF1302,03/02 +SM0EJY,JO89SC,,,Andrew ""Andy",,144: 500W 10 over 10el Preamp1000 lpm,12/99 +SM0EPO,JO89XM,,,Per Olof,,144: 50W 2x6el,12/03 +SM0EPX,JO89SJ,,,Michael ""Mike",,144:1000 Watt 4CX1500 15el X-Y MGF1802,04/04 +SM0FFS,JO99AG,,,,,,1994 +SM0FZH,JO89TG,,,,,,01/97 +SM0HAX,JO99,EME,,Peter,,144: 6x9el (3.5lb) GS35b 1KW 2SK571 0.35dbN,01/01 +SM0IKR,JO99CC,,,Göran,,FT847,02/05 +SM0KAK,JO89XK,,,Lasse,,50: 100W 6el - 144: 180W 17el1600lpmtx 1000lp,08/03 +SM0LCB,JO99,,,Ulf,,,04/04 +SM0LQB,JO89XK,,,Stellan ""Stan",,144: 15el 130W - 432: 4W 21el,04/04 +SM0MXR,JO89WE,,,,,,2003 +SM0NKZ,JO99IQ,,,johan,,,03/02 +SM0OUG,JO89VG,,,Lasse,,,10/96 +SM0PYP,JO89XG,EME,,paul,,,1994 +SM0TSC,JO99CF,,,Johan,,FT817,11/04 +SM1BSA,JO97DP,,,Arne,,144: FT736r 500W 2x9elDTR,05/04 +SM1HPV,JO97HO,,,Karl-Gunnar,,144: 200Watts 2x15ele,01/02 +SM1SBI,JO97FK,EME,,Pontus,,144: 2x17el 800W315,05/02 +SM2AZG,KP03,,,,,,03/02 +SM2BLY,KP05RJ,,,,,,1993 +SM2BYA,KP07DU,EME,,Gudmund,,144: FT1000 4x3.2wl CueDee 3CX1000A7 MGF110,08/00 +SM2CEW,KP15CR,EME,,Peter,,144: 6x19el 1KW120 1200lpm,01/05 +SM2CKR,KP03DQ,EME,,Mats,,,07/99 +SM2ECL,KP05RH,,,Anders ""Anti",,144: 200W 4x15el 60m asl150lpm,07/03 +SM2EKM,KP05UW,EME,,Jan Erik ""Jim",,,04/03 +SM2GCR,JP93TK,,,,,,07/00 +SM2GGF,KP05DV,,,,,,1984 +SM2ILF,KP04,,,S.,,,12/04 +SM2IUE,JP85,,,Enfried,,,1993 +SM2IZV,JP84,,,peter,,,1993 +SM2LKW,KP15BO,,,,,,1994 +SM2LTA,JP94CW,,,Assar,,DTR+,04/98 +SM2ODB,KP03EU,,,Peter,,144: 100W 15el1200lpm,03/02 +SM2VBK,KP15BO,,,Mikael,,,08/02 +SM3AKW,JP92AO,EME,,Carl G.,,144: 2x17LB 1KW - 432: 16x21el 1KW - 1296 4x2,04/00 +SM3AZV,JP83,,,Thorsten,,,1993 +SM3BEI,JP81NG,,,Lennart,,144: 100W 432: 500W 1296: 130W 2320: 120,12/04 +SM3BIU,JP73ST,,,Bas,,,01/97 +SM3BYA,JP81NX,EME,,Gudmund,,432: 450W 8x21el MGF1412,12/00 +SM3COL,JP82,,,Rolf,,,11/96 +SM3GHB,JP72,,,Bentgerik,,,1993 +SM3GHD,JP62,,,lars,,,1993 +SM3IEK,JP82MO,,,Kenneth,,144: 100Watt 15el,01/03 +SM3JBO,JP93IH,,,,,,03/04 +SM3JGG,JP71WJ,,,Staffan,,,07/02 +SM3JLA,JP93LH,,,Mikael,,144: 250W 15eltx1500 3000lpm,06/99 +SM3KJO,JP92DX,,,,,only SSB-MS,08/97 +SM3KYH,JP82NL,,,Lars,,,04/04 +SM3LBN,JP80IO,,,Hakan,,,08/03 +SM3LGO,JP83VB,,,Mats,,144: 1KW 80el Colineartx2000 rx1500lpm,01/99 +SM3MXR,JP80GR,EME,,Einar,,144: 4x17el M2 emepwr5000lpm,08/01 +SM3PWM,JP81GF,EME,,Sverker,,,12/99 +SM3PXO,JP73GI,,,Petter,,144: 400W 17el 5wl - 50: 50W 9el 2wl,04/03 +SM3RLJ,JP93OI,,,Mikael,,144: 100W 15el1500lpm,07/97 +SM3RPQ,JP74BT,,,Leif,,,04/03 +SM3RWZ,JP82MI,,,Tony,,ICOM IC-275H 200W 9 ele,10/04 +SM3TFR,JP93IG,EME,,goeran,,,1994 +SM3VAC,JP83VA,,,Magnus,,144: 2x17el 1KWMSDSP,08/01 +SM3VEE,JP81VI,,,Anders,,,03/98 +SM3XGV,JP81OF,,,Anders,,TS2000,08/04 +SM4ANQ,JP70OC,,,Ulf,,,02/02 +SM4DHN,JP60VQ,EME,,Lars Bertil,,,01/01 +SM4FXR,JO79OF,,,Christer,,,01/05 +SM4IVE,JO79SD,EME,,Lars,,,08/00 +SM4KYN,JO79,,,anders,,,1993 +SM4POB,JP70FK,,,per,,,1995 +SM4RPQ,JO79HH,,,Leif ""Alf",,TS2000,07/04 +SM4VQP,JO79NB,EME,,Lars,,144: 4x17el eme-pwr,01/02 +SM5BSZ,JO89IJ,EME,,Leif,,,07/99 +SM5CBN,JO78NH,,,len,,,1993 +SM5CFS,JO99IQ,EME,,Bjorn,,144: 4x16el QBL5/3500 1.5KW,11/01 +SM5CUI,JO89WW,EME,,Rune,,,01/05 +SM5DCX,JO89OI,,,Lars,,,01/01 +SM5DIC,JO89JT,,,Ragge ""Gus",,144: 13el 400W MGF1302,07/04 +SM5DRV,JO77MV,,,Lars,,144: IC-275H 100W 13el yagi2000lpm,07/04 +SM5FRH,JO88BW,EME,,Torbjoern ""Tobben",,144: 32x19el horz. or 32x10el vert..017,10/00 +SM5GEP,JO77IP,,,,,,2003 +SM5IOT,JO99,EME,,Christer,,144: 8x9el vargarda GS35b MGF1801,10/00 +SM5TSP,JP90CE,EME,,Lars,,144: 4x15el 750W2500lpm,07/03 +SM6AEK,JO66,,,goran,,,1993 +SM6AFH,JO66LQ,,,thomas,,DTR,1994 +SM6CEN,JO57XO,,,Hank,,,03/02 +SM6CKU,JO67,EME,,Bengt-Arne,,,10/00 +SM6CMU,JO57XK,,,Ingemar ""Ingo",,IC706MkIIg 50: 100 Watt 6el - 144: 9el NE7,05/04 +SM6CWM,JO67,EME,,ingemar,,,1994 +SM6EAN,JO57WQ,,,Mats,,144: 600W 10elDTR tx 3000lpm,01/01 +SM6EUP,JO57XQ,EME,,hans,,,1994 +SM6FKF,JO68SD,,,Fredy,,,04/04 +SM6FUD,JO68JV,,,,,,12/04 +SM6KJX,JO67CK,,,Janne,,FT736DTR,07/04 +SM6NET,JO68SD,,,Tony,,144: 100Watt 17el - 432: 50Watt 21el,01/05 +SM6TZX,JO67EE,,,CHRISTER,,,05/02 +SM6U,JO67AT,,,OP SM6USS,,144: FT290 9el 25W,05/00 +SM6UMO,JO68DH,,,Mikael,,144: TR751 170W 2x13el SP2000rx3000 tx1200,1994 +SM6USS,JO67AT,,,Dennis,,144: FT290 9el 25Wonly SSB-MS.290,07/97 +SM7AED,JO65NI,,,Arne,,144: 50W 5el.170 rx1000lpm,03/02 +SM7BAE,JO65,EME,,K.,,144: 24x20el,10/98 +SM7CMV,JO65AM,,,Ken,,50: IC735 25W 5el,01/97 +SM7EAN,JO86,,,,,,07/99 +SM7EOI,JO86FP,,,Toby,,IC7400,01/04 +SM7FJE,JO65ML,EME,,Bob,,,01/05 +SM7FMX,JO65KN,,,,,,08/04 +SM7FWZ,JO78,,,Ronny,,,03/03 +SM7GVF,JO76JV,EME,,Kjell,,,03/02 +SM7IWG,JO77IP,,,Carl,,,04/04 +SM7JUQ,JO65WX,,,Harald,,50: 100W 5el - 144: 750W 9el - 432: 50W 19el5,08/04 +SM7KNK,JO75,,,K.,,,1993 +SM7MRL,JO65NP,,,Ingvar,,144: TS850 transverter 130 1000W MGF1302300,03/03 +SM7MXO,JO77,,,,,,07/04 +SM7NNJ,JO86DQ,,,Sven Ake,,50: IC290 - 144: FT726R 100W 15el MGF1302255,01/02 +SM7OYP,JO66JA,,,Lars,,50: 100W 5el,09/01 +SM7SCJ,JO65QJ,EME,,Richard ""Ric",,,10/02 +SM7THS,JO76WR,,,Sverker,,144: 15el 170W MGF1302DTR,11/99 +SM7TJC,JO67SH,EME,,Anders,,144: FT-225RD 2xGi7b (800W) - 432: FT-757GX,05/02 +SM7TUG,JO65OT,,,Hans,,144: 2x4CX250b 17el MGF1302DTR,08/98 +SM7WSJ,JO67WI,EME,,Hakan,,144: 2x M2 28XP 1KW MGF1302 - 432: 18el hom,04/03 +SM7WT,JO65QQ,,,Sten,,,06/01 +SO4DFC,KO13AX,,,,,,1992 +SO4TEC,KO13CW,EME,,,,183383,06/02 +SO5AS,KO02JD,,,Stephen ""Steve",,50:100Watt 3el 144:130Watt 14el105 2500lpm MS,08/04 +SO9AN,JO84NG,,,,,.133,05/00 +SO9FB,JO84NG,,,,,.122,05/00 +SP1JVG,JO84LL,,,Miroslaw,,only SSB-MS,02/01 +SP1NQE,JO84LL,,,Bogdan ""Bodo",,TS746 TS811E,04/04 +SP2CHY,JO94GO,,,Wojtek,,,02/05 +SP2FAX,JO83VA,,,,,144: 2KW 6x17el,08/03 +SP2HAX,JO83,,,,,,12/ 9 +SP2HNF,JO94FK,,,,,,01/99 +SP2IQW,JO94GM,,,Michal ""Mike",,50: FT690S 5el - 144: 100W 2M5WL305/360,09/04 +SP2JAN,JO94,,,,,,09/94 +SP2JYR,JO92QP,,,Ryszard,,,04/04 +SP2MKI,JO93AC,,,Darek,,,03/02 +SP2MKO,JO93CB,,,,,,05/04 +SP2MSL,JO92NM,,,Andrzej,,only SSB-MS,01/97 +SP2NJI,JO92MP,,,Wieslaw,,50: IC736 100W 5el - 144: IC271 150W 21el - 4,10/99 +SP2OFW,JO93AC,EME,,Wojtek,,144: 2xGS35b 2x15el,01/05 +SP2SGZ,JO82UU,,,,,,7/96 +SP3EPX,JO83ID,,,,,,11/01 +SP3FSM,JO81GU,,,,,,08/02 +SP3MFI,JO91,,,st.,,only SSB-MS,1993 +SP3RNW,JO81GQ,,,Leszek,,50: 100W -144: 200W 11el MGF1302 - 432: 100W,08/03 +SP3RNZ,JO92DF,EME,,,,IC746 7el TAGI245,09/03 +SP3SUX,JO72OR,,,Irek,,144: 80W 14el BF981,12/96 +SP3VSC,JO92DF,,,Jack,,144: IC746 2X13B2 PA GS35B,01/04 +SP4BY,KO13OD,,,,,,07/04 +SP4DGN,KO13OD,,,,,,1988 +SP4JCQ,KO13NC,,,Gene,,FT920 IC910H 144: 100W 17el,02/05 +SP4MPB,KO03HT,EME,,Marek,,144: IC746 GS35b MGF1302 - 10GHZ: 5W 120cm,02/04 +SP5CCC,KO02NF,,,Tomasz ""Tom",,,10/02 +SP5CJT,KO02OD,EME,,mike,,,1994 +SP5EFO,KO02,EME,,leszek,,,04/97 +SP5HEJ,KO02,,,Marek,,,01/97 +SP5KVW,KO03SB,,,,,,1989 +SP5LJX,KO03,,,,,,08/02 +SP5QWB,KO02NF,,,Bart,,50: 400W 7el - 144: 1KW 17el - 432: 50W 26el,05/04 +SP5XMU,KO02LG,,,Tomasz ""Tom",,50: 100W 6el 144: 170W 13el 432: 50W 21el,08/04 +SP6A,JO81NG,EME,,Zbigniew,,,11/03 +SP6ASD,JO81LC,,,Tadek,,180lpm,05/02 +SP6AZT,JO81NG,,,,,,2003 +SP6CPH,JO81,,,,,,09/01 +SP6GVU,JO81LC,,,Andrzej (Andy),,144: 17el F9FT 200W MGF1302.073.273,02/01 +SP6GWB,JO80HK,EME,,Staszek ""Stan",,50: FT847 1 kW 9 el (2 lambda) - 144: FT8,02/05 +SP6GZZ,JO80FX,,,Roman,,3000lpm MSDSP200,10/04 +SP6IWQ,JO80HK,,,Bogdan,,TR751e FT757gxII Trnsv 100W Pas,11/04 +SP7BUZ,KO00HU,,,Marcin,,,04/04 +SP7DCS,JO91RT,EME,,Krzysztov ""Chris",,144: FT736r DSP GS35vb (21el.horz.+ 21el.ver,01/01 +SP7EBM,JO91QR,,,Wiktor,,.070.350.,01/02 +SP7JSG,KO01BW,,,,,,03/02 +SP7OGP,KO01AM,,,Piotr,,50: 100W - 144: IC706MKIIG 14el 9BV 50W BF9,01/05 +SP7VC,JO91SS,,,,,,10/04 +SP8AOV,KO11GG,,,Zbigniew ""Zbig",,144: FT480r 100W 2x10el1000lpm,03/00 +SP8NCJ,KO12NA,,,A.,,,11/95 +SP8RHP,KO10FF,,,Robert,,144: 200W 10el DJ9BV122 2000lpm379,12/04 +SP8SN,KO11GG,,,Robert,,,07/04 +SP8UFT,KO11JI,,,,,,01/02 +SP9COO,JO90GA,,,Grzegorz ""Greg",,144: IC251 + PA 100Watt 44el YU0B MGF13020,04/04 +SP9EWO,JN99HW,,,Janusz,,.423.423,12/99 +SP9EWU,JO90NH,EME,,Wojciech,,,07/03 +SP9KUR,KO00MA,,,,,,1993 +SP9LCV,JO90KF,,,Michal,,,05/02 +SP9MRT,JO90KG,,,Sebastian,,.080,12/95 +SP9PRO,JN99,,,Clubstation,,,03/97 +SP9PZU,JO90,,,,,,07/96 +SP9QMP,JO90FB,,,,,,08/02 +SP9TCE,JO90,,,Jurek,,DTR,08/98 +SP9TTG,JO90NU,,,Peter,,144: 100W LY,05/04 +SP9UX,KO00XA,,,,,,07/04 +SQ7DQX,JO91RR,,,Mateusz,,144: 13el 50W,11/04 +SQ8GUP,KN09VQ,,,Waclaw,,,04/01 +SQ9PM,JN99MT,,,Maciek,,FT847 50: 6el - 144: 14el - 432: 29elM,08/03 +SQ9PV,JO90KF,,,Jacek,,,01/03 +SQ9W,JO90NH,EME,,Wojciech,,,07/03 +ST2RS,KK65GN,EME,,Bob,,50: 6el 1KW 144: 4x 8el 140W,01/05 +SV0EC,KN10CJ,EME,,Hardy,,144: TS770 700W 20el Gruppeonly SSB-MS,02/99 +SV1AAF,KM17VX,EME,,,,,1992 +SV1AB,KM18,,,l.,,,1993 +SV1BTR,KM18NO,EME,,Dimitris ""Jimmy",,144: FT847 4x17el. (F9FT) 1.5KW - 432: 8x 3,01/05 +SV1WE,KM18VA,,,Teo,,144: 500W 17el1000lpm,07/98 +SV2DCD,KN00NF,,,,,,10/04 +SV2EVS,KN10KP,,,Spiros,,,04/02 +SV2JL,KN10LO,,,Fotis,,,06/04 +SV3KH,KM07PQ,EME,,Nikos,,144: 100W 12elonly SSB-MS,12/04 +SV5BY,KM46CG,,,,,,2003 +SV5BYR,KM46CG,,,Mike,,144: FT847 2x13el 1KW MGF1302,05/04 +SV8CS,KM07JS,,,Spiros,,144: IC821 + TS2000 17el or 9el Cross 300W,01/05 +T33C,RI49XC,,,,,,2003 +T49C,FL11SG,,,OP Oscar CO2OJ,,50: 4el 100W - 144: 9el 120W - 432: 17el 100W,11/97 +T77WI,JN63FW,,,OP DL3YEL- DJ2QV,,144: 350W 9el 11el,06/98 +T90M,JN82TW,,,,,,08/96 +T90N,JN82TW,,,,,,08/96 +T94KU,JN94JF,,,Esho,,144: FT480r 6el 50Wonly SSB-MS,01/00 +T94ZQ,JN94FP,,,,,only SSB-MS,07/99 +T98CHR,JN84AX,EME,,OP: PA2CHR- PE1LWT,,,04/99 +T98GTH,JN84UU,,,Gigi,,,01/05 +T98LWT,JN84AX,EME,,OP: PA2CHR- PE1LWT,,,04/99 +T9SO,JN94IM,,,Zel,,144: FT480r 8el 150Wonly SSB-MS,08/98 +TF3EJ,HP84,,,Jakob,,,10/95 +TF8ITT,HP94CD,,,Jonas,,144: 1KW ERP,08/02 +TK1DX,JN42RM,,,OP TK5GF,,144: 8el 200W,01/99 +TK5EP,JN41IW,,,Patrick,,144: 400W 9el or 16el 900m.asl.,11/01 +TK5JJ,JN41JW,,,Jan Jacques ""JJ",,144: 3CX800a7 2x 10el DJ9BV MGF1302090,04/03 +TM1E,JN13,,,OP F5SJP- F1JRD,,144: TS790 180W 17B2TX1200 RX 5000lpm,12/99 +TM6OLW,JN37,,,,,,01/05 +TO4E,LG07EQ,,,,,,2003 +TS7N,JM54NQ,,,OP DL6SAQ- 1GGT uva,,144: IC275 HLV600 2x7el FX213MSDSP,11/00 +TV6YGS,IN86,,,,,,1987 +UA1AFA,KO59EV,,,,,,08/02 +UA1ARX,KO48VR,,,OP at RU1AA,,,08/04 +UA1C,KO58BR,,,OP R3VHF,,,1993 +UA1CEA,KO69,,,Roman,,,04/99 +UA1MC,KO59DW,,,Slava,,,08/04 +UA1NAN,KP71ES,,,Eugen,,IC260,01/03 +UA1OLJ,LP03DC,EME,,Vladimir,,144: 150W 9el,12/99 +UA1QV,LO08IW,,,,,144: 300W,06/99 +UA1UM,KO68WJ,,,,,,1988 +UA1WER,KO47EU,,,Igor,,144: 50W 4x17el QSL via DL9USA,01/02 +UA1ZCG,KP59JK,,,,,,2003 +UA1ZCL,KP78TX,EME,,Alex p.,,,1992 +UA2FF,KO04,,,,,,12/04 +UA2FL,KO04FQ,,,slava,,,06/97 +UA3AOG,KO85SQ,,,Igor,,144: IC706 100W 11el1000lpm,07/00 +UA3ARC,KO85SO,,,Alexander,,144 :IC-275H GS-35B MGF1302 2M18XXX,07/04 +UA3DHC,KO96CB,,,Alexandr ""Alex",,,04/04 +UA3DJG,KO95CN,,,,,144: 11el 800W,07/03 +UA3GA,KO92GO,,,Edward,,,11/04 +UA3IAG,KO77FN,,,Boris A.,,,09/99 +UA3IDQ,KO66JF,,,Victor,,,06/00 +UA3MAS,KO97ST,,,,,,1994 +UA3MBJ,KO88SA,EME,,"Nick",,,01/05 +UA3MEE,KO97XN,,,Victor,,,03/01 +UA3MHJ,KO87SR,,,,,,2003 +UA3OG,LO07KS,,,Serge,,,1992 +UA3PBR,KO93BD,,,,,,1986 +UA3PBT,KO84UF,,,,,,1982 +UA3PC,KO84PC,,,Valery,,,08/04 +UA3PTW,KO93BS,EME,,Dima,,144: 16el DJ9BV 1KW - 432: 8 yagis 200W,04/01 +UA3QHS,KO91QR,,,,,,1981 +UA3QR,KO92KA,,,Viktor,,,1992 +UA3RBO,LO03NG,,,,,,11/03 +UA3RFS,LO02SW,,,,,,1980 +UA3T,LO16GM,,,Clubstation,,.143.243,07/03 +UA3TCF,LO26IU,EME,,Alexander,,144: 300W,01/00 +UA3TDB,LO16,,,,,,1979 +UA3TIE,LO16,,,,,,01/97 +UA3UBD,LO06GU,,,,,,1980 +UA3UES,LO07MF,,,alex a.,,,1992 +UA3WM,KO72QI,,,,,,07/04 +UA3XEH,KO73FU,,,,,,08/98 +UA3XFA,KO73DU,,,,,,01/96 +UA3YOZ,KO63QQ,,,Eugine,,144: 150w 10el 2wl bf998355,08/04 +UA3ZAT,KO80,,,,,,1991 +UA4AAV,LO21FC,EME,,Victor,,,04/99 +UA4ALU,LN29LA,EME,,nick,,,1992 +UA4API,LO20QC,EME,,Victor,,,12/99 +UA4AQL,LO20QB,EME,,Aleksandr ""Al",,144: 4x13el DJ9BV Preamp 0.8db 1.2kW(EME),06/03 +UA4CDT,LO41AX,,,,,,1983 +UA4NM,LO48UP,,,Vladimir,,,03/04 +UA4SF,LO36WP,,,,,,1986 +UA4UK,LO14MA,,,Eugeny,,,11/03 +UA6LGH,KN97LF,EME,,Victor,,,07/96 +UA9CGP,MO06RT,,,,,,2003 +UA9CS,MO06FU,EME,,igor,,,1992 +UA9FAD,LO88DA,EME,,Victor,,144: 1KW 4x16el - 432: 1KW 8x15el.037,01/05 +UA9SL,LO71NS,EME,,Vladimir,,,11/04 +UA9XQ,LP63UM,,,,,,01/97 +UA9YLU,MO92EO,EME,,,,,11/04 +UB0QF,KN77NU,,,,,,1988 +UB2GA,KN77AB,,,,,,1990 +UE1TWO,KO67PW,,,,,,07/04 +UL7LU,MO13TD,EME,,victor,,,1992 +UL7TZ,MN52,EME,,,,,1992 +UN7LU,MO13TD,,,,,,2003 +UN7TQ,MN52VV,EME,,Pavel,,,09/98 +UN8AG,LN53PH,,,Alex,,,07/96 +UN8BA,MO51RD,EME,,anatoly,,,1992 +UR3EE,KN88DC,EME,,Artur N.,,,11/02 +UR3EP,KN78WR,,,,,,01/96 +UR4EWF,KN67OW,,,Clubstation,,,07/03 +UR4LL,KO70XG,,,Alex,,,10/00 +UR5BAE,KN29SM,,,Anatoly,,,07/01 +UR5LLW,KN89EQ,,,,,,06/03 +UR5LX,KO70WK,EME,,Sergej Leonidov,,144: 800W 13el BF981.076 DTR 2000,01/05 +UR5M,KN99FD,,,OP UT5EC-UT4EQ,,,94 +UR5RCP,KO51OM,,,vladimir,,,1992 +UR5SKB,KN28IW,,,Vik,,FT847,05/04 +UR7GN,KN66HP,,,Sergey,,,06/96 +UR8IDX,KN87TC,,,Victor,,,07/04 +US0WA,KN29XT,,,n.k.,,,07/95 +US1VQ,KN58XA,,,,,,08/95 +US5CCO,KN59XG,,,Vlad,,,05/02 +US5II,KN88WA,,,Serge,,,08/04 +US5WU,KO20DI,,,boris,,.125,06/02 +UT1E,KN57XX,EME,,Clubstation,,.077,08/03 +UT1EA,KN68RA,EME,,Clubstation,,.077,08/03 +UT1EWA,KN68RA,,,,,,2003 +UT1PA,KO21FC,EME,,Alexander,,,06/98 +UT1Q,KN77,,,,,,08/95 +UT2CO,KN58CR,,,jan,,,1992 +UT2HN,KN79OI,,,Nick,,144: 100W 16el.140 1000lpm,11/03 +UT3BW,KN29UA,,,Igor b.,,,05/99 +UT3LL,KO80AC,,,,,,2003 +UT4EQ,KN78MK,EME,,Nick,,,06/98 +UT5AO,KO61XQ,EME,,vlad,,,1994 +UT5BN,KO40,,,,,,1981 +UT5CO,KN58CQ,,,,,.140,1995 +UT5DL,KN18EP,EME,,w.p. Slava,,,07/02 +UT5EC,KN78MN,EME,,Valery,,,11/99 +UT5EG,KN78GJ,EME,,alex,,,1994 +UT5ER,KN78ER,EME,,Arkady,,144: 4x4.4L DJ9BV 1KW MGF1302.117 DTR 30,01/05 +UT5GU,KN68,,,alex,,,1994 +UT5JAX,KN64RQ,,,vlad,,,1994 +UT5JCW,KN64SN,,,Serge,,50: ic-706mk2 ft-100160,11/03 +UT5UBB,KO50,,,,,,01/04 +UT5UCP,KO50DG,,,Eugen,,,07/01 +UT5VD,KN68MT,,,Anatoly,,,10/04 +UT7GA,KN66HP,,,Alex,,144: 1KW 16el F9FT1000lpm,09/99 +UT7VF,KN68MQ,EME,,Victor,,,06/96 +UT8AL,KO61WP,EME,,aleksandr.,,DTR,08/99 +UU1AA,KN74BV,,,,,,08/04 +UU1DX,KN74BW,,,Oleg,,144: 500W,07/04 +UU5JJ,KN74AV,,,,,,2003 +UW9AH,LO93KK,,,Yuri e.,,,1992 +UX0FF,KN45NI,,,Nikolay,,,07/04 +UX1AS,KO59FX,,,,,,2003 +UX5UL,KO50FL,,,Oleg,,144: IC910H 100W310,07/04 +UY5HF,KN66HP,,,Anatoli,,,06/96 +UY5OE,KO80AB,,,,,,1994 +UZ1OVW,KP94VN,,,anatoly v.,,,1992 +UZ3DD,KO86JH,EME,,,,,1993 +V47YC,FK87,EME,,,,,07/96 +VA2CST,FN35BP,,,Claude,,,2003 +VA2MGL,FN74UQ,,,Marc,,50: 25W 3el,11/01 +VA2PRC,FN46,,,Yves,,50: deltaloop 144: IC706 13el,1998 +VA3LK,FN14TO,,,,,,2003 +VA3NFA,FN25BH,,,Tom,,,2003 +VA5VHF,DO70FJ,,,Michael David,,,2003 +VA6DX,DO33IM,,,Barry,,144: 1KW 4x 2M9,01/01 +VA7MM,CN89OG,EME,,,,,2004 +VE1ALQ,FN65VH,EME,,,,,10/02 +VE1GRT,FN84IQ,,,,,,2003 +VE1KG,FN84CM,EME,,Serge,,4x17el,10/00 +VE1MQ,FN65,,,,,,2003 +VE1RG,FN65,,,Chuck,,144: 170W longyagi,12/00 +VE1SKY,FN74,,,Roger,,50: FT620B 3el,01/01 +VE1TAY,FN66,,,Wade,,,01/01 +VE1XYL,FN65VH,,,,,,2003 +VE1ZJ,FN96UC,EME,,,,144: 1.8KW 6x18el,12/01 +VE2BKL,FN48DJ,,,Roger,,50: 1000W 6el - 144: 150W 19el,04/02 +VE2CST,FN35BP,,,,,,2003 +VE2DIV,FN35BP,,,,,,2003 +VE2PEP,FN46IB,,,Germain,,,08/03 +VE2PIJ,FN35QI,,,Pierre,,50: 6el 40W - 144: 17el 25W - 432: 24el 25,08/04 +VE2UG,FN35,,,,,,2003 +VE2WHZ,FN08WN,,,,,,2003 +VE2YAG,FN19ES,,,,,,2003 +VE3AX,FN02CW,,,Peter,,1.5KW 50-432 multiple Yagi arays.200.200,01/02 +VE3BDR,EN98,,,,,,2003 +VE3BFM,FN04AE,,,,,,2003 +VE3CF,FN03,,,,,,2003 +VE3CVG,FN25HM,,,,,,2003 +VE3DBP,EN94EE,,,,,,2003 +VE3DEW,FN04,EME,,,,,2003 +VE3DIR,FN03,,,,,,2003 +VE3DSS,FN03FQ,EME,,Dana,,.200,07/01 +VE3FAC,FN03IS,EME,,,,,2003 +VE3FAL,EN58DF,,,Fred,,,10/01 +VE3FOD,EN76,,,,,,2003 +VE3JJX,EN29SS,,,,,,2003 +VE3KH,FN03CL,EME,,Kevin D.,,144: 6 x 2MXP28 AzEl 8877 LNA145 LT2S FT1000D,09/99 +VE3KHH,FN03CL,,,,,,2003 +VE3KRP,EN58IJ,EME,,Ed,,,02/05 +VE3NE,FN03FQ,,,Lajos,,,2003 +VE3OQC,FN03,,,,,,2003 +VE3SCP,EN93WV,,,,,,2003 +VE3STZ,EN82,,,,,,2003 +VE3WMD,EN92JN,,,,,,2003 +VE4AAZ,EN19,,,,,,2003 +VE4ACX,EN19,,,,,,2003 +VE4AJB,EO00,,,,,,2003 +VE4AP,EN19,,,,,,2003 +VE4AQ,EN19OR,,,Jim,,144: 1KW 4218XL,01/01 +VE4CCW,EN19,,,,,,2003 +VE4CT,EN19OW,,,,,,2003 +VE4DK,EN19,,,,,,2003 +VE4FV,EN19,,,,,,2003 +VE4GHR,EN19,,,,,,2003 +VE4GLS,EN19,,,,,,2003 +VE4HAY,EN19,,,,,,2003 +VE4JX,EO00,,,,,,2003 +VE4KQ,EN19,,,,,,2003 +VE4KU,EN19,,,,,,2003 +VE4LAR,EN19,,,,,,2003 +VE4MA,EN19LU,EME,,,,,2003 +VE4MBQ,EN19,,,,,,2003 +VE4MHZ,EN19,,,,,,2003 +VE4MX,EN19,,,,,,2003 +VE4OV,EN19,,,,,,2003 +VE4PQ,EN19,,,,,,2003 +VE4RCJ,EN19,,,,,,2003 +VE4RE,EN19,,,,,,2003 +VE4TOM,EN-19,,,,,,2003 +VE4TV,EN19CX,,,,,,2003 +VE4UD,EN19,,,,,,2003 +VE4ZI,EN19,,,,,,2003 +VE4ZK,EN19,,,,,,2003 +VE4ZV,EO10IH,,,,,,2003 +VE5UF,DO61OV,,,Doug,,50: 600W 6el quad - 144: 325W 2x 2M126000lpm,07/01 +VE6AFO,DO21,EME,,,,,2003 +VE6BPR,DO32BG,,,Al,,50: 150W 5el - 144: 250W 16el crossyagi,01/01 +VE6LR,DO21,,,,,,2003 +VE6NA,DO20,EME,,,,,2003 +VE6NTT,DO31,,,Don,,144: 170W 17el,1998 +VE6PY,DO20WW,,,,,,2003 +VE6TA,DO33GS,EME,,Grant,,432: 5m dish 800W,08/00 +VE6XT,DO,,,,,,2003 +VE7BBG,CN88,EME,,,,,12/00 +VE7BEE,DN09HG,,,,,,2003 +VE7BQH,CN89KI,EME,,Lionel,,384el Collininar,03/00 +VE7CFT,CN79ST,,,Russ,,,2003 +VE7CLD,CN89LD,EME,,,,,2003 +VE7DXG,CN88DT,,,Gabor,,50: 150W 5el - 144: 150W 15el,05/03 +VE7FYC,CN89,,,,,,2003 +VE7KPB,DN29CM,,,Ken,,144: 1KW 5wl M2,06/01 +VE7MDL,CN89,,,Erik,,only SSB-MS,1998 +VE7RJ,DN09LL,,,,,,2003 +VE7SKA,CN88GT,,,Mike,,4000lpm,01/01 +VE7US,CN88IG,,,Reg,,,2003 +VE7VVW,DO00IF,,,Ron,,144: 160W KLM2m22c - 432: 100W MBM88,01/02 +VE7ZD,CN89LG,,,,,,2003 +VE9AA,FN65RS,,,Michael,,,01/02 +VE9PA,FN65SU,,,,,,2003 +VK1VP,QF44NR,EME,,,,,89 +VK2ALU,QF55KN,EME,,,,,2003 +VK2BE,QF56NC,EME,,,,,2003 +VK2CZ,QF56NH,,,David,,,2003 +VK2DJG,QF59VK,,,Gordon,,,2004 +VK2FLR,QF56OD,,,,,,2003 +VK2JKK,QF69LO,,,Wayne,,,2003 +VK2KU,QF55AI,EME,,Guy,,144: 400W 4x 12el,01/05 +VK2XCI,QF27WD,,,Norm,,,2003 +VK3AMZ,QF22IC,EME,,arie,,,1993 +VK3AXH,QF12WJ,,,Ian,,,2003 +VK3CY,QF13,EME,,,,,04/00 +VK3HY,QF22PD,,,Gavin,,,2003 +VK3HZ,QF22ME,,,David,,,2003 +VK3OT,QF12AG,EME,,steve,,,1994 +VK3UM,QF22RO,EME,,,,,2003 +VK4AFL,QG62OJ,EME,,,,,2003 +VK4APG,QG62LP,EME,,peter,,,1994 +VK4CDI,QG52XH,,,Phil,,144: 10el 170W,01/05 +VK4JSR,QG62NM,,,Scott,,50: 100W 8el - 144: 400W 12el - 432: 100W 28e,10/00 +VK4KAZ,QG63KQ,EME,,,,,2003 +VK5DK,QF02JE,,,Colin,,,2003 +VK5MC,QF02EJ,EME,,,,,89 +VK5OA,QF02JE,,,Kevin,,,2003 +VK6KDD,OG99HP,EME,,Ron,,LT2S LT6S TS850,01/05 +VK7MO,QE37PC,EME,,,,,12/04 +VK9CD,NH87JU,,,,,,2003 +VK9XW,OH29TI,,,,,,2003 +VP2EC,FK88LD,,,,,,2003 +VP2MIS,FK86UV,EME,,,,,11/00 +VP2MR,FK86VS,,,,,,2003 +VP5JM,FL31VS,,,,,,2003 +VQ9LA,MI62,EME,,,,,09/02 +VS6BI,OL72CG,,,,,,2003 +VT3AT,RJ38UR,,,,,,2003 +W0AH,DM78LX,EME,,Doug,,,01/01 +W0AUS,EN35KA,,,,,,2003 +W0BJ,DN91OD,,,,,,2003 +W0DB,EN11VD,,,Joe,,144: 50W 2x 8el,09/01 +W0DEN,EN41,,,,,,2003 +W0DFK,EM47LX,,,,,,2003 +W0DJM,EN25XK,,,,,,2003 +W0DQY,EM48RS,,,Glenn ""Smitty",,144: 350W 4x8el - 432: 175W 2x88el - 1296: 10,01/01 +W0EKZ,EM17,,,,,,2003 +W0ETT,DM79,,,,,,2003 +W0FMS,EN42EB,,,,,,2003 +W0FY,EM48,,,,,,2003 +W0GAJ,EN11,,,,,,2003 +W0GC,EN14SQ,,,Gary,,,2003 +W0GHZ,EN34,,,,,,2003 +W0GN,EN42,,,,,,2003 +W0GR,EM38AX,,,,,,2003 +W0HHE,DM79,EME,,,,,2003 +W0HL,EM27,,,,,,2003 +W0HRG,EM39,,,,,,2003 +W0IC,DM79MR,,,,,,2003 +W0IOH,DM78OU,,,Bill,,,01/01 +W0IPL,DN62UU,EME,,,,,2004 +W0ITB,DM79,,,,,,2003 +W0IZ,EN41,,,,,,2003 +W0JRP,EM27RB,,,,,,2003 +W0KFG,DN96OT,,,Dick,,,09/01 +W0KJY,DN71,EME,,,,,89 +W0KRX,EN34LM,,,,,,2003 +W0LD,DM78,,,Lauren D.,,144: 1KW 2x16el,04/01 +W0LER,EN35IE,,,John,,,01/01 +W0LMD,DM79,,,,,,2003 +W0MD,EN36,,,,,,2003 +W0MXY,DM78,,,,,,2003 +W0NKN,EN42,,,,,,2003 +W0OF,EM12,,,,,,2003 +W0OHP,EN10,,,,,,2003 +W0OHU,EN34OA,,,,,,2003 +W0OZI,EN35,,,,,,2003 +W0OZL,DN60FM,,,,,,2003 +W0PEC,EN34,,,,,,2003 +W0PHD,EN18OE,,,Wally,,144: 190W 16lbx,09/01 +W0PPF,EN41,,,,,,2003 +W0PT,EM28OD,EME,,Bill,,144: 4X 19XXX and 1.2kw,12/00 +W0PW,EM26TW,,,,,,2003 +W0QIN,EN34,,,,,,2003 +W0RAP,EN42EB,,,,,,2003 +W0RGU,EN35,,,,,,2003 +W0RKP,EN31,,,,,,2003 +W0RRY,EM26BX,EME,,Charlie,,144: 700W 9elM2 0.6db Preamp,01/01 +W0RSJ,FN20JQ,,,,,,2003 +W0RTZ,DM79,,,,,,2003 +W0RWH,EM39SX,EME,,Donald,,144: 16x19elonly SSB-MS,10/98 +W0SD,EN13GQ,EME,,,,,89 +W0SII,DN71,,,,,,2003 +W0TJ,EN10,,,,,,2003 +W0UC,EN35,,,,,,2003 +W0UHF,EN32,,,,,,2003 +W0UN,EL07FV,,,,,,2003 +W0UT,EM17,,,,,,2003 +W0VB,EN34SB,,,Terry,,,01/01 +W0VD,EM27UD,EME,,Dan,,144: TS790A 8877 (1-5KW) 18elM2,01/01 +W0VX,EM12,,,,,,2003 +W0WGZ,EN42,,,,,,2003 +W0WTG,EM48,,,,,,2003 +W0XG,EN34QX,,,,,,2003 +W0YPT,EN43,,,,,,2003 +W0ZJY,EM28,,,,,,2003 +W0ZQ,EN34IU,,,,,,2003 +W0ZZQ,EM26,,,,,,2003 +W1CDO,CN87XF,,,John,,,2004 +W1COT,FN31ST,,,Bob,,,2004 +W1CQD,FN34MR,,,Clair,,,2004 +W1FIG,FN41GV,EME,,Maarten,,50: 1KW 2x7el - 144: 9el M2 1KW 0.8db - 22,01/01 +W1FM,FN42,,,,,,2003 +W1GHZ,FN42,,,Paul,,,01/01 +W1HY,FN41HV,,,Paul,,,2003 +W1IPL,DN62UU,EME,,,,,02/05 +W1JR,FN42HN,EME,,,,,89 +W1LP,FN41SR,,,Clint,,144: 1KW 2x2M9,01/01 +W1QC,FN42HU,EME,,,,,2003 +W1REZ,FN55,,,,,,10/00 +W1RZF,FN42FC,,,arthur,,,2004 +W1TE,FN42EN,,,Charley,,50: 1KW 7el - 144: 1KW 22el - 432: 44el,08/01 +W1UHE,FN41,,,,,,2003 +W1VT,FN33KE,,,,,,2003 +W1XE,DM79GW,,,,,,2003 +W1XR,FN42HW,,,,,,2003 +W1ZC,FN42DR,,,Dick,,144: 1KW - 432: 36el,01/02 +W1ZX,FM18LG,,,,,,2003 +W2AXU,FN20OG,,,,,,2003 +W2BZY,EL98HR,,,Bob,,50: 700W 7el - 144: 160W 17el - 222: 120W 23e,09/01 +W2CRS,DM78,,,,,,2003 +W2DRZ,FN02LA,EME,,,,,01/01 +W2ETI,FN21,EME,,,,,2003 +W2HBA,FN31TC,,,GEORGE,,,2003 +W2MPK,FN23BA,EME,,Don,,,10/99 +W2SZ,FN22,,,,,,2003 +W2UHI,EN73AH,EME,,,,,2003 +W2VU,FN20,,,,,,2003 +W2WD,FN20TP,EME,,Warren,,432: 20ft portable dish 1KW,08/00 +W3ARS,FK88LC,,,,,,2003 +W3BDP,FM29,,,,,,2003 +W3BW,FN30AS,,,,,,2003 +W3EME,CN85BE,EME,,Brian,,144: Icom 746 MGF2430A MGF1302 4x14el X-P,01/05 +W3HQT,FN54,,,,,,2003 +W3IKE,FM18SW,,,,,,2003 +W3IOA,EM00,,,,,,2003 +W3IWI,FM19ME,,,,,,2003 +W3KJ,FN20HG,,,Joseph,,,2003 +W3MRG,FN10UB,,,,,,2003 +W3RY,FN10LL,,,,,,2003 +W3SDZ,FN11,,,,,,2003 +W3SE,DM03WW,,,Wes,,50: 50W 5el - 144: 150W 12el,04/02 +W3SZ,FN20AH,,,Roger,,144: 150W 9el - 432: 100W 9wl. - 1296: 10W 4x,01/01 +W3TMZ,EL88SU,,,,,,2003 +W3TWO,FM28CA,,,Daniel C.,,144: 400W M2,07/01 +W3UUM,EL29PW,,,Matt,,144: 170W 12el,01/02 +W3VH,FN32HG,EME,,,,,2003 +W3WJR,FN20LL,,,,,,2003 +W3XO,EM00KD,,,,,,2003 +W3XS,FN10,EME,,,,,2000 +W3ZZ,FM19JD,,,Gene,,50: 1-5kw 8el 144: 1-5kw 17 el - 432: 1Kw 33e,07/01 +W4ABC,EL87PT,,,Jon,,50: 100W 7el qubical quad,01/01 +W4AD,FM18IP,EME,,Jack,,,07/01 +W4AME,EM75FG,,,,,,2003 +W4CHA,EL88QA,,,Chuck,,50: 150W 9el M2 - 144: 1-5KW 2M18xxx - 432: 5,01/01 +W4CN,EM17JP,,,Mike,,,09/01 +W4DEX,EM95,EME,,,,,2003 +W4ET,EM56TP,,,RON,,,2004 +W4FJ,FM17,,,,,,2003 +W4GHW,EM81EQ,,,Greg,,,2004 +W4HTB,EM66,,,,,,2003 +W4KXY,EM84,,,James,,,01/01 +W4LNG,EM73VK,,,,,,2003 +W4MOP,EM78,,,,,,2003 +W4OZK,EM73,,,,,,2003 +W4PJV,EM65SU,,,,,,2003 +W4PZA,EM66NC,,,,,,2003 +W4RBO,EL99KF,,,John,,,2003 +W4RDI,EL96BQ,EME,,,,,2003 +W4REB,EM78,,,,,,2003 +W4RFR,EM65,,,,,,2003 +W4SM,FM08QA,EME,,,,,2004 +W4SW,FM18IW,EME,,,,,06/00 +W4TAS,EL87UW,,,,,,2003 +W4TJ,FM08,EME,,,,,06/00 +W4TNV,FM05XD,,,,,,2003 +W4UDH,EM52AG,,,Smitty,,,01/01 +W4UDQ,EM55DB,,,,,,2003 +W4UE,EM90GC,,,john,,,12/97 +W4VHF,EM95,,,,,,2003 +W4WD,DN40AM,,,,,,2003 +W4WDH,EM83,,,,,,2003 +W4WHN,EL94HP,,,Dean,,,09/01 +W4WSR,EL85CB,,,Ott,,,01/01 +W4WTA,EM83XJ,,,Ace,,144: 160W 18el,11/01 +W4XP,FM18EW,EME,,Chuck,,.100.200,08/01 +W4ZD,EL79HH,EME,,bev,,,1993 +W4ZPG,EM73WU,,,,,,2003 +W4ZRZ,EM63SS,,,,,,2003 +W5AK,EL29,,,,,,2003 +W5AL,DM95XB,,,Len,,50: 150W - 144: 1KW 18el M2 - 222: 130W - 432,01/01 +W5CTV,EL49WU,,,,,,2003 +W5DBY,EM12,,,,,,2003 +W5DID,EL29,,,,,,2003 +W5DKE,EM12LL,,,,,,2003 +W5DS,EM15,,,,,,2003 +W5ETG,EM12LS,,,,,,2003 +W5FR,EM12KX,,,Harold,,,2003 +W5FYZ,EM32,,,,,,2003 +W5GDL,EM15GM,,,,,,2003 +W5GEL,EL17,,,,,,2003 +W5GG,EM12,,,,,,2003 +W5GKO,EM35,,,,,,2003 +W5GNB,DM73VB,,,Gary,,,2003 +W5GVE,EM01,,,,,,2003 +W5HES,EM12HQ,,,,,,2003 +W5HPT,EM12,,,,,,2003 +W5HTZ,EM16,,,,,,2003 +W5HUQ,EM35BC,,,John,,,07/01 +W5ITI,EM32,,,,,,2003 +W5IU,EM12HP,,,,,,2003 +W5IXR,DM76,,,,,,2003 +W5JBP,EM12,,,,,,2003 +W5KI,FM29PU,,,,,,2003 +W5KLF,EM31PJ,,,Keith,,,2003 +W5KQJ,EM12BS,,,,,,2003 +W5LBT,EM40KV,EME,,R.A. Bob,,,08/01 +W5LUA,EM13QC,EME,,,,,2003 +W5LUU,EL09QO,EME,,Derwin,,144: FT736r 1.5KW 4x5wl - 432: 1.5KW 1x5wl,08/01 +W5MRF,EM12,,,,,,2003 +W5NFC,EM10,,,,,,2003 +W5PIC,EM16LJ,,,,,,2003 +W5PLN,EM12,,,,,,2003 +W5RCI,EM44UF,EME,,,,,89 +W5SNX,EM73WT,,,Dick,,50: 150Watts 6M7JHV @65ft - 144MHz : 500Wat,01/02 +W5SXD,EL29,,,,,,2003 +W5TCD,EM 12,,,,,,2003 +W5TVG,EM26,,,,,,2003 +W5UC,EM21PI,EME,,Mike,,,01/05 +W5UMB,EL17AX,,,,,,2003 +W5UN,EM23MG,EME,,Dave,,144: 32x 2M5WL129,12/04 +W5UPR,EL29,,,,,,2003 +W5UWB,EL17AX,EME,,John,,50: 1000W 6el - 144: 1500W 17el - 222: 17el 1,02/05 +W5VUY,EM40,,,,,,2003 +W5WJP,EM12HO,,,,,,2003 +W5YUO,EM12,,,,,,2003 +W5ZN,EM45DH,EME,,Joel,,,12/00 +W6CAP,DM14,,,Cap,,144: FT726r 1KW 2yagis,01/01 +W6CPL,DM04,,,,,,2003 +W6FC,DM03,,,,,,2003 +W6HD,CM98PF,EME,,,,,2003 +W6IZU,CM98NO,,,,,,2003 +W6KH,CM97,,,,,,2003 +W6MT,CM87XH,,,,,,2003 +W6NQ,DM13,,,,,,2003 +W6OMF,CM98AK,,,Larry,,144: 650W 2x17el - 222: 120W 7wl - 432: 17,01/01 +W6OYJ,DM12,,,,,,2003 +W6QT,CM87,,,,,,2003 +W6TE,DM06CT,EME,,,,,2003 +W6US,DM13JA,,,,,,2003 +W6WE,CM95RD,EME,,mike,,,11/03 +W6YLZ,DM04RF,,,Mike,,50: 80W 4el - 144: 150W 14el,01/01 +W6YX,CM87WJ,EME,,,,,2004 +W7ALW,DN36AT,EME,,Barrie,,50: 8877 9el - 144: 400W 2x18xxx - 432: 200W,01/01 +W7AMI,DN13VO,EME,,Terry,,4x 28el 750W,01/05 +W7ANF,DM43AS,,,Jim,,144: 15W Vertical,07/01 +W7AV,CN96QN,,,,,,2003 +W7BBM,DM42MB,EME,,,,,2003 +W7CI,DM41UN,EME,,,,,89 +W7CNK,EM15FI,,,,,,2003 +W7CQ,CN83JX,,,Jimmy,,,2003 +W7CS,DM42OO,EME,,Chuck,,50: 1.5KW 7el - 144: 500W 4x13el - 432: 500W,08/01 +W7DHH,DM48LL,,,,,,2003 +W7DWW,CN87,,,,,,2003 +W7EME,CN85BE,EME,,Jeremy,,144: FT736r Mutek DSP Preamp 8877 8x8 wl,01/05 +W7EW,CN84LV,,,Lew,,FT1000MP 144: 1-5KW,08/03 +W7FG,EM26BQ,EME,,Gary,,50: 100W 6el - 144: 1.5KW 80el MGF1302,09/02 +W7FN,CN88SA,EME,,,,,89 +W7GBI,DM43AN,EME,,,,,2003 +W7GJ,DN27UB,EME,,Lance,,50: 4x 9el 1.5KW 144: 16x 17el 1.5KW MGF1,11/04 +W7GTM,CN87VU,,,Grant,,,2003 +W7GZ,DM42NF,,,,,,2003 +W7ID,DN13UN,EME,,,,,89 +W7IUV,DM07DG,EME,,Larry,,,01/05 +W7IXL,DM03US,,,,,,2003 +W7JF,DN55RS,,,,,,2003 +W7JW,EN82HJ,,,,,,2003 +W7KK,DM18,EME,,OP: N7MSD NS9E,,144: 2 x 18XXX at 40'/50' KW Output FT847,04/01 +W7LD,DM78OV,,,,,,2003 +W7MEM,DN17NT,EME,,Mark,,50: 600W 9el - 144: FT726r 2002A 800W 4x5wl,09/01 +W7NS,DM33WP,,,,,,2003 +W7NTF,CN87TB,,,Gary,,50: 160W 6el - 144: 160W 13elMSDSP 10000lpm,01/01 +W7OJT,DM26KB,,,Dave,,,2005 +W7PW,DM09JI,,,,,,2003 +W7QX,DM44AR,EME,,Jerry,,1296: 10 1/2Dish 75Watt,03/04 +W7SZ,CN85UO,EME,,Larry,,432: 4x32el X-pol 1.5KW - 1296: 3m dish 500W,01/00 +W7TVF,DM26,EME,,,,,2003 +W7VQQ,DM19,EME,,,,,2003 +W7VX,DM03TV,,,,,,2003 +W7XU,EN13LM,,,Arliss,,144: 1-5KW,08/03 +W7ZRC,DN13,EME,,,,,2003 +W8ATH,EN80,EME,,,,,2003 +W8BYA,EN70JT,EME,,Gedas,,144: 2x 17elB2 650W Preamp,02/05 +W8CM,EM13,,,Mike,,50: IC575H 800W 7el - 144: IC275H 800W 4x9el,01/02 +W8CRZ,EN80TB,,,Rob,,,2004 +W8DQ,EM79NC,,,Robert,,,2004 +W8HOM,EN71LA,,,,,,2003 +W8IDU,EN83,EME,,,,,89 +W8KSE,EM80,,,,,,2003 +W8LON,EN73JB,EME,,Lon,,,02/05 +W8MGJ,EM79,,,,,,2003 +W8MM,EM79SD,,,,,,2003 +W8MQW,EN72UR,EME,,,,,2003 +W8OUD,EM79RJ,,,,,,2003 +W8PAT,EN81VG,EME,,,,,12/04 +W8SCA,EM79UN,,,Phillip,,,2004 +W8TAH,EN91CD,,,Timothy,,,2003 +W8TL,FM09BM,,,Burt,,50: FT767 1KW 11el - 144: FT736 1KW 17B2,01/01 +W8TN,EM98AK,EME,,Clark,,,07/01 +W8VHF,EN64,,,,,,2003 +W8WN,EM77BQ,EME,,Shelby,,50: 600W 4el - 144: 1-2KW 4x16el KLM - 432: 1,07/01 +W9BLI,EN64DK,,,,,,2003 +W9BN,EM34TT,,,,,,2003 +W9CGI,EN60WC,,,Dave,,,2003 +W9DWP,EN52,,,,,,2003 +W9EME,EN54AL,,,,,,2003 +W9EQI,EM49,,,,,,2003 +W9FX,EM57MX,,,Brad,,144: 1KW 17el,07/01 +W9FY,EN52,,,,,,2003 +W9FZ,EN43,,,,,,2003 +W9GIR,EN44OG,,,,,,2003 +W9GM,EN43JU,,,Ken,,50: 100W 6el - 144: 100W 13el,05/02 +W9HLY,EN70NT,,,,,,2003 +W9IIX,EN61DR,,,,,,2003 +W9IP,FN24KO,,,,,,2003 +W9JMS,EM69,,,,,,2003 +W9JN,EN54DN,,,John,,50: 1KW 6el - 144: 1KW 2x17B2 - 222: 150W 7wL,01/02 +W9JUV,EN52,,,,,,2003 +W9KFB,EN60,,,,,,2003 +W9KHH,EN63AH,,,,,,2003 +W9LT,EN52XG,,,Thomas,,,2004 +W9NHE,EN53,,,,,,2003 +W9NLP,EN52WN,,,,,,2003 +W9NTP,EM79,,,,,,2003 +W9NWR,EN55FW,,,Charles,,,2004 +W9RVG,EM57RN,EME,,Marshall,,IC746 IC910H FT736,02/05 +W9VA,EN62,,,,,,2003 +W9VNE,EM79,,,,,,2003 +W9XA,EN51,,,,,,2003 +W9XT,EN53,,,Gary,,,1998 +W9ZIH,EN51NV,,,,,,2003 +WA0AUQ,EN41,,,,,,2003 +WA0BWE,EN34LX,,,Gary,,,1998 +WA0CQG,EN34,,,,,,2003 +WA0DXZ,EN41,,,Bob,,,01/97 +WA0ETH,EM38PH,,,,,,2003 +WA0JDU,EN34,,,,,,2003 +WA0JMP,EN34,,,,,,2003 +WA0JYF,EN42,,,,,,2003 +WA0MWW,EN30VX,,,Ron,,,2004 +WA0NOK,EM28,,,,,,2003 +WA0QII,CM97,,,,,,2003 +WA0RDX,EM17,,,,,,2003 +WA0RJT,EN41,,,,,,2003 +WA0SJR,EM56,,,,,,2003 +WA0TAQ,EN61QU,,,Jonathan,,,2004 +WA0VSL,DM79OB,,,Doug,,50W,08/04 +WA0WPJ,EM29,,,,,,2003 +WA0WQI,EM55AA,,,,,,2003 +WA0WRI,EN10,,,,,,2003 +WA1FVJ,FN31QS,,,Ed,,144: 13B2 40W,08/04 +WA1HOG,FN42AS,,,Dennis,,144: 100W,01/01 +WA1JOF,FN44XV,EME,,,,,2003 +WA1JXN,DN27UB,,,,,,2003 +WA1MBA,FN32SL,,,,,,2003 +WA1MEK,FN42,,,,,,2003 +WA1MKE,EN70GH,,,,,,2003 +WA1OFR,FN42MA,,,Bob,,,01/01 +WA1TMQ,FN31OJ,,,john,,,2003 +WA2ALV,FN33,,,,,,2003 +WA2FGK,FN21ML,EME,,Herb,,144: 4x17B2 Ant.,01/01 +WA2FUZ,FN22XJ,,,,,,2003 +WA2GFP,FN20,,,,,,2003 +WA2JGY,DM79,,,,,,2003 +WA2LSE,FN20,,,,,,2003 +WA2LTM,FN20,,,,,,2003 +WA2VOI,EN35JA,,,,,,2003 +WA2YJF,FN30FR,,,,,,2003 +WA3BZT,FM29EP,EME,,Ed,,144: IC746 8877 1-5KW 4x2MXP28,07/01 +WA3FFC,FN01,EME,,,,,2003 +WA3KQA,EM98LL,,,,,,2003 +WA3RQD,FM19QK,,,Jim,,,2003 +WA3SIX,FN10UB,,,,,,2003 +WA3USG,FN10LL,,,,,,2003 +WA4ALJ,EM63,,,,,,2003 +WA4CHA,EL88QA,,,,,,2003 +WA4DFS,EM96,,,,,,2003 +WA4EWA,EM63LL,,,,,,2003 +WA4HEI,EN65UX,,,,,,2003 +WA4HFN,EM55AB,,,Damon,,,09/01 +WA4JQS,EM77TA,,,Anthony ""Tony",,144: 2x33el 2.5WL50.10050.125,08/01 +WA4LBT,EM95,EME,,,,,2003 +WA4OFS,EL98,EME,,,,,2003 +WA4PCS,EM78,,,,,,2003 +WA4PGJ,EM55,,,,,,2003 +WA4PGM,FM07TI,,,Kyle,,144. 170W 17el,1998 +WA4VWR,EM55,,,,,,2003 +WA4YRK,EM75WV,,,Dave,,IC910 IC756,05/02 +WA4ZTK,EM85,EME,,,,,2003 +WA5CJG,EM15,,,,,,2003 +WA5DJJ,DM62PH,,,,,,2003 +WA5ETV,EM15,EME,,,,,2003 +WA5ICW,EM26,EME,,,,,2003 +WA5IYX,EL09,,,,,,2003 +WA5JAT,EM12ET,,,,,,2003 +WA5JCI,EM21,,,Pete,,,01/01 +WA5KBH,EM30HL,,,,,,2003 +WA5NFC,EM45,,,,,,2003 +WA5TKU,EM13II,,,,,,2003 +WA5TNY,EM12,,,,,,2003 +WA5UAJ,EM32,,,,,,2003 +WA5UFH,EL19,,,,,,09/01 +WA5VKS,EM13PA,,,,,,2003 +WA5WCP,EM12,,,,,,2003 +WA5YOU,EM53EE,,,,,,2003 +WA5YWC,EM13OB,,,,,,2003 +WA5ZIB,EL29,,,,,,2003 +WA6BJE,DM13,EME,,,,,2003 +WA6BYA,CM86,,,,,,2003 +WA6EIW,EM15DI,,,,,,2003 +WA6ERB,DM79,,,,,,2003 +WA6GXF,DM06DX,,,,,,2003 +WA6IJZ,DM44KM,,,,,,2003 +WA6KBL,CM97AG,EME,,,,,2003 +WA6KOU,DN17,,,,,,2003 +WA6LHD,CM88XF,,,Ed,,,01/97 +WA6OWM,DM03TU,,,Ray,,50: 100W Loop - 144: 100W 15el155 3000 MSDSP.,09/01 +WA6PY,DM13LA,EME,,Paul,,2x20el VE7BQH 700W,01/05 +WA6TTY,DM78,,,,,,2003 +WA6UCT,DM34,,,,,,2003 +WA6YGB,DM04WA,,,Howard,,,2003 +WA6ZKY,CM98,EME,,,,,2003 +WA7ADK,DN31WD,EME,,Jerry,,,01/05 +WA7BJU,CN85,,,,,,01/05 +WA7CJO,DM33XL,EME,,,,,2003 +WA7EPU,DM62,,,,,,2003 +WA7GSK,DN13SO,,,Al,,144: 300W 2x16el,01/02 +WA7HQD,DN31XA,,,Lee E.,,,1998 +WA7KHO,DN47,,,,,,2003 +WA7TZY,CN87,EME,,,,,12/00 +WA8CLT,EN80LA,EME,,John,,144: 1500W 4x9M2,08/03 +WA8EUU,EN82,,,,,,2003 +WA8MIL,EN63,,,,,,2003 +WA8NLC,EM73,,,,,,2003 +WA8OGS,EM79,,,,,,2003 +WA8RJF,EN91IQ,,,Tony,,,12/96 +WA8VPD,EN82,EME,,,,,2003 +WA8WZG,EN81OM,EME,,Tom,,.144,01/01 +WA8YTB,EN72JH,,,,,,2003 +WA9BTT,EN40,,,,,,2003 +WA9BVS,EM69WV,,,,,,2003 +WA9ENA,EN42,,,,,,2003 +WA9FWD,EN53,EME,,,,,2003 +WA9HCZ,EN43JV,,,,,,2003 +WA9HIR,EN61CU,,,,,,2003 +WA9HUV,EN51,,,,,,2003 +WA9JML,EN51PW,,,Steve,,,01/01 +WA9NBU,DM14JG,,,Bob,,,2004 +WA9NRB,EM48,,,,,,2003 +WA9O,EN62BX,,,,,,2003 +WA9OUU,EM89,EME,,,,,2003 +WA9PAM,EN44,,,,,,2003 +WA9PSI,EN51,,,,,,2003 +WA9PZL,EM32DN,,,,,,2003 +WB0CLL,EM28,,,,,,2003 +WB0CQO,EN31,,,,,,2003 +WB0DBS,EM17,,,,,,2003 +WB0DGF,EN10PT,,,,,,2003 +WB0DRL,EM18CT,EME,,,,,89 +WB0GAZ,DM79,,,,,,2003 +WB0GGM,EN34,EME,,,,,89 +WB0HXY,EN10,,,,,,2003 +WB0ITA,EM29,,,,,,2003 +WB0IUT,EN10,,,,,,2003 +WB0LJC,EN34JV,,,,,,2003 +WB0MLL,EN35,,,,,,2003 +WB0NCR,EN42,,,,,,2003 +WB0OOL,EM48,,,,,,2003 +WB0QGH,EM84,,,,,,2003 +WB0QIY,EN10,,,,,,2003 +WB0QQS,EN10,,,,,,2003 +WB0SIP,EN10,,,,,,2003 +WB0TEM,EN12RT,EME,,,,,89 +WB0VGI,EN34LL,,,,,,2003 +WB0YFL,EN42,,,,,,2003 +WB0YRQ,EN12,,,,,,2003 +WB0ZJP,EM48,,,,,,2003 +WB1FLD,FN42IW,,,David W.,,,01/02 +WB1GQR,FN33KL,,,Mitch,,,2004 +WB2BYP,FN13FF,EME,,,,144: 4x 9el 8877,01/05 +WB2LSP,FM29DP,,,,,,2003 +WB2OYC,FM29NN,,,,,,2003 +WB2QLP,EL96DE,,,Jordan,,50: 400W- 144: 400W- 432: 170W,01/01 +WB2SEB,FN31DD,,,,,144: 175W 13el - 222: 100W 10el,03/02 +WB2VVV,FN21,EME,,,,,2000 +WB4AXQ,EM64,,,,,,2003 +WB4BKC,EL96,EME,,,,,89 +WB4ECR,EM66QF,,,Michael,,,2004 +WB4EFZ,EM94,,,,,,2003 +WB4GTB,EM73VW,,,john,,,2003 +WB4JEM,EL89QU,,,Jon,,50: 6elQuad 500W - 144: 16x10el preamp 1-5KW,01/01 +WB4KMH,EM75RV,,,Phil,,,01/01 +WB4LHD,EM55DB,EME,,Randy,,,02/05 +WB4NFS,FM18HP,,,Jack,,144: 400W,01/97 +WB4UNA,EM93LV,,,Randy,,ft-736Rr FT847 50: 400W 617 - 144: 250W 17B2,01/05 +WB5AFY,EM04ID,EME,,Dan,,,02/05 +WB5APD,EM84AK,,,Bob,,144: 1.5kw 17 el,01/01 +WB5DSH,EM15,,,,,,2003 +WB5IPM,EM12,,,,,,2003 +WB5KDC,EM15,,,,,,2003 +WB5KYK,EM51JQ,,,,,,2003 +WB5LBT,EM40LK,EME,,R.A. Bob,,,01/01 +WB5NIF,EM42AM,,,,,,2003 +WB5ROR,EM23,,,,,,2003 +WB5TBL,EM12,,,,,,2003 +WB5TCO,EN64,,,,,,2003 +WB5VPC,EM12,,,,,,2003 +WB6WLR,DM13AT,,,Wayne,,144: 8877 2x17B2 - 432: 8938 2xFO33,01/01 +WB7OSE,CN87XT,,,,,,2003 +WB8AGV,EN34,,,,,,2003 +WB8IFM,EM79WS,,,,,,2003 +WB8NUT,EM79UB,,,Duffy,,,2003 +WB8SKP,EN66UC,,,DENIS,,,2004 +WB8TFV,FM19AL,,,,,,2003 +WB8WTB,EN72,,,,,,2003 +WB8XX,EM79,,,Kevin,,,12/00 +WB9BWP,EN52,,,,,,2003 +WB9GKA,EM58,,,,,,2003 +WB9HLM,EN52IW,,,,,,2003 +WB9IHS,EM69,,,,,,2003 +WB9IIV,EM69UL,,,Harry,,,2004 +WB9OGM,EN61,,,,,,2003 +WB9OWN,EN52,,,,,,2003 +WB9SNR,EN62AC,,,,,,2003 +WB9SPT,EN71AS,,,,,,2003 +WB9USX,EM79,,,,,,2003 +WB9UWA,EN50KK,EME,,Jim,,144: 4x UWA12's 18.5 dbd low temperature MC2,10/00 +WB9ZAI,EN61GM,,,,,,2003 +WC9C,EM69HH,,,,,,2003 +WD0AAD,DM79,,,,,,2003 +WD0ALN,EM32,,,,,,2003 +WD0APF,EN10,,,,,,2003 +WD0BQM,DN81CW,,,,,,2003 +WD0CJM,EN25FH,,,,,,2003 +WD0EDO,EN10TL,,,,,,2003 +WD0FCH,EM48,,,,,,2003 +WD0GML,EM48,,,,,,2003 +WD0HOJ,EN41,,,,,,2003 +WD0L,EM17IH,,,,,,2003 +WD0M,DM67KG,,,Joe,,,2004 +WD4ECK,CN82,,,,,,2003 +WD4FAB,EL98HP,,,,,,2003 +WD4KPD,FM15MM,,,David Michael,,,05/02 +WD4MUO,DM79GX,,,,,,2003 +WD4OZN,EM55LK,,,,,,2003 +WD5AGO,EM26BD,EME,,Tommy,,,03/00 +WD5CAN,EM36,,,,,,2003 +WD5CAP,EM36,,,,,,2003 +WD5DJT,EM12OO,,,,,,2003 +WD5EWD,EM22,,,,,,2003 +WD5G,EM05,,,,,,2003 +WD6BXE,DM22,,,,,,2003 +WD8BYA,FM18IP,,,,,,2003 +WD8SDL,EM79,,,,,,2003 +WD9BGA,EN53BA,,,,,,2003 +WD9EGE,EN64,,,,,,2003 +WD9EXD,EN61,,,,,,2003 +WD9FBL,EN61BV,,,,,,2003 +WD9IIX,EN61,,,,,,2003 +WE2Y,FN02SR,EME,,,,,2003 +WE4K,EM77BQ,,,,,,2003 +WE7L,DM41,,,,,,2003 +WE7P,DN13RP,EME,,,,,2003 +WE9D,EN52,,,,,,2003 +WE9Y,EN82EW,EME,,,,,02/05 +WF1F,FN42,,,,,,2003 +WF1R,FN32,,,,,,2003 +WF4R,FM16TS,,,,,,2003 +WF9M,EM79,,,,,,2003 +WH6LR,EM04LL,,,,,,2003 +WJ6T,DM05,,,Bob,,,1998 +WK9E,EN53,,,,,,2003 +WL7M,BO49IR,,,,,,2003 +WL7U,BP51,EME,,Mike,,50: 150W 5el - 144: 300W 2x10el - 432: 900W-,1998 +WM2Z,FN31SA,,,Warren,,,2004 +WM5Y,EN31,,,,,,2003 +WN4BML,EL89LL,,,,,,2003 +WN4KKN,EM10,,,,,,2003 +WN4M,EM66,,,Greg,,100W,01/04 +WO9S,EN61ET,,,,,,2003 +WP4G,FK68VG,EME,,Angel,,144: 1KW 2x2MX28P,10/00 +WP4O,FK68,,,Ed,,144: FT736r 400W 18ft langyagi preamp,01/01 +WQ0P,EM19VF,,,Greg,,,09/01 +WQ5S,EM13RC,EME,,Brad,,144: 12el 50W,02/05 +WQ5W,EM12FW,,,George,,,2004 +WR0F,EM29TC,,,,,,2003 +WR0I,EM17,,,,,,2003 +WR6S,DM14CP,,,,,,2003 +WR9W,EM68FA,,,,,,2003 +WS5R,DM95,,,,,,2003 +WT0W,EN34,,,,,,2003 +WV0K,EN13,,,,,,2003 +WV1K,FN41WR,,,Matt,,,2005 +WV2C,FN30,,,Tony,,144: IC706 180W 15el,1998 +WW2R,EM13QD,,,,,,2003 +WW4T,EM83,,,,,,2003 +WW8M,EN72,,,,,,2003 +WX9M,EN54FL,,,,,,2003 +WY0C,EM17IT,,,,,,2003 +WY0V,EN12,,,Gary,,,1998 +WY3G,EM55,,,,,,2003 +WZ1V,FN31MP,,,Ron,,144: 1kw 2x14el - 222: 500W FO16,01/01 +WZ8D,EM79UG,,,John A.,,50: 1-5KW 6el - 144: 1-5KW 18el,01/01 +WZ9D,EN51,,,,,,2003 +XE1AVM,DK79UA,,,,,,2003 +XE1GE,EK08,,,,,,2003 +XE1GRR,DL80IP,EME,,Tony,,FT736,11/04 +XE1XA,EK09,EME,,,,,2003 +XE2AT,DL81,,,Leon,,144: IC820 200W 13elonly SSB-MS,11/01 +YB0US,OI33JU,,,,,,2003 +YL1A,KO07UN,,,,,,05/03 +YL2GUI,KO06MM,,,Egils,,144: TS-570+FTV-250 9el 30W,03/04 +YL2HA,KO26CV,,,,,,05/04 +YL2KA,KO26AX,,,Jack,,,03/02 +YL2LW,KO26CW,,,,,,11/04 +YL2OK,KO37AS,,,,,,11/04 +YL2OW,KO26WL,,,Janis,,FT736R IC706MKIIG,01/05 +YL3DW,KO26CW,,,,,,11/02 +YL3GDF,KO26XM,,,Vilis,,,05/04 +YL3GDJ,KO26AX,,,,,,01/05 +YM3XC,KN30FC,,,OP: HB9DUR,,,11/02 +YO0IS,KN05PS,,,,,,1993 +YO2AMU,KN06OC,EME,,Doru,,144: 4x16el MGF1302 1KW,02/00 +YO2BBT,KN05WG,,,,,,06/04 +YO2IS,KN05PS,EME,,Suli I. ""Szigy",,144: 4CX250B 10el BF981 - 432: 4X150D 17el 3,06/02 +YO2LEA,KN06WK,,,Nelu,,144: IC-211 lin.Mirage B 215G - 6m and 70,03/01 +YO3DMU,KN34BJ,,,Codrut,,144: TS870 +Trsv 1KW MGF1302 16el.165,02/02 +YO3FFF,KN34CJ,EME,,Cristian ""Cristi",,144: TS450 Trvtr 100W B-310G GaAs Preamp 16el,01/05 +YO3IZI,KN34BK,EME,,Ciprian,,TS2000,01/04 +YO3JW,KN34CK,,,Stefan ""Pit",,144: 400W 16el F9FT 3P602A-2.088.222,04/00 +YO3KWJ,KN24,,,Op YO3JW,,,1993 +YO4AUL,KN44HE,,,Cornelius,,144: FT290r 200W 2x12el MGF1302.150 2000lpm,01/01 +YO4BZC,KN45AK,,,Dorucc,,IC 706 5 el delta loop HM PA 70W,10/04 +YO4FNG,KN44HE,,,Liviu,,144: 350W 6el LY,11/04 +YO4RFV,KN45AK,,,EUGEN,,,08/02 +YO4RXX,KN45AK,,,,,,07/03 +YO5AVN,KN34,,,I.,,,1993 +YO5BIM,KN07XB,,,Puiu,,,05/04 +YO5BWD,KN27GD,,,Aurel,,,08/00 +YO5DJM,KN17,EME,,josif,,,1993 +YO5KAI,KN16TE,EME,,Clubstation,,.149 DTR,06/99 +YO5KAV,KN16TS,EME,,Ion (Nelu),,.149.449,06/99 +YO5TE,KN16TS,EME,,Ion (Nelu),,144: 1KW 4x10el MGF1302.149,01/02 +YO5TP,KN16SS,,,Bela,,144: 40W 16el,11/04 +YO7CGS,KN15OA,,,,,1000lpm,08/97 +YO7CKQ,KN15OA,,,nimara,,,05/01 +YO7IV,KN24MT,,,Ion,,144: TS850 + Tcvr 2x4CX250b 800W 15el 9BV,05/03 +YO7VS,KN14VH,,,Dietmar A. ""Dick",,50: 2XQB3/300 2xBF981 5el LY J-Pol crossdipol,10/98 +YO8BSE,KN36EW,,,Costi,,.075,10/95 +YO8CYN,KN36LW,,,Mihai,,,08/01 +YP0A,KN27GD,,,OP YO5TE,,,1992 +YR0A,KN16TS,EME,,Ion (Nelu),,.149.449,06/99 +YR5A,KN16TS,EME,,Ion (Nelu),,.149.449,06/99 +YR99E,KN34,,,OP YO3JW,,,08/99 +YT1VP,JN94WG,,,Vlada,,TS440 FT225,10/04 +YT1VV,JN94US,,,Vasa,,.135.185,07/00 +YT1W,JN91,,,,,,1990 +YT4D,JN94CP,,,,,144: 250W 11el,08/00 +YT7AC,JN95,,,Stanko,,only SSB-MS,03/97 +YT7W,KN14CF,,,OP YU7AU,,,1993 +YT7WA,KN05EJ,,,OP: YU7MS YZ7UN,,144: 1KW 4x4el Loop 11el WU MGF1302.121,12/01 +YU1ADN,KN03KN,,,m.,,,06/96 +YU1AFS,KN04FT,,,,,,1992 +YU1AZK,KN04,,,,,144: 25W 2x11elonly SSB-MS,10/98 +YU1BT,KN03KN,,,,,.148,10/95 +YU1BW,KN04GT,,,Joco,,,04/02 +YU1CF,KN03QN,EME,,Goran,,144: FT736R IC746PRO 1500W 4x7el,01/05 +YU1EU,KN04DW,,,,,,08/98 +YU1EV,KN04CN,,,Moma,,,05/04 +YU1EXY,KN04FT,,,OP Zoran,,144: FT225rd 350W 16el F9FT MGF13022000lpm,01/02 +YU1HFG,KN02XX,,,,,,12/95 +YU1IO,KN04IQ,,,Milenko,,144: 600W 4x17el,11/97 +YU1L,KN02XX,,,,,,12/95 +YU1LA,KN04FR,,,Ivan,,144: IC746 17B2,04/03 +YU1OO,KN02XX,,,,,,1993 +YU1OS,KN04FS,,,,,144: FT225rd 100W 2x9el MGF1302only SSB-MS,11/99 +YU1S,JN94US,,,Mico 1HQR- Vasa 1VG,,144: 17el 400W.147 1000lpm,11/97 +YU1WP,JN94OM,,,Miroslav (Miro),,.420,07/96 +YU1ZF,KN03IR,,,,,,1991 +YU4AR,JN94AS,,,Zdravko,,144: TR9130 250W 10el PA0MS-ant PreampUHER 15,11/02 +YU7AA,JN95NS,EME,,,,,01/05 +YU7AAA,KN05FJ,,,RadioClub,,144: GS35B 4x10+2x10 el BVO 3WL,11/04 +YU7ACO,KN05QC,,,,,144: FT221r PA 200W 2x 10el. DJ9BV1500lpm,08/00 +YU7AJH,JN95WF,,,,,,1990 +YU7AR,KN05BW,,,Teodor ""Teo",,IC745- FT225RD- 144: 4x5wl MGF1412 YL1056,12/01 +YU7AU,KN04HV,,,ljubisa ""Ljube",,144: 250W 2x11el.093,12/01 +YU7AZX,KN04AX,,,Branislav,,,08/03 +YU7BCL,KN05FW,,,Nesa,,,12/97 +YU7BCX,KN05HP,,,,,,08/96 +YU7CV,JN95WK,,,,,,1995 +YU7EF,KN04HV,EME,,Popa,,FT847,07/04 +YU7EW,KN05HP,,,Istvan ""Pista",,144:500Watt 4x10el MGF1302109 2000lpm MSDSP,04/03 +YU7FF,KN05EP,,,,,,1994 +YU7FU,KN04HV,,,Nesa,,,08/04 +YU7KB,JN94XX,,,Branislav (Bane),,144: IC202 2x11el 800W Preamp (MGF1302).141,02/04 +YU7MS,KN05EF,,,Mihalj ""Miska",,144: 400/1KW 2x11el WU MGF13027000 lpm385,02/05 +YU7ON,KN04AX,,,Zoran,,144. TR751 4x11el 25W1000lpm.442,08/00 +YU7PS,KN05FJ,,,Pal ""Pali",,144: 400/1KW 2x11el WU MGF13027000lpm385,02/05 +YU7VA,KN05EJ,,,Voislav - Voja,,144: 100Watt 11el BFT 66.080 1000lpm.180,05/00 +YU8DM,KN02OQ,,,,,,01/05 +YV5ZZ,FK60SM,EME,,,,,01/05 +YZ1DO,KN04ER,,,,,only SSB-MS,08/99 +YZ1KU,KN04EU,,,Boza,,144: 10W 9el F9FTonly SSB-MS,05/03 +YZ7MON,JN95XA,,,Ilija,,144: TR751E 25W 2x11elonly SSB-MS.383,07/98 +YZ7UN,KN05EI,,,Ivanko,,144: 4x6el Loop 100W,01/01 +Z30B,KN01PA,EME,,Clubstation,,144: 1-5KW 4xYU0B (17-5db) MGF1302.142 150,08/00 +Z31DX,KN11GD,,,George ""Joe",,,06/99 +Z32UC,KN11CR,,,,,,01/05 +Z35Z,KN11CR,EME,,Dimitar ""Dime",,144: IC202 350W 4x4el Loop MGF1302 432: 15,12/04 +Z37CEF,KN01QA,,,Clubstation,,,11/99 +ZA0DXC,KN01,,,OP HG3DXC,,,1991 +ZB0W,IM76HE,,,,,,1993 +ZL1PE,RF74DG,,,,,,2003 +ZL1RS,RF73HD,,,,,,2003 +ZL3AAD,RE66GR,EME,,Graham,,,2003 +ZL3NW,RE66ho,EME,, +ZL3TY,RE57OM,EME,,Bob,,,01/05 +ZP4KFX,GG15LV,,,Giuseppe ""Pino",,,03/01 +ZR1ADI,JF95KU,,,Gilbert,,,01/02 +ZR1AEE,JF96IA,,,Peter,,,01/02 +ZR1EV,JF96IC,,,Shawn,,50: FT690r 200W 4el.200.200,11/96 +ZR1L,JF96HD,,,Chris,,,10/02 +ZR1TRD,JF96HC,,,Andre,,,01/02 +ZR1WZ,KF05QP,,,Werner,,,2004 +ZR2DX,KF26,,,Barry,,,02/02 +ZR5ADQ,KG50IA,,,Mike,,,01/02 +ZR6ABU,KG33XV,,,Craig,,,2003 +ZR6CRW,KG33,,,Craig,,,10/02 +ZR6DXB,KG33XX,,,Barry,,,10/02 +ZR6GE,KG43AR,,,Gavin,,,10/02 +ZR6KHJ,KG43CU,,,Ken,,,02/02 +ZS1EK,JF95FU,,,Bill,,,01/02 +ZS2ACP,KF26SA,,,Andre,,,02/02 +ZS2BWB,KF26TD,,,Ken,,,02/02 +ZS4KB,KG32,,,Johan,,,10/02 +ZS4NS,KG32IA,,,Nico ""Nick",,50: IC551D 6el 80W - QSL via N7RO,02/01 +ZS4TX,KG30BW,,,Bernie,,,01/02 +ZS5AV,KF69GX,,,,,,2003 +ZS5DJ,KG59AA,,,Dave,,,01/02 +ZS5LEE,KG50JF,EME,,Lee,,IC821 706MKIIG,01/05 +ZS5Y,JF59JR,EME,,Derek,,,02/05 +ZS6AVP,KG44OD,,,Clive,,,05/02 +ZS6AXT,KG33VV,EME,,Ivo,,,02/00 +ZS6BTE,KG33XV,,,Ian,,,10/02 +ZS6DTS,KG43AR,,,Dickie,,,10/02 +ZS6EGB,KG43BQ,,,Emil,,,10/02 +ZS6GER,KG33,,,Paul,,,02/02 +ZS6GPM,KG33XU,,,Graham,,,10/02 +ZS6HS,KG33XR,,,Bert,,,01/02 +ZS6JON,KG33VV,,,John,,,10/02 +ZS6NK,KG46RC,,,Paul,,,02/02 +ZS6OB,KG44DE,,,Pine,,,01/02 +ZS6RAD,KG44CA,,,Rad,,,10/02 +ZS6UT,KG44EF,,,Ed,,,01/02 +ZS6WAB,KG46RC,EME,,,,,01/05 +ZS6WB,KG44EE,,,Hal,,,05/02 +ZS6WI,KG46RC,,,Will,,,2003 +ZS6Y,KG33WU,,,Etienne,,,02/02 +ZZZZZZ,End-of-Database,VHF-MS-DATABASE-Viewer © 2002/2005 by DG0KW diff --git a/CVS/Entries b/CVS/Entries new file mode 100644 index 000000000..6e32049da --- /dev/null +++ b/CVS/Entries @@ -0,0 +1,172 @@ +/Announce.txt/1.1.1.1/Tue Nov 29 21:01:13 2005// +/Audio.f90/1.11/Wed Dec 21 17:35:26 2005// +/CALL3.TXT/1.2/Mon Dec 19 15:29:25 2005// +/GeoDist.f/1.2/Mon Dec 19 15:29:25 2005// +/JT65code/1.2/Mon Dec 19 15:29:25 2005// +/JT65code.f/1.2/Mon Dec 19 15:29:25 2005// +/JT65code_all.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/KVASD/1.1/Thu Dec 22 16:28:01 2005/-kb/ +/LICENSE.TXT/1.1/Fri Dec 16 19:34:15 2005// +/Makefile/1.1.1.1/Tue Nov 29 21:01:13 2005// +/Makefile_0.Win/1.1.1.1/Tue Nov 29 21:01:13 2005// +/MoonDop.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/Pmw.py/1.1/Thu Dec 22 16:17:23 2005// +/PmwBlt.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/PmwColor.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/README.TXT/1.1.1.1/Tue Nov 29 21:01:13 2005// +/TSKY.DAT/1.3/Wed Nov 30 15:59:01 2005/-kb/ +/WSJT_Source_Code.txt/1.5/Tue Dec 20 21:58:37 2005// +/abc441.f90/1.1.1.1/Tue Nov 29 21:01:13 2005// +/afc65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/astro.f/1.3/Mon Dec 19 22:06:52 2005// +/astro.py/1.3/Wed Dec 21 15:22:16 2005// +/astropak.f/1.3/Mon Dec 19 19:27:21 2005// +/avecom.h/1.1.1.1/Tue Nov 29 21:01:13 2005// +/avemsg65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/avemsg6m.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/avesp2.f/1.2/Mon Dec 19 15:29:25 2005// +/azdist.f/1.2/Mon Dec 19 15:29:25 2005// +/blanker.f90/1.1.1.1/Tue Nov 29 21:01:13 2005// +/bzap.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/char.h/1.1.1.1/Tue Nov 29 21:01:13 2005// +/chkmsg.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/clean.bat/1.1.1.1/Tue Nov 29 21:01:13 2005// +/coord.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/cutil.c/1.1/Mon Dec 19 22:06:52 2005// +/db.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/dcoord.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/decode65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/decode6m.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/decode_rs.c/1.1.1.1/Tue Nov 29 21:01:13 2005// +/deep65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/deg2grid.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/demod64a.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/detect.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/dot.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/encode65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/encode_rs.c/1.1.1.1/Tue Nov 29 21:01:13 2005// +/extract.f/1.3/Tue Dec 20 19:17:40 2005// +/f2py.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/fftw3.dll/1.1/Wed Nov 30 14:57:18 2005/-kb/ +/fftw3.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/fftw3single.lib/1.4/Wed Nov 30 14:55:21 2005/-kb/ +/fivehz.f90/1.2/Mon Dec 19 15:29:25 2005// +/flat1.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/flat2.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/flatten.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/four2.f/1.1/Mon Dec 19 15:29:25 2005// +/four2a.f/1.2/Mon Dec 19 15:29:25 2005// +/fsubs.f/1.4/Mon Dec 19 22:15:55 2005// +/fsubs1.f/1.2/Mon Dec 19 19:27:21 2005// +/ftsky.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/g.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/g0/1.2/Mon Dec 19 15:29:25 2005// +/g0.bat/1.1.1.1/Tue Nov 29 21:01:13 2005// +/g1/1.6/Wed Dec 21 20:57:22 2005// +/g1.bat/1.3/Mon Dec 19 19:27:21 2005// +/g1fftw.bat/1.1.1.1/Tue Nov 29 21:01:13 2005// +/g2/1.4/Wed Dec 21 20:57:22 2005// +/g2.bat/1.2/Wed Dec 21 16:51:10 2005// +/g3/1.2/Wed Dec 21 16:52:19 2005// +/g3.bat/1.1.1.1/Tue Nov 29 21:01:13 2005// +/g99/1.2/Thu Dec 22 16:29:41 2005// +/g99.bat/1.2/Wed Nov 30 15:53:27 2005// +/gasdev.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/gcom1.f90/1.2/Mon Dec 19 15:29:25 2005// +/gcom2.f90/1.2/Mon Dec 19 15:29:25 2005// +/gcom3.f90/1.2/Mon Dec 19 15:29:25 2005// +/gcom4.f90/1.2/Mon Dec 19 15:29:25 2005// +/gen65.f/1.2/Mon Dec 19 15:29:25 2005// +/gen6m.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/gencw.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/gencwid.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/gentone.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/geocentric.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/getpfx1.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/getpfx2.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/getsnr.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/glpr/1.1.1.1/Tue Nov 29 21:01:13 2005// +/go/1.1/Mon Dec 19 15:29:25 2005// +/go.bat/1.1.1.1/Tue Nov 29 21:01:13 2005// +/go.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/graycode.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/grid2deg.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/grid2k.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/igray.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/indexx.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/init_rs.c/1.1.1.1/Tue Nov 29 21:01:13 2005// +/int.h/1.1.1.1/Tue Nov 29 21:01:13 2005// +/interleave63.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/jtaudio.c/1.4/Mon Dec 19 20:30:20 2005// +/k2grid.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/libsamplerate.dll/1.1/Wed Nov 30 14:57:18 2005/-kb/ +/libsamplerate.lib/1.4/Wed Nov 30 14:55:21 2005/-kb/ +/limit.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/longx.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/lpf1.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/makedate.f90/1.4/Mon Dec 19 20:30:20 2005// +/moon2.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/morse.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/mtdecode.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/nchar.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/options.py/1.3/Wed Dec 21 15:22:16 2005// +/pa.lib/1.4/Wed Nov 30 14:55:21 2005/-kb/ +/packcall.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/packdxcc.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/packgrid.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/packmsg.f/1.2/Mon Dec 19 15:29:25 2005// +/packtext.f/1.2/Mon Dec 19 15:29:25 2005// +/padevsub.c/1.1.1.1/Tue Nov 29 21:01:13 2005// +/palettes.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/pctile.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/peakup.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/pfx.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/ping.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/pix2d.f90/1.1.1.1/Tue Nov 29 21:01:13 2005// +/pix2d65.f90/1.1.1.1/Tue Nov 29 21:01:13 2005// +/portaudio.h/1.1/Tue Nov 29 21:27:24 2005// +/prcom.h/1.1.1.1/Tue Nov 29 21:01:13 2005// +/ps.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/ptt.c/1.1.1.1/Tue Nov 29 21:01:13 2005// +/ptt_linux.c/1.1/Mon Dec 19 15:29:25 2005// +/ran1.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/resample.c/1.1.1.1/Tue Nov 29 21:01:13 2005// +/rfile2.f/1.1/Mon Dec 19 22:06:52 2005// +/rs.h/1.1.1.1/Tue Nov 29 21:01:13 2005// +/runqqq.f90/1.6/Tue Dec 20 21:32:42 2005// +/s2shape.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/samplerate.h/1.1.1.1/Tue Nov 29 21:01:13 2005// +/set.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/setup65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/short65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/slope.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/smeter.py/1.1.1.1/Tue Nov 29 21:01:13 2005// +/smooth.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/sort.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/spec2d.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/spec2d65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/spec441.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/specjt.py/1.4/Wed Dec 21 15:22:16 2005// +/start_threads.c/1.1/Thu Dec 22 16:21:13 2005// +/stdecode.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/sun.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/sync.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/sync65.f/1.2/Mon Dec 19 15:29:25 2005// +/syncf0.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/syncf1.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/synct.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/toxyz.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/unpackcall.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/unpackgrid.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/unpackmsg.f/1.2/Mon Dec 19 15:29:25 2005// +/unpacktext.f/1.2/Mon Dec 19 15:29:25 2005// +/wrapkarn.c/1.2/Tue Nov 29 21:27:24 2005// +/wsjt.ico/1.3/Wed Nov 30 15:43:28 2005/-kb/ +/wsjt.py/1.9/Wed Dec 21 20:57:22 2005// +/wsjt1.f/1.2/Mon Dec 19 15:29:25 2005// +/wsjt65.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/wsjtgen.f90/1.2/Mon Dec 19 15:29:25 2005// +/wsjtrc/1.1/Mon Dec 19 15:29:25 2005// +/xcor.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +/xfft.f/1.1.1.1/Tue Nov 29 21:01:13 2005// +D diff --git a/CVS/Repository b/CVS/Repository new file mode 100644 index 000000000..3be6da903 --- /dev/null +++ b/CVS/Repository @@ -0,0 +1 @@ +WSJT diff --git a/CVS/Root b/CVS/Root new file mode 100644 index 000000000..fa2e471f4 --- /dev/null +++ b/CVS/Root @@ -0,0 +1 @@ +/home/joe/cvsroot diff --git a/GeoDist.f b/GeoDist.f new file mode 100644 index 000000000..d9df3d8ac --- /dev/null +++ b/GeoDist.f @@ -0,0 +1,103 @@ + subroutine geodist(Eplat, Eplon, Stlat, Stlon, + + Az, Baz, Dist) + implicit none + real eplat, eplon, stlat, stlon, az, baz, dist, deg + +C JHT: In actual fact, I use the first two arguments for "My Location", +C the second two for "His location"; West longitude is positive. + +c +c +c Taken directly from: +c Thomas, P.D., 1970, Spheroidal geodesics, reference systems, +c & local geometry, U.S. Naval Oceanographic Office SP-138, +c 165 pp. +c +c assumes North Latitude and East Longitude are positive +c +c EpLat, EpLon = End point Lat/Long +c Stlat, Stlon = Start point lat/long +c Az, BAz = direct & reverse azimuith +c Dist = Dist (km); Deg = central angle, discarded +c + + real BOA, F, P1R, P2R, L1R, L2R, DLR, T1R, T2R, TM, + + DTM, STM, CTM, SDTM,CDTM, KL, KK, SDLMR, L, + + CD, DL, SD, T, U, V, D, X, E, Y, A, FF64, TDLPM, + + HAPBR, HAMBR, A1M2, A2M1 + + real AL,BL,D2R,Pi2 + + data AL/6378206.4/ ! Clarke 1866 ellipsoid + data BL/6356583.8/ +c real pi /3.14159265359/ + data D2R/0.01745329251994/ ! degrees to radians conversion factor + data Pi2/6.28318530718/ + + BOA = BL/AL + F = 1.0 - BOA +c convert st/end pts to radians + P1R = Eplat * D2R + P2R = Stlat * D2R + L1R = Eplon * D2R + L2R = StLon * D2R + DLR = L2R - L1R ! DLR = Delta Long in Rads + T1R = ATan(BOA * Tan(P1R)) + T2R = ATan(BOA * Tan(P2R)) + TM = (T1R + T2R) / 2.0 + DTM = (T2R - T1R) / 2.0 + STM = Sin(TM) + CTM = Cos(TM) + SDTM = Sin(DTM) + CDTM = Cos(DTM) + KL = STM * CDTM + KK = SDTM * CTM + SDLMR = Sin(DLR/2.0) + L = SDTM * SDTM + SDLMR * SDLMR * (CDTM * CDTM - STM * STM) + CD = 1.0 - 2.0 * L + DL = ACos(CD) + SD = Sin(DL) + T = DL/SD + U = 2.0 * KL * KL / (1.0 - L) + V = 2.0 * KK * KK / L + D = 4.0 * T * T + X = U + V + E = -2.0 * CD + Y = U - V + A = -D * E + FF64 = F * F / 64.0 + Dist = AL*SD*(T -(F/4.0)*(T*X-Y)+FF64*(X*(A+(T-(A+E) + + /2.0)*X)+Y*(-2.0*D+E*Y)+D*X*Y))/1000.0 + Deg = Dist/111.195 + TDLPM = Tan((DLR+(-((E*(4.0-X)+2.0*Y)*((F/2.0)*T+FF64* + + (32.0*T+(A-20.0*T)*X-2.0*(D+2.0)*Y))/4.0)*Tan(DLR)))/2.0) + HAPBR = ATan2(SDTM,(CTM*TDLPM)) + HAMBR = Atan2(CDTM,(STM*TDLPM)) + A1M2 = Pi2 + HAMBR - HAPBR + A2M1 = Pi2 - HAMBR - HAPBR + +1 If ((A1M2 .ge. 0.0) .AND. (A1M2 .lt. Pi2)) GOTO 5 +2 If (A1M2 .lt. Pi2) GOTO 4 +3 A1M2 = A1M2 - Pi2 + GOTO 1 +4 A1M2 = A1M2 + Pi2 + GOTO 1 +c +c all of this gens the proper az, baz (forward and back azimuth) +c + +5 If ((A2M1 .ge. 0.0) .AND. (A2M1 .lt. Pi2)) GOTO 9 +6 If (A2M1 .lt. Pi2) GOTO 8 +7 A2M1 = A2M1 - Pi2 + GOTO 5 +8 A2M1 = A2M1 + Pi2 + GOTO 5 + +9 Az = A1M2 / D2R + BAZ = A2M1 / D2R +c +c Fix the mirrored coords here. +c + az = 360.0 - az + baz = 360.0 - baz + end diff --git a/JT65code b/JT65code new file mode 100755 index 000000000..8bfa92f86 Binary files /dev/null and b/JT65code differ diff --git a/JT65code.f b/JT65code.f new file mode 100644 index 000000000..10fd90d7f --- /dev/null +++ b/JT65code.f @@ -0,0 +1,46 @@ + program JT65karn + +C Provides examples of message packing, bit and symbol ordering, +C Reed Solomon encoding, and other necessary details of the JT65 +C protocol. + + character*22 msg0,msg,decoded,cok*3 + integer dgen(12),sent(63),recd(12),era(51) + + nargs=iargc() + if(nargs.ne.1) then + print*,'Usage: JT65code "message"' + go to 999 + endif + + call getarg(1,msg0) !Get message from command line + msg=msg0 + + call chkmsg(msg,cok,nspecial,flip) !See if it includes "OOO" report + if(nspecial.gt.0) then !or is a shorthand message + write(*,1010) + 1010 format('Shorthand message.') + go to 999 + endif + + call packmsg(msg,dgen) !Pack message into 72 bits + write(*,1020) msg0 + 1020 format('Message: ',a22) !Echo input message + if(iand(dgen(10),8).ne.0) write(*,1030) !Is the plain text bit set? + 1030 format('Plain text.') + write(*,1040) dgen + 1040 format('Packed message, 6-bit symbols: ',12i3) !Display packed symbols + + call rs_encode(dgen,sent) !RS encode + call interleave63(sent,1) !Interleave channel symbols + call graycode(sent,63,1) !Apply Gray code + write(*,1050) sent + 1050 format('Channel symbols, including FEC:'/(i5,20i3)) + + call graycode(sent,63,-1) + call interleave63(sent,-1) + call rs_decode(sent,era,0,recd,nerr) + call unpackmsg(recd,decoded) !Unpack the user message + write(*,1060) decoded,cok + 1060 format('Decoded message: ',a22,2x,a3) + 999 end diff --git a/JT65code_all.f b/JT65code_all.f new file mode 100644 index 000000000..203fb8615 --- /dev/null +++ b/JT65code_all.f @@ -0,0 +1,21 @@ + include 'JT65code.f' + include 'nchar.f' + include 'grid2deg.f' + include 'packmsg.f' + include 'packtext.f' + include 'packcall.f' + include 'packgrid.f' + include 'unpackmsg.f' + include 'unpacktext.f' + include 'unpackcall.f' + include 'unpackgrid.f' + include 'deg2grid.f' + include 'chkmsg.f' + include 'getpfx1.f' + include 'getpfx2.f' + include 'k2grid.f' + include 'grid2k.f' + include 'interleave63.f' + include 'graycode.f' + include 'set.f' + include 'igray.f' diff --git a/KVASD b/KVASD new file mode 100755 index 000000000..3f8118ad1 Binary files /dev/null and b/KVASD differ diff --git a/LICENSE.TXT b/LICENSE.TXT new file mode 100755 index 000000000..a979d96ad --- /dev/null +++ b/LICENSE.TXT @@ -0,0 +1,344 @@ +The source code for WSJT is made available under the GNU General +Public License. + +##################################################################### + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..12076406b --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +gcc = CC +FC = g77 +FFLAGS = -O -Wall -fbounds-check + +OBJS1 = JT65code.o nchar.o grid2deg.o packmsg.o packtext.o \ + packcall.o packgrid.o unpackmsg.o unpacktext.o unpackcall.o \ + unpackgrid.o deg2grid.o packdxcc.o chkmsg.o getpfx1.o \ + getpfx2.o k2grid.o grid2k.o interleave63.o graycode.o set.o \ + igray.o init_rs_int.o encode_rs_int.o decode_rs_int.o \ + wrapkarn.o + +all: JT65code + +JT65code: $(OBJS1) + $(FC) -o JT65code $(OBJS1) + +init_rs_int.o: init_rs.c + $(CC) -c -DBIGSYM=1 -o init_rs_int.o init_rs.c + +encode_rs_int.o: encode_rs.c + $(CC) -c -DBIGSYM=1 -o encode_rs_int.o encode_rs.c + +decode_rs_int.o: decode_rs.c + $(CC) -c -DBIGSYM=1 -o decode_rs_int.o decode_rs.c + +.PHONY : clean +clean: + -rm *.o JT65code + diff --git a/Makefile_0.Win b/Makefile_0.Win new file mode 100644 index 000000000..cc5e1fd67 --- /dev/null +++ b/Makefile_0.Win @@ -0,0 +1,31 @@ +#Makefile for WSJT +!include + +OBJS1 = pa_lib.o pa_win_mme.o jtaudio.o ... + +# Much more to be done, if this is to work! + +all: xcomdat.dll specjt2.dll tstsp.exe a2d.exe + +xcomdat.dll xcomdat.lib: xcomdat.f xcom.f + $(FOR) $(fflags) xcomdat.f /dll /link /section:.data,RWS + +specjt2.dll: specjt2.f xcom.f + $(FOR) $(fflags) specjt2.f /dll xcomdat.lib + +tstsp.exe: tstsp.f xcomdat.lib + $(FOR) $(fflags) tstsp.f xcomdat.lib specjt2.lib + +a2d.exe: a2d.f jtaudio.obj xcomdat.lib + $(FOR) $(fflags) /traceback /check:all a2d.f $(OBJS3) \ + /link winmm.lib xcomdat.lib + +clean: + -del xcomdat.dll + -del xcomdat.lib + -del xcomdat.exp + -del specjt2.dll + -del specjt2.lib + -del specjt2.exp + -del tstsp.exe + -del a2d.exe diff --git a/MoonDop.f b/MoonDop.f new file mode 100644 index 000000000..bef0f73f7 --- /dev/null +++ b/MoonDop.f @@ -0,0 +1,86 @@ + subroutine MoonDop(nyear,month,nday,uth4,lon4,lat4,RAMoon4, + + DecMoon4,LST4,HA4,AzMoon4,ElMoon4,ldeg4,bdeg4,vr4,dist4) + + implicit real*8 (a-h,o-z) + real*4 uth4 !UT in hours + real*4 lon4 !West longitude, degrees + real*4 lat4 !Latitude, degrees + real*4 RAMoon4 !Topocentric RA of moon, hours + real*4 DecMoon4 !Topocentric Dec of Moon, degrees + real*4 LST4 !Locat sidereal time, hours + real*4 HA4 !Local Hour angle, degrees + real*4 AzMoon4 !Topocentric Azimuth of moon, degrees + real*4 ElMoon4 !Topocentric Elevation of moon, degrees + real*4 ldeg4 !Galactic longitude of moon, degrees + real*4 bdeg4 !Galactic latitude of moon, degrees + real*4 vr4 !Radial velocity of moon wrt obs, km/s + real*4 dist4 !Echo time, seconds + + real*8 LST + real*8 RME(6) !Vector from Earth center to Moon + real*8 RAE(6) !Vector from Earth center to Obs + real*8 RMA(6) !Vector from Obs to Moon + real*8 pvsun(6) + real*8 rme0(6) + real*8 lrad + logical km,bary + + common/stcomx/km,bary,pvsun + data rad/57.2957795130823d0/,twopi/6.28310530717959d0/ + + pi=0.5d0*twopi + pio2=0.5d0*pi + km=.true. + dlat=lat4/rad + dlong1=lon4/rad + elev1=200.d0 + call geocentric(dlat,elev1,dlat1,erad1) + + dt=100.d0 !For numerical derivative, in seconds + UT=uth4 + +C NB: geodetic latitude used here, but geocentric latitude used when +C determining Earth-rotation contribution to Doppler. + + call moon2(nyear,month,nDay,UT-dt/3600.d0,dlong1*rad,dlat*rad, + + RA,Dec,topRA,topDec,LST,HA,Az,El,dist) + call toxyz(RA/rad,Dec/rad,dist,rme0) !Convert to rectangular coords + + call moon2(nyear,month,nDay,UT,dlong1*rad,dlat*rad, + + RA,Dec,topRA,topDec,LST,HA,Az0,El0,dist) + call toxyz(RA/rad,Dec/rad,dist,rme) !Convert to rectangular coords + + phi=LST*twopi/24.d0 + call toxyz(phi,dlat1,erad1,rae) !Gencentric numbers used here! + radps=twopi/(86400.d0/1.002737909d0) + rae(4)=-rae(2)*radps !Vel of Obs wrt Earth center + rae(5)=rae(1)*radps + rae(6)=0.d0 + + do i=1,3 + rme(i+3)=(rme(i)-rme0(i))/dt + rma(i)=rme(i)-rae(i) + rma(i+3)=rme(i+3)-rae(i+3) + enddo + + call fromxyz(rma,alpha1,delta1,dtopo0) !Get topocentric coords + vr=dot(rma(4),rma)/dtopo0 + + rarad=RA/rad + decrad=Dec/rad + call dcoord(4.635594495d0,-0.504691042d0,3.355395488d0, + + 0.478220215d0,rarad,decrad,lrad,brad) + + RAMoon4=topRA + DecMoon4=topDec + LST4=LST + HA4=HA + AzMoon4=Az + ElMoon4=El + ldeg4=lrad*rad + bdeg4=brad*rad + vr4=vr + dist4=dist + + return + end diff --git a/Pmw.py b/Pmw.py new file mode 100644 index 000000000..dfc3f7334 --- /dev/null +++ b/Pmw.py @@ -0,0 +1,9233 @@ + +import PmwColor +Color = PmwColor +del PmwColor + +import PmwBlt +Blt = PmwBlt +del PmwBlt + + +### Loader functions: + +_VERSION = '1.2' + +def setversion(version): + if version != _VERSION: + raise ValueError, 'Dynamic versioning not available' + +def setalphaversions(*alpha_versions): + if alpha_versions != (): + raise ValueError, 'Dynamic versioning not available' + +def version(alpha = 0): + if alpha: + return () + else: + return _VERSION + +def installedversions(alpha = 0): + if alpha: + return () + else: + return (_VERSION,) + + +###################################################################### +### File: PmwBase.py +# Pmw megawidget base classes. + +# This module provides a foundation for building megawidgets. It +# contains the MegaArchetype class which manages component widgets and +# configuration options. Also provided are the MegaToplevel and +# MegaWidget classes, derived from the MegaArchetype class. The +# MegaToplevel class contains a Tkinter Toplevel widget to act as the +# container of the megawidget. This is used as the base class of all +# megawidgets that are contained in their own top level window, such +# as a Dialog window. The MegaWidget class contains a Tkinter Frame +# to act as the container of the megawidget. This is used as the base +# class of all other megawidgets, such as a ComboBox or ButtonBox. +# +# Megawidgets are built by creating a class that inherits from either +# the MegaToplevel or MegaWidget class. + +import os +import string +import sys +import traceback +import types +import Tkinter + +# Special values used in index() methods of several megawidgets. +END = ['end'] +SELECT = ['select'] +DEFAULT = ['default'] + +# Constant used to indicate that an option can only be set by a call +# to the constructor. +INITOPT = ['initopt'] +_DEFAULT_OPTION_VALUE = ['default_option_value'] +_useTkOptionDb = 0 + +# Symbolic constants for the indexes into an optionInfo list. +_OPT_DEFAULT = 0 +_OPT_VALUE = 1 +_OPT_FUNCTION = 2 + +# Stacks + +_busyStack = [] + # Stack which tracks nested calls to show/hidebusycursor (called + # either directly or from activate()/deactivate()). Each element + # is a dictionary containing: + # 'newBusyWindows' : List of windows which had busy_hold called + # on them during a call to showbusycursor(). + # The corresponding call to hidebusycursor() + # will call busy_release on these windows. + # 'busyFocus' : The blt _Busy window which showbusycursor() + # set the focus to. + # 'previousFocus' : The focus as it was when showbusycursor() + # was called. The corresponding call to + # hidebusycursor() will restore this focus if + # the focus has not been changed from busyFocus. + +_grabStack = [] + # Stack of grabbed windows. It tracks calls to push/popgrab() + # (called either directly or from activate()/deactivate()). The + # window on the top of the stack is the window currently with the + # grab. Each element is a dictionary containing: + # 'grabWindow' : The window grabbed by pushgrab(). The + # corresponding call to popgrab() will release + # the grab on this window and restore the grab + # on the next window in the stack (if there is one). + # 'globalMode' : True if the grabWindow was grabbed with a + # global grab, false if the grab was local + # and 'nograb' if no grab was performed. + # 'previousFocus' : The focus as it was when pushgrab() + # was called. The corresponding call to + # popgrab() will restore this focus. + # 'deactivateFunction' : + # The function to call (usually grabWindow.deactivate) if + # popgrab() is called (usually from a deactivate() method) + # on a window which is not at the top of the stack (that is, + # does not have the grab or focus). For example, if a modal + # dialog is deleted by the window manager or deactivated by + # a timer. In this case, all dialogs above and including + # this one are deactivated, starting at the top of the + # stack. + + # Note that when dealing with focus windows, the name of the Tk + # widget is used, since it may be the '_Busy' window, which has no + # python instance associated with it. + +#============================================================================= + +# Functions used to forward methods from a class to a component. + +# Fill in a flattened method resolution dictionary for a class (attributes are +# filtered out). Flattening honours the MI method resolution rules +# (depth-first search of bases in order). The dictionary has method names +# for keys and functions for values. +def __methodDict(cls, dict): + + # the strategy is to traverse the class in the _reverse_ of the normal + # order, and overwrite any duplicates. + baseList = list(cls.__bases__) + baseList.reverse() + + # do bases in reverse order, so first base overrides last base + for super in baseList: + __methodDict(super, dict) + + # do my methods last to override base classes + for key, value in cls.__dict__.items(): + # ignore class attributes + if type(value) == types.FunctionType: + dict[key] = value + +def __methods(cls): + # Return all method names for a class. + + # Return all method names for a class (attributes are filtered + # out). Base classes are searched recursively. + + dict = {} + __methodDict(cls, dict) + return dict.keys() + +# Function body to resolve a forwarding given the target method name and the +# attribute name. The resulting lambda requires only self, but will forward +# any other parameters. +__stringBody = ( + 'def %(method)s(this, *args, **kw): return ' + + 'apply(this.%(attribute)s.%(method)s, args, kw)') + +# Get a unique id +__counter = 0 +def __unique(): + global __counter + __counter = __counter + 1 + return str(__counter) + +# Function body to resolve a forwarding given the target method name and the +# index of the resolution function. The resulting lambda requires only self, +# but will forward any other parameters. The target instance is identified +# by invoking the resolution function. +__funcBody = ( + 'def %(method)s(this, *args, **kw): return ' + + 'apply(this.%(forwardFunc)s().%(method)s, args, kw)') + +def forwardmethods(fromClass, toClass, toPart, exclude = ()): + # Forward all methods from one class to another. + + # Forwarders will be created in fromClass to forward method + # invocations to toClass. The methods to be forwarded are + # identified by flattening the interface of toClass, and excluding + # methods identified in the exclude list. Methods already defined + # in fromClass, or special methods with one or more leading or + # trailing underscores will not be forwarded. + + # For a given object of class fromClass, the corresponding toClass + # object is identified using toPart. This can either be a String + # denoting an attribute of fromClass objects, or a function taking + # a fromClass object and returning a toClass object. + + # Example: + # class MyClass: + # ... + # def __init__(self): + # ... + # self.__target = TargetClass() + # ... + # def findtarget(self): + # return self.__target + # forwardmethods(MyClass, TargetClass, '__target', ['dangerous1', 'dangerous2']) + # # ...or... + # forwardmethods(MyClass, TargetClass, MyClass.findtarget, + # ['dangerous1', 'dangerous2']) + + # In both cases, all TargetClass methods will be forwarded from + # MyClass except for dangerous1, dangerous2, special methods like + # __str__, and pre-existing methods like findtarget. + + + # Allow an attribute name (String) or a function to determine the instance + if type(toPart) != types.StringType: + + # check that it is something like a function + if callable(toPart): + + # If a method is passed, use the function within it + if hasattr(toPart, 'im_func'): + toPart = toPart.im_func + + # After this is set up, forwarders in this class will use + # the forwarding function. The forwarding function name is + # guaranteed to be unique, so that it can't be hidden by subclasses + forwardName = '__fwdfunc__' + __unique() + fromClass.__dict__[forwardName] = toPart + + # It's not a valid type + else: + raise TypeError, 'toPart must be attribute name, function or method' + + # get the full set of candidate methods + dict = {} + __methodDict(toClass, dict) + + # discard special methods + for ex in dict.keys(): + if ex[:1] == '_' or ex[-1:] == '_': + del dict[ex] + # discard dangerous methods supplied by the caller + for ex in exclude: + if dict.has_key(ex): + del dict[ex] + # discard methods already defined in fromClass + for ex in __methods(fromClass): + if dict.has_key(ex): + del dict[ex] + + for method, func in dict.items(): + d = {'method': method, 'func': func} + if type(toPart) == types.StringType: + execString = \ + __stringBody % {'method' : method, 'attribute' : toPart} + else: + execString = \ + __funcBody % {'forwardFunc' : forwardName, 'method' : method} + + exec execString in d + + # this creates a method + fromClass.__dict__[method] = d[method] + +#============================================================================= + +def setgeometryanddeiconify(window, geom): + # To avoid flashes on X and to position the window correctly on NT + # (caused by Tk bugs). + + if os.name == 'nt' or \ + (os.name == 'posix' and sys.platform[:6] == 'cygwin'): + # Require overrideredirect trick to stop window frame + # appearing momentarily. + redirect = window.overrideredirect() + if not redirect: + window.overrideredirect(1) + window.deiconify() + if geom is not None: + window.geometry(geom) + # Call update_idletasks to ensure NT moves the window to the + # correct position it is raised. + window.update_idletasks() + window.tkraise() + if not redirect: + window.overrideredirect(0) + else: + if geom is not None: + window.geometry(geom) + + # Problem!? Which way around should the following two calls + # go? If deiconify() is called first then I get complaints + # from people using the enlightenment or sawfish window + # managers that when a dialog is activated it takes about 2 + # seconds for the contents of the window to appear. But if + # tkraise() is called first then I get complaints from people + # using the twm window manager that when a dialog is activated + # it appears in the top right corner of the screen and also + # takes about 2 seconds to appear. + + #window.tkraise() + # Call update_idletasks to ensure certain window managers (eg: + # enlightenment and sawfish) do not cause Tk to delay for + # about two seconds before displaying window. + #window.update_idletasks() + #window.deiconify() + + window.deiconify() + if window.overrideredirect(): + # The window is not under the control of the window manager + # and so we need to raise it ourselves. + window.tkraise() + +#============================================================================= + +class MegaArchetype: + # Megawidget abstract root class. + + # This class provides methods which are inherited by classes + # implementing useful bases (this class doesn't provide a + # container widget inside which the megawidget can be built). + + def __init__(self, parent = None, hullClass = None): + + # Mapping from each megawidget option to a list of information + # about the option + # - default value + # - current value + # - function to call when the option is initialised in the + # call to initialiseoptions() in the constructor or + # modified via configure(). If this is INITOPT, the + # option is an initialisation option (an option that can + # be set by the call to the constructor but can not be + # used with configure). + # This mapping is not initialised here, but in the call to + # defineoptions() which precedes construction of this base class. + # + # self._optionInfo = {} + + # Mapping from each component name to a tuple of information + # about the component. + # - component widget instance + # - configure function of widget instance + # - the class of the widget (Frame, EntryField, etc) + # - cget function of widget instance + # - the name of the component group of this component, if any + self.__componentInfo = {} + + # Mapping from alias names to the names of components or + # sub-components. + self.__componentAliases = {} + + # Contains information about the keywords provided to the + # constructor. It is a mapping from the keyword to a tuple + # containing: + # - value of keyword + # - a boolean indicating if the keyword has been used. + # A keyword is used if, during the construction of a megawidget, + # - it is defined in a call to defineoptions() or addoptions(), or + # - it references, by name, a component of the megawidget, or + # - it references, by group, at least one component + # At the end of megawidget construction, a call is made to + # initialiseoptions() which reports an error if there are + # unused options given to the constructor. + # + # After megawidget construction, the dictionary contains + # keywords which refer to a dynamic component group, so that + # these components can be created after megawidget + # construction and still use the group options given to the + # constructor. + # + # self._constructorKeywords = {} + + # List of dynamic component groups. If a group is included in + # this list, then it not an error if a keyword argument for + # the group is given to the constructor or to configure(), but + # no components with this group have been created. + # self._dynamicGroups = () + + if hullClass is None: + self._hull = None + else: + if parent is None: + parent = Tkinter._default_root + + # Create the hull. + self._hull = self.createcomponent('hull', + (), None, + hullClass, (parent,)) + _hullToMegaWidget[self._hull] = self + + if _useTkOptionDb: + # Now that a widget has been created, query the Tk + # option database to get the default values for the + # options which have not been set in the call to the + # constructor. This assumes that defineoptions() is + # called before the __init__(). + option_get = self.option_get + _VALUE = _OPT_VALUE + _DEFAULT = _OPT_DEFAULT + for name, info in self._optionInfo.items(): + value = info[_VALUE] + if value is _DEFAULT_OPTION_VALUE: + resourceClass = string.upper(name[0]) + name[1:] + value = option_get(name, resourceClass) + if value != '': + try: + # Convert the string to int/float/tuple, etc + value = eval(value, {'__builtins__': {}}) + except: + pass + info[_VALUE] = value + else: + info[_VALUE] = info[_DEFAULT] + + def destroy(self): + # Clean up optionInfo in case it contains circular references + # in the function field, such as self._settitle in class + # MegaToplevel. + + self._optionInfo = {} + if self._hull is not None: + del _hullToMegaWidget[self._hull] + self._hull.destroy() + + #====================================================================== + # Methods used (mainly) during the construction of the megawidget. + + def defineoptions(self, keywords, optionDefs, dynamicGroups = ()): + # Create options, providing the default value and the method + # to call when the value is changed. If any option created by + # base classes has the same name as one in , the + # base class's value and function will be overriden. + + # This should be called before the constructor of the base + # class, so that default values defined in the derived class + # override those in the base class. + + if not hasattr(self, '_constructorKeywords'): + # First time defineoptions has been called. + tmp = {} + for option, value in keywords.items(): + tmp[option] = [value, 0] + self._constructorKeywords = tmp + self._optionInfo = {} + self._initialiseoptions_counter = 0 + self._initialiseoptions_counter = self._initialiseoptions_counter + 1 + + if not hasattr(self, '_dynamicGroups'): + self._dynamicGroups = () + self._dynamicGroups = self._dynamicGroups + tuple(dynamicGroups) + self.addoptions(optionDefs) + + def addoptions(self, optionDefs): + # Add additional options, providing the default value and the + # method to call when the value is changed. See + # "defineoptions" for more details + + # optimisations: + optionInfo = self._optionInfo + optionInfo_has_key = optionInfo.has_key + keywords = self._constructorKeywords + keywords_has_key = keywords.has_key + FUNCTION = _OPT_FUNCTION + + for name, default, function in optionDefs: + if '_' not in name: + # The option will already exist if it has been defined + # in a derived class. In this case, do not override the + # default value of the option or the callback function + # if it is not None. + if not optionInfo_has_key(name): + if keywords_has_key(name): + value = keywords[name][0] + optionInfo[name] = [default, value, function] + del keywords[name] + else: + if _useTkOptionDb: + optionInfo[name] = \ + [default, _DEFAULT_OPTION_VALUE, function] + else: + optionInfo[name] = [default, default, function] + elif optionInfo[name][FUNCTION] is None: + optionInfo[name][FUNCTION] = function + else: + # This option is of the form "component_option". If this is + # not already defined in self._constructorKeywords add it. + # This allows a derived class to override the default value + # of an option of a component of a base class. + if not keywords_has_key(name): + keywords[name] = [default, 0] + + def createcomponent(self, componentName, componentAliases, + componentGroup, widgetClass, *widgetArgs, **kw): + # Create a component (during construction or later). + + if self.__componentInfo.has_key(componentName): + raise ValueError, 'Component "%s" already exists' % componentName + + if '_' in componentName: + raise ValueError, \ + 'Component name "%s" must not contain "_"' % componentName + + if hasattr(self, '_constructorKeywords'): + keywords = self._constructorKeywords + else: + keywords = {} + for alias, component in componentAliases: + # Create aliases to the component and its sub-components. + index = string.find(component, '_') + if index < 0: + self.__componentAliases[alias] = (component, None) + else: + mainComponent = component[:index] + subComponent = component[(index + 1):] + self.__componentAliases[alias] = (mainComponent, subComponent) + + # Remove aliases from the constructor keyword arguments by + # replacing any keyword arguments that begin with *alias* + # with corresponding keys beginning with *component*. + + alias = alias + '_' + aliasLen = len(alias) + for option in keywords.keys(): + if len(option) > aliasLen and option[:aliasLen] == alias: + newkey = component + '_' + option[aliasLen:] + keywords[newkey] = keywords[option] + del keywords[option] + + componentPrefix = componentName + '_' + nameLen = len(componentPrefix) + for option in keywords.keys(): + if len(option) > nameLen and option[:nameLen] == componentPrefix: + # The keyword argument refers to this component, so add + # this to the options to use when constructing the widget. + kw[option[nameLen:]] = keywords[option][0] + del keywords[option] + else: + # Check if this keyword argument refers to the group + # of this component. If so, add this to the options + # to use when constructing the widget. Mark the + # keyword argument as being used, but do not remove it + # since it may be required when creating another + # component. + index = string.find(option, '_') + if index >= 0 and componentGroup == option[:index]: + rest = option[(index + 1):] + kw[rest] = keywords[option][0] + keywords[option][1] = 1 + + if kw.has_key('pyclass'): + widgetClass = kw['pyclass'] + del kw['pyclass'] + if widgetClass is None: + return None + if len(widgetArgs) == 1 and type(widgetArgs[0]) == types.TupleType: + # Arguments to the constructor can be specified as either + # multiple trailing arguments to createcomponent() or as a + # single tuple argument. + widgetArgs = widgetArgs[0] + widget = apply(widgetClass, widgetArgs, kw) + componentClass = widget.__class__.__name__ + self.__componentInfo[componentName] = (widget, widget.configure, + componentClass, widget.cget, componentGroup) + + return widget + + def destroycomponent(self, name): + # Remove a megawidget component. + + # This command is for use by megawidget designers to destroy a + # megawidget component. + + self.__componentInfo[name][0].destroy() + del self.__componentInfo[name] + + def createlabel(self, parent, childCols = 1, childRows = 1): + + labelpos = self['labelpos'] + labelmargin = self['labelmargin'] + if labelpos is None: + return + + label = self.createcomponent('label', + (), None, + Tkinter.Label, (parent,)) + + if labelpos[0] in 'ns': + # vertical layout + if labelpos[0] == 'n': + row = 0 + margin = 1 + else: + row = childRows + 3 + margin = row - 1 + label.grid(column=2, row=row, columnspan=childCols, sticky=labelpos) + parent.grid_rowconfigure(margin, minsize=labelmargin) + else: + # horizontal layout + if labelpos[0] == 'w': + col = 0 + margin = 1 + else: + col = childCols + 3 + margin = col - 1 + label.grid(column=col, row=2, rowspan=childRows, sticky=labelpos) + parent.grid_columnconfigure(margin, minsize=labelmargin) + + def initialiseoptions(self, dummy = None): + self._initialiseoptions_counter = self._initialiseoptions_counter - 1 + if self._initialiseoptions_counter == 0: + unusedOptions = [] + keywords = self._constructorKeywords + for name in keywords.keys(): + used = keywords[name][1] + if not used: + # This keyword argument has not been used. If it + # does not refer to a dynamic group, mark it as + # unused. + index = string.find(name, '_') + if index < 0 or name[:index] not in self._dynamicGroups: + unusedOptions.append(name) + if len(unusedOptions) > 0: + if len(unusedOptions) == 1: + text = 'Unknown option "' + else: + text = 'Unknown options "' + raise KeyError, text + string.join(unusedOptions, ', ') + \ + '" for ' + self.__class__.__name__ + + # Call the configuration callback function for every option. + FUNCTION = _OPT_FUNCTION + for info in self._optionInfo.values(): + func = info[FUNCTION] + if func is not None and func is not INITOPT: + func() + + #====================================================================== + # Method used to configure the megawidget. + + def configure(self, option=None, **kw): + # Query or configure the megawidget options. + # + # If not empty, *kw* is a dictionary giving new + # values for some of the options of this megawidget or its + # components. For options defined for this megawidget, set + # the value of the option to the new value and call the + # configuration callback function, if any. For options of the + # form _