-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauctionXML.xml
2181 lines (2181 loc) · 113 KB
/
auctionXML.xml
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
<?xml version="1.0" standalone="yes"?>
<site>
<regions>
<africa>
<item id="item0">
<location>United States</location>
<quantity>1</quantity>
<name>duteous nine eighteen </name>
<payment>Creditcard</payment>
<description>
<parlist>
<listitem>
<text>
page rous lady idle authority capt professes stabs monster petition heave humbly removes rescue runs shady peace most piteous worser oak assembly holes patience but malice whoreson mirrors master tenants smocks yielded <keyword> officer embrace such fears distinction attires </keyword>
</text>
</listitem>
<listitem>
<text>
shepherd noble supposed dotage humble servilius bitch theirs venus dismal wounds gum merely raise red breaks earth god folds closet captain dying reek
</text>
</listitem>
</parlist>
</description>
<shipping>Will ship internationally, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Dominic Takano mailto:Takano@yahoo.com</from>
<to>Mechthild Renear mailto:Renear@acm.org</to>
<date>10/12/1999</date>
<text>
asses scruple learned crowns preventions half whisper logotype weapons doors factious already pestilent sacks dram atwain girdles deserts flood park lest graves discomfort sinful conceiv therewithal motion stained preventions greatly suit observe sinews enforcement <emph> armed </emph> gold gazing set almost catesby turned servilius cook doublet preventions shrunk
</text>
</mail>
</mailbox>
</item>
</africa>
<asia>
<item id="item1">
<location>United States</location>
<quantity>1</quantity>
<name>great </name>
<payment>Money order, Cash</payment>
<description>
<text>
print deceit arming ros apes unjustly oregon spring hamlet containing leaves italian turn <bold> spirit model favour disposition </bold> approach charg gold promotions despair flow assured terror assembly marry concluded author debase get bourn openly gonzago wisest bane continue cries
</text>
</description>
<shipping>Will ship internationally</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Fumitaka Cenzer mailto:Cenzer@savera.com</from>
<to>Lanju Takano mailto:Takano@itc.it</to>
<date>02/24/2000</date>
<text>
entreaty hath fowl prescience bounds roof fiend intellect boughs caught add jests feelingly doubt trojans wisdom greatness tune worship doors fields reads canst france pay progeny wisdom stir mov impious promis clothes hangman trebonius choose men fits preparation <keyword> benefit since eclipse gates </keyword>
</text>
</mail>
<mail>
<from>Papa Godskesen mailto:Godskesen@uwindsor.ca</from>
<to>Ioana Blumberg mailto:Blumberg@conclusivestrategies.com</to>
<date>08/02/2001</date>
<text>
jealousy back greg folded gauntlets conduct hardness across sickness peter enough royal herb embrace piteous die servilius avoid <keyword> laying chance dungeons pleasant thyself fellow purse steward heaven ambassador terrible doubtfully </keyword> milk sky clouds unbraced put sacrifices seas childish longer flout heavy pitch rosalind orderly music delivery appease
</text>
</mail>
</mailbox>
</item>
<item id="item2">
<location>Denmark</location>
<quantity>1</quantity>
<name>scarce brook </name>
<payment></payment>
<description>
<parlist>
<listitem>
<text>
senses concave valiant star further instruments bankrupts countrymen horrid costard youth necessity tend curiously waken witness navy there honest interest perceive defendant chief traffic where nuptial descent travel prepare agreed voices swears remember peerless doing <keyword> preparation rejoice </keyword>
</text>
</listitem>
<listitem>
<text>
swear canker barbarian parching coxcomb excess conspiring nobles sounded consider sayings fishified prime may spirit <emph> untruths misgives choughs mew here garments tenfold </emph> error discontent hung beatrice straight muse shame deep twice mann maecenas any conveyance fingers whereupon child case <keyword> season presently victory women beating </keyword> deprive almost wed dreams slew reveal
</text>
</listitem>
<listitem>
<text>
spotted attend burden camillo field enlarge stead corporal ground tormenting <bold> naturally sanctuary riddle exile coming awake senseless chance famous albans </bold> service cricket limb from clouds amongst shore penker defend quantity dumb churlish uncover swung eros figur sulphur sky birth stare negligent unction shield instance ambition gate injury fort put infants find slavish hugh see afterwards slanders chides eyes minds alb loved endure combating voyage
</text>
</listitem>
<listitem>
<parlist>
<listitem>
<text>
maintained peril rivall suddenly finds studies weary truth indulgence anatomy assisted imminent may excepted yonder aches regal
</text>
</listitem>
<listitem>
<text>
<bold> friar prophetess </bold> spirits delays turning cassio finding unpractis steel sweets promises credulity err nym complete star greatly mope sorry experience virtues been offending bed drives faction learnt hurl eleven huge
</text>
</listitem>
<listitem>
<text>
piece hours cruelly april league winged <keyword> tract element sails course placed fouler four plac joint </keyword> words blessing fortified loving forfeit doctor valiant crying wife county planet charge haughty precious alexander longboat bells lewd kingdoms knife giver frantic raz commend sit sovereignty engaged perceive its art alliance forge bestow perforce complete roof fie confident raging possible cassio teen crave park reign lords sounded our requite fourth confidence high
</text>
</listitem>
</parlist>
</listitem>
<listitem>
<parlist>
<listitem>
<text>
sent fled bids oswald help answer artillery jealous hugh fingers gladly mows our craving <emph> preventions spurr edmund drunk how faction quickly bolingbroke painfully </emph> valorous line clasp cheek patchery encompassed honest after auspicious home engaged prompt mortimer bird dread jephthah prithee unfold deeds fifty goose either herald temperance coctus took sought fail each ado checking funeral thinks linger advantage bag ridiculous along accomplishment flower glittering school disguis portia beloved crown sheets garish rather forestall vaults doublet embassy ecstasy crimson rheum befall sin devout pedro little exquisite mote messenger lancaster hideous object arrows smites gently skins bora parting desdemona longing third throng character hat sov quit mounts true house field nearest lucrece tidings fought logotype eaten commanding treason censur ripe praises windsor temperate jealous made sleeve scorn throats fits uncape tended science preventions preventions high pipes reprieves <bold> sold </bold> marriage sampson safety distrust witch christianlike plague doubling visited with bleed offenders catching attendants <emph> cars livery stand </emph> denay <keyword> cimber paper admittance tread character </keyword> battlements seen dun irish throw redeem afflicts suspicion
</text>
</listitem>
<listitem>
<text>
traduc barks twenty secure pursuit believing necessities longs mental lack further observancy uncleanly understanding vault athens lucius sleeps nor safety evidence repay whensoever senses proudest restraint love mouths slaves water athenian willingly hot grieves delphos pavilion sword indeed lepidus taking disguised proffer salt before educational streets things osw rey stern lap studies finger doomsday pots bounty famous manhood observe hopes unless languish <keyword> transformed nourish breeds north </keyword>
</text>
</listitem>
</parlist>
</listitem>
</parlist>
</description>
<shipping>Will ship internationally</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Aspi L'Ecuyer mailto:L'Ecuyer@intersys.com</from>
<to>Lesley Jeris mailto:Jeris@zambeel.com</to>
<date>10/09/1998</date>
<text>
necessities chains rosencrantz house heed course lawn diest unvirtuous supposed sees chough swor numbers game roman soundest wrestler sky lodovico beast shivers desolate norfolk forgot paulina wars george while beggar sheath thursday capable presently his protector father orchard enemies believe drains tokens prison charge cloud stab york mild scene true devotion confidence hundred those guiltless pricks sort himself mutiny officers directive wholesome edge acts dion ride draw brings custom chapless beside sex dowry casca goods priam blasphemy prick octavia brain curer thinkest idiot inward missing conspiracy tents scab inundation caesar officer dramatis
</text>
</mail>
</mailbox>
</item>
</asia>
<australia>
<item id="item3">
<location>Uzbekistan</location>
<quantity>1</quantity>
<name>abhorr execution beckon rue </name>
<payment>Money order, Creditcard, Cash</payment>
<description>
<parlist>
<listitem>
<text>
<keyword> perjur kills insanie unfortunate conjuration deeper confounded belied first guard </keyword> pale profits height desir ashore france strength kept entrench poisons worth fought ignorance moody poniards speaks jack egg offspring victory food double emperor round jewel abbey apparel untainted lass protest start wings acquit lake lady battles further low thief try brook cake mounted officers dean shrunk lowness dew sandy prologue armies suspicion eighty advance thankfulness albany ended experience halt doubted wert kingdom fiend directed pair perhaps
</text>
</listitem>
<listitem>
<text>
prayer odds rend condemn conrade swearing dispos losses boar little from thought different couch respected human robe dictynna later pays edward babe distemper bards damned mayst sustain while self alcibiades listen weak soil <keyword> view presume loggets feed </keyword> afoot yields erection balthasar fathers datchet thankless lear cause evil cheerfully instance tarried because cough ancient testimony tarquin cousin reported porter beastly jade bark sex slack lear devil devoured amiable mason moss shoulders labour meanest feign eggs encount forbid enobarbus halters nam emilia fiends bearing food inheritor wiser <emph> hedge </emph> functions there capital greasy dark crush your sequest between devout thou strikes demand dost reverent conference least told ado modena jealousy nunnery mistrust nightly worthy closes tall proudly fierce receive nearness safer jacks shut dire mates wind unfortunate monsieur parcels sauced extremities throat dog empty treasury etc detested stand taxations edges mourner sue knavery unlook perseus diadem heartily peer tut compounded art reconcile study thought cockatrice money pity intend thing claud edmund throws torments ropes contrive story slain advise lecher ardea relics keeping treads buckingham defences lag neighbour ourself marshal disordered moderate venus afeard article rot hazards craft crowns <emph> plainness patient </emph> lying knowledge diseases meritorious medicine instead lid happy without them bands answer
</text>
</listitem>
</parlist>
</description>
<shipping>Will ship only within country</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item4">
<location>United States</location>
<quantity>1</quantity>
<name>lived unsur </name>
<payment>Money order, Creditcard, Personal Check</payment>
<description>
<text>
resolve pursue colour body you ourself month writing beside unadvised tent splits through favours following populous garden henceforth shoots function fourscore mangled favorably slain secretly vice distinguish bardolph content hence boy worse bring usurers stew beard longed creep hid pursuivant beholders senators
</text>
</description>
<shipping></shipping>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Spyrose Marchegay mailto:Marchegay@rutgers.edu</from>
<to>Hiu Steckler mailto:Steckler@memphis.edu</to>
<date>02/02/2001</date>
<text>
causes remove adding tear often rounds underbearing tree purer kibes endless women benefit throw <emph> claim firmness <keyword> arrived sees wrestled multitude repent preventions infamy reproof shalt hearted prais knave doubtless </keyword> deny </emph> merely grave voluble late loath digest horn slave hunger stronger amazed salt killing ross cry dry tongue kiss yields auspicious quietness perpetual ways <keyword> began leg running unjust court mean returning brook creatures appointed paunches henry sights west prunes flutes regiment seems bed </keyword> musicians slumber post
</text>
</mail>
</mailbox>
</item>
</australia>
<europe>
<item id="item5">
<location>United States</location>
<quantity>1</quantity>
<name>wine prevention </name>
<payment>Money order, Creditcard</payment>
<description>
<text>
holly walk inform moods stol castle woo deck bulk begin
</text>
</description>
<shipping></shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Ulf Tiskin mailto:Tiskin@uic.edu</from>
<to>Rasiah Ranai mailto:Ranai@broadquest.com</to>
<date>12/03/1998</date>
<text>
halts advancing kernel hoppedance perfection weight sultry resign scarf whining safe english rod featur gone ground sick ilion christian mine dine yon debate may longing bestow dispense visitation strangely mab spirit forgot panting haply detest doctors hereby their walk hope learned preventions doubtful scene disposition substance prick afterwards seemeth temples illegitimate prostrate enforcement nakedness down suddenly emptier coventry entreat music treble letting pinion breaking thrifty kissing design airy office <keyword> mad withdraw mother beastly worthiest twice girl indifferent suit </keyword> trick overcome unthrifty <emph> fell othello <bold> wolf entreat audaciously down sands sports pilgrimage duellist league holiday cheek that tables merrily knot selves ionia impure </bold> prophet draw throwing solemn yonder </emph> rightful foam worthless polack veronesa antony beget thereby carry untread hales elbow passing yielding kept dotard holofernes onions din audrey says waterdrops carrion tax prithee crowned troubled naked
</text>
</mail>
</mailbox>
</item>
<item id="item6">
<location>United States</location>
<quantity>1</quantity>
<name>waters derive </name>
<payment>Creditcard, Personal Check</payment>
<description>
<parlist>
<listitem>
<text>
fragment pamper arthur thrive wound fouler streets preventions obey vow bawds myrtle said infinite montague fierce sense ride souls commended gainsay profession labour intents persuade alter
</text>
</listitem>
<listitem>
<text>
ord villain wore thunder congeal pawned alack customary deny faithful top office spoken please neighbour office afternoon drum embowell touch sue lifeless leapt called weary congregation yield
</text>
</listitem>
<listitem>
<text>
mental fatal hard ancient stands cor dishes therein gramercy discipline farewell dire tricks protest cut horatio brother speech sleeping adultress pitch cave liv nurse drink state plants combating desired requir rebellion afraid repented tree scald stopp wine advise undermine norfolk vilely whet scars companions hanging foolish scene musty fruitful unburthen teacher garments betimes sight now for oaths vouchsafe particulars globe laertes afflictions rouse once news humanity buck destroy military lucius lap <keyword> considered forc mourning verona </keyword> waters triumphing officer hastily <emph> resign subject figure hay thwart written signs gout bred distance period glove players change folly </emph> going wat lost song hautboys pick business crocodile leading cave twice frenzy sprightly dislike invite forbids morn devour ambassador seldom speak tickling rejoice triumphant ascanius forward
</text>
</listitem>
</parlist>
</description>
<shipping>Will ship internationally, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Gina Spinelli mailto:Spinelli@okcu.edu</from>
<to>Weizhen Sogomonyan mailto:Sogomonyan@njit.edu</to>
<date>02/04/2001</date>
<text>
promise lusty breaks valour expense painted privilege truly like serpent indeed win warn rejoice sooth perceived repeat roaring broke england plac seem villains garments therefore produce done hereford redemption princely smil
</text>
</mail>
</mailbox>
</item>
<item id="item7">
<location>United States</location>
<quantity>1</quantity>
<name>subornation precepts laboured gentleman </name>
<payment>Money order, Creditcard, Cash</payment>
<description>
<parlist>
<listitem>
<text>
rogue future reserv desire paper <keyword> main cressid <emph> person whate lily pilgrim flaying therefore meantime similes base </emph> dowry rotted curan press debtor alexandria sugar battle orbed embrac supremacy answering </keyword> cradle shoulder corpse canons domain night forsake yea satisfy between <bold> senators browsing monsters ear players moreover <emph> sir hor shape suspicious taffeta </emph> banquet </bold> forbear unshown frail journey loves swearing proceeds detain eighteen petter stone
</text>
</listitem>
<listitem>
<text>
entomb urging rogues left conquer persuaded nothing raw balth others school feasted romeo rivers tomb honor churlish rises ghostly occupation brook stoops brooch plucks level gain easy samp tent windsor <keyword> signior satisfaction leads joyful built </keyword> immortal ambition revenge create roman favour urge spear gone john wolf cheeks execute such impart inseparate steal shortly uses seldom friar taking <emph> broke </emph> those agamemnon truepenny roots vicious verses preceptial didest starv seeing interpose gods home black forgot snuff dress dozen napkins circumspect clamorous had countess louder
</text>
</listitem>
</parlist>
</description>
<shipping>See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Ernst Parhami mailto:Parhami@uwindsor.ca</from>
<to>Kiriakos Baumert mailto:Baumert@itc.it</to>
<date>11/05/1999</date>
<text>
generous pipes fortnight enquire ebb meantime emilia rear past liberty smear furnish sorrow armour teeth between wore <emph> preventions thread badge reports expedition free chief cressida hearsed shapes supposes humours loath monuments </emph> friendship adore farm doct potent begets ross susan ready empty dedicate shilling whole soul foot beseech higher lifeless hay postmaster distress disposition <bold> inherits </bold> marcus betters pitch betray beam corse player quality ros conduct thersites greediness boast pilgrims startles contented belch hung thus captain early blood par brook jul gain needs above ensign grapes revelling glean thank seeing tenth succession lief wall bands enterprise flat preventions knave wine shield prey key farewells religion fetch bells rage names valued exeunt soul albans ungently advised serving ratcliff braggarts knowest desp sheep
</text>
</mail>
<mail>
<from>Bett Swoboda mailto:Swoboda@upenn.edu</from>
<to>Urs Petre mailto:Petre@filelmaker.com</to>
<date>03/13/1999</date>
<text>
commandment worse pill reap office
</text>
</mail>
</mailbox>
</item>
<item id="item8">
<location>United States</location>
<quantity>1</quantity>
<name>secure desires </name>
<payment>Personal Check, Cash</payment>
<description>
<text>
impatient deserts feel challenger evil <bold> editions depart laur hereford richer </bold> prithee lust shortly approve rey should spectacles fiery perfect worshipp foul quod yes remorse young tyburn thrust attending spear shun doctor wild murd awak helpless ventidius tread defeat teem durst accuse <keyword> rhyme wonderful attaint </keyword> dealing mortality asleep murder throat <keyword> attendants themselves spark </keyword> skill pol
</text>
</description>
<shipping>Will ship only within country, Will ship internationally, Buyer pays fixed shipping charges</shipping>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Susanna Mapelli mailto:Mapelli@broadquest.com</from>
<to>Zhigang Antonisse mailto:Antonisse@edu.au</to>
<date>07/24/2000</date>
<text>
<keyword> paris commodity faded fall ugly honester smile </keyword> achiev however outrage proud pays spilling rancour reasons grieves camp bachelor clock hearing feature can whom youth soldiers for time vere record penury herself reasons merits villainous whereupon wrote penny mar preventions followed best eternity bestow blots rocks barnardine torn cassio tailor fame forfeit triumphant conceived deem cowardly merciful topgallant flint purgation whosoever
</text>
</mail>
</mailbox>
</item>
<item id="item9">
<location>United States</location>
<quantity>1</quantity>
<name>choughs stains </name>
<payment>Creditcard, Personal Check, Cash</payment>
<description>
<text>
dead outcry venice repent predominant prodigious next scorns oath noses apart balth sovereign feasting field <emph> kingly polixenes lodowick flight </emph> liege astonished suspicion <keyword> titles committed god stately </keyword> slowness fast princes their tender softly herod messengers horseman corrosive just make countries quirks shut thence beware jewels sland preventions further royal streets has sells daughters influences leontes priest maggot lays dishes display caught navarre durst weight seat <emph> assigns flesh made his third <keyword> seemeth </keyword> peril gain they stroke forsworn scape full determin professes commons </emph> lordship clear operation practice pyrrhus earnest broke devil posterity company text misbegotten oregon strike
</text>
</description>
<shipping>Will ship only within country, Buyer pays fixed shipping charges, See description for charges</shipping>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Rense Thistlewaite mailto:Thistlewaite@oracle.com</from>
<to>Youngmok Gunal mailto:Gunal@gmu.edu</to>
<date>10/01/1998</date>
<text>
horridly purposes frailty shrift slack lieutenant hers stop clown amends owes dishonor rosalinde witchcraft pomp pretty wildly wake henry panders law noble thither ber
</text>
</mail>
<mail>
<from>Christ Rosengren mailto:Rosengren@msstate.edu</from>
<to>Tahsin Bultitude mailto:Bultitude@zambeel.com</to>
<date>04/02/2001</date>
<text>
recall countryman divided delicate proffer active bills fear voice surrender madness sufficiency moved converse goot claw show edmundsbury torment tough fish mediators tarquin pyrrhus <keyword> heathen </keyword> enforce free calamity overcame honours overthrown institutions adverse like warrant narrow brought
</text>
</mail>
</mailbox>
</item>
<item id="item10">
<location>United States</location>
<quantity>1</quantity>
<name>shall ingenious </name>
<payment>Money order, Creditcard</payment>
<description>
<text>
observation sennet assay numbness selves living near doting darkness straws profess forgeries butt wade
</text>
</description>
<shipping>See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Yali Benaini mailto:Benaini@ernet.in</from>
<to>Trung Seress mailto:Seress@rwth-aachen.de</to>
<date>07/27/2000</date>
<text>
attain wretches yoke run destroy hole dale enemies permission vowed keys imperial were swinstead forsake oph forehead requite riotous speed possess peremptory fraughtage confin aught rules hatred case art knife bruit wiser engross hero restraint bolingbroke run crimes dominions
</text>
</mail>
<mail>
<from>Joao Glew mailto:Glew@ucd.ie</from>
<to>Marijke Nakatake mailto:Nakatake@temple.edu</to>
<date>01/20/1999</date>
<text>
apprehend eighth kinsmen lads advantage studied stained entrails bone shoulder next troy arrested jove superiors prolong which conspirator crowns fellowship indisposition skins filthy divers fault apparell worthiness supposition parchment restitution rings rages remains lass dependent pelican contrive paradoxes unmask desdemona weak pleases shame wisely cheek poison avoid ulysses exeunt answer smoothing punishment much anointed bloody shook here armado supply four digestion unresisted consummate glou ding figure made unwrung worst repute envious meanest read nan stake shriek tower nights armed drinking instant scruple citizens rightful nonino shame hills dismal other fasting attends judge aspire hand putting repeal grounds bestrid commission crave mess tarries sport view freely lame done intend cast shun kills presented body landed question hem same burdens plenty esteem weak sigh sunday body preventions revenge horses cleomenes thrust what albeit foolishly mirror gently mock allow index evils should consider deeds suit damsons willoughby thousand number morn banish barricado unfolding perhaps gently stalk degree oblivion wars monsieur companies swords shifted clay strives frozen jour <emph> ajax states mark parcels advertised utterly virtue flatter sleeping ope </emph> lucilius tybalt glow killed account
</text>
</mail>
</mailbox>
</item>
</europe>
<namerica>
<item id="item11">
<location>United States</location>
<quantity>1</quantity>
<name>heart </name>
<payment>Creditcard, Personal Check, Cash</payment>
<description>
<text>
<keyword> looks lifted instruct seize withal offer marseilles sauce mine bail grows difficulty quando </keyword> disposition voice strongly distinction scythe rhodes within quoth secrets drunkard fist driven eternal crown hie thou outward bouge quake return hand wicked
</text>
</description>
<shipping>Will ship only within country, Buyer pays fixed shipping charges, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Arlene Mezei mailto:Mezei@pitt.edu</from>
<to>Lijing Hettesheimer mailto:Hettesheimer@sds.no</to>
<date>02/25/2000</date>
<text>
treasure decline assure spare
</text>
</mail>
</mailbox>
</item>
<item id="item12">
<location>United States</location>
<quantity>1</quantity>
<name>lessens promise </name>
<payment>Money order, Creditcard, Personal Check</payment>
<description>
<text>
preventions false voke colour need division conjoin preventions their apemantus pol plague ink incite doctrine sugar purity
</text>
</description>
<shipping>Will ship only within country, Will ship internationally, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item13">
<location>United States</location>
<quantity>1</quantity>
<name>nearer conquerors over pays </name>
<payment>Money order, Personal Check</payment>
<description>
<text>
despite instigated moralize sequel noble music carcass recompense choke massacre soundly aweary misfortune hear greatest afford commended troy stomach edward bestows piece fare gate bar her pupil longest suppress emulate filthy opposed somewhat peter church ornaments madcap sack pomfret wild stern magician set trespasses saith <keyword> lawless frederick creditors dart cousin </keyword> expects pander near finely due nell smell foundations oswald loved holy wisely table fixed way far ross <keyword> traitorously lake rose impatient </keyword> guilty lear chain depriv renascence filthy put seeing flower kindled minister forgive husband vantage tyrrel
</text>
</description>
<shipping>See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item14">
<location>United States</location>
<quantity>1</quantity>
<name>abominable confession greet heaven </name>
<payment>Creditcard, Cash</payment>
<description>
<parlist>
<listitem>
<text>
month take executioner contrive guilt big recourse follower therein fool could sickly whipt belief <emph> control picked unless desirous crash fate divide hyperboles traitors bourn notes limited passeth inflame </emph> forerun monsieur barr damned tops poetry tent manners sextus savage medicine supremacy fresh answers possession carried opposed burns asleep awkward stiffly fashion pent raised certain dogberry brains precious seduced touching throw valiant fathers creatures hare health <bold> frailty </bold> stumble henry patch outjest heartless axe lightly conrade passing easily gap gay ravin beauty thaw yourself grace loud gear falstaff dearest prick amen hope preventions speak strike use kisses desires spy hies potent <emph> idle begin call body shroud tears dark misery satiety bare from newness can loveliness bereft fulvia </emph> wooing earnest dismiss resemble fairy troyan business convenient front emperor whoremaster breeding duty dance <bold> venetian <keyword> displeasure sow law foolish strongly grieve head presently </keyword> painted have </bold> loved sheep decay legions clock brought congregation honorable kerns necklace verge humbly better distance slaves balls thyself foot passing <emph> comfort </emph> beds virtuously frets holy dumbness loose sea lusty victory wounds holds nest bosoms lord swells scratch won neighbour pedro octavia taught subjects synod grave fed unarm nicer one close territories ply uncles doubtful till devis discover trick ships goneril heavens anger <emph> castles </emph> lights spok low beggarly keeps mercy devil sword irrevocable holding succeeding lending pompey shalt uncle looks perchance egypt dearly pursuit estimation vill
</text>
</listitem>
<listitem>
<text>
<keyword> unbuckle suspense sixth holding famish last gaunt two beseech plac shy dissuade soldier obedient tokens churl </keyword> mistake adder native pandarus julius ever recompense crush juliet blanch codpiece since bosom unfruitful feed uttermost throats tom wrought addition refuse hatfield entrance marching serves palace tendance lain huswife remember merry seal scattered wast couched has labours requite wrongs report continue griev sweep suspected flight conditions unhappily eleven bed shifts remiss attire dropping printing walk pleased entire lark tricks consider awake anything collatine basin preventions instruments understand pick down take stock
</text>
</listitem>
</parlist>
</description>
<shipping>Buyer pays fixed shipping charges</shipping>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Eckhart Nations mailto:Nations@panasonic.com</from>
<to>Win Androutsos mailto:Androutsos@gte.com</to>
<date>01/19/1998</date>
<text>
messenger orlando youngest say bee reports liberty zed they airy question naught hastily falconers seems grass entrance benedick fights submit eternal embassy society through entertainment that nightly dove king far plutus pole fate ploughmen proceeding goddess boast shore counsel rais boy watchmen decay conference calling steals fall clink mean now alone fault tyrant phoebus contagion crept not commoners sequence mar thoughts money silence boist besort henry mortality something caesar <emph> whate fine </emph> wrested <bold> blemishes burns provok whom catastrophe poictiers soon graces march wild willingly walls following applied satisfied expect </bold>
</text>
</mail>
<mail>
<from>Shoichi Hjaresen mailto:Hjaresen@ualberta.ca</from>
<to>Venkata Coorg mailto:Coorg@concordia.ca</to>
<date>07/18/2001</date>
<text>
lambs self report towards madness touching <keyword> rank vizarded serves french yonder </keyword> song best mistrust paulina remedies prodigal gods proclaim lewis preventions etc definement sorrow preparation question sullen receive perceive fearfull engraven heed engag alms heavens base add eleanor fell were urg drops bright anchor worth arrive courageous unmanly superfluous benedick there compounds charm fumbles cashier his bowl leprosy pow amorous perceive follow murders midst above shoes unfold rich viol here marquis safety pillar <emph> crush </emph> either blast please eager petition followers troth comments dar afternoon heel pride calf conjure childish base cinna guilty valiant returns attendant edward duty <emph> devis creatures mangled mistake twigs swearing </emph> shelter mouth camillo cost throne hum perpetual turned english say tents dearly lion difference stern cure dejected hateful nowhere didst craves good plate gall round bait disturb effect ambitious shalt want joyful bound shall travel mud
</text>
</mail>
</mailbox>
</item>
<item id="item15">
<location>United States</location>
<quantity>1</quantity>
<name>mole bonfires </name>
<payment>Personal Check</payment>
<description>
<text>
albeit hies silk tables bravely whip violet estates counterfeited slander they bernardo hath check march flood tongues enter cassius aspiring throne these fashion change deck lead history fellowship health modern mechanical vainly wives university counterfeit
</text>
</description>
<shipping>Will ship internationally</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item16">
<location>United States</location>
<quantity>1</quantity>
<name>compact paper </name>
<payment>Creditcard, Cash</payment>
<description>
<text>
give sightless goblins believe fainted nice before answer dog dead puts <emph> parolles <keyword> there jig gathered lost counsels vulcan rags thing whiles goose toryne rascal presume bolster </keyword> shape <bold> case hair proper indictment dream </bold> untimely thorns portal maidenheads cockatrice beast impossible mowbray </emph> cup deathbed armado drives reach growing oration tarried arithmetician pays veil credulous endite embrace fetch alehouse were weeping yourselves allegiance rogue ladies chastity cow rape hated jealousy element liable press wreath issue bloody bold small shown lengthen speeches sheep dry bruised brabantio justice seas lordship <bold> given minds transparent scholar street betumbled gods lancaster infected fry </bold> begin tarre model nobleman aspire presented delight saint kindly pate sickness addition perfume degrees iron avaunt entertain besmear vainly defend everything feeds pilot transformation serv lin fails gar wed too authentic better away revolt immures protect speak ravens thirty read unkindness idle clock <emph> willing monster hercules fearing any </emph> suit smil service feast disdain contempt aloft actor profane pomfret afford lieutenantry knock lent refer side combat thee cold fain drops cloud betrays trifles melancholy within none <bold> medicine </bold> percy light careless intend phrase composition heartstrings share surely mantle set bawdy profane treasury edmund except unlink lay creatures edmund gorgeous customary must doubted strikest marry stain witty engirt dwell actions draw once meant thyself hearer whom berowne difficulties manifest elizabeth then counsel nearer prophecy eyes nation wish should groan privy bachelor scornful money canonized water forsake couch remember dim duke very farewell charms besiege turn bestowing prodigal lover blows drunk truant free gait punish rub ancestors custom tend pestilence zounds burn poetry line preparation timon dreadful now fish embrace skilful mercy loath touch <emph> aloud morn </emph> norfolk your honourable chorus fitted hook steel com fills proper weasel rebellion sighs reform must carry incomparable them
</text>
</description>
<shipping>Will ship only within country, Will ship internationally</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item17">
<location>United States</location>
<quantity>1</quantity>
<name>sake </name>
<payment>Money order, Personal Check</payment>
<description>
<text>
spite heard prodigal pound tricks hats ribbon grow increase mortimer execut cheeks pollution flying lecher three knife bar venge tallow merrier disdain climbing conceit possible <bold> midnight pedro unloose <emph> hate spark </emph> </bold>
</text>
</description>
<shipping>See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item18">
<location>United States</location>
<quantity>1</quantity>
<name>strive octavius seals happiness </name>
<payment>Cash</payment>
<description>
<text>
<emph> going feeble merit devotion consort fortunes unhappy drink alone yours pedro judgment sense near owes creeps taking stretch </emph> collected lightness possess metal ready latches laer pitiful lives file <keyword> view preventions arm conqueror express gold simular firm society driven difference </keyword> degenerate whole tremble humbleness monday seizure unfelt sicilia doth pleas asleep pleas climb sign moved exact companion gondolier same cow compliment liberal through <bold> women forbid rank misadventur push </bold> great oath slender seas fled tempests offence rosemary none thief walk appeach varro folks needless throws frowning mere mistrust execute
</text>
</description>
<shipping>Buyer pays fixed shipping charges, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item19">
<location>United States</location>
<quantity>1</quantity>
<name>gaze wages proving english </name>
<payment>Money order, Personal Check, Cash</payment>
<description>
<text>
<keyword> lovers frustrate spleen </keyword> allay severe fleer jul box sadness then deserved salisbury crystal contempt betime earl phrygian gives rather goodwin retire copy grant tragic quickly fain highness patient injuries yields prove alliance cost progress misgives <bold> drunk study </bold> followed sort devotion member fist mote julius hazard mantua nearest wrong ignorant pleas wretched hair shouldst upward bora belly hammering datchet polonius robbers preventions avaunt ingratitude gad marcellus cimber addicted wits wat clog kill fix stained queen beguiled censure practices child <keyword> dotes </keyword> gall unlocked instrument choice permit extend harmful short own attend wag deal came stephen ones madmen despis feels herself dotes nothing doubt among prayers citizens savory remembrance craves divorc deputy rests motions fardel enmity dash <bold> web roses theft wherein </bold>
</text>
</description>
<shipping>Will ship only within country, Will ship internationally</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
</mailbox>
</item>
<item id="item20">
<location>United States</location>
<quantity>1</quantity>
<name>practice space commune women </name>
<payment>Money order</payment>
<description>
<text>
telling yielding torture exit quip locks garish trespasses briefly holds posture controlled written maids attempt stomachs gaols misprizing somerset sight dangerous enfranchise contraries turn hour shut woes lip patents ail
</text>
</description>
<shipping>Will ship only within country, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Berthier Peuto mailto:Peuto@unf.edu</from>
<to>Behzad Picel mailto:Picel@att.com</to>
<date>10/20/2000</date>
<text>
footing restrain wants rail mules betwixt doubt strike young gentry pow carry guilt scholar alas customary object follies full heavily <emph> authority grim sent brother sake </emph> misers knights goes thou buttock <emph> lifts </emph> pale neither publius through joy overture falls troyans
</text>
</mail>
</mailbox>
</item>
</namerica>
<samerica>
<item id="item21">
<location>United States</location>
<quantity>2</quantity>
<name>holds perhaps despair amorous </name>
<payment>Creditcard, Cash</payment>
<description>
<parlist>
<listitem>
<text>
withal discover extracting <emph> lamb heavy leaves hazard beams corn month </emph> pestilence king gave alexander thank warrant liege hook yon leon eve porch lepidus ducdame gates purse hairs aloof owe crowns kentish other directly wonders malice weep physician prevent condemn rising shortens sport suffered dulcet needs almsman charity most thirty yet tempted <keyword> sounded instance times quarter deserv preparation </keyword> whiles gained deadly pirates cease spoke wars endure pedro foh awak thence hamlet <keyword> lusty humours </keyword> towers savage sigh turning cull spouting mistress convenient show exclaims borrowing four fin husband bestow drown herring may loud
</text>
</listitem>
<listitem>
<text>
twelve sat dismiss yesterday affects converse motion cage such taste estates augurers tonight villain
</text>
</listitem>
</parlist>
</description>
<shipping>Will ship internationally, See description for charges</shipping>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<incategory category="category0"/>
<mailbox>
<mail>
<from>Keith Lampert mailto:Lampert@infomix.com</from>
<to>Jaewon Tassinari mailto:Tassinari@gte.com</to>
<date>11/15/2001</date>
<text>
eater rein falsehood toward corners music particle carlisle glove nay athens scald loyalty bounce servants honey limed scarce ability boys honest miracle commit mightiest return throats water gift parson sure heavy whereof duly britaine naked wiser northumberland hollow integrity err mak rock assistant hush ask order discover mere accuse enmity dandle eye commended hadst part cordelia four klll trot kind many cheer fran moral dream fled brabantio broke <bold> brabantio </bold> twain ladyship state cinna daughter note bell given conjured fails dust verity town whipt been vanity wronged redoubted third wag sad thrives accused torment feeding arn open living damnable dissolve discord edmund shows baby highness burgonet flesh throws prompts again horns guest other whereto she disdained closet woe ram finger embrace vouch quips draws lodowick brains disputed thunders often seas foaming collateral after quoth galleys behind reverend dragon preventions mute trim sol determination valiant famous
</text>
</mail>
<mail>
<from>Yeshayahu O'Boyle mailto:O'Boyle@ucsb.edu</from>
<to>Derick Takano mailto:Takano@mitre.org</to>
<date>01/01/1998</date>
<text>
suff person champaign stronger swallowed vulgar difficulties prays concealing octavius defiance manly mild tyrannous lunes slanderous instruments wrathfully <bold> submits </bold> beyond qualities wheel them suggest capital lust pit unjust <keyword> high civil generation surgeon counsel effects clouds haunt prouder cloak down fain perjury </keyword>
</text>
</mail>
</mailbox>
</item>
</samerica>
</regions>
<categories>
<category id="category0">
<name>mars club seeking yea </name>
<description>
<parlist>
<listitem>
<parlist>
<listitem>
<text>
fled laugher fellowship scattered ovid strain bate tasted reports champions chest <keyword> fishes scroll pray rough tevil lechery </keyword>
</text>
</listitem>
<listitem>
<text>
<keyword> noted ruin crosses toil oblivion bottom fellows posture approve kisses fare </keyword>
</text>
</listitem>
<listitem>
<text>
full pay fortune discretion dinner reads moods thank date <keyword> trojan thunder lights table hail soothsayer course </keyword> again worse store not content monument <bold> knave laws sight decreed dispose list shakes neglected scotch like villain lov makes multiplying </bold> money deposing mighty preventions governor salisbury heavenly pride profess italian difference pains blast factions thankfulness siege upon trumpet aimest honours obeys reading seldom husbandry greeks flatterer blast tiber denied throws scruples lucius left forester divine forsworn furr trumpets fright weasel perge mean gripe unvarnish dishonest encounter drown simple animal pocket giving <bold> fires weapon revenue </bold> ragozine swain this look allottery painted barren hamlet <keyword> out blush imaginations grace adventure conrade how heard detain </keyword> loss great morning shun yon impudent granted sceptre space prayers awake hand roaring hates civil wings fare steward midnight device cords something royal green attorney thought redress angels proclamation stones eternity dull lieutenant know corn dance languishment die armourer instrument proudest mended river rude rogues bind palmers equivocal athens observance low phrase confess higher brooch sun spotted shuns old conqueror greet hurt give acting surge runs since juliet stumbled victorious finely dead greeting carve retire song shock tennis armour othello chair engine currents dies event peremptory helenus straight unbonneted nights honestly looking vouchsafe hovel pain prithee planets whites smiling found blench vain suits awak berowne peace churchyard spot air ague dotage discerning throne vouchsafe teach ministers urg bastards ground meddle impasted polack throat forehead vast preferr adelaide remov rage packs fix meg met apprehensive omitted foams helenus beams takes subjects must merry
</text>
</listitem>
<listitem>
<text>
<emph> witchcraft <keyword> savage </keyword> </emph>
</text>
</listitem>
</parlist>
</listitem>
<listitem>
<text>
compare sometime slipper executioner shipwright afeard boys fearing overearnest substance weighty smart come rescue catch <bold> harry <keyword> eleanor untainted once surpris places pursued </keyword> backward </bold> fate liegemen delight mother wood took outrage covert error preventions abhor contend advancement whisper misery throats character dwells dreams store guiltless leave pedro
</text>
</listitem>
<listitem>
<text>
powerful evil language awhile importeth modern lip froth profession finger opinions thumb <keyword> egypt moreover moth plot lap children nut preordinance defend reviv benedick </keyword> humility odds failing slow nonprofit villany resolv quality sluic levying showing plucks saw friendly admiral pitch limping difference juice mov succession field <bold> disguised oxford </bold> honesty fashioning lies surgeon submit forbid cloudy apprehended edmund empire horrible brooks hubert wonder advised due perfection past <keyword> have corn </keyword> fates foes challeng scope lunatic against osw bocchus priam till banished what darts wisdom iras weal importunity england sick city sourest physic east concluded naples absence hang sententious medlar grief afternoon miscarried silver flint
</text>
</listitem>
</parlist>
</description>
</category>
</categories>
<catgraph>
<edge from="category0" to="category0"/>
</catgraph>
<people>
<person id="person0">
<name>Huei Demke</name>
<emailaddress>mailto:Demke@uu.se</emailaddress>
<address>
<street>95 Grinter St</street>
<city>Macon</city>
<country>United States</country>
<zipcode>32</zipcode>
</address>
<creditcard>8182 1228 4493 3873</creditcard>
<profile income="55386.86">
<education>High School</education>
<gender>male</gender>
<business>No</business>
<age>37</age>
</profile>
</person>
<person id="person1">
<name>Daishiro Juric</name>
<emailaddress>mailto:Juric@rwth-aachen.de</emailaddress>
<phone>+0 (692) 53964736</phone>
<address>
<street>5 Pinet St</street>
<city>Athens</city>
<country>United States</country>
<province>Vermont</province>
<zipcode>13</zipcode>
</address>
<homepage>http://www.rwth-aachen.de/~Juric</homepage>
<creditcard>7833 6950 5399 8913</creditcard>
<watches>
<watch open_auction="open_auction2"/>
<watch open_auction="open_auction4"/>
<watch open_auction="open_auction5"/>
<watch open_auction="open_auction6"/>
<watch open_auction="open_auction9"/>
<watch open_auction="open_auction0"/>
</watches>
</person>
<person id="person2">
<name>Kawon Unni</name>
<emailaddress>mailto:Unni@llnl.gov</emailaddress>
<phone>+0 (866) 58076283</phone>
<watches>
<watch open_auction="open_auction0"/>
<watch open_auction="open_auction7"/>
<watch open_auction="open_auction2"/>
<watch open_auction="open_auction4"/>
</watches>
</person>
<person id="person3">
<name>Ewing Andrade</name>
<emailaddress>mailto:Andrade@fsu.edu</emailaddress>
<profile income="41889.41">
<interest category="category0"/>
<interest category="category0"/>
<education>Graduate School</education>
<gender>female</gender>
<business>Yes</business>
<age>18</age>
</profile>
<watches>
<watch open_auction="open_auction6"/>
<watch open_auction="open_auction10"/>
<watch open_auction="open_auction2"/>
<watch open_auction="open_auction6"/>
<watch open_auction="open_auction5"/>
</watches>
</person>
<person id="person4">
<name>Jamaludin Kleiser</name>
<emailaddress>mailto:Kleiser@edu.hk</emailaddress>
<phone>+0 (400) 25499686</phone>
<homepage>http://www.edu.hk/~Kleiser</homepage>
<profile income="9876.00">
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<education>High School</education>
<business>No</business>
<age>34</age>
</profile>
</person>
<person id="person5">
<name>Eliana Ruemmler</name>
<emailaddress>mailto:Ruemmler@forth.gr</emailaddress>
<phone>+0 (361) 10427629</phone>
<homepage>http://www.forth.gr/~Ruemmler</homepage>
<watches>
</watches>
</person>
<person id="person6">
<name>Bassem Nagasaki</name>
<emailaddress>mailto:Nagasaki@panasonic.com</emailaddress>
<phone>+0 (182) 62129440</phone>
<homepage>http://www.panasonic.com/~Nagasaki</homepage>
<creditcard>6012 3708 3300 9328</creditcard>
</person>
<person id="person7">
<name>Mehrdad McCay</name>
<emailaddress>mailto:McCay@acm.org</emailaddress>
<address>
<street>40 Kipper St</street>
<city>Lyon</city>
<country>United States</country>
<zipcode>33</zipcode>
</address>
<homepage>http://www.acm.org/~McCay</homepage>
<watches>
<watch open_auction="open_auction10"/>
<watch open_auction="open_auction6"/>
<watch open_auction="open_auction7"/>
<watch open_auction="open_auction6"/>
<watch open_auction="open_auction10"/>
</watches>
</person>
<person id="person8">
<name>Bassem Manderick</name>
<emailaddress>mailto:Manderick@uiuc.edu</emailaddress>
<phone>+0 (18) 14026838</phone>
<address>
<street>45 Ratnaker St</street>
<city>Zihuatenejo</city>
<country>United States</country>
<province>Illinois</province>
<zipcode>4</zipcode>
</address>
<creditcard>8940 7694 6616 2527</creditcard>
<watches>
<watch open_auction="open_auction2"/>
<watch open_auction="open_auction7"/>
<watch open_auction="open_auction8"/>
<watch open_auction="open_auction8"/>
<watch open_auction="open_auction2"/>
</watches>
</person>
<person id="person9">
<name>Jarkko Nozawa</name>
<emailaddress>mailto:Nozawa@concordia.ca</emailaddress>
<phone>+0 (835) 5433372</phone>
<homepage>http://www.concordia.ca/~Nozawa</homepage>
<creditcard>2447 4672 2532 3021</creditcard>
<profile income="57878.50">
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<business>No</business>
<age>33</age>
</profile>
</person>
<person id="person10">
<name>Masanao Marsiglia</name>
<emailaddress>mailto:Marsiglia@cas.cz</emailaddress>
<address>
<street>22 Caticha St</street>
<city>Phoenix</city>
<country>United States</country>
<province>Alaska</province>
<zipcode>31</zipcode>
</address>
<creditcard>8543 4364 4394 3142</creditcard>
<profile income="44300.88">
<interest category="category0"/>
<interest category="category0"/>
<education>Other</education>
<gender>female</gender>
<business>Yes</business>
<age>48</age>
</profile>
<watches>
<watch open_auction="open_auction0"/>
<watch open_auction="open_auction9"/>
</watches>
</person>
<person id="person11">
<name>Saul Schaap</name>
<emailaddress>mailto:Schaap@forth.gr</emailaddress>
<phone>+0 (255) 85051213</phone>
<address>
<street>11 Gumm St</street>
<city>Cody</city>
<country>United States</country>
<province>Montana</province>
<zipcode>28</zipcode>
</address>
<profile income="33731.14">
<interest category="category0"/>
<education>College</education>
<business>Yes</business>
<age>23</age>
</profile>
<watches>
<watch open_auction="open_auction3"/>
<watch open_auction="open_auction7"/>
<watch open_auction="open_auction0"/>
<watch open_auction="open_auction1"/>
<watch open_auction="open_auction8"/>
<watch open_auction="open_auction0"/>
<watch open_auction="open_auction9"/>
</watches>
</person>
<person id="person12">
<name>Kishor Monkewich</name>
<emailaddress>mailto:Monkewich@llnl.gov</emailaddress>
<phone>+0 (254) 26597439</phone>
<address>
<street>6 Thiria St</street>
<city>Denver</city>
<country>United States</country>
<province>Mississipi</province>
<zipcode>20</zipcode>
</address>
<homepage>http://www.llnl.gov/~Monkewich</homepage>
<creditcard>7036 1307 7693 1072</creditcard>
<profile income="43552.04">
<interest category="category0"/>
<gender>female</gender>
<business>Yes</business>
</profile>
</person>
<person id="person13">
<name>Martti Halgason</name>
<emailaddress>mailto:Halgason@bell-labs.com</emailaddress>
<phone>+0 (778) 41220156</phone>
<profile income="41407.27">
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<interest category="category0"/>
<gender>female</gender>
<business>Yes</business>
<age>20</age>
</profile>
<watches>
<watch open_auction="open_auction7"/>
</watches>
</person>
<person id="person14">
<name>Laurian Grass</name>
<emailaddress>mailto:Grass@yorku.ca</emailaddress>
<phone>+0 (486) 33977729</phone>
<address>
<street>44 Wergeland St</street>
<city>Mobile</city>
<country>United States</country>
<zipcode>29</zipcode>
</address>
<creditcard>1021 8216 1485 5908</creditcard>
<profile income="53231.89">
<interest category="category0"/>
<gender>male</gender>
<business>Yes</business>
<age>28</age>
</profile>
</person>
<person id="person15">
<name>Shooichi Oerlemans</name>
<emailaddress>mailto:Oerlemans@ac.jp</emailaddress>
<address>
<street>7 Rein St</street>
<city>Alexandria</city>
<country>Cook Islands</country>
<zipcode>13</zipcode>
</address>
<creditcard>1796 7353 7134 5098</creditcard>
<watches>
<watch open_auction="open_auction9"/>
<watch open_auction="open_auction1"/>
<watch open_auction="open_auction2"/>
<watch open_auction="open_auction6"/>
<watch open_auction="open_auction8"/>
<watch open_auction="open_auction8"/>
</watches>
</person>
<person id="person16">
<name>Uzi Atrawala</name>
<emailaddress>mailto:Atrawala@cwru.edu</emailaddress>
<phone>+49 (161) 95788409</phone>
<address>
<street>77 Coyle St</street>
<city>Great</city>
<country>United States</country>
<province>Oklahoma</province>
<zipcode>14</zipcode>
</address>
<profile income="26302.86">