forked from snaewe/ACE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
THANKS
2417 lines (2406 loc) · 112 KB
/
THANKS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ACKNOWLEDGEMENTS
ACE, TAO, CIAO, and DAnCE have been deeply influenced and improved by the
following members of my research group at Washington University in St. Louis,
the University of California at Irvine, and Vanderbilt University in Nashville.
Everett Anderson <eea1 at cec dot wustl dot edu>
Alexander Babu Arulanthu <alex at cs dot wustl dot edu>
Shawn Atkins <sma1 at cs dot wustl dot edu>
Jaiganesh Balasubramanian <jai at dre dot vanderbilt dot edu>
Krishnakumar Balasubramanian <kitty at dre dot vanderbilt dot edu>
Matt Braun <mjb2 at cs dot wustl dot edu>
Darrell Brunsch <brunsch at uci dot edu>
Dante J. Cannarozzi <djc2 at cs dot wustl dot edu>
Sharath R. Cholleti <sharath at cs dot wustl dot edu>
Chris Cleeland <cleeland at cs dot wustl dot edu>
Angelo Corsaro <corsaro at cs dot wustl dot edu>
Gan Deng <dengg at dre dot vanderbilt dot edu>
Mayur Deshpande <mayur at ics dot uci dot edu>
Eric Ding <qnd1 at cs dot wustl dot edu>
George Edwards <g dot edwards at vanderbilt dot edu>
Sergio Flores-Gaitan <sergio at cs dot wustl dot edu>
Chris Gill <cdgill at cs dot wustl dot edu>
Andrew G. Gilpin <agg1 at cs dot wustl dot edu>
Aniruddha Gokhale <a dot gokhale at vanderbilt dot edu>
Priyanka Gontla <pgontla at ociweb dot com>
Pradeep Gore <pradeep at cs dot wustl dot edu>
Matthew P. Hampton <mph2 at cs dot wustl dot edu>
Tim Harrison <harrison at cs dot wustl dot edu>
John Heitmann <jwh1 at cs dot wustl dot edu>
James Hill <jhill at isis dot vanderbilt dot edu>
Shawn Hannan <hannan at cs dot wustl dot edu>
Don Hinton <dhinton at dre dot vanderbilt dot edu>
Joe Hoffert <joeh at tango dot cs dot wustl dot edu>
James Hu <jxh at cs dot wustl dot edu>
Huang-Ming Huang <hh1 at cs dot wustl dot edu>
Frank A. Hunleth <fhunleth at cs dot wustl dot edu>
Prashant Jain <pjain at cs dot wustl dot edu>
Shanshan Jiang <shanshan dot jiang at vanderbilt dot edu>
Vishal Kachroo <vishal at cs dot wustl dot edu>
Michael Kircher <Michael dot Kircher at mchp dot siemens dot de>
Boris Kolpackov <boris at dre dot isis dot vanderbilt dot edu>
Arvind S. Krishna <arvindk at dre dot vanderbilt dot edu>
Yamuna Krishnamurthy <yamuna at cs dot wustl dot edu>
Fred Kuhns <fredk at cs dot wustl dot edu>
David Levine <levine at cs dot wustl dot edu>
Tao Lu <tao dot lu at vanderbilt dot edu>
Mike Moran <mm4 at cs dot wustl dot edu>
Sumedh Mungee <sumedh at cs dot wustl dot edu>
Balachandran Natarajan <bala at dre dot vanderbilt dot edu>
Will Otte <wotte at dre dot vanderbilt dot edu>
Kirthika Parameswaran <kirthika at cs dot wustl dot edu>
Krishnakumar Pathayapura <krish at cs dot wustl dot edu>
Stoyan Paunov <spaunov at isis dot vanderbilt dot edu>
Carlos O'Ryan <coryan at uci dot edu>
Ossama Othman <ossama at dre dot vanderbilt dot edu>
Jeff Parsons <j dot parsons at vanderbilt dot edu>
Irfan Pyarali <irfan at cs dot wustl dot edu>
Nilabja Roy <nilabjar at dre dot vanderbilt dot edu>
Lucas Seibert <heynonynony at yahoo dot com>
Diego Sevilla Ruiz <dsevilla at ditec dot um dot es>
Nishanth Shankaran <nshankar at dre dot vanderbilt dot edu>
Marina Spivak <marina at cs dot wustl dot edu>
Venkita Subramonian <venkita at cs dot wustl dot edu>
Nagarajan Surendran <naga at cs dot wustl dot edu>
Cassia Tatibana <cassia@lindy.dre.vanderbilt.edu>
Sumant Tambe <sutambe at dre dot vanderbilt dot edu>
Gabriele Trombetti <gabtromb at isis dot vanderbilt dot edu>
Emre Turkay <turkaye at dre dot vanderbilt dot edu>
Nanbor Wang <nanbor at cs dot wustl dot edu>
Seth Widoff <sbw1 at cs dot wustl dot edu>
Jules White <jules at dre dot vanderbilt dot edu>
Friedhelm Wolf <fwolf at dre dot vanderbilt dot edu>
Torben Worm <tworm at cs dot wustl dot edu>
Ming Xiong <xiongm at isis dot vanderbilt dot edu>
I would also like to thank all the following people who have also
contributed to ACE, TAO, CIAO, and DAnCE over the years:
Paul Stephenson <pstephenson at objectspace dot com>
Olaf Kruger <okruger at cssc-melb dot tansu dot com dot au>
Ed Brown <eebrown at netcom dot com>
Lee Baker <baker at ctis dot af dot mil>
Alex Ranous <ranous at nsa dot hp dot com>
Mark Patton <mark_patton at tx72 dot mot dot com>
Steffen Winther Sorensen <sts at siimnet dot dk>
Troy Warner <tnw1 at core01 dot osi dot com>
Stacy Mahlon <mcs at contour dot mayo dot edu>
Charles Eads <eads at synoptics dot com>
Mark Frutig <mfrutig at fnbc dot com>
Todd Hoff <thm at ictv dot com>
George <george at truffula dot fp dot trw dot com>
Brad Needham <bneedham at ix dot netcom dot com>
Leslee Xu <lxu at ics dot uci dot edu>
Detlef Becker <Detlef dot Becker at med dot siemens dot de>
Bruce Worden <bruce at betsy dot gps dot caltech dot edu>
Chris Tarr <ctarr at objectspace dot co>
Bill Sears <wsears at world dot std dot com>
Greg Lavender <g dot lavender at isode dot com>
Steve Warwick <sjw at aesthetic dot com>
Mats Sundvall <sundvall at perrier dot embnet dot se>
Andreas Ueltschi <Andreas dot Ueltschi at ska dot com>
Nigel Hooke <n dot hooke at trl dot oz dot au>
Medhi Tabatabai <Mehdi dot Tabatabai at ed dot nce dot sita dot int>
Stuart Powell <stuartp at ot dot com dot au>
Bin Mu <mubin at wfg dot com>
Andrew McGowan <mcgowan at wg2 dot waii dot com>
Ken Konecki <kenk at wfg dot com>
John P. Hearn <jph at ccrl dot nj dot nec dot com>
Giang Hoang Nguyen <yang at titan dot com>
Carlos Garcia Braschi <cgarcia at caramba dot tid dot es>
Jam Hamidi <jh1 at osi dot com>
Eric Vaughan <evaughan at arinc dot com>
Karlheinz Dorn <Karlheinz dot Dorn at med dot siemens dot de>
Gerhard Lenzer <Gerhard dot Lenzer at med dot siemens dot de>
Steve Ritter <ritter at titan dot com>
Chandra Venkatapathy <cvenkat at develop dot bsis dot com>
Matt Stevens <mstevens at kirk dot softeng dot infonautics dot com>
Bob Vistica <robertv at ims dot com>
David Trumble <trumble at cvg dot enet dot dec dot com>
George Reynolds <george at dvcorp dot com>
Hans Rohnert <hans dot rohnert at mchp dot siemens dot de>
Alex V. Maclinovsky <alexm at teltrunk1 dot tait dot co dot nz>
Todd Blanchard <tblancha at evolving dot com>
Rob Clairmont <rclairmo at bnr dot ca>
Christian Millour <chris at etca dot fr>
Neil B. Cohen <nbc at cisco dot com>
Dieter Quehl <Dieter dot Quehl at med dot siemens dot de>
Reginald S. Perry <perry at zso dot dec dot com>
James Morris <jmorris at aurora dot apana dot org dot au>
Mark Seaborn <mseaborn at itthp1 dot comm dot mot dot com>
Phil Brooks <phil_brooks at mentorg dot com>
E. Jason Scheck <jasons at ims dot com>
Daniel Proulx <daproulx at qc dot bell dot ca>
Bill Tang <tang at tekats dot com>
John Huchinson <hutchiso at epi dot syr dot ge dot com>
Jack Erickson <JErickson at exchange dot ml dot com>
Byron Walton <bwalton at hughes dot scg dot hac dot com>
Bill Lear <rael at anarchy dot cybercom dot net>
Mark Zusman <marklz at topaz dot technion dot ac dot il>
Aurelio Nocerino <aurelio at irsipcs2-27-le0 dot irsip dot na dot cnr dot it>
Walt Akers <akers at cebaf dot gov>
Greg Baker <GBaker at p01 dot az15m dot iac dot honeywell dot com>
Alexandre Karev <karev at vxcern dot cern dot ch>
Pramod Kumar Singh <pramod at saturn dot miel dot mot dot com>
Bryon Rigg <bryon_rigg at mail dot telecorpsys dot com>
Brad Brown <Brad dot A dot Brown at usa dot alcatel dot com>
Patty Genualdi <genualdp at agcs dot com>
Eshel Liran <liran at bimacs dot cs dot biu dot ac dot il>
Mick Adams <eeimas at eei dot ericsson dot se>
Chris Eich <Chris_Eich at optilink dot optilink dot dsccc dot com>
Mike Flinn <mike dot flinn at smtpgate dot aws dot waii dot com>
Audun Tornquist <Audun dot Tornquist at iu dot hioslo dot no>
Sandeep Joshi <sandeepj at emailbox dot att dot com>
Bernd Hofner <hofner at pd dot et-inf dot uni-siegen dot de>
Craig Perras <cperras at watchguard dot com>
Kirk Sinnard <kirk dot sinnard at lawson dot com>
Matthew Newhook <matthew at ooc dot com>
Gerolf Wendland <wendland at hpp015 dot mch2 dot scn dot de>
Phil Mesnier <mesnier_p at ociweb dot com>
Ross Dargahi <rossd at krinfo dot com>
Richard Orr <rorr at costello dot den dot csci dot csc dot com>
Rich Ryan <rryan at mseng dot kla dot com>
Jan Rychter <jwr at icm dot edu dot pl>
Tom Marrs <0002104588 at mcimail dot com>
Bob Olson <olson at mcs dot anl dot gov>
Jean-Francois Ripouteau <Jean-Francois dot Ripouteau at netsurf dot org>
Ajit Sagar <asagar at spdmail dot spd dot dsccc dot com>
Ashish Singhai <singhai at delirius dot cs dot uiuc dot edu>
David Sames <David dot L dot Sames dot 1 at gsfc dot nasa dot gov>
Gonzalo Diethelm <gdiethelm at dcv dot cl>
Raj <raj at itd dot ssb dot com>
Darrin Edelman <darrin at aetherworks dot com>
Steve Weismuller <spweismu at rsoc dot rockwell dot com>
Eric C. Newton <ecn at fault-tolerant dot org>
Andres Kruse <andres dot kruse at creaturelabs dot com>
Ramesh Nagabushnam <rcn at nynexst dot com>
Antonio Tortorici <antonio at rh0011 dot roma dot tlsoft dot it>
Nigel Lowe <nigel at nt dot com>
Tom Leith <trl at icon-stl dot net>
Michael Fortinsky <mike at vocaltec dot com>
Marco Sommerau <sommerau at matisse dot informatik dot uni-stuttgart dot de>
Gary Salsbery <gsalsber at simsun dot atsc dot allied dot com>
Eric Beser <beser at simsun dot atsc dot allied dot com>
Alfred Keller <kellera at pop dot eunet dot ch>
John Lu <johnlu at f1 dot telekurs dot ch>
James Mansion <james at wgold dot demon dot co dot uk>
Jesper S. M|ller <Jesper dot Moller at ameridata dot dk>
Chris Lahey <clahey at cccis dot com>
Michael R"uger <m_rueger at syscomp dot de>
Istvan Buki <istvan dot buki at euronet dot be>
Greg Wilson <gvwilson at vnet dot ibm dot com>
Garrett Conaty <gconaty at outbackinc dot com>
Brad Flood <BFLOOD at slc dot unisysgsg dot com>
Marius Kjeldahl <marius at funcom dot com>
Steve Huston <shuston at riverace dot com>
Eugene K. Plaude <jec at r-style dot msk dot su>
Joseph DeAngelis <bytor at faxint dot com>
Kim Gillies <gillies at noao dot edu>
Luca Priorelli <lucapri at mbox dot vol dot it>
Alan Stewart <axs2 at osi dot com>
Hani Yakan <hani at i-online dot com>
William L. Gerecke <gerecke at rayva dot org>
Craig Johnston <johnston at tortilla dot ds dot boeing dot com>
Pierre-Yves Duval <duval at cppm dot in2p3 dot fr>
Rochi Febo Dommarco <rocky at alter dot it>
Jonathan Biggar <jon at biggar dot org>
Scott Shupe <shupes at mitre dot org>
Chuck Gehr <gehr at sweng dot stortek dot com>
Avi Nash <anash at RedBrick dot COM>
Padhu Ramalingam <padhu at magicnet dot net>
Jay Denkberg <jay_denkberg at comverse dot com>
Ayman Farahat <afarahat at CCGATE dot HAC dot COM>
Tilo Christ <christ at swl dot fh-heilbronn dot de>
rev <Ari_Erev at icomverse dot com>
Hamutal Yanay <Hamutal_Yanay at icomverse dot com>
Vital Aza <va3 at cs dot wustl dot edu>
Alex Villazon <villazon at cui dot unige dot ch>
David Artus <david dot artus at sbil dot co dot uk>
Todd Barkalow <todd_barkalow at stortek dot com>
Alexander Smundak <sasha at migration dot com>
Thilo Kielmann <kielmann at informatik dot uni-siegen dot de>
Matthias Kerkhoff <make at cs dot tu-berlin dot de>
Fred LaBar <flabar at fallschurch dot esys dot com>
Hanan Herzog <hanan at wallenda dot stanford dot edu>
Eric Parker <eparker at credence dot com>
James Michael Dwyer <jdwyer at knox dot edu>
Arun Katkere <katkere at praja dot com>
Bob Dunmire <bobd at titan dot com>
Sandro Doro <sandro at dorogroup dot com>
Robert Lyng <rlyng at synertech dot highmark dot com>
Phil Logan <phill at in dot ot dot com dot au>
John Cosby <John dot D dot Cosby at cpmx dot saic dot com>
Wayne Vucenic <wvucenic at netgate dot net>
Harry Gunnarsson <hg at carmenta dot se>
James CE Johnson <JamesJohnson at tragus dot org>
Samuel_Bercovici <Samuel_Bercovici_at_EFT__AD2 at mail dot icomverse dot com>
Per Andersson <Per dot Andersson at hfera dot ericsson dot se>
Anthony McConnell <Tonym at datel dot demon dot co dot uk>
Mark Rabotnikov <mark at usp dot elscintcorp dot co dot il>
John Bossom <John dot Bossom at Cognos dot COM>
Rino Simioni <sir at necsy dot it>
Slawomir Kuzniar <kuzniar at Bear dot COM>
Rob Jordan <jordan at hursley dot ibm dot com>
Michael Maxie <maxie at acm dot org>
John Cosby <John dot D dot Cosby at cpmx dot saic dot com>
Nigel Owen <Nigel at voicelink dot co dot nz>
Jorn Jensen <jornj at funcom dot com>
Paul Roman <proman at npac dot syr dot edu>
Dave Mayerhoefer <davem at lynx dot com>
Bert Craytor <Bert_Craytor at peoplesoft dot com>
Joey Zhu <joey dot zhu at wcom dot com>
Arthur J. Lewis <hfdh99a at prodigy dot com>
Michael R. MacFaden <mrm at yagosys dot com>
Paul Han <phan at CCGATE dot HAC dot COM>
Jeff Morgan <jeff at audioactive dot com>
Arturo Montes <mitosys at colomsat dot net dot co>
Elliot Lau <eeklau at post1 dot com>
Mark Wright <markw at odi dot com dot au>
Michael Newton <michaeln at in dot ot dot com dot au>
Kumar Neelakantan <kneelaka at painewebber dot com>
Scott Halstead <scott dot halstead at gs dot com>
Jean-Marc Strauss <jms97 at club-internet dot fr>
Adam Porter <aporter at cs dot umd dot edu>
Hakan Kallberg <hk at simulina dot se>
Eric Dean Russell <edrusse at somnet dot sandia dot gov>
Daniel Montalibet <daniel_montalibet at stortek dot com>
Norbert Rapp <norbert dot rapp at nexus-informatics dot de>
Ganesh Pai <GPai at sonusnet dot com>
Berni Merkle <merkle at io dot freinet dot de>
Tom Wright <twright at gem-net dot demon dot co dot uk>
Torbjorn Lindgren <tl at funcom dot no>
Mike Bernat <sagmb at sagus dot com>
Brian Mendel <brian dot r dot mendel at boeing dot com>
Jeremy Buch <davinci at nortel dot ca>
Kevin Boyle <kboyle at sanwafp dot com>
Kevin Martindale <kevin_martindale at stortek dot com>
Luis Lopes <llopes at tick dot rcc dot Ryerson dot CA>
Adrian Salt <acsalt at magi dot com>
Hongbo Xu <hxu at mas dot co dot nz>
Michael Hartman <c62nt57 at ibx dot com>
Tom Dobridge <dobridge at persimmon dot com>
Rich Christy <rchristy at cccis dot com>
Satoshi Ueno <satoshi dot ueno at gs dot com>
Eugene R. Somdahl <gene at endo dot com>
Robert Head <rhead at mail dot virtc dot com>
Ivan Murphy <Ivan dot Murphy at med dot siemens dot de>
Jan Perman <jan dot perman at osd dot uab dot ericsson dot se>
Shankar Krishnamoorthy <kshankar at lucent dot com>
Reza Roodsari <reza at sprynet dot com>
Jim Crossley <jim at lads dot com>
Johannes Gutleber <Johannes dot Gutleber at cern dot ch>
Yigong Liu <ygl at emailbox dot lucent dot com>
Erik Urdang <erik at bhi dot com>
Mike Schweiger <mikes at bmo dot com>
Anthony Mutiso <amutiso at hughes dot cg dot hac dot com>
Jeff R. Hayes <Jeff dot Hayes at osi dot com>
David Brackman <dbrackman at OhioEE dot com>
Dave Moore <dave dot moore at gecm dot com>
Joseph Cross <joseph dot k dot cross at lmco dot com>
Cherif Sleiman <sleiman at research dot moore dot com>
Stefan Ericsson <Stefan dot Ericsson at osd dot uab dot ericsson dot se>
Thanh Ma <tma at encore dot com>
Oleg Krivosheev <kriol at fnal dot gov>
Stephen Coy <stevec at wsa dot com dot au>
Bob Laferriere <laferrie at gsao dot med dot ge dot com>
Satheesh Kumar MG <satheesh at india dot aspectdv dot com>
Karen Amestoy <kamestoy at CCGATE dot HAC dot COM>
Jeff Richard <jrichard at OhioEE dot com>
Samuel Melamed <sam at vdo dot net>
Vladimir Schipunov <vlad at staff dot prodigy dot com>
Felix Popp <fxpopp at immd9 dot informatik dot uni-erlangen dot de>
Billy Quinn <bquinn at lads dot com>
Michael McKnight <mcknight at signalsoftcorp dot com>
Huiying Shen <shen at environ dot org>
Alex Chan <Alex dot Chan at Aspect dot com>
Aaron Valdivia <avaldivia at hns dot com>
Edan Ayal <edanayal at yahoo dot com>
Jeffrey Peterson <jpeterson at fallschurch dot esys dot com>
Neil Lavelle <nlavelle at imcl dot com>
Steven Wohlever <wohlever at mitre dot org>
Manojkumar Acharya <mja at cvsf325 dot gpt dot co dot uk>
Evgeny Beskrovny <evgeny_beskrovny at icomverse dot com>
Kirill Rybaltchenko <Kirill dot Rybaltchenko at cern dot ch>
Laura Paterno <lpaterno at d0chb dot fnal dot gov>
Ben Eng <ben at jetpen dot com>
Mike Kamrad <J dot M dot KAMRAD dot II at cdev dot com>
Marios Zikos <zikos at csi dot forth dot gr>
Mark L Boriack <mboriack at dctc dot saic dot com>
Mark Hyett <mhyett at dctd dot saic dot com>
Valik Solrzano Barboza <valik at xs4all dot nl>
John Connett <jrc at skylon dot demon dot co dot uk>
Tom Arbuckle <arbuckle at uran dot informatik dot uni-bonn dot de>
Stephen Henry <shenry at mdc dot com>
Dani Flexer <danif at ivory-sw dot com>
Michael Hoffman <Hoffman_Michael at mac-mailserver dot atc dot ll dot mit dot edu>
John Lindal <jafl at cheshire-cat dot caltech dot edu>
Dustin Laurence <laurence at alice dot wonderland dot caltech dot edu>
Ernie Makris <emakris at ziplink dot net>
Timothy A. Brown <tabrown at montana dot com>
Pat McNerthney <ace at mcnerthney dot com>
Lori Anderson <lori at probita dot com>
Erik Margraf <erik at asgard dot gud dot siemens dot co dot at>
Bryan Doerr <Bryan dot S dot Doerr at boeing dot com>
Adam Miller <adam at royalblueny dot com>
Thomas Jordan <ace at programmer dot net>
Keith Nicewarner <Keith.Nicewarner at SpaceDev dot com>
Frederic Andres <andres at rd dot nacsis dot ac dot jp>
Achint Sandhu <sandhu at nortelnetworks dot com>
Mitch Kuninsky <Mitch_Kuninsky at avid dot com>
Alex Chan <Alex dot Chan at Aspect dot com>
Jeff Hellzen <JHellzen at hwdcsaws dot cahwnet dot gov>
Thomas Venturella <thomas dot e dot venturella at boeing dot com>
Philippe O'Reilly <philippe at robot dot ireq dot ca>
Stan Leeson <STANLEY dot D dot LEESON at cdev dot com>
Richard Keizer <RICHARD dot L dot KEIZER at cdev dot com>
Edgar Villanueva <edgarvil at ix dot netcom dot com>
Oliver Kellogg <Oliver dot Kellogg at vs dot dasa dot de>
Dave Meyer <dmeyer at std dot saic dot com>
Thomas Hampson <thomas dot hampson at lmco dot com>
Jay Kistler <jjk at pa dot dec dot com>
Scott Snyder <snyder at d0sgif dot fnal dot gov>
Mark Evans <mark dot evans at tandem dot com>
Todd Pack <todd at rwii dot com>
Mark Maris <maris at scgp dot com>
Jason Katz <Jason at email dot rts-inc dot com>
Jim Penny <jpenny at universal-fasteners dot com>
Chris Ryan <cryan at qualcomm dot com>
J dot Russell Noseworthy <rnosewor at objectsciences dot com>
Carol Sanders <Carol dot Sanders at Boeing dot com>
Jerry Bickle <glbick at most dot fw dot hac dot com>
Paul von Behren <Paul_von_Behren at stortek dot com>
Sudish Joseph <sj at eng dot mindspring dot net>
Loren Rittle <rittle at comm dot mot dot com>
Alexander Ovsiankin <sasha at technologist dot com>
Ravi Nagabhyru <ravi at future-minds dot com>
Tom Brusehaver <tgb at cozy dot netco dot com>
Dave Tallman <tallman at acsys dot com>
Monish Rajpal <monish at cs dot jhu dot edu>
Garry Brother <gmbroth at romulus dot ncsc dot mil>
Andreas Schuelke <Andreas dot Schuelke at med dot siemens dot de>
Ganapathi <guns at fs dot IConNet dot NET>
James Garrison <jhg at austx dot tandem dot com>
Brad Walton <brad dot walton at transnexus dot com>
Paul Motuzenko <p_motuzenko at hotmail dot com>
Kurt Sussman <kls at best dot com>
Rob Thornton <ret1 at cec dot wustl dot edu>
Chanaka Liyanaarachchi <chanaka at ociweb dot com>
Saneyasu <sane at sail dot t dot u-tokyo dot ac dot jp>
Steve Kay <slk1 at icore dot ih dot lucent dot com>
Greg White <gwhite at northlink dot com>
Ki-hyun Yoon <abird at nextware dot co dot kr>
Umar Syyid <usyyid at hotmail dot com>
Bill Fulton <Bill_A_Fulton at raytheon dot com>
Amancio Hasty <hasty at rah dot star-gate dot com>
Zoran Ivanovic <Zoran_Ivanovic at i2 dot com>
Sree Oggu <dharani at sutmyn dot com>
James Risinger <jrisinger at SignalSoftCorp dot com>
Leo Modica <lmodica at lucent dot com>
Bob Scott <bob_scott at broder dot com>
Mark Kettner <m dot kettner at elsevier dot nl>
Kent Watsen <kent at watsen dot net>
Chris Healey <chealey at entera dot com>
Philippe Klein <Philippe_Klein at vocaltec dot com>
William S. Lear <rael at dejanews dot com>
John Geiss <John_T_Geiss at raytheon dot com>
Ernesto Guisado <eguisado at saincotrafico dot com>
Stuart Myles <smyles at wsj dot dowjones dot com>
Lothar Werzinger <lothar at tradescape dot biz>
Andrew Harbick <aharbick at opentext dot com>
Pavel Motuzenko <p_motuzenko at hotmail dot com>
Ross J. Lillie <lillie at rsch dot comm dot mot dot com>
Sam Hauer <shauer at nmo dot gtegsc dot com>
Frank J. Hodum <FRANK.J.HODUM at saic dot com>
David Miron <dxm at crapper dot dsto dot defence dot gov dot au>
Anton van Straaten <anton at appsolutions dot com>
Joe Covalesky <joe at nowsol dot com>
Bill Backstrom <backstr at anubis dot network dot com>
Jeff Franks <Jeffrey_Franks at i-o dot com>
John Mulhern <9107 at mn3 dot lawson dot lawson dot com>
Johan Lundin <johan at lundin dot com>
Eric Powers <powerg at deltanet dot com>
Gabriel Lima <gali at enea dot se>
Doug Anderson <dla at home dot com>
Hongyin Quan <hq1 at arl dot wustl dot edu>
Maximilian Hoferer <mhoferer at krones dot de>
Kevin Stanley <kstanley1 at mdc dot com>
Jeff Greif <jmg at trivida dot com>
Jeff McDaniel <jsmpcdani at gte dot net>
Andreas Geisler <Andreas dot Geisler at erl9 dot siemens dot de>
Bob McWhirter <bob at werken dot com>
Daniel Winder <Daniel dot Winder at cern dot ch>
Zheng Han <zhan at glenvan dot glenayre dot com>
Christa Schwanninger <christa dot schwanninger at mchp dot siemens dot de>
Byron Harris <harris_b at ociweb dot com>
Barney Dalton <barneyd at cyllene dot uwa dot edu dot au>
Peter Gorgia <Peter dot Gorgia at libnet dot com>
Dirk Broer <Dirk dot Broer at gsfc dot nasa dot gov>
Joseph E. LaPrade <laprade at engw dot ana dot bna dot boeing dot com>
Goran Lowkrantz <Goran dot Lowkrantz at infologigruppen dot se>
Susan Liebeskind <susan dot liebeskind at gtri dot gatech dot edu>
Dana Hackman <upboms at network-one dot com>
Margherita Vittone Wiersma <vittone at fndaub dot fnal dot gov>
Priya Narasimhan <priya at cs dot cmu dot edu>
Jeff Hopper <jhopper at nosc dot mil>
Mats Nilsson <mats dot nilsson at xware dot se>
Dongwook Kim <baksoo at dbserver dot kaist dot ac dot kr>
Don Davis <ded at heart dot jhuapl dot edu>
Alberto Villarica <Alberto dot Villarica dot rav at nt dot com>
XuYifeng <xuyf at pop dot zg169 dot net>
Tom Shields <Shields at MarsHotel dot CMPU dot NET>
Krishna Padmasola <pkrishna at cybercash dot co dot in>
Andre Folkers <folkers at informatik dot mu-luebeck dot de>
Paul Sexton <pauls at ENTERPRISE dot bt dot co dot uk>
Marc Lehmann <pcg at goof dot com>
Anne Blankert <anne at geodan dot nl>
Raja Ati <rati at montereynets dot com>
Clinton Carr <ccarr at websocket dot com>
Peter Liqun Na <liqunna at cs dot sunysb dot edu>
Frank Adcock <frank at bushlife dot com dot au>
Xu Yifeng <xuyifeng at www dot kali dot com dot cn>
Valery Arkhangorodsky <valerya at servicesoft dot com>
Alan Scheinine <scheinin at crs4 dot it>
Andrew G. Harvey <agh at cisco dot com>
Dann Corbit <DCorbit at SolutionsIQ dot com>
James <james at tsunami dot com>
Jason Milley <Jason dot Milley dot jcmilley at nt dot com>
Ulf Jaehrig <jaehrig at desys dot com>
Peter Nordlund <petern at nada dot kth dot se>
Mark Weel <weel at lucent dot com>
Tres Seaver <tseaver at palladion dot com>
Erik Koerber <erik dot koerber at siemens dot at>
Eric R. Medley <palantir at net56 dot net>
David O'Farrell <dave at virgo dot aersoft dot ie>
Amir Bahmanyari <amir at peakstone dot com>
Ian Wright <I dot Wright at elsevier dot co dot uk>
David Janello <David dot Janello at abnamro dot com>
Rich Wellner <rw2 at wellner dot org>
Fernando D. Mato Mira <matomira at acm dot org>
Jonathan Reis <reis at stentor dot com>
Seung-Lee Hoon <tarjan at lgsoft dot com>
Russell L. Carter <rcarter at pinyon dot org>
Bill Hall <hts at gte dot net>
Brian Gilstrap <gilstrap_b at ociweb dot com>
Balaji Srinivasan <balaji at cplane dot com>
Anders W. Tell <anderst at toolsmiths dot se>
Larry Lachman <larry at paradigmsim dot com>
Terry Rosenbaum <Terry dot Rosenbaum at Radiology dot MSU dot edu>
Rainer Blome <rainer_blome at de dot ibm dot com>
Kirk Ellett <kellett at mdc dot com>
Sunil Kumar <skumar at sutmyn dot com>
T Stach <t dot stach at inobis dot de>
Ron Barack <r dot barack at inobis dot de>
Daniel Nieten <dnieten at bellsouth dot net>
Paul K. Fisher <pfisher at plexware dot com>
Jim Buck <jim at nowsol dot com>
Olivier Lau <olivier_lau at srtelecom dot com>
Achim Stindt <stindt at conbis dot de>
Fredrik Lindahl <fredrik dot lindahl at ausys dot se>
Joseph Weihs <joseph-w at Orbotech dot Co dot IL>
Serge Kolgan <skolgan at trigraph dot com>
James Megquier <jmegquier at gmail dot com>
Martin Krumpolec <krumpolec at asset dot sk>
Michael Thomas <Michael dot Thomas at Australia dot Boeing dot com>
Vicentini Emanuele <arena dot sci dot univr dot it>
Bob Price <Bob_Price at tssdc dot saic dot com>
Ramiro Penataro Blanco <ramiro dot penataro at iac dot es>
Sigg Pascal <pascal dot sigg at zkb dot ch>
Ivan Leong <ivanl at pacific dot net dot sg>
Virginie Amar<vamar at amadeus dot net>
Tom Ziomek <tomz at cc dot comm dot mot dot com>
Hamish Friedlander <hamishf at usa dot net>
Mark De Jong <mdj at intervu dot net>
Knut Johannessen <knutj at funcom dot com>
Leif Jakobsmeier <leif at informatik dot uni-frankfurt dot de>
Jon Lindgren <jlindgren at SLK dot com>
Steve Vinoski <vinoski at gmail dot com>
Christian Mueffling <cvm at aiss dot de>
Victor Yu <victor dot yu at computechnics dot com dot au>
Jeff Donner <JDonner at schedsys dot com>
Joe Loyall <jloyall at bbn dot com>
Stanislav Meduna <stanom at etm dot co dot at>
Christian Korn <korn at gate dot qaqa dot com>
Ron Barack <rab at terminal dot cz>
Steve Totten <totten_s at ociweb dot com>
Faron Dutton <fdutton at avxus dot com>
Gary York <gfyork at ix dot netcom dot com>
Patty Hair <patty at Lynx dot COM>
Ivan Pascal <pascal at info dot tsu dot ru>
William A. Hoffman <hoffman at crd dot ge dot com>
Mark Lucovsky <markl at microsoft dot com>
Greg Holtmeyer <greg dot holtmeyer at windriver dot com>
Jody Hagins <jody at atdesk dot com>
Patrice Bensoussan <pbensoussan at amadeus dot net>
Keith Brown <kalbrown at ix dot netcom dot com>
Barry Hoggard <hoggard at cfx dot com>
Peter J. Mason <peter dot mason at retriever dot com dot au>
Jerry D. De Master <jdemaste at rite-solutions dot com>
Greg Gallant <gcg at micrografx dot com>
wym <wym at dekang dot com>
Karel Zuiderveld <kzuiderveld at vitalimages dot com>
Mike Goldman <whig at by dot net>
Peter Gross <pgross at signalsoftcorp dot com>
Greg Ross <gwross at west dot raytheon dot com>
Stanford S. Guillory <sguillory at vignette dot com>
Peter Weat <weatp at syntron dot com>
Magnus Karlsson <magnus dot karlsson at syncom dot se>
Andreas Tobler <toa at pop dot agri dot ch>
John Aughey <jha at FreeBSD dot ORG>
Knut-Havard Aksnes <knut at orion dot no>
Eric Mitchell <emitchell at altaira dot com>
Tommy Andreasen <tommy dot andreasen at radiometer dot dk>
Slava Galperin <galperin at teknowledge dot com>
Jeff Olszewski <jolszewski at std dot saic dot com>
Sudhanshu Garg <sg2 at ladybug dot cec dot wustl dot edu>
Mike Preradovic <michael_preradovic at epicdata dot com>
Greg Harrison <harrisog at erinet dot com>
Sangwoo Jin <swjinjin at sei dot co dot kr>
Jacques Salerian <Jacques dot Salerian at era dot ericsson dot se>
Steve Coleman <Steve dot Coleman at jhuapl dot edu>
Diethard Ohrt <Diethard dot Ohrt at siemens dot at>
Jacob Jones <Jacob dot J dot Jones at notesmta dot gd-is dot com>
Phil Ruelle <Phil dot Ruelle at adv dot sonybpe dot com>
Sush Bankapura <Sush dot Bankapura at sylantro dot com>
Eric Covington <eric at nowsol dot com>
Darren Whobrey <whobrey at fecit dot co dot uk>
Mason Taube <taube at westcon dot prc dot com>
Rod Joseph <rodjoseph at adt dot com>
Hans Horsmann <Hans dot Horsmann at icn dot siemens dot de>
Kevin Royalty <kevin dot l dot royalty at boeing dot com>
Souhad Mcheik <mcheiks at inrs-telecom dot uquebec dot ca>
Mark Little <M dot C dot Little at ncl dot ac dot uk>
Tim Stack <stack at cs dot utah dot edu>
Marc Engel <engelm at tlse dot sofreavia dot fr>
Uma Markandu <umam at nortelnetworks dot com>
Henrik Nordberg <hnordberg at lbl dot gov>
Tad Jarosinski <tadj at qualcomm dot com>
Andy Marchewka <AndyM at who dot net>
Neal Norwitz <nnorwitz at arinc dot com>
Frederic Maria <fmaria at lucent dot com>
David Hooker <DHooker at uniview dot net>
Christian Destor <Christian dot Destor at alcatel dot fr>
Andrew Hobson <ahobson at eng dot mindspring dot net>
Andre Folkers <folkers at informatik dot mu-leubeck dot de>
Torsten Kuepper <torsten dot kuepper at nokia dot com>
Hao Ruan <hruan at lucent dot com>
Alexander Davidovich <sasha at ms dot com>
Cristian Ferretti <cristian_ferretti at yahoo dot com>
N Becker <nbecker at fred dot net>
Yaolong Lan <lyaolong at cs dot sunysb dot edu>
Elias Sreih <sealstd1 at nortelnetworks dot com>
Liang Chen <chenl at nortelnetworks dot com>
Mark Laffoon <mark dot laffoon at burning-glass dot com>
Ti Z <tiz at cisco dot com>
Brian Dance <Brian_Dance at UECCS dot co dot uk>
Alexey Gadzhiev <alg at null dot ru>
Francois Bernier <fbernier at gel dot ulaval dot ca>
Bill Rizzi <rizzi at softserv dot com>
Peter Windle <peterw at ugsolutions dot com>
Jaepil Kim <jpkim at lgsoft dot com>
Dmitry Goldshtain <goldstein at arcormail dot de>
Carl Grinstead <grinstea at tsunami dot com>
Henric Jungheim <junghelh at pe-nelson dot com>
Michael Preobrazhensky <mikep at xpedite dot com>
Gregory D. Fee <gdf2 at cec dot wustl dot edu>
Roland Gigler <roland at mch dot pn dot siemens dot de>
Frank Buschmann <Frank dot Buschmann at mchp dot siemens dot de>
Eric Eide <eeide at cs dot utah dot edu>
Don Busch <busch_d at ociweb dot com>
Thomas Lockhart <Thomas dot G dot Lockhart at jpl dot nasa dot gov>
David Hauck <davidh at netacquire dot com>
Keith Rohrer <KRohrer at hnv dot com>
Tim Rose <trose at bridgewatersys dot com>
Sam Rhine <rmsolution20 at earchlink dot net>
Chris Schleicher <chrissch at cnd dot hp dot com>
Margaret Reitz <margaret at veritas dot com>
Thomas Mehrkam <Thomas_Mehrkam at i-o dot com>
Erik Ivanenko <erik dot ivanenko at utoronto dot ca>
Sarmeesha Reddy <sarmeesha at bigfoot dot com>
Steven Tine <stevent at tr dot comm dot mot dot com>
Dave Steele <Dave_Steele at Mitel dot COM>
Simeon Simeonov <simeons at allaire dot com>
David H. Whittington <david dot h dot whittington at boeing dot com>
Ian MacDonald <ianmacd at bg dot com>
Hans Ridder <ridder at veritas dot com>
Todd Mullanix <Todd dot Mullanix at sylantro dot com>
Hai Vu <Hai_Vu at Mitel dot Com>
Paul Francis <francip at navcanada dot ca>
Kristopher Johnson <kjohnson at gardnersys dot com>
Dave Butenhof <butenhof at zko dot dec dot com>
Dominic Williams <dom at connected-place dot co dot uk>
Srikumar Kareti <skareti at htc dot honeywell dot com>
Ian Pepper <ian at aptest dot ie>
Kevin Lyda <kevin dot lyda at trintech dot com>
James D. Rucker <jdrucker at huey dot jpl dot nasa dot gov>
Brian Wallis <Brian dot Wallis at sr dot com dot au>
Sandeep Goyal <sagoyal at hss dot hns dot com>
English Malc <englishmalc at my-dejanew dot com>
Frank O'Dwyer <fod at brd dot ie>
Long Hoang <LHoang at hwdcsaws dot cahwnet dot gov>
Steven D. Chen <sdc2951 at aw101 dot iasl dot ca dot boeing dot com>
Alain Magloire <alain at qnx dot com>
Jim Rogers <jrogers at viasoft dot com>
Nick Sawadsky <Nick_Sawadsky at BrooksSoftware dot com>
David Brownell <david-b at pacbell dot net>
Richard Stallman <rms at gnu dot org>
Casey Lucas <clucas at sabre dot com>
Brian C. Olson <bolson at rtlogic dot com>
Joseph A. Condlin <jac at slpmbo dot ed dot ray dot com>
Serge Du <du at lal dot in2p3 dot fr>
Mike Mazurek <mmazurek at std dot saic dot com>
Christian Schuderer <Christian dot Schuderer at erl9 dot siemens dot de>
John R. Taylor <jrtaylor at george dot lbl dot gov>
Bill Tovrea <gwtovrea at west dot raytheon dot com>
Wallace Owen <owen at visicom dot com>
Vyacheslav A. Batenin <slavikb at iname dot com>
Edwin D. Windes <ewindes at usa dot net>
Christopher Kohlhoff <chris at kohlhoff dot com>
Andreas Terstegge <andreas dot terstegge at nokia dot com>
Stefaan Kiebooms <stefaan at ghs dot com>
Keith Nichol <knichol at syscorp dot com dot au>
Rebecca Sanford <Rebecca dot A dot Sanford at gd-is dot com>
Ram Vishnuvajjala <rvishnuvajjala at lucent dot com>
Tom Bradley <thomas dot bradley at maisel-gw dot enst-bretagne dot fr>
Shaun Ohagan <jk13 at dial dot pipex dot com>
Dale Wood <dale_wood at Mitel dot com>
Robert Flanders <rdfa at eci dot esys dot com>
Gul Onural <Gul_Onural at Mitel dot COM>
Stephen E Blake <stephen_e_blake at email dot moore dot com>
Eric S Rosenthal <esr at netcom dot com>
Sridevi Subramanian <subrams at erols dot com>
Bruce Trask <brucetrask at aol dot com>
Jake Hamby <jehamby at anobject dot com>
Rick Weisner <Rick dot Weisner at East dot Sun dot COM>
Dennis C. De Mars <demars at mminternet dot com>
V dot Lakshmanan <lakshman at doplight dot nssl dot noaa dot gov>
Hata Yoshiaki <hatay at alpha dot co dot jp>
Vidya Narayanan <CVN065 at lmpsil02 dot comm dot mot dot com>
Sean Landis <seanl at rsch dot comm dot mot dot com>
Youzhong Liu <yoliu at cise dot ufl dot edu>
John Weald <John dot Weald at sylantro dot com>
Gilbert Roulot <gilbert dot roulot at tts dot thomson-csf dot com>
Gildo Medeiros Junior <gildo at siemens dot com dot br>
Brian Peterson <bpeterson at globalmt dot com>
Fabrice Podlyski <podlyski at clrhp04 dot in2p3 dot fr>
Darren DeRidder <darren dot deridder at bridgewatersys dot com>
John Tucker <johnny_tucker at yahoo dot com>
Oleg Orlov <orlov at diasoft dot ru>
Timothy Canham <Timothy dot Canham at jpl dot nasa dot gov>
Randy Heiland <heiland at ncsa dot uiuc dot edu>
Joyce Fu <fu at gsao dot med dot ge dot com>
Surender Kumar <csk037 at lmpsil02 dot comm dot mot dot com>
Pradeep Avasthi <Pradeep dot Avasthi at motorola dot com>
Guicheney Christophe <guichene at clrhp04 dot in2p3 dot fr>
Madhu Konety <madhu dot konety at stdc dot com>
Isaac Stoddard <i_stoddard at hso dot link dot com>
Alvarez <alvarez at nagra-kudelski dot ch>
Peter Brandstrom <peter dot brandstrom at ericsson dot com>
Eugene Surovegin <ebs at glasnet dot ru>
Thaddeus Olczyk <olczyk at interaccess dot com>
John Chludzinski <john_chludzinski at jsims dot com>
Pedro Alves Ferreira <pedro dot ferreira at inescn dot pt>
Bruce Edge <bedge at sattel dot com>
Dan Butler <daniel dot g dot butler at boeing dot com>
Ron MacKenzie <ronm at SLAC dot Stanford dot EDU>
Craig Rodrigues <rodrigc at crodrigues dot org>
Phil Y. Wang <yhwang at cs dot columbia dot edu>
David Brock <dbrock at momsdesk dot com>
John Morey <jmorey at mmintl dot com>
Dwayne Burns <dburns at isrglobal dot com>
Denis Ouellet <douellet at gel dot ulaval dot ca>
Stefan Ullrich <SUllrich at Heimannsystems dot com>
Brian Raven <brianr at liffe dot com>
Gheorghe Aprotosoaie <gaprotosoaie at paragonms dot com>
Carsten Zerbst <zerbst at tu-harburg dot de>
Paul Calabrese <calabrese_p at ociweb dot com>
Stephane Chatre <schatre at oresis dot com>
James Whitledge <jwhitledge at spyglass dot com>
Erik Johannes <erik_johannes at teseda dot com>
Alex Hornby <alex at anvil dot co dot uk>
Riaz Syed <syed at Lynx dot COM>
Clarence M. Weaver <clarence_m_weaver at md dot northgrum dot com>
Roger Egbers <regbers at isrglobal dot com>
Ralf Kluthe <kluthe at iti dot mu-luebeck dot de>
Ruud Diterwich<R dot M dot L dot Diterwich at marin dot nl>
Bill Nesbitt <bnesbitt at magellan dot com>
Will Skunk <willskunk at homemail dot com>
David Digby <DWD15274 at glaxowellcome dot co dot uk>
Timothy Schimke <Schimke dot Timothy at LittonDSD dot com>
Jim Robinson <robinson at wdg dot mot dot com>
Peter Mueller <pmueller at decrc dot abb dot de>
Raghu Nambiath <raghun at wipinfo dot soft dot net>
Mike Gingell <mike dot gingell at drdc-rddc dot gc dot ca>
David McCann <david dot mccann at alcatel dot at>
Ruediger Franke <Ruediger dot Franke at decrc dot abb dot de>
Brian Jones <bjones at edgemail dot com>
Michael Garvin <mgarvin at nortelnetworks dot com>
Mike Vitalo <mvitalo at sprynet dot com>
Kirk Davies <Kirk dot Davies at pobox dot com>
Arno Pernozzoli <pernozzoli at bigfoot dot com>
Trey Grubbs <t-grubbs1 at raytheon dot com>
Matthias Schumann <matthias dot schumann at xcc dot de>
John Gathright <johng at keck dot hawaii dot edu>
Alexander Villatora <alex at cfx dot com>
Hoang Duong <hduong at lycosmail dot com>
Michael Roth <ombelico at gmx dot net>
Craig Anderson <chanders at timing dot com>
Mitsuhiko Hara <Mitsuhiko dot Hara at gemsa dot med dot ge dot com>
Weihai Yu <weihai at cs dot uit dot no>
Tal Lev-Ami <tla at tici dot co dot il>
Chris Zimman <chris at ishiboo dot com>
Rick Wesson <wessorh at ar dot com>
Sridhara Rao Dasu <dasu at slac dot stanford dot edu>
Walter Welzel <Walter dot Welzel at med dot siemens dot de>
Anthony Shipman <als at aaii dot oz dot au>
Tobin Bergen-Hill <tbhill at dctd dot saic dot com>
Toshio Hori <toshi at etl dot go dot jp>
John Mink <John dot Mink at nl dot origin-it dot com>
Duane Binder <duane dot binder at veritas dot com>
Randall Sharo <rasb at eci dot esys dot com>
Dave Madden <dhm at mersenne dot com>
Cliff_H_Campbell <Cliff_H_Campbell at res dot raytheon dot com>
Narendra Ravi <naren at cs dot ualberta dot ca>
Krishnakumar B. <kitty at neo dot shinko dot co dot jp>
David Sunwall <das at planet8 dot tds-eagan dot lmco dot com>
Brian Wright <bwright at paladyne dot com>
Yosi Sarusi <yosi at appstream dot com>
Robert Shewan <rshew at peri dot com>
Skye Sweeney <ssweeney at sanders dot com>
Lars Immisch <lars at ibp dot de>
Stefan Wendt <wendts at stud dot fh-luebeck dot de>
Herbert <herbert at shym dot com>
Clarence Bishop <clarence dot bishop at na dot marconicomms dot com>
Giga Giguashvili <gregoryg at ParadigmGeo dot com>
Philipp Slusallek <slusallek at graphics dot stanford dot edu>
Matthew Davis <matthew dot davis at solers dot com>
Janusz Stopa <jstopa at bear dot com>
Rusty Conover <rconover at zootweb dot com>
Phillippe Merle <Philippe dot Merle at lifl dot fr>
Mark Winrock <mwinrock at nortelnetworks dot com>
Boris Kaminer <boris_kaminer at mail dot ru>
Martin Botzler <martin dot botzler at mchp dot siemens dot de>
Lorin Hochstein <lmh at xiphos dot ca>
Wenli Bai <bai at gsao dot med dot ge dot com>
Harry Forry <harry_l_forry at res dot raytheon dot com>
Jose Rubio <jrubio at tr dot comm dot mot dot com>
Joerg Pommnitz <pommnitz at darmstadt dot gmd dot de>
Mogens Hansen <mogens_h at dk-online dot dk>
Shafiek Savahl <shafiek dot savahl at ericsson dot com dot au>
Pierre Grondin <pierre_grondin at srtelecom dot com>
John Masiyowski <jmasiyowski at fallschurch dot esys dot com>
Uwe Landrock <Uwe dot Landrock at med dot siemens dot de>
Klaus Banzer <klaus dot banzer at mchp dot siemens dot de>
Probal Bhattacharjya <probal at lucent dot com>
Dmitri Katchalov <Dmitri dot Katchalov at computershare dot com dot au>
Alok Gupta <alokg at ssind dot stpn dot soft dot net>
Chien Yueh <cyueh at viasoft dot com>
John K. Black <jblack at s22ct dot npt dot nuwc dot navy dot mil>
Kamen Penev <penev at earthlink dot net>
Gregory Yarmit <Gregory dot Yarmit at hboc dot com>
Jarek Tomaszewski <jarek-tomaszewski at vertel dot de>
Siegurd Weber <siegurdw at hotmail dot com>
Fabrizio Giannotti <fabrizio dot giannotti at alephinfo dot it>
Harald Finster <finster at ave dot ac dot agit dot de>
Fritz Bosch <FBosch at alcatel dot de>
Charles Frasch <cfrasch at spawar dot navy dot mil>
Chris Hafey <chafey at stentor dot com>
Rick Hess <rick dot hess at lmco dot com>
David Dunn <dunn at tripos dot com>
Jaymes Galvin <galvinj at agcs dot com>
Marat <c_marat at mypad dot com>
Sergey Nemanov <sergey dot nemanov at intel dot com>
Vladimir Kondratiev <vladimir dot kondratiev at intel dot com>
John Glynn <jglynn at bjc dot org>
Raymond Wiker <raymond at orion dot no>
Michael Pitman <mcp at mira dot net>
Joseph Jefferson <jjefferson at relinc dot com>
Engelbert Staller <engelbert dot staller at siemens dot at>
George Ball <george at jgserv dot co dot uk>
Dennis Noll <Dennis dot Noll at MW dot Boeing dot com>
Ronald Fischer <ronald dot fischer at icn dot siemens dot de>
Marvin Allen Wolfthal <maw at weichi dot com>
Dan Gilboa <dgilboa at qualcomm dot com>
Sean Boudreau <seanb at qnx dot com>
Shalini Yajnik <shalini at research dot bell-labs dot com>
Matt Thompson <thompsom at stoner dot com>
Peter C Chien <peter at nowsol dot com>
Bruce Alderson <balderso at triant dot com>
Christoph Poggemann <Christoph dot Poggemann at ptv dot de>
Travis Shirk <travis at pobox dot com>
Alain Sauron <sauron at syseca dot thomson-csf dot com>
David Delano <delanod at agcs dot com>
Boris Sukholitko <boriss at richfx dot com>
Brian Mason <bmason at oresis dot com>
Thomas Groth <groth dot th at nord-com dot net>
Damien Dufour <damien dot dufour at horanet dot com>
Paulo Breda Vieira <breda at inesca dot pt>
Samuel Stickland <sps196 at hotmail dot com>
Bryan Van de Ven <bryanv at arlut dot utexas dot edu>
Greg Siebers <gsiebers at vignette dot com>
Rob Gabbot <rgabbot at sandia dot gov>
Paul Carreiro <pcarreir at genuity dot com>
Jovan Kilibarda <jovank at realtimeint dot com>
Derek Dominish <Derek dot Dominish at Australia dot Boeing dot com>
Devesh Kothari <dkothari at atdsprint dot com>
Stephen Moon <smoon at oxmol dot co dot uk>
Hani Mawlawi <hmawlawi at wecan dot com>
Benedikt Eric Heinen <beh at icemark dot ch>
Jason Topaz <topaz at panix dot com>
Alexander Dergatch <dergy at websci dot ru>
Airat A. Sadreev <airat at hq dot tatenergo dot ru>
Klaus Hofmann <Klaus dot Hofmann at astrum dot de>
Miroslav Koncar <mkoncar at mail dot com>
Extern Chatterji <Extern dot Chatterji at kmweg dot de>
Zach Frey <zfrey at bright dot net>
Ruibiao Qiu <ruibiao at arl dot wustl dot edu>
Marcelo Matus <mmatus at atdesk dot com>
R Seshardi <rseshadri at lucent dot com>
Stephan Kulow <coolo at kde dot org>
Alexander Belopolsky <belopolsky at my-deja dot com>
Ben Bourner <ben at orion dot no>
Lalitha Chinthamani <lchinthamani at oresis dot com>
Thomas Huang <Thomas dot Huang at jpl dot nasa dot gov>
Sankaranarayanan K. V <sankar at miel dot mot dot com>
Ephraim Vider <eff at allot dot com>
Reid Spencer <reid at unique2u dot com>
Kevin Dalley <kevind at rahul dot net>
Jan Nielsen <jnielsen at campuspipeline dot com>
Jochen Linkohr <Jochen dot Linkohr at stz-rechnereinsatz dot de>
Mirko Brandner <mbrandner at yahoo dot com>
Yuval Yosef <yuvi at isdn dot net dot il>
Chad Elliott <elliott_c at ociweb dot com>
David X. Callaway <david dot x dot callaway at intel dot com>
Soren Ilsoe <soren dot ilsoe at tellabs dot com>
Eric Hopper <ehopper at globalmt dot com>
Martin Johnson <mjhn at bigpond dot net dot au>
Pierre Oberson <oberson at nagra-kudelski dot ch>
Chris Uzdavinis <chris at atdesk dot com>
Ishay Green <ishaygreen at hotmail dot com>
Andrey Nechypurenko <andreynech at yahoo dot com>
Charlie Duke <cduke at fvc dot com>
Jonathan Luellen <jluellen at scires dot com>
Andrew Psaltis <apsaltis at mho dot net>
Erik Jones <ej at pcslink dot com>
Ted Burghart <burghart at quoininc dot com>
Mike Winter <Mike dot Winter at Schwab dot com>
Judy Ward <ptr_corp at ptrsv1 dot pko dot dec dot com>
Ken Block <ptr_corp at ptrsv1 dot pko dot dec dot com>
Jamshid Afshar <jafshar at vignette dot com>
Jerry Jiang <javalist at 21cn dot com>
Rob Ruff <rruff at scires dot com>
Hugh Arnold <harnold at itginc dot com>
Hessel Idzenga <idzenga at lucent dot com>
Mark C. Barnes <marcus at muse3d dot com>
Suresh Kannan <kannan at uav dot ae dot gatech dot edu>
Alex Scholte <Alex dot Scholte at getronics dot com>
Greg Jansen <plaidriver at msn dot com>
Raj Narayanaswamy <rnarayanaswamy at hologic dot com>
Iain Melville <Iain dot Melville at opentrade dot co dot uk>
Daniel Lang <dl at leo dot org>
Chris Leishman <chris_leishman at freeonline dot com dot au>
Klemen Zagar <klemen dot zagar at irj dot si>
Rick Ohnemus <rjohnemus at systemware dot com>
Adamo, Vince <adamo at vignette dot com>
Defang Zhou <dzhou at inktomi dot com>
Dave Zumbro <zumbro_d at ociweb dot com>
Ted Nolan <ted at ags dot ga dot erg dot sri dot com>
Jianfei Xu <jxu at yahoo dot com>
Alvin C. Shih <acs at ml dot com>
J dot Scott Evans <evans at cpi dot com>
Alex Luk <fluk7 at ie dot cuhk dot edu dot hk>
Kenneth Osenbroch <kennetho at stud dot cs dot uit dot no>
Jason Czavislak <jczavislak at osprey dot smcm dot edu>
Alex Chachanashvili <achacha at panix dot com>
Gilbert Grosdidier <Gilbert dot Grosdidier at in2p3 dot fr>
James Briggs <James dot Briggs at dsto dot defence dot gov dot au>
Herbert Wang <herb at nowsol dot com>
Anders Olsson <epkanol at s1 dot epk dot ericsson dot se>
Sergey Gnilitsky <SGnilitsky at telesens dot com dot ua>
David Wicks <wicks at swbell dot net>
Girish Birajdar <birajdar at lucent dot com>
Hajdukiewicz Markus <MHajdukiewic at heyde dot de>
Gerwin Robert <RGerwin at heyde dot de>
Alia Atlas <akatlas at bbn dot com>
David Hall <David dot Hall at grc dot nasa dot gov>
Todd Gruhn <tgruhn2 at mail dot com>
John Hickin <hickin at nortelnetworks dot com>
Alex Brown <abrown at 3com-ne dot com>
Rich Seibel <seibel_r at ociweb dot com>
Jim Scheller <csoftware at iname dot com>
Bob Bouterse <BBouterse at escient dot com>
Sandeep Adwankar <adwankar at rsch dot comm dot mot dot com>
W Craig Trader <ct7 at vitelinc dot com>
Bruce McIntosh <Bruce dot McIntosh at boeing dot com>
Natarajan Kalpathy <Natarajan_Kalpathy at mw dot 3com dot com>
David O'Farrell <eeidofl at eei dot ericsson dot se>
Bob Bouterse <BBouterse at escient dot com>
Malcolm Spence <spence_m at ociweb dot com>
Dong-Yueh Liu <dyliu at ms1 dot hinet dot net>
Craig Ball <Craig dot Ball at megasys dot com>
Norbert Krain <krain at lineone dot net>
Adrian Miranda <ade at psg dot com>
Cody Dean <cody dot dean at mindspring dot com>
Hans Scharkowitz <hanssch at my-deja dot com>
Charles Meier <cmeier at concentus-tech dot com>
Tim Sim <tim_sim at optusnet dot com dot au>
Shalabh Bhatnagar <shalabh_b at hotmail dot com>
Charles Scott <Charles dot P dot Scott at jpl dot nasa dot gov>
Espen Harlinn <espen at harlinn dot no>
mulder <mul at iitb dot fhg dot de>
Richard L. Johnson <rich at huey dot jpl dot nasa dot gov>
Tam Nguyen <tnguyen at viasat dot com>
Jeff Graham <jgraham at lincom-asg dot com>
Ralph Loader <suckfish at ihug dot co dot nz>
Ji Wuliu <jiwuliu0952_cn at sina dot com>
Wada Hiroshi <syu- at yhb dot att dot ne dot jp>
Sal Amander <virgis at megagis dot lt>
Torsten Pfuetzenreuter <torsten_pf at geocities dot com>
John M. Mills <jmills at tga dot com>
David McWeeny <davemcw at tr dot comm dot mot dot com>
Florian Lackerbauer <florian dot lackerbauer at mchp dot siemens dot de>
Manuel Benche <mbenche at jazz dot cs dot utsa dot edu>
Steve Luoma <stevel at dvc400 dot com>
Roger Tragin <r dot tragin at computer dot org>
Alex Bangs <bangs at entelos dot com>
Yangfen Qiu <yqiu at thomas dot com>
Johnny Chen <jchen at informatica dot com>
John Foresteire <John_J_Foresteire at res dot raytheon dot com>
Larry Peacock <larry at appsmiths dot com>
Francisco Bravo <emefjbm at madrid dot es dot eu dot ericsson dot se>
Antti Valtokari <Antti dot Valtokari at iocore dot fi>
John Smyder <jsmyder at salient dot com>
Mathew Samuel <Mathew dot Samuel at msdw dot com>
Conrad Hughes <conrad at baltimore dot ie>
John Rodgers <jrrodgers at acm dot org>
Charles Taurines <ctaurines at amadeus dot net>
James Lacey <James dot Lacey at motorola dot com>
Nick Pratt <npratt at microstrategy dot com>
Xiaojun Wu <depender at yahoo dot com>
George Lafortune <lafortg at res dot raytheon dot com>
Aoxiang Xu <axu at cim dot mcgill dot ca>
Dima Skvortsov <dskvortsov at mediasite dot com>
Moore Y. Cao <yilincao at lucent dot com>
Wai Keung Fung <wkfung at maews69 dot mae dot cuhk dot edu dot hk>
Michael Laing <mpl at flni dot com>
Benoit Viaud <benoit dot viaud at artal dot fr>
Ken Weinert <kenw at ihs dot com>
Ferran Boladeres Salvad <salvadof at iis dot fhg dot de>
Steve Vranyes <steve dot vranyes at veritas dot com>
Jim Melton <Jim dot Melton at lmco dot com>
Ron Klein <rklein at west dot raytheon dot com>
Anuj Singhal <ASinghal at mediasite dot com>
Henrik Kai <hka at ddk dot de>
Dominic Hughes <dominic at aersoft dot ie>
Lior Shalev <lior at bandwiz dot com>
Charlie Duke <cduke at www dot cuseemeworld dot com>
William Horn <whorn1984 at my-deja dot com>
Greg Hall <Greg dot Hall at Australia dot Boeing dot com>
Aviad Eden <Aviad_Eden at icomverse dot com>
Vianney Lecroart <acegsm at itineris dot net>