-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_pairs_prepared.jsonl
8858 lines (8858 loc) · 736 KB
/
test_pairs_prepared.jsonl
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
{"prompt":"Giving affection, having a close relationship (4,2,5)","completion":" hand in glove\n"}
{"prompt":"Many sheets of paper are rewritten, as well as manuscript (5)","completion":" reams\n"}
{"prompt":"Hints from prisoners about this, oddly (9)","completion":" intimates\n"}
{"prompt":"Fashion line for Cara Delevingne, say (5)","completion":" model\n"}
{"prompt":"Rising star, for example, showing class (5)","completion":" genus\n"}
{"prompt":"Where I might put butter, having great success (2,1,4)","completion":" on a roll\n"}
{"prompt":"Beautiful female - look! (4)","completion":" fair\n"}
{"prompt":"Commotions after this month’s orders (12)","completion":" instructions\n"}
{"prompt":"Sister accepting a judgement, finally, following lawsuit for compensation (12)","completion":" satisfaction\n"}
{"prompt":"Be left with yard full of beans (6)","completion":" lively\n"}
{"prompt":"More furious head abandoned area (10)","completion":" wilderness\n"}
{"prompt":"Good-for-nothing doctor working with little energy (5)","completion":" drone\n"}
{"prompt":"Attractive type cut hair, upset (8)","completion":" distress\n"}
{"prompt":"Adult permitted to be hugged by most of these sportsmen ? (8)","completion":" athletes\n"}
{"prompt":"Harsh to cut off electricity at first (6)","completion":" severe\n"}
{"prompt":"Trip with mates, I suspect, that’s good for morale (4,6)","completion":" team spirit\n"}
{"prompt":"Work adding a large gemstone (4)","completion":" opal\n"}
{"prompt":"Curiously OTT about a medium hit by private record label (5,6)","completion":" tamla motown\n"}
{"prompt":"American boarding train for famous race meeting (5,5)","completion":" royal ascot\n"}
{"prompt":"Bully , in reality, ran theatre (6)","completion":" tyrant\n"}
{"prompt":"Swine scratching rear of Polo in B-road? (5)","completion":" brute\n"}
{"prompt":"Sound from the old record (4)","completion":" yelp\n"}
{"prompt":"Lazy person arranged date with a bed (8)","completion":" deadbeat\n"}
{"prompt":"Write about melody part of Holst's famed suite (7)","completion":" neptune\n"}
{"prompt":"Stumble before the French start event (6,4)","completion":" triple jump\n"}
{"prompt":"Floats a good deal (5)","completion":" rafts\n"}
{"prompt":"Sweetheart from Vienna let off (9)","completion":" valentine\n"}
{"prompt":"Lad likely to go wrong? Romeo, Romeo ! (4-6)","completion":" lady-killer\n"}
{"prompt":"Rear section of orchestra is effective (5)","completion":" raise\n"}
{"prompt":"Ship commander ‘s hat - one with brown on the outside (7) CAPTAIN : A type of hat precedes the Roman numeral for one around which (on the outside) goes a word for a shade of brown 9a Hurry with small beer for rugby player (3,4) FLY HALF : A simple construction of two synonyms for hurry and small beer (or a measure thereof) 10a Regular - and what one wears? (7) UNIFORM : The solution is an adjective, the definition a noun relating to someone who serves in the military 11a At home, taking care of planning (9) INTENDING : The common two-letter word for at home, plus a word for taking care of, or nursing 12a Some town errands for proprietor (5) OWNER : The solution is hidden (some) in the clue 13a Lizard - try grabbing neck but not head (5)","completion":" captain\n"}
{"prompt":"Staying alert in canvas shelter I've positioned by headland (13)","completion":" attentiveness\n"}
{"prompt":"Scrap in plane -- it's about lad (8)","completion":" jettison\n"}
{"prompt":"Arrives at price to admit yours truly -- nowt! (5,2)","completion":" comes to\n"}
{"prompt":"Fan missing large part of cricket match (4)","completion":" over\n"}
{"prompt":"Gift wrapping I had for chairperson (9)","completion":" president\n"}
{"prompt":"Time small town dismisses lead ploughman’s work (7)","completion":" tillage\n"}
{"prompt":"Writer admitting current work is a cinematic life story (6)","completion":" biopic\n"}
{"prompt":"Singer failing to inhale oxygen (5)","completion":" voice\n"}
{"prompt":"Drink bottle (6)","completion":" spirit\n"}
{"prompt":"Everyone beginning to enjoy gruesome parable (8)","completion":" allegory\n"}
{"prompt":"Lead search for marine creature (8)","completion":" starfish\n"}
{"prompt":"This spins, whichever way you look at it (5)","completion":" rotor\n"}
{"prompt":"Poorly and obese - Edward’s doomed (3-5)","completion":" ill-fated\n"}
{"prompt":"Help a lama out, being top dog (5,4)","completion":" alpha male\n"}
{"prompt":"Problem caused by a cold potato dish - colcannon, primarily (8)","completion":" acrostic\n"}
{"prompt":"Name it, English insect (7)","completion":" termite\n"}
{"prompt":"Wise man perhaps describing French duke’s wolf (7)","completion":" seducer\n"}
{"prompt":"Settled having something to watch on TV after changing sides (4)","completion":" firm\n"}
{"prompt":"March miles with figure backing political doctrine (7)","completion":" marxism\n"}
{"prompt":"Be in wagon drunk getting wheeled home (9)","completion":" winnebago\n"}
{"prompt":"Material gained by Interpol yesterday (9)","completion":" polyester\n"}
{"prompt":"Upset rubbish instructor annoying person (9)","completion":" tormentor\n"}
{"prompt":"Renowned stage close by a railway (9)","completion":" legendary\n"}
{"prompt":"Dancing allowed by graduate student? (6)","completion":" ballet\n"}
{"prompt":"Fellow with the cheek to oust last bureaucrat (8)","completion":" mandarin\n"}
{"prompt":"Something stale in the fridge? That’s unlucky (4,6)","completion":" hard cheese\n"}
{"prompt":"Article by Signora Peron, born in Chile, within reach (10)","completion":" achievable\n"}
{"prompt":"Greatly upset about hot, sleepy condition (8)","completion":" lethargy\n"}
{"prompt":"Simon said strange acknowledgement (9)","completion":" admission\n"}
{"prompt":"Wind up judge (8)","completion":" conclude\n"}
{"prompt":"Soft drink, please - just half (6)","completion":" supple\n"}
{"prompt":"Doctor has spoilt his places of work (9)","completion":" hospitals\n"}
{"prompt":"Group of soldiers finding young child on railway (8)","completion":" infantry\n"}
{"prompt":"One new scoop oddly dropped this writer’s earnings (6)","completion":" income\n"}
{"prompt":"Cowboy may hold this girl with nothing on? On the contrary (5)","completion":" lasso\n"}
{"prompt":"Second look at carpet sample ? (6)","completion":" swatch\n"}
{"prompt":"Inn having area for small restaurant (7)","completion":" taverna\n"}
{"prompt":"Live conveniently next to daughter (5)","completion":" dwell\n"}
{"prompt":"Perhaps one of our neighbours led parent astray (3,6)","completion":" red planet\n"}
{"prompt":"Tries during proper practice session (9)","completion":" rehearsal\n"}
{"prompt":"Stir cocktail (7)","completion":" slammer\n"}
{"prompt":"Worked hard having no time to get drunk (5)","completion":" oiled\n"}
{"prompt":"Teach girl strangely lacking in energy (9)","completion":" lethargic\n"}
{"prompt":"Favourite bank is comparatively small (7)","completion":" pettier\n"}
{"prompt":"Habit of PPS, say, to defend Conservative (9)","completion":" addiction\n"}
{"prompt":"Understood how judge may appear after lawsuit's conclusion (7)","completion":" twigged\n"}
{"prompt":"Wood American enters with Alan quite regularly (6)","completion":" walnut\n"}
{"prompt":"Criminal triad I contend is brainwashed (13)","completion":" indoctrinated\n"}
{"prompt":"Doctor i.e. a GP using animals in tests (6,4)","completion":" guinea pigs\n"}
{"prompt":"Recall e.g. Michael Stipe losing one million (8)","completion":" remember\n"}
{"prompt":"Wise guy? (5)","completion":" ernie\n"}
{"prompt":"Impassive cathedral bigwig pocketing 500 per year (7)","completion":" deadpan\n"}
{"prompt":"Deputy leader pens directive with a new order (4-9)","completion":" vice-president\n"}
{"prompt":"Attacks team in Norfolk region (10)","completion":" broadsides\n"}
{"prompt":"Loads get moved inside these pubs without argument (7)","completion":" barrows\n"}
{"prompt":"Something on an aircraft maybe that spins both ways (5)","completion":" rotor\n"}
{"prompt":"Apart from that parent, Mike’s left with Ernie? (9)","completion":" otherwise\n"}
{"prompt":"Modern company with new caretaker? (12)","completion":" contemporary\n"}
{"prompt":"Take home large vase, we’re told (4)","completion":" earn\n"}
{"prompt":"Second best riot (6)","completion":" scream\n"}
{"prompt":"Unusual stuffing for a recipe (4)","completion":" rare\n"}
{"prompt":"Article to post assuming costs primarily go up (6)","completion":" ascend\n"}
{"prompt":"Develop a liking for bear also missing tail (4,2)","completion":" take to\n"}
{"prompt":"Colour scheme in section of wide corridor (5)","completion":" decor\n"}
{"prompt":"Character, kind learner should follow? (4,5)","completion":" role model\n"}
{"prompt":"Style of painting round most of reception (2,3)","completion":" op art\n"}
{"prompt":"Out of bed, watches broadcast that's on a higher plane (8)","completion":" upstairs\n"}
{"prompt":"Diesel car Opel recalled to accommodate authorities (7)","completion":" oracles\n"}
{"prompt":"Only partly clear a cheque, that causes irritation (7)","completion":" earache\n"}
{"prompt":"Fashion assembled with builder's gear (6)","completion":" method\n"}
{"prompt":"Time one's item for cooking -- I should get things beaten (7)","completion":" timpani\n"}
{"prompt":"Pressure lover not to take motorway at first (6)","completion":" stress\n"}
{"prompt":"Steamed up with fragrant fumes? (8)","completion":" incensed\n"}
{"prompt":"Subject: drawing in right line on map (6)","completion":" tropic\n"}
{"prompt":"Dog sleigh crow tampered with (5,5)","completion":" welsh corgi\n"}
{"prompt":"Private documents one sent up to Charlie (5)","completion":" idiot\n"}
{"prompt":"Asset with mice all over the place, bring in a feline (7,3)","completion":" siamese cat\n"}
{"prompt":"Stealing on the rise (7)","completion":" lifting\n"}
{"prompt":"Tablet after start of stomach upset (5)","completion":" spill\n"}
{"prompt":"American with endearing accent (5)","completion":" acute\n"}
{"prompt":"Return to compete, securing record by end of April (7)","completion":" replace\n"}
{"prompt":"Hold back sailor with taint of guilt (7)","completion":" abstain\n"}
{"prompt":"Information, given prior to summit, in contradictory language (8)","completion":" newspeak\n"}
{"prompt":"Away team risk a long shot (7,6)","completion":" outside chance\n"}
{"prompt":"Put out when mine is swallowed by bar worker (9)","completion":" indignant\n"}
{"prompt":"Brief period in deficit (8)","completion":" shortage\n"}
{"prompt":"Seafood fraud private investigator reveals (6)","completion":" scampi\n"}
{"prompt":"Very scary , shock increasing (4-7)","completion":" hair-raising\n"}
{"prompt":"Underground part of passage reportedly allowed (7)","completion":" rootlet\n"}
{"prompt":"Hard stone terrine regularly used (5)","completion":" stern\n"}
{"prompt":"Sleep on family's sheets (7)","completion":" napkins\n"}
{"prompt":"Passing light reflected over grass (8)","completion":" elapsing\n"}
{"prompt":"Raised game and beat friend, of course (9)","completion":" naturally\n"}
{"prompt":"Tough lifting gold sculpture (6)","completion":" robust\n"}
{"prompt":"Amusing daughter with sound of drum (5)","completion":" droll\n"}
{"prompt":"Critic of a policy change in theory every so often (8)","completion":" attacker\n"}
{"prompt":"Cricket, say , is popular when attending school (6)","completion":" insect\n"}
{"prompt":"Aboard a French ship remedy poor energy and sickly condition (13)","completion":" unhealthiness\n"}
{"prompt":"Shifty student that's sore over bet being exposed (6)","completion":" louche\n"}
{"prompt":"Born with working hearts? These should indicate life (7)","completion":" breaths\n"}
{"prompt":"Plant ‘s deputy welcoming personnel (5)","completion":" shrub\n"}
{"prompt":"Books are full of these court judgments (9)","completion":" sentences\n"}
{"prompt":"Goat maybe scratching head, say (5)","completion":" utter\n"}
{"prompt":"Chaps initially sound exasperated after this writer is gross (7)","completion":" immense\n"}
{"prompt":"Mean greeting from Roman? Be angry (7)","completion":" average\n"}
{"prompt":"Nurses stress badly about strikes at heart (7)","completion":" sisters\n"}
{"prompt":"Girl catching on in Italian city (6)","completion":" verona\n"}
{"prompt":"Relax flying a kite, say, across banks of Tyne (4,2,4)","completion":" take it easy\n"}
{"prompt":"Work together in area of land surrounding base (8)","completion":" interact\n"}
{"prompt":"Head of female rabbit enthralling male (4)","completion":" dome\n"}
{"prompt":"Worry mustang’s tempted to bite (5)","completion":" angst\n"}
{"prompt":"Busy ? Not working, with time for fun principally! (9)","completion":" detective\n"}
{"prompt":"Able to go topless in bar (5)","completion":" lever\n"}
{"prompt":"Material many Londoners will acquire (5)","completion":" nylon\n"}
{"prompt":"Import from Nice is facing upset (12)","completion":" significance\n"}
{"prompt":"Audacity namely concerning undergarment (9)","completion":" brassiere\n"}
{"prompt":"Yale is broken with little effort (6)","completion":" easily\n"}
{"prompt":"Mountain top following fault (5)","completion":" sinai\n"}
{"prompt":"Buzzing insects' queen producing extract (12)","completion":" quintessence\n"}
{"prompt":"Horned animals attack toreadors finally (5) GOATS : A (2,2)","completion":" goats\n"}
{"prompt":"Bust is forward maintaining volume (9)","completion":" insolvent\n"}
{"prompt":"Feeling better than you are! (8)","completion":" arrogant\n"}
{"prompt":"Fellow absorbing American writer (5)","completion":" twain\n"}
{"prompt":"Put down drink (6)","completion":" squash\n"}
{"prompt":"16 perhaps losing head as result of injury (4)","completion":" scar\n"}
{"prompt":"Try blocking extremely serious cuts (6)","completion":" shears\n"}
{"prompt":"Singular ruin (5)","completion":" queer\n"}
{"prompt":"This is why broadcast is contrary to religious belief (6)","completion":" heresy\n"}
{"prompt":"Man stood trembling, seeing such a creature (8)","completion":" mastodon\n"}
{"prompt":"Tom Sawyer maybe rude: tavern in uproar! (10)","completion":" adventurer\n"}
{"prompt":"Greek deity once featured in two articles (6)","completion":" athena\n"}
{"prompt":"Do we hear Capone is mocking African port? (7)","completion":" algiers\n"}
{"prompt":"Stick man? (3)","completion":" rod\n"}
{"prompt":"Robber born with that certain something … (6)","completion":" bandit\n"}
{"prompt":"Timber lifting in Noah’s Ark (3)","completion":" ash\n"}
{"prompt":"He is the lightest one! (5,3)","completion":" inert gas\n"}
{"prompt":"Perkins or Lawley say to take legal action (3)","completion":" sue\n"}
{"prompt":"Sailor to attain goal (6)","completion":" target\n"}
{"prompt":"Idols sang high for musical effect (9)","completion":" glissando\n"}
{"prompt":"Filming golf spectators in range (8,7)","completion":" shooting gallery\n"}
{"prompt":"Beginning or ending of mountain climb (7)","completion":" nascent\n"}
{"prompt":"Knife fight about it upset learner driver (8)","completion":" stiletto\n"}
{"prompt":"Stand below with sly type (6)","completion":" weasel\n"}
{"prompt":"Search staff nurse, at first in cabin (7)","completion":" manhunt\n"}
{"prompt":"Important to keep can very cold (6)","completion":" biting\n"}
{"prompt":"Drop choice to lead London's police force (7)","completion":" plummet\n"}
{"prompt":"Refusing single answer, trivial question unsettled entertainer (13)","completion":" ventriloquist\n"}
{"prompt":"Circle Line information that finally worker absorbs (7)","completion":" tangent\n"}
{"prompt":"Fight expected against school's closure (4)","completion":" duel\n"}
{"prompt":"Fun manifestly absent every so often after golf (6)","completion":" gaiety\n"}
{"prompt":"Type of soup , bat, a help prepared (8)","completion":" alphabet\n"}
{"prompt":"King, tense over guards on journey (4)","completion":" trek\n"}
{"prompt":"Power engineers are inclined to put on an act (7)","completion":" pretend\n"}
{"prompt":"The strange island state with moral values (7)","completion":" ethical\n"}
{"prompt":"One could get bored in Qatar, for example (8)","completion":" oilfield\n"}
{"prompt":"Isolated and lacking feeling? (3,2,5)","completion":" out of touch\n"}
{"prompt":"Exercises twice before unwrapping rich digestive (6)","completion":" peptic\n"}
{"prompt":"Result in French is absent from publication (5)","completion":" ensue\n"}
{"prompt":"Servant worried about this compiler’s declarations (9)","completion":" averments\n"}
{"prompt":"Guide the woman inside old city (5)","completion":" usher\n"}
{"prompt":"Cruelty is admitted by sorrowful male (6)","completion":" sadism\n"}
{"prompt":"Small - very small - river is most agreeable (8)","completion":" sweetest\n"}
{"prompt":"Tamper with entrance outside court (6)","completion":" doctor\n"}
{"prompt":"Ref rants about substitution (8)","completion":" transfer\n"}
{"prompt":"Pass stuff (5)","completion":" gorge\n"}
{"prompt":"Owner of trunk in the plane that’s flying (8)","completion":" elephant\n"}
{"prompt":"Answer’s in perplexing political publication (7)","completion":" hansard\n"}
{"prompt":"Lay out large meal (6)","completion":" spread\n"}
{"prompt":"Ordinary article kept in large house (7)","completion":" vanilla\n"}
{"prompt":"Son of Parisian visibly embarrassed having runs (8)","completion":" laddered\n"}
{"prompt":"Professor coming round with drink (4)","completion":" down\n"}
{"prompt":"Quiet voice that provides cover (7)","completion":" shutter\n"}
{"prompt":"Branch from ascent leaving summit (4)","completion":" limb\n"}
{"prompt":"You French, cheeky about hollow depravity (9)","completion":" turpitude\n"}
{"prompt":"Despite miserliness, purchases record (7)","completion":" itemise\n"}
{"prompt":"Finally shed tears for weaklings (5)","completion":" drips\n"}
{"prompt":"Time off for depression ? (6)","completion":" recess\n"}
{"prompt":"This compiler's rubbish, being naughty ! (6)","completion":" impish\n"}
{"prompt":"Without warning , Trump gets twitchy keeping nothing on Independent politician (9)","completion":" impromptu\n"}
{"prompt":"… bet lost in fire is a disappointment (7)","completion":" setback\n"}
{"prompt":"People paid to secure parking for supporters (5)","completion":" props\n"}
{"prompt":"Possibly major row (4)","completion":" rank\n"}
{"prompt":"Showing sign of stress? (6)","completion":" italic\n"}
{"prompt":"Spinner caught by posh Scotsman? Ideal! (7)","completion":" utopian\n"}
{"prompt":"Inspect unit struggling with crises (10)","completion":" scrutinise\n"}
{"prompt":"Import of poor gin condemned (7)","completion":" meaning\n"}
{"prompt":"Feel one’s way round one in musical (6)","completion":" orient\n"}
{"prompt":"Involving espionage , conceal article, knife, behind Bond’s back (5,3,6)","completion":" cloak and dagger\n"}
{"prompt":"Not living together may become a factor (5)","completion":" apart\n"}
{"prompt":"Film made by two serving US soldiers (4)","completion":" gigi\n"}
{"prompt":"Spread out uniform (4)","completion":" flat\n"}
{"prompt":"Awful record on the radio leads to conversation (8)","completion":" dialogue\n"}
{"prompt":"Dance with couple on stage (3-4)","completion":" two-step\n"}
{"prompt":"Intellectual for instance claims golf title (7)","completion":" egghead\n"}
{"prompt":"Essential new wine (4)","completion":" must\n"}
{"prompt":"Army, perhaps on edge, professed loyalty that’s insincere (3,7)","completion":" lip service\n"}
{"prompt":"Subtlety of problem is overlooked (6)","completion":" nuance\n"}
{"prompt":"Present hairstyle, cut by pro (7)","completion":" perform\n"}
{"prompt":"Drink very quietly over in Syrian city (6)","completion":" aleppo\n"}
{"prompt":"See British getting high return ? (3)","completion":" lob\n"}
{"prompt":"Lug instrument and books round room? (8)","completion":" otoscope\n"}
{"prompt":"Warm female appears in a moral tale (7)","completion":" affable\n"}
{"prompt":"Droll nonsense -- could it bring the house down ? (3,3)","completion":" dry rot\n"}
{"prompt":"Answer given by Roman Catholic in Bow (3)","completion":" arc\n"}
{"prompt":"Free grain initially for large bird (5)","completion":" goose\n"}
{"prompt":"Charlie can flipping wait, wanting answer (6)","completion":" nitwit\n"}
{"prompt":"Student help put in place (4)","completion":" laid\n"}
{"prompt":"While away, alcohol’s something holidaymaker requires (8)","completion":" passport\n"}
{"prompt":"Litres swallowed by enthusiastic, tailless bird (5)","completion":" eagle\n"}
{"prompt":"Walked around centre of Tokyo, crowded (6)","completion":" packed\n"}
{"prompt":"Series of mountains infuriate king climbing to the top (5)","completion":" range\n"}
{"prompt":"Fall down in mountain pass and expire (8)","completion":" collapse\n"}
{"prompt":"Rush ahead of me to find flower arrangement (6)","completion":" raceme\n"}
{"prompt":"Blast husband going to choose dental accessory (9)","completion":" toothpick\n"}
{"prompt":"Composer in far off New Zealand heard programme (5,5)","completion":" franz liszt\n"}
{"prompt":"Most horrible November so far is equal on temperature (8)","completion":" nastiest\n"}
{"prompt":"Part of speech some denounced (4)","completion":" noun\n"}
{"prompt":"Different guides then bless you ! (10)","completion":" gesundheit\n"}
{"prompt":"Bring charges over brooch in flat (6)","completion":" supine\n"}
{"prompt":"Rumoured fellow graduate, Girton’s top one will retain post (7)","completion":" mailbag\n"}
{"prompt":"Youngster’s getting to grips with electronic clues (5)","completion":" leads\n"}
{"prompt":"Beam, coming in for each date - will this session be heard upstairs ? (6,7)","completion":" prayer meeting\n"}
{"prompt":"Ace doubling up on wings for his home town, bypassing midfield (4)","completion":" best\n"}
{"prompt":"Rubbish President nearly dropping odds (8)","completion":" trumpery\n"}
{"prompt":"Officer material with a unit, periodically (8)","completion":" sergeant\n"}
{"prompt":"Some food about, through roe principally (6)","completion":" caviar\n"}
{"prompt":"Article on job cut for presenter (6)","completion":" anchor\n"}
{"prompt":"Posh commended being elevated (8)","completion":" upraised\n"}
{"prompt":"Quits supporting the Spanish teams (7)","completion":" elevens\n"}
{"prompt":"Bank role propping up pound (7)","completion":" rampart\n"}
{"prompt":"Bush says piece as politician (5,9)","completion":" elder statesman\n"}
{"prompt":"Bearers of gifts may be somewhat unimaginative (4)","completion":" magi\n"}
{"prompt":"Roman governor of Thrace moved across banks of Tiber (8)","completion":" tetrarch\n"}
{"prompt":"Embark on challenge and risk getting stung (5,3,6)","completion":" grasp the nettle\n"}
{"prompt":"Description of artist with sex appeal supporting Calais, perhaps (8)","completion":" portrait\n"}
{"prompt":"Failure since employed by Grand Prix company (6)","completion":" fiasco\n"}
{"prompt":"Body snatcher ultimately found hiding in thicket (6)","completion":" corpse\n"}
{"prompt":"Live with more ferocious fox (8)","completion":" bewilder\n"}
{"prompt":"Instrument some collected on the way back (5)","completion":" cello\n"}
{"prompt":"Fierce person keeping grand in bank (5)","completion":" tiger\n"}
{"prompt":"Son fibs about 500 items in playground? (6)","completion":" slides\n"}
{"prompt":"Notice ring on tailless bird (7)","completion":" discern\n"}
{"prompt":"Orchard’s initial scope for fruit (6)","completion":" orange\n"}
{"prompt":"Feud in TA after check involving death (8)","completion":" vendetta - place ta after a three\n"}
{"prompt":"In workshop, American academic (8)","completion":" studious - an artist’s workshop and one of the two\n"}
{"prompt":"Capone posed at home hugging a dog like Rin Tin Tin ? (8)","completion":" alsatian\n"}
{"prompt":"Praise one keeping company with boy (8)","completion":" accolade\n"}
{"prompt":"Having trouble catching goat, say, identified as culprit (14)","completion":" butterfingered\n"}
{"prompt":"Spoil preserve adding in yellow herb (8)","completion":" marjoram\n"}
{"prompt":"School subject Pakistani talks a little about (5)","completion":" latin\n"}
{"prompt":"Prestige of queen visiting monument (7)","completion":" stature\n"}
{"prompt":"Doug's ultimate delight in succeeding US broadcaster making bloomer (8)","completion":" foxglove\n"}
{"prompt":"Room having usual gloomy appearance (7)","completion":" parlour\n"}
{"prompt":"Hold funeral sadly banning students? It's without precedent (7-2)","completion":" unheard-of\n"}
{"prompt":"Anxious future, maybe (5)","completion":" tense\n"}
{"prompt":"Leaves Pisa occasionally in new Golf heading for Empoli (7)","completion":" foliage\n"}
{"prompt":"Driven apart , criticise Ferguson's old lot? (9)","completion":" disunited\n"}
{"prompt":"Quick inspection of rising river entering Cornish town (4-3)","completion":" look-see\n"}
{"prompt":"Old man's expression of gratitude for food (5)","completion":" pasta\n"}
{"prompt":"Weapons going west in aeroplane’s racks (7)","completion":" arsenal\n"}
{"prompt":"Vendors using lines adopted by people who view (7)","completion":" sellers\n"}
{"prompt":"Private meal, excluding starter (5)","completion":" inner\n"}
{"prompt":"Complex vote in the Republic of Argentina? (7)","completion":" electra\n"}
{"prompt":"What’s left after smoothing affairs across Italy? (7)","completion":" filings\n"}
{"prompt":"Person going after drink (6)","completion":" chaser\n"}
{"prompt":"Issue with European ceremony (4,3,6)","completion":" spit and polish\n"}
{"prompt":"Loafer found in bridle-road (5)","completion":" idler\n"}
{"prompt":"Plants : gold little ones, we hear (7)","completion":" orchids\n"}
{"prompt":"Authorisation for each task (10)","completion":" permission\n"}
{"prompt":"Small milliner greatly upset (7)","completion":" shatter\n"}
{"prompt":"Early invader ’s point of view (5)","completion":" angle\n"}
{"prompt":"Labour in vain in one’s stocking feet? (1,8,6)","completion":" a bootless errand\n"}
{"prompt":"Surrendered and brought in (7)","completion":" yielded\n"}
{"prompt":"Apache chief in rocky region north of Missouri (8)","completion":" geronimo\n"}
{"prompt":"Fortune duly affected during shortage (4,4)","completion":" lady luck\n"}
{"prompt":"What often follows Yuletide games ? Unfortunately, anger must! (9)","completion":" arguments\n"}
{"prompt":"For instance, James Stewart fantasy ‘It’s a Wonderful Life’ (8,5)","completion":" american dream\n"}
{"prompt":"Admires northbound lasses in oilskin coats (8)","completion":" lionises\n"}
{"prompt":"Clue: ‘A welcoming northern country ‘ (5)","completion":" kenya\n"}
{"prompt":"Annuls , being concerned with rings (7)","completion":" repeals\n"}
{"prompt":"Fifth letter to the Corinthians? (7)","completion":" epsilon\n"}
{"prompt":"Intolerable having no power around Paddington? (10)","completion":" unbearable\n"}
{"prompt":"Inside, outside, almost perfect (5)","completion":" ideal\n"}
{"prompt":"Prevarication from husband - back working after one (7)","completion":" evasion\n"}
{"prompt":"Takes turns using revolving toaster (7)","completion":" rotates\n"}
{"prompt":"Hotel meal with no starter giving you the hump (5)","completion":" hunch\n"}
{"prompt":"Rejected bread rolls as cut (4)","completion":" snub\n"}
{"prompt":"Constituent and I get dinner cooked (10)","completion":" ingredient\n"}
{"prompt":"Private rooms macho types must keep nice occasionally (7)","completion":" studies\n"}
{"prompt":"Person trying to sell open-topped vessel (7)","completion":" pitcher\n"}
{"prompt":"Attempt a whopper, for one who tries to stop all attempts? (6)","completion":" goalie\n"}
{"prompt":"Inferior crown seen on headless Egyptian’s body? (6)","completion":" crummy\n"}
{"prompt":"Digitally combined, you might say – as it’s transpired (7)","completion":" emerged\n"}
{"prompt":"Damaged items Dora eventually wrote off (9)","completion":" amortised\n"}
{"prompt":"When you’re out of this, you’re not with it, on balance (6)","completion":" kilter\n"}
{"prompt":"Unemployed , fish round lake (4)","completion":" idle\n"}
{"prompt":"Uniform in attire in force (6)","completion":" duress\n"}
{"prompt":"Cunning male dropping out of parade (4)","completion":" arch\n"}
{"prompt":"Where a judge may consult dictionary ? (8)","completion":" chambers\n"}
{"prompt":"Characteristic to conceal occasionally one’s route (7)","completion":" transit\n"}
{"prompt":"Musical Yankee judge stops a neat claim failing (8,4)","completion":" calamity\n"}
{"prompt":"Fish , duck and butter twists (6)","completion":" marlin\n"}
{"prompt":"Dry air circulating by delta (4)","completion":" arid\n"}
{"prompt":"Firm haggles regularly producing likeness (5)","completion":" image\n"}
{"prompt":"Tiny edit destroyed character (8)","completion":" identity\n"}
{"prompt":"Snooze inappropriate for the dog-tired? (6)","completion":" catnap\n"}
{"prompt":"Cat flap alongside (5)","completion":" tabby\n"}
{"prompt":"Glass is raised by detective in Scottish town (8)","completion":" obsidian\n"}
{"prompt":"Solution found in extreme dysfunction (6)","completion":" remedy\n"}
{"prompt":"Bad end involves a king in the altogether (5)","completion":" naked\n"}
{"prompt":"Shows distance I moved (9)","completion":" indicates\n"}
{"prompt":"Physician flipping cross about cold temperature (6)","completion":" doctor\n"}
{"prompt":"Cook free to wrap new chicken, initially - one might use foil (6)","completion":" fencer\n"}
{"prompt":"Command head of battalion to leave frontier (5)","completion":" order\n"}
{"prompt":"Tied a female up on horse without knight (8)","completion":" fastened\n"}
{"prompt":"Drop line after editor gets upset (8)","completion":" decrease\n"}
{"prompt":"Mark somewhere to find half-digested food? (9)","completion":" semicolon\n"}
{"prompt":"Young reporters covering large nightspots (5)","completion":" clubs\n"}
{"prompt":"Spare not included (5)","completion":" extra\n"}
{"prompt":"Good-looking guy , notice, is following on (6)","completion":" adonis\n"}
{"prompt":"Wear son out in harbour (4)","completion":" port\n"}
{"prompt":"I clear that foul camp (10)","completion":" theatrical\n"}
{"prompt":"In direct competition , make for cape (4-2-4) HEAD-TO-HEAD - split the answer (4,2,4)","completion":" head-to-head\n"}
{"prompt":"MP and constituent (6)","completion":" member\n"}
{"prompt":"Cockney maybe scoffed about university causing stress (10)","completion":" accentuate\n"}
{"prompt":"Retract net opinion that’s differing (6)","completion":" unlike\n"}
{"prompt":"Semi redeveloped, shadily covering over breaks (4-8)","completion":" half-holidays\n"}
{"prompt":"Dismantle flimsy bathroom fixture ? (5,5)","completion":" strip light\n"}
{"prompt":"Worker and boss protecting king and queen - one receives a blow (12)","completion":" handkerchief\n"}
{"prompt":"Order great changes, making things worse (10)","completion":" retrograde\n"}
{"prompt":"Considering dating (6)","completion":" seeing\n"}
{"prompt":"Comic apt to repeatedly miss time for wireless broadcast (2-2)","completion":" wi-fi\n"}
{"prompt":"Smarter conversation absorbing Independent (7)","completion":" nattier\n"}
{"prompt":"Bug otherwise trapping police's head officer (9)","completion":" inspector\n"}
{"prompt":"More troublesome revolution, namely with resistance (7)","completion":" spinier\n"}
{"prompt":"Goes down drains (5)","completion":" sinks\n"}
{"prompt":"Dodgy Reliant provides convenience (7)","completion":" latrine\n"}
{"prompt":"Resignation more certain to involve split (9)","completion":" surrender\n"}
{"prompt":"Command top vessel taking armada's lead (7)","completion":" captain\n"}
{"prompt":"Suggest it's dull speaking about work (7)","completion":" propose\n"}
{"prompt":"Approach adopted if batting, for example ? (8)","completion":" instance\n"}
{"prompt":"There’s no value initially in rough fit (4)","completion":" ague\n"}
{"prompt":"Altogether enthusiastic about turnover (2,4)","completion":" in toto\n"}
{"prompt":"Head, smooth, dashes off the basics (4,3,5)","completion":" nuts and bolts\n"}
{"prompt":"Title held by the Mirror? (4)","completion":" emir\n"}
{"prompt":"Strange thing - member of parliament is one who delays retirement (5,3)","completion":" night owl\n"}
{"prompt":"Such a star must be making a film (8)","completion":" shooting\n"}
{"prompt":"Look from a figure that’s elevated in hearing (6)","completion":" appear\n"}
{"prompt":"Fantastic teacher shone no end, a dependable sort? (5,6)","completion":" sheet anchor\n"}
{"prompt":"Praise a very softly spoken liberal, a guide at intervals (7)","completion":" applaud\n"}
{"prompt":"I think penance should be designed for very tiresome type (4,2,3,4)","completion":" pain in the neck\n"}
{"prompt":"A guy’s first in Alpine resort overlooking river to get padding (8)","completion":" verbiage\n"}
{"prompt":"Part of problem is highlighted flaw (7)","completion":" blemish\n"}
{"prompt":"Common sense of former PM facing question (4,6)","completion":" grey matter\n"}
{"prompt":"Tutor playing around with opera (8)","completion":" turandot\n"}
{"prompt":"Name lake in Oregon, sadly not now as it was in the past (2,6) NO LONGER : Start with N(ame) and then an anagram (sadly) of OREGON with L(ake) inserted (in) and split the result (2,6)","completion":" no longer\n"}
{"prompt":"Quarrel involving silver upper-class car (6)","completion":" jaguar\n"}
{"prompt":"Fell on taxpayers to sort out - that’s obvious (4-11)","completion":" self-explanatory\n"}
{"prompt":"Forgiving fast about a German turning (7)","completion":" lenient\n"}
{"prompt":"Some heretic niggles revolutionary agitator (7)","completion":" inciter\n"}
{"prompt":"Scientist injecting half of mice in upper body (7)","completion":" chemist\n"}
{"prompt":"Flier bearing bow mounted on paper (8)","completion":" aircraft\n"}
{"prompt":"Hate Barbara regularly coming round house (5)","completion":" abhor\n"}
{"prompt":"Margaret when meeting sailor is a dazzling personality (8)","completion":" megastar\n"}
{"prompt":"Don't go to offer support (4)","completion":" stay\n"}
{"prompt":"Get on with any number in English school (7)","completion":" entrain\n"}
{"prompt":"Material for party in Wales ? (5)","completion":" plaid\n"}
{"prompt":"Account for one taken in by former scheme (7)","completion":" explain\n"}
{"prompt":"Some, at end, must be fodder for worms (9)","completion":" nematodes\n"}
{"prompt":"Crosby, maybe having to repay son, flaps (5,5)","completion":" bingo wings\n"}
{"prompt":"Bush, maybe , cultivated in urban place (lacking a name) (10)","completion":" republican\n"}
{"prompt":"Disciplinarian with heavy, imposing presence at the outset (4)","completion":" whip\n"}
{"prompt":"Hold old English hero (6)","completion":" nelson\n"}
{"prompt":"A good person retaining muscle for particular part (6)","completion":" aspect\n"}
{"prompt":"Much appreciated series? It’s something stunning (5)","completion":" taser\n"}
{"prompt":"Oregon pine in capital city, securely fixed, shortened (7,3)","completion":" douglas fir\n"}
{"prompt":"Fruit in nine crates, rotting (10)","completion":" nectarines\n"}
{"prompt":"Prominent headline : ‘Power Cuts Cut!’ (6)","completion":" splash\n"}
{"prompt":"Bang on and vow to support wife or daughter (4,3,4)","completion":" word for word\n"}
{"prompt":"Director gets Oscar after broadcast stream (7)","completion":" maestro\n"}
{"prompt":"Shops for lads with uniform for nothing (4)","completion":" buys\n"}
{"prompt":"Unprofitable bank (4)","completion":" lean\n"}
{"prompt":"Slim cuisine ? (11)","completion":" kitchenette\n"}
{"prompt":"Spinning some googly ball, a wily Australian character (7)","completion":" wallaby\n"}
{"prompt":"Order collapsed - that hurt transport (10)","completion":" fellowship\n"}
{"prompt":"Bit of cricket leads to some running clashes (8)","completion":" overlaps\n"}
{"prompt":"On strike, rising up and striking (11)","completion":" outstanding\n"}
{"prompt":"Stockade ‘s security measure ten times stronger in the middle (7)","completion":" paddock\n"}
{"prompt":"Pure force grabbing can (8)","completion":" pristine\n"}
{"prompt":"Flat race losing time (4)","completion":" even\n"}
{"prompt":"Gauge Conservative over interior changes (9)","completion":" criterion\n"}
{"prompt":"Stone top of arched entrance (5)","completion":" agate\n"}
{"prompt":"Northern editor keeps rats - say it doesn’t matter (5,4)","completion":" never mind\n"}
{"prompt":"Legal case covering university sale (7)","completion":" auction\n"}
{"prompt":"Advice for each person showing appreciation (6)","completion":" tipper\n"}
{"prompt":"Green mould originally occupying busy leader (7)","completion":" emerald\n"}
{"prompt":"Two ways to protect forest location, and one means of progress (8-5)","completion":" stepping-stone\n"}
{"prompt":"A snare set up independently (5)","completion":" apart\n"}
{"prompt":"Rue Andrew’s silly bloomers? (9)","completion":" underwear\n"}
{"prompt":"Catastrophe as diet’s ruined with little resistance (8)","completion":" disaster\n"}
{"prompt":"Cowboy might throw this girl over (5)","completion":" lasso\n"}
{"prompt":"Almost heading off too soon (5)","completion":" early\n"}
{"prompt":"Wayward lady I see, about 50, is weak-willed (6,3)","completion":" easily led\n"}
{"prompt":"Promise action (10)","completion":" engagement\n"}
{"prompt":"Absurd broadcast covering the French goods that are hard-wearing (8)","completion":" durables\n"}
{"prompt":"Fence built by mate in front of gazebo (6)","completion":" paling\n"}
{"prompt":"Small cabin, closed (4)","completion":" shut\n"}
{"prompt":"Explosives on lid covering opening of first access tunnel (9)","completion":" mineshaft\n"}
{"prompt":"To do urgently - masking smell (5)","completion":" odour\n"}
{"prompt":"Becoming unfocused and idling in 50% of government (7,4)","completion":" glazing over\n"}
{"prompt":"Uncle travelling with fine guide (9)","completion":" influence\n"}
{"prompt":"Cover sheltering mass inside of aula, as much as chamber holds (7)","completion":" roomful\n"}
{"prompt":"Person gambling gets team playing having lost one time, right? (8)","completion":" gamester\n"}
{"prompt":"Professed a love to embrace Victor and get married (6)","completion":" avowed\n"}
{"prompt":"Supposedly offspring of necessity is porky? (9)","completion":" invention\n"}
{"prompt":"Stadium accommodating any number in region (5)","completion":" arena\n"}
{"prompt":"Deep breath? (3,6)","completion":" sea breeze\n"}
{"prompt":"5 amps put through container ship? Seek opinion (7)","completion":" canvass\n"}
{"prompt":"Nuts are able to expand (9)","completion":" elaborate\n"}
{"prompt":"Actor Gardner on pitch in movie (6)","completion":" avatar\n"}
{"prompt":"Penniless pair keeping two ducks (4)","completion":" poor\n"}
{"prompt":"Working - in the theatre? (9)","completion":" operating\n"}
{"prompt":"Sets fire to last of walnut or half of chestnut (7)","completion":" torches\n"}
{"prompt":"Alan: chap with a century calendar (7)","completion":" almanac\n"}
{"prompt":"On which one might rank the best skaters? (7,5)","completion":" sliding scale\n"}
{"prompt":"Fashionable princess in a state ? (7)","completion":" indiana\n"}
{"prompt":"Satellite town initially associated with the Spanish celebrity (7)","completion":" telstar\n"}
{"prompt":"Film : ‘ Spellbound’ ? (9)","completion":" enchanted\n"}
{"prompt":"Lodger, perhaps unattached, meets mother with child (9)","completion":" freemason\n"}
{"prompt":"Caretaker of a joint in resort overlooking river (7)","completion":" janitor\n"}
{"prompt":"Large old vessel, a muted green (5)","completion":" lovat\n"}
{"prompt":"Runs inside to take care of dogs, leaders of the pack? (12)","completion":" trendsetters\n"}
{"prompt":"Inflexible firm we had to house poorly (6-6)","completion":" strong-willed\n"}
{"prompt":"Cup match overturned after minute - some players speechless (5)","completion":" mimes\n"}
{"prompt":"Sponge from a sucker taken aback (5)","completion":" loofa\n"}
{"prompt":"United lead conceding own goal (8)","completion":" together\n"}
{"prompt":"Conductor picked right lyric (9)","completion":" electrode\n"}
{"prompt":"Rein in dog on dog (7)","completion":" curtail\n"}
{"prompt":"Personality of a Conservative in authority (9)","completion":" character\n"}
{"prompt":"Bishop close accepting first female minister (8)","completion":" reverend\n"}
{"prompt":"A role to play in relief work ? (5)","completion":" cameo\n"}
{"prompt":"Person who might vote in change of role, etc? (7)","completion":" elector\n"}
{"prompt":"Come down heavily when fitting over (4)","completion":" teem\n"}
{"prompt":"Create a diversion in harbour (9)","completion":" entertain\n"}
{"prompt":"Fiery sailor with zeal to reform (6)","completion":" ablaze\n"}
{"prompt":"Reprimanding no head for flogging (6)","completion":" hiding\n"}
{"prompt":"Grill people lining up for a haircut, we’re told? (8)","completion":" barbecue\n"}
{"prompt":"Sensible to control a learner (8)","completion":" rational\n"}
{"prompt":"Some colonel visited the King? (5)","completion":" elvis\n"}
{"prompt":"Wicked drunk in bar still ignoring son (9)","completion":" brilliant\n"}
{"prompt":"Lock editor up, fool? (7)","completion":" dessert\n"}
{"prompt":"Several books in one large vehicle (7)","completion":" omnibus\n"}
{"prompt":"Plain in part of Cornwall an observatory (5)","completion":" llano\n"}
{"prompt":"Watch a big bee, cuckoo, and butterfly (7-5)","completion":" cabbage white\n"}
{"prompt":"Exciting experience after agent returned by chance (12)","completion":" peradventure\n"}
{"prompt":"Japanese drama about a biblical character (4)","completion":" noah\n"}
{"prompt":"Large in poster, and slim (7)","completion":" slender\n"}
{"prompt":"Avoid team that has upset favourites (8)","completion":" sidestep\n"}
{"prompt":"Short trip with short authoritarian old maid (8)","completion":" spinster\n"}
{"prompt":"Rising star I left, Lucy’s brother (5)","completion":" linus\n"}
{"prompt":"Extraordinary individual (8)","completion":" singular\n"}
{"prompt":"Democrat ousting Republican in Jersey is worried (7)","completion":" sweated\n"}
{"prompt":"Spear fishes beside Welsh river (9)","completion":" pikestaff\n"}
{"prompt":"Plenty backing person that's unpleasant (6)","completion":" enough\n"}
{"prompt":"Giving tips for actors using gestures to communicate (9)","completion":" assigning\n"}
{"prompt":"Most robust force used in breaking the ties (8)","completion":" heftiest\n"}
{"prompt":"Famous piece of scripture incorporated in new edition (5)","completion":" noted\n"}
{"prompt":"At same time as card game, hosting introduction to ludo (6)","completion":" whilst\n"}
{"prompt":"Abandons desires to have Democrat leading (7)","completion":" ditches\n"}
{"prompt":"Very loudly going after game bird (4)","completion":" ruff\n"}
{"prompt":"Obsession of crew needing first class to return (5)","completion":" mania\n"}
{"prompt":"Arterial route in Australia or Tasmania (5)","completion":" aorta\n"}
{"prompt":"Curse from Cornish listener? (5)","completion":" swear\n"}
{"prompt":"Abhorrent to Holmes, criminally hiding answer (9)","completion":" loathsome\n"}
{"prompt":"Hotel in woods given one rating or another? (5-4)","completion":" three-star\n"}
{"prompt":"Our booze brought into SCG brings punishment (9)","completion":" scourging\n"}
{"prompt":"Own costly treasure (4,4)","completion":" hold dear\n"}
{"prompt":"Keep line in order (6)","completion":" castle\n"}
{"prompt":"A Liberal has greatest following? Not quite (6)","completion":" almost\n"}
{"prompt":"Sit awkwardly during social function’s interval (8)","completion":" distance\n"}
{"prompt":"After church, substantial breakfast dish (6)","completion":" cereal\n"}
{"prompt":"Series of notes one may answer (8)","completion":" ringtone\n"}
{"prompt":"Painter ‘s skill is evident, ultimately (6)","completion":" artist\n"}
{"prompt":"Groups once more seen in Ibiza and Magaluf ? (7)","completion":" resorts\n"}
{"prompt":"Nature scene’s composed to show east\/west of Spain (7)","completion":" essence\n"}
{"prompt":"Advantages some may see in cliques (6) ASSETS : A (2,4)","completion":" assets\n"}
{"prompt":"Royal family maybe have means to develop as public figures (9,5)","completion":" household names\n"}
{"prompt":"Short seasonal workers who pack up before Christmas ? (5)","completion":" elves\n"}
{"prompt":"Encounter’s upsetting after Everton’s opener brings prize (6)","completion":" esteem\n"}
{"prompt":"Transport workers whose motion is carried by four members (6,2,6)","completion":" beasts of burden\n"}
{"prompt":"Chelsea and Everton, say, opponents at Bridge getting half-time break ? (9)","completion":" elevenses\n"}
{"prompt":"Quiet girl upset one married traveller (7)","completion":" pilgrim\n"}
{"prompt":"Improve contents of menu and fortune with leader gone (7)","completion":" enhance\n"}
{"prompt":"Time of celebration may be held up by little ones (4)","completion":" noel\n"}
{"prompt":"Broadminded member of church (8)","completion":" catholic\n"}
{"prompt":"Geographical feature of a day in the West End? (4)","completion":" wadi\n"}
{"prompt":"Goes into chippies wanting fish (6)","completion":" enters\n"}
{"prompt":"Training cadet with gun I loaded (9)","completion":" educating\n"}
{"prompt":"Declaration from nun meant no ill outside church (12)","completion":" announcement\n"}
{"prompt":"Beef good and ready to be eaten (5)","completion":" gripe\n"}
{"prompt":"Almost regretting bankruptcy (4)","completion":" ruin\n"}
{"prompt":"Food - I love toast (7)","completion":" cheerio\n"}
{"prompt":"Close to tears, disregard Italian ladies (7)","completion":" signore\n"}
{"prompt":"Bishops and knights, say, in carefully planned moves (3,6)","completion":" set pieces\n"}
{"prompt":"Spots wife circling a playground attraction (6)","completion":" seesaw\n"}
{"prompt":"Year employed by group - great, on the whole (2,3,5)","completion":" by and large\n"}
{"prompt":"Something for the breakfast table , for example - good prize (6)","completion":" eggcup\n"}
{"prompt":"Arrived a few moments ago with patient, as a precaution (4,2,4) JUST IN CASE : A phrase (4,2)","completion":" just in case\n"}
{"prompt":"Simple game with short cue (6)","completion":" rustic\n"}
{"prompt":"Good man eyed new moon (8)","completion":" ganymede\n"}
{"prompt":"Further broadcast in hours (7)","completion":" nourish\n"}
{"prompt":"One wrong handle lifted leads to alarm ringing (8)","completion":" singular\n"}
{"prompt":"That girl embracing university still rejected sleep (4-3)","completion":" shut-eye\n"}
{"prompt":"Issue anaesthetic (6)","completion":" number\n"}
{"prompt":"What fencers may use for protection? (8)","completion":" creosote\n"}
{"prompt":"Understands it's stated patient individual requires cosmetic surgery (4,3)","completion":" nose job\n"}
{"prompt":"City Spice Girl barely missed (9)","completion":" melbourne\n"}
{"prompt":"Believer a bit wet? Not the fellow being imprisoned (10)","completion":" monotheist\n"}
{"prompt":"Desdemona’s husband maybe in a desolate place (4)","completion":" moor\n"}
{"prompt":"Violent expression of sorrow before swilling gin (7)","completion":" tearing\n"}
{"prompt":"Effect of wind and rain could make one white with anger (10)","completion":" weathering\n"}
{"prompt":"One using brain is engaged by boffin who works in the lab? (15)","completion":" experimentalist\n"}
{"prompt":"Guards so large doing turns (7)","completion":" gaolers\n"}
{"prompt":"Dirty line of soldiers (6)","completion":" defile\n"}
{"prompt":"Some bigwig no reporters disregard (6)","completion":" ignore\n"}
{"prompt":"Actress, say, removing soft coat (5)","completion":" layer\n"}
{"prompt":"Journey around grand upland area (5)","completion":" ridge\n"}
{"prompt":"Thumping worker a bit (8)","completion":" handsome\n"}
{"prompt":"Edward put up with endorsing planning (9)","completion":" designing\n"}
{"prompt":"I know I want to hear from you concerning a certain something (4,2,5,2)","completion":" tell me about it\n"}
{"prompt":"Diane’s eager to reform? Beg to differ (8)","completion":" disagree\n"}
{"prompt":"Tension caused by lover hiding note (6)","completion":" stress\n"}
{"prompt":"Duck taken by each female thief (3,4)","completion":" tea leaf - a small duck that gave its name to a light bluish\n"}
{"prompt":"Snare wild ones crossing over (5)","completion":" noose\n"}
{"prompt":"Object the Parisian found under lorry (7)","completion":" article\n"}
{"prompt":"Ruled , showing no doubt (7)","completion":" decided\n"}
{"prompt":"Small number approach, right to enter country (6)","completion":" norway\n"}
{"prompt":"Refusing to reveal heavy defeat (6)","completion":" hiding\n"}
{"prompt":"Fashionable sorts of electric vehicles on the rise (5)","completion":" smart\n"}
{"prompt":"A Queen with flag backing country (7)","completion":" eritrea\n"}
{"prompt":"Disagreement disregarding Republican lie (7)","completion":" fiction\n"}
{"prompt":"Individual doing little except relax initially (5)","completion":" idler\n"}
{"prompt":"The French foreign port lacking interest (6)","completion":" leaden\n"}
{"prompt":"Offensive weapon student held in game (9)","completion":" charmless\n"}
{"prompt":"Powered boat is scrapped (5)","completion":" rowed\n"}
{"prompt":"Fashion's to purchase small mitts (5)","completion":" fists\n"}
{"prompt":"Popular lease for small bay (5)","completion":" inlet\n"}
{"prompt":"Incompetent bunch? I’m not sure after demonstration (6)","completion":" shower\n"}
{"prompt":"Tick off day being hugged by a beautiful person (8)","completion":" admonish\n"}
{"prompt":"Report of name being held in reserve (4)","completion":" bang\n"}
{"prompt":"Some decide target night should be rejected as unified (10)","completion":" integrated\n"}
{"prompt":"Rubbish found by soldiers in part of helicopter (5)","completion":" rotor\n"}
{"prompt":"Section in medical facility lacking in comfort? (7)","completion":" spartan\n"}
{"prompt":"Annoying types misuse IT in arts? About right (9)","completion":" irritants\n"}
{"prompt":"Look after uniformed worker (5)","completion":" nurse\n"}
{"prompt":"Place to get fuel in Rome? (9)","completion":" trattoria\n"}
{"prompt":"Clairvoyant ringing French duke a Casanova (7)","completion":" seducer\n"}
{"prompt":"Musician ‘s piano brought into wharf (5)","completion":" piper\n"}
{"prompt":"Epic poem from Virgil I admire (5)","completion":" iliad\n"}
{"prompt":"Circus attraction having net facility, we hear (7)","completion":" trapeze\n"}
{"prompt":"Learn new skills on coach (7)","completion":" retrain\n"}
{"prompt":"Things not on the level or square, not first class (10)","completion":" inequality\n"}
{"prompt":"With \/ without delay, etc (3,2,2)","completion":" and so on\n"}
{"prompt":"Future shows vicar and I sitting with the congregation (8)","completion":" previews\n"}
{"prompt":"I would cut half of each clue (4)","completion":" idea\n"}
{"prompt":"Cheer AA after breakdown causing pain (7)","completion":" earache\n"}
{"prompt":"Magnum takes this local train ? (7)","completion":" stopper\n"}
{"prompt":"Hard-core red, maybe wearing sheep’s clothing? (4-2-3-4) DYED-IN-THE-WOOL : A descriptive term for, say, fabric that has been coloured red perhaps (maybe) and a (2-3-4)","completion":" dyed-in-the-wool\n"}
{"prompt":"Morally correct ceremony for broadcast (5)","completion":" right\n"}
{"prompt":"Understand Europeans banning a new drug (9)","completion":" digitalis\n"}
{"prompt":"A cold fish admitting she has fatal flaw (8,4)","completion":" achilles heel\n"}
{"prompt":"Spy one-time GP playing on piano (7,3)","completion":" peeping tom\n"}
{"prompt":"Lazybones unusually riled (5)","completion":" idler\n"}
{"prompt":"Article by poet a slow piece (7)","completion":" andante\n"}
{"prompt":"See Romeo's revolutionary supporter for bigger prize (8)","completion":" rollover\n"}
{"prompt":"Aunt's dog in wild really impressive (10)","completion":" astounding\n"}
{"prompt":"Excitement about piece of news (4)","completion":" item\n"}
{"prompt":"They may offer access to fast track (4,5)","completion":" slip roads\n"}
{"prompt":"Lift projection (4)","completion":" hump\n"}
{"prompt":"Rails about the girl’s smoking choices (8)","completion":" cheroots\n"}
{"prompt":"Rumour of underground workers and those unable to vote (6)","completion":" minors\n"}
{"prompt":"Prevention keeps up at any time (4)","completion":" ever\n"}
{"prompt":"Scant leaves on a regular basis - is plant OK ? (12)","completion":" satisfactory\n"}
{"prompt":"With nag, husband’s left more disagreeable (5)","completion":" worse\n"}
{"prompt":"Children with singular problems (6)","completion":" issues\n"}
{"prompt":"Keep sea vessel outside area (8)","completion":" maintain\n"}
{"prompt":"Dispute about working with female left one in front of court (8)","completion":" conflict\n"}
{"prompt":"Awful convulsive twitch holding newspaper (6)","completion":" tragic\n"}
{"prompt":"Cross after eastern craft turned over (5)","completion":" extra\n"}
{"prompt":"Eventually hot then failing to finish marathon? (2,3,4,3) IN THE LONG RUN : assemble an adverb meaning hot or trendy, ‘then’ without its last letter and a way of describing a marathon race (4,3)","completion":" in the long run\n"}
{"prompt":"Lower centre of dartboard (4)","completion":" bull\n"}
{"prompt":"Bird , duck, in list (7)","completion":" rooster\n"}
{"prompt":"New paper socialist got ready (8)","completion":" prepared\n"}
{"prompt":"Shriek catching a young man dressing (5,5)","completion":" salad cream\n"}
{"prompt":"Talk about field event, first in series (7)","completion":" discuss\n"}
{"prompt":"For court sitting, reportedly in March ? (10)","completion":" procession\n"}
{"prompt":"Withdrawing support of force (7,3)","completion":" backing off\n"}
{"prompt":"Pigeon sheds frequently seen in outskirts of Leeds (5)","completion":" lofts\n"}
{"prompt":"Clearly establishes claws and feathers (5,4)","completion":" nails down\n"}
{"prompt":"Fall on joint securing middle of panel in boat (5)","completion":" kneel\n"}
{"prompt":"Shelter you refit after removing all contents (4)","completion":" yurt\n"}
{"prompt":"Returned a novel about very intrepid sort (10)","completion":" adventurer\n"}
{"prompt":"Make prediction about opener for live band (4)","completion":" belt\n"}
{"prompt":"Raw meat changing hands (5)","completion":" fresh\n"}
{"prompt":"One including learner that’s not illuminated (5)","completion":" unlit\n"}
{"prompt":"Not all drink noisily and speak like a drunk (4)","completion":" slur\n"}
{"prompt":"Regular or usual trip expected , initially (5)","completion":" route\n"}
{"prompt":"Appoint English member in time (8)","completion":" delegate\n"}
{"prompt":"Stop argument ringing sweetheart (5)","completion":" cease\n"}
{"prompt":"Shock vote for right providing unknown (9)","completion":" electrify\n"}
{"prompt":"Carrying gym bag before class (11)","completion":" penetrating\n"}
{"prompt":"Husband in march shows fibre (6)","completion":" thread\n"}
{"prompt":"Chance by holding onto beam (6)","completion":" prayer\n"}
{"prompt":"Quiet time that hurt one easily convinced (4,5)","completion":" soft touch\n"}
{"prompt":"Move quickly in rejection of old English currency once (6)","completion":" escudo\n"}
{"prompt":"Mother’s party going west for medical application (6)","completion":" balsam\n"}
{"prompt":"One smoulders as people in club must lose protection (5)","completion":" ember\n"}
{"prompt":"Old, not very bright, full of universal hatred (5)","completion":" odium\n"}
{"prompt":"In a wretched state , we’re heard to demand sympathy (7)","completion":" piteous\n"}
{"prompt":"The last of this readily available drink (6)","completion":" shandy\n"}
{"prompt":"Stretch no clothing when you do this run (6)","completion":" streak\n"}
{"prompt":"Start to speak, swallowing current drink (9)","completion":" originate\n"}
{"prompt":"Relative turned up in Greece inexplicably (5)","completion":" niece\n"}
{"prompt":"Chest picked up north of a large South African village (5)","completion":" kraal\n"}
{"prompt":"Found nuts a bit less hard (9)","completion":" establish\n"}
{"prompt":"Car now reduced my freedom (8)","completion":" autonomy\n"}
{"prompt":"I am upset about fashionable skirt (4)","completion":" mini\n"}
{"prompt":"Both shout wickedly about rookie’s first sort of moustache (10)","completion":" toothbrush\n"}
{"prompt":"Some seafarers, a long way away (4)","completion":" afar\n"}
{"prompt":"Expose and rile eccentric office worker with a long commute ? (7)","completion":" outlier\n"}
{"prompt":"One failing to win in close race (5)","completion":" loser\n"}
{"prompt":"Flabbergasted at cagoule in mail-order book (9)","completion":" catalogue\n"}
{"prompt":"Model intoxicated, so stay put (3,5)","completion":" sit tight\n"}
{"prompt":"Radical mix setter’s deployed (9)","completion":" extremist\n"}
{"prompt":"Ill fortune in battle over English Channel town (3,4)","completion":" raw deal\n"}
{"prompt":"Selecting chinos, go to get changed (8)","completion":" choosing\n"}
{"prompt":"Beautiful nose almost starts to impede Cleopatra (6)","completion":" scenic\n"}
{"prompt":"Tube stations? (8)","completion":" channels\n"}
{"prompt":"Brownish-yellow brooch repaired in part (5)","completion":" ochre\n"}
{"prompt":"Praise former lover to all in the centre (5)","completion":" extol\n"}
{"prompt":"Keep most important article in container (8)","completion":" maintain\n"}
{"prompt":"Fee from cleaner gets reduced by 50 per cent (6)","completion":" charge\n"}
{"prompt":"Move end of project to get financial allowance (6)","completion":" budget\n"}
{"prompt":"Find fault with old Scot touring Kenya’s borders (4,2)","completion":" pick at\n"}
{"prompt":"US singer beginning to upset writer of sweet innocence ? (8)","completion":" cherubic\n"}
{"prompt":"Burn millions in company lacking solvency (7)","completion":" combust\n"}
{"prompt":"African party cuts notice for spirited session ? (6)","completion":" seance\n"}
{"prompt":"Is the second-born child with the French girl ? (8)","completion":" isabella\n"}
{"prompt":"Small religious ceremony concerned with the soul (9)","completion":" spiritual\n"}
{"prompt":"Where youngsters may play with spades alongside mine (7)","completion":" sandpit\n"}
{"prompt":"Intruder tied up by person unknown (8)","completion":" busybody\n"}
{"prompt":"Global virus heartless alien spread (9)","completion":" universal\n"}
{"prompt":"Reportedly studied cherished animal in forest (3,4)","completion":" red deer\n"}
{"prompt":"Stay around after clamour, it’s said, for royal family (7)","completion":" dynasty\n"}
{"prompt":"Stirring part of a service (8)","completion":" teaspoon\n"}
{"prompt":"Like describing issue possibly for Victorians? (7)","completion":" aussies\n"}
{"prompt":"Good -for-nothing caught by friend wearing stolen goods (9)","completion":" scallywag\n"}
{"prompt":"Pulse broth to be stirred (5)","completion":" throb\n"}
{"prompt":"State gift Anna has ordered (11)","completion":" afghanistan\n"}
{"prompt":"Even more Lego – love times working with Scotsman, Magdalen graduate possibly (7)","completion":" oxonian\n"}
{"prompt":"Antidote contains a resistance for poison (6)","completion":" curare\n"}
{"prompt":"Student can show unusually guarded nature (13)","completion":" undergraduate\n"}
{"prompt":"Trails beginning to show rabbits (6)","completion":" stalks\n"}
{"prompt":"Stunned seeing safe almost forced (9)","completion":" surprised\n"}
{"prompt":"Falls once more upending rear, oddly (7)","completion":" niagara\n"}
{"prompt":"Beat offer after vacation alfresco (7)","completion":" outdoor\n"}
{"prompt":"The same turning, indicate left (9)","completion":" identical\n"}
{"prompt":"Stride briskly collecting rubbish (6)","completion":" debris\n"}
{"prompt":"Real tripod occasionally providing balance (5)","completion":" ratio\n"}
{"prompt":"One against endless search for period pieces (8)","completion":" antiques\n"}
{"prompt":"Team sent back to capture live goat (4)","completion":" ibex\n"}
{"prompt":"Salsa celebrated across this region of France (6)","completion":" alsace\n"}
{"prompt":"Propose this without the man’s medicine (6)","completion":" tablet\n"}
{"prompt":"What posters need may be a right to wear hat (6,3)","completion":" pillar box\n"}
{"prompt":"Edward, moving up, longed for such a house (8)","completion":" detached\n"}
{"prompt":"Pretty girl holding a gun must be game (9)","completion":" bagatelle\n"}
{"prompt":"Pretentious editor subject to influence (8)","completion":" affected\n"}
{"prompt":"Could this produce a tissue, we hear? (6)","completion":" sneeze\n"}
{"prompt":"Villain travelling north in luggage van knew (5)","completion":" knave\n"}
{"prompt":"Element in rebellion is enjoying acclaim (7)","completion":" lionise\n"}
{"prompt":"Look by English ship for titled female (7)","completion":" peeress\n"}
{"prompt":"Meet the requirements of doctor first, say, right away (7)","completion":" satisfy\n"}
{"prompt":"Attendant trailed by worker in procession (7)","completion":" pageant\n"}
{"prompt":"Cover group of corporate bigwigs on the rise (5,2)","completion":" board up\n"}
{"prompt":"Seeded food is something checked by a medic (5)","completion":" pulse\n"}
{"prompt":"Servant put up mistletoe, initially with help (9)","completion":" housemaid\n"}
{"prompt":"Bishop and former PM briefly in conflict (6)","completion":" battle\n"}
{"prompt":"Incorporating one act, ‘Play That Goes Wrong’ is unusual (8)","completion":" atypical\n"}
{"prompt":"Admit a glacier could be transformed by this snapper (7,6)","completion":" digital camera\n"}
{"prompt":"Animal pelt expensive, we hear (8)","completion":" reindeer\n"}
{"prompt":"It should sanitise Wuhan pigs, conceivably (7-2,6) WASHING-UP LIQUID : Well, bless my soul, the new Puzzles Web Site proved it does have a use! The old Puzzles Web Site, which gives the better print-out, had an enumeration of (10,6) which is not possible but the new site has the correct enumeration as shown above. I believe this is a reverse anagram, I have not had to hint one before. The answer is anagram material (7-2) and an anagram indicator (6)","completion":" washing-up liquid\n"}
{"prompt":"Guys with no sex appeal turning intimate (7)","completion":" mention\n"}
{"prompt":"Marches in street to keep needy uplifted (6)","completion":" troops\n"}
{"prompt":"Some who might squeal over celebrity (4)","completion":" star\n"}
{"prompt":"Wrong to repeat a G&S work? (8)","completion":" operetta\n"}
{"prompt":"European is smart, journalist admitted (7)","completion":" swedish\n"}
{"prompt":"Playwright of some import once (5)","completion":" orton\n"}
{"prompt":"This writer's past rendered in adult form (5)","completion":" imago\n"}
{"prompt":"Ship embodying very French emphasis (6)","completion":" stress\n"}
{"prompt":"French art rogue returned property (7)","completion":" escheat\n"}
{"prompt":"Cats given restrictions, kept outside a B&B (7)","completion":" tabbies\n"}
{"prompt":"Methane planet has -- breathing ultimately 'restricted'! (5-3)","completion":" marsh-gas\n"}
{"prompt":"The location in Paris for a mathematician (7) LAPLACE : This (famous French) mathematician split (2,5)","completion":" laplace\n"}
{"prompt":"Dogs I have not seen as separate characters ? (7)","completion":" cursive\n"}
{"prompt":"Cat -- it's wandering around rooms (6)","completion":" attics\n"}
{"prompt":"Food concepts that go beyond the amateur? (10) PROVISIONS : If the answer were split (3,7)","completion":" provisions\n"}
{"prompt":"Nurse must stock them occasionally for supplier (7)","completion":" caterer\n"}
{"prompt":"US conscript must pack a coarse biscuit (9)","completion":" garibaldi\n"}
{"prompt":"Team covering left edge (5)","completion":" sidle\n"}
{"prompt":"Where one might find bishop had claret prepared (9)","completion":" cathedral\n"}
{"prompt":"Meticulous yet containing nothing right (8)","completion":" thorough\n"}
{"prompt":"Talk to father about mother's garment? (7)","completion":" address\n"}
{"prompt":"Celebrate no leader getting salary increase (5)","completion":" raise\n"}
{"prompt":"The woman had to get rid of hut (4)","completion":" shed\n"}
{"prompt":"This helps one find ships in waves going up and down (5)","completion":" radar\n"}
{"prompt":"One adult held by military engineers after old penny vanishes (10)","completion":" disappears\n"}
{"prompt":"Greatest drink tried regularly with this writer (7)","completion":" supreme\n"}
{"prompt":"Pluck neck or cheek (5)","completion":" nerve\n"}
{"prompt":"Pins , for example, in two sizes (4)","completion":" legs\n"}
{"prompt":"Moment to abort abnormal launch ? (9)","completion":" motorboat\n"}
{"prompt":"Name of composer heard (6)","completion":" handle\n"}
{"prompt":"Richly seasoned stew shown in red-top abroad (6)","completion":" ragout\n"}
{"prompt":"Traveller ‘s passage - cost of passage ending in Dover (8)","completion":" wayfarer\n"}
{"prompt":"Boy ‘s from Pisa, actually (5)","completion":" isaac\n"}
{"prompt":"Each service at home has extremely generous pay (8)","completion":" earnings\n"}
{"prompt":"Drunk with present for Take That (2,5) SO THERE : Take a word for a drunk and a word meaning present or in attendance and split it (2,5)","completion":" so there\n"}
{"prompt":"Praise from extended family embracing Utah (7)","completion":" tribute\n"}
{"prompt":"Golf hotel may come before country (5)","completion":" india\n"}
{"prompt":"One might nick food rejected by the French right (7)","completion":" burglar\n"}
{"prompt":"Limit set up on time for agreement (4)","completion":" pact\n"}
{"prompt":"Extravagant academic left one opening (10)","completion":" profligate\n"}
{"prompt":"Important American fringe event that started everything (3,4)","completion":" big bang\n"}
{"prompt":"Singer 's ear cut twice (4)","completion":" lulu\n"}
{"prompt":"Watching old boy waiting (9)","completion":" observing\n"}
{"prompt":"Emotions from two Europeans engaged in love affairs (8)","completion":" feelings\n"}
{"prompt":"Drink and the Queen gets fatter (7)","completion":" stouter\n"}
{"prompt":"Branch cancelled filming session (8)","completion":" offshoot\n"}
{"prompt":"Fungal growth in amphibians, likewise lizards originally (9)","completion":" toadstool\n"}
{"prompt":"Powerful chief, one who is easily angered (7)","completion":" hothead\n"}
{"prompt":"Line taken by bishop when villain invades land taken back (8)","completion":" diagonal\n"}
{"prompt":"Setting up , help out guides initially (8) PITCHING - a (5,2)","completion":" pitching\n"}
{"prompt":"Editor enthralled by remarkably pious king of Thebes (7)","completion":" oedipus\n"}
{"prompt":"Rubbish written about husband’s do (6)","completion":" thrash\n"}
{"prompt":"Minor accident : made call after parking (5)","completion":" prang\n"}
{"prompt":"Rich wife well having lost first husband (7)","completion":" wealthy\n"}
{"prompt":"The French Connection? (7)","completion":" liaison\n"}
{"prompt":"Brown as pie in the cooking? (5)","completion":" sepia\n"}
{"prompt":"Sails south to see how the land lies ? (7)","completion":" canvass\n"}
{"prompt":"Heavy weight old train firm transports (7)","completion":" bouncer\n"}
{"prompt":"A horse and sheep? One's above and below ! (7)","completion":" anagram\n"}
{"prompt":"Former pupil with view that's disgusting (7)","completion":" obscene\n"}
{"prompt":"Auntie, perhaps, runs out in euphoria (7)","completion":" elation\n"}
{"prompt":"A prize for wasting ? (7)","completion":" atrophy\n"}
{"prompt":"Sat and asked a question ? (5)","completion":" posed\n"}
{"prompt":"Social set’s endless boast (4)","completion":" crow\n"}
{"prompt":"Remaining matron male ignored (5)","completion":" other\n"}
{"prompt":"Pair back in plant become dull (5,4)","completion":" cloud over\n"}
{"prompt":"Satellite telephone, brilliant (7)","completion":" telstar\n"}
{"prompt":"Defeat old-fashioned party (5)","completion":" outdo\n"}
{"prompt":"Toy from Tokyo - youngster’s (2-2)","completion":" yo yo\n"}
{"prompt":"Disappointment for fan ? (4)","completion":" blow\n"}
{"prompt":"Popular country singer makes list (7)","completion":" incline\n"}
{"prompt":"Partygoer in right state (5)","completion":" raver\n"}
{"prompt":"Serving as a warning about Tirana, you suspect (10)","completion":" cautionary\n"}
{"prompt":"Spirit produced by good landlord (5)","completion":" ghost\n"}
{"prompt":"Green politician’s bottom appearing in new advert (7) VERDANT : The last letter of politician is inserted into an anagram of advert, to be an adjective of green when applied to landscape or vegetation. 13d Surround student, leftist revolutionary, inspiring each main troublemaker (10) RINGLEADER : To surround or encircle, the letter that a student driver must display, and an abbreviation for each is followed by a reversal (revolutionary) of a leftie. 14d Seek to persuade trial to dismiss case of assault (5)","completion":" verdant\n"}
{"prompt":"Herb is awfully arrogant (8) TARRAGON : This herb is an anagram of arrogant. 18d Determined Spooner’s supposed amount owed (4,3) DEAD SET : A supposed amount that the Reverend Spooner claims is owed becomes a synonym of determined. 21d Overjoyed when told to go topless (6) ELATED : A story told goes topless to be overjoyed. 22d Uniform from start of last year I’ve right to wear (6)","completion":" tarragon\n"}
{"prompt":"Group again with actual singing occasionally (7)","completion":" realign\n"}
{"prompt":"Confused live model’s first employed (7)","completion":" bemused\n"}
{"prompt":"Feed rhinos somehow eating fruit kernel? (7)","completion":" nourish\n"}
{"prompt":"Response from soldiers with instruction to shoot (8)","completion":" reaction\n"}
{"prompt":"They may be under your feet when shifting fish (6)","completion":" skates\n"}
{"prompt":"Sign mostly put on a road (7)","completion":" placard\n"}
{"prompt":"Cardinal may see fortune wasted taking drug (8)","completion":" fourteen\n"}
{"prompt":"Pay attention to detail (7)","completion":" respect\n"}
{"prompt":"Outline suspicion (5)","completion":" trace\n"}
{"prompt":"First person wearing simple medal is placid (4-5)","completion":" easy-going\n"}
{"prompt":"Insult from female in a revolutionary group (7)","completion":" affront\n"}
{"prompt":"Fuss over dubious point for choosing of candidate ? (8)","completion":" adoption\n"}
{"prompt":"Fool in turn gets to leave out sweet (7)","completion":" gumdrop\n"}
{"prompt":"A week following central element in cult is hideous (5)","completion":" awful\n"}
{"prompt":"Short Greek island sausage (6)","completion":" salami\n"}
{"prompt":"Earthenware container , not as old, missing lid (4)","completion":" ewer\n"}
{"prompt":"Ring mobile phone to take advantage of hospitality to all comers (4,5)","completion":" open house - link together the ring\n"}
{"prompt":"Hide family under Samaritan’s roof (4)","completion":" skin\n"}
{"prompt":"Initiate story for grandson, perhaps (5,8)","completion":" blood relation\n"}
{"prompt":"Chap's giggling -- this could make one corpse (12)","completion":" manslaughter\n"}
{"prompt":"Most basic work misspelt (8)","completion":" simplest\n"}
{"prompt":"Cleaner wary about boy (8)","completion":" charlady\n"}
{"prompt":"Liberal or a Conservative's uplifting song of joy (5)","completion":" carol\n"}
{"prompt":"Drink stout right to the bottom (5)","completion":" lager\n"}
{"prompt":"Uprising in Africa is alienating continent (4)","completion":" asia\n"}
{"prompt":"Picture of Italian’s house, first in block by untidy canal (10)","completion":" casablanca\n"}
{"prompt":"Signs in old bishop, then priest (5)","completion":" obeli\n"}
{"prompt":"Last drink? Cheerio (7,2) BOTTOMS UP - split the answer (6,3)","completion":" bottoms up\n"}
{"prompt":"Check on Gloria, new member of ruling clique (8)","completion":" oligarch\n"}
{"prompt":"Two MAs blocking reform in one’s old college (4,5)","completion":" alma mater\n"}
{"prompt":"Dog caught - by what means? (4)","completion":" chow\n"}
{"prompt":"Fetch book on band (5)","completion":" bring\n"}
{"prompt":"Cold working, so madame makes soup (8)","completion":" consomme\n"}
{"prompt":"Not rare, though missing on a butterfly (5)","completion":" comma\n"}
{"prompt":"The woman and daughter in outhouse (4)","completion":" shed\n"}
{"prompt":"Terribly ill on beer provoking uprising (9)","completion":" rebellion\n"}
{"prompt":"Limp through small deficiency (5)","completion":" slack\n"}
{"prompt":"Rising start of social outcast sickens (6)","completion":" repels\n"}
{"prompt":"Looks for ladies ? (5)","completion":" peers\n"}
{"prompt":"Lad visited by doctor with answer - avoid fish (6,4)","completion":" bombay duck\n"}
{"prompt":"Scarpered from crazed force holding enemy back (4,3)","completion":" made off\n"}
{"prompt":"Area of potential conflict sees sexy garments making a comeback (7)","completion":" hotspot\n"}
{"prompt":"Functional out of uniform fur (5)","completion":" sable\n"}
{"prompt":"Pains reportedly following stone cold items eaten at teatime (4,5)","completion":" rock cakes\n"}
{"prompt":"Simple line crossed by criminal (4)","completion":" bald\n"}
{"prompt":"Deal badly with worker, taken in by awkward smile (9)","completion":" mishandle\n"}
{"prompt":"The girl’s in a depression, being a fan (8)","completion":" adherent\n"}
{"prompt":"Rapper’ s critic ? (7)","completion":" knocker\n"}
{"prompt":"Persuades women, leaving balloons (5)","completion":" sells\n"}
{"prompt":"Initially indicating bananas to a trim ape ? (8)","completion":" imitator\n"}
{"prompt":"Former lover with old sign of nerves? That's unusual (6)","completion":" exotic\n"}
{"prompt":"Squirms right after women's laughs? Not at first (8)","completion":" wriggles\n"}
{"prompt":"Mount most suitable horse, perhaps (8)","completion":" bestride\n"}
{"prompt":"Catalogue Hungarian composer for the listener (4)","completion":" list\n"}
{"prompt":"Sit next to character, one worthy of imitation (4,5)","completion":" role model\n"}
{"prompt":"Fuss excessively around daughter (2-2) TO DO : A word meaning excessively placed around D(aughter) and the split (2,2)","completion":" to do\n"}
{"prompt":"Big cheese with FA raised diplomacy (3,3)","completion":" fat cat\n"}
{"prompt":"Essay on a theme I, a setter, recollected (8)","completion":" treatise\n"}
{"prompt":"Town council ‘s pub expert? (5,9)","completion":" local authority\n"}
{"prompt":"Tripped , son fell (8)","completion":" stumbled\n"}
{"prompt":"Essentially, ‘with-it’ echoes ‘state-of-the-art’ (2-4)","completion":" hi\n"}
{"prompt":"Very quickly becoming fond of spirits? (4,1,4)","completion":" like a shot\n"}
{"prompt":"What one on fiddle must do to be clear about situation ? (4,3,5)","completion":" know the score\n"}
{"prompt":"I play for time during race for investiture (12)","completion":" installation\n"}
{"prompt":"Support pawns capturing rook, oddly (4)","completion":" prop\n"}
{"prompt":"Recess , beset by rising despair (4)","completion":" apse\n"}
{"prompt":"Nice salad prepared to include hot element in Mexican cuisine (10)","completion":" enchiladas\n"}
{"prompt":"Rent, maybe , from Greek character is put back by western US state (7)","completion":" musical\n"}
{"prompt":"Rust a balcony developed in place for officers ? (12)","completion":" constabulary\n"}
{"prompt":"Period of time presented in gallery earlier (4)","completion":" year\n"}
{"prompt":"Evergreen limes set for cultivation (8)","completion":" timeless\n"}
{"prompt":"Those detained in a series of engagements? (9,2,3)","completion":" prisoners of war\n"}
{"prompt":"Remove obstacle from a foreign advertisement (6)","completion":" unplug\n"}
{"prompt":"Apparition in seasonal show stealing hearts - Marley’s head (7)","completion":" phantom\n"}
{"prompt":"Narrated start of romp filled with happiness (7)","completion":" related\n"}
{"prompt":"Another heavy weight, individual best (6-2-4)","completion":" second to none\n"}
{"prompt":"All are affected by English beer (4,3)","completion":" real ale\n"}
{"prompt":"Endorse editor’s assistant and writer (9)","completion":" subscribe\n"}
{"prompt":"Listen to trumpet initially, and organ (5)","completion":" heart\n"}
{"prompt":"Quick pint following concert (6)","completion":" prompt\n"}
{"prompt":"Cavorting pair later on common (11)","completion":" proletarian\n"}
{"prompt":"Female in entourage is handmaid (6)","completion":" geisha\n"}
{"prompt":"… transported , opening door firstly (9)","completion":" entranced\n"}
{"prompt":"Spot Enterprise warping, circling Sun’s source (11)","completion":" intersperse\n"}
{"prompt":"Very hot cooker element includes oven (8)","completion":" roasting\n"}
{"prompt":"Age certain to produce obliteration (7)","completion":" erasure\n"}
{"prompt":"Strict at all times in South-east (6)","completion":" severe\n"}
{"prompt":"Manipulate technician (8)","completion":" engineer\n"}
{"prompt":"Deduce there’s no escaping Hell (5)","completion":" infer\n"}
{"prompt":"Make cosy home around region in Asian parts ? (4,4)","completion":" near east\n"}
{"prompt":"Mouse perhaps to decay outside lair (6)","completion":" rodent\n"}
{"prompt":"Prime Minister 's pleased with jewel (9)","completion":" gladstone\n"}
{"prompt":"Scare off animal? About time (5)","completion":" deter\n"}
{"prompt":"Granddaughter perhaps runs with joy (8)","completion":" relation\n"}
{"prompt":"Serf shifting large ointment (5)","completion":" salve\n"}
{"prompt":"Knot that designer rearranged (12)","completion":" straightened\n"}
{"prompt":"Editor upset with writers' reports (9)","completion":" describes\n"}
{"prompt":"Somewhat in a dire, extreme state of adversity (5)","completion":" nadir\n"}
{"prompt":"God, I'd best remove tops for most rum (6)","completion":" oddest\n"}
{"prompt":"Head I trapped between two legs (5)","completion":" onion\n"}
{"prompt":"Plans to return tinned meat (4)","completion":" spam\n"}
{"prompt":"Power of leader of Socialist Party? (5)","completion":" steam\n"}
{"prompt":"Disease : problem has chap scratching head (7)","completion":" rubella\n"}
{"prompt":"Explicit about king with three daughters (5)","completion":" clear\n"}
{"prompt":"Carefully planned complex (9)","completion":" elaborate\n"}
{"prompt":"Follow river into dock (5)","completion":" trail\n"}
{"prompt":"Appearance of first person saved by soldiers (4)","completion":" mien\n"}
{"prompt":"Signal given by copper close to scene (3)","completion":" cue\n"}
{"prompt":"Moral tale cut short, allegory female ignored (7)","completion":" parable\n"}
{"prompt":"Cat and bat in tree (5,6)","completion":" pussy willow\n"}
{"prompt":"Play tune no end, hit by Adele originally (9)","completion":" melodrama\n"}
{"prompt":"Take away from daughter booklet supporting English (7)","completion":" detract\n"}
{"prompt":"Ridiculous claim by one area of the UK that’s hostile (8)","completion":" inimical\n"}
{"prompt":"Relish hearing of choice - a flower (10)","completion":" piccalilli\n"}
{"prompt":"Rallies planned to recruit born politicians (8)","completion":" liberals\n"}
{"prompt":"One saying nothing about parking charge (6)","completion":" impute\n"}
{"prompt":"One examines fake requisition when drug goes missing (10)","completion":" inquisitor\n"}
{"prompt":"Uniform lost in citadel (9)","completion":" identical\n"}
{"prompt":"Heartlessly bribes peers (6)","completion":" nobles\n"}
{"prompt":"Pleased with sandwich's first filling (8)","completion":" contents\n"}
{"prompt":"Snake bites left two Europeans numb (6)","completion":" asleep\n"}
{"prompt":"Golf club with no parking, say (5)","completion":" utter\n"}
{"prompt":"Moderate cider teen's drunk (9)","completion":" intercede\n"}
{"prompt":"What's carried primarily on ship (5)","completion":" cargo\n"}
{"prompt":"Stylish vehicles turned up (5)","completion":" smart\n"}
{"prompt":"Design aircraft with no tail (4)","completion":" plan\n"}
{"prompt":"Flask carried by brother, mostly (7)","completion":" thermos\n"}
{"prompt":"Stumble heading off to change (5)","completion":" alter\n"}
{"prompt":"Irritate some? Small number inside (5)","completion":" annoy\n"}
{"prompt":"Met geisha, slyly, at college? You’ve been found out! (3,4,2,2)","completion":" the game is up\n"}
{"prompt":"Husband leaving kitchen having been cooked English kipper ? (7)","completion":" necktie\n"}
{"prompt":"Old boss purchases northern plant (8)","completion":" oleander\n"}
{"prompt":"Battle of party losing head (6)","completion":" action\n"}
{"prompt":"Purge cant spoken principally in church (7)","completion":" cleanse\n"}
{"prompt":"Objection’s raised showing butt (4)","completion":" stub\n"}
{"prompt":"See about new exhaust? Absolutely ! (8)","completion":" entirely\n"}
{"prompt":"Impeached accepting Republican is loathsome (8)","completion":" accursed\n"}
{"prompt":"Briefly go for and steal piece of cake (6)","completion":" picnic\n"}
{"prompt":"Temper effect of note cutting motorway access (8)","completion":" mitigate\n"}
{"prompt":"Fox hurt by youth lacking boundaries (8)","completion":" outsmart\n"}
{"prompt":"Surrounded by cries of excitement, left car (6)","completion":" wheels\n"}
{"prompt":"Increase rate of backing favourites and ahead (4,2)","completion":" step up\n"}
{"prompt":"Annoying people breaking ranks? (5)","completion":" narks\n"}
{"prompt":"Expert support - seamer keeps up (7)","completion":" maestro\n"}
{"prompt":"Develops odds on heavy defeats (7)","completion":" sprouts\n"}
{"prompt":"Police leader around always at the helm ? (8)","completion":" steering\n"}
{"prompt":"Sexual desire surrounding tango with one musician (6)","completion":" lutist\n"}
{"prompt":"Rigid small bath delivered (8)","completion":" stubborn\n"}
{"prompt":"Sick people 's calmness reported (8)","completion":" patients\n"}
{"prompt":"Constant sex appeal in actual performance (7)","completion":" recital\n"}
{"prompt":"Young lady swallows nothing cooler (4)","completion":" gaol\n"}
{"prompt":"Working on ruin close to Heidelberg (5) DOING : A phrase (2,2)","completion":" doing\n"}
{"prompt":"Get back about allegation (7)","completion":" reclaim\n"}
{"prompt":"French actor gripping whip hard in sporting contest (9)","completion":" decathlon\n"}
{"prompt":"Reportedly lawful ceremony (4)","completion":" rite\n"}
{"prompt":"Farm animal , slaughtered if here (6)","completion":" heifer\n"}
{"prompt":"Old curiosities in remarkably barbaric boxing clubs (4-1-4)","completion":" bric a brac\n"}
{"prompt":"Cyborgs dope him in motion picture (7,2,5)","completion":" goodbye mr chips\n"}
{"prompt":"Politely, knocking on yokel’s door to get housing resolved (8)","completion":" youngish\n"}
{"prompt":"Brad, doing backflip in gym, must be flexible (6)","completion":" pliant\n"}
{"prompt":"There’s only one month this long (6)","completion":" august\n"}
{"prompt":"Arty composition from admirer - it’s a refined article (8)","completion":" fantasia\n"}
{"prompt":"Festivity at number one - turned up for unveiling (10)","completion":" revelation\n"}
{"prompt":"Publicist loves to receive books directly (6)","completion":" pronto\n"}
{"prompt":"Blended contents of solid fuel (3)","completion":" oil\n"}
{"prompt":"Insensitive? I’m not sure editor counted (8)","completion":" numbered\n"}
{"prompt":"Charlie may turn up for drink (6)","completion":" cognac\n"}
{"prompt":"United - sending off anonymously (8)","completion":" unsigned\n"}
{"prompt":"My bill ! (3)","completion":" coo\n"}
{"prompt":"Wash up for bestie, perhaps (3)","completion":" pal\n"}
{"prompt":"Avoid duty , with receding gums and broken leg (7)","completion":" smuggle\n"}
{"prompt":"Dress up and show off (4)","completion":" brag\n"}
{"prompt":"Impatient sound from old king ? (3)","completion":" tut\n"}
{"prompt":"Cremated ? Ashes vase placed in garden plot (6)","completion":" burned\n"}
{"prompt":"Organised party meetings, originally irregular (6)","completion":" random\n"}
{"prompt":"Showman from Rhode Island breaking a promise, unfortunately (10)","completion":" impresario\n"}
{"prompt":"Cartoonist ‘s count, when shown saving maiden (6)","completion":" addams - to count or enumerate objects followed by the usual two\n"}
{"prompt":"Lean minor lacking energy (8)","completion":" listless\n"}
{"prompt":"Mock Juliet about English being upwardly mobile? (4)","completion":" jeer\n"}
{"prompt":"Sound that comes from artist performing (6)","completion":" strait\n"}
{"prompt":"Spot youth at intervals enthralled by French resort (6)","completion":" notice\n"}
{"prompt":"Renounce Circle Line train (8)","completion":" disclaim\n"}
{"prompt":"Unusually bathes in drink (8)","completion":" absinthe\n"}
{"prompt":"Some wiser monotony for preacher’s speech (6)","completion":" sermon\n"}
{"prompt":"With net, relax, reportedly, on this ? (7)","completion":" trapeze\n"}
{"prompt":"Boss one prone to social blundering? (6)","completion":" gaffer\n"}
{"prompt":"Construction to suddenly crumble for example? (5,10)","completion":" split infinitive\n"}
{"prompt":"Cheers - one guzzling wallop in South Seas location (6)","completion":" tahiti\n"}
{"prompt":"Religious sort to differ about holy books (6)","completion":" votary\n"}
{"prompt":"New gear after work, girls? Aida may look better with these on (5,7)","completion":" opera glasses\n"}
{"prompt":"Carpet is fixed with small drills (9)","completion":" practises\n"}
{"prompt":"Skirt hem easily hides thread (5)","completion":" theme\n"}
{"prompt":"Smells, on reflection, concealing a flavour (6)","completion":" season\n"}
{"prompt":"Meet doctor she blames leaving hospital (8)","completion":" assemble\n"}
{"prompt":"Is it wrong and sly to remove all leaders vigorously ? (8)","completion":" strongly\n"}
{"prompt":"Son was concerned, getting frightened (6)","completion":" scared\n"}
{"prompt":"Delight from learner after parking with no trouble (6)","completion":" please\n"}
{"prompt":"Spy regularly wants to gather information (5)","completion":" agent\n"}
{"prompt":"Focused on coin in case next to diamonds (12)","completion":" concentrated\n"}
{"prompt":"Bear in mind politician is under fire? Not half! (8)","completion":" remember\n"}
{"prompt":"Plant that can sting bug (6)","completion":" nettle\n"}
{"prompt":"In the centre, teenagers fight roughly (5)","completion":" about\n"}
{"prompt":"Goes regularly, circulating mugshots (6,7)","completion":" rogues gallery\n"}