From d9fea1a68bb1d0a64a133a8423aaf16c325f04d1 Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Tue, 18 May 2021 16:18:12 +0530 Subject: [PATCH 01/10] changes in trim_silence function regarding the agressive trimming issue --- backend/app/audio.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/backend/app/audio.py b/backend/app/audio.py index 89b13b3..e043131 100644 --- a/backend/app/audio.py +++ b/backend/app/audio.py @@ -1,28 +1,28 @@ """audio processing, etc""" from pydub import AudioSegment +import pandas as pd +import numpy as np +import soundfile as sf class Audio: silence_threshold = -50.0 - chunk_size = 10 + threshold_value = 0.0007 # Tweak the value of threshold to get the aggressive trimming @staticmethod - def _detect_leading_silence(sound: AudioSegment) -> int: - trim_ms = 0 - assert Audio.chunk_size > 0 # to avoid infinite loop - while sound[trim_ms:trim_ms + Audio.chunk_size].dBFS \ - < Audio.silence_threshold and trim_ms < len(sound): - trim_ms += Audio.chunk_size + def _detect_leading_silence(sound: bytearray, sample_rate: int) -> list: + y = pd.Series(sound).apply(np.abs) + y_mean = y.rolling(window=int(sample_rate / 20), + min_periods=1, + center=True).max() - return trim_ms + return [True if mean > Audio.threshold_value else False for mean in y_mean] @staticmethod def trim_silence(path: str) -> AudioSegment: - sound = AudioSegment.from_wav(path + ".wav") - start_trim = Audio._detect_leading_silence(sound) - end_trim = Audio._detect_leading_silence(sound.reverse()) - duration = len(sound) - trimmed_sound = sound[start_trim:duration - end_trim] + sound, rate = sf.read(path + ".wav") + mask = Audio._detect_leading_silence(sound, rate) + trimmed_sound = sound[mask] return trimmed_sound @staticmethod @@ -31,4 +31,4 @@ def save_audio(path: str, audio: AudioSegment): @staticmethod def get_audio_len(audio: AudioSegment) -> float: - return len(audio)/1000.0 + return len(audio) / 1000.0 From 3dfeb73691e1703948b07fb7be467dd7e2bf2927 Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Tue, 25 May 2021 16:38:39 +0530 Subject: [PATCH 02/10] removed the end trim and divide the start trim --- backend/app/audio.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/backend/app/audio.py b/backend/app/audio.py index e043131..2702e7b 100644 --- a/backend/app/audio.py +++ b/backend/app/audio.py @@ -1,28 +1,28 @@ """audio processing, etc""" from pydub import AudioSegment -import pandas as pd -import numpy as np -import soundfile as sf class Audio: silence_threshold = -50.0 - threshold_value = 0.0007 # Tweak the value of threshold to get the aggressive trimming + chunk_size = 10 @staticmethod - def _detect_leading_silence(sound: bytearray, sample_rate: int) -> list: - y = pd.Series(sound).apply(np.abs) - y_mean = y.rolling(window=int(sample_rate / 20), - min_periods=1, - center=True).max() + def _detect_leading_silence(sound: AudioSegment) -> int: + trim_ms = 0 + assert Audio.chunk_size > 0 # to avoid infinite loop + while sound[trim_ms:trim_ms + Audio.chunk_size].dBFS \ + < Audio.silence_threshold and trim_ms < len(sound): + trim_ms += Audio.chunk_size - return [True if mean > Audio.threshold_value else False for mean in y_mean] + return trim_ms @staticmethod def trim_silence(path: str) -> AudioSegment: - sound, rate = sf.read(path + ".wav") - mask = Audio._detect_leading_silence(sound, rate) - trimmed_sound = sound[mask] + sound = AudioSegment.from_wav(path + ".wav") + start_trim = Audio._detect_leading_silence(sound) + # end_trim = Audio._detect_leading_silence(sound.reverse()) + duration = len(sound) + trimmed_sound = sound[int(start_trim/2):duration] return trimmed_sound @staticmethod @@ -31,4 +31,4 @@ def save_audio(path: str, audio: AudioSegment): @staticmethod def get_audio_len(audio: AudioSegment) -> float: - return len(audio) / 1000.0 + return len(audio)/1000.0 From ce72d0140d159f2266b22479cb7ee5d3905243bb Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Tue, 25 May 2021 16:39:39 +0530 Subject: [PATCH 03/10] change the channel to mono --- backend/app/file_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/file_system.py b/backend/app/file_system.py index 838de55..17e5c56 100644 --- a/backend/app/file_system.py +++ b/backend/app/file_system.py @@ -42,7 +42,7 @@ def save_audio(path: str, audio: bytes): with open(webm_file_name, 'wb+') as f: f.write(audio) subprocess.call( - 'ffmpeg -i {} -ab 160k -ac 2 -ar 44100 -vn {}.wav -y'.format( + 'ffmpeg -i {} -ab 160k -ac 1 -ar 44100 -vn {}.wav -y'.format( webm_file_name, path ), shell=True From 07765f16c461f6b216d4f251956358247eb0dae8 Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Tue, 25 May 2021 16:41:05 +0530 Subject: [PATCH 04/10] remove the gunicorn configs --- backend/start_prod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/start_prod.sh b/backend/start_prod.sh index 483a927..e5dde89 100644 --- a/backend/start_prod.sh +++ b/backend/start_prod.sh @@ -1 +1 @@ -gunicorn -w $WEBWORKERS -b 0.0.0.0:$APIPORT app:app -c gunicorn_conf.py --capture-output +gunicorn -w $WEBWORKERS -b 0.0.0.0:$APIPORT app:app From 1a4319ef62b4a5442cfced4b104771eac915465a Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Tue, 25 May 2021 16:42:05 +0530 Subject: [PATCH 05/10] added the new corpus and it's variable to docker compose --- backend/prompts/word_corpus.csv | 12372 ++++++++++++++++++++++++++++++ docker-compose.yml | 2 +- 2 files changed, 12373 insertions(+), 1 deletion(-) create mode 100644 backend/prompts/word_corpus.csv diff --git a/backend/prompts/word_corpus.csv b/backend/prompts/word_corpus.csv new file mode 100644 index 0000000..5e5c60e --- /dev/null +++ b/backend/prompts/word_corpus.csv @@ -0,0 +1,12372 @@ +Ask 3 +Aunt 4 +Arm 3 +Art 3 +Arch 4 +Army 4 +Argue 5 +Artist 6 +Article 7 +Bar 3 +Car 3 +Far 3 +Jar 3 +Bark 4 +Park 4 +Dark 4 +Mark 4 +Shark 5 +Cart 4 +Dart 4 +Mart 4 +Part 4 +Heart 5 +Chart 5 +Start 5 +Card 4 +Yard 4 +Hard 4 +Harm 4 +Charm 5 +Farm 4 +Fast 4 +Mars 4 +March 5 +Scarf 5 +Starch 6 +Artificial 10 +Archive 7 +Architect 9 +Argument 8 +Afternoon 9 +Almond 6 +Answer 6 +Father 6 +Operand 7 +Harsh 5 +Arbitrary 9 +Smart 5 +Star 4 +Yarn 4 +Glove 5 +Discover 8 +Money 5 +Mother 6 +Brother 7 +Couple 6 +Cousin 6 +Comfort 7 +Sponge 6 +Shovel 6 +Touch 5 +Trouble 7 +Tunnel 6 +Thorough 8 +Oven 4 +Front 5 +Lunch 5 +Tongue 6 +Dozen 5 +Butter 6 +Among 5 +Nothing 7 +Wonderful 9 +Government 10 +Up 2 +Us 2 +But 3 +Cut 3 +Son 3 +Sun 3 +Bun 3 +Fun 3 +Gun 3 +Run 3 +One 3 +Done 4 +None 4 +Some 4 +Come 4 +Luck 4 +Truck 5 +Dove 4 +Cover 5 +Summer 6 +Honey 5 +Other 5 +Under 5 +Wonder 6 +Double 6 +Sunday 6 +Monday 6 +Colour 6 +Country 7 +Compass 7 +Company 7 +Comfortable 11 +Colombia 8 +Month 5 +Monkey 6 +Stomach 7 +Onion 5 +Young 5 +London 6 +Acting 6 +Actor 5 +Actual 6 +After 5 +Attitude 8 +Blank 5 +Calibrate 9 +Capital 7 +Cat 3 +Chance 6 +Classmate 9 +Fabricate 9 +Factory 7 +Laminate 8 +Man 3 +Natural 7 +Pass 4 +Pattern 7 +Perhaps 7 +Stand 5 +Act 3 +Apple 5 +Active 6 +Actress 7 +Bat 3 +Rat 3 +Hat 3 +Chat 4 +Sat 3 +Bad 3 +Dad 3 +Sad 3 +Had 3 +Can 3 +Ran 3 +Plan 4 +Land 4 +Hand 4 +Sand 4 +Understand 10 +Gas 3 +Class 5 +Glass 5 +Clash 5 +Match 5 +Catch 5 +Patch 5 +Fact 4 +Past 4 +Back 4 +Track 5 +Shall 5 +Have 4 +Contact 7 +Exact 5 +Aspirate 8 +Saturate 8 +Floor 5 +Draw 4 +Fall 4 +Shawl 5 +Pour 4 +Score 5 +Adore 5 +Law 3 +Jaw 3 +Raw 3 +Ball 4 +Hall 4 +Call 4 +Tall 4 +Wall 4 +Small 5 +Crawl 5 +Recall 6 +Install 7 +Waterfall 9 +Basketball 10 +Corn 4 +Horn 4 +Warn 4 +Thorn 5 +Unicorn 7 +Lawn 4 +Fork 4 +Torque 6 +Talk 4 +Walk 4 +Chalk 5 +Stalk 5 +Drawback 8 +Form 4 +Conform 7 +Perform 7 +Transform 9 +Uniform 7 +Platform 8 +Chloroform 10 +Norm 4 +Warm 4 +Storm 5 +Thunderstorm 12 +Horse 5 +Course 6 +Coarse 6 +Pause 5 +Cause 5 +Clause 6 +Applause 8 +Lord 4 +Ward 4 +Award 5 +Reward 6 +Record 6 +Accord 6 +Landlord 8 +Faulty 6 +Naughty 7 +Glory 5 +Storey 6 +Laundry 7 +Strawberry 10 +Extraordinary 13 +Decor 5 +Indoor 6 +Mentor 6 +Before 6 +Ignore 6 +Explore 7 +Outdoor 7 +Corridor 8 +Dinosaur 8 +Metaphor 8 +Therefore 9 +Cautious 8 +Glorious 8 +Gorgeous 8 +Nauseous 8 +Chorus 6 +Enormous 8 +Absorption 10 +Distortion 10 +Corporation 11 +Transportation 14 +Scorpion 8 +Board 5 +Aboard 6 +Cardboard 9 +Dashboard 9 +Flaw 4 +Laud 4 +Salt 4 +Sort 4 +Taut 4 +Halt 4 +Torch 5 +Fault 5 +Fraud 5 +Forum 5 +Short 5 +Straw 5 +Court 5 +North 5 +Broad 5 +Format 6 +Drawer 6 +Launch 6 +Lawyer 6 +Warden 6 +Normal 6 +Absorb 6 +Toward 6 +Portal 6 +Causal 6 +Quartz 6 +Airport 7 +Support 7 +Default 7 +Divorce 7 +Morning 7 +Forward 7 +Formula 7 +Fortune 7 +Enforce 7 +Exhaust 7 +Towards 7 +Passport 8 +Daughter 8 +Resource 8 +Withdraw 8 +Disorder 8 +Memorial 8 +Portable 8 +Portrait 8 +Tortoise 8 +Wardrobe 8 +Important 9 +Informant 9 +Transport 9 +Laughter 8 +Talkative 9 +Astronaut 9 +Corporate 9 +Affordable 10 +Exhaustive 10 +Porch 5 +Fauna 5 +Forgo 5 +Dwarf 5 +Flora 5 +Hawker 6 +Naught 6 +Saucer 6 +Warmth 6 +Caustic 7 +Consort 7 +Decorum 7 +Defraud 7 +Foreman 7 +Tornado 7 +Euphoria 8 +Forcibly 8 +Launcher 8 +Lordship 8 +Ornamental 10 +Orthogonal 10 +Reportedly 10 +Watercress 10 +Proportionate 13 +Subordinate 11 +Unfortunate 11 +Leg 3 +Jet 3 +Wet 3 +Pet 3 +Let 3 +Yet 3 +Men 3 +Pen 3 +Web 3 +He'll 5 +We'll 5 +Fell 4 +Tell 4 +She'll 6 +Spell 5 +Smell 5 +Sent 4 +Bent 4 +Rent 4 +Test 4 +Nest 4 +Rest 4 +Neck 4 +Peck 4 +Check 5 +Less 4 +Dress 5 +Stress 6 +Spend 5 +Edge 4 +Sketchy 7 +Then 4 +When 4 +Them 4 +Stem 4 +Fresh 5 +Step 4 +Went 4 +Essay 5 +Getting 7 +Setting 7 +Selling 7 +Telling 7 +Yelling 7 +Wedding 7 +Fetching 8 +Stepping 8 +Settle 6 +Kennel 6 +Fennel 6 +Peddle 6 +Meddle 6 +Lesson 6 +Whether 7 +Letter 6 +Better 6 +Beggar 6 +Pepper 6 +Cellar 6 +Tennis 6 +Chess 5 +Access 6 +Excess 6 +Assess 6 +Address 7 +Goddess 7 +Lettuce 7 +Fellow 6 +Sketch 6 +Stretch 7 +Ethics 6 +Ethnic 6 +Checkup 7 +Method 6 +Antenna 7 +Checkers 8 +Dilemma 7 +Dressy 6 +Bellow 6 +Reddish 7 +Per 3 +Stir 4 +Defer 5 +Refer 5 +Prefer 6 +Recur 5 +Concur 6 +Cursor 6 +Occur 5 +Herb 4 +Verb 4 +Bird 4 +Curd 4 +Heard 5 +Word 4 +Third 5 +Earn 4 +Burn 4 +Turn 4 +Learn 5 +Hurt 4 +Dirt 4 +Shirt 5 +Alert 5 +Merge 5 +Diverge 7 +Burst 5 +Thirst 6 +Girl 4 +Pearl 5 +Birth 5 +Term 4 +Firm 4 +Worm 4 +Affirm 6 +Confirm 7 +Work 4 +Quirk 5 +Network 7 +Homework 8 +Purse 5 +Nurse 5 +Curse 5 +Worker 6 +Learner 7 +Burner 6 +Further 7 +Researcher 10 +Circular 8 +Herbal 6 +Verbal 6 +Kernel 6 +Circle 6 +Turtle 6 +Hurdle 6 +Internal 8 +External 8 +Eternal 7 +Maternal 8 +Paternal 8 +Reversal 8 +Vertical 8 +Surgical 8 +Colonel 7 +Adverb 6 +Superb 6 +Disturb 7 +Upward 6 +Absurd 6 +Return 6 +Concern 7 +Adjourn 7 +Discern 7 +Insert 6 +Dessert 7 +Convert 7 +Invert 6 +Subvert 7 +Early 5 +Curly 5 +Certainly 9 +Personally 10 +Carefully 9 +Vertically 10 +Universe 8 +Converse 8 +Diversion 9 +Dispersion 10 +Immersion 9 +Reversion 9 +Inversion 9 +Perspiration 12 +Circumstance 12 +Permanent 9 +Entertainment 13 +Advertisement 13 +Determinant 11 +Transfer 8 +Furniture 9 +Observer 8 +Fertilizer 10 +Perpendicular 13 +Hectare 7 +Surf 4 +Serve 5 +Search 6 +Servant 7 +Service 7 +Surface 7 +Surgeon 7 +Sermon 6 +Surgery 7 +Surname 7 +Surplus 7 +Circuit 7 +Commercial 10 +Allergic 8 +Attorney 8 +Adversity 9 +Anniversary 11 +Curtain 7 +Courtesy 8 +Circus 6 +Church 6 +Chairman 8 +Dirty 5 +Desert 6 +Deserve 7 +Detergent 9 +Determine 9 +Divergent 9 +Earthquake 10 +Emergency 9 +Exertion 8 +Eternity 8 +Iceberg 7 +Inertia 7 +Impurity 8 +Journey 7 +Journalism 10 +Mercy 5 +Merchant 8 +Nervous 7 +Noteworthy 10 +Perfect 7 +Person 6 +Personal 8 +Personality 11 +Personnel 9 +Perfume 7 +Purpose 7 +Purchase 8 +Preserve 8 +Sturdy 6 +Turbine 7 +Trustworthy 11 +Thirsty 7 +Thermostat 10 +Urgent 6 +Urban 5 +University 10 +Unworthy 8 +Version 7 +Virtual 7 +Verdict 7 +Vertigo 7 +Versatile 9 +World 5 +Worship 7 +Worthless 9 +Worthy 6 +Workshop 8 +Burden 6 +Hertz 5 +Observe 7 +War 3 +His 3 +Fit 3 +Bit 3 +Sit 3 +Hit 3 +Quit 4 +Split 5 +Tip 3 +Ship 4 +Flip 4 +Trip 4 +Strip 5 +Bill 4 +Fill 4 +Kill 4 +Till 4 +Hill 4 +Chill 5 +Skill 5 +Still 5 +Drill 5 +Sing 4 +King 4 +Ring 4 +Wing 4 +Bring 5 +Swing 5 +Pin 3 +Win 3 +Skin 4 +Chin 4 +Swim 4 +Trim 4 +Film 4 +Slim 4 +Big 3 +Kid 3 +Fix 3 +Mix 3 +Pick 4 +Thick 5 +Stick 5 +Brick 5 +Quick 5 +List 4 +Give 4 +Live 4 +Gift 4 +Lift 4 +Pink 4 +Prince 6 +Print 5 +Drink 5 +Dish 4 +Fish 4 +Pitch 5 +Switch 6 +Bridge 6 +Build 5 +Guilt 5 +Inch 4 +Limb 4 +Milk 4 +Risk 4 +Script 6 +Strict 6 +Swift 5 +Wind 4 +Bare 4 +Dare 4 +Fare 4 +Scare 5 +Spare 5 +Beware 6 +Declare 7 +Welfare 7 +Square 6 +Prepare 7 +Fair 4 +Pair 4 +Chair 5 +Stair 5 +Repair 6 +Despair 7 +Wear 4 +Tear 4 +Prayer 6 +Vary 4 +Dairy 5 +Fairy 5 +Scary 5 +Chary 5 +Barely 6 +Airlift 7 +Airplane 8 +Various 7 +Variable 8 +Variant 7 +Scarce 6 +Bearable 8 +Careless 8 +Grandparent 11 +Compare 7 +Cow 3 +Now 3 +Wow 3 +Out 3 +Bough 5 +About 5 +Doubt 5 +Scout 5 +Lookout 7 +Timeout 7 +Workout 7 +Foul 4 +Scowl 5 +Loud 4 +Cloud 5 +Crowd 5 +Noun 4 +Town 4 +Down 4 +Gown 4 +Crown 5 +Brown 5 +Drown 5 +Ouch 4 +Couch 5 +Sour 4 +Shower 6 +Dower 5 +Flour 5 +Tower 5 +Outer 5 +Outfit 6 +Outlet 6 +Outline 7 +Count 5 +Mount 5 +House 5 +Mouse 5 +Sound 5 +Round 5 +Compound 8 +Profound 8 +Surround 8 +Bounce 6 +Announce 8 +Towel 5 +Vowel 5 +Hourly 6 +Loudly 6 +Mouth 5 +Anyhow 6 +Somehow 7 +Bouncer 7 +Founder 7 +Outcome 7 +Pronoun 7 +Lounge 6 +Discount 8 +Nowadays 8 +Township 8 +Pronounce 9 +Horsepower 10 +Announcement 12 +Accountable 11 +Householder 11 +Loudspeaker 11 +Mountain 8 +County 6 +Counter 7 +Countable 9 +Countdown 9 +Dowry 5 +Mountaineer 11 +Flounce 7 +Ear 3 +Dear 4 +Year 4 +Near 4 +Cheer 5 +Shear 5 +Steer 5 +Smear 5 +Sphere 6 +Modifier 8 +Wildfire 8 +Gunfire 7 +Bonfire 7 +Query 5 +Weary 5 +Layer 5 +Sincere 7 +Atmosphere 10 +Hemisphere 10 +Dial 4 +Trial 5 +Serial 6 +Beard 5 +Serum 5 +Fearful 7 +Ideally 7 +Betrayal 8 +Coherent 8 +Diagnose 8 +Exterior 8 +Superior 8 +Funeral 7 +Bacteria 8 +Compliant 9 +Appearance 10 +Mysterious 10 +Requirement 11 +Cereal 6 +Realist 7 +Desirous 8 +Inherent 8 +Materiel 8 +So 2 +Go 2 +No 2 +Blow 4 +Slow 4 +Flow 4 +Show 4 +Snow 4 +Know 4 +Crow 4 +Grow 4 +Below 5 +Window 6 +Shadow 6 +Narrow 6 +Tomorrow 8 +Bold 4 +Gold 4 +Sold 4 +Told 4 +Hold 4 +Host 4 +Most 4 +Ghost 5 +Coast 5 +Toast 5 +Roast 5 +Boat 4 +Goat 4 +Coat 4 +Note 4 +Vote 4 +Throat 6 +Own 3 +Bone 4 +Loan 4 +Phone 5 +Alone 5 +Grown 5 +Stone 5 +Load 4 +Code 4 +Road 4 +Episode 7 +Toll 4 +Roll 4 +Hole 4 +Role 4 +Soul 4 +Goal 4 +Bowl 4 +Stole 5 +Whole 5 +Old 3 +Home 4 +Joke 4 +Hope 4 +Both 4 +Open 4 +Close 5 +Total 5 +Notice 6 +Gross 5 +Local 5 +Those 5 +Coach 5 +Focus 5 +Smoke 5 +Social 6 +Control 7 +Though 6 +Growth 6 +Moment 6 +October 7 +Potatoes 8 +Shoulder 8 +Associate 9 +Bag 3 +Ban 3 +Bed 3 +Beg 3 +Bear 4 +Bell 4 +Bet 3 +Boy 3 +Bus 3 +Baby 4 +Bang 4 +Bash 4 +Bath 4 +Bean 4 +Bike 4 +Bled 4 +Blot 4 +Bottle 6 +Bulb 4 +Busy 4 +Buzz 4 +Batch 5 +Berry 5 +Black 5 +Bless 5 +Block 5 +Blond 5 +Bluff 5 +Blunt 5 +Blush 5 +Brink 5 +Brisk 5 +Brunt 5 +Bakery 6 +Bucket 6 +Balloon 7 +Battery 7 +Because 7 +Benefit 7 +Bicycle 7 +Biscuit 7 +Buffalo 7 +Baseball 8 +Becoming 8 +Beginner 8 +Beverage 8 +Birthday 8 +Behaviour 9 +Biography 9 +Bookshelf 9 +Aerobics 8 +Alphabet 8 +Cabin 5 +Cupboard 8 +Debate 6 +Describe 8 +Disability 10 +Fabulous 8 +Goodbye 7 +Grab 4 +Habit 5 +Hibernate 9 +Hobby 5 +Job 3 +Keyboard 8 +Labour 6 +Mailbox 7 +Marbles 7 +Neighbour 9 +Nobody 6 +Obedient 8 +Obey 4 +Observation 11 +Prescribe 9 +Pub 3 +Remember 8 +Ribbon 6 +Robot 5 +Rubber 6 +Scrub 5 +Somebody 8 +Subject 7 +Subscribe 9 +Tab 3 +Tube 4 +Add 3 +Afraid 6 +Ahead 5 +And 3 +Anybody 7 +Auditory 8 +Band 4 +Bend 4 +Beside 6 +Blamed 6 +Blend 5 +Blind 5 +Body 4 +Bond 4 +Brand 5 +Bread 5 +Bud 3 +Cad 3 +Calendar 8 +Cold 4 +Comedy 6 +Crowded 7 +Dab 3 +Daddy 5 +Daisy 5 +Dam 3 +Dance 5 +Danger 6 +Dash 4 +Date 4 +Day 3 +Dazed 5 +Decade 6 +Decide 6 +Deck 4 +Delicate 8 +Dell 4 +Demand 6 +Democracy 9 +Demonstrate 11 +Denim 5 +Dentist 7 +Deny 4 +Deposit 7 +Design 6 +Desk 4 +Desperate 9 +Destination 11 +Diagonal 8 +Diary 5 +Dictionary 10 +Different 9 +Difficulty 10 +Dinner 6 +Dip 3 +Diploma 7 +Directory 9 +Disadvantage 12 +Disciplinary 12 +Disconnect 10 +Discriminate 12 +Dishwasher 10 +Ditch 5 +Dive 4 +Divide 6 +Dock 4 +Doctor 6 +Document 8 +Dog 3 +Dollar 6 +Door 4 +Doughnut 8 +Drag 4 +Drank 5 +Drift 5 +Drip 4 +Drop 4 +Drug 4 +Drum 4 +Drunk 5 +Duck 4 +Dull 4 +Duplicate 9 +Dust 4 +Dutch 5 +Fame 4 +Faze 4 +Fed 3 +Filed 5 +Fined 5 +Flamed 6 +Fold 4 +Fond 4 +Food 4 +Fund 4 +Glad 4 +Gland 5 +Grade 5 +Grand 5 +Headache 8 +Held 4 +Hidden 6 +Hide 4 +Hollywood 9 +Honed 5 +Idea 4 +Inside 6 +Instead 7 +Ladder 6 +Lady 4 +Laze 4 +Lemonade 8 +Lid 3 +Medicine 8 +Radio 5 +Read 4 +Ready 5 +Ride 4 +Riding 6 +Salad 5 +Saved 5 +Scold 5 +Seafood 7 +Send 4 +Shamed 6 +Shaved 6 +Side 4 +Speed 5 +Spider 6 +Succeed 7 +Talented 8 +Tamed 5 +Tend 4 +Themed 6 +Thrived 7 +Tiled 5 +Timed 5 +Toned 5 +Video 5 +Visited 7 +Wave 4 +Wood 4 +Affection 9 +Belief 6 +Beneficial 10 +Breakfast 9 +Cafe 4 +Cafeteria 9 +Calf 4 +Campfire 8 +Catfish 7 +Certificate 11 +Chef 4 +Chief 5 +Choreograph 11 +Clarify 7 +Cliff 5 +Coffee 6 +Confidential 12 +Confusion 9 +Cough 5 +Defend 6 +Definition 10 +Difference 10 +Dolphin 7 +Effort 6 +Elephant 8 +Enough 6 +Fabric 6 +Face 4 +Facility 8 +Faculty 7 +Familiar 8 +Family 6 +Famous 6 +Fan 3 +Fancy 5 +Fantastic 9 +Farmer 6 +Farther 7 +Fashionable 11 +Favorable 9 +Favourite 9 +Feather 7 +Feet 4 +Fence 5 +Fever 5 +Field 5 +Final 5 +Finger 6 +Fingernail 10 +Fire 4 +Fishing 7 +Follower 8 +Foot 4 +Footprint 9 +Forehead 8 +Forest 6 +Forever 7 +Forgetful 9 +Forgiven 8 +Fossil 6 +Foundation 10 +Fox 3 +Fundamental 11 +Funny 5 +Golf 4 +Half 4 +Handful 7 +Handkerchief 12 +Headphone 9 +Housewife 9 +Identify 8 +Infection 9 +Interfere 9 +Kickoff 7 +Knife 5 +Laugh 5 +Leaf 4 +Lifeguard 9 +Magnify 7 +Microphone 10 +Office 6 +Often 5 +Paragraph 9 +Phenomenal 10 +Photo 5 +Photograph 10 +Playful 7 +Profession 10 +Profitable 10 +Referee 7 +Relief 6 +Safety 6 +Scientific 10 +Shelf 5 +Sophisticated 13 +Stuff 5 +Telephone 9 +Terrific 8 +Thief 5 +Tough 5 +Traffic 7 +Trophy 6 +Unbelievable 12 +Unforgettable 13 +Waffle 6 +Wolf 4 +Again 5 +Ago 3 +Alligator 9 +Altogether 10 +Baggage 7 +Began 5 +Bigger 6 +Bingo 5 +Cargo 5 +Category 8 +Colleague 9 +Digging 7 +Dignity 7 +Eager 5 +Eagle 5 +Egg 3 +Ego 3 +Figure 6 +Forget 6 +Forgive 7 +Gain 4 +Galaxy 6 +Gallery 7 +Gallon 6 +Game 4 +Gamma 5 +Gang 4 +Garbage 7 +Garden 6 +Gate 4 +Gathering 9 +Gave 4 +Gaze 4 +Gear 4 +Geek 4 +Geese 5 +Geyser 6 +Gigabyte 8 +Going 5 +Golden 6 +Gone 4 +Goose 5 +Gorilla 7 +Gossip 6 +Govern 6 +Grad 4 +Gram 4 +Grant 5 +Grid 4 +Grill 5 +Grim 4 +Grin 4 +Grip 4 +Grunt 5 +Guarantee 9 +Guarded 7 +Guava 5 +Guidance 8 +Guilty 6 +Guitar 6 +Gum 3 +Illegal 7 +Indigo 6 +Investigate 11 +Jingle 6 +Jogging 7 +Jug 3 +Legal 5 +Logo 4 +Luggage 7 +Magazine 8 +Magnet 6 +Mango 5 +Marigold 8 +Mogul 5 +Navigate 8 +Negative 8 +Organ 5 +Outgun 6 +Recognize 9 +Regardless 10 +Regular 7 +Significant 11 +Target 6 +Tiger 5 +Together 8 +Vegan 5 +Wag 3 +Behave 6 +Behind 6 +Birdhouse 9 +Hammer 6 +Handbag 7 +Handle 6 +Handshake 9 +Handsome 8 +Happen 6 +Happy 5 +Harbour 7 +Hardware 8 +Harvest 7 +Haunted 7 +Head 4 +Headlight 9 +Health 6 +Healthy 7 +Hearing 7 +Heat 4 +Heaven 6 +Heavy 5 +Height 6 +Helicopter 10 +Hello 5 +Help 4 +Hijack 6 +Hike 4 +Hint 4 +Hire 4 +Hockey 6 +Holiday 7 +Hollow 6 +Horizon 7 +Horror 6 +Hospital 8 +Hostage 7 +Hostile 7 +Hotel 5 +Huge 4 +Human 5 +Humble 6 +Hundred 7 +Hunger 6 +Hunt 4 +Hurry 5 +Hut 3 +Hybrid 6 +Hydrogen 8 +Hyphen 6 +Inherit 7 +Rehearsal 9 +Downhill 8 +Exhalation 10 +Forehand 8 +Grasshopper 11 +Acknowledge 11 +Acreage 7 +Advantage 9 +Age 3 +Agency 6 +Agility 7 +Agitation 9 +Algebra 7 +Bandage 7 +Cabbage 7 +Cage 4 +College 7 +Courage 7 +Digestion 9 +Discourage 10 +Educate 7 +Education 9 +Egypt 5 +Eject 5 +Eligible 8 +Encourage 9 +Engagement 10 +Gender 6 +General 7 +Generous 8 +Genius 6 +Gentle 6 +Geography 9 +Geometry 8 +Germany 7 +Germs 5 +Giant 5 +Ginger 6 +Image 5 +Intelligent 11 +Jacket 6 +Jake 4 +Jam 3 +James 5 +Japanese 8 +Jealous 7 +Jeans 5 +Jeep 4 +Jelly 5 +Jewel 5 +Journal 7 +Joy 3 +Judge 5 +Juice 5 +Jump 4 +Jungle 6 +Jupiter 7 +Just 4 +Knowledge 9 +Language 8 +Large 5 +Magic 5 +Major 5 +Manage 6 +Marriage 8 +Message 7 +Object 6 +Original 8 +Oxygen 6 +Package 7 +Page 4 +Percentage 10 +Pigeon 6 +Postage 7 +Privilege 9 +Procedure 9 +Project 7 +Refrigerate 11 +Register 8 +Reject 6 +Ridge 5 +Soldier 7 +Stage 5 +Storage 7 +Strategy 8 +Vegetable 9 +Village 7 +Wage 4 +Angel 5 +Apology 7 +Astrologer 10 +Average 7 +Damage 6 +Fridge 6 +Teenager 8 +Academy 7 +Accident 8 +Bake 4 +Bank 4 +Bask 4 +Book 4 +Broke 5 +Brook 5 +Bulk 4 +Cactus 6 +Cake 4 +Camera 6 +Candle 6 +Candy 5 +Carpenter 9 +Carrot 6 +Cartoon 7 +Caterpillar 11 +Cave 4 +Cheek 5 +Chicken 7 +Chocolate 9 +Coconut 7 +Coin 4 +Coincidence 11 +Coke 4 +Comb 4 +Combination 11 +Comedian 8 +Community 9 +Computer 8 +Cone 4 +Confess 7 +Congratulations 15 +Consider 8 +Cookie 6 +Cool 4 +Correct 7 +Counsellor 10 +Cracker 7 +Cucumber 8 +Cupcake 7 +Cushion 7 +Customer 8 +Difficult 9 +Dirk 4 +Disk 4 +Duke 4 +Dusk 4 +Fake 4 +Flake 5 +Flask 5 +Freak 5 +Funky 5 +Geeky 5 +Greek 5 +Hulk 4 +Hunk 4 +Husk 4 +Ink 3 +Juke 4 +Junk 4 +Kay 3 +Kerry 5 +Kettle 6 +Kevin 5 +Keypad 6 +Kidney 6 +Kilo 4 +Kindle 6 +Kingdom 7 +Kit 3 +Kitchen 7 +Kite 4 +Kitty 5 +Lake 4 +Leak 4 +Like 4 +Link 4 +Lock 4 +Make 4 +Mask 4 +Mathematic 10 +Meditation 10 +Mike 4 +Music 5 +Musk 4 +Napkin 6 +Notebook 8 +Occasional 10 +Okay 4 +Optimistic 10 +Pacific 7 +Pack 4 +Patriotic 9 +Peacock 7 +Peek 4 +Perk 4 +Pike 4 +Public 6 +Quake 5 +Quark 5 +Rank 4 +Rock 4 +Secondary 9 +Seek 4 +Shake 5 +Shirk 5 +Shook 5 +Shriek 6 +Sick 4 +Sidewalk 8 +Silk 4 +Sink 4 +Skip 4 +Skit 4 +Sky 3 +Skyline 7 +Snack 5 +Snake 5 +Soak 4 +Spark 5 +Speak 5 +Specific 8 +Spoken 6 +Stake 5 +Storybook 9 +Stroke 6 +Take 4 +Tank 4 +Task 4 +Thank 5 +Think 5 +Token 5 +Took 4 +Topic 5 +Trek 4 +Vacation 8 +Vacuum 6 +Wake 4 +Weak 4 +Week 4 +Weekend 7 +Yardstick 9 +Agriculture 11 +Alike 5 +America 7 +Application 11 +Arithmetic 10 +Athletic 8 +Awake 5 +Domestic 8 +Drake 5 +Economy 7 +Historic 8 +Plastic 7 +Pocket 6 +Risky 5 +Ability 7 +Able 4 +Alarm 5 +Alive 5 +Aluminium 9 +Amplifier 9 +Analytical 10 +Ankle 5 +Annual 6 +April 5 +Asleep 6 +Assemble 8 +Available 9 +Awful 5 +Babble 6 +Beautiful 9 +Believe 7 +Belly 5 +Belong 6 +Bible 5 +Birthplace 10 +Blackboard 10 +Blanket 7 +Blew 4 +Blockbuster 11 +Blocks 6 +Blossom 7 +Blown 5 +Blue 4 +Blueprint 9 +Blur 4 +Booklet 7 +Bowling 7 +Bracelet 8 +Brazil 6 +Bubble 6 +Buckle 6 +Bustle 6 +Butterfly 9 +Cable 5 +Cancel 6 +Capable 7 +Capsule 7 +Careful 7 +Castle 6 +Ceiling 7 +Celebrate 9 +Ceremonial 10 +Challenges 10 +Cheerful 8 +Chemical 8 +Chlorine 8 +Clap 4 +Classic 7 +Classroom 9 +Claw 4 +Cleanliness 11 +Clearance 9 +Clever 6 +Client 6 +Climate 7 +Climax 6 +Climbing 8 +Clinic 6 +Clock 5 +Closet 6 +Clothes 7 +Colours 7 +Complain 8 +Complete 8 +Complexity 10 +Complicate 10 +Compliment 10 +Conclude 8 +Conflict 8 +Counsel 7 +Critical 8 +Curriculum 10 +Denial 6 +Dependable 10 +Desirable 9 +Detail 6 +Dimple 6 +Disable 7 +Discipline 10 +Disclose 8 +Disgraceful 11 +Dislike 7 +Dislocate 9 +Disloyal 8 +Dismissal 9 +Display 7 +Doubtful 8 +Edible 6 +Elbow 5 +Electricity 11 +Elevator 8 +Eleven 6 +Employee 8 +Envelope 8 +Example 7 +Exclaim 7 +Exclude 7 +Explain 7 +Flammable 9 +Flashlight 10 +Flat 4 +Flavor 6 +Flexible 8 +Float 5 +Florist 7 +Flower 6 +Fluctuation 11 +Fluency 7 +Flute 5 +Fly 3 +Forceful 8 +Glacier 7 +Gladiator 9 +Glamour 7 +Glaring 7 +Glided 6 +Glider 6 +Glitter 7 +Global 6 +Gloomy 6 +Glorify 7 +Glow 4 +Glue 4 +Graceful 8 +Grateful 8 +Honourable 10 +Horrible 8 +Hourglass 9 +Hurtful 7 +Identical 9 +Immediately 11 +Impossible 10 +Include 7 +Inclusion 9 +Incomplete 10 +Incredible 10 +Individual 10 +Inflammable 11 +Inflate 7 +Inflation 9 +Inflexible 10 +Influence 9 +Intellectual 12 +Invisible 9 +Label 5 +Laboratory 10 +Lamb 4 +Laminated 9 +Lamp 4 +Largest 7 +Late 4 +Lavatory 8 +Lazy 4 +Leadership 10 +Learning 8 +Leaving 7 +Legality 8 +Legible 7 +Lemon 5 +Liability 9 +Liberty 7 +Library 7 +Light 5 +Limitation 10 +Limited 7 +Lion 4 +Listen 6 +Literature 10 +Lizard 6 +Location 8 +Logical 7 +Look 4 +Lucky 5 +Lunchtime 9 +Luxurious 9 +Lying 5 +Magical 7 +Mail 4 +Manual 6 +Marble 6 +Meaningful 10 +Mechanical 10 +Medical 7 +Military 8 +Miracle 7 +Miserable 9 +Misleading 10 +Missile 7 +Misspell 8 +Mouthful 8 +Muffler 7 +Multiple 8 +Muscle 6 +Musical 7 +Neglect 7 +Nicely 6 +Nickel 6 +Nucleus 7 +Numerical 9 +Oclock 6 +Obstacle 8 +Olive 5 +Olympics 8 +Overflow 8 +Painful 7 +Particle 8 +Pebble 6 +Pencil 6 +People 6 +Physical 8 +Pillow 6 +Pilot 5 +Pineapple 9 +Place 5 +Plane 5 +Planet 6 +Planner 7 +Plant 5 +Platinum 8 +Play 4 +Player 6 +Pleasant 8 +Please 6 +Plenty 6 +Plumber 7 +Plural 6 +Plus 4 +Police 6 +Popularity 10 +Population 10 +Possible 8 +Practical 9 +Presentable 11 +Principal 9 +Principle 9 +Problem 7 +Proclaim 8 +Publication 11 +Publicity 9 +Publish 7 +Punctual 8 +Purple 6 +Qualification 13 +Questionable 12 +Quickly 7 +Reality 7 +Reasonable 10 +Recycle 7 +Reflect 7 +Reliable 8 +Remarkable 10 +Repeat 6 +Replace 7 +Replay 6 +Republic 8 +Resemble 8 +Resourceful 11 +Respectful 10 +Responsible 11 +Sample 6 +Schedule 8 +Scramble 8 +Seal 4 +Seashell 8 +Shuffle 7 +Sibling 7 +Silly 5 +Similarity 10 +Simple 6 +Slam 4 +Slap 4 +Sled 4 +Sleep 5 +Sleeve 6 +Slender 7 +Slide 5 +Slip 4 +Sloppy 6 +Slowdown 8 +Smaller 7 +Smuggle 7 +Snowball 8 +Snowflake 9 +Someplace 9 +Sorrowful 9 +Stable 6 +Staple 6 +Statistical 11 +Struggle 8 +Stumble 7 +Sunflower 9 +Sunglasses 10 +Supply 6 +Syllable 8 +Table 5 +Tackle 6 +Tail 4 +Technical 9 +Terrible 8 +Testimonial 11 +Tickle 6 +Timetable 9 +Translate 9 +Trembling 9 +Tricycle 8 +Triple 6 +Tumble 6 +Tutorial 8 +Twinkle 7 +Typical 7 +Unable 6 +Unusual 7 +Upload 6 +Usable 6 +Useful 6 +Useless 7 +Utensil 7 +Variability 11 +Vehicle 7 +Vessel 6 +Violin 6 +Visual 6 +Vocabulary 10 +Vocal 5 +Wallet 6 +Wallflower 10 +Wallpaper 9 +Wheel 5 +Wrestle 7 +Wrinkle 7 +Accelerate 10 +Agreeable 9 +Cycle 5 +Established 11 +Eventful 8 +Frightful 9 +Fumble 6 +Gamble 6 +Geographical 12 +Sprinkle 8 +Thankful 8 +Animal 6 +Anonymous 9 +Aquarium 8 +Auditorium 10 +Calcium 7 +Camel 5 +Cinnamon 8 +Climb 5 +Comet 5 +Cream 5 +Custom 6 +Machine 7 +Mammal 6 +Manner 6 +Married 7 +Maximum 7 +Measured 8 +Mechanic 8 +Melody 6 +Member 6 +Memory 6 +Messenger 9 +Metal 5 +Microwave 9 +Might 5 +Minimum 7 +Movie 5 +Multiplication 14 +Musician 8 +Paramedic 9 +Petroleum 9 +Plumb 5 +Scream 6 +Simultaneous 12 +Someone 7 +Stadium 7 +Stream 6 +Swimming 8 +Synonym 7 +Team 4 +Thumb 5 +Timer 5 +Tomato 6 +Tournament 10 +Daytime 7 +Diagram 7 +Drummer 7 +Extreme 7 +Grammar 7 +Number 6 +Unanimous 9 +Wisdom 6 +Anatomy 7 +Animation 9 +Another 7 +Attention 9 +Bonus 5 +Brain 5 +Canal 5 +Chain 5 +China 5 +Elementary 10 +Emotion 7 +Entertain 9 +Finish 6 +Generator 9 +Green 5 +Knees 5 +Knock 5 +Machinery 9 +Manually 8 +Nation 6 +Navigation 10 +Navy 4 +Need 4 +Needle 6 +Neutrality 10 +Never 5 +Nice 4 +Nickname 8 +Night 5 +Nine 4 +Nineteen 8 +Noise 5 +Nose 4 +November 8 +Nutrition 9 +Peanut 6 +Rainbow 7 +Rainy 5 +Reunion 7 +Spinning 8 +Spoon 5 +Sunny 5 +Superman 8 +Television 10 +Tiny 4 +Vitamin 7 +Volcano 7 +Vulnerable 10 +Winner 6 +Clown 5 +Complication 12 +Decision 8 +Hibernation 11 +Honour 6 +Inability 9 +Belonging 9 +Boating 7 +Bungalow 8 +Buying 6 +Caring 6 +Catching 8 +Challenging 11 +Clarifying 10 +Dancing 7 +Driving 7 +England 7 +English 7 +Evening 7 +Fingertip 9 +Raining 7 +Rewarding 9 +Singapore 9 +Singer 6 +Sitting 7 +Sleeping 8 +Song 4 +Spring 6 +String 6 +Strong 6 +Talking 7 +Thing 5 +Verifying 9 +Visiting 8 +Wrong 5 +Younger 7 +Greeting 8 +Handwriting 11 +Lung 4 +Measuring 9 +Painting 8 +Ping 4 +Playing 7 +Apartment 9 +Champ 5 +Chop 4 +Chump 5 +Clamp 5 +Clump 5 +Cramp 5 +Crept 5 +Crimp 5 +Crisp 5 +Damp 4 +Depend 6 +Depth 5 +Diaper 6 +Dipping 7 +Disposable 10 +Dripping 8 +Limp 4 +Lisp 4 +Lollipop 8 +Lump 4 +Membership 10 +Mop 3 +Mopping 7 +Napping 7 +Newspaper 9 +Opportunity 11 +Oversleep 9 +Pacifier 8 +Paddle 6 +Paid 4 +Paint 5 +Pancake 7 +Papaya 6 +Paper 5 +Parade 6 +Parent 6 +Parrot 6 +Participate 11 +Particularly 12 +Party 5 +Passenger 9 +Passing 7 +Passionate 10 +Password 8 +Peach 5 +Pear 4 +Penalty 7 +Penguin 7 +Penny 5 +Personable 10 +Personalize 11 +Piano 5 +Picnic 6 +Pill 4 +Pipe 4 +Pirate 6 +Pizza 5 +Plank 5 +Plot 4 +Pluck 5 +Plug 4 +Plum 4 +Plump 5 +Plunk 5 +Plush 5 +Point 5 +Policeman 9 +Popcorn 7 +Posh 4 +Prank 5 +Prep 4 +Press 5 +Prick 5 +Prim 4 +Prod 4 +Prom 4 +Prop 4 +Puck 4 +Puff 4 +Pulp 4 +Pump 4 +Punctuation 11 +Punishable 10 +Puppet 6 +Spam 4 +Spank 5 +Speck 5 +Spent 5 +Spill 5 +Stamp 5 +Stump 5 +Super 5 +Supermarket 11 +Superstar 9 +Sweep 5 +Syrup 5 +Telescope 9 +Tempt 5 +Thump 5 +Toothpaste 10 +Tramp 5 +Trap 4 +Tropical 8 +Trump 5 +Typewriter 10 +Wept 4 +Wisp 4 +Wrap 4 +Zipper 6 +Dump 4 +Escape 6 +Kept 4 +Ramp 4 +Report 6 +Roundup 7 +Scalp 5 +Separate 8 +Sheep 5 +Slept 5 +Abbreviate 10 +Abraham 7 +Abroad 6 +Abrupt 6 +Acrobat 7 +Admire 6 +Agree 5 +Agricultural 12 +Angry 5 +Anywhere 8 +Appreciate 10 +Approach 8 +Approved 8 +Arrange 7 +Around 6 +Arrest 6 +Arrive 6 +Arrow 5 +Attract 7 +Authority 9 +Background 10 +Bankrupt 8 +Borrow 6 +Braces 6 +Bravery 7 +Breathing 9 +Briefcase 9 +Brighten 8 +Brilliant 9 +Britain 7 +Brooklyn 8 +Brownie 7 +Cashier 7 +Celebrity 9 +Central 7 +Cherry 6 +Children 8 +Concentrate 11 +Concrete 8 +Confront 8 +Congress 8 +Contract 8 +Contribution 12 +Controversy 11 +Crayon 6 +Crazy 5 +Create 6 +Creative 8 +Creature 8 +Credible 8 +Cricket 7 +Criminal 8 +Crisis 6 +Criticize 9 +Crocodile 9 +Crossing 8 +Cruel 5 +Crunchy 7 +Crystal 7 +Dandruff 8 +Daybreak 8 +Decoration 10 +Decrease 8 +Degree 6 +Democrat 8 +Direction 9 +Disagree 8 +Disappear 9 +Disapprove 10 +Disgrace 8 +Drama 5 +Drastic 7 +Dresser 7 +Dressing 8 +Drilling 8 +Drinkable 9 +Drive 5 +Driver 6 +Dropping 8 +Drowsy 6 +Drugstore 9 +Dryer 5 +Earring 7 +Earth 5 +Electric 8 +Electronics 11 +Embarrass 9 +Endure 6 +Entrance 8 +Erase 5 +Evergreen 9 +Everybody 9 +Expire 6 +Express 7 +Extra 5 +Extremely 9 +Fracture 8 +Fragile 7 +Fragrance 9 +Frame 5 +Freedom 7 +Freeway 7 +Freezer 7 +Frequency 9 +Freshen 7 +Friday 6 +Friend 6 +Frighten 8 +Frozen 6 +Fruit 5 +Frustration 11 +Furious 7 +Gracious 8 +Gradual 7 +Graduate 8 +Grammatical 11 +Grandchildren 13 +Grapes 6 +Grass 5 +Gratitude 9 +Gravity 7 +Gravy 5 +Greet 5 +Groceries 9 +Growing 7 +Hair 4 +Handcraft 9 +Illustrated 11 +Imaginary 9 +Impress 7 +Improper 8 +Improve 7 +Inappropriate 13 +Incorrect 9 +Increase 8 +Incriminating 13 +Infraction 10 +Infrared 8 +Infrequent 10 +Ingredient 10 +Insecure 8 +Inspire 7 +Integrity 9 +Interpret 9 +Interruption 12 +Introduction 12 +Labrador 8 +Manicure 8 +Matrimony 9 +Mattress 8 +Memoir 6 +Microscope 10 +Migrate 7 +Milligram 9 +Necessarily 11 +Neutral 7 +Nightmare 9 +Operation 9 +Orange 6 +Orchestra 9 +Outgrow 7 +Overdrive 9 +Pantry 6 +Perimeter 9 +Pioneer 7 +Poetry 6 +Practically 11 +Practice 8 +Precaution 10 +Prediction 10 +Preface 7 +Premium 7 +Preparation 11 +Preposition 11 +Prescription 12 +Presentation 12 +Presently 9 +Presents 8 +Presidency 10 +Pressure 8 +Prevention 10 +Printer 7 +Privacy 7 +Prize 5 +Probability 11 +Process 7 +Productivity 12 +Professional 12 +Professor 9 +Program 7 +Progress 8 +Prohibit 8 +Promising 9 +Pronunciation 13 +Proposal 8 +Proposition 11 +Protection 10 +Provide 7 +Race 4 +Rain 4 +Raindrops 9 +Raisin 6 +Rational 8 +Reaction 8 +Realize 7 +Really 6 +Reason 6 +Recipient 9 +Recommendation 14 +Refrain 7 +Refresh 7 +Refreshments 12 +Regress 7 +Regression 10 +Regret 6 +Regulate 8 +Regulation 10 +Relative 8 +Religion 8 +Removal 7 +Repetition 10 +Represent 9 +Representative 14 +Reputation 10 +Rescue 6 +Residence 9 +Residential 11 +Resolution 10 +Respiratory 11 +Review 6 +Revolution 10 +Rice 4 +Rich 4 +Ridicule 8 +Ridiculous 10 +Rocket 6 +Rotten 6 +Royal 5 +Sacrifice 9 +Scarecrow 9 +Scissors 8 +Screwdriver 11 +Seashore 8 +Secrecy 7 +Secret 6 +Secretary 9 +Secure 6 +Security 8 +Subtract 8 +Subtraction 11 +Supreme 7 +Surprise 8 +Tire 4 +Toothbrush 10 +Tractor 7 +Trading 7 +Traditional 11 +Tragedy 7 +Trailer 7 +Trainer 7 +Transition 10 +Transmission 12 +Transparency 12 +Trash 5 +Travel 6 +Traveller 9 +Treasure 8 +Triangle 8 +Triangular 10 +Umbrella 8 +Unafraid 8 +Variety 7 +Vegetarian 10 +Verification 12 +Vibration 9 +Voluntary 9 +Waitress 8 +Walrus 6 +Withdrawal 10 +Wrist 5 +Write 5 +Writing 7 +Aircraft 8 +Iron 4 +January 7 +Kilogram 8 +Nowhere 7 +Nutcracker 10 +Segregate 9 +Spacecraft 10 +Squirrel 8 +Stories 7 +Zebra 5 +Aspirin 7 +Assistance 10 +Association 11 +Asterisk 8 +Businessman 11 +Butterscotch 12 +Campus 6 +Capacity 8 +Cardiologist 12 +Cemetery 8 +Centre 6 +Ceremony 8 +Chasing 7 +Chopsticks 10 +Christmas 9 +Citizen 7 +Civilization 12 +Columbus 8 +Consistency 11 +Consistent 10 +Continuous 10 +Correspondence 14 +Courageous 10 +Courteous 9 +Curiosity 9 +Curious 7 +Cutest 6 +December 8 +Decimal 7 +Delicious 9 +Descendant 10 +Desperation 11 +Despite 7 +Devastate 9 +Discontinue 11 +Discovery 9 +Discuss 7 +Dismiss 7 +Disobey 7 +Disposal 8 +Distance 8 +Distinguish 11 +Embarrassment 13 +Enthusiast 10 +Escalator 9 +Especially 10 +Establish 9 +Estimate 8 +Grasping 8 +Guessing 8 +Happiest 8 +Hilarious 9 +Honesty 7 +Hospitality 11 +Hungry 6 +Inspect 7 +Inspiration 11 +Interest 8 +Irresponsibly 13 +Landscape 9 +Landslide 9 +Loosely 7 +Loudest 7 +Luckiest 8 +Messy 5 +Minus 5 +Miraculous 10 +Mistake 7 +Misunderstand 13 +Mosquito 8 +Muscular 8 +Mussel 6 +Newest 6 +Nutritious 10 +Oldest 6 +Ophthalmologist 15 +Outstanding 11 +Overcast 8 +Parcel 6 +Pathologist 11 +Placement 9 +Poisonous 9 +Potassium 9 +Prettiest 9 +Prosperity 10 +Psychological 13 +Purposely 9 +Racing 6 +Realistic 9 +Receipt 7 +Recipe 6 +Request 7 +Reset 5 +Respiration 11 +Respond 7 +Response 8 +Responsibility 14 +Rustling 8 +Rusty 5 +Saddle 6 +Sadly 5 +Said 4 +Sail 4 +Sandwich 8 +Scale 5 +Scar 4 +Scattering 10 +Scholar 7 +School 6 +Science 7 +Scientist 9 +Scooter 7 +Scoreboard 10 +Scorecard 9 +Scuba 5 +Sculpture 9 +Seat 4 +Second 6 +Senior 6 +Separation 10 +Seven 5 +Sewing 6 +Sleeper 7 +Sleigh 6 +Slick 5 +Slit 4 +Sliver 6 +Slob 4 +Smack 5 +Smash 5 +Smile 5 +Smooch 6 +Smooth 6 +Snail 5 +Sneak 5 +Sneakers 8 +Sneeze 6 +Snicker 7 +Snooze 6 +Snore 5 +Snowfall 8 +Snowman 7 +Sock 4 +Soft 4 +Sorry 5 +Space 5 +Spaceship 9 +Spanish 7 +Sparkle 7 +Spatial 7 +Spatula 7 +Speaking 8 +Spear 5 +Special 7 +Specialist 10 +Specialization 14 +Spectacular 11 +Speculate 9 +Speech 6 +Speedily 8 +Speedometer 11 +Spelling 8 +Spice 5 +Spinach 7 +Spine 5 +Spinner 7 +Spiritual 9 +Sponsorship 11 +Spoonful 8 +Sports 6 +Sporty 6 +Stack 5 +Staircase 9 +Stairs 6 +Stallion 8 +Standard 8 +Starfish 8 +State 5 +Statement 9 +Station 7 +Stationary 10 +Statistics 10 +Statue 6 +Stay 4 +Steal 5 +Steam 5 +Stereo 6 +Stethoscope 11 +Sticker 7 +Sticky 6 +Stinger 7 +Stitch 6 +Stolen 6 +Store 5 +Story 5 +Strongest 9 +Student 7 +Studio 6 +Study 5 +Subdivision 11 +Substitute 10 +Suggest 7 +Summary 7 +Superficial 11 +Superintendent 14 +Suspenders 10 +Suspicious 10 +Swallow 7 +Swam 4 +Sweater 7 +Sweet 5 +Sweetheart 10 +Swelling 8 +Swipe 5 +Swollen 7 +Sword 5 +Symmetrical 11 +Systematically 14 +Therapist 9 +Translator 10 +Transmit 8 +Transparent 11 +Undecided 9 +Understanding 13 +Unmask 6 +Unnecessary 11 +Velocity 8 +Victorious 10 +Voice 5 +Whiskers 8 +Whispering 10 +Whistle 7 +Wrestler 8 +Accuracy 8 +Adventurous 11 +Against 7 +Almost 6 +Ambitious 9 +Analyst 7 +Classification 14 +Crispy 6 +Footstep 8 +Geologist 9 +Shakespeare 11 +Sign 4 +Tablespoon 10 +Tuberculosis 12 +Youngest 8 +Accumulate 10 +Accurate 8 +Batter 6 +Beauty 6 +Best 4 +Bite 4 +Biting 6 +Bolt 4 +Brighter 8 +Bust 4 +Calculate 9 +Chest 5 +Chit 4 +Competitor 10 +Cotton 6 +Cult 4 +Cute 4 +Delete 6 +Delft 5 +Denominator 11 +Duct 4 +Educator 8 +Eighteen 8 +Excited 7 +Exit 4 +Fat 3 +Felt 4 +Forgotten 9 +Frost 5 +Hilt 4 +Hotter 6 +Left 4 +Lit 3 +Little 6 +Lot 3 +Mat 3 +Melt 4 +Met 3 +Must 4 +Pact 4 +Pest 4 +Photos 6 +Pretty 6 +Quiet 5 +Quilt 5 +Rift 4 +Right 5 +Rust 4 +Saturday 8 +Sect 4 +Set 3 +Shift 5 +Shot 4 +Shut 4 +Stab 4 +Stag 4 +Stash 5 +Stiff 5 +Stink 5 +Stock 5 +Strap 5 +Stud 4 +Stunt 5 +Tablecloth 10 +Tact 4 +Taken 5 +Talent 6 +Tan 3 +Taste 5 +Teachable 9 +Teacher 7 +Teamwork 8 +Technicality 12 +Teeth 5 +Temperature 11 +Ten 3 +Territory 9 +Textile 7 +Theft 5 +Thermometer 11 +Tick 4 +Ticket 6 +Tiffin 6 +Tin 3 +Tired 5 +Tissue 6 +Toad 4 +Toaster 7 +Tuck 4 +Today 5 +Toe 3 +Tonight 7 +Tooth 5 +Toy 3 +Tract 5 +Trade 5 +Trans 5 +Tress 5 +Trick 5 +Troll 5 +Trot 4 +Trunk 5 +Trust 5 +Twin 4 +Twist 5 +Two 3 +Vest 4 +Violet 6 +Visitor 7 +Volt 4 +Water 5 +West 4 +White 5 +Wit 3 +Written 7 +Zest 4 +Crust 5 +Invited 7 +Advance 7 +Adventure 9 +Advertise 9 +Advice 6 +Approve 7 +Availability 12 +Avenue 6 +Beverages 9 +Brave 5 +Carnival 8 +Clover 6 +Convince 8 +Deceive 7 +Decisive 8 +Deliver 7 +Delivery 8 +Destructive 11 +Develop 7 +Driveway 8 +Effective 9 +Environment 11 +Evacuate 8 +Even 4 +Event 5 +Eventually 10 +Every 5 +Everyone 8 +Expensive 9 +Improving 9 +Invent 6 +Invincible 10 +Invitation 10 +Invite 6 +Involuntary 11 +Move 4 +Movement 8 +Mover 5 +Offensive 9 +Over 4 +Receive 7 +Recovery 8 +Relieve 7 +Remove 6 +Reversible 10 +River 5 +Sensitive 9 +Seventy 7 +Shave 5 +Stove 5 +Survive 7 +Vaccination 11 +Vain 4 +Valiant 7 +Valley 6 +Valuable 8 +Value 5 +Vanilla 7 +Vanish 6 +Vase 4 +Vault 5 +Velvet 6 +Vent 4 +Veteran 7 +Victory 7 +View 4 +Vinegar 7 +Virus 5 +Visible 7 +Vision 6 +Visit 5 +Visor 5 +Vowels 6 +Vulnerability 13 +Level 5 +Misbehave 9 +Awkward 7 +Highway 7 +Housework 9 +Likewise 8 +Liquid 6 +Quack 5 +Quarter 7 +Queen 5 +Raceway 7 +Require 7 +Wait 4 +Waiting 7 +Walkway 7 +Walnut 6 +Wandering 9 +Want 4 +Warning 7 +Wash 4 +Washer 6 +Watch 5 +Watercolor 10 +Watermelon 10 +Weather 7 +Weeds 5 +Welcome 7 +Wide 4 +Wild 4 +Winter 6 +Wish 4 +Women 5 +Wonderfully 11 +Words 5 +Working 7 +Worldwide 9 +Cakewalk 8 +Choir 5 +Equal 5 +Frequent 8 +Sandwiches 10 +Europe 6 +European 8 +Loyal 5 +Loyalty 7 +Reunite 7 +Reuse 5 +Union 5 +Unique 6 +Unison 6 +Unite 5 +Universal 9 +User 4 +Using 5 +Usual 5 +Utilities 9 +Utilize 7 +Yawn 4 +Yearly 6 +Yellow 6 +Yogurt 6 +Yolk 4 +Youth 5 +Yummy 5 +Advertising 11 +Amazing 7 +Amusing 7 +Arrows 6 +Bananas 7 +Bears 5 +Bees 4 +Boys 4 +Breezy 6 +Bugs 4 +Bulldozer 9 +Buzzing 7 +Cheese 6 +Cheesecake 10 +Chinese 7 +Clumsy 6 +Compromise 10 +Confuse 7 +Cookies 7 +Disaster 8 +Divisible 9 +Dogs 4 +Easily 6 +Emphasize 9 +Excuse 6 +Exercise 8 +Familiarize 11 +Flowers 7 +Freeze 6 +Fuzzy 5 +Horizontal 10 +Laser 5 +Legs 4 +Observing 9 +Organization 12 +Organize 8 +Poison 6 +President 9 +Puzzle 6 +Raspberry 9 +Razor 5 +Refusal 7 +Reservation 11 +Season 6 +Societies 9 +Stereos 7 +Sunrise 7 +Supervisor 10 +Tease 5 +Zigzag 6 +Zillion 7 +Zinc 4 +Zing 4 +Zinnia 6 +Zombie 6 +Zoologist 9 +Zoology 7 +Internalize 11 +Keys 4 +Museum 6 +Noisy 5 +Bother 6 +Breathe 7 +Either 6 +Gather 6 +Leather 7 +Neither 7 +Northern 8 +Rather 6 +Rhythm 6 +Southern 8 +Within 6 +Without 7 +Although 8 +Anything 8 +Athlete 7 +Author 6 +Beneath 7 +Breath 6 +Death 5 +Everything 10 +Faith 5 +Forth 5 +Length 6 +Monthly 7 +Something 9 +South 5 +Strength 8 +Thanks 6 +Theme 5 +Theory 6 +Therapy 7 +Thought 7 +Thousand 8 +Threat 6 +Threw 5 +Through 7 +Throw 5 +Truth 5 +Wealth 6 +Worth 5 +Attach 6 +Beach 5 +Bench 5 +Birch 5 +Bleach 6 +Branch 6 +Breach 6 +Brunch 6 +Bunch 5 +Challenge 9 +Champion 8 +Changeable 10 +Changing 8 +Channel 7 +Chapter 7 +Chariot 7 +Charity 7 +Charming 8 +Cheap 5 +Cheaper 7 +Chew 4 +Chick 5 +Child 5 +Childish 8 +Chimpanzee 10 +Choose 6 +Chore 5 +Chosen 6 +Clench 6 +Clinch 6 +Congestion 10 +Crunch 6 +Cultural 8 +Drench 6 +Each 4 +Exchange 8 +Fluctuate 9 +French 6 +Future 6 +Grandchild 10 +Habitual 8 +Infatuation 11 +Itching 7 +Larch 5 +Lurch 5 +Manufacture 11 +Marching 8 +Miniature 9 +Mismatch 8 +Munch 5 +Nachos 6 +Naturally 9 +Nature 6 +Ostrich 7 +Outreach 8 +Outstretch 10 +Peaches 7 +Perch 5 +Picture 7 +Pinch 5 +Pouch 5 +Preach 6 +Premature 9 +Punctuate 9 +Situation 9 +Teach 5 +Tenth 5 +Touches 7 +Abbreviation 12 +Abolish 7 +Accomplishment 14 +Action 6 +Addition 8 +Afresh 6 +Ambition 8 +Astonish 8 +Audition 8 +Authorship 10 +Awash 5 +Bluish 6 +Bookish 7 +British 7 +Broadest 8 +Brownish 8 +Cashew 6 +Chancellor 10 +Cherish 7 +Communication 13 +Competition 11 +Connection 10 +Crush 5 +Dayshift 8 +Description 11 +Dishes 6 +Dishonest 9 +Distraction 11 +Eruption 8 +Externship 10 +Extinguish 10 +Fashion 7 +Fellowship 10 +Finished 8 +Fishy 5 +Flagship 8 +Flash 5 +Flourish 8 +Flush 5 +Foolish 7 +Friendship 10 +Furnish 7 +Garnish 7 +Goldfish 8 +Greenish 8 +Grey 4 +Gunship 7 +Gunshot 7 +Handshakes 10 +Hardships 9 +Headmaster 10 +Internship 10 +Irish 5 +Lavish 6 +Leash 5 +Mackintosh 10 +Marshal 7 +Milkshake 9 +Mission 7 +Moonshine 9 +Mushrooms 9 +Needlefish 10 +Nightshade 10 +Nourish 7 +Partnership 11 +Perish 6 +Polish 6 +Published 9 +Punish 6 +Radish 6 +Refinished 10 +Refreshed 9 +Refreshment 11 +Refurbish 9 +Relinquish 10 +Relish 6 +Replenish 9 +Reshape 7 +Reshuffle 9 +Rubbish 7 +Selfish 7 +Shabby 6 +Shack 5 +Shade 5 +Shadows 7 +Shallow 7 +Shamble 7 +Shampoo 7 +Shard 5 +Shareholder 11 +Sharp 5 +Shatter 7 +She'd 5 +Shelter 7 +Shelve 6 +Shepherd 8 +Sherbet 7 +Shifting 8 +Shining 7 +Shipment 8 +Shipyard 8 +Shire 5 +Shopkeeper 10 +Shopping 8 +Shortcut 8 +Shorten 7 +Shutdown 8 +Splash 6 +Sunshine 8 +Amnesia 7 +Aversion 8 +Casually 8 +Closure 7 +Collage 7 +Collision 9 +Composure 9 +Concierge 9 +Conclusion 10 +Conversion 10 +Corrosion 9 +Erosion 7 +Explosion 9 +Massage 7 +Measurement 11 +Mirage 6 +Pleasure 8 +Seizure 7 +Treasury 8 +Usually 7 +Visualize 9 +Leisure 7 +Of 2 +On 2 +Ox 2 +Odd 3 +Off 3 +Online 6 +Got 3 +Pot 3 +Not 3 +Dot 3 +Slot 4 +Spot 4 +Top 3 +Shop 4 +Flop 4 +Stop 4 +Fog 3 +Log 3 +Blog 4 +Smog 4 +Shock 5 +Long 4 +Rob 3 +Bob 3 +Loss 4 +Boss 4 +Toss 4 +God 3 +Mod 3 +Mom 3 +Bomb 4 +Cost 4 +Doll 4 +Font 4 +Lost 4 +Loft 4 +Beyond 6 +Cloth 5 +Confident 9 +Complement 10 +Conference 10 +Involve 7 +Lodge 5 +Modern 6 +Profit 6 +Probably 8 +Product 7 +Prompt 6 +Solid 5 +Solve 5 +Shoe 4 +Grew 4 +Crew 4 +Screw 5 +Peru 4 +Fool 4 +Pool 4 +Tool 4 +Rule 4 +Stool 5 +Liverpool 9 +Prove 5 +Root 4 +Suit 4 +Shoot 5 +Lawsuit 7 +Soup 4 +Group 5 +Lose 4 +Bruise 6 +Cruise 6 +Boot 4 +Loose 5 +Suitable 8 +Approval 8 +Suitcase 8 +Bull 4 +Full 4 +Hook 4 +Cook 4 +Bush 4 +Push 4 +Put 3 +Pull 4 +Wool 4 +Could 5 +Would 5 +Should 6 +Woman 5 +Whoops 6 +Pudding 7 +Butcher 7 +Bosom 5 +Bulletin 8 +Fulfil 6 +Good 4 +Sugar 5 +Upon 4 +Unless 6 +Agenda 6 +Across 6 +Accept 6 +Accuse 6 +Account 7 +Along 5 +Amid 4 +Attack 6 +Avoid 5 +Apart 5 +Adopt 5 +Abuse 5 +Annoy 5 +Adjust 6 +Opinion 7 +Oppose 6 +Allure 6 +Affect 6 +Afford 6 +Allow 5 +Aware 5 +Amount 6 +Appear 6 +Air 3 +Care 4 +Where 5 +There 5 +Fear 4 +Clear 5 +Hear 4 +Here 4 +Adobe 5 +Aback 5 +Await 5 +Attain 6 +Amuse 5 +Adept 5 +Ascent 6 +Allege 6 +Alight 6 +Aloft 5 +Acute 5 +Aspire 6 +Amend 5 +Adorn 5 +Real 4 +Area 4 +Civil 5 +Post 4 +Initial 7 +Latter 6 +Opal 4 +Oval 4 +Rural 5 +Share 5 +Olden 5 +System 6 +Acuity 6 +Attire 6 +Series 6 +Policy 6 +Power 5 +Leader 6 +Prison 6 +Recent 6 +Enclose 7 +Failure 7 +Theatre 7 +Balance 7 +Bottom 6 +History 7 +Upper 5 +Century 7 +Awaken 6 +Western 7 +Political 9 +Popular 7 +Aphasia 7 +Energy 6 +Opener 6 +Ascetic 7 +Omega 5 +Middle 6 +Master 6 +Earthen 7 +Enter 5 +Corner 6 +Factor 6 +Sector 6 +Director 8 +Fairly 6 +Merely 6 +Surely 6 +Slowly 6 +Totally 7 +Assembly 8 +Favour 6 +Hour 4 +Ever 4 +Sister 6 +Feature 7 +Culture 7 +Mental 6 +Acquittal 9 +Success 7 +Instance 8 +National 8 +Question 8 +Position 8 +Construction 12 +Attraction 10 +Collection 10 +Production 10 +Section 7 +Selection 9 +Administration 14 +Assumption 10 +Distribution 12 +Assimilation 12 +Accumulation 12 +Appreciation 12 +Approximation 13 +Relation 8 +Commission 10 +Affiliation 11 +Acceleration 12 +Investigation 13 +Proportion 10 +Exhibition 10 +Aggression 10 +Condition 9 +Discussion 10 +Obsession 9 +Information 11 +Recognition 11 +Expression 10 +Solution 8 +Provision 9 +Regional 8 +Additional 10 +Educational 11 +International 13 +Element 7 +Treatment 9 +Parliament 10 +Agreement 9 +Equipment 9 +Department 10 +Development 11 +Arrangement 11 +Adjustment 10 +Management 10 +Acknowledgment 14 +Unemployment 12 +Employment 10 +Appointment 11 +Excellent 9 +Independent 11 +Addictive 9 +Attractive 10 +Assurance 9 +Insurance 9 +Appliance 9 +Annoyance 9 +Allowance 9 +Attendance 10 +Performance 11 +Reference 9 +Occurrence 10 +Obedience 9 +Experience 10 +Existence 9 +Currently 9 +Frequently 10 +Apparently 10 +Adaptability 12 +Accountability 14 +Eastern 7 +Nearly 6 +Closely 7 +Career 6 +Produce 7 +Proper 6 +Present 7 +Previous 8 +During 6 +Serious 7 +Similar 7 +Speaker 7 +Status 6 +Formal 6 +Former 6 +Acerbic 7 +Abound 6 +Awhile 6 +Recently 8 +Properly 8 +Property 8 +Presence 8 +Relevant 8 +Religious 9 +Abrasive 8 +Abruptly 8 +Abortive 8 +Majority 8 +Manager 7 +Adultery 8 +Industry 8 +Evidence 8 +Examiner 8 +Historical 10 +However 7 +Husband 7 +Sentence 8 +Minister 8 +Wooden 6 +Achieve 7 +Amongst 7 +Apparel 7 +Equally 7 +Nuclear 7 +Overrun 7 +Oversee 7 +Suppose 7 +Abundant 8 +Amenable 8 +Analysis 8 +Apparent 8 +Appendix 8 +Appraise 8 +Continue 8 +Division 8 +Economic 8 +Election 8 +Emphasis 8 +Function 8 +Oblivion 8 +Occasion 8 +Official 8 +Overcoat 8 +Overcome 8 +Overhead 8 +Overkill 8 +Override 8 +Overseas 8 +Powerful 8 +Abundance 9 +Accessory 9 +Adaptable 9 +Apologize 9 +Astrology 9 +Awareness 9 +Character 9 +Committee 9 +Dangerous 9 +Electrode 9 +Essential 9 +Generally 9 +Gentleman 9 +Necessary 9 +Seriously 9 +Structure 9 +Accessible 10 +Accomplice 10 +Accountant 10 +Achievable 10 +Admittance 10 +Apostrophe 10 +Apprentice 10 +Assimilate 10 +Astronomer 10 +Completely 10 +Democratic 10 +Industrial 10 +Obligatory 10 +Obliterate 10 +Particular 10 +Previously 10 +Relatively 10 +Successful 10 +Sufficient 10 +Technology 10 +Accommodate 11 +Accountancy 11 +Appreciable 11 +Appropriate 11 +Approximate 11 +Objectively 11 +Observatory 11 +Originality 11 +Substantial 11 +Affectionate 12 +Considerable 12 +Nevertheless 12 +Relationship 12 +Administrative 14 +Boil 4 +Coil 4 +Foil 4 +Soil 4 +Roil 4 +Spoil 5 +Join 4 +Alloy 5 +Moist 5 +Joint 5 +Choice 6 +Deploy 6 +Employ 6 +Android 7 +Steroid 7 +Thyroid 7 +Typhoid 7 +Enjoyment 9 +Deployment 10 +Disappointment 14 +Enjoy 5 +Destroy 7 +Decoy 5 +Playboy 7 +Boiler 6 +Joiner 6 +Spoiler 7 +Broiler 7 +Pointer 7 +Appoint 7 +Avoidable 9 +Enjoyable 9 +Joyful 6 +Boycott 7 +Boyhood 7 +Moisture 8 +Pointless 9 +Toilet 6 +Void 4 +Exploit 7 +Royalty 7 +Gunpoint 8 +OK 2 +Ley 3 +Hey 3 +Prey 4 +Trey 4 +They 4 +Survey 6 +Convey 6 +Buffet 6 +Ballet 6 +Cabriolet 9 +Mate 4 +Sundae 6 +Engage 6 +Overweight 10 +Allay 5 +Array 5 +Away 4 +Anyway 6 +Bay 3 +Bombay 6 +Broadway 8 +Clay 4 +Cray 4 +Dray 4 +Decay 5 +Delay 5 +Doomsday 8 +Doorway 7 +Fay 3 +Flay 4 +Fray 4 +Gateway 7 +Halfway 7 +Hooray 6 +May 3 +Midday 6 +Overlay 7 +Overpay 7 +Pay 3 +Pray 4 +Prepay 6 +Relay 5 +Repay 5 +Roadway 7 +Railway 7 +Runway 6 +Way 3 +Spray 5 +Stray 5 +Skyway 6 +Subway 6 +Speedway 8 +Screenplay 10 +Ate 3 +Rate 4 +Fate 4 +Hate 4 +Equate 6 +Estate 6 +Locate 6 +Negate 6 +Plate 5 +Relate 6 +Slate 5 +Trait 5 +Update 6 +Weight 6 +Deviate 7 +Elevate 7 +Emulate 7 +Imitate 7 +Mandate 7 +Mediate 7 +Narrate 7 +Operate 7 +Radiate 7 +Restate 7 +Situate 7 +Urinate 7 +Violate 7 +Allocate 8 +Decimate 8 +Decorate 8 +Dedicate 8 +Dominate 8 +Excavate 8 +Hesitate 8 +Indicate 8 +Innovate 8 +Marinate 8 +Militate 8 +Motivate 8 +Nominate 8 +Relocate 8 +Simulate 8 +Tolerate 8 +Validate 8 +Aggravate 9 +Alternate 9 +Arbitrate 9 +Checkmate 9 +Circulate 9 +Correlate 9 +Culminate 9 +Cultivate 9 +Desiccate 9 +Gravitate 9 +Implicate 9 +Integrate 9 +Lubricate 9 +Originate 9 +Overstate 9 +Propagate 9 +Stimulate 9 +Stipulate 9 +Suffocate 9 +Terminate 9 +Compensate 10 +Illustrate 10 +Interstate 10 +Magistrate 10 +Perpetrate 10 +Communicate 11 +Heavyweight 11 +Instantiate 11 +Interrogate 11 +Lightweight 11 +Orchestrate 11 +Hake 4 +Rake 4 +Intake 6 +Remake 6 +Retake 6 +Overtake 8 +Pane 4 +Vein 4 +Lane 4 +Deign 5 +Skein 5 +Crane 5 +Same 4 +Tame 4 +Name 4 +Blame 5 +Flame 5 +Shame 5 +Aflame 6 +Became 6 +Defame 6 +Rename 6 +Inflame 7 +Overcame 8 +Male 4 +Tale 4 +Pale 4 +Kale 4 +Sale 4 +Exhale 6 +Inhale 6 +Impale 6 +Regale 6 +Ape 3 +Pape 4 +Nap 3 +Cape 4 +Gape 4 +Tape 4 +Grape 5 +Drape 5 +Shape 5 +Fade 4 +Jade 4 +Made 4 +Blade 5 +Spade 5 +Glade 5 +Arcade 6 +Invade 6 +Degrade 7 +Upgrade 7 +Brigade 7 +Cascade 7 +Crusade 7 +Grenade 7 +Pervade 7 +Handmade 8 +Homemade 8 +Marinade 8 +Centigrade 10 +Save 4 +Crave 5 +Stave 5 +Concave 7 +Forgave 7 +Daze 4 +Craze 5 +Amaze 5 +Case 4 +Base 4 +Chase 5 +Deface 6 +Embrace 7 +Retrace 7 +Database 8 +Misplace 8 +Bookcase 8 +Displace 8 +Lower 5 +Interface 9 +Hyperspace 10 +Marketplace 11 +Babe 4 +Bade 4 +Bathe 5 +Lathe 5 +Hashtag 7 +Dude 4 +Gonna 5 +Silhouette 10 +Sarcasm 7 +Nope 4 +Yup 3 +Kinda 5 +Candid 6 +Foodie 6 +Chaotic 7 +Winsome 7 +Manifesto 9 +Martial 7 +Accrue 6 +Canon 5 +Vogue 5 +Subsidy 7 +Pathetic 8 +Congo 5 +Feminism 8 +Bae 3 +Hardo 5 +Statutory 9 +Webinar 7 +Blogs 5 +Resilience 10 +Genuine 7 +Throwback 9 +Metropolis 10 +Headhunting 11 +SAVVY 5 +Kudos 5 +Howdy 5 +Gotcha 6 +Browsing 8 +Stuffed 7 +Surfing 7 +Gesture 7 +Meme 4 +Photobomb 9 +Franchise 9 +Graffiti 8 +Netizen 7 +Kidding 7 +Chatty 6 +Douchey 7 +Bummer 6 +Laggy 5 +Blogosphere 11 +Fascism 7 +Doodle 6 +Montage 7 +Whimsy 6 +Gimme 5 +Savage 6 +Reimburse 9 +Crunk 5 +Racist 6 +Selfie 6 +Dute 4 +Accent 6 +Exonerate 9 +Ruthful 7 +Furlough 8 +Intransigence 13 +Anticlimactic 13 +Socialism 9 +Contumacious 12 +Twerk 5 +Census 6 +Pragmatic 9 +Hypocrite 9 +Bigot 5 +Paradigm 8 +Walmart 7 +Hotmail 7 +Overwatch 9 +Flights 7 +Deadpool 8 +Bitcoin 7 +Prodigy 7 +Spectrum 8 +Solitaire 9 +Audible 7 +Awesomesauce 12 +Hangry 6 +Manspreading 12 +Lookbook 8 +Crema 5 +Agender 7 +Flex 4 +Lowkey 6 +Salty 5 +Slay 4 +Stan 4 +Albeit 6 +Antarctic 9 +Asthma 6 +Anaesthetic 11 +Anaesthesia 11 +Anxious 7 +Autumn 6 +Balcony 7 +Bouquet 7 +Bury 4 +Cache 5 +Caffeine 8 +Cavalry 7 +Chaos 5 +Comparable 10 +Conscious 9 +Debt 4 +Delegate 8 +Despicable 10 +Dengue 6 +Dynasty 7 +Elite 5 +Endeavour 9 +Entrepreneur 12 +Epitome 7 +Espresso 8 +Extravaganza 12 +Facade 6 +Finale 6 +Garage 6 +Gauge 5 +Genre 5 +Grind 5 +Guerrilla 9 +Hosiery 7 +Hyperbole 9 +Infamous 8 +Innocent 8 +Irreparable 11 +Island 6 +Jewellery 9 +Leprosy 7 +Lieutenant 10 +Lingerie 8 +Magician 8 +Majestic 8 +Maple 5 +Margarine 9 +Mayonnaise 10 +Miscellaneous 13 +Mischievous 11 +Mischief 8 +Mishap 6 +Monk 4 +Mortgage 8 +Mystique 8 +Negotiate 9 +Niche 5 +Oasis 5 +Periphery 9 +Phenomenon 10 +Photographer 12 +Pyramid 7 +Refrigerator 12 +Reverence 9 +Realtor 7 +Rouge 5 +Salmon 6 +Salon 5 +Steak 5 +Stubborn 8 +Subtle 6 +Suite 5 +Suggestion 10 +Sweat 5 +Tomb 4 +Twilight 8 +Vague 5 +Vigorous 8 +Wednesday 9 +Whisk 5 +Wreckage 8 +Audi 4 +Chevrolet 9 +Ferrari 7 +Ford 4 +Mercedes 8 +Nissan 6 +Porsche 7 +Toyota 6 +Volkswagen 10 +Bentley 7 +Hyundai 7 +Jaguar 6 +Lamborghini 11 +Mercedes-Benz 13 +Renault 7 +Draught 7 +Psychologist 12 +FAR,FALL,FOE,FOOL,FAIL,FEEL,FILE 32 +GUARD,GOD,GOAD,GOON,GAIL,GEEK,GUY 33 +HARD,HALL,HOLE,HOOP,HAIL,HEAT,HI 32 +NASTY,NOT,NO,NOON,NAIL,NEAT,NIGHT 33 +CAR,COST,COAT,COOL,CAKE,KEEP,KITE 33 +Feel 4 +Love 4 +Knew 4 +Leave 5 +Be 2 +Meet 4 +See 3 +Seen 4 +Reach 5 +Called 6 +Try 3 +Eat 3 +Oh 2 +Gosh 4 +Awesome 7 +Sure 4 +Fired 5 +Soon 4 +Marvellous 10 +Cheers 6 +Bye 3 +Magnificent 11 +Professors 10 +Postponed 9 +Fighter 7 +Begun 5 +Planned 7 +Route 5 +Absent 6 +Started 7 +Begin 5 +Desks 5 +Lovely 6 +Composed 8 +Eaten 5 +Cleaned 7 +Taught 6 +Rained 6 +Directly 8 +Childhood 9 +Snowing 7 +Million 7 +Mention 7 +Introduce 9 +Clue 4 +Informal 8 +Beat 4 +Absolutely 10 +Exactly 7 +Contrary 8 +Congratulation 14 +Commitment 10 +Research 8 +Recommend 9 +Unemployed 10 +Freelance 9 +Engaged 7 +Divorced 8 +Quite 5 +Pardon 6 +Follow 6 +Sense 5 +Favor 5 +Interrupt 9 +Improvement 11 +Hang 4 +Unacceptable 12 +Satisfied 9 +Recollection 12 +Grocery 7 +Cinch 5 +Remind 6 +Breeze 6 +Tricky 6 +Ripe 4 +Browse 6 +Credit 6 +Starve 6 +Brought 7 +Remote 6 +Rerun 5 +Aisle 5 +Chilly 6 +Expect 6 +Drizzle 7 +Canceled 8 +Flight 6 +Mistaken 8 +Nail 4 +Encyclopedia 12 +Gifted 6 +Whiz 4 +Comment 7 +Business 8 +Inherited 9 +Dough 5 +Spike 5 +Peak 4 +Crime 5 +Plateau 7 +Psycho 6 +Yell 4 +Whisper 7 +Mumble 6 +Whine 5 +Ramble 6 +Stammer 7 +Snap 4 +Mutter 6 +Beam 4 +Positive 8 +Certain 7 +Convinced 9 +Bright 6 +Disappoint 10 +Letdown 7 +Expectation 11 +Hornet 6 +Lightning 9 +Sheet 5 +Mud 3 +Creep 5 +Sicko 5 +Scumbag 7 +Wasted 6 +Sorrow 6 +Designated 10 +Hangover 8 +Sloshed 7 +Plastered 9 +Puzzled 7 +Wince 5 +Injection 9 +Unreadable 10 +Offense 7 +Huff 4 +Overbook 8 +Seedy 5 +Mug 3 +Tourist 7 +Bargain 7 +Humid 5 +Downpour 8 +Exhausted 9 +Pooped 6 +Fumes 5 +Empty 5 +Promise 7 +Overslept 9 +Overdrawn 9 +Scraping 8 +Scrimp 6 +Wealthy 7 +Loaded 6 +Patient 7 +Consideration 13 +Changed 7 +Scared 6 +Goodness 8 +Worried 7 +Lifetime 8 +Surprised 9 +Fascinate 9 +Intrigue 8 +Bored 5 +Boredom 7 +Exaggeration 12 +Economical 10 +Outright 8 +Guess 5 +Hunch 5 +Yeah 4 +Nah 3 +Great 5 +Anytime 7 +Whatever 8 +Boring 6 +Calming 7 +Displaced 9 +Dumb 4 +Evil 4 +Feminine 8 +Fluffy 6 +I'll 4 +Moody 5 +Painted 7 +Peaceful 8 +Red 3 +Scarred 7 +Shocked 7 +Thin 4 +Vicious 7 +Weird 5 +Appreciated 11 +Bashful 7 +Bitter 6 +Burdened 8 +Delighted 9 +Depressed 9 +Devastated 10 +Disappointed 12 +Discouraged 11 +Disgust 7 +Ecstatic 8 +Embarrassed 11 +Enchanted 9 +Exhilarated 11 +Exposed 7 +Frightened 10 +Frustrated 10 +Heartbroken 11 +Helpless 8 +Hesitant 8 +Hopeful 7 +Hopeless 8 +Horrified 9 +Ignored 7 +Impatient 9 +Impressed 9 +Inadequate 10 +Incompetent 11 +Incredulous 11 +Inept 5 +Inhibited 9 +Inquisitive 11 +Insignificant 13 +Insulted 8 +Jaded 5 +Jolly 5 +Jovial 6 +Lonely 6 +Loved 5 +Merry 5 +Mystified 9 +Neglected 9 +Offended 8 +Outraged 8 +Pessimistic 11 +Pestered 8 +Petrified 9 +Pleased 7 +Reassured 9 +Reserved 8 +Resistant 9 +Revengeful 10 +Scorned 7 +Sheepish 8 +Solemn 6 +Stunned 7 +Stupid 6 +Tearful 7 +Tender 6 +Testy 5 +Threatened 10 +Ugly 4 +Unaccepted 10 +Uncomfortable 13 +Uplifted 8 +Used 4 +Violated 8 +Authorization 13 +Budget 6 +Confirmation 12 +Costs 5 +Deficit 7 +Employer 8 +Facilities 10 +Feedback 8 +Inventory 9 +Invoice 7 +Offer 5 +Order 5 +Output 6 +Payment 7 +Promotion 9 +Refund 6 +Result 6 +Rise 4 +Salary 6 +Appetizer 9 +Bistro 6 +Charge 6 +Fries 5 +Gourmet 7 +Grilled 7 +Hamburger 9 +Ingredients 11 +Ketchup 7 +Meal 4 +Cutlery 7 +Dine 4 +Spices 6 +Starters 8 +Utensils 8 +Tea 3 +Vegetables 10 +Waiter 6 +Stressed 8 +Mad 3 +Sympathetic 11 +Sleepy 6 +Rushed 6 +Restless 8 +Relieved 8 +Relaxed 7 +Infuriated 10 +Morose 6 +Mellow 6 +Jubilant 8 +Irritated 9 +Hyper 5 +Touring 7 +Excursion 9 +Traveler 8 +Commuting 9 +Sightseeing 11 +Voyager 7 +Ferrying 8 +Flying 6 +Sailing 7 +Roaming 7 +Walking 7 +Peripatetic 11 +Departing 9 +Accommodation 13 +Mobility 8 +Transiting 10 +Navigating 10 +Relocating 10 +Hiking 6 +Carriage 8 +Ridership 9 +Shuttle 7 +Outbound 8 +Siblings 8 +In-laws 7 +Grandfather 11 +Grandmother 11 +Uncle 5 +Sister-in-law 13 +Nephew 6 +Niece 5 +Granddaughter 13 +Daughter-in-law 15 +Stepmother 10 +Stepson 7 +Stepdaughter 12 +Stepsister 10 +Stepbrother 11 +Grandparents 12 +Masculine 9 +Brother-in-law 14 +Stepfather 10 +Showers 7 +Flood 5 +Hail 4 +Sleet 5 +Blizzard 8 +Hot 3 +Freezing 8 +Cloudy 6 +Foggy 5 +Blustery 8 +Windy 5 +Gale 4 +Hurricane 9 +Forecast 8 +Drought 7 +Thunder 7 +Adjective 9 +Conjunction 11 +Interjection 12 +Tense 5 +Phrases 7 +Singular 8 +Conditional 11 +Auxiliaries 11 +Clauses 7 +Mood 4 +Modifiers 9 +Narration 9 +Determiners 11 +Quantifiers 11 +Prefixes 8 +Suffixes 8 +Negation 8 +Transitive 10 +Intransitive 12 +Objects 7 +Uncountable 11 +Possessives 11 +Abel-able 9 +Accede-exceed 13 +Accept-except 13 +Addition-edition 16 +Adds-adz 8 +Affect-effect 13 +Affected-effected 17 +Ate-eight 9 +Ax-acts 7 +Axel-axle 9 +Axes-axis 9 +Aye-eye 7 +Ayes-eyes 9 +Baal-bail 9 +Bass-base 9 +Baste-based 11 +Bate-bait 9 +Bated-baited 12 +Bawl-ball 9 +Bear-bare 9 +Be-bee 6 +Been-bin 8 +Beer-bier 9 +Beet-beat 9 +Berry-bury 10 +Berth-birth 11 +Better-bettor 13 +Bib-bibb 8 +Bight-bite 10 +Blew-blue 9 +Break-brake 11 +Bury-berry 10 +Bussed-bust 11 +But-butt 8 +Buy-by 6 +Byte-bight 10 +Cache-cash 10 +Caddie-caddy 12 +Cain-cane 9 +Capitol-capital 15 +Ceiling-sealing 15 +Cheap-cheep 11 +Cheep-cheap 11 +Chews-choose 12 +Chic-sheik 10 +Click-clique 12 +Climb-clime 11 +Colonel-kernel 14 +Coolie-coulee 13 +Coop-coupe 10 +Cops-copse 10 +Coral-choral 12 +Cord-cored 10 +Core-corps 10 +Cored-chord 11 +Coughers-coffers 16 +Council-counsel 15 +Coup-coo 8 +Course-coarse 13 +Coward-cowered 14 +Coy-koi 7 +Cozen-cousin 12 +Craft-kraft 11 +Crape-crepe 11 +Crawl-kraal 11 +Creak-creek 11 +Crepe-crape 11 +Crewel-cruel 12 +Deer-dear 9 +Dense-dents 11 +Descent-dissent 15 +Desert-dessert 14 +Dew-do 6 +Dun-done 8 +Dye-die 7 +Dyeing-dying 12 +Fare-fair 9 +Fate-fete 9 +Faun-fawn 9 +Fax-facts 9 +Faze-phase 10 +Feat-feet 9 +Feet-feat 9 +Feint-faint 11 +Fends-fens 10 +Flour-flower 12 +Flower-flour 12 +Flow-floe 9 +Flu-flue-flew 13 +Flyer-flier 11 +Foaled-fold 11 +Fort-forte 10 +Four-for 8 +Grown-groan 11 +Hair-hare 9 +Hall-haul 9 +Has-bah 7 +Heal-heel 9 +Hell-belle 10 +Here-hear 9 +Horse-hoarse 12 +Hour-our 8 +I-eye 5 +Knew-new 8 +Knot-not 8 +Know-no 7 +Made-maid 9 +Main-mane 9 +Meet-meet 9 +Nose-knows 10 +One-won 7 +Pail-pale 9 +Pain-pane 9 +Pause-paws 10 +Peak-peek 9 +Pear-pair 9 +Red-read 8 +Right-write 11 +Cell-sell 9 +Cent-scent 10 +Idle-idol 9 +Yoke-yolk 9 +Road-rode 9 +Roe-row 7 +Review-revue 12 +Rest-wrest 10 +Rap-wrap 8 +Profit-prophet 14 +Pole-poll 9 +Ring-wring 10 +Roll-role 9 +Sees-seas 9 +Sew-so 6 +Some-sum 8 +Stair-stare 11 +Steak-stake 11 +Tale-tail 9 +Tea-tee 7 +Toe-tow 7 +Week-weak 9 +Ample 5 +Ancient 7 +Appointed 9 +Brief 5 +Due 3 +Elapsed 7 +First 5 +Last 4 +Later 5 +Ldle 4 +Lead 4 +Longest 7 +Mean 4 +More 4 +Much 4 +Next 4 +Precious 8 +Rapid 5 +Shortest 8 +Belated 7 +Restful 7 +Eon 3 +Era 3 +Triennium 9 +Angled 6 +Angular 7 +Annular 7 +Blurry 6 +Bulbous 7 +Bulgy 5 +Clean 5 +Closed 6 +Colossal 8 +Convex 6 +Cornered 8 +Crooked 7 +Curved 6 +Deep 4 +Diminutive 10 +Foursquare 10 +Giantlike 9 +Gigantic 8 +Gnarled 7 +High 4 +Horny 5 +Lengthy 7 +Low 3 +Mammoth 7 +Massive 7 +Midget 6 +Minuscule 9 +Oblique 7 +Plain 5 +Pointy 6 +Portly 6 +Rigid 5 +Scratchy 8 +Scrawny 7 +Screwed 7 +Skew 4 +Skewed 6 +Skinny 6 +Steep 5 +Straight 8 +Tapered 7 +Teeny 5 +Twisted 7 +Upright 7 +Vast 4 +Warped 6 +Affable 7 +Amiable 7 +Amicable 8 +Balanced 8 +Broad-minded 12 +Calm 4 +Communicative 13 +Compassionate 13 +Conscientious 13 +Considerate 11 +Convivial 9 +Determined 10 +Diligent 8 +Diplomatic 10 +Discreet 8 +Dynamic 7 +Easygoing 9 +Emotional 9 +Energetic 9 +Enthusiastic 12 +Exuberant 9 +Fair-minded 11 +Faithful 8 +Fearless 8 +Frank 5 +Friendly 8 +Gregarious 10 +Hard-working 12 +Helpful 7 +Honest 6 +Humorous 8 +Imaginative 11 +Impartial 9 +Intuitive 9 +Inventive 9 +Kind 4 +Loving 6 +Modest 6 +Neat 4 +Persistent 10 +Philosophical 13 +Pioneering 10 +Placid 6 +Plucky 6 +Polite 6 +Pro-active 10 +Quick-witted 12 +Romantic 8 +Self-confident 14 +Sensible 8 +Shy 3 +Sociable 8 +Thoughtful 10 +Tidy 4 +Willing 7 +Explicitly 10 +Specifically 12 +Markedly 8 +Truly 5 +Notably 7 +Besides 7 +Whereas 7 +Conversely 10 +Otherwise 9 +Unlike 6 +Comparatively 13 +Correspondingly 15 +Similarly 9 +Furthermore 11 +Additionally 12 +Identically 11 +Uniquely 8 +Effect 6 +Since 5 +For 3 +Consequently 12 +Thus 4 +Hence 5 +Also 4 +Comparably 10 +Moreover 8 +Too 3 +Alternatively 13 +Illustration 12 +While 5 +Meanwhile 9 +Admirable 9 +Amused 6 +Appreciative 12 +Astonishing 11 +Authentic 9 +Believable 10 +Cheery 6 +Comical 7 +Commendable 11 +Congenial 9 +Dedicated 9 +Delightful 10 +Devoted 7 +Earnest 7 +Elated 6 +Emphatic 8 +Exceptional 11 +Exultant 8 +Fortunate 9 +Heartfelt 9 +Honorable 9 +Keen 4 +Laughing 8 +Likable 7 +Lively 6 +Marvelous 9 +Noble 5 +Pleasing 8 +Pleasurable 11 +Proud 5 +Respectable 11 +Tremendous 10 +Trusty 6 +Virtuous 8 +Witty 5 +All 3 +An 2 +Any 3 +Anyone 6 +Anyplace 8 +Each-other 10 +Elsewhere 9 +Everyday 8 +Everyplace 10 +Everywhere 10 +Few 3 +Fewer 5 +Many 4 +Someday 7 +Sometime 8 +Someway 7 +Somewhat 8 +Somewhere 9 +Such 4 +Whichever 9 +Whoever 7 +Whomever 8 +Whomsoever 10 +Whosoever 9 +Causes 6 +Thereby 7 +Actually 8 +Indeed 6 +Significantly 13 +Definitely 10 +Obviously 9 +Clearly 7 +Importantly 11 +Admittedly 10 +Good-better-best 16 +Bad-worse-worst 15 +Little-less-least 17 +Many-more-most 14 +Far-farther-farthest 20 +Clever-cleverer-cleverest 25 +Narrow-narrower-narrowest 25 +Shallow-shallower-shallowest 28 +Gentle-gentler-gentlest 23 +Simple-simpler-simplest 23 +Happy-happier-happiest 22 +Lucky-luckier-luckiest 22 +Friendly-friendlier 19 +Heavy-heavier-heaviest 22 +Pretty-prettier-prettiest 25 +Noisy-noisier-noisiest 22 +Messy-messier-messiest 22 +Early-earlier-earliest 22 +Busy-busier-busiest 19 +Angry-angrier-angriest 22 +Large-larger-largest 20 +Wide-wider-widest 17 +Wise-wiser-wisest 17 +Tall-taller-tallest 19 +Short-shorter-shortest 22 +Fast-faster-fastest 19 +Slow-slower-slowest 19 +Big-bigger-biggest 18 +Small-smaller-smallest 22 +Strong-stronger-strongest 25 +Weak-weaker-weakest 19 +Old-older-oldest 16 +Young-younger-youngest 22 +Neat-neater-neatest 19 +Oily-oilier-oiliest 19 +Rare-rarer-rarest 17 +Risky-riskier-riskiest 22 +Rough-rougher-roughest 22 +Scary-scarier-scariest 22 +Shy-shyer-shyest 16 +Sincere-sincerer-sincerest 26 +Sore-sorer-sorest 17 +Thirsty-thirstier-thirstiest 28 +Wealthy-wealthier-wealthiest 28 +Wild-wilder-wildest 19 +Classy-classier-classiest 25 +Clumsy-clumsier-clumsiest 25 +Cruel-crueler-cruelest 22 +Curly-curlier-curliest 22 +Spicy-spicier-spiciest 22 +Sunny-sunnier-sunniest 22 +Attire-Dress 12 +Away-Absent 11 +Awful-Terrible 14 +Baby-Infant 11 +Beautiful-Pretty 16 +Becoming-Fitting 16 +Beg-Implore 11 +Begin-Commence 14 +Belly-Stomach 13 +Big-Large 9 +Bizarre-Weird 13 +Blank-Empty 11 +Brave-Bold 10 +Broad-Wide 10 +Bucket-Pail 11 +Busy-Active 11 +Calamity-Disaster 17 +Candy-Sweets 12 +Center-Middle 13 +Change-Transform 16 +Chiefly-Mainly 14 +Choosy-Picky 12 +Close-Shut 10 +Collect-Gather 14 +Complete-Total 14 +Confine-Restrict 16 +Confuse-Mixed Up 16 +Considerate-Thoughtful 22 +Contrary-Opposite 17 +Correct-Right 13 +Cunning-Clever 14 +Dash-Sprint 11 +Dedicated-Committed 19 +Deliberate-Planned 18 +Delicate-Fragile 16 +Destiny-Fate 12 +Disclose-Reveal 15 +Discount-Reduction 18 +Disgrace-Shame 14 +Eager-Keen 10 +Elevate-Raise 13 +Enormous-Huge 13 +Enquire-Investigate 19 +Evaluate-Assess 15 +Evil-Bad 8 +Exactly-Precisely 17 +Except-Apart 12 +Exit-Leave 10 +Extra-Additional 16 +Fair-Unbiased 13 +False-Untrue 12 +Famous-Renowned 15 +Fantastic-Great 15 +Fast-Quick 10 +Finish-Complete 15 +Formerly-Previously 19 +Fortunate-Lucky 15 +Fun -Entertaining 17 +Function-Operate 16 +Funny-Amusing 13 +Garbage-Trash 13 +Get-Receive 11 +Glad-Happy 10 +Glitter-Sparkle 15 +Good-Fine 9 +Grab-Seize 10 +Grumble-Grouse 14 +Hall-Corridor 13 +Happily-Fortunately 19 +Hard-Difficult 14 +Hazard-Danger 13 +Help-Assist 11 +Hint-Tip 8 +Huge-Enormous 13 +Hurt-Injure 11 +Hurry-Rush 10 +Ignore-Snub 11 +Ill-Sick 8 +Imitate-Mimic 13 +Immediate-Instantly 19 +Impact-Affect 13 +Impartial-Neutral 17 +Important-Significant 21 +Inconsiderate-Thoughtless 25 +Infamous-Notorious 18 +Infect-Contaminate 18 +Informal-Casual 15 +Above-below 11 +Absent-present 14 +Abundant-scarce 15 +Accept-decline 14 +Accurate-inaccurate 19 +Achieve-fail 12 +Add-subtract 12 +Adjacent-distant 16 +Admire-detest 13 +Admit-deny 10 +Adore-hate 10 +Advance-retreat 15 +Alert-asleep 12 +Alive-dead 10 +All-none 8 +Allow-forbid 12 +Alone-together 14 +Amateur-professional 20 +Always-never 12 +Amuse-bore 10 +Ancient-modern 14 +Answer-question 15 +Antonym-synonym 15 +Apart-together 14 +Apparent-obscure 16 +Appear-disappear 16 +Approve-disapprove 18 +Argue-agree 11 +Arrive-depart 13 +Arrogant-humble 15 +Artificial-natural 18 +Ascend-descend 14 +Attack-defend 13 +Attractive-repulsive 20 +Attract-repel 13 +Awake-asleep 12 +Awkward-graceful 16 +Back-front 10 +Backward-forward 16 +Bad-good 8 +Beautiful-ugly 14 +Before-after 12 +Below-above 11 +Best-worst 10 +Birth-death 11 +Bitter-sweet 12 +Black-white 11 +Blame-praise 12 +Bless-curse 11 +Bitter- sweet 13 +Blunt-sharp 11 +Build-destroy 13 +Busy-idle 9 +Calm-troubled 13 +Capable-incapable 17 +Captive-free 12 +Capture-release 15 +Centre-edge 11 +Cautious-careless 17 +Combine-separate 16 +Comfort-discomfort 18 +Compliment-insult 17 +Continue-interrupt 18 +Courage-cowardice 17 +Damage-improve 14 +Danger-safety 13 +Decrease-increase 17 +Deep-shallow 12 +Definite-indefinite 19 +Demand-supply 13 +Despair-hope 12 +Destroy-create 14 +Difficult-easy 14 +Dismal-cheerful 15 +Divide-unite 12 +Economise-waste 15 +Empty-full 10 +Encourage-discourage 20 +End-begin 9 +Entrance-exit 13 +Even-odd 8 +Evil-good 9 +Excited-calm 12 +Expand-contract 15 +Export-import 13 +Fade-brighten 13 +Famous-unknown 14 +Feeble-sturdy 13 +Fiction-fact 12 +Finish-start 12 +Found-lost 10 +Frank-secretive 15 +Fresh-stale 11 +Frequent-seldom 15 +Friend-enemy 12 +For-against 11 +Gather-distribute 17 +Generous-stingy 15 +Gentle-rough 12 +Get-give 8 +Gloomy-cheerful 15 +Grant-refuse 12 +Grow-shrink 11 +Guest-host 10 +Guilty-innocent 15 +Obedient-disobedient 20 +Occasionally-frequently 23 +Often-seldom 12 +Optimist-pessimist 18 +Peace-war 9 +Permit-forbid 13 +Plentiful-scarce 16 +Poverty-wealth 14 +Rare-common 11 +Rear-front 10 +Rude-courteous 14 +Satisfy-unsatisfied 19 +Seldom-often 12 +Scatter-collect 15 +Shrink-grow 11 +Sharp-blunt 11 +Vacant-occupied 15 +Valuable-valueless 18 +Vanish-appear 13 +Vast-tiny 9 +Victory-defeat 14 +Virtue-vice 11 +Voluntary-compulsory 20 +Wisdom-folly 12 +Within-outside 14 +Worse-better 12 +Young-old 9 +Zip-unzip 9 +Lifeboat 8 +Ferry 5 +Hovercraft 10 +Liner 5 +Sailboat 8 +Rowboat 7 +Seaplane 8 +Airship 7 +Automobile 10 +Minibus 7 +Tanker 6 +Van 3 +Rugby 5 +Soccer 6 +Squash 6 +Badminton 9 +Polo 4 +Cycling 7 +Gymnasium 9 +Paragliding 11 +Skydiving 9 +Abseiling 9 +Snowboarding 12 +Windsurfing 11 +Jet-skiing 10 +Bodyboarding 12 +Treadmill 9 +Judo 4 +Recreation 10 +Snooker 7 +Championship 12 +Accomplished 12 +Attentive 9 +Constructive 12 +Controversial 13 +Cooperative 11 +Achiever 8 +Committed 9 +Eclectic 8 +Exciting 8 +Facilitator 11 +Focused 7 +Forgiving 9 +Advisor 7 +Archer 6 +Banker 6 +Biologist 9 +Calligrapher 12 +Captain 7 +Composer 8 +Dancer 6 +Detective 9 +Economist 9 +Editor 6 +Engineer 8 +Fisherman 9 +Gardener 8 +Interpreter 11 +Journalist 10 +Laundress 9 +Lecturer 8 +Librarian 9 +Lyricist 8 +Mathematician 13 +Mayor 5 +Model 5 +Novelist 8 +Pediatrician 12 +Pharmacist 10 +Producer 8 +Programmer 10 +Radiologist 11 +Engineering 11 +Tech 4 +Computing 9 +Biotechnology 13 +Expertise 9 +Mobile 6 +Electronic 10 +Optical 7 +Apps 4 +Google 6 +Hi-tech 7 +Wired 5 +Emerging 8 +Shouted 7 +Asked 5 +Whispered 9 +Responded 9 +Remarked 8 +Demanded 8 +Questioned 10 +Replied 7 +Stated 6 +Exclaimed 9 +Seamless 8 +Structuring 11 +Aligned 7 +Measurable 10 +Architecture 12 +Positioning 11 +Sustained 9 +Budgeting 9 +Empowered 9 +Phenomena 9 +Disfunctions 12 +Isolation 9 +Frankness 9 +Appraisal 9 +Facilitation 12 +Alternatives 12 +Peers 5 +Evaluation 10 +Implications 12 +Testify 7 +Implementation 14 +Agonies 7 +Reinforce 9 +Investment 10 +Competencies 12 +Viable 6 +Eliminating 11 +Methodology 11 +Misunderstandings 17 +Socio-technical 15 +Characteristics 15 +Experimentation 15 +Institutionalizes 17 +Reengineered 12 +Alcohol 7 +Arc 3 +Barbs 5 +Bard 4 +Barn 4 +Berth 5 +Blah 4 +Box 3 +Burr 4 +Carbs 5 +Carve 5 +Cop 3 +Copy 4 +Cot 3 +Cur 3 +Curt 4 +Curve 5 +Fir 3 +Fur 3 +Gird 4 +Guard 5 +Her 3 +Herd 4 +Herpes 6 +Irk 3 +Knot 4 +Kurd 4 +Mob 3 +Palm 4 +Par 3 +Parched 7 +Parp 4 +Pert 4 +Purr 4 +Rocking 7 +Sharpener 9 +Stopped 7 +Surge 5 +Turps 5 +End 3 +Axe 3 +Ham 3 +Gem 3 +Pan 3 +Pat 3 +Dead 4 +Flesh 5 +Gnat 4 +Net 3 +Spanned 7 +Fad 3 +Gassed 6 +Guest 5 +Manned 6 +Mend 4 +Marry 5 +Sacks 5 +Tack 4 +Bland 5 +Cattle 6 +Deb 3 +Flax 4 +Flecks 6 +Frat 4 +Fret 4 +Rabble 6 +Rebel 5 +Tamp 4 +Temp 4 +Tread 5 +Vat 3 +Vet 3 +Gadget 6 +Wrath 5 +Hammock 7 +Gallant 7 +Panic 5 +Grasp 5 +Fanatic 7 +Patent 6 +Brag 4 +Canned 6 +Dazzle 6 +Parasite 8 +Adam 4 +Rack 4 +Hazard 6 +Havoc 5 +Parable 7 +Hatchery 8 +Applicable 10 +Cant 4 +Cap 3 +Cup 3 +Sang 4 +Sung 4 +Swum 4 +Buck 4 +Badge 5 +Budge 5 +Bug 3 +Bunk 4 +Bunker 6 +Brash 5 +Brush 5 +Cam 3 +Crash 5 +Dud 3 +Hung 4 +Massed 6 +Pun 3 +Rang 4 +Rung 4 +Sack 4 +Sucks 5 +Bung 4 +Cab 3 +Cub 3 +Cram 4 +Crumb 5 +Fanned 6 +Stank 5 +Tramps 6 +Trumps 6 +Bladder 7 +Blubber 7 +Hanker 6 +Hatch 5 +Patter 6 +Supper 6 +Scram 5 +Thrush 6 +Flair 5 +Heir 4 +Flare 5 +Hare 4 +Mare 4 +Pare 4 +Stare 5 +Their 5 +Ware 4 +Cry 3 +My 2 +Lime 4 +Rare 4 +Aeroplane 9 +Airmail 7 +Airless 7 +Aeronaut 8 +Airmobile 9 +Aerobridge 10 +Unfair 6 +Wary 4 +Carer 5 +Lair 4 +Daredevil 9 +Daycare 7 +Carious 7 +Glair 5 +Or 2 +Always 6 +Nor 3 +Oral 4 +Shortly 7 +Alright 7 +Yours 5 +Audience 8 +Fourth 6 +Discourse 9 +Automatic 9 +Audit 5 +Assault 7 +Shore 5 +Caution 7 +Tourism 7 +Jordan 6 +Fortnight 9 +Auction 7 +Autonomous 10 +Formidable 10 +Gall 4 +Import 6 +Stall 5 +Shaw 4 +Corpus 6 +Morse 5 +Consortium 10 +Altar 5 +Sore 4 +Plausible 9 +Organism 8 +Corpse 6 +Supporter 9 +Pastoral 8 +Lour 4 +Louse 5 +Lout 4 +Mahout 6 +Misdoubt 8 +Mound 5 +Mountainous 11 +Mountebank 10 +Mousetrap 9 +Mouthpiece 10 +Nous 4 +Ounce 5 +Ours 4 +Ourselves 9 +Oust 4 +Ouster 6 +Outbid 6 +Outcrop 7 +Outcry 6 +Outdo 5 +Outermost 9 +Outing 6 +Outlast 7 +Outlawry 8 +Outliner 8 +Outlive 7 +Outlook 7 +Outpost 7 +Outrage 7 +Outrageous 10 +Outrun 6 +Outset 6 +Outside 7 +Outsider 8 +Outskirt 8 +Outsource 9 +Outward 7 +Outwit 6 +Overpower 9 +Owl 3 +Owlish 6 +Ought 5 +Paramount 9 +Paramountcy 11 +Peafowl 7 +Penthouse 9 +Playground 10 +Playhouse 9 +Plough 6 +Ploughman 9 +Pounce 6 +Pound 5 +Pout 4 +Powder 6 +Powdery 7 +Powertrain 10 +Proudly 7 +Prow 4 +Prowess 7 +Prowl 5 +Readout 7 +Redoubt 7 +Redound 7 +Remount 7 +Renown 6 +Resound 7 +Bouncy 6 +Roundabout 10 +Roundel 7 +Roundworm 9 +Rouse 5 +Rout 4 +Scoundrel 9 +Shootout 8 +Shout 5 +Shroud 6 +Smokehouse 10 +Snout 5 +Sough 5 +Soundly 7 +Sourdough 9 +Soursop 7 +Southpaw 8 +Southside 9 +Spouse 6 +Spout 5 +Sprout 6 +Stout 5 +Surmount 8 +Thousandth 10 +Throughout 10 +Touchdown 9 +Tout 4 +Omelette 8 +Towhee 6 +Treehouse 9 +Trounce 7 +Trouser 7 +Trout 5 +Trowel 6 +Undoubted 9 +Undoubtedly 11 +Unsound 7 +Vouch 5 +Voucher 7 +Washout 7 +Wildfowl 8 +Willpower 9 +Woodhouse 9 +Council 7 +Society 7 +Only 4 +Financial 9 +Common 6 +Foreign 7 +Above 5 +Peter 5 +Deal 4 +Ensure 6 +Opposition 10 +Oxford 6 +Entirely 8 +Violence 8 +Entire 6 +Ideal 5 +Severe 6 +Diet 4 +Empire 6 +Inquiry 7 +Beer 4 +Junior 6 +Medium 6 +Wire 4 +Sheer 5 +Biological 10 +Convenient 10 +Appeal 6 +Diagnosis 9 +Dialogue 8 +Hierarchy 9 +Equilibrium 11 +Premier 7 +Fierce 6 +Supplier 8 +Bias 4 +Historian 9 +Criterion 9 +Compliance 10 +Irony 5 +Deer 4 +Sodium 6 +Convenience 11 +Burial 6 +Reliance 8 +Napoleon 8 +Superiority 11 +Diagnostic 10 +Dietary 7 +Diabetes 8 +Hierarchical 12 +Disappearance 13 +Diocese 7 +Tyre 4 +Proprietor 10 +Bacterial 9 +Pier 4 +Deviance 8 +Tedious 7 +Diabetic 8 +Homogeneous 11 +Secretariat 11 +Weir 4 +Desire 6 +Ion 3 +Notoriously 11 +Battalion 9 +Viability 9 +Fiery 5 +Pious 5 +Courier 7 +Biliary 7 +Remedial 8 +Peer 4 +Fieldwork 9 +Epithelium 10 +Median 6 +Eerie 5 +Austere 7 +Nausea 6 +Multiplier 10 +Idiom 5 +Parochial 9 +Hereby 6 +Souvenir 8 +Millennium 10 +Siren 5 +Filename 8 +Spire 5 +Utopia 6 +Nirvana 7 +Societal 8 +Moratorium 10 +Esquire 7 +Dialectic 9 +Pancreas 8 +Propriety 9 +Collier 7 +Envious 7 +Mediocre 8 +Theorist 8 +Firelight 9 +Joyous 6 +Disquiet 8 +Financier 9 +Hyacinth 8 +Genial 6 +Vial 4 +Requiem 7 +Weariness 9 +Aria 4 +Barium 6 +Diaphragm 9 +Reindeer 8 +Cavalier 8 +Materialist 11 +Bacterium 9 +Experiential 12 +Earshot 7 +Folio 5 +Unwieldy 8 +Nadir 5 +Rearguard 9 +Conveyor 8 +Deleterious 11 +Diabolical 10 +Sire 4 +Mire 4 +Dictatorial 11 +Diode 5 +Ethereal 8 +Imperious 9 +Delirium 8 +Physio 6 +Belvedere 9 +Chameleon 9 +Diphtheria 10 +Cyanide 7 +Conspiratorial 14 +Subcutaneous 12 +Injurious 9 +Suburbia 8 +Sundial 7 +Erroneously 11 +Retaliatory 11 +Bayonet 7 +Biomedical 10 +Chandelier 10 +Analgesia 9 +Saltire 7 +Disobedient 11 +Swire 5 +Aviary 6 +Dialog 6 +Yesteryear 10 +Meteorology 11 +Sneer 5 +Briar 5 +Diarist 7 +Palliative 10 +Veer 4 +Eros 4 +Fantasia 8 +Goliath 7 +Magisterial 11 +Matrilineal 11 +Backfire 8 +Quagmire 8 +Chimera 7 +Endear 6 +Uninspired 10 +Crossfire 9 +Earpiece 8 +Mere 4 +Patrilineal 11 +Teardrop 8 +Vestigial 9 +Copier 6 +Diastolic 9 +Annihilate 10 +Bio 3 +Grenadier 9 +Triennial 9 +Mirza 5 +Myopia 6 +Scion 5 +Weirdo 6 +Rapier 6 +Dalliance 9 +Funereal 8 +Prescient 9 +Amphibian 9 +Slayer 6 +Artemisia 9 +Collegial 9 +Meiosis 7 +Earache 7 +Retiral 7 +Sidereal 8 +Dietitian 9 +Firebrand 9 +Camellia 8 +Lias 4 +Steersman 9 +Friable 7 +Bacteriology 12 +Hieratic 8 +Playa 5 +Adiabatic 9 +Maniacal 8 +Gridiron 8 +Reification 11 +Beauteous 9 +Biophysical 11 +Privateer 9 +Centromere 10 +Dialectal 9 +Diamante 8 +Centennial 10 +Defilement 10 +Porteous 8 +Grammarian 10 +Plasmodium 10 +Apraxia 7 +Pretrial 8 +Sapient 7 +Diatomic 8 +Intaglio 8 +Deary 5 +Denarius 8 +Leer 4 +Myeloid 7 +Cyanosis 8 +Diabolic 8 +Dietetic 8 +Trialist 8 +Currier 7 +Espalier 8 +Imperialistic 13 +Denier 6 +Giantess 8 +Gladiolus 9 +Poinsettia 10 +Quotidian 9 +Dearborn 8 +Glacially 9 +Neophobia 9 +Dinosaurian 11 +Jeer 4 +Labium 6 +Notarial 8 +Pietism 7 +Usurious 8 +Aporia 6 +Ataxia 6 +Meridional 10 +Mysterium 9 +Quietist 8 +Uncoil 6 +Bandolier 9 +Baobab 6 +Biotin 6 +Cochlea 7 +Contrariety 11 +Destrier 8 +Diapason 8 +Flyable 7 +Melodeon 8 +Varietal 8 +Biologic 8 +Feria 5 +Alternative 11 +Murder 6 +Perfectly 9 +Rarely 6 +Framework 9 +Firmly 6 +Earl 4 +Turkey 6 +Uncertain 9 +Virtue 6 +Nursery 7 +Firstly 7 +Sterling 8 +Circulation 11 +Worthwhile 10 +Merger 6 +Verse 5 +Reserve 7 +Clergy 6 +Certainty 9 +Server 6 +Diverse 7 +Nerve 5 +Emergence 9 +Turner 6 +Girlfriend 10 +Preservation 12 +Assertion 9 +Disturbance 11 +Referral 8 +Urge 4 +Thirteenth 10 +Turmoil 7 +Turbulent 9 +Infirmary 9 +Paperwork 9 +Curvature 9 +Watercolour 11 +Divert 6 +Perverse 8 +Insertion 9 +Stern 5 +Spur 4 +Burgess 7 +Tertiary 8 +Confer 6 +Imperfect 9 +Modernity 9 +Coercion 8 +Subversive 10 +Leisurely 9 +Infer 5 +Burglar 7 +Assertive 9 +Innumerable 11 +Preferential 12 +Cervical 8 +Murmur 6 +Inert 5 +Discernible 11 +Divergence 10 +Furnace 7 +Discursive 10 +Chauffeur 9 +Uncertainly 11 +Persona 7 +Absurdity 9 +Earnestly 9 +Serpent 7 +Precursor 9 +Worldly 7 +Disperse 8 +Merchandise 11 +Superfluous 11 +Inverse 7 +Alternately 11 +Kerb 4 +Fern 4 +Indeterminate 13 +Nocturnal 9 +Affirmation 11 +Avert 5 +Permeability 12 +Workmanship 11 +Permanence 10 +Birdie 6 +Absurdly 8 +Fervent 7 +Rehearse 8 +Mercantile 10 +Furry 5 +Interminable 12 +Determinism 11 +Mirth 5 +Burly 5 +Rebirth 7 +Cursory 7 +Proverbial 10 +Conservancy 11 +Foreword 8 +Guernsey 8 +Merlin 6 +Impervious 10 +Thirtieth 9 +Desertion 9 +Furtive 7 +Scourge 7 +Werewolf 8 +Birk 4 +Affirmative 11 +Averse 6 +Exuberance 10 +Fraternal 9 +Purge 5 +Circuitry 9 +Earthy 6 +Virtuoso 8 +Bourbon 7 +Inferno 7 +Lurk 4 +Whirlpool 9 +Footwork 8 +Purgatory 9 +Searcher 8 +Turntable 9 +Mercilessly 11 +Tern 4 +Girdle 6 +Hearse 6 +Skirmish 8 +Urchin 6 +Urn 3 +Sojourn 7 +Vermin 6 +Permeate 8 +Perpetrator 11 +Urbane 6 +Girth 5 +Handiwork 9 +Turban 6 +Myrtle 6 +Curb 4 +Conversant 10 +Quaternary 10 +Smirk 5 +Curlew 6 +Inadvertent 11 +Astern 6 +Ere 3 +Oeuvre 6 +Preferentially 14 +Furtively 9 +Impertinent 11 +Ermine 6 +Perjury 7 +Servitude 9 +Cursive 7 +Disservice 10 +Turgid 6 +Insurgency 10 +Corsair 7 +Nervy 5 +Churn 5 +Surreptitious 13 +Journeyman 10 +Usurp 5 +Perky 5 +Circuitous 10 +Med 3 +Blurb 5 +Mercenary 9 +Secateurs 9 +Indenture 9 +Nurture 7 +Praiseworthy 12 +Adverbial 9 +Dermatitis 10 +Girder 6 +Serf 4 +Squirt 6 +Surfeit 7 +Turpentine 10 +Verdant 7 +Coerce 6 +Vermilion 9 +Worshipful 10 +Fatherhood 10 +Herbivorous 11 +Infernal 8 +Turnip 6 +Varna 5 +Squirm 6 +Swerve 6 +Wort 4 +Chirpy 6 +Encircle 8 +Verbatim 8 +Deferment 9 +Flirt 5 +Germane 7 +Inestimable 11 +Kern 4 +Perchance 9 +Vertex 6 +Whirl 5 +Headword 8 +Sternum 7 +Unerring 8 +Excerpt 7 +Pergola 7 +Submerge 8 +Termite 7 +Voyeur 6 +Sturgeon 8 +Wordy 5 +Deserter 8 +Schoolwork 10 +Unfurnished 11 +Confirmatory 12 +Dirge 5 +Say 3 +Main 4 +Range 5 +Basis 5 +Change 6 +Maybe 5 +Basic 5 +Campaign 8 +Organisation 12 +Aid 3 +Mainly 6 +Pain 4 +Claim 5 +Safe 4 +Train 5 +Strange 7 +Break 5 +Female 6 +Daily 5 +Maintain 8 +Waste 5 +Conversation 12 +Aim 3 +Generation 10 +Examination 11 +Enable 6 +Creation 8 +Explanation 11 +Obtain 6 +Contain 7 +Agent 5 +Formation 9 +Rail 4 +Compensation 12 +Basically 9 +Sake 4 +Phrase 6 +Ratio 5 +Chamber 7 +Variation 9 +Replacement 11 +Consultation 12 +Conservation 12 +Retain 6 +Taxation 8 +Imagination 11 +Grace 5 +Persuade 8 +Indication 10 +Occupation 10 +Obligation 10 +Baker 5 +Resignation 11 +Namely 6 +Federation 10 +Strain 6 +Ray 3 +Declaration 11 +Eighteenth 10 +Discrimination 14 +Generate 8 +Invasion 8 +Demonstration 13 +Duration 8 +Complaint 9 +Champagne 9 +Grain 5 +Reign 5 +Justification 13 +Undertake 9 +Simultaneously 14 +Transformation 14 +Radiation 9 +Innovation 10 +Safely 6 +Domain 6 +Adjacent 8 +Delegation 10 +Ace 3 +Exploration 11 +Operator 8 +Naval 5 +Flavour 7 +Matrix 6 +Racial 6 +Faint 5 +Translation 11 +Bacon 5 +Correlation 11 +Sensation 9 +Fatal 5 +Collaboration 13 +Waist 5 +Tray 4 +Migration 9 +Implication 11 +Installation 12 +Raid 4 +Pavement 8 +Eighth 6 +Sacred 6 +Painter 7 +Basin 5 +Documentation 13 +Grave 5 +Saint 5 +Patience 8 +Relaxation 10 +Praise 6 +Rage 4 +Renaissance 11 +Valuation 9 +Salvation 9 +Restraint 9 +Trace 5 +Hay 3 +Lace 4 +Eliminate 9 +Jail 4 +Evaluate 8 +Immigration 11 +Calculation 11 +Temptation 10 +Modification 12 +Bailey 6 +Ashamed 7 +Mainland 8 +Vegetation 10 +Spontaneous 11 +Facilitate 10 +Hatred 6 +Confrontation 13 +Maker 5 +Liaison 7 +Aviation 8 +Freight 7 +Drainage 8 +Strangely 9 +Daylight 8 +Mason 5 +Admiration 10 +Revelation 10 +Attainment 10 +Capability 10 +Domination 10 +Maid 4 +Membrane 8 +Patronage 9 +Slave 5 +Potato 6 +Manipulation 12 +Papal 5 +Deprivation 11 +Litigation 10 +Bass 4 +Container 9 +Dame 4 +Coronation 10 +Indicator 9 +Creativity 10 +Lately 6 +Legislature 11 +Hastily 7 +Vacant 6 +Basement 8 +Continuation 12 +Radioactive 11 +Bail 4 +Rotation 8 +Adaptation 10 +Patron 6 +Surveillance 12 +Cultivation 11 +Deterioration 13 +Hazel 5 +Mosaic 6 +Reconciliation 14 +Proliferation 13 +Anticipate 10 +Dale 4 +Plainly 7 +Faintly 7 +Unstable 8 +Paisley 7 +Vale 4 +Administrator 13 +Alteration 10 +Sustainable 11 +Probation 9 +Radar 5 +Painfully 9 +Latent 6 +Weigh 5 +Radius 6 +Blaze 5 +Constraint 10 +Spacious 8 +Haven 5 +Contamination 13 +Fascination 11 +Hesitation 10 +Trainee 7 +Dedication 10 +Authoritative 13 +Cater 5 +Imitation 9 +Donation 8 +Drain 5 +Bin 3 +Chip 4 +It 2 +Did 3 +Is 2 +Ease 4 +Mitt 4 +Meat 4 +Stil 4 +Itch 4 +Gin 3 +Gene 4 +Greed 5 +Hid 3 +Heed 4 +Kip 3 +Keep 4 +Knit 4 +Lip 3 +Leap 4 +Mill 4 +Piece 5 +Risen 5 +Sin 3 +Steel 5 +Teen 4 +Bid 3 +Bead 4 +Biz 3 +Cheat 5 +Fist 4 +Feast 5 +Fizz 4 +Fees 4 +Keyed 5 +Peel 4 +Pip 3 +Peep 4 +Peace 5 +Sill 4 +Sim 3 +Seem 4 +Skid 4 +Skied 5 +Skim 4 +Scheme 6 +Teal 4 +Tizz 4 +Teas 4 +Orphan 6 +Orphanage 9 +Orrery 6 +Orthodontics 12 +Orthodox 8 +Orthographic 12 +Orthography 11 +Oscillate 9 +Osprey 6 +Ostensible 10 +Ostinato 8 +Ostracism 9 +Otter 5 +Outsell 7 +Overplay 8 +Overreact 9 +Ovulation 9 +Oxalic 6 +Oxymoron 8 +Oxide 5 +Oxytocin 8 +Oyster 6 +Almighty 8 +Alter 5 +Arbiter 7 +Arbitral 8 +Already 7 +Alms 4 +Arid 4 +Ardent 6 +Argent 6 +Argot 5 +Argyle 6 +Armada 6 +Artful 6 +Pure 4 +Coalition 9 +Jury 4 +Mature 6 +Maturity 8 +Bureaucracy 11 +Conceptual 10 +Cure 4 +Fury 4 +Assure 6 +Obscure 7 +Purity 6 +Residual 8 +Furiously 9 +Durable 7 +Obituary 8 +Insure 6 +Coward 6 +Endurance 9 +Fluorescent 11 +Procurement 11 +Spurious 8 +Curate 6 +Gruelling 9 +Surety 6 +Contour 7 +Detour 6 +Overture 8 +Lure 4 +Dowager 7 +Liqueur 7 +Procure 7 +Furore 6 +Debenture 9 +Cowan 5 +Dour 4 +Cowardice 9 +Cowardly 8 +Zoological 10 +Incurable 9 +Rowan 5 +Azure 5 +Deciduous 9 +Buoyant 7 +Coinage 7 +Convoy 6 +Cowboy 6 +Devoid 6 +Embroidery 10 +Envoy 5 +Flamboyant 10 +Foyer 5 +Groin 5 +Oily 4 +Paranoid 8 +Poignant 8 +Rejoice 7 +Viewpoint 9 +Voyage 6 +Hood 4 +Locker 6 +Soot 4 +Bookie 6 +Crooks 6 +Stood 5 +Moon 4 +Hug 3 +Rude 4 +June 4 +Tulip 5 +Duty 4 +Decency 7 +Authenticity 12 +Fortitude 9 +Hindsight 9 +Self-made 9 +Ultima 6 +Gesticulate 11 +Sober 5 +Abridge 7 +Admit 5 +Arrogant 8 +Boundless 9 +Combine 7 +Forgivable 10 +Restricted 10 +Harmless 8 +Educated 8 +Unimportant 11 +Instructor 10 +Injustice 9 +Industrious 11 +Plentiful 9 +Poverty 7 +Criticism 9 +Strengthen 10 +Tolerant 8 +Unqualified 11 +Recency 7 +Monocracy 9 +Defendant 9 +Facepalm 8 +Anathema 8 +Deteriorate 11 +Explicit 8 +Exponentially 13 +February 8 +Isthmus 7 +Sixth 5 +Synecdoche 10 +Accede 6 +Alias 5 +Anemone 7 +Apocryphal 10 +Camaraderie 11 +Colloquialism 13 +Debauch 7 +Demagogue 9 +Espouse 7 +Fatuous 7 +Forte 5 +Inchoate 8 +Hegemony 8 +Knell 5 +Neophyte 8 +Noisome 7 +Panacea 7 +Protean 7 +Puerile 7 +Quixotic 8 +Sanguine 8 +Staid 5 +Timbre 6 +Truculent 9 +Conch 5 +Faux 4 +Ignominious 11 +Posthumous 10 +Abject 6 +Aberration 10 +Abjure 6 +Abrogate 8 +Abscond 7 +Abstruse 8 +Accost 6 +Accretion 9 +Acumen 6 +Adamant 7 +Admonish 8 +Adumbrate 9 +Adverse 7 +Advocate 8 +Affluent 8 +Alacrity 8 +Amorphous 9 +Anachronistic 13 +Annex 5 +Apathetic 9 +Antithesis 10 +Arboreal 8 +Arcane 6 +Arrogate 8 +Aspersion 9 +Assiduous 9 +Atrophy 7 +Bane 4 +Beguile 7 +Bereft 6 +Blandishment 12 +Bilk 4 +Cajole 6 +Callous 7 +Calumny 7 +Candor 6 +Capitulate 10 +Carouse 7 +Carp 4 +Caucus 6 +Cavort 6 +Circumvent 10 +Clamor 6 +Cleave 6 +Cobbler 7 +Cogent 6 +Cognizant 9 +Commensurate 12 +Compunction 11 +Connive 7 +Consign 7 +Constituent 11 +Construe 8 +Contusion 9 +Contrite 8 +Contentious 11 +Contravene 10 +Corpulence 10 +Covet 5 +Cupidity 8 +Dearth 6 +Debacle 7 +Debunk 6 +Defunct 7 +Derivative 10 +Despot 6 +Diaphanous 10 +Didactic 8 +Disaffected 11 +Discomfit 9 +Divisive 8 +Dogmatic 8 +Edict 5 +Ebullient 9 +Elegy 5 +Elicit 6 +Emend 5 +Emollient 9 +Empirical 9 +Enervate 8 +Enfranchise 11 +Ephemeral 9 +Epistolary 10 +Evince 6 +Exacerbate 10 +Exhort 6 +Execrable 9 +Exigent 7 +Expedient 9 +Expiate 7 +Expunge 7 +Extraneous 10 +Fallacious 10 +Flagrant 8 +Gourmand 8 +Gratuitous 10 +Impetuous 9 +Impinge 7 +Inane 5 +Incumbent 9 +Inimical 8 +Injunction 10 +Inoculate 9 +Insidious 9 +Instigate 9 +Interlocutor 12 +Insurgent 9 +Inure 5 +Inveterate 10 +Irreverence 11 +Laconic 7 +Libertarian 11 +Licentious 10 +Litigant 8 +Maelstrom 9 +Maudlin 7 +Maverick 8 +Mawkish 7 +Modicum 7 +Morass 6 +Mores 5 +Munificent 10 +Multifarious 12 +Negligent 9 +Noxious 7 +Obdurate 8 +Obfuscate 9 +Officious 9 +Onerous 7 +Palliate 8 +Partisan 8 +Penurious 9 +Pernicious 10 +Pertinacious 12 +Philanthropic 13 +Plaudit 7 +Plenitude 9 +Presage 7 +Probity 7 +Proclivity 10 +Profligate 10 +Promulgate 10 +Proscribe 9 +Prurient 8 +Trundling 9 +Sight 5 +Mounds 6 +Frosty 6 +Flew 4 +Senses 6 +Sniffing 8 +Jaggery 7 +Realism 7 +Keenly 6 +Moderate 8 +Folk 4 +Clues 5 +Brinjal 7 +Nectar 6 +Beliefs 7 +Droughts 8 +Disasters 9 +Floods 6 +Sunset 6 +Celestial 9 +Planets 7 +Choral 6 +Spontaneity 11 +Compassion 10 +Honeycomb 9 +Nutrient 8 +Magnifying 10 +Entangled 9 +Lichens 7 +Scribe 6 +Coastal 7 +Foreigner 9 +Persian 7 +Biotic 6 +Pollute 7 +Employers 9 +Inequality 10 +Anecdotes 9 +Seeds 5 +Crop 4 +Silo 4 +Sowing 6 +Viceroy 7 +Precisely 9 +Scottish 8 +Territories 11 +Terrain 7 +Altitude 8 +Extract 7 +Shortage 8 +Destiny 7 +Dominant 8 +Excluded 8 +Autonomy 8 +Crinkly 7 +Attic 5 +Geared 6 +Loftily 7 +Tucked 6 +Beaker 6 +Crystals 8 +Dissolve 8 +Kinetic 7 +Diffusion 9 +Nazism 6 +Sought 6 +Waged 5 +Battle 6 +Taille 6 +Tropic 6 +Taper 5 +Meridian 8 +Maritime 8 +Irrigation 10 +Robe 4 +Aridity 7 +Dictators 9 +Referendum 10 +Monarchies 10 +Malpractice 11 +Constitution 12 +Journalists 11 +Autocratic 10 +Arguments 9 +Imprisonment 12 +Apartheid 9 +Cluster 7 +Maze 4 +Scraps 6 +Sternly 7 +Ground 6 +Tempting 8 +Recognised 10 +Faintest 8 +Guarding 8 +Mosquitoes 10 +Vultures 8 +Peasant 7 +Flock 5 +Cruelty 7 +Lingering 9 +Recite 6 +Britches 8 +Trousers 8 +Wrinkled 8 +Dishcloth 9 +Pulses 6 +Mustard 7 +Groundnut 9 +Soybean 7 +Sprouts 7 +Beehive 7 +Tributaries 11 +Subcontinent 12 +Conquering 10 +Caravans 8 +Frontiers 9 +Emit 4 +Satellite 9 +Ultimate 8 +Asteroids 9 +Elongated 9 +Bending 7 +Pitied 6 +Forgiveness 11 +Awoke 5 +Debaters 8 +Incident 8 +Chlorophyll 11 +Stomata 7 +Symbiosis 9 +Historians 10 +Archives 8 +Libraries 9 +Conquests 9 +Patrons 7 +Abiotic 7 +Modifying 9 +Ecosystem 9 +Barter 6 +Matrimonial 11 +Provisions 10 +Prejudices 10 +Trenches 8 +Generously 10 +Unwillingly 11 +Dugouts 7 +Entitled 8 +Lopsided 8 +Climatic 8 +Humidity 8 +Loosened 8 +Microbes 8 +Earthworms 10 +Tilling 7 +Implements 10 +Sprinkler 9 +Fascinated 10 +Synonymous 10 +Kingdoms 8 +Personalities 13 +Chronology 10 +Remedies 8 +Renewable 9 +Unlimited 9 +Replenished 11 +Abolishing 10 +Elaborates 10 +Misusing 8 +Unhealthy 9 +Tyranny 7 +Colonial 8 +Awfully 7 +Scornful 8 +Sorrowfully 11 +Nonchalantly 12 +Diverged 8 +Trodden 7 +Approximately 13 +Diluting 8 +Gaseous 7 +Nostrils 8 +Equality 8 +Monarchy 8 +Notions 7 +Rethought 9 +Peasants 8 +Soviet 6 +Massacres 9 +Civilisation 12 +Southeast 9 +Southwest 9 +Coastline 9 +Latitudinal 11 +Longitudinal 12 +Interrogated 12 +Arrested 8 +Tortured 8 +Denied 6 +Hereditary 10 +Judges 6 +Restrictions 12 +Massacre 8 +Turbines 8 +Pesticides 10 +Threshers 9 +Harvesting 10 +Depletion 9 +Degradation 11 +Adequate 8 +Insecticides 12 +Feudal 6 +Regime 6 +Treatises 9 +Slaves 6 +Hoop 4 +Passes 6 +Dolphins 8 +Baton 5 +Tribes 6 +Sloth 5 +Tusks 5 +Wolves 6 +Darted 6 +Proteins 8 +Scurvy 6 +Fibres 6 +Squeeze 7 +Hunted 6 +Perennial 9 +Buddha 6 +Bulge 5 +Axis 4 +Meridians 9 +Protested 9 +Emblem 6 +Descended 9 +Whizzing 8 +Stumbled 8 +Amoeba 6 +Canine 6 +Glycerol 8 +Rumen 5 +Revenue 7 +Acquisition 11 +Sultan 6 +Mantle 6 +Ocean 5 +Mineral 7 +Interior 8 +Queue 5 +Generic 7 +Tsunami 7 +Deflated 8 +Sprang 6 +Vaccine 7 +Yeast 5 +Polio 5 +Fertility 9 +Reluctant 9 +Venture 7 +Diversity 9 +Organic 7 +Rugged 6 +Susceptible 11 +Context 7 +Exclusion 9 +Jostle 6 +Slight 6 +Recital 7 +Tryst 5 +Frail 5 +Copper 6 +Solvent 7 +Rallied 7 +Duma 4 +Exiled 6 +Glaciers 8 +Alluvium 8 +Swampy 6 +Chores 6 +Outlay 6 +Striking 8 +Skeletons 9 +Segregation 11 +Protest 7 +Preamble 8 +Undemocratic 12 +Determination 13 +Partition 9 +Traumatic 9 +Fuss 4 +Muttered 8 +Winding 7 +Flapped 7 +Pretend 7 +Leafy 5 +Sparkling 9 +Gurgled 7 +Panicked 8 +Poachers 8 +Aniseed 7 +Sniffed 7 +Faithfully 10 +Ancestor 8 +Fats 4 +Minerals 8 +Nutrients 9 +Roughage 8 +Vitamins 8 +Palaeolithic 12 +Microliths 10 +Grasslands 10 +Ripened 7 +Latitudes 9 +Exosphere 9 +Equator 7 +Generosity 10 +Blistered 9 +Gleaming 8 +Tightening 10 +Beamed 6 +Upsetting 9 +Groaned 7 +Incisor 7 +Ingestion 9 +Cavity 6 +Premolar 8 +Ruminant 8 +Salivary 8 +Saliva 6 +Demarcated 10 +Warfare 7 +Tripartite 10 +Splendid 8 +Inscriptions 12 +Boundary 8 +Concentric 10 +Uppermost 9 +Hopscotch 9 +Molten 6 +Magma 5 +Humankind 9 +Prescribed 10 +Ultrasound 10 +Practitioners 13 +Amenities 9 +Whirlpools 10 +Hysterical 10 +Withstood 9 +Eyewitness 10 +Carcasses 9 +Normalcy 8 +Haphazard 9 +Delineated 10 +Carrier 7 +Fermentation 12 +Fungi 5 +Lactobacillus 13 +Medieval 8 +Charter 7 +Granting 8 +Cardamom 8 +Vitality 8 +Maize 5 +Topography 10 +Habitable 9 +Uninhabited 11 +Persecution 11 +Intervene 9 +Inheritance 11 +Mechanism 9 +Solitude 8 +Maestro 7 +Souvenirs 9 +Celluloid 9 +Conferred 9 +Coveted 7 +Filtration 10 +Solubility 10 +Canopy 6 +Centrifugation 14 +Naphthalene 11 +Metalloids 10 +Casualties 10 +Emphasise 9 +Curfew 6 +Ransacked 9 +Mutinied 8 +Satiated 8 +Condemned 9 +Banditry 8 +Nomadism 8 +Confiscated 11 +Deported 8 +Stature 7 +Provinces 9 +Asymmetrical 12 +Calcareous 10 +Crystalline 11 +Rejuvenate 10 +Parliamentary 13 +Philosophy 10 +Strive 6 +Thralldom 9 +Untouchability 14 +Suppressed 10 +Expectancy 10 +Upbringing 10 +Aspiration 10 +Tenderness 10 +Catalytic 9 +Meticulously 12 +Stagnant 8 +Inhabited 9 +Stitching 9 +Tailoring 9 +Chased 6 +Bolder 6 +Served 6 +Savages 7 +Dizzy 5 +Churns 6 +Chopped 7 +Pitcher 7 +Shivering 9 +Nightfall 9 +Fibre 5 +Synthetic 9 +Fleece 6 +Looms 5 +Citadel 7 +Ruler 5 +Orbital 7 +Equinox 7 +Smearing 8 +Cracked 7 +Laziness 8 +Shearing 8 +Silkworm 8 +Pupa 4 +Yield 5 +Rebellion 9 +Frontier 8 +Tripod 6 +Dunes 5 +Glacial 7 +Mushroom 8 +Streams 7 +Legislative 11 +Epidemic 8 +Essence 7 +Massacred 9 +Animated 8 +Depravity 9 +Trickster 9 +Nylon 5 +Humiliate 9 +Reinforced 10 +Resorted 8 +Fodder 6 +Sparsely 8 +Landslides 10 +Preceding 9 +Initiate 8 +Fainter 7 +Spectacles 10 +Yawned 6 +Snoring 7 +Proust 6 +Argon 5 +Helium 6 +Valency 7 +Allies 6 +Recast 6 +Frantic 7 +Imprint 7 +Ghettos 7 +Devastation 11 +Riverbed 8 +Abatement 9 +Luxury 6 +Toiling 7 +Ebbing 6 +Overwhelmingly 14 +Representatives 15 +Disunity 8 +Factionalism 12 +Electoral 9 +Incentives 10 +Raise 5 +Deprived 8 +Wandered 8 +Prayed 6 +Footmark 8 +Alongside 9 +Digestive 9 +Judgement 9 +Glucose 7 +Vomiting 8 +Patients 8 +Greedily 8 +Intended 8 +Knitting 8 +Mufflers 8 +Curtains 8 +Wicks 5 +Mattresses 10 +Quilts 6 +Ginning 7 +Archaeologists 14 +Imperishable 12 +Illumination 12 +Inclination 11 +Diamonds 8 +Mystical 8 +Floorboards 11 +Scouring 8 +Sorting 7 +Processing 10 +Mulberry 8 +Distinctions 12 +Garrison 8 +Hinterland 10 +Habitat 7 +Chieftains 10 +Erosional 9 +Destruction 11 +Organisms 9 +Communist 9 +Exaggerating 12 +Sanitation 10 +Fortunes 8 +Discontent 10 +Correspond 10 +Uncombed 8 +Polyester 9 +Polymer 7 +Polythene 9 +Materials 9 +Atom 4 +Sovereignty 11 +Annexation 10 +Interfering 11 +Subservience 12 +Sandalwood 10 +Confederacy 11 +Muskets 7 +Reclamation 11 +Afforestation 13 +Landforms 9 +Weathering 10 +Mulching 8 +Nationalists 12 +Functioning 11 +Immense 7 +Nominated 9 +Progressive 11 +Legislation 11 +Laboriously 11 +Clung 5 +Sobbed 6 +Snuggled 8 +Hover 5 +Melancholy 10 +Shingles 8 +Ammonia 7 +Nitrogen 8 +Sulphur 7 +Magnesium 9 +Molecular 9 +Glorified 9 +Humiliation 11 +Crippled 8 +Mockingly 9 +Deplete 7 +Reparation 10 +Cartloads 9 +Ritualize 9 +Gypsies 7 +Jungvolk 8 +Condemn 7 +Sullied 7 +Metamorphic 11 +Confluence 10 +Picturesque 11 +Atmospheric 11 +Slogans 7 +Allegations 11 +Rigging 7 +Enthusiasm 10 +Hispanic 8 +Barring 7 +Calorie 7 +Revised 7 +Surveys 7 +Dynamics 8 +Handloom 8 +Widowed 7 +Measures 8 +Disparities 11 +Investments 11 +Spoilt 6 +Fungus 6 +Coriander 9 +Unripe 6 +Pickles 7 +Woven 5 +Naturalised 11 +Insoluble 9 +Material 8 +Opaque 6 +Soluble 7 +Veda 4 +Hymn 4 +Megalith 8 +Skeletal 8 +Flatten 7 +Map 3 +Plateaus 8 +Oceans 6 +Confidence 10 +Clinical 8 +Insulator 9 +Mercury 7 +Contrast 8 +Genealogy 9 +Pictorially 11 +Throne 6 +Radiated 8 +Courtyard 9 +Purposeful 10 +Nuisance 8 +Appetite 8 +Litmus 6 +Witnesses 9 +Numerous 8 +Oppressive 10 +Coercive 8 +Cleanser 8 +Runoff 6 +Irrigating 10 +Seepage 7 +Evaporation 11 +Activists 9 +Petition 8 +Custody 7 +Pupil 5 +Stifled 7 +Veils 5 +Ally 4 +Deflected 9 +Fencing 7 +Rutherford 10 +Fluorine 8 +Bugyal 6 +Rabi 4 +Stubble 7 +Herbs 5 +Cyclonic 8 +Peninsular 10 +Pulsating 9 +Ripening 8 +Capita 6 +Quota 5 +Chronic 7 +Famine 6 +Memorandum 10 +Educationally 13 +Scheduled 9 +Grievances 10 +Pensions 8 +Functionaries 13 +Advancement 11 +Recommendations 15 +Hamper 6 +Soaked 6 +Stroked 7 +Leapt 5 +Streaked 8 +Disbelief 9 +Offence 7 +Lustre 6 +Metals 6 +Rough 5 +Systematic 10 +Continents 10 +Cardinal 8 +Symbols 7 +Buried 6 +Coaxed 6 +Carcass 7 +Incense 7 +Mortar 6 +Mourned 7 +Chisel 6 +Withered 8 +Celsius 7 +Conduction 10 +Conductor 9 +Convection 10 +Campaigns 9 +Province 8 +Revolt 6 +Deccan 6 +Traditions 10 +Surrounding 11 +Strike 6 +Valuing 7 +Devalues 8 +Wages 5 +Humiliated 10 +Intruder 8 +Inconceivable 13 +Insanity 8 +Bracing 7 +Snuggling 9 +Displacement 12 +Elements 8 +Hardness 8 +Malleability 12 +Pressurised 11 +Fermented 9 +Horrors 7 +Outsiders 9 +Treetops 8 +Fallow 6 +Shrank 6 +Biosphere 9 +Pollination 11 +Decomposers 11 +Circumstances 13 +Penalised 9 +Evolution 9 +Testimonies 11 +Monetary 8 +Philistines 11 +Faltered 8 +Interpretation 14 +Fission 7 +Uproar 6 +Agitating 9 +Tranquillity 12 +Phosphorus 10 +Compartments 12 +Forceps 7 +Livelihoods 11 +Cellophane 10 +Colonizer 9 +Wilderness 10 +Sleepers 8 +Reckless 8 +Grazing 7 +Partridges 10 +Poaching 8 +Summoned 8 +Flogging 8 +Warlike 7 +Precipitation 13 +Uncertainties 13 +Perceptible 11 +Commissioners 13 +Ambassadors 11 +Judiciary 9 +Interference 12 +Starvation 10 +Artisans 8 +Malnutrition 12 +Dimensions 10 +Sufficiency 11 +Rationing 9 +Dwellers 8 +Pastures 8 +Riverine 8 +Loll 4 +Bow 3 +Seed 4 +Cripple 7 +Lame 4 +Misery 6 +Fenugreek 9 +Gradually 9 +Guavas 6 +Sieving 7 +Churning 8 +Chanted 7 +Tax 3 +Priests 7 +Ritual 6 +Asia 4 +Strait 6 +Density 7 +Vapour 6 +Elevation 9 +Awakened 8 +Penetrating 11 +Genuinely 9 +Acid 4 +Acidic 6 +Indigestion 11 +Limestone 9 +Keystone 8 +Auspicious 10 +Artisan 7 +Figs 4 +Survival 8 +Quench 6 +Saline 6 +Condenses 9 +Widow 5 +Ruggedness 10 +Unscalable 10 +Furrow 6 +Coal 4 +Fuel 4 +Labourer 8 +Winnowing 9 +Livelihood 10 +Cultivators 11 +Extinction 10 +Quarrying 9 +Mining 6 +Glance 6 +Dispute 7 +Partial 7 +Poured 6 +Meagre 6 +Gable 5 +Slithered 9 +Reedy 5 +Preens 6 +Isotonic 8 +Engulf 6 +Vacuoles 8 +Turgidity 9 +Rigidity 8 +Stunted 7 +Amnesty 7 +Covenant 8 +Summon 6 +Writ 4 +Issued 6 +Procedures 10 +Mountains 9 +Fences 6 +Grizzled 8 +Barrel 6 +Sesame 6 +Trapped 7 +Australia 9 +Homesick 8 +Misfortune 10 +Chambered 9 +Handpicking 11 +Sedimentation 13 +Threshing 9 +Fortification 13 +Transplantation 15 +Exploits 8 +Sugarcane 9 +Monastery 9 +Lithosphere 11 +Hydrosphere 11 +Flowery 7 +Advertised 10 +Marsh 5 +Neutralization 14 +Geometrical 11 +Grandiose 9 +Mansions 8 +Terrarium 9 +Evaporates 10 +Salinity 8 +Fascinating 11 +Literate 8 +Greedy 6 +Murdered 8 +Protesting 10 +Solidarity 10 +Conquest 8 +Fulfilment 10 +Ennobling 9 +Resolutely 10 +Refinery 8 +Tar 3 +Reservoir 9 +Anthropologist 14 +Supplemented 12 +Descendants 11 +Consequences 12 +Cocoons 7 +Constructional 14 +Indiscriminate 14 +Concentrated 12 +Sedimentary 11 +Apex 4 +Appellate 9 +Acquitted 9 +Electrified 11 +Xylophone 9 +Percussionist 13 +Potential 9 +Permeable 9 +Eukaryotic 10 +Chromosomes 11 +Scarcely 8 +Saplings 8 +Succulent 9 +Intricately 11 +Groans 6 +Troops 6 +Brigands 8 +Frenzy 6 +Pitchforks 10 +Chateaux 8 +Enforceable 11 +Sanctioned 10 +Minorities 10 +Mobilise 8 +Exploitation 12 +Sapling 7 +Aired 5 +Studious 8 +Colonies 8 +Drains 6 +Sculptor 8 +Navigator 9 +Intelligence 12 +Decorated 9 +Programmes 10 +Rainwater 9 +Shrivel 7 +Changes 7 +Expansion 9 +Melting 7 +Desires 7 +Debates 7 +Cravings 8 +Deposition 10 +Volcanic 8 +Bushes 6 +Interrupted 11 +Gaunt 5 +Stashed 7 +Unfriendly 10 +Rusting 7 +Dilute 6 +Exquisite 9 +Saffron 7 +Nutmeg 6 +Foothills 9 +Olives 6 +Censorship 10 +Broadcast 9 +Media 5 +Operas 6 +Helplessly 10 +Clacked 7 +Fondle 6 +Warming 7 +Ignition 8 +Recruited 9 +Miserably 9 +Adolescent 10 +Weaving 7 +Dyeing 6 +Emigrants 9 +Immigrants 10 +Frantically 11 +Prophet 7 +Conviction 10 +Conservative 12 +Apical 6 +Lateral 7 +Iris 4 +Bronchi 7 +Injury 6 +Countrymen 10 +Staircases 10 +Monitor 7 +Contraction 11 +Meditated 9 +Unhappiness 11 +Preaching 9 +Habitation 10 +Densely 7 +Earthquakes 11 +Twinkling 9 +Annoyed 7 +Starving 8 +Inquiries 9 +Emporium 8 +Donations 9 +Hardwood 8 +Channels 8 +Newsreader 10 +Agendas 7 +Demolished 10 +Hooves 6 +Obliged 7 +Buzzard 7 +Quivering 9 +Delirious 9 +Convulsion 10 +Bobbed 6 +Extinguisher 12 +Efficiency 10 +Substances 10 +Camphor 7 +Uprisings 9 +Oppression 10 +Constructed 11 +Stationed 9 +Disbanded 9 +Infancy 7 +Statements 10 +Innate 6 +Undistinguished 15 +Unprecedented 13 +Superintend 11 +Intercalary 11 +Cambium 7 +Parenchyma 10 +Sclerenchyma 12 +Cementing 9 +Alveoli 7 +Squamous 8 +Measure 7 +Floating 8 +Sank 4 +Matchstick 10 +Indifferent 11 +Tolerated 9 +Shamelessly 11 +Conscience 10 +Revenge 7 +Climbers 8 +Conduct 7 +Creepers 8 +Sepal 5 +Shrubs 6 +Corals 6 +Polyps 6 +Fertile 7 +Derived 7 +Wobbly 6 +Scoffed 7 +Polar 5 +Cylinder 8 +Predators 9 +Mystery 7 +Clan 4 +Prosperous 10 +Dwell 5 +Forestry 8 +Dwellings 9 +Inland 6 +Invention 9 +Markets 7 +Traders 7 +Complexes 9 +Creatively 10 +Inflection 10 +Foliage 7 +Grinning 8 +Assistant 9 +Endemic 7 +Species 7 +Extinct 7 +Sanctuary 9 +Colonialism 11 +Seized 6 +Persisted 9 +Excerpts 8 +Inhabitants 11 +Tribal 6 +Conceit 7 +Aves 4 +Ulva 4 +Coelomic 8 +Arthropod 9 +Hagfish 7 +Jumbled 7 +Giants 6 +Rowing 6 +Pea 3 +Propose 7 +Claiming 8 +Announced 9 +Seldom 6 +Wretched 8 +Abide 5 +Petal 5 +Petiole 7 +Pistil 6 +Stamen 6 +Taproot 7 +Transpiration 13 +Trees 5 +Veins 5 +Carved 6 +Wise 4 +Flicker 7 +Deciduoud 9 +Squeezed 8 +Photographs 11 +Reasonably 10 +Penguins 8 +Nomads 6 +Kinship 7 +Preserved 9 +Tundra 6 +Settlement 10 +Flourished 10 +Accumulates 11 +Expenditure 11 +Recognise 9 +Exhilaration 12 +Gleefully 9 +Restoration 11 +Radiance 8 +Fathomless 10 +Submerged 9 +Endangered 10 +Migratory 9 +Reforestation 13 +Upheaval 8 +Suppress 8 +Regiment 8 +Cartridge 9 +Proclaimed 10 +Ancestral 9 +Mainstream 10 +Invariably 10 +Exotic 6 +Migrants 8 +Sanctuaries 11 +Trod 4 +Inconspicuous 13 +Cotyledons 10 +Triploblastic 13 +Vertebrates 11 +Lend 4 +Queer 5 +Disease 7 +Malaria 7 +Anaemia 7 +Haemoglobin 11 +Trifle 6 +Sympathy 8 +Patted 6 +Cartilage 9 +Slither 7 +Sickles 7 +Granted 7 +Monsoon 7 +Prevented 9 +Exaggerated 11 +Typhoon 7 +Advocated 9 +Mystics 7 +Submission 10 +Wildlife 8 +Paradise 8 +Borrowed 8 +Gainers 7 +Weaver 6 +Brevity 7 +Edification 11 +Ravine 6 +Cell 4 +Plasma 6 +Cytoplasm 9 +Hostility 9 +Foremost 8 +Rights 6 +Policies 8 +Poised 6 +Pinnacle 8 +Fiercely 8 +Automobiles 11 +Magnitude 9 +Monster 7 +Pincers 7 +Nipped 6 +Yelled 6 +Larvae 6 +Algae 5 +Slippery 8 +Tradesmen 9 +Costly 6 +Foolishness 11 +Scorching 9 +Backbone 8 +Bristles 8 +Rib-cage 8 +Skeleton 8 +Streamlined 11 +Flourishing 11 +Potter 6 +Timber 6 +Amphibians 10 +Perspective 11 +Kindling 8 +Settled 7 +Drumming 8 +Cyclones 8 +Smashed 7 +Advised 7 +Forefinger 10 +Preached 8 +Idol 4 +Hospice 7 +Piranha 7 +Cultivating 11 +Inhospitable 12 +Erode 5 +Communities 11 +Screaming 9 +Crevices 8 +Blunders 8 +Hailstorm 9 +Drenched 8 +Power-cuts 10 +Impatience 10 +Ceasing 7 +Chloroplast 11 +Prokaryotes 11 +Pseudopodia 11 +Unicellular 11 +Prokaryotic 11 +Understatement 14 +Bombarded 9 +Weavers 7 +Craftsmanship 13 +Untainted 9 +Guardians 9 +Womb 4 +Deity 5 +Atrocities 10 +Disarming 9 +Wrenching 9 +Steadfastly 11 +Meteoric 8 +Diarrhoea 9 +Meningitis 10 +Troop 5 +Grumpy 6 +Passage 7 +Rucksack 8 +Realised 8 +Icy 3 +Sling 5 +Blisters 8 +Pebbly 6 +Rattlesnake 11 +Widespread 10 +Claws 5 +Excretion 9 +Living 6 +Trader 6 +Pilgrim 7 +Roman 5 +Twiddling 9 +Inaccurate 10 +Meaningless 11 +Solemnly 8 +Muddle 6 +Loamy 5 +Topsoil 7 +Horizons 8 +Artistic 8 +Classical 9 +Dialect 7 +Thread 6 +Ballot 6 +Prophecy 8 +Pardonable 10 +Sympathies 10 +Fertilisation 13 +Foetus 6 +Embryo 6 +Imposing 8 +Metallurgy 10 +Armour 6 +Furnaces 8 +Suburban 8 +Borne 5 +Equitable 9 +Inhabit 7 +Muzzle 6 +Pitiful 7 +Scooted 7 +Recoil 6 +Underneath 10 +Elevators 9 +Underground 11 +Venom 5 +Forage 6 +Dodge 5 +Nourishes 9 +Immune 6 +Reproduction 12 +Stimulus 8 +Recollecting 12 +Polished 8 +Coasts 6 +Remnant 7 +Sarcastic 9 +Dissuade 8 +Lunatic 7 +Tightened 9 +Clayey 6 +Humus 5 +Retention 9 +Sandy 5 +Inseparable 11 +Distinctive 11 +Aspirations 11 +Minstrels 9 +Conflicts 9 +Pyre 4 +Heroic 6 +Adjoining 9 +Resemblance 11 +Igneous 7 +Unequal 7 +Wrought 7 +Shrewdness 10 +Metamorphosis 13 +Zygote 6 +Calorific 9 +Assortments 11 +Advances 8 +Rendered 8 +Intricate 9 +Legendary 9 +Purification 12 +Astonishment 12 +Elevations 10 +Wantonly 8 +Porridge 8 +Condiments 10 +Aerated 7 +Pedalling 9 +Conjectured 11 +Centripetal 11 +Gravitation 11 +Mane 4 +Bastions 8 +Ruins 5 +Carving 7 +Fountain 8 +Spy 3 +Combatants 10 +Grimly 6 +Motion 6 +Flitting 8 +Praised 7 +Brushing 8 +Deception 9 +Imaginable 10 +Sovereign 9 +Gentlemanly 11 +Gills 5 +Lungs 5 +Aerobic 7 +Anaerobic 9 +Harvests 8 +Coffers 7 +Seizing 7 +Sophistry 9 +Slough 6 +Affront 7 +Adrenalin 9 +Glands 6 +Estrogen 8 +Insulin 7 +Enslaved 8 +Inferiority 11 +Maimed 6 +Inspector 9 +Adorned 7 +Deities 7 +Slumber 7 +Sceptre 7 +Calculus 8 +Copernicus 10 +Buoyancy 8 +Plucks 6 +Qualities 9 +Expert 6 +Pierced 7 +Contest 7 +Cannon 6 +Bronze 6 +Glistened 9 +Thudding 8 +Whipped 7 +Fluttered 9 +Writhed 7 +Excavations 11 +Pendulum 8 +Luminous 8 +Eclipse 7 +Reflection 10 +Translucent 11 +Moustaches 10 +Appealing 9 +Oddities 8 +Manufactured 12 +Prejudiced 10 +Broadened 9 +Cellular 8 +Chunks 6 +Unsought 8 +Customary 9 +Preacher 8 +Diffused 8 +Hormones 8 +Thyroxine 9 +Nutritional 11 +Vernacular 10 +Provoke 7 +Enrage 6 +Modernise 9 +Reprisals 9 +Peculiar 8 +Prosecuted 10 +Emissions 9 +Devotees 8 +Protrude 8 +Shrines 7 +Meditatively 12 +Undiminished 12 +Upthrust 8 +Immersed 8 +Elongation 10 +Archimedes 10 +Eureka 6 +Globe 5 +Africa 6 +Clockwise 9 +Epic 4 +Shrine 6 +Artery 6 +Blood 5 +Capillary 9 +Kidneys 7 +Phloem 6 +Friction 8 +Interaction 11 +Melodramas 10 +Bullock 7 +Nuclei 6 +Argentina 9 +Blobs 5 +Temple 6 +Inscription 11 +Platelets 9 +Pulse 5 +Xylem 5 +Electrostatic 13 +Gravitational 13 +Magnetic 8 +Practices 9 +Transcending 12 +Linguistic 10 +Composite 9 +Curator 7 +Humming 7 +Epidermis 9 +Honk 4 +Smelly 6 +Grease 6 +Coughing 8 +Spore 5 +Vegetative 10 +Fusion 6 +Fluid 5 +Kerosene 8 +Rolling 7 +Static 6 +Trumpets 8 +Ultrasonic 10 +Braked 6 +Silvery 7 +Gametes 7 +Hypha 5 +Ovule 5 +Pollen 6 +Dispersal 9 +Interlocking 12 +Sliding 7 +Husbandry 9 +Propagation 11 +Oscillations 12 +Undesirable 11 +Trunks 6 +Yak 3 +Utilise 7 +Interval 8 +Hundredth 9 +Graph 5 +Eardrum 7 +Loudness 8 +Anthrax 7 +Vigour 6 +Airborne 8 +Paddy 5 +Pumpkins 8 +Zigzagging 10 +Oscillation 11 +Odometer 8 +Amplitude 9 +Unpleasant 10 +Antibiotics 11 +Penicillin 10 +Inflammation 12 +Bedridden 9 +Immunisation 12 +Damaged 7 +Rebuild 7 +Tremor 6 +Rubbing 7 +Exceeds 7 +Fuse 4 +Depositing 10 +Aquatic 7 +Bemoan 6 +Fractured 9 +Architects 10 +Engineers 9 +Electromagnet 13 +Intensity 9 +Fertiliser 10 +Manure 6 +Breezes 7 +Demonstrates 12 +Condensation 12 +Inhalation 10 +Terrestrial 11 +Biodiversity 12 +Hazy 4 +Numb 4 +Amazed 6 +Mirror 6 +Erect 5 +Spherical 9 +Woodcutter 10 +Tallness 8 +Profuse 7 +Rodents 7 +Lens 4 +Magnified 9 +Prism 5 +Nodded 6 +Tremble 7 +Heartbeat 9 +Discharge 9 +Electroscope 12 +Fumigation 10 +Lactation 9 +Vaccinations 12 +Supplementary 13 +Molluscs 8 +Mackerel 8 +Estuaries 9 +Intensive 9 +Pasturage 9 +Justice 7 +Untouchable 11 +Emptied 7 +Compost 7 +Recharge 8 +Dwindling 9 +Scarcity 8 +Freshwater 10 +Cones 5 +Irregular 9 +Impaired 8 +Groundwater 11 +Infiltration 12 +Incidence 9 +Cornea 6 +Refused 7 +Insisted 8 +Scolds 6 +Lenient 7 +Quarrel 7 +Cooperation 11 +Deforestation 13 +Biogas 6 +Aeration 8 +Cassiopeia 10 +Comets 6 +Constellations 14 +Meteorites 10 +Orbit 5 +Sensing 7 +Soothing 8 +Chirping 8 +Forefathers 11 +Bride 5 +Quarrels 8 +Sewer 5 +Firewood 8 +Scattered 9 +Contaminant 11 +Sewage 6 +Sewerage 8 +Sludge 6 +Wastewater 10 +Pollution 9 +Chlorinated 11 +Greenhouse 10 +Pollutants 10 +Unleaded 8 +Harvested 9 +Spun 4 +Cereals 7 +Dismissed 9 +Wisely 6 +Crumbly 7 +Earthworm 9 +Leftover 8 +Weave 5 +Bundles 7 +Contractor 10 +Lottery 7 +Chillies 8 +Adopted 7 +Sneezed 7 +Observations 12 +Scientists 10 +Lends 5 +Expenses 8 +Caravan 7 +Sticking 8 +Onlookers 9 +Indomitable 11 +Ablaze 6 +Ablutions 9 +Abnegation 10 +Abet 4 +Abhor 5 +Abdicate 8 +Aberrant 8 +Abashed 7 +Abate 5 +Surprising 10 +Startling 9 +Stunning 8 +Abandon 7 +Deserted 8 +Belittled 9 +Gig 3 +Spectators 10 +Arise 5 +Become 6 +Buy 3 +Cling 5 +Sell 4 +Assurer 7 +Bulwark 7 +Observance 10 +Assent 6 +Consent 7 +Acquiescence 12 +Analyze 7 +Trends 6 +Bearing 7 +Habitude 8 +Imperative 10 +Behest 6 +Dictates 8 +Instruction 11 +Ameliorate 10 +Civilize 8 +Activity 8 +Deviation 9 +Grossly 7 +Consumed 8 +Enormously 10 +Precision 9 +Infallibility 13 +Nicety 6 +Austerity 9 +Scrupulousness 14 +Continual 9 +Cast 4 +Liquidate 9 +Bestow 6 +Resiliency 10 +Ultimately 10 +Concluding 10 +Conclusive 10 +Definitive 10 +Eventual 8 +Terminal 8 +Preparatory 11 +Elemental 9 +Basal 5 +Behoof 6 +Emolument 9 +Else 4 +Conserve 8 +Keeping 7 +Factual 7 +Pastime 7 +Frolic 6 +Experiment 10 +Tentative 9 +Training 8 +Expedition 10 +Receptive 9 +Objection 9 +Demur 5 +Antagonism 10 +Contradiction 13 +Condemnation 12 +Deprecation 11 +Disapprobation 14 +Disapproval 11 +Sooth 5 +Apropos 7 +Apposite 8 +Apt 3 +Allowable 9 +Bridle 6 +Contrive 8 +Devise 6 +Designation 11 +Consignee 9 +Extraction 10 +Contra 6 +Adversely 9 +Plaint 6 +Reproof 7 +Censure 7 +Cognizance 10 +Remedy 6 +Elimination 11 +Onto 4 +Dilate 6 +Criteria 8 +Preordain 9 +Entry 5 +Creed 5 +Standardize 11 +Feed 4 +Celebration 11 +Festival 8 +Intent 6 +Intention 9 +Notion 6 +Selective 9 +Lodgement 9 +Registration 12 +Bespeak 7 +Betoken 7 +Connote 7 +Tone 4 +Vox 3 +Wording 7 +Exhibit 7 +Cushy 5 +Turnabout 9 +Variegate 9 +Categorical 11 +Pronounced 10 +Insistent 9 +Definite 8 +Composition 11 +Ambage 6 +Integration 11 +Unification 11 +Alignment 9 +Incorporation 13 +Impaction 9 +Collaborator 12 +Confrere 8 +Amigo 5 +Comrade 7 +Companion 9 +Compeer 7 +Buddy 5 +Engender 8 +Induce 6 +Impel 5 +Involvement 11 +Intertwine 10 +Inflexibility 13 +Adjudication 12 +Obtainable 10 +Procurable 10 +Amply 5 +Waxy 4 +Resentful 9 +Prickly 7 +Agonizing 9 +Inconvenient 12 +Abominable 10 +Concerning 10 +Cursed 6 +Troublesome 11 +Incommodious 12 +Discomfortable 14 +Disadvantageous 15 +Comport 7 +Treat 5 +Disseminate 11 +Levigate 8 +Frustrate 9 +Baffle 6 +Thwart 6 +Blight 6 +Balk 4 +Confound 8 +Tolerance 9 +Forbearance 11 +Meekness 8 +Persistence 11 +Perseverance 12 +Persistency 11 +Matter 6 +Overbalance 11 +Resolve 7 +Earthly 7 +Feasible 8 +Likely 6 +Probable 8 +Thinkable 9 +Verisimilar 11 +Workable 8 +Betimes 7 +Presto 6 +Pleasently 10 +Fain 4 +Pleasingly 10 +Advise 6 +Doctrine 8 +Representation 14 +Admonition 10 +Admonishment 12 +Easy 4 +Practicable 11 +Handily 7 +Motile 6 +Happily 7 +Foray 5 +Marauding 9 +Onset 5 +Expense 7 +Disbursement 12 +Proffer 7 +Option 6 +Ploy 4 +Utilization 11 +Usage 5 +Use 3 +Competent 9 +Expressly 9 +Select 6 +Asset 5 +Especial 8 +Contentment 11 +Cosiness 8 +Delectation 11 +Weal 4 +Enchantment 11 +Assist 6 +Contribute 10 +Decent 6 +Optative 8 +Wale 4 +Accolade 8 +Approbation 11 +Commendation 12 +Preference 10 +Escalation 10 +Style 5 +Title 5 +Prodigious 10 +Assuredly 9 +Parlous 7 +Acrid 5 +Dire 4 +Excruciating 12 +Renowned 8 +Noted 5 +Celebrated 10 +Robust 6 +Extempore 9 +Ripping 7 +Tiptop 6 +Unbeatable 10 +Sublime 7 +Superfine 9 +Alarming 8 +Atrocious 9 +Eloquent 8 +Forcible 8 +Influential 11 +Prime 5 +Purify 6 +Impeccable 10 +Divine 6 +Positively 10 +Inspiring 9 +Motivational 12 +Wholesome 9 +Clarity 7 +Impressive 10 +Interesting 11 +Memorable 9 +Skillful 8 +Blessed 7 +Thriving 8 +Sensational 11 +Promptly 8 +Effectively 11 +Auspice 7 +Captainship 11 +Captaincy 9 +Issue 5 +Offspring 9 +Progeny 7 +Aftermath 9 +Ascendancy 10 +Consequence 11 +Feint 5 +Guise 5 +Sham 4 +Simulation 10 +Stride 6 +Stabilize 9 +Poser 5 +Rapport 7 +Thaw 4 +Communion 9 +Companionship 13 +Fraternize 10 +Condolence 10 +Dorsum 6 +Headway 7 +Progression 11 +Very 4 +Enomously 9 +Exceeding 9 +Excessively 11 +Bloody 6 +Consumedly 10 +Approbate 9 +Elect 5 +Calling 7 +Operations 10 +Sales 5 +Telesales 9 +Payroll 7 +Apologise 9 +Tenacious 9 +Quicken 7 +Exaction 8 +Market 6 +Requisite 9 +Unsure 6 +Perplexed 9 +Stuck 5 +Paralyzed 9 +Supportive 10 +Connected 9 +Nurturing 9 +Joined 6 +Attached 8 +Giving 6 +Mindful 7 +Regardful 9 +Exclusive 9 +Valued 6 +Consequential 13 +Deliberate 10 +Blissful 8 +Thankfulness 12 +Realise 7 +Comprehension 13 +Accomplish 10 +Reveal 6 +Motive 6 +Anxiety 7 +Brooding 8 +Musing 6 +Thinking 8 +Unfortunately 13 +Upset 5 +Jitter 6 +Find 4 +Reappear 8 +Protect 7 +Proven 6 +Latest 6 +Results 7 +Premiere 8 +Free 4 +New 3 +Enamour 7 +Gladden 7 +Satisfy 7 +Pamper 6 +Humor 5 +Propitiate 10 +Patronize 9 +Befriend 8 +Daffy 5 +Faddish 7 +Fully 5 +Thoroughly 10 +Doubtless 9 +Decidedly 9 +Sorted 6 +Fine 4 +Constant 8 +Fixed 5 +Perceives 9 +Listening 9 +Dialer 6 +Logging 7 +Callback 8 +Preview 7 +Satisfaction 12 +Outsourcing 11 +Quality 7 +Transferring 12 +Assessment 10 +Services 8 +Abandoned 9 +Genetics 8 +Hone 4 +Inactivity 10 +Allergy 7 +Pessimism 9 +Arthritis 9 +Syndrome 8 +Abnormal 8 +Abstinence 10 +Ache 4 +Acupuncture 11 +Bones 5 +Cardiac 7 +Crouch 6 +Cuisine 7 +Culinary 8 +Deadly 6 +Defect 6 +Dehydration 11 +Depression 10 +Ferment 7 +Folic-Acid 10 +Guideline 9 +Harmful 7 +Hormone 7 +Hygiene 7 +Hygienic 8 +Immunity 8 +Immunization 12 +Infirm 6 +Influenza 9 +Aids 4 +Anemia 6 +Anorexia 8 +Antidote 8 +Septum 6 +Health-maintenance 18 +Fundholder 10 +Physicians 10 +Hospitals 9 +Payor 5 +Group-practice 14 +Clinicians 10 +Pandemic 8 +Prostate 8 +Petrify 7 +Pharmacy 8 +Physiotherapy 13 +Pilate 6 +Portion 7 +Potent 6 +Carbohydrates 13 +Dyslectic 9 +Homeopathic 11 +Kinesiology 11 +Kinesis 7 +Kinaesthesia 12 +Medication 10 +Metabolic 9 +Minimize 8 +Mixture 7 +Nicotine 8 +Obesity 7 +Olfactory 9 +Optimism 8 +Ossification 12 +Outbreak 8 +Paraffin 8 +Telemedicine 12 +Pre-mature 10 +Umbilical-cord 14 +Podiatric 9 +Retainer 8 +Cells 5 +Obstructed 10 +Acidity 7 +Eyes 4 +Mucus 5 +Oils 4 +Secretions 10 +Arteries 8 +Ears 4 +Practitioner 12 +Venomous 8 +Amalgam 7 +Paediatric 10 +Telehealth 10 +Utilizers 9 +Abscess 7 +Cuspid 6 +Sensitivity 11 +Seizures 8 +Bactericide 11 +Bacterin 8 +Bacillosis 10 +Diagnoses 9 +Ligament 8 +Syringes 8 +Identification 14 +Implant 7 +Rehabilitation 14 +Sedation 8 +Suppression 11 +Incision 8 +Abdominal 9 +Arraignment 11 +Eye-Witness 11 +False-Arrest 12 +False-Imprisonment 18 +Restraining 11 +Finding 7 +First-Appearance 16 +Felony 6 +Forensic-Studies 16 +Homicide 8 +House-Arrest 12 +Juvenile 8 +Detention 9 +Impeach 7 +Judgment 8 +Disposition 11 +Jury-Nullification 18 +Leniency 8 +Parole 6 +Plea 4 +Plea-Bargain 12 +Negotiations 12 +Possession 10 +Prosecutor 10 +Public-Defender 15 +Search-Warrant 14 +Self-incrimination 18 +Convicted 9 +Barrister 9 +Counsel-Lawsuit 15 +Contributory-Negligence 23 +Slander 7 +Libel 5 +Comparative-Negligence 22 +Expert-Witness 14 +Tenant 6 +Counterfeiting 14 +HealthCare-Provider 19 +Invitees 8 +Licensee 8 +Malpractice-Cap 15 +Negligence 10 +Plaintiff 9 +Res-Ipsa-Loquitur 17 +Vicarious-Liability 19 +Statute-Limitations 19 +Subrogation 11 +Tort 4 +Unavoidable-Accident 20 +Wanton-Misconduct 17 +Retentions 10 +Romalpa-clauses 15 +Tender-bid 10 +Company-seal 12 +Limited-liability 17 +Liquidation 11 +Misrepresentation 17 +Deed 4 +Disclaimer 10 +Lease 5 +Trespass 8 +Non-cognizable 14 +Pleader 7 +Citation 8 +Maintenance 11 +Major-dispute 13 +Federal-action 14 +Majoritarian 12 +Majorities 10 +Majority-leader 15 +Majority-opinion 16 +Make-bail 9 +Malfeasance 11 +Malice 6 +Malice-inlaw 12 +Malicious 9 +Offensiveness 13 +Offeree 7 +Justice-Programs 16 +Special-Counsel 15 +Official-immunity 17 +Officiant 9 +Officious-intermeddler 22 +Offset 6 +Of-record 9 +Of-right 8 +Sound-mind 10 +Oligopolies 11 +Oligopoly 9 +Omission 8 +Omnibus-bill 12 +Omnibus-clause 14 +Omnibus-motion 14 +On-demand 9 +On-duty 7 +Onerous-contract 16 +Onerous-title 13 +On-file 7 +On-inquiry 10 +Initiative 10 +On-paper 8 +On-point 8 +On-job 6 +Opt 3 +Open-court 10 +Opened 6 +Open-end 8 +Open-forum 10 +Opening 7 +Extend 6 +Extent 6 +Extraditable 12 +Extradite 9 +Extrajudicial 13 +Eyre 4 +Gag-order 9 +Abstract-title 14 +Abstractor 10 +Abrogation 10 +Absence 7 +Absentee 8 +Absentee-ballot 15 +Absent-leave 12 +Absolute 8 +Gag-rule 8 +Gainsharing 11 +Gamed 5 +Gap-filler 10 +Garnishee 9 +Garnishment 11 +Garnishor 9 +Gatt 4 +Services-Administration 23 +Sessions-Court 14 +General-statute 15 +General-strike 14 +General-verdict 15 +Verdict-rule 12 +General-warrant 15 +General-welfare 15 +Transfer-tax 12 +Genocide 8 +Genuine-issue 13 +Genuineness 11 +Gerrymander 11 +Hazardous 9 +Headnote 8 +Head-tax 8 +Power-of-attorney 17 +Hearsay 7 +Hearsay-evidence 16 +Hearsay-rule 12 +United-Nations 14 +Hedge 5 +Hedge-fund 10 +Hedonic-damages 15 +Heinous 7 +Labor-Disputes 14 +Labor-Management 16 +Reporting-Disclosure 20 +Decedent 8 +Deceit 6 +Decertification 15 +Abstain 7 +Abstention 10 +Abstract 8 +Damages 7 +Jailer 6 +Jailhouse 9 +Pleading 8 +Evidential 10 +Jobber 6 +Passive 7 +Rid 3 +Viral 5 +Wanna 5 +Binge 5 +Combo 5 +Freshly 7 +Vibes 5 +Tweets 6 +Startle 7 +Icon 4 +Drone 5 +Liberal 7 +Grouse 6 +Fling 5 +Quantum 7 +Thrilled 8 +Legal-aid 9 +Detaining 9 +Amendment 9 +Material-Evidence 17 +Subsidiary 10 +Divestiture 11 +Bailable-offence 16 +Cognizable-offence 18 +Cyber-bullying 14 +Consolidation 13 +Voir-Dire 9 +Exculpatory-Evidence 20 +Expungement 11 +Home-Confinement 16 +Impeachment 11 +Incarceration 13 +Incriminate 11 +Conveyance 10 +Capital-Case 12 +Capital-Offense 15 +Cross-Examination 17 +Alter-Ego 9 +Local-jurisdiction 18 +Citing-Authority 16 +Civil-Process 13 +Clemency 8 +Community-Service 17 +Competence-Order 16 +Consecutive 11 +Courtesy-Notice 15 +Criminal-Case 13 +Larceny-Theft 13 +Custody-List 12 +Double-Jeopardy 15 +Reasonable-Doubt 16 +Adult 5 +Trademark 9 +Extradition 11 +Forgery 7 +Guilty-Plea 11 +Habeas-Corpus 13 +Jeopardy 8 +Mitigation 10 +Presentment 11 +Pretrial-Services 17 +Prosecute 9 +Suspicion 9 +Unfounded 9 +Vagrancy 8 +Vandalism 9 +Indemnity 9 +Diligence 9 +Embezzlement 12 +Inadmissible 12 +Interrogation 13 +Bylaws 6 +Mistrial 8 +Testimony 9 +Hacktivism 10 +Malware 7 +Burglary 8 +Insolvency 10 +Indigent 8 +Larceny 7 +Eviction 8 +Ex-gratia 9 +Majeure 7 +Creditnote 10 +Quorum 6 +Repudiation 11 +Easement 8 +Encroachment 12 +Multifaceted 12 +Efficient 9 +Achievement 11 +Timelines 9 +Deadline 8 +Routine 7 +Period 6 +Culmination 11 +Priority 8 +Sustain 7 +Resume 6 +Time 4 +Tenure 6 +Phase 5 +Instant 7 +Misconduct 10 +Mess 4 +Irresponsible 13 +Aggravation 11 +Irritation 10 +Errors 6 +Glitch 6 +Perks 5 +Highlight 9 +Unquestionable 14 +Comprehend 10 +Specification 13 +Valid 5 +Core 4 +Functional 10 +Execution 9 +Indulge 7 +Feat 4 +Qualified 9 +Experienced 11 +Impact 6 +Incapable 9 +Unsteady 8 +Weakness 8 +Impulsive 9 +Restrained 10 +Deficiency 10 +Disorganized 12 +Procrastinate 13 +Demotivated 11 +Overthink 9 +Unpunctual 10 +Invest 6 +Envisage 8 +Remuneration 12 +Betterment 10 +Expectations 12 +Acquire 7 +Hereafter 9 +Upcoming 8 +Executive 9 +Trained 7 +Books 5 +Insight 7 +Prospects 9 +Informative 11 +Skills 6 +Supervise 9 +Motivation 10 +Adapt 5 +Hardworking 11 +Transactional 13 +Zeal 4 +Top-notch 9 +Forthright 10 +Truthful 8 +Predominant 11 +Stability 9 +Transferable 12 +Characteristic 14 +Cordial 7 +Yourself 8 +Possess 7 +Intrigued 9 +Passion 7 +Animals 7 +Reading 7 +Instructions 12 +Parameter 9 +Views 5 +Captivate 9 +Income 6 +Apply 5 +Outweigh 8 +Overall 7 +Marketable 10 +Debatable 9 +Negotiable 10 +Boost 5 +Problem-solving 15 +Mutual 6 +Skilful 7 +Tenet 5 +Preparedness 12 +Precise 7 +Team-oriented 13 +Oriented 8 +Incorporate 11 +Qualifications 14 +Oblige 6 +Venue 5 +Colloquium 10 +Path 4 +Objective 9 +Vocation 8 +Scope 5 +Goals 5 +Pursue 6 +Differ 6 +Shaky 5 +Intimation 10 +Jeopardize 10 +Owe 3 +Assume 6 +Levy 4 +Interchange 11 +Graded 6 +Tactics 7 +Draft 5 +Submit 6 +Depict 6 +Commence 8 +Discard 7 +Meeting 7 +Interview 9 +Consensus 9 +Programme 9 +Assignment 10 +Alliance 8 +Protocol 8 +Panel 5 +Concept 7 +Finance 7 +Skilled 7 +Certified 9 +Proceeds 8 +Transaction 11 +Undertaking 11 +Consumer 8 +Segmentation 12 +Segmenting 10 +Demographics 12 +Marital 7 +Ethnicity 9 +Lifestyles 10 +Consumption 11 +Preferences 11 +Devotion 8 +Activities 10 +Needs 5 +Perception 10 +Organized 9 +Interpreted 11 +Marketing 9 +Influences 10 +Processes 9 +Perceive 8 +Orientation 11 +Psychology 10 +Retrieved 9 +Investigates 12 +Engaging 8 +Dispose 7 +Identifies 10 +Individuals 11 +Purchaser 9 +Tangible 8 +Leasing 7 +Performs 8 +Dissatisfied 12 +Boycotting 10 +Price 5 +Attitudes 9 +Factors 7 +Concentrating 13 +Symbolic 8 +Determining 11 +Implies 7 +Predict 7 +Acquired 8 +Retrieval 9 +Evaluating 10 +Suitability 11 +Offerings 9 +Budgeted 8 +Qualitative 11 +Quantitative 12 +Subjectivity 12 +Primary 7 +Currency 8 +Impartiality 12 +Stakeholders 12 +Predetermined 13 +Questionnaire 13 +Anonymity 9 +Embarrassing 12 +Harmonious 10 +Manipulates 11 +Segment 7 +Opportunities 13 +Profitability 13 +Repositioned 12 +Visuals 7 +Identifying 11 +Enhance 7 +Tracking 8 +Commissioned 12 +Varieties 9 +Variations 10 +Coexist 7 +Unaware 7 +Contemporary 12 +Strategies 10 +Positioned 10 +Endorsers 9 +Purchasing 10 +Decades 7 +Incorporated 12 +Examines 8 +Pervades 8 +Subcultures 11 +Identity 8 +Populations 11 +Contained 9 +Togetherness 12 +Grouping 8 +Targeted 8 +Impacts 7 +Establishes 11 +Binding 7 +Deviating 9 +Encouragement 13 +Marketers 9 +Comparison 10 +Associative 11 +Matriculate 11 +Normative 9 +Informational 13 +Convincing 10 +Revolve 7 +Extensions 10 +Captive 7 +Bargains 8 +Boundaries 10 +Anonymously 11 +Unmistakable 12 +Impacted 8 +Accordance 10 +Classes 7 +Components 10 +Commodity 9 +Instances 9 +Rankings 8 +Concerned 9 +Distributed 11 +Negotiated 10 +Predictor 9 +Significance 12 +Designer 8 +Corresponding 13 +Intermediate 12 +Trickle 7 +Conspicuous 11 +Subsequent 10 +Extensive 9 +Wealthier 9 +Originated 10 +Fluctuates 10 +Interests 9 +Compression 11 +Proficient 10 +Peripherals 11 +Targeting 9 +Distinct 8 +Dominance 9 +Assertiveness 13 +Harmony 7 +Households 10 +Articulate 10 +Tension 7 +Relevance 9 +Environmental 13 +Unwavering 10 +Reviews 7 +Exposure 8 +Cologne 7 +Prototype 9 +Endures 7 +Momentary 9 +Occasions 9 +Cognitive 9 +Affective 9 +Assign 6 +Foundations 11 +Credibility 11 +Perceptual 10 +Comparative 11 +Disruption 10 +Attributes 10 +Advantageous 12 +Sensations 10 +Semiotic 8 +Threshold 9 +Differential 12 +Unintelligible 14 +Ambiguity 9 +Ideological 11 +Resembles 9 +Conditioning 12 +Generalization 14 +Reinforcement 13 +Punishment 10 +Unpleasantness 14 +Seasonal 8 +Consciousness 13 +Observational 13 +Equity 6 +Licensing 9 +Packaging 9 +Encoding 8 +Commercials 11 +Narrative 9 +Sensory 7 +Structures 10 +Spreading 9 +Activation 10 +Retrieving 10 +Familiarity 11 +Forgetting 10 +Proactive 9 +Retroactive 11 +Effectiveness 13 +Preferably 10 +Nostalgia 9 +Multicultural 13 +Nostalgic 9 +Multinationals 14 +Aesthetic 9 +Unintentionally 15 +Operant 7 +Instrumental 12 +Utilitarian 11 +Instinct 8 +Homeostasis 11 +Fantasizes 10 +Priorities 10 +Psychogenic 11 +Revealing 9 +Profoundly 10 +Hedonic 7 +Durability 10 +Avoidance 9 +Dissonance 10 +Thrill 6 +Classifying 11 +Virtually 9 +Dependence 10 +Subconscious 12 +Uniqueness 10 +Summarized 10 +Glimpses 8 +Esteem 6 +Individualistic 15 +Specified 9 +Aspects 7 +Gratify 7 +Underlying 10 +Criticisms 10 +Validity 8 +Subjective 10 +Obvious 7 +Masculinity 11 +Acceptance 10 +Femininity 10 +Mastery 7 +Desalination 12 +Unwrapping 10 +Seductive 9 +Captures 8 +Potentially 11 +Violation 9 +Rationalizing 13 +Elaboration 11 +Evident 7 +Possessions 11 +Playfulness 11 +Distorted 9 +Enduring 8 +Teasing 7 +Prominent 9 +Purchased 9 +Liberation 10 +Ambitions 9 +Spirituality 12 +Sacredness 10 +Elaborate 9 +Theoretical 11 +Collectivism 12 +Alleys 6 +Leverage 8 +Materialism 11 +Situational 11 +Reflexive 9 +Strategists 11 +Expressive 10 +Defensive 9 +Persuaded 9 +Intangible 10 +Hypothesis 10 +Independence 12 +Advertiser 10 +Technique 9 +Rejection 9 +Accounting 10 +Capitalize 10 +Fischbein 9 +Intentions 10 +Acknowledges 12 +Obstacles 9 +Predictability 14 +Persuasion 10 +Reciprocity 11 +Tactical 8 +Interactive 11 +Permission 10 +Communicators 13 +Source 6 +Attractiveness 14 +Endorsements 12 +Fictional 9 +Vividness 9 +Resonance 9 +Peripheral 10 +Appeals 7 +Fantasy 7 +Bridging 8 +Selves 6 +Congruence 10 +Socialization 13 +Communal 8 +Macho 5 +Depiction 9 +Stereotypes 11 +Genetically 11 +Distortions 11 +Exasperation 12 +Momentum 8 +Seeking 7 +Environmentally 15 +Prospect 8 +Perceived 9 +Evoked 6 +Competitors 11 +Heuristics 10 +Relying 7 +Compensatory 12 +Rules 5 +Queuing 7 +Anticipated 11 +Enactment 9 +Reliability 11 +Cyberspace 10 +Atmospherics 12 +Impulse 7 +Cohesiveness 12 +Mannerisms 10 +Rebellious 10 +Adolescents 11 +Tribe 5 +Necessities 11 +Conformity 10 +Norms 5 +Sanctions 9 +Unanimity 9 +Susceptibility 14 +Idealized 9 +Polarization 12 +Patterns 8 +Resistance 10 +Impersonal 10 +Encouraging 11 +Knowledgeable 13 +Unconventional 14 +Adopting 8 +Provisional 11 +Retailing 9 +Viewers 7 +Futuristic 10 +Transmissions 13 +Counteract 10 +Rumour 6 +Sharpening 10 +Accentuated 11 +Arousing 8 +Contaminants 12 +Specialized 11 +Magazines 9 +Boutiques 9 +Synthesized 11 +Indications 11 +Generalized 11 +Polymorphic 11 +Conceptions 11 +Absorbs 7 +Seekers 7 +Surrogate 9 +Compensated 11 +Lucrative 9 +Patronized 10 +Sponsor 7 +Designating 11 +Physician 9 +Excessive 9 +Refurbished 11 +Recreational 12 +Intrinsic 9 +Judicious 9 +Extended 8 +Steadily 8 +Accommodative 13 +Consensual 10 +Synoptic 8 +Yielding 8 +Accompany 9 +Prolonged 9 +Critic 6 +Indicators 10 +Discretionary 13 +Anxieties 9 +Diminished 10 +Pecking 7 +Stratification 14 +Cloakroom 9 +Ascribed 8 +Occupational 12 +Prestige 8 +Prominently 11 +Intergenerational 17 +Constricted 11 +Elaborated 10 +Ironically 10 +Prominence 10 +Invidious 9 +Pretentious 11 +Conspired 9 +Potlatch 8 +Primitive 9 +Parody 6 +Cohort 6 +Adolescence 11 +Puberty 7 +Pragmatism 10 +Narcissism 10 +Avidly 6 +Barrier 7 +Charisma 8 +Anthropologists 15 +Boomers 7 +Shattering 10 +Surging 7 +Altruism 8 +Chronological 13 +Appropriateness 15 +Hermits 7 +Ailing 6 +Excursions 10 +Harmonization 13 +Minimal 7 +Postmodernism 13 +Environmentalism 16 +Encompassing 12 +Signifying 10 +Synthesizing 12 +Collectivist 12 +Individualist 13 +Myths 5 +Rituals 7 +Metaphysical 12 +Binary 6 +Bizarre 7 +Insincere 9 +Ritualistic 11 +Enterprising 12 +Commemorate 11 +Profane 7 +Formulae 8 +Adopters 8 +Anomalies 9 +Meticulous 10 +Deliberation 12 +Vicarious 9 +Prudent 7 +Dynamically 11 +Prerequisites 13 +Compatibility 13 +Perpetuating 12 +Quadrant 8 +Fulfilled 9 +Achievers 9 +Believers 9 +Strives 7 +Typologies 10 +Predominantly 13 +Stricter 8 +Strategic 9 +Staffing 8 +Hired 5 +Programs 8 +Workplace 9 +Benefits 8 +Dealing 7 +Affecting 9 +Workforce 9 +Implementing 12 +Planning 8 +Component 9 +Prioritize 10 +Recruit 7 +Multiculturalism 16 +Stereotype 10 +Recruitment 11 +Genetic 7 +Pregnancy 9 +Harassment 10 +Retaliation 11 +Reform 6 +Associations 12 +Reviewing 9 +Theories 8 +Considerations 14 +Medicare 8 +Incentive 9 +Dissatisfaction 15 +Turnover 8 +Mallows 7 +Herzberg 8 +Succession 10 +Flexitime 9 +Telecommuting 13 +Sabbatical 10 +Fairness 8 +Enlargement 11 +Empowerment 11 +Mentoring 9 +Managerial 10 +Coaching 8 +Shadowing 9 +Swapping 8 +Vestibule 9 +Timeline 8 +Participatory 13 +Directing 9 +Participative 13 +Handling 8 +Rightsize 9 +Layoff 6 +Error 5 +Checklist 9 +Ranking 7 +Anchored 8 +Unionization 12 +Bargaining 10 +Collective 10 +Ramification 12 +Impasse 7 +Enforcement 11 +Cumulative 10 +Trauma 6 +Offshoring 10 +Aspect 6 +Oversea 7 +Expatriates 11 +Logistics 9 +Proprietary 11 +Abilities 9 +Retirement 10 +Reimbursement 13 +Tuition 7 +Discussed 9 +Poor 4 +Happier 7 +Federal 7 +Ventilation 11 +Globalization 13 +Demographic 11 +Downsize 8 +Networking 10 +Coverage 8 +Posting 7 +Relating 8 +Certification 13 +Crucial 7 +Multitasking 12 +Realm 5 +Align 5 +Examine 7 +Interchangeable 15 +Institute 9 +Suited 6 +Demonstrating 13 +Varied 6 +Coordinator 11 +Sacrificing 11 +Containment 11 +Alleviate 9 +Reduce 6 +Childless 9 +Wrongful 8 +Termination 11 +Victim 6 +Replacing 9 +Bureau 6 +Manufacturing 13 +Boggling 8 +Unionized 9 +Restriction 11 +Beneficiary 11 +Pension 7 +Longevity 9 +Origin 6 +Billion 7 +Positional 10 +Affair 6 +Retire 6 +Mulling 7 +Temporary 9 +Mulled 6 +Grievance 9 +Regulatory 10 +Detailed 8 +Pathway 7 +Inordinate 10 +Downturn 8 +Distinction 11 +Brainstorm 10 +Exceed 6 +Morale 6 +Reallocation 12 +Whittled 8 +Posses 6 +Current 7 +Exaggerate 10 +Candidate 9 +Recruiter 9 +Applicant 9 +Metric 6 +Equivalent 10 +Sophisticate 12 +Buyout 6 +Detriment 9 +Socioeconomic 13 +Inclusive 9 +Disregard 9 +Bashing 7 +Complying 9 +Derogatory 10 +Condone 7 +Formulate 9 +Manifest 8 +Unbiased 8 +Attribute 9 +Fringe 6 +Forbid 6 +Overhear 8 +Immediate 9 +Pertain 7 +Modify 6 +Trend 5 +Bidding 7 +Competency 10 +Concise 7 +Cordless 8 +Extension 9 +Blower 6 +Get 3 +Radio-telephone 15 +Receiver 8 +Earphone 8 +Chatter 7 +Banter 6 +Small talk 10 +Chit-chat 9 +Natter 6 +Repartee 8 +Badinage 8 +Bitch 5 +Whispers 8 +Chinwag 7 +Conversational 14 +Goss 4 +Grapevine 9 +Prattle 7 +Scuttlebutt 11 +Convo 5 +Academic 8 +Conventional 12 +Authorized 10 +Validated 9 +Endorsed 8 +Conversing 10 +Face-to-face 12 +Privately 9 +Irritate 8 +Fight 5 +Mistrust 8 +Confabulation 13 +Argumentation 13 +Contention 10 +Excursus 8 +Wrangling 9 +Disputation 11 +Forensics 9 +Altercation 11 +Dialogism 9 +Canvass 7 +Symposium 9 +Disquisition 12 +Gabfest 7 +Wrangle 7 +Rap-session 11 +Bull-session 12 +Dissertation 12 +Exposition 10 +Dialectical 11 +Huddle 6 +Seminar 7 +Expostulate 11 +Pauses 6 +Dream 5 +Articulation 12 +Dictation 9 +Elocution 9 +Utterance 9 +Phraseology 11 +Orthoepy 8 +Lecture 7 +Allocution 10 +Oration 7 +Recitation 10 +Soliloquize 11 +Expound 7 +Pontificate 11 +Filibuster 10 +Declaim 7 +Descant 7 +Nonfiction 10 +Empathy 7 +Organise 8 +Attend 6 +Collaborate 11 +Seminars 8 +Summits 7 +Convocation 11 +Awayday 7 +Conclave 8 +Convention 10 +Slides 6 +Videos 6 +Presenting 10 +Awarding 8 +Handing 7 +Dispensing 10 +Conferral 9 +Layout 6 +Unveiling 9 +Parading 8 +Known 5 +Acquainting 11 +Debut 5 +Session 7 +Rap 3 +Probe 5 +Cross-examine 13 +Poll 4 +Canvas 6 +Ascertain 9 +Opinions 8 +Reproduce 9 +Retell 6 +Echo 4 +Iterate 7 +Derive 6 +Misquote 8 +Ingeminate 10 +Cite 4 +Specify 7 +Recount 7 +Enumerate 9 +Itemize 7 +Adduce 6 +Exemplify 9 +Kinky 5 +Vivid 5 +Tramping 8 +Dune 4 +Wistfully 9 +Introvert 9 +Mesh 4 +Values 6 +Politics 8 +Juncture 8 +Snappy 6 +Workaholic 10 +Happiness 9 +Unparalleled 12 +Versatility 11 +Unapologetic 12 +Unabashed 9 +Kindness 8 +Mindset 7 +Blessing 8 +Shrink 6 +Expand 6 +Shine 5 +Unconditionally 15 +Indispensable 13 +Impermanence 12 +Stagnate 8 +Cleanse 7 +Limitless 9 +Infinite 8 +Conquer 7 +Spirit 6 +Buffer 6 +Productive 10 +Sprint 6 +Interruptions 13 +Mindless 8 +Storms 6 +Calamity 8 +Watering 8 +Overexposed 11 +Force 5 +Opposite 8 +Reminder 8 +Silence 7 +Ethic 5 +Enemy 5 +Rush 4 +Failures 8 +Perfection 10 +Legacy 6 +Inspirational 13 +Emotions 8 +Individuality 13 +Earnestness 11 +Gullibility 11 +Morality 8 +Confession 10 +Excuses 7 +Introspection 13 +Pretense 8 +Confronting 11 +Imperfection 12 +Humanity 8 +Self-worth 10 +Honor 5 +Concealment 11 +Contemplation 13 +Ponder 6 +Respect 7 +Brandon 7 +Hypervigilance 14 +Agile 5 +Dependency 10 +Empower 7 +Mastering 9 +Biggest 7 +Willingness 11 +Brainstorming 13 +Accepting 9 +Rejecting 9 +Suggestions 11 +Feeling 7 +Silent 6 +You 3 +Mind 4 +Looking 7 +Ignorance 9 +Capabilities 12 +Realisation 11 +Sparks 6 +Possibility 11 +Flames 6 +Dreams 6 +Commit 6 +Excellence 10 +Unlock 6 +Soulmate 8 +Higher 6 +Mates 5 +Affirmations 12 +Completeness 12 +Smoothly 8 +Grades 6 +Define 6 +Miracles 8 +Survived 8 +Deepest 7 +Contagious 10 +Connecting 10 +Self 4 +Limitations 11 +Life 4 +Monotony 8 +Refillable 10 +Hustle 6 +Limits 6 +Contender 9 +Empathetic 10 +Easier 6 +Correctly 9 +United 6 +Unconscious 11 +Self-acceptance 15 +Meaning 7 +Ownership 9 +Judging 7 +Sustainability 14 +Believer 8 +Ungrateful 10 +Supernatural 12 +Serenity 8 +Mediocrity 10 +Re-experiencing 15 +Madness 7 +Enrich 6 +Incurious 9 +Evolve 6 +Waving 6 +Swirling 8 +Cease 5 +Magnificence 12 +Protracted 10 +Strengths 9 +Blessings 9 +Suck 4 +Stressing 9 +Motivated 9 +Greatness 9 +Readiness 9 +Unconditional 13 +Deeds 5 +Ergonomic 9 +Optimize 8 +Automate 8 +Equip 5 +Stoppage 8 +Reduction 9 +Fleet 5 +Heuristic 9 +Algorithm 9 +Electromagnetism 16 +Annealing 9 +Sequence 8 +Governance 10 +Classify 8 +Enterprise 10 +Estimation 10 +Continuity 10 +Commerce 8 +Automotive 10 +Embark 6 +Conception 10 +Flexibility 11 +Establishment 13 +Competitive 11 +Exception 9 +Quantify 8 +Breakdown 9 +Inferred 8 +Standardized 12 +Sporadic 8 +Anomaly 7 +Intervention 12 +Inspection 10 +Humanize 8 +Variance 8 +Restore 7 +Desired 7 +Contradict 10 +Accumulative 12 +Coordinate 10 +Linkage 7 +Diversified 11 +Workstation 11 +Troubleshoot 12 +Coupling 8 +Hub 3 +Damper 6 +Simulated 9 +Saturation 10 +Contingent 10 +Rigorous 8 +Screened 8 +Loading 7 +Lean 4 +Cope 4 +Downtime 8 +Idling 6 +Malfunction 11 +Tabulate 8 +Formulation 11 +Synthesize 10 +Structured 10 +Categorize 10 +Corrective 10 +Benchmark 9 +Characterization 16 +Occupy 6 +Negligible 10 +Complex 7 +Absenteeism 11 +Forfeit 7 +Successive 10 +Scrap 5 +Rework 6 +Changeover 10 +Dimension 9 +Slack 5 +Upstream 8 +Calibration 11 +Configuration 13 +Redundant 9 +Modular 7 +Defective 9 +Unipolar 8 +Insulate 8 +Downstream 10 +Unambiguous 11 +Mechanics 9 +Nominal 7 +Fatigue 7 +Embodiment 10 +Parallel 8 +Marginal 8 +Discrete 8 +Coincident 10 +Restitution 11 +Infantile 9 +Intense 7 +Coincide 8 +Elapse 6 +Exponential 11 +Squeezing 9 +Reciprocal 10 +Feasibility 11 +Apparatus 9 +Postpone 8 +Infinity 8 +Encompass 9 +Limit 5 +Arrival 7 +Linear 6 +Constrained 11 +Optimal 7 +Precedence 10 +Conjunctive 11 +Predefined 10 +Permutation 11 +Fictitious 10 +Transit 7 +Crossover 9 +Roulette 8 +Stumbling 9 +Rely 4 +Proportional 12 +Probabilistic 13 +Pheromone 9 +Inquire 7 +Foraging 8 +Analogous 9 +Scouting 8 +Traverse 8 +Normalize 9 +Optimum 7 +Iteration 9 +Worse 5 +Pseudo 6 +Tuning 6 +Zoning 6 +Mutation 8 +Vital 5 +Inferior 8 +Inculcate 9 +Smoothing 9 +Simulator 9 +Conceived 9 +Cornerstone 11 +Mixed 5 +Sizing 6 +Inbound 7 +Warehouse 9 +Scenario 8 +Random 6 +Clockwork 9 +Customization 13 +Bundling 8 +Trigger 7 +Synchronize 11 +Noticeable 10 +Encounter 9 +Disagreeable 12 +Bustling 8 +Captivating 11 +Swamped 7 +Dismal 6 +Sluggish 8 +Spineless 9 +Chagrin 7 +Towering 8 +Spinster 8 +Dejected 8 +Take-up 7 +Look-up 7 +Give-up 7 +Make-up 7 +Bring-up 8 +Turn-up 7 +Grow-up 7 +Commuter 8 +Intimate 8 +Cozy 4 +Sedate 6 +Blatantly 9 +Put-up 6 +Three 5 +Forty 5 +This 4 +That 4 +These 5 +Whose 5 +Which 5 +What 4 +Mine 4 +Our 3 +Your 4 +It's 4 +American 8 +Indian 6 +Australian 10 +Italian 7 +African 7 +German 6 +Alaskan 7 +Tasty 5 +Got-off 7 +Killed 6 +Quaff 5 +Fastidious 10 +Fallen 6 +Colander 8 +Funnel 6 +Ladle 5 +Wok 3 +Griddle 7 +Tong 4 +Sieve 5 +Strainer 8 +Skimmer 7 +Asafoetida 10 +Cloves 6 +Tamarind 8 +Gray 4 +League 6 +Household 9 +Abortion 8 +Increased 9 +Expose 6 +Jew 3 +Typically 9 +So-so 5 +Flip-flops 10 +See-saw 7 +Easy-peasey 11 +Wishy-washy 11 +Ding-dong 9 +Riff-raff 9 +Knick-knack 11 +Mish-mash 9 +Ship-shape 10 +Zig-zag 7 +Love-hate 9 +Basket-works 12 +Breast-works 12 +Bright-works 12 +Cabinet-work 12 +Net-workings 12 +Trust-worthy 12 +Basket-work 11 +Breast-work 11 +Bright-work 11 +Craft-works 11 +Drift-woods 11 +Frost-works 11 +Fruit-woods 11 +Heart-woods 11 +Heart-worms 11 +Joint-worms 11 +Light-woods 11 +Net-workers 11 +Net-working 11 +Non-network 11 +Out-workers 11 +Out-working 11 +Paint-works 11 +Stunt-woman 11 +Wheat-worms 11 +Bent-woods 10 +Craft-work 10 +Drift-wood 10 +Duct-works 10 +Flat-works 10 +Flat-worms 10 +Foot-works 10 +Fret-works 10 +Frost-work 10 +Fruit-wood 10 +Heart-wood 10 +Heart-worm 10 +Joint-worm 10 +Light-wood 10 +Net-worked 10 +Net-worker 10 +Out-worked 10 +Out-worker 10 +Paint-work 10 +Root-worms 10 +Salt-works 10 +Salt-worts 10 +Seat-works 10 +Soft-woods 10 +Wheat-worm 10 +Art-works 9 +Bent-wood 9 +Cut-works 9 +Cut-worms 9 +Duct-work 9 +Fat-woods 9 +Flat-work 9 +Flat-worm 9 +Foot-work 9 +Foot-worn 9 +Fret-work 9 +Net-works 9 +Nut-woods 9 +Out-works 9 +Root-worm 9 +Salt-work 9 +Salt-wort 9 +Seat-work 9 +Soft-wood 9 +Two-folds 9 +Two-pence 9 +Two-penny 9 +On-off 6 +Dreamt 6 +Wagged 6 +Wanted 6 +Baking 6 +Asks 4 +Lie 3 +Begged 6 +Offered 7 +Arrived 7 +Prepared 8 +Runs 4 +Reads 5 +Promised 8 +Saw 3 +Leaped 6 +Glides 6 +Enjoyed 7 +Laughed 7 +Collapsed 9 +Will 4 +Cleaning 8 +Works 5 +Seems 5 +Bakes 5 +Wants 5 +Walked 6 +Likes 5 +Was 3 +Injured 7 +Needed 6 +Studied 7 +Singing 7 +Licking 7 +Being 5 +Eating 6 +Killing 7 +Roasted 7 +Given 5 +Boiled 6 +Smoking 7 +Taking 6 +Running 7 +Creating 8 +Baked 5 +Watching 8 +Teaching 8 +Arranges 8 +Abbortive 9 +Caffiene 8 +Tempreture 10 +Accumen 7 +Anitithesis 11 +Bladishment 11 +Didatic 7 +Exacerbrate 11 +Injuction 9 +Noxoious 8 +Philanthrophic 14 +Daffodil 8 +Poppy 5 +Bluebell 8 +Rose 4 +Orchid 6 +Peony 5 +Geranium 8 +Lily 4 +Lotus 5 +Dandelion 9 +Crocus 6 +Sparrow 7 +Hawk 4 +Raven 5 +Flamingo 8 +Seagull 7 +Blackbird 9 +Robin 5 +Swan 4 +Stork 5 +Woodpecker 10 +Panda 5 +Kangaroo 8 +Koala 5 +Leopard 7 +Hippopotamus 12 +Giraffe 7 +Pig 3 +Raccoon 7 +Frog 4 +Badger 6 +Rabbit 6 +Antelope 8 +Fishes 6 +Jellyfish 9 +Octopus 7 +Crab 4 +Broccoli 8 +Pumpkin 7 +Beetroot 8 +Blueberry 9 +Pomegranate 11 +Banana 6 +Jackfruit 9 +Kiwi 4 +Apricot 7 +Grapefruit 10 +Melon 5 +Sausage 7 +Kebab 5 +Soda 4 +Cocoa 5 +Kitten 6 +Puppy 5 +Duckling 8 +Fawn 4 +Foal 4 +Signet 6 +Pup 3 +Squab 5 +Suckling 8 +Infant 6 +Nymph 5 +Joey 4 +Piglet 6 +Craft 5 +Stigma 6 +Eye 3 +Armpit 6 +Forearm 7 +Navel 5 +Toes 4 +Instep 6 +Toenail 7 +Abdomen 7 +Hip 3 +Knee 4 +Antiseptic 10 +Lotion 6 +Ointment 8 +Lozenges 8 +Tablet 6 +Ambulance 9 +Crutch 6 +Walker 6 +Wheelchair 10 +Cane 4 +Scalpel 7 +Syringe 7 +Pipette 7 +Glasses 7 +Dumbbells 9 +Stretcher 9 +Backpack 8 +Pins 4 +Clip 4 +Stapler 7 +Calculator 10 +Ballpoint 9 +Highlighter 11 +Palette 7 +Binder 6 +Archery 7 +Boxing 6 +Curling 7 +Skateboarding 13 +Yoga 4 +Fitness 7 +Gymnastics 10 +Karate 6 +Volleyball 10 +Weightlifting 13 +Wrestling 9 +Billiards 9 +Shooting 8 +Football 8 +Lighthouse 10 +Riverbank 9 +Sea 3 +Meadow 6 +Pond 4 +Tree 4 +Moss 4 +Stars 5 +Saturn 6 +Neptune 7 +Meteor 6 +Asteroid 8 +Tilde 5 +Theta 5 +Integral 8 +Intersection 12 +Exists 6 +Line 4 +Angle 5 +Summation 9 +Brackets 8 +Degrees 7 +Dew 3 +Fahrenheit 10 +Gusts 5 +Ice 3 +Meteorologist 13 +Mild 4 +Puddle 6 +Slush 5 +Snowstorm 9 +Sunlight 8 +Buzzer 6 +Commute 7 +Customs 7 +Depart 6 +Direct 6 +Disembark 9 +Helmet 6 +Indirect 8 +Lorry 5 +Meter 5 +Passengers 10 +Sidecar 7 +Tandem 6 +Tariff 6 +Tracks 6 +Tram 4 +Unicycle 8 +Asian 5 +Bald 4 +Boney 5 +Cheeks 6 +Cross 5 +Drab 4 +Features 8 +Lips 4 +Mole 4 +Scruffy 7 +Size 4 +Stamina 7 +Stooped 7 +Supple 6 +Tattoo 6 +Torso 5 +Tubby 5 +Well-built 10 +Well-dressed 12 +Worry 5 +Wrinkles 8 +Nasal 5 +Breathy 7 +Brittle 7 +Fruity 6 +Grating 7 +Gravelly 8 +Gruff 5 +Guttural 8 +Hoarse 6 +Honeyed 7 +Husky 5 +Modulated 9 +Orotund 7 +Plummy 6 +Quietly 7 +Raucous 7 +Ringing 7 +Shrill 6 +Singsong 8 +Smoky 5 +Throaty 7 +Tight 5 +Toneless 8 +Wheezy 6 +ATM 3 +Cash 4 +Cheque 6 +Credited 8 +Overdraft 9 +Passbook 8 +Payee 5 +Teller 6 +Casualty 8 +Chemist 7 +Dehydrated 10 +Flu 3 +Illness 7 +Poorly 6 +Rash 4 +Receptionist 12 +Recover 7 +Registered 10 +Sneezing 8 +Symptoms 8 +Unwell 6 +Vomit 5 +Wound 5 +Broomstick 10 +Casket 6 +Cauldron 8 +Cobweb 6 +Coffin 6 +Costume 7 +Creepy 6 +Crypt 5 +Decorations 11 +Demon 5 +Devil 5 +Disguise 8 +Fangs 5 +Gravestone 10 +Halloween 9 +Howl 4 +Lantern 7 +Mist 4 +Mummy 5 +Nasty 5 +Phantom 7 +Pitchfork 9 +Poltergeist 11 +Potion 6 +Repulsive 9 +Skull 5 +Specter 7 +Spooky 6 +Superstitious 13 +Sweets 6 +Terrify 7 +Tombstone 9 +Vampire 7 +Wand 4 +Wicked 6 +Witch 5 +Witchcraft 10 +Wizard 6 +Adorable 8 +Breed 5 +Canary 6 +Chirp 5 +Collar 6 +Donkey 6 +Feathers 8 +Ferret 6 +Fetch 5 +Gecko 5 +Gerbil 6 +Groom 5 +Groomer 7 +Hamster 7 +Hedgehog 8 +Hops 4 +Meow 4 +Microchip 9 +Reptile 7 +Scales 6 +Spines 6 +Teet 4 +Treats 6 +Baggy 5 +Basket 6 +Butchers 8 +Hanger 6 +Shopper 7 +Showroom 8 +Trolley 7 +Balaclava 9 +Belt 4 +Boots 5 +Button 6 +Cardigan 8 +Casual 6 +Gloves 6 +Hoodie 6 +Leggings 8 +Pants 5 +Shoes 5 +Shorts 6 +Socks 5 +Swimwear 8 +Tailored 8 +Tie 3 +Tights 6 +Zip 3 +Athletics 9 +Cue 3 +Darts 5 +Diving 6 +Grandstand 10 +Jockey 6 +Marathon 8 +Opponent 8 +Participants 12 +Racket 6 +Skis 4 +Snowboard 9 +Spectator 9 +Sport 5 +Turnstile 9 +Umpire 6 +Accused 7 +Acquit 6 +Arson 5 +Bailiff 7 +Bribery 7 +Convict 7 +Courtroom 9 +Defence 7 +Foreperson 10 +Imprison 8 +Indict 6 +Kidnapping 10 +Manslaughter 12 +Precedent 9 +Prosecution 11 +Robbery 7 +Shoplifting 11 +Smuggling 9 +Solicitor 9 +Stenographer 12 +Sue 3 +Suspect 7 +Terrorism 9 +Witness 7 +Console 7 +Convertible 11 +Crosswalk 9 +Decelerate 10 +Headlights 10 +Lanes 5 +Motorcycle 10 +Pedestrian 10 +Shotgun 7 +Speeding 8 +Tailgate 8 +Tires 5 +Windshield 10 +Barber 6 +Bartender 9 +Clerk 5 +Fishmonger 10 +Intern 6 +Janitor 7 +Jeweler 7 +Jobless 7 +Overtime 8 +Porter 6 +Sailor 6 +Shifts 6 +Tailor 6 +Technician 10 +Undertaker 10 +Vacancy 7 +Workload 8 +Blacken 7 +Booking 7 +Busboy 6 +Canteen 7 +Cocktail 8 +Complementary 13 +Deli 4 +Kosher 6 +Lineup 6 +Liquor 6 +Menu 4 +Overdone 8 +Pizzeria 8 +Restroom 8 +Specialty 9 +Starter 7 +Bathroom 8 +Bathtub 7 +Bedroom 7 +Breezeway 9 +Cabinets 8 +Carpet 6 +Cement 6 +Commode 7 +Countertop 10 +Fireplace 9 +Granite 7 +Hallway 7 +Mansion 7 +Patio 5 +Roof 4 +Shelves 7 +Siding 6 +Tile 4 +Walls 5 +Windows 7 +Airfare 7 +Airline 7 +Cottage 7 +Departure 9 +Guide 5 +Hostel 6 +Inn 3 +Itinerary 9 +Keepsake 8 +Knapsack 8 +Landing 7 +Motel 5 +Safari 6 +Single 6 +Stopover 8 +Taxi 4 +Unpack 6 +Visa 4 +Wander 6 +Banner 6 +Entertainer 11 +Icing 5 +Unwrap 6 +Academia 8 +Dormitory 9 +Fail 4 +Fresher 7 +Minor 5 +Polytechnic 11 +Quiz 4 +Scholarship 11 +Sorority 8 +Syllabus 8 +Transcript 10 +Tutor 5 +Boardwalk 9 +Clam 4 +Fin 3 +Kelp 4 +Mangrove 8 +Pelican 7 +Reef 4 +Sandbar 7 +Surfboard 9 +Tide 4 +Batteries 9 +Biscuits 8 +Celery 6 +Clothing 8 +Coupon 6 +Lamps 5 +Medicines 9 +Petrol 6 +Prawn 5 +Soap 4 +Spirits 7 +Wine 4 +Chips 5 +Chocolates 10 +Drinks 6 +Games 5 +Races 5 +Wrapped 7 +Bellboy 7 +Folder 6 +Lobby 5 +Parking 7 +Quote 5 +Brasserie 9 +Cinema 6 +City 4 +Congested 9 +Downtown 8 +District 8 +Monument 8 +Neighborhood 12 +Newsstand 9 +Nightclub 9 +Outskirts 9 +Pawnshop 8 +Restaurant 10 +Skyscraper 10 +Slum 4 +Street 6 +Suburb 6 +Airtight 8 +Burnt 5 +Charcoal 8 +Consume 7 +Cooker 6 +Crumble 7 +Digest 6 +Drainer 7 +Locally 7 +Memories 8 +Overwhelming 12 +Poach 5 +Quantity 8 +Related 7 +Revival 7 +Simmer 6 +Spicy 5 +Spread 6 +Substance 9 +Suits 5 +Tap 3 +Thai 4 +Trellis 7 +Caretaker 9 +Chemistry 9 +Collect 7 +Daunting 8 +Exam 4 +Gym 3 +Kindergarten 12 +Lessons 7 +Mathematics 11 +Physics 7 +Projector 9 +Pupils 6 +Reception 9 +Semester 8 +Students 8 +Bib 3 +Buggy 5 +Cradle 6 +Cuddle 6 +Dig 3 +Distress 8 +Gap 3 +Mittens 7 +Newborn 7 +Pedal 5 +Pram 4 +Pushchair 9 +Rattle 6 +Stranger 8 +Tools 5 +Toys 4 +Challenger 10 +Communism 9 +Dictator 8 +Electorate 10 +Nominee 7 +Politician 10 +Pundit 6 +Socialist 9 +Spin 4 +Banquet 7 +Eve 3 +Fireworks 9 +Midnight 8 +Reveler 7 +Vow 3 +Salute 6 +Clubby 6 +Companionable 13 +Gettable 8 +Acceptable 10 +Honoured 8 +Friendliness 12 +Felicitous 10 +Satisfying 10 +Favourable 10 +Cherished 9 +Entreat 7 +Recourse 8 +Supplicatory 12 +Humbly 6 +Requisition 11 +Solicit 7 +Quest 5 +Apologetic 10 +Ruth 4 +Plead 5 +Render 6 +Acknowledgement 15 +Regretful 9 +Extenuation 11 +Pretext 7 +Farewell 8 +Cheerio 7 +Parting 7 +Egress 6 +Quitting 8 +Withdrawing 11 +Getaway 7 +Egression 9 +Ended 5 +Completes 9 +Until 5 +Yes 3 +Debated 7 +Outcomes 8 +Afterwards 10 +Windup 6 +Calls 5 +Caller 6 +Mute 4 +Telephony 9 +Wiretaps 8 +Audio 5 +Impassioned 11 +Tempestuous 11 +Soulful 7 +Histrionic 10 +Torrid 6 +Anguished 9 +Bitterly 8 +Blazing 7 +Bursting 8 +Charged 7 +Explosive 9 +Flaming 7 +Grief 5 +Melodramatic 12 +Excitement 10 +Sadness 7 +Accepted 8 +Aggressive 10 +Alienated 9 +Astonished 10 +Disrespectful 13 +Salutations 11 +Compliments 11 +Regards 7 +Felicitations 13 +Hailing 7 +Nod 3 +Hi 2 +Receiving 9 +Embracing 9 +Attending 9 +Approaching 11 +Devoirs 7 +Remembrance 11 +Wishes 6 +Consolation 11 +Pleasantries 12 +Millions 8 +Gramercy 8 +Kindly 6 +Warmly 6 +Greaten 7 +Timesaver 9 +Lifesaver 9 +Mannerly 8 +Obliging 8 +Benign 6 +Solicitous 10 +Conciliatory 12 +Interested 10 +Politic 7 +Propitiatory 12 +Ceremonious 11 +Punctilious 11 +Cultured 8 +Refined 7 +Complaisant 11 +Cultivated 10 +Civilized 9 +Chivalrous 10 +Tactful 7 +Elegant 7 +Courtly 7 +Hinder 6 +Disrupt 7 +Obtrude 7 +Impede 6 +Obstruct 8 +Suspend 7 +Cumber 6 +Intrude 7 +Infringe 8 +Between 7 +Interpose 9 +Pinging 7 +Hindrance 9 +Interlocution 13 +Intermission 12 +Interpolation 13 +Suspension 10 +Heckle 6 +Intermit 8 +Pretermit 9 +Intermeddle 11 +Interruptive 12 +Retract 7 +Atone 5 +Justify 7 +Vindicate 9 +Rationalize 11 +Penitent 8 +Reproaching 11 +Amends 6 +Remorse 7 +Bitterness 10 +Displeasure 11 +Discouragement 14 +Defeat 6 +Despondency 11 +Dismay 6 +Mortification 13 +Lack 4 +Disillusion 11 +Foiling 7 +Bafflement 10 +Setback 7 +Blighted 8 +Dashed 6 +Mischance 9 +Blunder 7 +Disgruntlement 14 +Unspelling 10 +Discontentment 14 +Cheering 8 +Upside 6 +Arresting 9 +Compelling 10 +Intriguing 10 +Stimulating 11 +Enchanting 10 +Enthralling 11 +Refreshing 10 +Charismatic 11 +Enticing 8 +Exhilarating 12 +Mesmerizing 11 +Entertaining 12 +Provocative 11 +Engrossing 10 +Gripping 8 +Stirring 8 +Breathtaking 12 +Electrifying 12 +Entrancing 10 +Consuming 9 +Immersing 9 +Involving 9 +Decampment 10 +Outgo 5 +Valediction 11 +Breakup 7 +Evacuation 10 +Adios 5 +Ciao 4 +Sendoff 7 +Cordially 9 +Saluting 8 +Epilogue 8 +Accomplishments 15 +Finis 5 +Closing 7 +Conclusions 11 +Windups 7 +Upshot 6 +Borderline 10 +Pole 4 +Achievements 12 +Reverse 7 +Misadventure 12 +Trail 5 +Tribulation 11 +Suffering 9 +Destitution 11 +Straits 7 +Beggary 7 +Downer 6 +Pickle 6 +Exigency 8 +Torment 7 +Affliction 10 +Indigence 9 +Hassle 6 +Karma 5 +Unhappy 7 +Pity 4 +Commiseration 13 +Solicitousness 14 +Thoughtfulness 14 +Benevolence 11 +Unity 5 +Benignity 9 +Decline 7 +Disallowance 12 +Turndown 8 +Refuse 6 +Rebuff 6 +Repulse 7 +Spurn 5 +Veto 4 +Deterrence 10 +Repression 10 +Overrule 8 +Declension 10 +Disclaim 8 +Backtrack 9 +Revoke 6 +Wreck 5 +Ruin 4 +Impudence 9 +Disfavour 9 +Nix 3 +Negtion 7 +Dminutive 9 +Do 2 +Inform 6 +Kick 4 +Prevent 7 +Proceed 7 +Qualify 7 +React 5 +Swell 5 +Abode 5 +Beget 5 +Flee 4 +Forsake 7 +Arose 5 +Bore 4 +Begot 5 +Bred 4 +Built 5 +Bought 6 +Drew 4 +Drove 5 +Dwelt 5 +Fought 6 +Found 5 +Fled 4 +Forgot 6 +Forsook 7 +Froze 5 +Arisen 6 +Awoken 6 +Been 4 +Born 4 +Beaten 6 +Begotten 8 +Torn 4 +Thrown 6 +Woken 5 +Worn 4 +Drawn 5 +Driven 6 +Striven 7 +Sworn 5 +Forbidden 9 +Stunk 5 +Forsaken 8 +Kneel 5 +Lay 3 +Sting 5 +Swear 5 +Thrust 6 +Knelt 5 +Laid 4 +Led 3 +Leant 5 +Stung 5 +Struck 6 +Strung 6 +Strove 6 +Swore 5 +Swept 5 +Swung 5 +Tore 4 +Woke 4 +Elderly 7 +Knowing 7 +Leading 7 +Powerless 9 +Quarterly 9 +Several 7 +Shameless 9 +Wasteful 8 +Weekly 6 +Youthful 8 +Zealous 7 +Bumpy 5 +Silky 5 +Greasy 6 +Bad-tempered 12 +Distracted 10 +Cheeky 6 +Untidy 6 +Distant 7 +Straightforward 15 +Insane 6 +Bossy 5 +Timid 5 +Hypocritical 12 +Hooked 6 +Confused 8 +Withdrawn 9 +Enraged 7 +Disgusted 9 +Smug 4 +Pained 6 +Sceptical 9 +Fun-Entertaining 16 +Come-approach 13 +Go-depart 9 +Run-dash 8 +Hide-conceal 12 +Do-execute 10 +Use-employ 10 +After-succeeding 16 +Aggressive-hostile 18 +Apparent-evident 16 +Arrive-come 11 +Awkward-unpleasant 18 +Beneficial-advantageous 23 +Brave-courageous 16 +Brief-short 11 +Busy-occupy 11 +Calm-still 10 +Care-bother 11 +Cease-stop 10 +Charming-delightful 19 +Chubby-plump 12 +Close-end 9 +Combine-integrate 17 +Complex-compound 16 +Comprehend-understand 21 +Condemn-criticize 17 +Confess-admit 13 +Conflict-dispute 16 +Conform-obey 12 +Congested-crowed 16 +Conscientious-diligent 22 +Consecutive-successive 22 +Contaminate-pollute 19 +Crazy-mad 9 +Cry-weep 8 +Dangerous-threatening 21 +Demolish-destroy 16 +Deposit-prepayment 18 +Destroy-demolish 16 +Deter-discourage 16 +Difficult-hard 14 +Diminish-decrease 17 +Disagree-contradict 19 +Diverse-various 15 +Docile-obedient 15 +Doubt-uncertainty 17 +Drastic-serious 15 +Dry-withered 12 +Early-advance 13 +Eccentric-abnormal 18 +Enjoy-like 10 +Exhilarated-thrill 18 +Feasible-possible 17 +Few-any 7 +Follow-accompany 16 +Former-prior 12 +Frank-straight 14 +Full-filled 11 +Gaunt-skinny 12 +Gentle-kind 11 +Give-present 12 +Gratitude-gratefulness 22 +Hospitable-friendly 19 +Idle-lazy 9 +Immature-childish 17 +Independent-individualistic 27 +Insane-mad 10 +Intelligent-clever 18 +Internal-interior 17 +Irrelevant-immaterial 21 +Join-connect 12 +Large-big 9 +Least-smallest 14 +Long-prolonged 14 +Magnify-enlarge 15 +Maximum-highest 15 +Migrant-immigrant 17 +Nice-pleasant 13 +Numerous-many 13 +Offend-upset 12 +Optimistic-positive 19 +Outstanding-excellent 21 +Passive-submissive 18 +Patience-tolerance 18 +Perfect-ideal 13 +Possible-feasible 17 +Precious-valuable 17 +Premature-early 15 +Preserve-conserve 17 +Probable-likely 15 +Radiant-bright 14 +Relevant-pertinent 18 +Reluctant-unwilling 19 +Resist-withstand 16 +Ridiculous-hilarious 20 +Sad-unhappy 11 +Sad-sorrowful 13 +Scarce-short 12 +Scarce-insufficient 19 +Seize-grab 10 +Sick-ill 8 +Sick-unwell 11 +Smooth-even 11 +Sorrow-sadness 14 +Sorrow-unhappiness 18 +Spontaneous-unplanned 21 +Stationary-motionless 21 +Stop-end 8 +Stop-finish 11 +Stupid-unintelligent 20 +Stupid-brainless 16 +Successful-victorious 21 +Superb-excellent 16 +Superb-superlative 18 +Surplus-excess 14 +Tender-caring 13 +Tender-kind 11 +Trivial-unimportant 19 +Trivial-insignificant 21 +Upset-distress 14 +Vacant-empty 12 +Vacant-unoccupied 17 +Vacant-unfilled 15 +Valiant-brave 13 +Vicious-violent 15 +Wealth-affluence 16 +Wealth-prosperity 17 +Wholehearted-sincere 20 +Win-gain 8 +Wonderful-marvellous 20 +Wonderful-magnificent 21 +Wonderful-superb 16 +Wrong-incorrect 15 +Wrong-mistaken 14 +Indifferent-Destitute 21 +Indifferent-Impoverished 24 +Indigent-Destitute 18 +Indigent-Impoverished 21 +Infernal-Damned 15 +Infernal-Accursed 17 +Insipid-Tedious 15 +Insipid-Prosaic 15 +Interesting-Enchanting 22 +Interesting-Riveting 20 +Immaculate-unsullied 20 +Immaculate-spotless 19 +Adhere-Comply 13 +Adhere-observe 14 +Abolish-Abrogate 16 +Abolish-annual 14 +Abash-Disconcert 16 +Abash-rattle 12 +Abound-Flourish 15 +Abound-proliferate 18 +Abate-Moderate 14 +Abate-decrease 14 +Abject-Despicable 17 +Abject-servile 14 +Abjure-Forsake 14 +Abjure-renounce 15 +Abortive-Vain 13 +Abortive-unproductive 21 +Absolve-Pardon 14 +Absolve-forgive 15 +Bad-awful 9 +Bad-terrible 12 +Bad-horrible 12 +Good-excellent 14 +Good-great 10 +Hot-burning 11 +Hot-fiery 9 +Hot-boiling 11 +Cold-chilly 11 +Cold-freezing 13 +Cold-frosty 11 +Easy-Simple 11 +Easy-effortless 15 +Easy-straightforward 20 +Hard-challenging 16 +Hard-tough 10 +Big-huge 8 +Big-giant 9 +Small-tiny 10 +Small-little 12 +Small-mini 10 +Abandon-Forsake 15 +Active-Athletic 15 +Able-Capable 12 +Admit-Confess 13 +Accomplish-Achieve 18 +Aim-Goal 8 +Agree-Consent 13 +Alike-Same 10 +Allow-Permit 12 +All-Every 9 +Amiable-Friendly 16 +Amount-Quantity 15 +Angry-Mad 9 +Begin-Start 11 +Bargain-Deal 12 +Beginner-Novice 15 +Behave-Act 10 +Arrive-Reach 12 +Below-Under 11 +Assist-Help 11 +Assure-Guarantee 16 +Big-Vast 8 +Ask-Enquire 11 +Blend-Mix 9 +Bother-Annoy 12 +Brute-Rough 11 +Business-Trade 14 +Bunny-Rabbit 12 +Centre-Middle 13 +Buy-Purchase 12 +Denounce-Blame 14 +Demonstrate-Protest 19 +Dense-Thick 11 +Despise-Hate 12 +Depart-Leave 12 +Delicious-Yummy 15 +Defective-Faulty 16 +Dear-Expensive 14 +Daybreak-Dawn 13 +Danger-Harm 11 +Crook-Criminal 14 +Crash-Accident 14 +Coarse-Rough 12 +Couch-Sofa 10 +Cope-Manage 11 +Connect-Join 12 +Chop-Cut 8 +Coat-Jacket 11 +Choose-Select 13 +Child-Kid 9 +Competent-Capable 17 +Complete-Finish 15 +Complex-Complicated 19 +Destitute-Poor 14 +Gallant-Chivalrous 18 +Earth-Ground 12 +Encourage-Urge 14 +End-Finish 10 +Enlarge-Magnify 15 +Down-Below 10 +Disappear-Vanish 16 +Determined-Sure 15 +Everlasting-Eternal 19 +Deter-Hinder 12 +Faithful-Loyal 14 +Different-Diverse 17 +Fall-Drop 9 +Detach-Remove 13 +Former-Previous 15 +Fraction-Segment 16 +Forgive-Pardon 14 +Fragrance-Perfume 17 +Fix-Repair 10 +Forbid-Prohibit 15 +Frank-Candid 12 +Fool-Idiot 10 +Gain-Acquire 12 +Find-Discover 13 +Freedom-Liberty 15 +Father-Dad 10 +Frenzy-Fury 11 +Fresh-Unused 12 +Fun-Enjoyment 13 +Furious-Angry 13 +Night-Day 9 +Arrive-Leave 12 +Junior-Senior 13 +Better-Worse 12 +Right-Left 10 +Rich-Poor 9 +Smart-Stupid 12 +Able-Unable 11 +Big-Little 10 +Cheap-Expensive 15 +Clean-Dirty 11 +Cold-Hot 8 +Dark-Light 10 +Dry-Wet 7 +Doubt-Trust 11 +Early-Late 10 +East-West 9 +Easy-Hard 9 +Enter-Exit 10 +External-Internal 17 +Fall-Rise 9 +Fast-Slow 9 +Fat-Thin 8 +First-Last 10 +Forward-Backward 16 +Giant-Tiny 10 +Give-Receive 12 +Harmful-Harmless 16 +He-She 6 +Healthy-Sick 12 +Heaven-Hell 11 +High-Low 8 +Husband-Wife 12 +Important-Unimportant 21 +Increase-Decrease 17 +Inside-Outside 14 +Lawful-Unlawful 15 +Justice-Injustice 17 +Large-Small 11 +Legal-Illegal 13 +Like-Dislike 12 +Live-Die 8 +Lock-Unlock 11 +Loyal-Disloyal 14 +Major-Minor 11 +Male-Female 11 +Man-Woman 9 +Marry-Divorce 13 +Mature-Immature 15 +Maximum-Minimum 15 +Most-Least 10 +Narrow-Broad 12 +Natural-Artificial 18 +Near-Far 8 +Nephew-Niece 12 +None-Some 9 +North-South 11 +Old-Young 9 +Open-Shut 9 +Opposite-Same 13 +Over-Under 10 +Pass-Fail 9 +Patient-Impatient 17 +Permanent-Temporary 19 +Polite-Impolite 15 +Possible-Impossible 19 +Powerful-Weak 13 +Prudent-Imprudent 17 +Pure-Impure 11 +Rapid-Slow 10 +Real-Fake 9 +Regular-Irregular 17 +Sad-Happy 9 +Safe-Dangerous 14 +Satisfied-Dissatisfied 22 +Secure-Insecure 15 +Servant-Master 14 +Single-Married 14 +Start-Finish 12 +Strengthen-Weaken 17 +Stress-Relax 12 +Success-Failure 15 +Sunny-Cloudy 12 +Tall-Short 10 +Terrible-Wonderful 18 +Thick-Thin 10 +Tolerant-Intolerant 19 +Trap-Release 12 +True-False 10 +Understand-Misunderstand 24 +Up-Down 7 +Upstairs-Downstairs 19 +Useful-Useless 14 +Visible-Invisible 17 +Win-Lose 8 +Yes-No 6 +Entity-Nonentity 16 +Conformist-Nonconformist 24 +Payment-Non-payment 19 +Sense-Nonsense 14 +Abridge-Expand 14 +Abortive-Successful 19 +Abate-Increase 14 +Accept-Refuse 13 +Admit-Reject 12 +Against-For 11 +Advantage-Disadvantage 22 +Ask-Tell 8 +Ask-Answer 10 +Agree-Disagree 14 +Bare-Covered 12 +Annoy-Soothe 12 +Ally-Enemy 10 +Boundless-Limited 17 +Bottom-Top 10 +Boring-Interesting 18 +Boy-Girl 8 +Brave-Cowardly 14 +Brief-Long 10 +Break-Repair 12 +Bright-Dull 11 +Begin-End 9 +Brighten-Fade 13 +Bring-Remove 12 +Brother-Sister 14 +Beginning-Conclusion 20 +Body-Soul 9 +Bold-Timid 10 +Buy-Sell 8 +Calm-Windy 10 +Careful-Careless 16 +Cheerful-Sad 12 +Complete-Incomplete 19 +Close-Open 10 +Child-Adult 11 +Complex-Simple 14 +Change-Remain 13 +Clever-Foolish 14 +Clever-Stupid 13 +Copy-Original 13 +Conceal-Reveal 14 +Correct-Incorrect 17 +Chilly-Warm 11 +Cool-Warm 9 +Correct-Wrong 13 +Countryman-Foreigner 20 +Create-Destroy 14 +Cruel-Kind 10 +Crazy-Sane 10 +Doctor-Patient 14 +Dim-Bright 10 +Discourage-Encourage 20 +Effective-Ineffective 21 +Dark-Bright 11 +Dawn-Sunset 11 +Elementary-Advanced 19 +Dusk-Dawn 9 +Employer-Employee 17 +Daytime-Midnight 16 +Earth-Sky 9 +Customer-Supplier 17 +Drunk-Sober 11 +Evening-Morning 15 +Downwards-Upwards 17 +Fake-Real 9 +Fact-Fiction 12 +Expand-Shrink 13 +Excited-Bored 13 +Exhale-Inhale 13 +Fat-Skinny 10 +Exterior-Interior 17 +Find-Lose 9 +Firm-Flabby 11 +Feeble-Strong 13 +Few-Many 8 +Float-Sink 10 +Foolish-Wise 12 +Forget-Remember 15 +Floor-Ceiling 13 +Forgivable-Unforgivable 23 +Forgive-Blame 13 +Frown-Smile 11 +Funny-Sad 9 +Free-Restricted 15 +Freeze-Boil 11 +Fortunate-Unfortunate 21 +Eel 3 +Scene 5 +Heap 4 +Bleep 5 +Breeches 8 +Creek 5 +Dean 4 +Greased 7 +Peat 4 +Seam 4 +Seep 4 +Sheen 5 +Skeet 5 +Teak 4 +Teat 4 +East 4 +Bribe 5 +Wife 4 +Mile 4 +File 4 +Pile 4 +Stripe 6 +Fried 5 +Replies 7 +Dries 5 +Spies 5 +Die 3 +Pie 3 +Flies 5 +Dried 5 +Cried 5 +Untied 6 +Retrieve 8 +Dice 4 +Puncture 8 +Slur 4 +Curl 4 +Hurl 4 +Turf 4 +Thursday 8 +Compressor 10 +Infrastructure 14 +Impure 6 +Portraiture 11 +Candidature 11 +Texture 7 +Fixture 7 +Capture 7 +Posture 7 +Pasture 7 +Vulture 7 +Abnormally 10 +Absentmindedly 14 +Accidentally 12 +Adventurously 13 +Afterward 9 +Annually 8 +Anxiously 9 +Arrogantly 10 +Awkwardly 9 +Bashfully 9 +Beautifully 11 +Bleakly 7 +Blindly 7 +Blissfully 10 +Boastfully 10 +Boldly 6 +Bravely 7 +Briefly 7 +Brightly 8 +Briskly 7 +Broadly 7 +Busily 6 +Calmly 6 +Carelessly 10 +Cautiously 10 +Cheerfully 10 +Cleverly 8 +Colorfully 10 +Commonly 8 +Continually 11 +Coolly 6 +Courageously 12 +Crossly 7 +Cruelly 7 +Curiously 9 +Daintily 8 +Dearly 6 +Deeply 6 +Defiantly 9 +Deliberately 12 +Delightfully 12 +Diligently 10 +Dimly 5 +Doubtfully 10 +Dreamily 8 +Elegantly 9 +Energetically 13 +Enthusiastically 16 +Evenly 6 +Excitedly 9 +Famously 8 +Fatally 7 +Ferociously 11 +Fervently 9 +Fondly 6 +Foolishly 9 +Fortunately 11 +Frankly 7 +Freely 6 +Frenetically 12 +Frightfully 11 +Gently 6 +Gladly 6 +Gracefully 10 +Gratefully 10 +Greatly 7 +Healthily 9 +Heavily 7 +Helpfully 9 +Highly 6 +Honestly 8 +Hopelessly 10 +Hungrily 8 +Innocently 10 +Inquisitively 13 +Instantly 9 +Intensely 9 +Intently 8 +Interestingly 13 +Inwardly 8 +Irritably 9 +Jaggedly 8 +Jealously 9 +Jovially 8 +Joyfully 8 +Joyously 8 +Jubilantly 10 +Judgmentally 12 +Justly 6 +Kiddingly 9 +Kindheartedly 13 +Knavishly 9 +Knowingly 9 +Knowledgeably 13 +Lazily 6 +Lightly 7 +Limply 6 +Longingly 9 +Lovingly 8 +Loyally 7 +Madly 5 +Majestically 12 +Meaningfully 12 +Mechanically 12 +Merrily 7 +Mortally 8 +Mostly 6 +Mysteriously 12 +Neatly 6 +Nervously 9 +Noisily 7 +Obediently 10 +Obnoxiously 11 +Oddly 5 +Offensively 11 +Officially 10 +Openly 6 +Optimistically 14 +Overconfidently 15 +Partially 9 +Patiently 9 +Physically 10 +Playfully 9 +Politely 8 +Powerfully 10 +Punctually 10 +Quaintly 8 +Queerly 7 +Questionably 12 +Quicker 7 +Quirkily 8 +Quizzically 11 +Randomly 8 +Rapidly 7 +Readily 7 +Reassuringly 12 +Recklessly 10 +Regularly 9 +Reluctantly 11 +Repeatedly 10 +Reproachfully 13 +Restfully 9 +Righteously 11 +Rightfully 10 +Rigidly 7 +Roughly 7 +Rudely 6 +Scarily 7 +Searchingly 11 +Sedately 8 +Seemingly 9 +Selfishly 9 +Separately 10 +Shakily 7 +Sharply 7 +Sheepishly 10 +Shrilly 7 +Shyly 5 +Silently 8 +Sleepily 8 +Softly 6 +Solidly 7 +Sometimes 9 +Stealthily 10 +Strictly 8 +Successfully 12 +Suddenly 8 +Supposedly 10 +Surprisingly 12 +Suspiciously 12 +Sweetly 7 +Swiftly 7 +Sympathetically 15 +Tenderly 8 +Tensely 7 +Terribly 8 +Thankfully 10 +Thoughtfully 12 +Tightly 7 +Tremendously 12 +Triumphantly 12 +Truthfully 10 +Unabashedly 11 +Unaccountably 13 +Unbearably 10 +Unethically 11 +Unexpectedly 12 +Unimpressively 14 +Unnaturally 11 +Unnecessarily 13 +Upbeat 6 +Upside-down 11 +Urgently 8 +Usefully 8 +Uselessly 9 +Utterly 7 +Vacantly 8 +Vaguely 7 +Vainly 6 +Valiantly 9 +Vastly 6 +Verbally 8 +Viciously 9 +Victoriously 12 +Violently 9 +Vivaciously 11 +Voluntarily 11 +Weakly 6 +Wearily 7 +Wetly 5 +Wholly 6 +Wildly 6 +Willfully 9 +Woefully 8 +Worriedly 9 +Wrongly 7 +Yawningly 9 +Yearningly 10 +Yesterday 9 +Yieldingly 10 +Youthfully 10 +Zealously 9 +Zestfully 9 +Zestily 7 +Vehemence 9 +Potency 7 +Eloquence 9 +Ardency 7 +Ardor 5 +Fervency 8 +Insistence 10 +Stridency 9 +Vociferous 10 +Clearness 9 +Directness 10 +Incisive 8 +Plainness 9 +Equivocation 12 +Delicacy 8 +Lightness 9 +Subtlety 8 +Feebleness 10 +Mildness 8 +Accordingly 11 +Finally 7 +Least 5 +Lastly 6 +Nonetheless 11 +Subsequently 12 +Thereafter 10 +I'd 3 +You'd 5 +He'd 4 +It'd 4 +We'd 4 +They'd 6 +That'd 6 +There'd 7 +Who'd 5 +What'd 6 +Where'd 7 +When'd 6 +Wh'd 4 +How'd 5 +You're 6 +He's 4 +She's 5 +We're 5 +They're 7 +That's 6 +These're 8 +There's 7 +Who's 5 +What's 6 +Where's 7 +When's 6 +Why's 5 +How're 6 +I've 4 +You've 6 +You'll 6 +It'll 5 +They'll 7 +That'll 7 +These'll 8 +There'll 8 +Who'll 6 +What'll 7 +Where'll 8 +When'll 7 +Why'll 6 +How'll 6 +Ah 2 +Oof 3 +Phew 4 +Whew 4 +Aha 3 +Boo-yah 7 +Ho-ho 5 +Hurrah 6 +Ta-da 5 +Whoopee 7 +Woo 3 +Yay 3 +Yippee 6 +Golly 5 +Huh 3 +Whoa 4 +Shh 3 +Ugh 3 +Yuck 4 +Shucks 6 +Argh 4 +Oops 4 +Ahem 4 +Ahh 3 +Ahoy 4 +Alas 4 +Aw 2 +Bam 3 +Boo 3 +Bravo 5 +Dang 4 +Drat 4 +Darn 4 +Duh 3 +Eh 2 +Encore 6 +Fiddlesticks 12 +Pooh 4 +Shoo 4 +Rats 4 +Who 3 +How 3 +Why 3 +Whom 4 +Are 3 +Will-Would 10 +Can-Could 9 +May-might 9 +Am 2 +Amidst 6 +As 2 +Aside 5 +At 2 +By 2 +Circa 5 +In 2 +Into 4 +Except 6 +Excluding 9 +Following 9 +From 4 +Wondered 8 +Queried 7 +Hesitated 9 +Inquired 8 +Supposed 8 +Speculated 10 +Continued 9 +Expressed 9 +Voiced 6 +Compatible 10 +Concordant 10 +Congruent 9 +Consonant 9 +Correspondent 13 +Acceding 8 +Consenting 10 +Affiliating 11 +Allying 7 +Associating 11 +Uniting 7 +Cooperating 11 +Grieved 7 +Remorseful 10 +Melted 6 +Unlucky 7 +Myself 6 +Interact 8 +Hobbies 7 +Schooling 9 +Animosity 9 +Discord 7 +Dissent 7 +Spat 4 +Bickering 9 +Disaccord 9 +Combat 6 +Strife 6 +Bicker 6 +Allowing 8 +Interrupting 12 +Hopefully 9 +Wherever 8 +If 2 +Had-you 7 +Providing 9 +Supposing 9 +Not only but also 17 +Eitheror 8 +Neithernor 10 +Um 2 +Uh 2 +Er 2 +You know 8 +Cheating 8 +Drinking 8 +Doing 5 +Trying 6 +Crying 6 +Frying 6 +Bathing 7 +Washing 7 + 4 diff --git a/docker-compose.yml b/docker-compose.yml index f7f86ac..43866ca 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,7 +9,7 @@ services: volumes: - ./backend/:/src environment: - - CORPUS=english_corpus.csv + - CORPUS=word_corpus.csv - APIPORT=5000 - WEBWORKERS=1 frontend: From 4751a4a9e95f988c5a647b9f5b1cd04657c45c76 Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Mon, 31 May 2021 15:32:00 +0530 Subject: [PATCH 06/10] added the new button --- frontend/src/App/Record.js | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/frontend/src/App/Record.js b/frontend/src/App/Record.js index cbb2587..aa0c7a1 100644 --- a/frontend/src/App/Record.js +++ b/frontend/src/App/Record.js @@ -100,6 +100,13 @@ class Record extends Component { Review + + + Speak + this.setState({ play: true }); + recordWav = () => this.setState({ speak: true }); + stopWav = () => this.setState({ play: false }); handleKeyDown = event => { // space bar code - if (event.keyCode === 32) { + // if (event.keyCode === 32) { + // if (this.speak === true) { if (!this.state.shouldRecord) { event.preventDefault(); this.recordHandler(); } - } + // } // esc key code - if (event.keyCode === 27) { + // if (event.keyCode === 27) { event.preventDefault(); // resets all states @@ -235,7 +245,7 @@ class Record extends Component { audioLen: 0, play: false }); - } + // } // play wav if (event.keyCode === 82) { From 29f5f5ee1627b8f04b359125b5d67c264b0c5dda Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Mon, 31 May 2021 18:28:06 +0530 Subject: [PATCH 07/10] added corpus for sentence --- backend/prompts/sentence_corpus.csv | 25475 ++++++++++++++++++++++++++ 1 file changed, 25475 insertions(+) create mode 100644 backend/prompts/sentence_corpus.csv diff --git a/backend/prompts/sentence_corpus.csv b/backend/prompts/sentence_corpus.csv new file mode 100644 index 0000000..d17c6f8 --- /dev/null +++ b/backend/prompts/sentence_corpus.csv @@ -0,0 +1,25475 @@ +Good morning. 11 +Good afternoon! 13 +Good evening. 11 +Good night. 9 +Sweet dreams. 11 +Sleep tight. 10 +Hi there! 7 +Please wait. 10 +Quick meal. 9 +Let's meet. 8 +Help me! 6 +Thank you! 8 +Not know! 7 +Begin to know. 11 +Hurry up! 7 +Catch this. 9 +Come here. 8 +Tom stood. 8 +Snow fell. 8 +People learn. 11 +Midnight ticked. 14 +Nature taught. 12 +Thoughts overflowed. 18 +Humanity won. 11 +Weather changed. 14 +Memories accumulated. 19 +Hearts lightened. 15 +Clocks stopped. 13 +Schools closed. 13 +Wind whistled. 12 +Temperatures dropped. 19 +Dogs barked. 10 +Forecasts wavered. 16 +Cashiers smiled. 14 +Cars crashed. 11 +Be kind. 6 +Work hard. 8 +Stay humble. 10 +Smile often. 10 +Movement stilled. 15 +Be thankful. 10 +Have faith. 9 +Good job. 7 +No excuses. 9 +Eyes talk. 8 +Have patience. 12 +Amazing grace. 12 +Stay strong. 10 +Distant relative. 15 +Be yourself. 10 +Be grateful. 10 +Keep clam. 8 +Happy thoughts. 13 +Accept yourself. 14 +Dream big. 8 +Start living. 11 +Don't compare. 11 +Just imagine. 11 +Act justly. 9 +Aim high. 7 +Alive and well. 12 +Amplify hope. 11 +Baby steps. 9 +Be awesome. 9 +Be colorful. 10 +Be fearless. 10 +Be honest. 8 +Be spontaneous. 13 +Be still. 7 +Dance today. 10 +Don't panic. 9 +Don't stop. 8 +Everything counts. 16 +Explore magic. 12 +Fairy dust. 9 +Fear not. 7 +Feeling groovy. 13 +Find balance. 11 +Follow through. 13 +For real. 7 +Forever free. 11 +Forget this. 10 +Friends forever. 14 +Getting there. 12 +Give thanks. 10 +Good vibes. 9 +Happy endings. 12 +Hello gorgeous. 13 +Hold on. 6 +How lovely. 9 +I can. 4 +I remember. 9 +I will be. 7 +Imperfectly perfect. 18 +Infinite possibilities. 21 +Inhale exhale. 12 +Invite tranquility. 17 +Just because. 11 +Just believe. 11 +Just saying. 10 +Keep going. 9 +Keep smiling. 11 +Laugh today. 10 +Laughter heals. 13 +Let's go. 6 +Limited edition. 14 +Look up. 6 +Look within. 10 +Love fearlessly. 14 +Miracle happens. 14 +Move on. 6 +No boundaries. 12 +Not yet. 6 +Notice things. 12 +Oh, snap. 7 +Oh, really? 9 +Only believe. 11 +Perfectly content. 16 +Perfectly fabulous. 17 +Pretty awesome. 13 +Respect me. 9 +Rise above. 9 +Shift happens. 12 +Shine on. 7 +Sing today. 9 +Slow down. 8 +Stay beautiful. 13 +Stay focused. 11 +Stay true. 8 +Stay tuned. 9 +Take chances. 11 +Thank you. 8 +Then when? 8 +Tidy up. 6 +Think different. 14 +Think first. 10 +Think twice. 10 +Treasure today. 13 +Trust me. 7 +Please try again. 14 +Wanna play? 9 +What if? 6 +Why not? 6 +Woo hoo! 6 +You can. 6 +You matter. 9 +You sparkle. 10 +Well done! 8 +Oh god! 5 +My god! 5 +Of course! 8 +How joyful! 9 +How sad. 6 +Good heavens! 11 +How terrible. 11 +How disgraceful! 14 +Done wonderfully! 15 +What nonsense! 12 +How tragic! 9 +Flowers bloom. 12 +Get up! 5 +Child care. 9 +Brought up. 9 +Hang out. 7 +Pay attention. 12 +Job fair. 7 +Get dressed. 10 +My treat. 7 +Peel off. 7 +Oh, dear! 7 +Once more! 8 +Awesome one. 10 +Caught up. 8 +Take a road trip. 13 +Sounds good. 10 +Back out. 7 +Excuse me. 8 +Mention not. 10 +My pleasure. 10 +It's ok. 5 +That's enough. 11 +Get lost. 7 +Don't whisper. 11 +Don't laugh. 9 +Be punctual. 10 +Just kidding. 11 +By god's grace.! 11 +You surprise me. 13 +Don't ask a question. 16 +Don't try it again. 14 +Creativity takes courage. 22 +Let's go anywhere. 14 +Just be cool. 10 +Here we go. 8 +Be kind today. 11 +I am fabulous. 11 +Let's fly away. 11 +Hello sweetheart. 15 +Never look back. 13 +Never grow up. 11 +Life is poetry. 12 +Let's be afraid. 12 +See the good. 10 +Make today amazing. 16 +Let it be. 7 +Stop over-analyzing. 17 +Make yourself proud. 17 +Don't overthink it. 15 +Try new things. 12 +Seize the day. 11 +Good vibes only. 13 +Aspire to inspire. 15 +I'll be there. 10 +Maybe you're right. 15 +I trust you. 9 +Got your back. 11 +How are you? 9 +Let's get high. 11 +I respect you. 11 +Please forgive me. 15 +Now or never. 10 +I miss you. 8 +Get enough sleep. 14 +Let's get drunk. 12 +Let's just dance. 13 +Try something new. 15 +Keep it legal. 11 +I am sorry. 8 +Thanks so much. 12 +Protect your health. 17 +Keep it fun. 9 +Don't drive drunk. 14 +Celebrate your victories. 22 +Let's be friends. 13 +All caught up..! 11 +This is music. 11 +Believe in yourself. 17 +Over and out. 10 +Where are you? 11 +Wake your dreams. 14 +Life won't wait. 12 +Hold my hand. 10 +Who are you? 9 +This will pass. 12 +Speak the truth. 13 +You had time. 10 +I am kidding. 10 +Only hope remains. 15 +No strings are attached. 20 +Change is good. 12 +Learn from yesterday. 18 +Ohh god, save me. 13 +Live life daily. 13 +Imperfection is beauty. 20 +Make it happen. 12 +The recess is over. 15 +Family is forever. 15 +Always be yourself. 16 +Time heals everything. 19 +Forever my friend. 15 +I can do it. 8 +Mistakes make people. 18 +I don't know. 9 +You are kidding. 13 +Always be honest. 14 +Let's run away. 11 +Don't be afraid. 12 +The laughter is best. 17 +Don't make disturbances. 20 +Knowledge is power. 16 +Do not judge. 10 +Always remain neutral. 19 +Words can hurt. 12 +Please help me. 12 +Do not lie. 8 +Shoot the moon. 12 +Be my hero. 8 +All is well. 9 +Based on the results. 17 +Be here now. 9 +He works smartly. 14 +Be the change. 11 +Believe you can. 13 +Never give up. 11 +Live your potential. 17 +Better be going. 13 +Celebrate all success. 19 +Do it now. 7 +Do your best. 10 +Dream come true. 13 +Drill your skills. 15 +Get over it. 9 +Be on time. 8 +Grace under pressure. 18 +Go for it. 7 +Happiness is a choice. 18 +Health is wealth. 14 +Just be awesome. 13 +Keep it cool. 10 +Keep it simple. 12 +Keep morale high. 14 +Live, love, laugh. 15 +Nothing is impossible. 19 +Set your clear targets. 19 +Value your time. 13 +Do it right! 9 +Don't miss class. 13 +I really appreciate it. 19 +Make the bed. 10 +Got to run. 8 +Yes, you can. 10 +Be your best. 10 +Buy something useful. 18 +Call your mom. 11 +Cherish your kids. 15 +Can't stop now. 11 +Design your life. 14 +Develop your strength. 19 +Destiny is mine. 13 +It is possible. 12 +Keep on shining. 13 +Keep the faith. 12 +Respect your elders. 17 +What an idea! 10 +Really! is it! 10 +Thanks a lot! 10 +Take action now. 13 +That's for me. 10 +Today's a gift. 11 +Peace on earth. 12 +Oh.. what fun. 9 +Everything is ok. 14 +Be extraordinary. 15 +Lets's stay at home. 15 +Unbelievable but true. 19 +Listen to me. 10 +How dare he! 9 +What news! 8 +Well, never mind. 14 +Your attention, please. 20 +Please step in. 12 +As you like. 9 +It is fine. 8 +It is alright. 11 +Wait for me. 9 +We will win. 9 +I found it. 8 +It's your turn. 11 +Anything else? 12 +A dime a dozen. 11 +Beat around the bush. 17 +Better late than never. 19 +To pony up. 8 +Bite the bullet. 13 +Break a leg. 9 +Call it a day. 10 +Cutting corners. 14 +Snail's pace. 10 +Easy does it. 10 +Make ends meet. 12 +Sit tight. 8 +Living hand to mouth. 17 +Get out of hand. 12 +Get something out of your system. 27 +Get your act together. 18 +Give someone the benefit of the doubt. 31 +Go back to the drawing board. 23 +Hang in there. 11 +Hit the sack. 10 +It's not rocket science. 19 +Make a long story short. 19 +Miss the boat. 11 +No pain, no gain. 13 +On the ball. 9 +Pull someone's leg. 15 +Pull yourself together. 20 +So far so good. 11 +Speak of the devil. 15 +That's the last straw. 17 +The best of both worlds. 19 +To get bent out of shape. 19 +To make matters worse. 18 +Under the weather. 15 +You can say that again. 18 +Your guess is as good as mine. 23 +A perfect storm. 13 +Break the ice. 11 +As of right as rain. 15 +Come rain or shine. 15 +Cut the mustard. 13 +Get wind of something. 18 +That ship has sailed. 17 +Time is money. 11 +Waste not, want not. 16 +We see eye to eye. 13 +Weather the storm. 15 +Well begun is half done. 19 +Stab in the back. 13 +Lose your touch. 13 +Pitch in. 7 +Face the music. 12 +Blow off steam. 12 +Cut to the chase. 13 +Get over something. 16 +Look like a million dollars. 23 +Born with a silver spoon. 20 +To go from rags to riches. 20 +Pay an arm and a leg for something. 27 +To have sticky fingers. 19 +To give a run for one's money. 22 +Break-even. 9 +Break the bank. 12 +To be closefisted. 15 +To go dutch. 9 +Receive a kickback. 16 +To be loaded. 10 +Keep your chin up. 14 +Bread and butter. 14 +Buy a lemon. 9 +A hard nut to crack. 15 +Calm before the storm. 18 +When it rains, it pours. 19 +Chasing rainbows. 15 +Rain or shine. 11 +Under the sun. 11 +Once in a blue moon. 15 +Every cloud has a silver lining. 26 +Sail close to the wind. 18 +To hold out an olive branch. 22 +Can't see the forest for the trees. 27 +Out of woods. 10 +Barking up the wrong tree. 21 +Clear as mud. 10 +Mumbo jumbo. 10 +Have second thoughts. 18 +Draw a blank. 10 +Pass with flying colors. 20 +Night owl. 8 +Put a bug in his ear. 15 +Goose is cooked. 13 +Cry crocodile tears. 17 +A little birdie told me. 19 +Second to none. 12 +The icing on the cake. 17 +Giving the cold shoulder. 21 +Play it by ear. 11 +Slipped my mind. 13 +When pig fly. 10 +Class clown. 10 +Tall story. 9 +As keen as mustard. 15 +Act on. 5 +Act up. 5 +Aim at. 5 +Answer back. 10 +Back away. 8 +Be after. 7 +Be along. 7 +Be away. 6 +Be cut up. 7 +Bear down on. 10 +Calm down. 8 +Down to earth. 11 +Drive me nuts. 11 +Easy as pie. 9 +Everything but the kitchen sink. 27 +Fish out of water. 14 +Piece of cake. 11 +Scoot over. 9 +Put lipstick on a pig. 17 +Take the lid off. 13 +Knock on wood. 11 +Not a big fan. 10 +Break a bill. 10 +I don't buy it. 10 +Mystery meat. 11 +Fanny pack. 9 +Let's table this. 13 +Don't be such a wet blanket. 21 +Jump the shark. 12 +Long in the tooth. 14 +Green thumb. 10 +Horseback riding. 15 +Ate it. 5 +Behind the eight balls. 19 +Working the graveyard shift. 24 +Tell me about it. 13 +Shoot the breeze. 14 +Spill the beans. 13 +Keeping my fingers crossed. 23 +Out of this world. 14 +Over one's head. 12 +Sooner or later. 13 +Put oneself in one's place. 21 +I can eat a horse. 13 +Read between the lines. 19 +Rings a bell. 10 +Sleep on it. 9 +I bet. 4 +Grab a bite. 9 +Beats me. 7 +Twenty-four by seven. 17 +Touchwood. 9 +Sort of. 6 +Stop it! 6 +Never mind. 9 +Fair enough. 10 +Get a life. 8 +Nature calls. 11 +What's eating you? 14 +I owe you. 7 +Shame on you. 10 +I'm hosed. 7 +My two cents. 10 +Read out loud. 11 +Throw the dice. 12 +Turn to page. 10 +It's a long story. 13 +I blew it. 7 +I messed up. 9 +I am very sorry. 12 +Would you like to have coffee? 24 +I'm so happy for you! 15 +I'm sorry for your loss. 18 +I'm not really sure. 15 +We will meet again! 15 +Appreciate his efforts. 20 +I am pleased to meet you! 19 +Please don't shout. 15 +Please don't mind. 14 +You can have lunch with me. 21 +I'll be back in five minutes. 22 +That's interesting. 16 +Forgive me. 9 +How can I help you? 14 +It was the least I could do. 21 +Can you please repeat it? 20 +So kind of you. 11 +Glad to meet with you. 17 +Why did you trouble yourself? 24 +May I sit here? 11 +I'm really grateful. 16 +Could you please come early today? 28 +I am grateful to you! 16 +Thanks. I don't need anything. 23 +It would be very kind of you. 22 +May I say something? 16 +Thanks for the help. 16 +Thank you for your sensible advice. 29 +Don't worry about me. 16 +Don't cause inconvenience. 22 +Please stay a little while more. 26 +Thanks, I am well. 14 +Thanks for your visit. 18 +How do you do? 10 +It is your kindness! 16 +Please make yourself comfortable. 29 +Sure, ok! 7 +Dear friend, thank you. 19 +Let me introduce myself. 20 +All right, sir! 12 +Honestly, I came just to see you. 26 +Many thanks to you. 15 +You have to submit an assignment on time. 33 +Let us have coffee together. 23 +Can we play on the ground? 20 +May I come in, ma'am? 15 +Let's have some snacks. 18 +Wash your hands before lunch. 24 +I will obey my teacher. 18 +Wear a clean uniform. 17 +Wear polished shoes every day. 25 +Pardon me. 8 +I'm sorry sir. 10 +Good afternoon. 13 +Tell me about yourself? 19 +Tell me about your background? 25 +What are your strengths? 20 +What is your weakness? 18 +What is your strong point? 21 +What is your biggest fear? 21 +What motivates you? 16 +What makes you angry? 17 +Why do you want to switch? 20 +What are your goals? 16 +What are your hobbies? 18 +Can you describe your time management skills? 38 +What is your salary expectation? 27 +Why should I hire you? 17 +Are you comfortable with the office timings? 37 +Are you open to take risks? 21 +How do you work under pressure? 25 +Are you willing to relocate? 23 +Where do you see yourself years from now? 33 +Who is the most inspiring person in your life? 37 +Do you have any questions for me? 26 +I want to thank you for this opportunity. 33 +It's a pleasure for me to be here. 25 +Thank you for taking me into consideration for this position. 51 +I really want to work for this company. 31 +I have the profile you're looking for. 30 +Would you please repeat the question? 31 +Can you please say that again? 24 +Would you please say that again? 26 +Could you please speak a little bit harder? 35 +Sorry, I didn't understand you. 25 +I'm sorry, I didn't hear the last part. 29 +I'm very good at marketing. 21 +Thank you very much for your time. 27 +I'll be waiting for your call! 23 +I can do it very well. 16 +I hope we see each other again soon! 28 +I'll be expecting your call! 22 +I love the idea of working here. 25 +I hope I have the profile you're looking for. 35 +I want to thank you for having me here! 30 +When will the interview begin? 25 +I am present for the interview. 25 +I am a graduate. 12 +My hobby is art and music. 20 +I have two years of experience in computers. 36 +We will let you know soon. 20 +Has the interview begun? 20 +Of course, I can. 13 +I have an interest in teaching. 25 +What is the difference between confidence and overconfidence? 53 +What is the difference between hard work and smart work? 46 +Why do you want to work at our company? 30 +How do you feel about working nights and weekends? 41 +Can you work under pressure? 23 +Give me an example of your creativity. 31 +Are not you overqualified for this position? 37 +What are your career options right now? 32 +Would you lie for the company? 24 +Who has inspired you in your life and why? 33 +Have you considered starting your own business? 40 +Good day. 7 +Hello David. 10 +Hello there, Tom. 14 +Good afternoon, everybody. 23 +Good to see you. 12 +Good morning, everybody. 21 +Hey, Ron. 7 +Greetings all! 12 +May the sunshine brighten your day. 29 +Nice to see you. 12 +What's new? 8 +Ok. bye friends! 12 +See you again. 11 +Hello, everyone. 14 +How have you been? 14 +How's your day going? 16 +How's life? 8 +It's great to see you. 16 +Have a nice day! 12 +What's happening. 14 +Happy weekend. 12 +Good morning have a glorious day. 27 +Have a blessed day. 15 +Pleased to meet you. 16 +How are you getting on? 18 +How is it going? 12 +How's it going? 11 +What a lovely day! 14 +How are you today? 14 +How are you doing? 14 +Have a good trip. 13 +Let him go. 8 +Would you mind if I ask your help? 26 +Please share the cake recipe. 24 +Could you please take off your raincoat? 33 +Please share the book. 18 +Could you possibly hold my bottle? 28 +Could you carry my bag? 18 +Please keep quiet in the class. 25 +Please seat in order. 17 +Please don't be late. 16 +Please stay online. 16 +Please come again. 15 +Please follow the rules. 20 +Please keep your promise. 21 +Please, can you spare some money for the house? 38 +Please have a chair. 16 +Can I get your contact number? 24 +Tom, can you bring some vegetables from the market? 42 +Children, please don't mess inside the garden. 38 +Could I ask you to take me home? 24 +Could they wait for a minute? 23 +Let me know if you are ready. 22 +Let me give you some time to prepare lunch. 34 +Please sort it among you. 20 +Can you tell me what happened? 24 +May I leave early today? 19 +Will you go out with me? 18 +Please don't make this complicated. 29 +Could you give me some advice? 24 +Please attend to the guests. 23 +Please keep everything in order. 27 +Please keep quiet in the office. 26 +Please sign here. 14 +Please don't mind my words. 21 +Sherry please sits in a chair. 24 +Please wait for a while. 19 +Please move aside. 15 +Please be seated. 14 +Do you need my help? 15 +Time, please! 11 +Kindly hold it cautiously. 22 +Please don't speak loudly. 21 +Please introduce yourself. 23 +Please give me some time. 20 +Please don't embarrass me. 21 +Could you help me to make a teacher's day decoration? 42 +Will you come with me to take permission? 33 +Please call the doctor. 19 +Please don't disturb me. 19 +Let me go there. 12 +You are most welcome. 17 +Will you please move a little? 24 +Please allow me to go out. 20 +Make yourself comfortable. 23 +Please listen to me carefully. 25 +Will you help me? 13 +Please don't cry. 13 +Please speak slowly. 17 +Kindly take it with pleasure. 24 +Please come in. 12 +Coffee, please. 13 +May I come with you? 15 +Can I make a call? 13 +Please stop the car. 16 +Please have tea. 13 +Please don't be angry. 17 +Please hold on. 12 +Let him say. 9 +Please take your seat. 18 +Don't be formal. 12 +Please stay a little longer. 23 +Very kind of you. 13 +No mention. 9 +Can I use your computer, please? 26 +May I come in? 10 +Please let me know if you come or not. 29 +Can you play with me? 16 +Could you repeat that, please? 25 +It is all right. 12 +Let him prepare for the presentation. 31 +See you tomorrow. 14 +Take care. 8 +It's piece of cake. 14 +Can you buy a book for me? 19 +Let him go for a match. 17 +Okay, sir. 8 +Okay, take care. 13 +Hey, are you there. 15 +Please call me. 12 +Could you please come at 5 pm? 23 +Is it okay? 8 +I will be late. 11 +I will be in the office by 2:30 pm. 25 +Slightly delay reaching office. 27 +Please check the files. 19 +I will be available on skype. 23 +Still, I am not feeling well. 23 +Not able to join today as well. 24 +Sure sir I will inform him. 21 +Reaching late. 12 +Please send me the contact details. 29 +Okay please go head. 16 +Got it! 5 +Ok, I'll try to pick something good. 28 +How was I looking today? 19 +Lemme know. 9 +Don't park here. 12 +Keep to the left side. 17 +Drive slowly. 11 +Keep off the grass. 15 +For ladies only. 13 +Photography is prohibited. 23 +Don't smoke here. 13 +Dangerous turn ahead. 18 +It's too late. 10 +Before crossing the road, always see your right, left. 45 +Please stand in a queue. 19 +It is a crime to travel without a ticket. 32 +Offer space to women and the elderly. 30 +Please pull the chain during an emergency. 35 +Road closed ahead. 15 +This is not a public road. 20 +Stick on bills. 12 +Beware of dogs. 12 +There is a school ahead. 19 +Follow good manners. 17 +See him off. 9 +Don't tease her. 12 +Serve fast. 9 +Do not spit on the floor. 19 +Don't depend on others. 18 +Handle a book with clean hands. 25 +Please keep silent. 16 +Plucking flowers is prohibited. 27 +Don't doze while working. 20 +Don't fight in public. 17 +I'm sorry to be aggressive. 21 +I totally forgot, I apologize. 25 +I am really sorry. 14 +I am sorry to be late for reply. 24 +Sorry about that. 14 +I'm extremely sorry. 16 +I was just joking. 14 +I am sorry to fail the exam. 21 +I am sorry, I got late. 17 +Sorry for the delayed payment. 25 +I am sorry for interrupting you. 26 +Pardon me it's my mistake. 20 +Sorry, I could not call you. 22 +Sorry about that. I woke up late. 25 +It was not your fault. 17 +It was done by mistake. 18 +Don't worry, no harm is done. 22 +I'm sorry I forgot your birthday. 26 +I will never forgive you. 20 +I'm afraid you have the wrong number. 29 +Don't feel sorry for what I said. 25 +I apologise. 10 +Sorry for the inconvenience. 24 +Sorry for the trouble. 18 +I'm very sorry to hear this. 21 +Pardon me for interrupting you. 26 +It is my mistake. 13 +Sorry, tom. Can I call you back in a few hours? 35 +My humble apologies. 17 +Please excuse. 12 +Can you forgive me? 15 +I'm afraid. 8 +It was done unknowingly. 20 +I'm sorry madam. 12 +I'm sorry to be a nuisance. 20 +I'm sorry to be a fight. 17 +I'm sorry to be late. 15 +Hi there. 7 +See ya later. 10 +See you soon. 10 +Have a good one. 12 +How ya doin'? 9 +How are things? 12 +How's your family? 14 +What's up? 7 +What have you been up to lately? 25 +I'm fine, thanks. how about you? 24 +Pretty good. 10 +Not bad. 6 +Couldn't be better! 15 +Can't complain. 12 +I've been busy. 11 +Same as always. 12 +Not so great. 10 +It was nice chatting with you. 24 +Well, it's getting late. 19 +Anyway, I should get going. 22 +Sorry, but I'm afraid I need to. 24 +I'm sorry to cut you off, but I actually gotta run. 39 +Hi, this is jane. 13 +May I speak with john smith? 22 +Is john there? 11 +I'm calling about it. 16 +I'm returning your call. 19 +One moment, please. 16 +Hang on a sec. 10 +He's not here. would you like to leave a message? 37 +Could you ask him to call me back? 26 +Thanks for calling. 16 +It's fascinating. 14 +It's intriguing. 13 +I couldn't tear myself away. 22 +I couldn't put it down. 17 +I was so into it, I lost track of time. 29 +It does nothing for me. 18 +I was bored to tears. 16 +I was bored to death. 16 +I was dying of boredom. 18 +It's about as exciting as watching paint dry. 36 +What a pity! 9 +What a shame. 10 +How disappointing. 16 +That's too bad. 11 +It was a real letdown. 17 +It didn't live up to my expectations. 29 +He yelled. 8 +She screamed. 11 +I whispered. 10 +We chatted. 9 +He mumbled. 9 +My kids whined. 12 +He rambled. 9 +She stammered. 12 +I snapped at my husband. 19 +He muttered. 10 +He went on and on. 13 +She was beaming. 13 +The kids were smiling from ear to ear. 30 +He looked puzzled. 15 +She grinned. 10 +He winced when the doctor gave him an injection. 39 +She gave me a dirty look. 19 +She blushed. 10 +His eyes were glazed over. 21 +Why the long face? 14 +Her expression was unreadable. 26 +Sorry, I'm late. 12 +I overslept. 10 +My alarm didn't go off. 17 +I had to wait for ages for a bus. 24 +The bus was late. 13 +The traffic was terrible. 21 +I couldn't find a parking spot. 24 +I got lost coming here. 18 +I was tied up in a meeting. 20 +I just lost track of time. 20 +I really should help him. 20 +I promise that I'll come. 19 +I swear I'll come. 13 +No matter what happens, I'm going to come. 33 +Come hell or high water, I'll come. 27 +Are you free tonight? 17 +Are you doing anything tonight? 26 +Let me check my calendar. 20 +Do you wanna see a movie? 19 +Would you like to join me for dinner? 29 +I'd love to! 8 +Sounds great! 11 +I'd love to, but I have another commitment. 34 +I don't think I can. 14 +Maybe another time. 16 +I'm exhausted. 11 +I'm dead tired. 11 +I'm pooped. 8 +I'm spent. 7 +I'm beaten. 8 +I'm running on empty. 16 +I'm running on fumes. 16 +I can hardly keep my eyes open. 24 +I'm off to bed. 10 +I'm gonna hit the sack. 17 +It's bedtime for me. 15 +It's nice and warm today. 19 +It's absolutely boiling! 20 +We're having a real heatwave. 23 +The sun's really strong today. 24 +It's hot and humid. 14 +It's a little chilly. 16 +It's freezing. 11 +The temperature's dropping. 23 +Make sure to bundle up. 18 +We're expecting some winter weather. 30 +It's drizzling. 12 +It's pouring. 10 +It's raining cats and dogs. 21 +I got caught in a downpour. 21 +I think the rain's letting up. 23 +He's not the sharpest tool in the shed. 30 +She's a few cards short of a deck. 25 +He's a bit slow. 11 +She's a complete idiot. 18 +He's really dumb. 13 +Can you tell me? 12 +Could you tell me? 14 +I'd like to know. 12 +Do you know? 9 +Do you have any idea? 16 +Could anyone tell me? 17 +Would you happen to know? 20 +I don't suppose you know? 19 +I was wondering. 13 +I'm calling to find out. 18 +Sorry to interrupt, but. 20 +Excuse me, could I talk to you for a minute? 34 +Could I jump in here? 16 +Sorry, I just want to say that. 24 +May I have a word? 13 +Excuse me, do you have a minute? 25 +Keep up the good work! 17 +That was a nice try. 15 +That's a real improvement. 21 +You're on the right track. 20 +You've almost got it. 16 +You're doing great. 15 +Don't give up! 10 +You can do it! 10 +Give it your best shot. 18 +Nice job! 7 +Hang in there! 11 +You did great! 11 +I'll always remember. 17 +If I remember correctly. 20 +I have a vague recollection of. 25 +It's on the tip of my tongue. 21 +My mind went blank. 15 +It doesn't ring a bell. 17 +Please remember to. 16 +I'd like to remind you about it. 24 +You haven't forgotten about groceries, have you? 40 +It completely slipped my mind! 25 +I'll never forget. 14 +As far as I can recall. 17 +Please don't forget to. 18 +Yeah, right. 10 +You're kidding. 12 +You're pulling my leg. 17 +That's a bit of an exaggeration. 25 +He's stretching the truth. 21 +He's not telling the whole truth. 26 +She's being economical with the truth. 31 +His story is fishy. 15 +That's an outright lie. 18 +That's a pack of lies. 16 +Thanks a lot. 10 +Thank you so much. 14 +Thanks a million! 14 +Thanks for your help. 17 +That's so kind of you. 16 +I can't thank you enough. 19 +I owe you one. 10 +You're welcome. 12 +No problem. 9 +No worries. 9 +Don't mention it. 13 +Glad to help. 10 +I'm sorry that I could not come. 24 +It's my fault. 10 +Oops, sorry. 10 +I should have called you. 20 +I apologize for the delay. 21 +That's ok. 7 +It happens. 9 +Don't worry about it. 16 +I forgive you. 11 +I just wanted to introduce myself. I'm Shraa. 35 +I don't think we've met before. My name's Shraa. 35 +This is Shraa. 11 +I'd like you to meet Shraa. 20 +Have you met Shraa? 15 +I'd like to introduce you to shraa. 27 +Nice to meet you. 13 +It's a pleasure to meet you. 21 +And you. 6 +I have no idea. 11 +I can't help you there. 17 +I've been wondering that too. 23 +I have no clue. 11 +What do you think about this? 23 +How do you feel about it? 19 +What's your opinion on this? 22 +What are your views on this? 22 +In my opinion. 11 +I'd say. 5 +Personally, I believe. 19 +If you ask me. 10 +The way I see it. 12 +From my point of view. 17 +Personally, I think. 17 +I've never given it much thought. 26 +I don't have strong feelings either way. 32 +It doesn't make any difference to me. 29 +I have no opinion on the matter. 25 +That's so true. 11 +That's for sure. 12 +I agree 100%. 9 +I couldn't agree with you more. 24 +That's exactly what I think. 22 +I'll say! 6 +I suppose so. 10 +That's exactly how I feel. 20 +I don't think so. 12 +I beg to differ. 12 +I'm afraid I don't agree. 18 +I'm not so sure about that. 20 +That's not how I see it. 17 +Not necessarily. 14 +Yes, but. 7 +On the contrary. 13 +No way. 5 +I totally disagree. 16 +That's great! 10 +How wonderful! 12 +I'm going to. 9 +I'm planning to. 12 +I hope to. 7 +I'd like to. 8 +I might. 6 +I'm thinking about it. 17 +I love cooking. 12 +I'm really into cricket. 19 +I live for cricket. 15 +Cricket is my thing. 16 +I'm crazy about cricket. 19 +I'm not a huge fan of cricket. 22 +Cricket isn't my cup of tea. 21 +I don't really care about cricket. 27 +I'm not into cricket. 16 +I can't stand cricket. 17 +Where do you work? 14 +What do you do? 11 +I work at a bank. 12 +I'm a teacher. 10 +I'm unemployed. 12 +I'm looking for work. 16 +I'm a stay-at-home mom. 16 +I run my own business. 17 +I'm a freelance writer. 18 +I'm retired. 9 +What do you do for a living? 21 +I'm between jobs at the moment. 24 +Would you mind repeating that? 25 +What do you mean? 13 +I'm not sure I follow you. 19 +Could you explain this? 19 +Do you understand what I'm saying? 27 +Does that make sense? 17 +Do you know what I mean? 18 +Are you with me so far? 17 +Is that clear? 11 +I need a little help. 16 +Could you help me out? 17 +Could you give me a hand? 19 +Could you spare a couple of minutes? 29 +Could you do me a favor? 18 +I'm not happy about this. 19 +I'm sorry, but this is unacceptable. 29 +I'm not very satisfied with this product. 33 +I can't stand it when the internet is slow. 33 +Do you have change? 15 +Where can I find a washroom? 22 +I'm just browsing. 14 +I'm looking for jeans. 17 +How much is this? 13 +Is this on sale? 12 +Can I try it on? 11 +I'll take it! 9 +I'd like to return this. 18 +I'm starving! 10 +Let's grab a bite to eat. 18 +How about eating out tonight? 24 +I brought some snacks. 18 +This soup is delicious! 19 +Could I have another helping of potatoes? 34 +I'll have it. 9 +Could we get the check, please? 25 +I'm full. 6 +I'm stuffed. 9 +Where's the remote? 15 +Is there anything good on? 21 +Can I change the channel? 20 +I've already seen this episode. 25 +This is a rerun. 12 +I love this show! 13 +There are too many commercials. 26 +Stop channel surfing. 18 +Check the tv guide. 15 +It's the season finale! 18 +It cost a fortune. 14 +It cost an arm and a leg. 18 +That's a rip off. 12 +I can't afford it. 13 +That's a bit pricey. 15 +That's quite reasonable. 20 +But what a price to pay! 18 +That's a good deal. 14 +It was a real bargain. 17 +It was dirt cheap. 14 +Would you like a drink? 18 +Do you want some water? 18 +Can I get you something to eat? 24 +That'd be great, thanks. 19 +No,thanks. i'm ok. 13 +Would you mind opening the window? 28 +Could you please turn off the lights? 30 +Can you pass me the chicken? 22 +Please send me the information. 26 +I'd appreciate it if you could wash the fruits. 37 +It's a piece of cake. 15 +It's a cinch. 9 +It's a breeze. 10 +Anyone can do it. 13 +There's nothing to it. 17 +It's hard. 7 +It's a bit tricky. 13 +It's really tough. 14 +It's not a walk in the park. 20 +It's very demanding. 16 +She's in her early twenties. 22 +He's in his late thirties. 20 +She just turned six. 16 +Act your age! 10 +I'm not as young as I used to be. 23 +I'm not over the hill yet! 19 +He's no spring chicken. 18 +She's wise beyond her years. 22 +I'm having a senior moment. 21 +He lived to a ripe old age. 20 +No comment. 9 +I'm not at liberty to say. 19 +Wait and see. 10 +Let me get back to you. 17 +I'm sorry, that's confidential. 25 +I'm sorry, that's personal. 21 +I'd rather not talk about it. 22 +It's none of your business. 21 +Mind your own business. 19 +Why do you want to know? 18 +Could you give me a minute? 21 +Let me see. 8 +I'll be right with you. 17 +Bear with me. 10 +That'll have to wait. 16 +Be patient. 9 +Not so fast! 9 +Hold your horses! 14 +Just a sec. 8 +Let me think. 10 +What's the matter? 14 +What's wrong? 10 +Are you all right? 14 +You look a bit down. 15 +Is there anything I can do to help? 27 +Cheer up! 7 +It's not so bad. 11 +Everything will be ok. 18 +Look on the bright side. 19 +It's not the end of the world. 22 +Chin up! 6 +It's on me. 7 +I'd like to make a toast. 18 +Here's to. 7 +Another round of drinks, please. 27 +Put it on my tab. 12 +He's a bit tipsy. 12 +He's completely wasted. 19 +She's trying to drown her sorrows. 27 +I'm the designated driver. 21 +I had a hangover. 13 +He's completely sloshed. 20 +He's completely plastered. 22 +I was hungover. 12 +If I had to take a guess, I'd say. 24 +It's difficult to say, but I think. 27 +Off the top of my head, I'd say. 23 +It's about a kilogram. 17 +It's around kilometers. 19 +I wouldn't be surprised if. 21 +There's a good chance. 17 +I have a feeling. 13 +I'm single. 8 +I have a boyfriend. 15 +We're engaged. 11 +We're getting married in June. 24 +I'm married. 9 +I've been married for  years. 22 +I'm divorced. 10 +I'm not looking for anything serious. 30 +I'm not quite over my ex. 18 +He's short on cash. 14 +He's broke. 8 +His bank account is overdrawn. 25 +He's just scraping by. 17 +He makes minimum wage. 18 +He's scrimping and saving. 21 +She's very wealthy. 15 +She's quite well-off. 16 +She's loaded. 10 +She's filthy rich. 14 +She inherited a fortune. 20 +She's making a killing. 18 +She's raking in the cash. 19 +She's rolling in dough. 18 +That's a rip-off. 12 +That's right. 10 +That's spot on. 11 +You've hit the nail on the head. 24 +You've nailed it. 13 +I'm afraid you're right. 18 +He's really sharp. 14 +She's brilliant. 13 +He's very bright. 13 +She's a genius. 11 +He's a smart cookie. 15 +Good luck! 8 +Better luck next time. 18 +Just my luck! 10 +Lucky you! 8 +That was a stroke of luck. 20 +Some people have all the luck. 24 +As luck would have it. 17 +He's down on his luck. 16 +No such luck. 10 +What rotten luck! 14 +I'm absolutely sure. 16 +I'm positive that. 14 +I have no doubt that. 16 +I'm a hundred percent certain. 24 +I'm convinced that. 15 +Chances are that. 14 +Odds are that. 11 +I seriously doubt it. 17 +Probably not. 11 +It's not very likely. 16 +There's not much chance of that. 25 +I'd be very surprised if that happened. 31 +I wouldn't bet on it. 15 +That'll never happen. 17 +She was born to sing. 16 +He's a natural. 11 +She could do it in her sleep. 22 +He knows it inside out. 18 +She knows Pune like the back of her hand. 32 +She's a walking encyclopedia of geography. 35 +He's in a class of his own. 19 +He's the best in the business. 23 +She's very gifted. 14 +He's a math whiz. 12 +I'm debating between. 17 +I can't make up my mind. 17 +I'm on the fence. 12 +I'll take that into consideration. 28 +On the other hand. 14 +I'm having second thoughts. 22 +I changed my mind. 14 +He convinced me to buy it. 20 +Looking back, I know it was the right decision. 38 +It's up to you. 10 +I'm scared of that. 14 +I can't help thinking that. 21 +It's been keeping me up at night. 25 +Thank goodness! 13 +What a relief! 11 +You had me worried for a moment. 25 +You have no idea what a relief it is. 28 +That's a huge load off my mind. 23 +You look nice. 11 +You look amazing! 14 +What a beautiful dress! 19 +I like your shirt. 14 +The lasagna is delicious. 21 +You're a fantastic cook. 19 +My compliments to the chef! 22 +What a nice apartment! 18 +You have a beautiful home. 21 +She's so cute! 10 +Your kids are a lot of fun. 20 +They got off on the wrong foot. 24 +He got on the teacher's bad side. 25 +She took offense at his comment. 26 +He has a chip on his shoulder. 23 +She got bent out of shape. 20 +He left in a huff. 13 +She got her panties in a wad. 22 +He has a short fuse. 15 +She dissed my mother. 17 +He got his nose out of joint. 22 +It's as light as a feather. 20 +It's as dry as a bone. 15 +It's as flat as a pancake. 19 +He's as mad as a hornet. 17 +It's as old as the hills. 18 +It's as quick as lightning. 21 +She's as sick as a dog. 16 +He's as strong as an ox. 17 +They're as different as night and day. 30 +She's as stubborn as a mule. 21 +He's as proud as a peacock. 20 +She's as white as a sheet. 19 +It's as solid as a rock. 17 +It's as good as new. 14 +It's as clear as mud. 15 +How about trying something new? 26 +Why don't you talk to your boss? 24 +Maybe we should do more research. 27 +I'd recommend going to the doctor. 27 +Have you thought about buying a new mobile? 35 +I'm afraid that's not quite right. 26 +I'm afraid you're mistaken. 21 +No, you've got it wrong. 18 +Oh no, that's not correct. 20 +Actually, I don't think.... 19 +No, that's all wrong. 16 +Oh no. 4 +That's terrible. 13 +Poor you. 7 +I'm so sorry to hear that. 19 +Do you have any bags to check? 23 +Would you like a window seat or an aisle seat? 36 +Here's your boarding pass. 21 +Your flight leaves from the gate. 27 +Your seat number is f. 17 +The flight is now boarding. 22 +Your flight has been delayed. 24 +Your flight has been canceled. 25 +What is the purpose of your trip? 26 +The crime rate rose. 16 +The crime rate went up. 18 +There was a sharp increase in crime. 29 +There was a gradual rise in crime. 27 +There was a spike in crime. 21 +The crime rate reached its peak. 26 +The crime rate plateaued. 21 +There was a slight decrease in crime. 30 +The crime rate dropped. 19 +The crime rate plummeted. 21 +It'll happen any day now. 19 +It's right around the corner. 23 +In the near future. 15 +It won't happen in our lifetime. 25 +It's a sign of things to come. 22 +I'm counting down the days until. 26 +I'll get around to it. 16 +I'll do it right away. 16 +Time will tell. 12 +It's bound to happen eventually. 26 +I'll get right on it. 15 +My flight was overbooked. 21 +My flight was delayed. 18 +My luggage was lost. 16 +I was jet-lagged. 13 +My hotel was in a seedy area. 22 +I was mugged. 10 +The weather was miserable. 22 +I got the runs. 11 +The place was a tourist trap. 23 +I couldn't wait to get back home. 25 +My flight was canceled. 19 +Could you send me the report? 23 +Sorry, I'm a bit busy right now. 24 +Let me know when you're available. 27 +I think you might be mistaken. 24 +I'm afraid I disagree. 17 +I'm not quite satisfied with this work. 31 +It would be great if you could do this today. 35 +Could I borrow your pen? 19 +Can I just say something here, please? 31 +I wonder if I might use your phone. 27 +I was wondering if you could help me. 29 +Would you mind opening the door? 26 +Could you come here? 16 +Do you mind if I take your business card? 32 +Can we talk a little later? 21 +His performance was not very good. 28 +I don't really like it, I'm afraid. 26 +I'd prefer to use different colors in this picture. 41 +I'm not very fond of this song. 23 +Would you lend me a pencil, please? 28 +I'm not so sure that's a good idea. 25 +I'll have a coffee, please. 21 +Do you mind if I open the window? 25 +Sorry, I am a bit busy right now. 25 +No, thanks. 9 +I'm afraid not. 11 +Could you send me the picture? 24 +Could you please send me the report? 29 +Have a seat, please. 16 +I don't think that's such a good idea. 28 +Can you hold, please? 17 +Excuse me, could you tell me the time, please? 37 +You can do it. 10 +Well done. 8 +I am proud of you. 13 +Bravo! you have done a great job. 25 +Keep it up. 8 +Dream big and dare to fail. 21 +Ambition is the path to success. 26 +Believe it can be done. 18 +Clarity affords focus. 19 +The key to life is accepting challenges. 33 +Self-confidence is the memory of success. 34 +Set your goals high. 16 +Let's succeed in your mission. 24 +Failure is simply the opportunity to begin again. 41 +My stomach is upset. 16 +I have pain in the chest. 19 +Jack's fever is down now. 19 +Sam is suffering from dengue. 24 +I have to consult a doctor. 21 +I have constipation. 17 +My heart is beating fast. 20 +Take a dose of medicine. 19 +Prevention is better than cure. 26 +A morning walk is useful for health. 29 +His condition is out of danger now. 28 +The patient's condition is critical. 30 +My eyes are not well. 16 +There is beauty in good health. 25 +Cancer is a serious disease. 23 +Don't eat too much. 14 +I feel like vomiting. 17 +I am feeling feverish. 18 +Can you read the thermometer? 24 +A good diet is the best doctor. 24 +Milk is a perfect diet. 18 +He is physically fit. 17 +He is mentally fit. 15 +Don't blame me. 11 +The case has been postponed. 23 +He is a hardcore criminal. 21 +Mark is an intelligent lawyer. 25 +It was a brutal murder. 18 +Crime has been proved. 18 +This is a heinous crime. 19 +What is the evidence? 17 +The police have authentic proofs. 28 +He has been released from prison. 27 +The criminal has absconded. 23 +Your act is illegal. 16 +These are all forged documents. 26 +The criminal has been sentenced to death. 34 +What is the judgment in the case? 26 +John is an eyewitness. 18 +Justice delayed is justice denied. 29 +He is a law-abiding man. 18 +When will the tournament begin? 26 +What is the score? 14 +Select the players. 16 +He is a very good player. 19 +Hit the ball with the bat. 20 +He is playing chess. 16 +The match has begun. 16 +Strike out. 9 +Are we all on? 10 +Can everybody hear me? 18 +Could you speak more slowly, please? 30 +Is that okay with everyone? 22 +I'm back on the line again. 20 +Good morning ladies and gentlemen. 29 +Good afternoon ladies and gentlemen. 31 +Can I ask that we all state our names, please? 36 +Good evening ladies and gentlemen. 29 +I'm going to make this quick for you. 28 +Today I would like to outline our plans. 32 +Well, that brings me to the end of my presentation. 41 +Thanks so much for listening. 24 +Well, that's it from me. thanks a lot. 28 +Sorry, I interrupted you. 21 +Please go on. 10 +Sorry, but just to clarify. 22 +That's an excellent point. 21 +I totally agree with you on that. 26 +Yes, I get what you're saying. 23 +I tell you how we see it? 18 +Are you free to talk again next week? 29 +When can we talk about this again? 27 +Let's start meeting. 16 +I am not able to join the office today. 30 +Please inform him officially. 25 +Sure sir will inform him. 20 +You can call him now. 16 +I am still not feeling well. 22 +I am Robin. 8 +I live in Delhi. 12 +I believe in hard work. 18 +I have done my MBA. 14 +My hobby is story writing. 21 +My favorite subject is science. 26 +My office is in the model town. 24 +My favorite sport is cricket. 24 +He is a doctor. 11 +I am punctual. 11 +I know English and Hindi. 20 +May I come in sir? 13 +Good morning to all. 16 +I have come for an interview. 23 +He is a businessman. 16 +She is a housewife. 15 +I have to support my family. 22 +I am interested in sports. 21 +I am always sociable. 17 +I am interested to join the army. 26 +I can speak English fluently. 24 +I have a brother and a sister. 23 +There are three members in my family. 30 +Boss has accepted the mark's resignation. 34 +Did I come late? 12 +Boss has warned sam. 16 +Please call the manager. 20 +Type the letter quickly. 20 +What is lunchtime? 15 +Where is the notice board? 21 +Can I complete this work? 20 +It is my first day in the office. 25 +There is too much pressure of work. 28 +Please dust my table. 17 +He will come late to the office today. 30 +At which position are you working? 28 +Ron is on the leave for two days. 25 +Please meet the manager. 20 +How many shifts are there? 21 +Where is the lobby? 15 +Is your leave application approved? 30 +I have also applied for this position. 31 +Please complete your work on time. 28 +I like cake. 9 +You like cake. 11 +We like cake. 10 +They like cake. 12 +He likes cake. 11 +She likes cake. 12 +Shraa likes cake. 14 +Cat likes cake. 12 +I love it. 7 +You love it. 9 +We love it. 8 +They love it. 10 +He loves it. 9 +She loves it. 10 +Shraa loves it. 12 +Cat loves it. 10 +I know it. 7 +You know it. 9 +We know it. 8 +They know it. 10 +He knows it. 9 +She knows it. 10 +Shraa knows it. 12 +Cat knows it. 10 +I am happy. 8 +You are happy. 11 +We are happy. 10 +They are happy. 12 +He is happy. 9 +She is happy. 10 +Shraa is happy. 12 +You are sorry. 11 +We are sorry. 10 +They are sorry. 12 +He is sorry. 9 +She is sorry. 10 +Shraa is sorry. 12 +I am feeling good. 14 +You are feeling good. 17 +We are feeling good. 16 +They are feeling good. 18 +He is feeling good. 15 +She is feeling good. 16 +Shraa is feeling good. 18 +I am at home. 9 +You are at home. 12 +We are at home. 11 +They are at home. 13 +He is at home. 10 +She is at home. 11 +Shraa is at home. 13 +Cat is at home. 11 +I think so. 8 +You think so. 10 +We think so. 9 +They think so. 11 +He thinks so. 10 +She thinks so. 11 +Shraa thinks so. 13 +I hope so. 7 +You hope so. 9 +We hope so. 8 +They hope so. 10 +He hopes so. 9 +She hopes so. 10 +Shraa hopes so. 12 +I live here. 9 +You live here. 11 +We live here. 10 +They live here. 12 +He lives here. 11 +She lives here. 12 +Shraa lives here. 14 +I have a name. 10 +You have a name. 12 +We have a name. 11 +They have a name. 13 +He has a name. 10 +She has a name. 11 +Shraa has a name. 13 +Cat has a name. 11 +I have a cold. 10 +You have a cold. 12 +We have a cold. 11 +They have a cold. 13 +He has a cold. 10 +She has a cold. 11 +Shraa has a cold. 13 +Cat has a cold. 11 +I am. 3 +You are. 6 +We are. 5 +They are. 7 +He is. 4 +She is. 5 +Shraa is. 7 +I like. 5 +You like. 7 +We like. 6 +They like. 8 +He likes. 7 +She likes. 8 +Shraa likes. 10 +Cat likes. 8 +I know. 5 +You know. 7 +We know. 6 +They know. 8 +He knows. 7 +She knows. 8 +Shraa knows. 10 +Cat knows. 8 +I liked it. 8 +You liked it. 10 +We liked it. 9 +They liked it. 11 +He liked it. 9 +She liked it. 10 +Shraa liked it. 12 +Cat liked it. 10 +I loved it. 8 +You loved it. 10 +We loved it. 9 +They loved it. 11 +He loved it. 9 +She loved it. 10 +Shraa loved it. 12 +Cat loved it. 10 +I knew it. 7 +You knew it. 9 +We knew it. 8 +They knew it. 10 +He knew it. 8 +She knew it. 9 +Shraa knew it. 11 +I was happy. 9 +You were happy. 12 +We were happy. 11 +They were happy. 13 +He was happy. 10 +She was happy. 11 +Shraa was happy. 13 +Cat was happy. 11 +I was sorry. 9 +You were sorry. 12 +We were sorry. 11 +They were sorry. 13 +He was sorry. 10 +She was sorry. 11 +Shraa was sorry. 13 +I was at home. 10 +You were at home. 13 +We were at home. 12 +They were at home. 14 +He was at home. 11 +She was at home. 12 +Shraa was at home. 14 +The cat is at home. 14 +I was. 4 +You were. 7 +We were. 6 +They were. 8 +He was. 5 +She was. 6 +Shraa was. 8 +I knew. 5 +You knew. 7 +We knew. 6 +They knew. 8 +He knew. 6 +She knew. 7 +Shraa knew. 9 +I will go. 7 +You will go. 9 +We will go. 8 +They will go. 10 +He will go. 8 +She will go. 9 +Shraa will go. 11 +I will help. 9 +You will help. 11 +We will help. 10 +They will help. 12 +He will help. 10 +She will help. 11 +Shraa will help. 13 +I will check. 10 +You will check. 12 +We will check. 11 +They will check. 13 +He will check. 11 +She will check. 12 +Shraa will check. 14 +I will have to go. 13 +You will have to go. 15 +We will have to go. 14 +They will have to go. 16 +He will have to go. 14 +She will have to go. 15 +Shraa will have to go. 17 +I will come. 9 +You will come. 11 +We will come. 10 +They will come. 12 +He will come. 10 +She will come. 11 +Shraa will come. 13 +I will be there. 12 +You will be there. 14 +We will be there. 13 +They will be there. 15 +He will be there. 13 +She will be there. 14 +Shraa will be there. 16 +I will have a coffee. 16 +You will have a coffee. 18 +We will have a coffee. 17 +They will have a coffee. 19 +She will have coffee. 17 +She will have a coffee. 18 +Shraa will have a coffee. 20 +I will discuss with him. 19 +You will discuss with him. 21 +We will discuss with him. 20 +They will discuss with him. 22 +He will discuss with him. 20 +She will discuss with him. 21 +Shraa will discuss with him. 23 +I will. 5 +You will. 7 +We will. 6 +They will. 8 +He will. 6 +She will. 7 +Shraa will. 9 +I am working. 10 +You are working. 13 +We are working. 12 +They are working. 14 +He is working. 11 +She is working. 12 +Shraa is working. 14 +I am listening. 12 +You are listening. 15 +We are listening. 14 +They are listening. 16 +He is listening. 13 +She is listening. 14 +Shraa is listening. 16 +I am checking. 11 +You are checking. 14 +We are checking. 13 +They are checking. 15 +He is checking. 12 +She is checking. 13 +Shraa is checking. 15 +I am going. 8 +You are going. 11 +We are going. 10 +They are going. 12 +He is going. 9 +She is going. 10 +Shraa is going. 12 +I am leaving. 10 +You are leaving. 13 +We are leaving. 12 +They are leaving. 14 +He is leaving. 11 +She is leaving. 12 +Shraa is leaving. 14 +I am being serious. 15 +You are being serious. 18 +We are being serious. 17 +They are being serious. 19 +He is being serious. 16 +She is being serious. 17 +Shraa is being serious. 19 +I am waiting. 10 +You are waiting. 13 +We are waiting. 12 +They are waiting. 14 +He is waiting. 11 +She is waiting. 12 +Shraa is waiting. 14 +I am reading. 10 +You are reading. 13 +We are reading. 12 +They are reading. 14 +He is reading. 11 +She is reading. 12 +Shraa is reading. 14 +I am meeting. 10 +I am joining. 10 +I am playing. 10 +I am seeing it. 11 +I am helping. 10 +I am singing. 10 +We are meeting. 12 +They are joining. 14 +You are playing. 13 +We are driving. 12 +They are seeing. 13 +You are watching. 14 +They are helping. 14 +You are singing. 13 +She is meeting. 12 +Shraa is joining. 14 +He is playing. 11 +She is driving. 12 +Shraa is seeing. 13 +He is watching. 12 +Shraa is helping. 14 +He is singing. 11 +I am cooking. 10 +I am driving. 10 +I am watching. 11 +We are joining. 12 +They are playing. 14 +You are driving. 13 +We are watching. 13 +He is joining. 11 +She is joining. 12 +Shraa is playing. 14 +He is driving. 11 +She is watching. 13 +I was laughing. 12 +You were laughing. 15 +We were laughing. 14 +They were laughing. 16 +He was laughing. 13 +She was laughing. 14 +Shraa was laughing. 16 +I was sleeping. 12 +You were sleeping. 15 +We were sleeping. 14 +They were sleeping. 16 +He was sleeping. 13 +She was sleeping. 14 +Shraa was sleeping. 16 +I was checking. 12 +You were checking. 15 +We were checking. 14 +They were checking. 16 +He was checking. 13 +She was checking. 14 +Shraa was checking. 16 +I was going home. 13 +You were going home. 16 +We were going home. 15 +They were going home. 17 +He was going home. 14 +She was going home. 15 +Shraa was going home. 17 +I was waiting. 11 +You were waiting. 14 +We were waiting. 13 +They were waiting. 15 +He was waiting. 12 +She was waiting. 13 +Shraa was waiting. 15 +You were reading. 14 +They were reading. 15 +Shraa was reading. 15 +I was reading. 11 +We were reading. 13 +He was reading. 12 +She was reading. 13 +I was leaving. 11 +You were leaving. 14 +We were leaving. 13 +They were leaving. 15 +He was leaving. 12 +She was leaving. 13 +Shraa was leaving. 15 +I was working. 11 +He was meeting. 12 +She was joining. 13 +Shraa was playing. 15 +I was driving. 11 +He was seeing. 11 +She was watching. 14 +I was helping. 11 +He was singing. 12 +You were working. 14 +We were meeting. 13 +They were joining. 15 +You were playing. 14 +We were driving. 13 +They were seeing. 14 +You were watching. 15 +She was driving. 13 +They were helping. 15 +You were singing. 14 +I will be driving. 14 +You will be driving. 16 +We will be driving. 15 +They will be driving. 17 +He will be driving. 15 +She will be driving. 16 +Shraa will be driving. 18 +I will be working. 14 +You will be working. 16 +We will be working. 15 +They will be working. 17 +He will be working. 15 +She will be working. 16 +Shraa will be working. 18 +I will be meeting him tomorrow. 25 +You will be meeting him tomorrow. 27 +We will be meeting him tomorrow. 26 +They will be meeting him tomorrow. 28 +He will be meeting him tomorrow. 26 +She will be meeting him tomorrow. 27 +Shraa will be meeting him tomorrow. 29 +I will be playing. 14 +You will be playing. 16 +We will be playing. 15 +They will be playing. 17 +He will be playing. 15 +She will be playing. 16 +Shraa will be playing. 18 +I will be having dinner. 19 +You will be having dinner. 21 +We will be having dinner. 20 +They will be having dinner. 22 +He will be having dinner. 20 +She will be having dinner. 21 +Shraa will be having dinner. 23 +I will be seeing him tomorrow. 24 +You will be seeing him tomorrow. 26 +We will be seeing him tomorrow. 25 +They will be seeing him tomorrow. 27 +He will be seeing him tomorrow. 25 +She will be seeing him tomorrow. 26 +Shraa will be seeing him tomorrow. 28 +I will be reading. 14 +You will be reading. 16 +We will be reading. 15 +They will be reading. 17 +He will be reading. 15 +She will be reading. 16 +Shraa will be reading. 18 +I will be waiting. 14 +You will be waiting. 16 +We will be waiting. 15 +They will be waiting. 17 +He will be waiting. 15 +She will be waiting. 16 +Shraa will be waiting. 18 +I will be leaving. 14 +You will be leaving. 16 +We will be leaving. 15 +They will be leaving. 17 +He will be leaving. 15 +She will be leaving. 16 +Shraa will be leaving. 18 +You will be meeting. 16 +We will be joining. 15 +She will be seeing. 15 +Shraa will be watching. 19 +You will be helping. 16 +We will be singing. 15 +I have completed my report. 22 +You have completed your report. 26 +We have completed our report. 24 +They have completed their report. 28 +He has completed his report. 23 +She has completed her report. 24 +Shraa has completed his report. 26 +I have seen this movie. 18 +You have seen this movie. 20 +We have seen this movie. 19 +They have seen this movie. 21 +He has seen this movie. 18 +She has seen this movie. 19 +Shraa has seen this movie. 21 +I have been to Mumbai. 17 +You have been to Mumbai. 19 +We have been to Mumbai. 18 +They have been to Mumbai. 20 +He has been to Mumbai. 17 +She has been to Mumbai. 18 +Shraa has been to Mumbai. 20 +I have got a new job. 15 +You have got a new job. 17 +We have got a new job. 16 +They have got a new job. 18 +He has got a new job. 15 +She has got a new job. 16 +Shraa has got a new job. 18 +I have met him. 11 +You have met him. 13 +We have met him. 12 +They have met him. 14 +He has met him. 11 +She has met him. 12 +Shraa has met him. 14 +I have lived there. 15 +You have lived there. 17 +We have lived there. 16 +They have lived there. 18 +He has lived there. 15 +She has lived there. 16 +Shraa has lived there. 18 +I have reached home. 16 +You have reached home. 18 +We have reached home. 17 +They have reached home. 19 +He has reached home. 16 +She has reached home. 17 +Shraa has reached home. 19 +I have received it. 15 +You have called. 13 +We have worked. 12 +They have gone. 12 +I have done it. 11 +You have taken it. 14 +We have seen it. 12 +They have said. 12 +I have made it. 11 +You have got it. 12 +I had called him. 13 +You had called him. 15 +We had called him. 14 +They had called him. 16 +He had called him. 14 +She had called him. 15 +Shraa had called him. 17 +I had met him. 10 +You had met him. 12 +We had met him. 11 +They had met him. 13 +He had met him. 11 +She had met him. 12 +Shraa had met him. 14 +I had finished my lunch. 19 +You had finished your lunch. 23 +We had finished our lunch. 21 +They had finished their lunch. 25 +He had finished his lunch. 21 +She had finished her lunch. 22 +Shraa had finished his lunch. 24 +I had seen this movie. 17 +You had seen this movie. 19 +We had seen this movie. 18 +They had seen this movie. 20 +He had seen this movie. 18 +She had seen this movie. 19 +Shraa had seen this movie. 21 +I had received. 12 +You had called. 12 +We had worked. 11 +They had gone. 11 +He had done. 9 +She had taken. 11 +Shraa had seen. 12 +I had said. 8 +You had made. 10 +I will have completed the report by Friday. 35 +You will have completed your report by Friday. 38 +We will have completed our report by Friday. 36 +They will have completed their report by Friday. 40 +He will have completed his report by Friday. 36 +She will have completed her report by Friday. 37 +Shraa will have completed his report by Friday. 39 +I will have seen this movie by Friday. 30 +You will have seen this movie by Friday. 32 +We will have seen this movie by Friday. 31 +They will have seen this movie by Friday. 33 +He will have seen this movie by Friday. 31 +She will have seen this movie by Friday. 32 +Shraa will have seen this movie by Friday. 34 +I will have done it by this evening. 28 +You will have done it by this evening. 30 +We will have done it by this evening. 29 +They will have done it by this evening. 31 +He will have done it by this evening. 29 +She will have done it by this evening. 30 +Shraa will have done it by this evening. 32 +I will have joined the course by this evening. 37 +You will have joined the course by this evening. 39 +We will have joined the course by this evening. 38 +They will have joined the course by this evening. 40 +He will have joined the course by this evening. 38 +She will have joined the course by this evening. 39 +Shraa will have joined the course by this evening. 41 +I will have received it. 19 +You will have called. 17 +We will have worked. 16 +They will have gone. 16 +He will have done. 14 +She will have taken it. 18 +Shraa will have seen. 17 +I will have said. 13 +You will have made it. 17 +I have been working. 16 +You have been working. 18 +We have been working. 17 +They have been working. 19 +He has been working. 16 +She has been working. 17 +Shraa has been working. 19 +I have been waiting. 16 +You have been waiting. 18 +We have been waiting. 17 +They have been waiting. 19 +He has been waiting. 16 +She has been waiting. 17 +Shraa has been waiting. 19 +I have been trying. 15 +You have been trying. 17 +We have been trying. 16 +They have been trying. 18 +He has been trying. 15 +She has been trying. 16 +Shraa has been trying. 18 +I have been eating. 15 +You have been eating. 17 +We have been eating. 16 +They have been eating. 18 +He has been eating. 15 +She has been eating. 16 +Shraa has been eating. 18 +I have been talking. 16 +You have been talking. 18 +We have been talking. 17 +They have been talking. 19 +He has been talking. 16 +She has been talking. 17 +Shraa has been talking. 19 +I have been teaching. 17 +You have been teaching. 19 +We have been teaching. 18 +They have been teaching. 20 +He has been teaching. 17 +She has been teaching. 18 +Shraa has been teaching. 20 +We have been singing. 17 +Shraa has been singing. 19 +I had been working. 15 +You had been working. 17 +We had been working. 16 +They had been working. 18 +He had been working. 16 +She had been working. 17 +Shraa had been working. 19 +I had been waiting. 15 +You had been waiting. 17 +We had been waiting. 16 +They had been waiting. 18 +He had been waiting. 16 +She had been waiting. 17 +Shraa had been waiting. 19 +I had been trying. 14 +You had been trying. 16 +We had been trying. 15 +They had been trying. 17 +He had been trying. 15 +She had been trying. 16 +Shraa had been trying. 18 +I had been eating. 14 +You had been eating. 16 +We had been eating. 15 +They had been eating. 17 +He had been eating. 15 +She had been eating. 16 +Shraa had been eating. 18 +I had been talking. 15 +You had been talking. 17 +We had been talking. 16 +They had been talking. 18 +He had been talking. 16 +She had been talking. 17 +Shraa had been talking. 19 +I had been teaching. 16 +You had been teaching. 18 +We had been teaching. 17 +They had been teaching. 19 +He had been teaching. 17 +She had been teaching. 18 +Shraa had been teaching. 20 +Shraa had been singing. 19 +I will have been working. 20 +You will have been working. 22 +We will have been working. 21 +They will have been working. 23 +He will have been working. 21 +She will have been working. 22 +Shraa will have been working. 24 +I will have been waiting. 20 +You will have been waiting. 22 +We will have been waiting. 21 +They will have been waiting. 23 +He will have been waiting. 21 +She will have been waiting. 22 +Shraa will have been waiting. 24 +I will have been trying. 19 +You will have been trying. 21 +We will have been trying. 20 +They will have been trying. 22 +He will have been trying. 20 +She will have been trying. 21 +Shraa will have been trying. 23 +I will have been eating. 19 +You will have been eating. 21 +We will have been eating. 20 +They will have been eating. 22 +He will have been eating. 20 +She will have been eating. 21 +Shraa will have been eating. 23 +I will have been talking. 20 +You will have been talking. 22 +We will have been talking. 21 +They will have been talking. 23 +He will have been talking. 21 +She will have been talking. 22 +Shraa will have been talking. 24 +I will have been teaching. 21 +You will have been teaching. 23 +We will have been teaching. 22 +They will have been teaching. 24 +He will have been teaching. 22 +She will have been teaching. 23 +Shraa will have been teaching. 25 +Shraa will have been singing. 24 +John is my son. 11 +Shraa is not at home. 16 +John doesn't go to school. 20 +Mom scolds me. 11 +He plays with passion. 18 +He is a good leader. 15 +He is a humble man. 14 +He is a real fighter. 16 +His father was a lawyer. 19 +It is raining heavily. 18 +I am going out. 11 +It has begun to rain. 16 +He is going tomorrow. 17 +Ram is my best friend. 17 +He reads his book. 14 +He does not read his book. 20 +Sachin is a fine batsman. 20 +We planned a picnic. 16 +You must tell me the truth. 21 +You have to do it immediately. 24 +He speaks the truth. 16 +He does not want to join us. 21 +I like him for his honesty. 21 +He has many friends in class. 23 +Today is a college holiday. 22 +College does not have experienced professors. 39 +I am going out for dinner. 20 +There is no homework for tomorrow. 28 +The math exam is postponed to Monday. 30 +Post exams, students will be getting days holidays. 43 +He is a good teacher. 16 +Today is a holiday. 15 +Today is a school holiday. 21 +Is john not at home? 15 +What does your father do? 20 +Do you know him? 12 +Which color do you like? 19 +How old are you? 12 +Where are you going? 16 +Are you ok? 8 +Can you do me a favor? 16 +Should I text or call? 17 +Are you joining us or not? 20 +Why is the sky blue? 15 +Where is your new bike? 18 +Did you eat lunch yet? 17 +Where do you stay? 14 +Did you see her? 12 +Did you make a plan? 15 +Are you tired? 11 +Would you like coffee? 18 +Is she sick? 9 +Did you fall asleep? 16 +Did I go to the office? 17 +What is your name? 14 +Where do you live? 14 +Which one is your book? 18 +Do you have a pen? 13 +Which is the best route? 19 +What are you eating? 16 +How are things with you? 19 +Are you feeling better today? 24 +Is everybody ready to start? 23 +Who isn't here today? 16 +Who is absent today? 16 +Why were you absent last Friday, Tom? 30 +What's the matter with anna today? 27 +What's wrong with anna today? 23 +We started ten minutes ago. what have you been doing? 42 +Did you oversleep? 15 +Don't let it happen again. 20 +Where have you been? 16 +Did you miss your bus? 17 +Do you get it? 10 +Are you with me? 12 +Do you follow me? 13 +Ok so far? 7 +Do you understand? 15 +What did you say? 13 +One more time, please. 18 +Say it again, please. 17 +Like this? 8 +Is this ok? 8 +So what's the plan? 14 +Sit there. 8 +Let me go. 7 +Tell the truth. 12 +Please don't go. 12 +You should study hard. 18 +Go left and then turn right. 22 +Please leave me alone. 18 +Shut down the pc. 13 +Smile, please. 12 +Give me a glass of water. 19 +Give me a pen. 10 +Be careful. 9 +Please pass the salt. 17 +Shut the door. 11 +Do not enter. 10 +Let's eat. 7 +Come with me. 10 +Be nice. 6 +Let me help you. 12 +Let's begin today's lesson. 21 +Let's begin our lesson now. 21 +I think we can start now. 19 +Now we can get down to work. 21 +It's time to begin, please stop talking. 32 +I'm waiting for you to be quiet. 24 +Settle down now so we can start. 25 +We won't start until everyone is quiet. 31 +Stop talking and be quiet. 21 +Pack your things away. 18 +Close your books. 14 +Put your books away. 16 +Are you ready? 11 +Turn to page number 10. 18 +Pay attention, everybody. 22 +Repeat after me. 13 +Stand by your desks. 16 +Come to the front of the class. 24 +Put your hands up. 14 +Put your hands down. 16 +Show me your pencil. 16 +Turn off your mobile. 17 +What a surprise! 13 +I cannot believe it! 16 +God's heaven! 10 +What a horrible day! 16 +Go away! 6 +How fast you ran! 13 +What a happy ending! 16 +Fantastic, let's go! 16 +Wow, I really like you! 18 +I'm so mad right now! 15 +What awful weather! 16 +What lovely flowers! 17 +How ridiculous! 13 +How clever of you! 14 +What a nice evening! 16 +You are amazing! 13 +I did it! 6 +Oh my god! 7 +What a beautiful company! 21 +What a great job! 13 +Ya! we made it! 10 +What a good idea! 13 +I am sorry! 8 +It is enough! 10 +We are with you! 12 +Extremely beautiful! 18 +What a great victory! 17 +How disgusting! 13 +What a beautiful child! 19 +Don't worry! 9 +Yes, it is true! 12 +How he dare! 9 +Very good! 8 +What a terrible accident! 21 +Clean the floor! 13 +Don't run! 7 +Don't move! 8 +Great stuff! 10 +You did a great job! 15 +Quite right. 10 +Hard lines! 9 +Never mind! 9 +Count from one to ten. 17 +He fell from the tree. 17 +Keep away from me. 14 +I am calling from Pune. 18 +Stay away from us. 14 +Where is this from? 15 +Where are you from? 15 +Do not move from here. 17 +I heard from Ravi. 14 +Is it far from here? 15 +I am off today. 11 +Turn off the tv. 12 +Turn off the gas. 13 +Turn off the light. 15 +Clear off the table. 16 +I got off the train. 15 +Take off your shoes. 16 +Leave it off the list. 17 +She is off duty tonight. 19 +I was off duty. 11 +I have been here since July. 22 +He has been trying since Monday. 26 +I have been working since morning. 28 +Since it rained, I did not go. 23 +Have you been here since? 20 +Since it is important, I will do it. 28 +Since it was cold, we made a fire. 26 +Since you are tired, you should rest. 30 +It has rained since yesterday. 25 +I have been waiting for reading the morning. 36 +Pray for me. 9 +Wait for us. 9 +Cover for me. 10 +Do it for me. 9 +Is it for me? 9 +Call for help. 11 +Hold it for me. 11 +Stay for lunch. 12 +Be happy for me. 12 +Come home before six. 17 +Look before you leap. 17 +You said that before. 17 +Where were you before? 18 +We met before. 11 +Have we met before? 15 +I have seen you before. 18 +This happened before. 18 +I have seen it before. 17 +We tried this before. 17 +Read after me. 11 +He is after me. 11 +Who is after you? 13 +You are after me. 13 +They are after me. 14 +He came after you. 14 +He will come after all. 18 +Close the door after you. 20 +We can talk after dinner. 20 +Sit by me. 7 +I came by bus. 10 +Come sit by me. 11 +I will go by car. 12 +Let's go by bus. 11 +Please stand by. 13 +Send it by mail. 12 +Can I pay by card? 13 +I pay by check. 11 +I go by bicycle. 12 +Eat with us. 9 +Get with it. 9 +Go with her. 9 +Sit with me. 9 +Deal with it. 10 +Sing with us. 10 +Walk with me. 10 +Stay with me. 10 +Please go through it. 17 +I can see through glass. 19 +I was passing through the street. 27 +Water is passing through the pipe. 28 +I can see through the hole. 21 +It is beyond me. 12 +He is beyond hope. 14 +That is beyond me. 14 +It is beyond my power. 17 +This work is beyond me. 18 +This is above me. 13 +He lives above me. 14 +He is directly above me. 19 +No one is above the law. 18 +Health is above wealth. 19 +He is sitting beneath the tree. 25 +It is beneath him. 14 +They live on the floor beneath. 25 +Money was hidden beneath. 21 +Her behavior is beneath. 20 +Come down here. 12 +They cut down the tree. 18 +Sit down with me. 13 +Let us get down to work. 18 +Look down at the floor. 18 +Choose between the two. 19 +A secret between you and me. 22 +This was just between us. 20 +Let us keep this between us. 22 +We are among friends. 17 +Divide this among yourselves. 25 +He is popular among us. 18 +We walked among the trees. 21 +She is popular among students. 25 +I am getting out of the home. 22 +He is out of Delhi. 14 +He scored 9 out of 10. 16 +Get out of the car. 14 +I am out of touch. 13 +Please move towards the office. 26 +Come towards me. 13 +Look towards her. 14 +Walk towards me. 13 +I ran towards the door. 18 +Everyone except you. 17 +I work every day except Sunday. 25 +She had no choice except me. 22 +Nobody was busy except me. 21 +No one came except you. 18 +I will be around back. 17 +See you around, Ravi. 17 +I will get around to it. 18 +Do not stay around here. 19 +I ran around the field. 18 +I had tea instead of coffee. 22 +I stayed at home instead of the office. 31 +Let us go by train instead of the bus. 29 +She may attend the meeting instead of me. 33 +I have been waiting since morning. 28 +See you around, shraa. 18 +He uses honey instead of sugar. 25 +I want to help, but I can not. 22 +It never rains but it pours. 22 +I am sorry, but we are closed. 23 +I am sorry, but you are wrong. 23 +My brother went, but I did not. 24 +I will meet you before I go. 21 +Let us eat before we go. 18 +Call me before you leave. 20 +I will see you before I leave. 23 +Send the telegram before we go. 25 +Tell me before you leave. 20 +I know when to quit. 15 +Tell me when to stop. 16 +Call me when to start. 17 +I will go when I am ready. 19 +Do it when you have time. 19 +Call me when you start. 18 +Call me when you reach. 18 +I can not go until he comes. 21 +I love you until I die. 17 +Please wait until I get back. 23 +Stay here until I get back. 21 +I will stay until the end. 20 +Do not talk while eating. 20 +Do not eat while reading. 20 +I read a book while eating. 21 +Be quiet while meeting. 19 +Strike while she is here. 20 +I do it because I have to. 19 +I do it because I want to. 19 +We are here because of you. 21 +I went there because I wanted to. 26 +I was absent because I was sick. 25 +He did it because I told him. 22 +He was absent because he was sick. 27 +It is important, so I will do it. 25 +He was sick, so he could not come. 26 +Be quiet so I can get some sleep. 25 +Let us hurry so we can catch the bus. 28 +It is raining, so you may leave. 25 +I will be there, although I may be late. 31 +Although I was tired, I did my best. 28 +Although he is rich, he is not happy. 29 +Although I was tired, I did my very best. 32 +Although it is snowing, I must go. 27 +I known him since childhood. 23 +He has written once since he left. 27 +He has been busy since he came. 24 +I will do it, since it is important. 28 +You should rest since you are tired. 29 +I have been here since morning. 25 +I haven't seen shraa since morning. 28 +Do as I say. 8 +Do as you like. 11 +Do as I told you. 12 +I will do as you request. 19 +He runs as fast as you. 17 +You can go however you like. 22 +You may act however you wish. 23 +I will be there however, I might be late. 32 +You can do it however you like. 24 +Do it however you want. 18 +He is not only a warning but also a yellow card. 37 +She is not only a scientist but also a teacher. 37 +He is not only knows english but also french. 36 +They are not only working but also studying. 36 +I am not only brother but also friend. 30 +I will neither go to delhi nor mumbai. 30 +Neither I asked nor she told. 23 +Neither you nor he is wrong. 22 +He is neither skills nor tools. 25 +She is neither time nor a job. 23 +You either give me money or loan. 26 +Either you go or let me go. 20 +Either Ram will do or I will. 22 +Either you or he is right. 20 +I will either go pune or delhi. 24 +Either he will do or I will. 21 +I will work hard otherwise I will fail. 31 +Go there otherwise he will jail. 26 +You come otherwise I will move. 25 +You walk otherwise I will run. 24 +I know him since childhood. 22 +He will play otherwise I have to play. 30 +Let's go now. otherwise, we'll be late. 29 +Oh honey! 7 +Oh dear! 6 +That's it! 7 +Why not! 6 +What a news! 9 +Is it! 4 +Oh no! 4 +How sad! 6 +Terrible mistake! 15 +Touch wood! 9 +Finger crossed! 13 +Look out! 7 +Sit down! 7 +Stop him! 7 +Get out! 6 +What a shame! 10 +Merry christmas! 14 +Happy new year! 12 +God bless you! 11 +By god's grace! 11 +Thank god! 8 +Love you! 7 +She can draw. 10 +Philip can run. 12 +Can you ride? 10 +Can you help? 10 +They can find. 11 +I can eat. 7 +You can not go. 11 +You can come. 10 +We can go. 7 +Can we talk? 9 +Can you make it? 12 +I can not do. 9 +Can you please? 12 +He can save. 9 +You can eat. 9 +Could you open? 12 +Could you show me? 14 +You could ask. 11 +I could lend. 10 +She could read. 12 +We could go. 9 +He could not come. 14 +Could we take it? 13 +They could fill. 13 +She could make. 12 +I could run. 9 +Could Rita jump? 13 +Could you please help me? 20 +Ram could tell. 12 +He could have. 11 +Could you open the door? 19 +I will come with you. 16 +Will I show you? 12 +She will stop? 11 +I will hold this. 13 +Will you run? 10 +Will I carry it? 12 +She will know. 11 +He will take it. 12 +Gita will make. 12 +Sita will help. 12 +I will fill it. 11 +How will you do it? 14 +Would you come with me? 18 +Would you like it? 14 +Would he pass? 11 +She would go. 10 +He would make. 11 +Would they do? 11 +Would you jump? 12 +We would show. 11 +I would run. 9 +Would you know? 12 +They would help. 13 +Would you talk? 12 +Mona would fill. 13 +Rani would tell. 13 +Would she take it? 14 +He would like to meet you. 20 +Would you like to join us? 20 +Would you like to be my friend? 24 +Would you like to have coffee with me? 30 +I would like to meet him. 19 +What would you like? 16 +I shall come. 10 +You shall meet. 12 +Shall he go? 9 +Shall we know? 11 +Shall I help? 10 +We shall read. 11 +They shall tell. 13 +She shall make. 12 +Shall you speak? 13 +He shall find. 11 +Shall I fill it? 12 +Jack shall run. 12 +Shall you stop? 12 +Shall we talk? 11 +I shall save. 10 +Shall I come? 10 +You should do it. 13 +Should he come? 12 +We should go. 10 +You should try it. 14 +They should help. 14 +He should find it. 14 +She should stop. 13 +I should join. 11 +Should we talk? 12 +You should know. 13 +He should take. 12 +We should run. 11 +Vinod should love. 15 +They should fill it. 16 +Mira should read. 14 +We should try it together. 21 +Should I join you guys? 18 +You should go home. 15 +You should go to bed. 16 +We ought to do. 11 +I ought to get. 11 +You ought to know. 14 +He ought to read. 13 +They ought to make. 15 +Vijay ought to show. 16 +She ought to join. 14 +We ought to stop. 13 +I ought to find it. 14 +He ought to come. 13 +You ought to save. 14 +She ought to lock. 14 +They ought to talk. 15 +I ought to help. 12 +You ought to show. 14 +You must join us. 13 +I must go. 7 +She must talk. 11 +They must save. 12 +He must come. 10 +I must fill it. 11 +Tina must find it. 14 +We must help. 10 +You must read. 11 +She must try. 10 +He must tell. 10 +I must show. 9 +We must run. 9 +They must take. 12 +She must play. 11 +You must study. 12 +You must sleep now. 15 +May I see? 7 +May you come? 10 +May we talk? 9 +They may join. 11 +She may play. 10 +He may read. 9 +You may take it. 12 +We may come. 9 +I may try it. 9 +They may run. 10 +She may stop. 10 +He may save. 9 +You may tell. 10 +We may know. 9 +May I help you? 11 +May I see your notebook? 19 +She might come. 12 +They might join. 13 +You might go. 10 +I might know. 10 +We might read. 11 +He might stop. 11 +You might tell. 12 +She might try. 11 +I might save. 10 +He might play. 11 +We might take it. 13 +She might help. 12 +They might find it. 15 +Karan might show. 14 +I might do this. 12 +I might go. 8 +I need to go now. 12 +Do you need anything? 17 +I need to find it. 13 +What needs to save? 15 +We need to help. 12 +They need money. 13 +I have to go. 9 +You have to go. 11 +We have to find it. 14 +They have to run. 13 +We have to get. 11 +You have to pay. 12 +You have to speak. 14 +They have to show. 14 +You have to save. 13 +We have to do this. 14 +I have to cook. 11 +Try another one. 13 +I have got another job. 18 +Take another look. 15 +Have another drink. 16 +I need another one. 15 +Give me another one. 16 +There is another way. 17 +I have another plan. 16 +Show me another watch. 18 +I have another pen. 15 +That is enough. 12 +Is that enough? 12 +You know enough. 13 +I am strong enough. 15 +That is good enough. 16 +We are close enough. 16 +I have enough money. 16 +We have enough time. 16 +I hope it is enough. 15 +I have enough time. 15 +I have a lot of lands. 16 +We have a lot of fun. 15 +He has a lot of money. 16 +I have a lot of ideas. 16 +We have a lot of time. 16 +I know a lot of things. 17 +I read a lot of novels. 17 +We have a lot of offers. 18 +We had a lot of fun. 14 +I have a lot of time. 15 +I have a lot of work. 15 +We have lots of things. 18 +Gita had lots of fun. 16 +I have lots of work. 15 +The play was lots of fun. 19 +I have lots of friends. 18 +We talked about lots of things. 25 +There were lots of people. 21 +There is lots of food. 17 +Lots of people get married. 22 +I need more. 9 +I want more. 9 +Read me more. 10 +Show me more. 10 +Tell me more. 10 +We need more. 10 +I have one more. 12 +Give me one more. 13 +I need more help. 13 +Do you want more? 13 +He should talk less. 16 +I have less money. 14 +You should smoke less. 18 +There is less time. 15 +I offered ten rupees less. 21 +Women earn less than men. 20 +I could not care less. 17 +I have less than fifteen. 20 +Rita is less active. 16 +We have plenty of food. 18 +I have got plenty of time. 20 +I have plenty of ideas. 18 +There is plenty of food. 19 +I have plenty of time. 17 +I have plenty of friends. 20 +There is plenty of fish. 19 +He came several times. 18 +He prays several times. 19 +I have several friends. 19 +I met him several times. 19 +They had several children. 22 +This pan has several uses. 21 +I made several mistakes. 20 +He read several books. 18 +He worked for several hours. 23 +I told you several times. 20 +How many died? 11 +Many fish died. 12 +I have many books. 14 +I remember many things. 19 +How many do you want? 16 +I have so many ideas. 16 +We have many members. 17 +Many of us are hungry. 17 +Many of us were tired. 17 +How many chocolates do you have? 26 +Give me a few. 10 +I have a few pens. 13 +I made a few calls. 14 +Give me a few hours. 15 +I know a few things. 15 +I did it a few times. 15 +Give me a few minutes. 17 +I have a few questions. 18 +Just give me a few hours. 19 +I only have a few hours. 18 +I have a few books. 14 +Few students know his name. 22 +I will be back in a few minutes. 24 +He has few friends. 15 +He is a man of few words. 18 +Very few people know it. 19 +There are a few mistakes. 20 +Just give me a few minutes. 21 +The fewer, the better. 18 +I have fewer students. 18 +There are fewer children. 21 +Ram has fewer fishing. 18 +Fewer members you know. 19 +He hears the fewer voices. 21 +I told fewer words. 15 +There are fewer things. 19 +He has fewer clients. 17 +Add little milk. 13 +He drank a little. 14 +I am a little busy. 14 +I had little help. 14 +I am a little hungry. 16 +It is a little cold. 15 +Clean up a little. 14 +He is a little upset. 16 +He got somebody's back up. 20 +I put somebody's nose out of joint. 27 +She reduced somebody to tears. 25 +She showed me up. 13 +We got in her black books. 20 +She took umbrage at my remarks. 25 +You should be ashamed. 18 +Are you mad at me? 13 +You are irresponsible. 19 +She made her fool. 14 +This makes me want to kill myself. 27 +Who knows? 8 +Not as far as I know. 15 +Let me check on that. 16 +I'm not sure I'm the best person to answer that. 36 +I have the same question. 20 +That's not my area of expertise, I will ask. 34 +I will double-check and get back to you. 31 +I wish I knew. 10 +I am afraid I don't know. 18 +I don't have that information here right now. 36 +I haven't got a clue. 15 +I haven't looked at that yet. 22 +I'll get back to you on that one. 24 +I'm going to investigate that further. 31 +It's a mystery to me. 15 +It's beyond me. 11 +That's exactly what I'm seeking to answer. 33 +That's a good question, but I don't know. 31 +I don't have the foggiest idea. 24 +How should I know? 14 +He is a brainy kid. 14 +He's really on the ball. 18 +She doesn't miss a trick. 19 +He's a bright spark. 15 +He's quick off the mark. 18 +Your voice comes through loud and clear in this piece. 44 +You are so tenacious. that perseverance is really paying off. 50 +My daughter is sharp as a tack, just like her mother. 42 +Our manager is really on the ball. I trust her judgment on this. 50 +My oldest daughter is more clever than her little brother. 48 +She has a lot of energy and can think creatively. 39 +She can organize things quickly and clearly. 37 +I had to make a detour because of roadworks. 35 +Something came up. 15 +I have a flat tire. 14 +I missed the bus. 13 +I couldn't find my car keys. 21 +It's not an easy place to find. 23 +I am sorry I am so late to work. 23 +My sincerest apology for not making it to the meeting on time. 50 +I apologize wholeheartedly for not being on time. 41 +I am sorry for keeping you waiting for such a long time. 44 +Yes, she lied. 11 +Chuckled in spite of himself. 24 +He had a soft, almost musical voice. 29 +You sound as if you are about to cry. 28 +What's new with you? 15 +What is happening? 15 +How are things coming along? 23 +How is life sailing? 16 +Is there anything concerning you? 28 +And yourself? 11 +And how have you been? 17 +How's it going with you? 18 +How are things on your end? 21 +Have you been doing ok? 18 +How's everything? 14 +What's sizzling? 13 +What's cracking? 13 +What's popping? 12 +How's life treating you? 19 +I hope you are in good hands. 22 +How met? 6 +Well, who do we have here? 20 +Don't give me that. 14 +Tell me another one. 16 +I don't think. 10 +I disagree. 9 +I guess not. 9 +I don't believe that. 16 +I cannot accept it. 15 +I do not guess. 11 +Doesn't fit. 9 +Doesn't really look like. 20 +It isn't probable. 14 +Do you also think that? 18 +Do you believe that? 16 +Do you have an opinion? 18 +Do you have any opinion about? 24 +In your honest opinion? 19 +Would you agree with that? 21 +Can you give me your thoughts? 24 +Do you have any views? 17 +What a let-down! 12 +What a disaster! 13 +To be honest I was a bit disappointed. 30 +I wish I had worked harder. 21 +I've never been so disappointed in my whole life! 39 +Pretty fed up. 11 +What a bummer! 11 +I thought you could do better. 24 +I've never been so disappointed in my life. 34 +We experienced immense relief! 26 +No wonder he's always so stressed out! 30 +That's done. I feel better now! 23 +Breathe a sigh of relief. 20 +I can't stop thinking about it. 24 +I'm really nervous. 15 +I've got butterflies in my stomach. 28 +To break out in a cold sweat. 22 +Are you doing anything this weekend? 30 +Are you free tomorrow afternoon? 27 +Would you like to join me for lunch? 28 +Wanna go hiking on Saturday? 23 +I'll have to take a raincheck. 23 +Would you like to play cards? 23 +Do you feel like going for a walk? 26 +Thank you for your kind invitation. 29 +I'll be glad to do so. 15 +Thanks, I'd like that very much. 25 +That's a great idea. 15 +Thanks for inviting me to dinner. 27 +It's very nice of you. 16 +Many thanks for your kind invitation. I'll join you. 41 +Sure. thank you. 12 +With pleasure! 12 +Have a good day! 12 +It was great to see you again. have a good evening. 39 +Catch you later! 13 +I gotta run. 9 +Let's catch up at happy hour! 22 +Well, I really should get back to work. 31 +Anyway, it was nice catching up with you. 33 +Anyway, it was great seeing you. 26 +Please excuse me, I have to check on the kids before they go to bed. 53 +Excuse me, but I have to leave. 24 +I will let you know. 15 +Thanks very much for your help. bye! 28 +I'd better go. great to chat! 21 +Hey, guys, I'll but the next round. 27 +am is time for the last call. 22 +It's my turn to be the designated driver, so I'll just have a soda. 51 +After one or two glasses of wine, I get buzzed. 37 +Drink like a fish. 14 +Three sheets to the wind. 20 +Paint the town red. 15 +There is a lot of booze at the party tonight. 35 +I'm not such a big drinker. 20 +He's as drunk as a skunk. 18 +What about going to? 16 +Don't you think it is a good idea? 25 +I suggest you. 11 +I suggest we should visit Paris. 26 +Why don't we do our homework? 22 +May I suggest? 11 +Why don't you join an English club? 27 +You should try to practice English. 29 +You'd better wake up early. 21 +If I were you, I'd call her. 20 +This may create a slight hurdle for us. 31 +There's been an oversight. 21 +There may have been some confusion. 29 +It seems like we've hit a bump. 23 +Let's recheck the statement together. 31 +Let's look at it again later as it needs a little revision. 46 +Where did you hear that? 19 +I'm alive. 7 +Very well, thanks. 15 +I'm doing really well. 17 +I'm pretty standard right now. 24 +I'm hanging in there. 16 +I am blessed! 10 +Sunshine all day long! 18 +Well enough to chat with you if you wish to. 34 +I'm better than I was but not nearly as good as I'm going to be. 47 +Way better than I deserve! 21 +Better than some, not as good as others. 32 +Much better now that you are with me. 29 +I am coming to visit. 16 +You are amazing. you are so strong. you will get through this. 48 +Hope you feel better. 17 +I'm sorry to hear such terrible news. 29 +If there's anything I can do, just let me know. 36 +I'm very sorry about your loss. 24 +Please accept my sincerest sympathies. 33 +If you need anything, I'm here for you. 30 +My heart hurts for you. I'm very sorry. 29 +It must have been really hard for you. 30 +Oh no, really? 11 +I hope you can catch another flight. 29 +I know how you feel. 15 +Everything happens for a reason. 27 +I'm sorry this is happening to you. 27 +What is your sport? 15 +Who is your team? 13 +On the home stretch. 16 +The ball is in your court. 20 +Three strikes and you're out. 23 +I am good at volleyball. 19 +What sports are you good at? 22 +Where is the match being played? 26 +Bark up the wrong tree. 18 +Yes, it's pretty easy to play. 23 +I have been practicing it for  years. 29 +Sports are sources of recreation. 28 +It's interesting I like it. 21 +It looks good. 11 +It's my thing. 10 +This is wicked! 12 +It looks fantastic. 16 +It's dull. 7 +I'm not keen on it. 13 +That's not for me. 13 +It's as interesting as watching paint dry. 34 +I can't say that I find it interesting. 30 +You do not need makeup. you are already so naturally beautiful. 51 +You are adorable. 14 +You look mesmerizing. 18 +You always make me smile! 20 +It's so nice to see a man who can cook. 28 +You look prettier than a picture. 27 +You are breathtaking. 18 +You are very fit. 13 +I always feel safe when I'm around you. 30 +I love the way you. 14 +Is there anything you can't do? 24 +I am proud to know you. 17 +You are so good at fixing things. 26 +It is an honor to know you. 20 +You are so artistic. 16 +Baby, it's cold outside. 19 +A blanket of snow. 14 +Brace yourself, winter is coming. 28 +To leave someone out in the cold. 26 +It's arctic outside! 16 +It's so cold my hands are freezing. 27 +It's been frigid outside for a week. 28 +It's freezing outside. I think we should stay at home. 42 +It's cold and blustery outside. 25 +This is the best weather we've had all. 30 +I promise you that that's the truth. 28 +I swear I won't let you down. 21 +I swear I will never leave you. 24 +I assure you that I will be there on time. 32 +Believe me, I won't make you disappointed. 34 +Trust me, I can do it. 16 +Cast iron guarantee. 17 +My word is my bond. 14 +I give you my word. 14 +She shows considerable promise. 27 +Is that a promise? 14 +To turn over a new leaf. 18 +The elevator doesn't go to the top floor. 32 +Somewhere there's a village missing its idiot. 38 +Are they brave or just dumb? 22 +Don,t be silly. 12 +Forgot to pay his brain bill. 23 +A vacancy on the top floor. 21 +Grow up. 6 +If you believe that, you'll believe anything. 37 +Uses his head to keep the rain out of his neck. 36 +Can I interrupt for a moment? 23 +May I add? 7 +Let me add something. 17 +Let me interrupt a second. 21 +Can I stop you there for a moment? 26 +Can I just mention something? 24 +Excuse me, I'd like to say something. 29 +I don't mean to be rude but may I interrupt quickly? 40 +Sorry to interrupt but may I ask a quick question? 40 +I don't mean to be rude but I'd like to ask a question. 40 +Excuse me but may I jump in here? 25 +Can I just butt in for a second? 24 +I adore sunbathing. 16 +She is fond of chocolate. 20 +She doesn't like cooking very much. 28 +Horse riding isn't really his thing. 29 +I dislike wasting time. 19 +He can't stand his boss. 18 +He detests being late. 18 +I'm keen on it. 10 +I adore madonna's music. 19 +I abhor drugs. 11 +I loathe onions. 13 +What books do you like to read? 24 +I'm fond of sweets. 14 +Classical music is not very me. 25 +Today it is cloudy and rainy out. 26 +It's going to rain by the looks of it. 28 +I think it is going to rain later. 26 +I hear that showers are coming our way. 31 +It's been trying to rain all morning. 29 +It is a drizzly afternoon. 21 +Heavy rainfall will ruin the celebration. 35 +A heavy rainstorm hit our farm last night. 34 +Nice weather, huh? 15 +Man, it's really downpouring out there. 32 +Stay dry! 7 +It's spitting. 11 +Take your umbrella. it looks like it's going to rain. 41 +Do you take credit cards? 20 +I'll pay in cash. 12 +Could I have a receipt, please? 25 +How much are these? 15 +Could I have a refund? 17 +Could I speak to the manager? 23 +That's expensive. 14 +Could you tell me where the soap is? 28 +Where can I find the toothpaste? 26 +Does it come with a guarantee? 24 +I am looking for a pair of trousers. 28 +Do you have these in a size smaller too? 31 +Have you got any cheese? 19 +Where can I find some vegetables? 27 +You are seriously gifted at this. 27 +You could sell your art! 19 +You are really good at this! 22 +You are an expert at this! 20 +If you taught a class on this, I would sign up! 36 +You are so skilled at baking you really know what you are doing! 51 +Beautiful! how did you learn to do that? 31 +Stunning! great job! 16 +You're more helpful than you realize. 30 +You always know how to find that silver lining. 38 +Her eyelids drooped. 17 +Her eyes sparkled. 15 +He looked heavenward. 18 +Her eyes swam with tears. 20 +His eyebrows rose. 15 +He gave a half-smile. 16 +He plastered a smile on his face. 26 +Her lower lip trembled. 19 +She went white. 12 +The color drained out of his face. 27 +His expression dulled. 19 +Recognition dawned on her face. 26 +It was a warm day and the horses sweat. 30 +Well, it's certainly not cold. 24 +It's extremely hot outside. 22 +It's boiling hot! 13 +It was a sweltering August in Poland. 30 +It's very warm outside. 18 +It's a tropical heat. 16 +It's an oppressive heat. 19 +It's pretty hot, isn't it? 19 +It's nice in the sun. 15 +It's positively tropical today. 26 +So hot for this time of year. 22 +I heard it's supposed to be sunny tomorrow. that's good, right? 49 +I'm tired of waiting. 16 +I was really tired, so I went back to bed. 32 +Now I am very tired and I will rest. 27 +Now I am too tired to write more. 25 +It's late, and I'm tired. 18 +I don't know why I'm so tired. 21 +Still feel a little tired. 21 +I am fatigued. 11 +I am drained. 10 +I was worn out. 11 +I am on my last leg. 14 +I am wiped out. 11 +I cannot keep my eyes open. 21 +Hello, maria. nice to hear from you. 28 +Hello, how can I help you? 20 +Just a sec. I'll get him. 17 +Hang on a moment. I'll see if she's in. 27 +One moment please. I'll see if he's available. 35 +Could you speak up a little, please? 29 +Could you please repeat that? 24 +Can you speak a little slower, please? 31 +Could you let me know when she'll be in the office, please? 46 +Can you call again? I think we have a bad connection. 41 +Please hold for just a minute. I have another call. 40 +Please don't call this number again. 29 +Would you like to leave a message? 27 +No, that's okay. I'll call him later. 27 +Fine. I'll let him know you called. 26 +As for fit as a fiddle. 17 +As exciting as watching paint dry. 28 +As different as night and day. 24 +As stubborn as a mule. 17 +As busy as bee. 11 +As ugly as toad. 12 +As angry as hell. 13 +As bitter as gall. 14 +As black as hell. 13 +As blind as a bat. 13 +As bold as brass. 13 +Brave as a lion. 12 +As bright as a button. 17 +As busy as a bee. 12 +As calm as a millpond. 17 +As cheap as dirt. 13 +As clean as a whistle. 17 +As happy as a clam. 14 +Could you find out? 15 +Do you have any idea how to use this machine? 35 +Could you please give me the details? 30 +Could I please get the details? 25 +May I please get the details? 23 +Do you mind if I get the details? 25 +I should be grateful if you would send me the details. 43 +Would it be possible for me to get it? 29 +Could you say it in another way? 25 +Can you clarify that for me? 22 +Could you rephrase that? 20 +Could you be more specific? 22 +Can you give me an example? 21 +Could you elaborate on that? 23 +Come again? 9 +I didn't quite catch that. could you please repeat? 40 +Could you say that again, please? 27 +Could you repeat it, please? 23 +Could you be more explicit? 22 +I wonder if you could say that in a different way. 39 +Could you put it differently, please? 31 +Could you say that slower, please? 28 +I appreciate your help. 19 +I sincerely appreciate it. 22 +My sincere gratitude. 18 +My thanks and appreciation. 23 +Please accept my deepest thanks. 27 +Many thanks for giving me this opportunity. 36 +Thank you for referring us to the company. 34 +I am grateful for your support. 25 +I value the insights and guidance you provide. 38 +I truly appreciate the confidence you showed in me. 42 +I am so very thankful for your time. 28 +I appreciate the information and advice you have shared. 47 +I sincerely appreciate the assistance. 33 +Many thanks for your assistance. 27 +Many thanks for the opportunity to meet with you. 40 +Thank you for your kind words! 24 +I am eternally grateful for everything you've taught me. 46 +How can I ever thank you enough? 25 +That's all right! 13 +Not at all. 8 +Its nothing. 10 +It wasn't a problem at all. 20 +The pleasure is all mine. 20 +It's no bother. 11 +Think nothing of it. 16 +We apologize for the mistake and the inconvenience. 43 +I apologize again for my mistrust. 28 +I apologize for the mess. 20 +We deeply regret. 14 +Please accept our apologies. 24 +My bad. 5 +I'm sorry you're upset. 17 +I'm genuinely sorry. 16 +I feel so ashamed. 14 +I take full responsibility. 23 +It's fine. 7 +Please don't let it happen again. 26 +Apology accepted. 15 +It's okay. 7 +You should be, but I forgive you. 26 +I understand. 11 +Apologies accepted. 17 +You couldn't help it. 16 +I'd like to introduce you to betty. 27 +Happy to meet you. 14 +You already know shraa. 19 +And you've already met john. 22 +And lastly, this is kate. 20 +I don't think we've met. may I introduce myself? 36 +I couldn't say. 11 +I don't have any feelings either way. 29 +I really don't know what to say. 24 +I really can't say. 14 +It doesn't affect me either way. 25 +No doubt about it. 14 +You have a point there. 18 +I was just going to say that. 22 +I tend to agree with you. 19 +I'm with you on that point. 20 +I'll go along with that. 18 +I totally agree with that proposal. 29 +I hold exactly the same view. 23 +I agree with you entirely. 21 +That's great news! 14 +Wow, that sounds exciting! 22 +That sounds like great news! 23 +I'm glad to hear that! 16 +Oh, how wonderful! 15 +I can't believe that! 16 +Really? are you serious? 19 +Wow! that's awesome! 15 +We're planning on buying a house within the next months. 45 +I'm looking forward to starting guitar lessons. 39 +They are going to save up for a new car. 30 +We're thinking of getting a dog. 25 +I'm planning to study abroad next year. 31 +Could you help me for a second? 24 +Can I ask a favor? 13 +I wonder if you could help me with this? 31 +I can't manage. can you help? 21 +Could you spare a moment? 20 +I need some help, please. 20 +I could use some help. 17 +Would you mind helping me? 21 +If you're not too busy may I ask you a favor? 33 +I would like to bring this notice. 27 +I feel worse to make a complaint. 26 +I have come here to ask a question. 27 +He openly complains about the bad service. 35 +I'm afraid there is a slight problem with the material. 44 +I'm angry about the service. 22 +That would be very kind of you. 24 +Yes please. I'd like to. 17 +Yes please. that would be nice lovely. 30 +Thank you. that would be great. 24 +It's ok. I can do it myself. 19 +Don't worry, I'll do it myself. 23 +Yes, I would love to thank you, that would be appreciated. 47 +I appreciate that, but it's okay. 26 +If you're sure it's no trouble. 23 +Just what I needed! 15 +No, don't bother, really. 20 +May I have the bill, please? 22 +Mum, can you wake me at seven o'clock? 29 +Can you give me directions to oxford street, please? 43 +We ask that you be patient while we work to address this problem. 52 +We ask that you wait here. 20 +We're just friends. 15 +Our relationship is strictly idealistic. 35 +I am widowed. 10 +I am just separated. 16 +He is my brother. 13 +Shraa is my cousin's sister. 22 +You're quite right. 15 +Yes, that's correct. 16 +You could say so. 13 +There is nothing to add to that. 25 +Do you have anything to declare? 26 +Did you pack this bag yourself? 25 +The flight has been canceled. 24 +Are you following me? 17 +Any questions? 12 +Do you know what I'm talking about? 27 +Do you get my point? 15 +Have you got it? 12 +With me so far? 11 +Hello, pleased to meet you. 22 +Nice meeting you, too. 18 +It was a pleasure to meet you. 23 +Catch ya late. 11 +Gotta go! 7 +Hey! there she is. 13 +Hello, how are things with you? 25 +Yep, pretty good. 14 +I like a rose. 10 +I love music. 10 +I feel it. 7 +I play cricket. 12 +He likes rose. 11 +He loves music. 12 +He feels it. 9 +He plays cricket. 14 +She like rose. 11 +She loves music. 13 +She feels it. 10 +She plays cricket. 15 +They like rose. 12 +They love music. 13 +They feel it. 10 +They play cricket. 15 +You like rose. 11 +You love music. 12 +You feel it. 9 +You play cricket. 14 +We like rose. 10 +We love music. 11 +We feel it. 8 +We play cricket. 13 +I liked. 6 +I played. 7 +I caught. 7 +I worked. 7 +He liked. 7 +He played. 8 +He caught. 8 +He worked. 8 +She liked. 8 +She played. 9 +She caught. 9 +She worked. 9 +They liked. 9 +They played. 10 +They caught. 10 +They worked. 10 +You liked. 8 +You played. 9 +You caught. 9 +You worked. 9 +We liked. 7 +We played. 8 +We caught. 8 +We worked. 8 +I will dance. 10 +I will play. 9 +I will eat. 8 +I will run. 8 +He will dance. 11 +He will play. 10 +He will eat. 9 +He will run. 9 +She will dance. 12 +She will play. 11 +She will eat. 10 +She will run. 10 +We will dance. 11 +We will play. 10 +We will eat. 9 +We will run. 9 +You will dance. 12 +You will eat. 10 +You will run. 10 +You will play. 11 +They will dance. 13 +They will eat. 11 +They will run. 11 +They will play. 12 +I am walking. 10 +I am doing. 8 +I am dancing. 10 +You are walking. 13 +You are doing. 11 +You are dancing. 13 +We are walking. 12 +We are doing. 10 +We are dancing. 12 +They are walking. 14 +They are doing. 12 +They are dancing. 14 +He is walking. 11 +He is doing. 9 +He is dancing. 11 +She is walking. 12 +She is doing. 10 +She is dancing. 12 +I was listening. 13 +I was eating. 10 +He was listening. 14 +He was eating. 11 +We were listening. 15 +We were eating. 12 +They were listening. 17 +They were eating. 14 +You were listening. 16 +You were eating. 13 +She was listening. 15 +She was eating. 12 +I will be watching. 15 +I will be dancing. 14 +I will be writing. 14 +He will be watching. 16 +He will be dancing. 15 +He will be writing. 15 +She will be watching. 17 +She will be dancing. 16 +She will be writing. 16 +They will be watching. 18 +They will be dancing. 17 +They will be writing. 17 +You will be watching. 17 +You will be dancing. 16 +You will be writing. 16 +We will be watching. 16 +We will be dancing. 15 +We will be writing. 15 +I have watched cricket. 19 +I have played. 11 +I have eaten. 10 +I have studied. 12 +He has watched cricket. 19 +He has played. 11 +He has eaten. 10 +He has studied. 12 +She has watched cricket. 20 +She has played. 12 +She has eaten. 11 +She has studied. 13 +They have watched cricket. 22 +They have played. 14 +They have eaten. 13 +They have studied. 15 +You have watched cricket. 21 +You have played. 13 +You have eaten. 12 +You have studied. 14 +We have watched cricket. 20 +We have played. 12 +We have eaten. 11 +We have studied. 13 +I had called. 10 +I had sung. 8 +I had finished. 12 +I had seen. 8 +He had smiled. 11 +He had sung. 9 +He had finished. 13 +He had seen. 9 +She had smiled. 12 +She had sung. 10 +She had finished. 14 +She had seen. 10 +They had smiled. 13 +They had sung. 11 +They had finished. 15 +They had seen. 11 +You had smiled. 12 +You had sung. 10 +You had finished. 14 +You had seen. 10 +We had smiled. 11 +We had sung. 9 +We had finished. 13 +We had seen. 9 +I will have arrived. 16 +I will have reported. 17 +I will have cooked. 15 +I will have seen. 13 +He will have arrived. 17 +He will have reported. 18 +He will have cooked. 16 +He will have seen. 14 +She will have arrived. 18 +She will have reported. 19 +She will have cooked. 17 +She will have seen. 15 +They will have arrived. 19 +They will have reported. 20 +They will have cooked. 18 +They will have seen. 16 +You will have arrived. 18 +You will have reported. 19 +You will have cooked. 17 +You will have seen. 15 +We will have arrived. 17 +We will have reported. 18 +We will have cooked. 16 +We will have seen. 14 +I have been cooking. 16 +I have been watching. 17 +I have been running. 16 +I have been testing. 16 +He has been cooking. 16 +He has been watching. 17 +He has been running. 16 +He has been testing. 16 +She has been cooking. 17 +She has been watching. 18 +She has been running. 17 +She has been testing. 17 +They have been cooking. 19 +They have been watching. 20 +They have been running. 19 +They have been testing. 19 +You have been cooking. 18 +You have been watching. 19 +You have been running. 18 +You have been testing. 18 +We have been cooking. 17 +We have been watching. 18 +We have been running. 17 +We have been testing. 17 +I had been shopping. 16 +I had been playing. 15 +I had been dancing. 15 +I had been gossiping. 17 +He had been shopping. 17 +He had been playing. 16 +He had been dancing. 16 +He had been gossiping. 18 +She had been shopping. 18 +She had been playing. 17 +She had been dancing. 17 +She had been gossiping. 19 +They had been shopping. 19 +They had been playing. 18 +They had been dancing. 18 +They had been gossiping. 20 +You had been shopping. 18 +You had been playing. 17 +You had been dancing. 17 +You had been gossiping. 19 +We had been shopping. 17 +We had been playing. 16 +We had been dancing. 16 +We had been gossiping. 18 +I will have been watching. 21 +I will have been dancing. 20 +I will have been reading. 20 +I will have been writing. 20 +You will have been watching. 23 +You will have been dancing. 22 +You will have been reading. 22 +You will have been writing. 22 +He will have been watching. 22 +He will have been dancing. 21 +He will have been reading. 21 +He will have been writing. 21 +She will have been watching. 23 +She will have been dancing. 22 +She will have been reading. 22 +She will have been writing. 22 +They will have been watching. 24 +They will have been dancing. 23 +They will have been reading. 23 +They will have been writing. 23 +We will have been watching. 22 +We will have been dancing. 21 +We will have been reading. 21 +We will have been writing. 21 +High performance. 15 +World class. 10 +Improves creativity. 18 +Improves productivity. 20 +Key differences. 14 +Lean management. 14 +Detecting defects. 16 +Changing markets. 15 +Performance goals. 16 +Team practices. 13 +Consistent improvements. 22 +Senior management. 16 +Rapid execution. 14 +Balanced scorecard. 17 +Clear measures. 13 +Organization of the future. 23 +Skills that guide. 15 +Responsibility for business. 25 +Access and sharing. 16 +Flexibility and adaptability. 26 +Special purpose vehicle. 21 +Weekly team discussions. 21 +Productivity and quality. 22 +Measurable business performance. 29 +Ability to function. 17 +Unity on decisions. 16 +Disunity on decisions. 19 +Improve the top line. 17 +Authority and responsibility. 26 +Process and priorities. 20 +Think outside the box. 18 +At the end of the day. 16 +Take it to the next level. 20 +The bottom line. 13 +It is what it is. 12 +Let's hit the ground running. 23 +Let's take it offline. 17 +I have a lot on my plate. 18 +Drastic times call for drastic measures. 34 +Back to the drawing board. 21 +My hands are tied. 14 +The fact of the matter. 18 +Back to square one. 15 +A penny for your thoughts. 21 +Actions speak louder than words. 27 +Add insult to injury. 17 +Ball is in your court. 17 +Be glad to see the back of it. 22 +Best of both worlds. 16 +Best thing since sliced bread. 25 +Keep something at bay. 18 +Kill two birds with one stone. 24 +Last straw. 9 +The method in the madness. 21 +I'm here. it's sam in Delhi. 19 +I'm afraid I didn't get that. 21 +Sam here. I'm back on the line again. 27 +Today I'm here to talk to you about. 27 +Then I will look at it. 17 +After you. 8 +I'm sorry, but could you speak up a little? 33 +Am I to understand that. 19 +I'd like you to meet mary. 19 +He was given an award for his courage. 30 +Jack is my neighbor. 16 +Time is a great teacher. 19 +Jenny is my sister. 15 +Joe's father is an engineer. 22 +We watched a movie yesterday. 24 +She invited my husband and me. 24 +Have you got any information? 24 +Birds live on trees. 16 +All the sugar has been consumed. 26 +He goes to school. 14 +I ate chocolates during childhood. 29 +I am reading a book. 15 +My father is a teacher. 18 +The sight of the sunrise is beautiful. 31 +We meet at sam. 11 +Victoria is going on a world tour. 27 +The government is in favor of poor people. 34 +The army defeated the enemy. 23 +The team is expected to arrive today. 30 +Good cutlery is expensive. 22 +A lot of milk was drunk. 18 +The money has now been spent. 23 +A large crowd is expected. 21 +That's his favorite book. 20 +This pair of shoes is good. 21 +These gloves were found there. 25 +Many people have visited us. 23 +Most houses are well built. 22 +The scissors need sharpening. 25 +The sun shines brightly. 20 +The jasmine smells sweet. 21 +India is a country. 15 +Lucy is a girl. 11 +We are studying mathematics. 24 +A staff of employees. 17 +I bought a gold ring. 16 +Plastic toys are very colorful. 26 +I myself mailed the letter. 22 +Whose pen is this? 14 +These are my books. 15 +This is the book which I like. 23 +Those are our bicycles. 19 +That is the movie that jane likes. 27 +That is his car. 12 +John is the person whose bike is stolen. 32 +Whom are you looking for? 20 +You are my batchmate. 17 +He is my best friend. 16 +He killed himself. 15 +I met her yesterday. 16 +She wants to go to the market. 23 +I wash my clothes. 14 +They cleaned the room themselves. 28 +She herself answered the phone. 26 +I hurt myself while shaving. 23 +Either of you can go. 16 +Have you ever met the woman who lives next door? 38 +You must write your letters carefully. 32 +They have gone with their parents. 28 +These girls are very fond of their dogs. 32 +There is a cow with her calf. 22 +Every student passed his examination. 32 +The small child was crying for his mother. 34 +You must write your essay more carefully. 34 +We offered to help them with their difficulty. 38 +Could you please lend me your book? 28 +A reader likes to choose his book himself. 34 +John gave a presentation to his mother. 32 +Mike is talking to his mother. 24 +She is talking to her father. 23 +The dogs were running behind us. 26 +They are Indian. 13 +The dogs were running behind them. 28 +This is our house. 14 +This is her dress. 14 +I have done the homework myself. 26 +Why do you always blame yourself? 27 +My mother a kind lady. 17 +He is a cunning fellow. 18 +I helped the old man. 16 +Rose is a beautiful flower. 22 +I gave enough food to the beggar. 26 +I have a lot of money. 16 +Give me some salt. 14 +I saw my children in the park. 23 +These books are new. 16 +Which bag is yours? 15 +Your dress is new. 14 +Mike is a brave boy. 15 +My uncle gave me an expensive gift. 28 +Ana is a good girl. 14 +India is a great country. 20 +Sam is an intelligent student. 25 +She is poor but happy. 17 +It has some sense. 14 +Few people can remain hungry. 24 +He has no wisdom. 13 +Most of these mangoes are ripe. 25 +John is intelligent. 17 +An intelligent boy won the quiz. 26 +She has some time. 14 +Joe has little patience. 20 +All students will pass this year. 27 +Mary is an honest girl. 18 +You are a foolish man. 17 +The tree is very tall. 17 +Never touch a live wire. 19 +I have no money. 12 +Lucy is an intelligent girl. 23 +I don't like that house. 18 +I have five books. 14 +There is little time left. 21 +The boy is hardworking. 19 +Mike had a lot of patience. 21 +He has enough money. 16 +He has little intelligence. 23 +There are no books in this room. 25 +There are several boys in the field. 29 +I like a fine pen. 13 +It's a tall tree. 12 +The ship sustained heavy damage. 27 +It is the book that you gave me. 24 +I have read every book. 18 +My dress is good. 13 +Your dress is better than mine. 25 +They passed the later proposal. 26 +He is my elder brother. 18 +Sam sings sweetly. 15 +John will go tomorrow. 18 +We wrote the letter nicely. 22 +Rachel acted wisely in that situation. 32 +Joe ran fast. 10 +They sang the song beautifully. 26 +The girls are playing outside. 25 +I looked for your glasses everywhere. 31 +We can halt here for tea. 19 +They will meet you at the hotel. 25 +She wakes up early. 15 +Mike will come tomorrow. 20 +Donna never tells lies. 19 +Joe was very tired. 15 +I was nearly exhausted. 19 +When did dia come? 14 +Where did she go? 13 +He is a very good student. 20 +She plays well. 12 +He worked the sum quickly. 21 +He always brushes his teeth before he goes to bed. 40 +They rarely go for an outing. 23 +Some more examples. 16 +I have been to Mumbai just once. 25 +She was very impressed with her results. 33 +It is extremely cold today. 22 +She watches Tamil films occasionally. 32 +I went to a movie yesterday. 22 +Mike finishes all his tasks early. 28 +They will rehearse for the show tonight. 33 +Joe practices violin regularly. 27 +Mike frequently makes such a comment. 31 +Sam will come again. 16 +John is a very careful driver. 24 +John drives carefully. 19 +John drives very carefully. 23 +Come here at once! 14 +She took the lady inside. 20 +Joe speaks English fluently. 24 +Lucy was a very beautiful girl. 25 +The boys have danced fantastically well. 34 +You should not be too careful about your attire. 39 +When will sam be back? 17 +Why were you absent? 16 +How is she going to do this? 21 +How much effort does it require? 26 +How many siblings do you have? 24 +Rachel speaks English very well. 27 +My sister lives in Thailand. 23 +Mechanics fix cars. 16 +Water boils at 100 degrees celsius. 29 +She understands English. 21 +She visits her parents every week. 28 +Lucy dislikes crowded cities. 25 +Donna earns a six-figure salary. 26 +A stitch in time saves nine. 22 +If you work hard, you will pass the test. 32 +They are waiting for us. 19 +Birds do not fly in the sky. 21 +Does mike love his teacher? 22 +Boys are not doing their homework. 28 +Does my friend speak good English? 28 +Are dogs barking? 14 +He is not learning music. 20 +Are we going to Kolkata soon? 23 +Children do not play in the evening. 29 +Joe is at home. 11 +Her children are at school. 22 +I am a student. 11 +I live in a model town. 17 +The mother cooks food for us. 23 +She goes to the temple every morning. 30 +He calls on me whenever he wants. 26 +I eat what my sister eats. 20 +My father returns from his office in the evening. 40 +She reads a book. 13 +We play chess. 11 +I read the newspaper daily. 22 +The sun rises in the east. 20 +The mother cooks for us. 19 +The cat kills rats. 15 +The sunsets in the east. 19 +I go to the temple daily. 19 +She walks to the office every day. 27 +My house faces west. 16 +The house has four rooms. 20 +Let us go out for a walk. 18 +Please give me a glass of water. 25 +The sound of firing is heard. 23 +Lights are switched on. 19 +Mike passes a ball to lucy. 21 +The boys are playing in the garden. 28 +You are working too hard. 20 +The girls are learning their lessons. 31 +Mike and John are going to school. 27 +I am cooking for dinner. 19 +My parents are leaving for Kerala tomorrow. 36 +Dad is reading the newspaper. 24 +I am writing a letter. 17 +Mom is watching tv. 15 +He is helping his mother in the kitchen. 32 +Sam and mike are doing their homework. 31 +I am turning the table. 18 +Sam is drinking the juice. 21 +John and mike are crawling under the cot. 33 +The dog is wagging its tail. 22 +You are writing in your paper. 24 +She is waving her right hand. 23 +He is jumping over the fence. 23 +You are taking your books. 21 +You are putting the sweets in your mouth. 33 +Lucy is putting on her dress. 23 +Look! the sun is rising. 18 +Why are you running so fast? 22 +The children are playing in the park. 30 +Mike is reading the novel. 21 +Water is flowing from the running tap. 31 +Is raining outside now? 19 +What is your sister doing these days? 30 +Rachel is dancing in the hall. 24 +Bella is cooking the beans. 22 +Lucy is jumping in the garden. 24 +She is singing a song. 17 +I am returning tonight. 19 +She is singing. 12 +They are not sleeping. 18 +Is she singing? 12 +He is reading a newspaper. 21 +I am going to England next week. 25 +She is continually watching movies on tv. 34 +He is always doing one mischief or others. 34 +They are constantly changing their statements. 40 +He is repeatedly making the same mistakes. 35 +He has won a prize. 14 +You have insulted me. 17 +She has written this essay. 22 +I have completed my work. 20 +They have helped me. 16 +We haven't made any mistakes. 23 +Have you packed your all books? 25 +He hasn't played with us. 19 +I have met him before. 17 +He has been to London. 17 +I have already read this novel. 25 +I have always helped him. 20 +He has recently met the prime minister. 32 +He has not been doing his work. 24 +I have not been going there. 22 +It has been raining since morning. 28 +She has been teaching for ten years. 29 +I have been working in the field. 26 +He has been working for the last two hours. 34 +He has been watering the plants. 26 +Have you not been going there? 24 +The farmers are been plowing their fields since morning. 47 +She has been working all day. 23 +I met him yesterday. 16 +I ate two eggs in the morning. 23 +She wanted to be an air hostess. 25 +I visited Julie yesterday. 22 +He told me something. 17 +She left in the morning. 19 +Lucy won first prize in the singing competition. 40 +The boy killed the spider. 21 +The passengers rushed to board the train. 34 +He escaped from the prison. 22 +We heard a loud sound. 17 +They took him to the hospital. 24 +I was in Delhi last month. 20 +He was here last year. 17 +She was in school yesterday. 23 +We were in Haryana three weeks ago. 28 +You were in the hospital two years ago. 31 +They were there a long time ago. 25 +The accident happened last Sunday afternoon. 38 +We stayed at the grand hotel when we went to Kolkata. 42 +We enjoyed our holiday last year. 27 +I ate a mango. 10 +It rained yesterday. 17 +Ana watched tv all night. 20 +They didn't live in Pune. 19 +I went to the beach. 15 +He went to the park. 15 +You ate my cake. 12 +I saw a movie yesterday. 19 +I didn't travel to Mumbai. 20 +I played with a ball. 16 +I saw a snake. 10 +India won the match. 16 +She took her first music class last day. 32 +Jack had already taken his breakfast. 31 +The rain had stopped when we stepped out of the house. 43 +The patient had died before the doctor arrived. 39 +The bell had gone before I reached school. 34 +Columbus discovered America. 25 +I went to her house. 15 +She did not sing. 13 +The children didn't play. 20 +She sang. 7 +I did not write a letter. 19 +I went to Delhi yesterday. 21 +She meet us two days ago. 19 +We walked for five minutes. 22 +If you went there, you should meet. 28 +If she worked hard she would pass. 27 +He said that he worked for eight hours every day. 39 +You were sleeping while I was working. 31 +I was hoping to win the first prize. 28 +The child was playing with his dog. 28 +The boy was sleeping. 17 +It was starting to rain. 19 +I was reading when the lights went out. 31 +She was washing clothes. 20 +John was repairing the car. 22 +The students were preparing for their exams. 37 +Rachel was rehearsing for the play. 29 +Lucy was waiting for the bus. 23 +The birds were chirping. 20 +The boys were learning their lesson. 30 +She was getting dressed. 20 +He was searching for his purse. 25 +The cat was chasing the mouse. 24 +It was raining. 12 +The wind was blowing fiercely. 25 +The dogs were barking. 18 +We were watching the shop windows when we met joe. 40 +When tom arrived, sam was studying. 29 +Were lucy and donna cooking in the kitchen? 35 +Were we going to the market? 22 +Was he playing cricket? 19 +When he saw John in the library, he was returning his books. 48 +Sam was not living in Kolkata in July last year. 38 +At four o'clock yesterday we were not all drinking tea. 44 +Was he doing his homework? 21 +Were they crying there? 19 +The baby was weeping in the room. 26 +Children were making noise in the class. 33 +Why did you look at her? 18 +We saw an airplane while it was taking off. 34 +My mother was sleeping when I returned home. 36 +Joe was dancing at the party. 23 +She is taking things from her brother. 31 +They are ringing the phone continuously. 34 +They were not making noise. 22 +The train was running at full speed. 29 +He was writing a letter. 19 +The children were playing. 22 +She was cooking at eight o clock. 26 +The girls were singing. 19 +He was reading a newspaper. 22 +Donna was finding fault in my work. 28 +While I was bathing, my sister was washing clothes. 42 +Mike was always smoking whether at the office or home. 44 +He was reading the novel when the bell rang. 35 +I had gone to Delhi yesterday. 24 +I had waited for my friend. 21 +She had taken his launch. 20 +She had not been to Agra. 19 +I had read this book before. 22 +The child was crying because the father has beaten him. 45 +Sam was weeping because he had lost his bag. 35 +He had already left for Germany. 26 +She had not come for years ago. 24 +They had not met each other before. 28 +If they had left early, they would have caught the train. 46 +By morning he had left for Delhi. 26 +Children had been playing since morning. 34 +She had been studying hard. 22 +I had been studying hard for exams at that time. 38 +I had been eating food when she came. 29 +I had been sleeping when the bell rang. 31 +I had been watching a movie when they arrived. 37 +I had been swimming when the girl shouted. 34 +I had been buying. 14 +You had been buying. 16 +She had been buying. 16 +We had been buying. 15 +They had been buying. 17 +Will I come in? 11 +You are going to cry. 16 +He will close the shop. 18 +He will help you tomorrow. 21 +She will cry. 10 +He shall jump. 11 +When will you travel? 17 +I will make tea. 12 +They will win the game. 18 +They will go to school. 18 +We will play basketball. 20 +You had been sleeping till now since morning. 37 +She has been taking sunbath for a month. 32 +I had been driving this car for four years. 34 +He had not been seeing for a few days. 29 +The players had been running for three hours. 37 +Had he been studying for an examination for four days? 44 +Where had he been living for so many days? 33 +You had not been going to school since Tuesday. 38 +He had not been meeting me for a month. 30 +Where had joe been playing since noon? 31 +I will be writing articles. 22 +I will be going to the library. 24 +They will be playing football. 25 +Ana will be reading various kinds of books. 35 +I will be helping him to do the task. 28 +The picture will have started by the time we reach the hail. 48 +It will be raining in November. 25 +We shall be playing tomorrow morning. 31 +The government will be building a new dam. 34 +Girls shall not be using this book. 28 +Ron and john shall be starting a new business. 37 +The driver will not be driving the bus. 31 +I will be playing basketball. 24 +I shall be doing the work tomorrow. 28 +We shall be going to Delhi tomorrow. 29 +They will be finishing school soon. 29 +We will be living in Delhi. 21 +You will be bargaining. 19 +He will not be graduating. 21 +They will not be eating with us. 25 +Will he be going? 13 +Will you be calling? 16 +We will not be arriving at home. 25 +He will have finished. 18 +We shall have reached there. 23 +"She will have read ""the tempest""." 25 +He will have known joe. 18 +I will have finished this book. 25 +She will have cooked dinner. 23 +We won't have met lucy. 17 +Will he have got married? 20 +Will she have graduated? 20 +He will have completed his project. 29 +They will have enjoyed the party. 27 +I am eating an apple. 16 +I am eating a pear. 14 +Jawaharlal Nehru was the first prime minister of India. 46 +I want an umbrella. 15 +I read the tribune. 15 +The world is an amazing creation. 27 +Give me the letter which has been given to you by the teacher. 49 +We bought a bed and a table. 21 +I am eating the apple. 17 +He showed me a box. 14 +A boy and a girl. 12 +The boy ran after the dog. 20 +Joe's house was down the hills. 24 +He pointed to the tree. 18 +Sam kills a snake. 14 +What color do you like? 18 +What time is it? 12 +Who is he? 7 +Why are you happy? 14 +When do you get up? 14 +Which one do you want? 17 +How do you make coffee? 18 +I like sugar in my tea, but I don't like milk in it. 38 +Listen to the story and answer the questions in complete sentences. 56 +Is it Thursday or Friday today? 25 +He was late because the bus didn't come. 31 +We were very tired but happy after our flight to Sydney. 45 +They climbed the mountain although it was very windy. 44 +I'll text you after I have arrived in Toronto. 36 +Neither my brother nor my sister owns a car. 35 +The sun was warm, yet the wind was a bit too cool. 38 +As he was not ready, we went without him. 32 +He asked me if I had seen his keys. 26 +I was angry because I had lost my way. 29 +Please wait here until the manager arrives. 36 +He put on his coat and went out. 24 +I called him many times, but he did not answer my calls. 44 +Unless you mend your ways, you will land in big trouble. 45 +Although she was angry, she said nothing. 34 +He had gone before I arrived. 23 +When they arrived, I was working in the garage. 38 +He was tired so he took some rest. 26 +I am dancing but she is singing. 25 +Joe has not come nor has sam. 22 +Donna is drinking neither hot chocolate nor coffee. 43 +I cannot attend the meeting for I am unwell. 35 +Though he is poor, he is honest. 25 +Though she was intelligent, she failed. 33 +I am happy although I want to be more. 29 +Although they are good at it, they did mistakes. 39 +If only, I would be a prime minister. 29 +I could get there if only, tomorrow. 29 +Wait here till I come. 17 +He practices for the exams till late. 30 +She is weak as she was ill. 20 +s I left my home, I found a purse. 25 +We eat in order that we may live. 25 +You will not pass unless you study. 28 +He talks to me as if he were my boss. 27 +She behaves as if she were a dictator. 30 +Do not go until I come. 17 +I know the time when she was born. 26 +Their dog is a black Doberman. ours is a white pomeranian. 46 +Lucy has had her lunch. 18 +Joe has never invited me to her home. 29 +This is not mine. it must be hers. 25 +This is my house. it is smaller than yours. 33 +Where is your coat? 15 +Our parents are visiting us next month. 32 +He was arrested for treating his servants badly. 40 +You must listen to your parents. 26 +Rachel will be here in thirty to forty minutes. 38 +The ship was across the river. 24 +He noticed the creeper at the foot of the tree. 37 +The birds were caught in the net. 26 +It would be a pity to destroy it now. 28 +The girl was thrilled to see her new bicycle. 36 +As they flew into the tree they were trapped. 36 +The children walked on the bridge. 28 +The frogs jumped into the well. 25 +Put the books on the table. 21 +She is coming to donna's place. 24 +We met at night. 12 +The book is on the table. 19 +We stay at home during the holidays. 29 +I will be there at ten o'clock. 23 +It has rained for three hours. 24 +We shall meet at 6 o'clock. 20 +We have a holiday at Diwali. 22 +I will come on the night of 10th June. 29 +We will meet on Friday afternoon. 27 +I first met him in 2019. 18 +Cricket is played in India in winter. 30 +People work during the day. 22 +He traveled by day and slept by night. 30 +We enjoyed ourselves during the lockdown. 35 +I have to complete the work by Monday. 30 +We go for a walk every morning. 24 +Diwali is on 10 November. 20 +They finished work by sunset. 24 +He should be here by now. 19 +My birthday is on the 20th of June. 27 +They came here at 5 pm. 17 +She went out of the room. 19 +She married at the age of twenty. 26 +I called on my friend at night. 24 +She was born in 1990. 16 +We congratulated him on his birthday. 31 +During the war, many people were killed. 33 +By that time, the moon was up. 23 +They have lived here for five years. 29 +It has not rained since the end of June. 31 +She lived with them till the age of twenty. 34 +You will have to wait until my return. 30 +I get up before six. 15 +The Indians live in India. 21 +He worked on a farm for some time. 26 +They came from China. 17 +He looked under the bed. 19 +They held an umbrella over her. 25 +We walked along the street. 22 +A tree fell onto a car. 17 +Why are you throwing stones at the dog? 31 +Who told you this? 14 +Have you completed the homework? 27 +Did you understand why I was upset? 28 +What are you doing next weekend? 26 +In problem? 9 +The sun rises from the east, right? 28 +Rachel, come here. 15 +There are parrots, crows, etc. 25 +Yes, I leave tobacco. 17 +Twinkle, twinkle all night. 23 +Yes, I can meet you tomorrow, if the weather is fine. 42 +Hi, what is your name? 17 +My sister, unlike me, is very well-behaved. 35 +My favorite colors are black, blue, and red. 36 +Lucy, wait for me. 14 +Finally, we can go outside! 22 +They are going to Dubai. 19 +Donna is a lovely girl. 18 +I can speak English very well. 24 +We are all waiting for you. 21 +Joe is studying in class 9. 21 +I like cricket. 12 +Mike lives in Mumbai. 17 +Sam studies in class 6. 18 +This is a bottle. 13 +I reach school at 730 in the morning. 29 +"""Burma is the land of the Buddhists""." 28 +I don't like this one bit, said joe. 27 +Have you met our handsome new financial director? 41 +If you are ever in London, come and see you. 34 +Mike, in the Ferrari, was cornering superbly. 38 +Looking straight at her, he said, 'i can't help you.'. 40 +It is a fine idea to let us hope that it is going to work. 43 +We will be arriving on Monday morning at least, I think so. 47 +A textbook can be a 'wall' between teacher and class. 41 +Pardon me, oh god! 14 +How beautiful the sky is! 20 +Mother! should I stay or leave? 24 +"""where do you want to go?"", asked joe." 27 +Hello, mike!, joe called. 20 +I'm telling you! 12 +Help! I think I am lost! 17 +Are you going to the store? 21 +"""you will be happy here?"", mum asked." 27 +The good are saved the bad are damned. 30 +Bright is the day dark is the night. 28 +The criminal surrendered he was defeated. 35 +"""go, rangers, go!"", john said." 22 +Ouch! you're standing on my foot! joe said. 32 +I don't believe it! 14 +Who chose this tie? 15 +Today's winner is sam. 17 +Give me all your money! 18 +I didn't know what was happening. 26 +I'm in a lot of pain right now. 22 +The teacher teaches the students. 28 +I see a clear sky. 13 +Tom caught the burglar. 19 +Sam beat joe. 10 +Your mom will forgive you. 21 +John will never help joe. 20 +She gave me a bouquet. 17 +We gave him a watch. 15 +He played cricket. 15 +Lucy sings a song. 14 +I made a mistake. 13 +He has done his work. 16 +She sings a sweet song. 18 +Do you not play hockey? 18 +Does he sell lottery tickets? 24 +I am bending the branch. 19 +Is she boiling eggs? 16 +Are the servants bringing tea? 25 +The hunter killed the tiger. 23 +The maid cleans these rooms daily. 28 +We make butter from milk. 20 +People never invite me to parties. 28 +How do they make butter? 19 +I misplaced my keys yesterday. 25 +Somebody stole my car last week. 26 +The teacher is not revising the course. 32 +He will not write a letter. 21 +Will joe play on the flute? 21 +Has he seen the fair? 16 +Mike has got a prize. 16 +Saleem loved noorjahan. 20 +Some girls were helping the wounded women. 35 +She plucks flowers from the plant. 28 +John offers her a flower. 20 +Do they perform fine arts? 21 +What does she ask? 14 +Where does ana search the book? 25 +John is making a loud noise. 22 +She is not heeding his instructions. 30 +What is lucy doing? 15 +Donna has forgotten his name. 24 +Have they won the match? 19 +Where has Rachel studied law? 24 +How many marks have lucy scored? 26 +What were they discussing? 22 +Where was the road leading you? 25 +Why will they allow you to enter? 26 +I had watched the movie earlier. 26 +Please, open the door. 18 +Please, stand in a queue. 20 +He reads a novel. 13 +He does not obey his teachers. 24 +He killed a snake. 14 +Why do you waste time? 17 +I shall help him. 13 +I told her a story. 14 +Who will pay the bill? 17 +She is waiting for us. 17 +Is he doing his work? 16 +He may help you. 12 +Do you love him? 12 +I know him. 8 +Music interests me. 16 +The student was taught by the teacher. 31 +A clear sky is seen by me. 19 +A snake is killed by sam. 19 +The burglar was caught by tom. 24 +Joe was beaten by sam. 17 +You will be forgiven by your mom. 26 +Tia will never be helped by lucy. 26 +A bouquet was given to me by her. 25 +A watch was given to him by us. 23 +Cricket was played by him. 21 +A song is sung by lucy. 17 +A mistake was made by me. 19 +His work has been done by him. 23 +A sweet song is sung by her. 21 +Is hockey not played by you? 22 +Are lottery tickets sold by him? 26 +The branch is being bent by me. 24 +Are the eggs being boiled by her? 26 +Is tea being brought by the servants? 30 +The tiger was killed by a hunter. 26 +These rooms are cleaned by the maid daily. 34 +Butter is made from milk. 20 +I am never invited to parties. 24 +How is butter made? 15 +My keys were misplaced by me yesterday. 32 +My car was stolen last week. 22 +The course is not being received by the teacher. 39 +The letter will not be written by him. 30 +Will the flute being played by joe? 28 +Has the fair been seen by him? 23 +The prize has been gotten by john. 27 +Noorjahan is loved by saleem. 24 +The wounded women were being helped by some girls. 41 +Flowers are plucked from the plant by her. 34 +She is offered a flower by john. 25 +Are fine arts performed by them? 26 +What is asked by her? 16 +Where is the book searched by lucy? 28 +A loud noise is being made by john. 27 +His instructions are not being heeded by her. 37 +What is being done by sam? 20 +His name has been forgotten by mike. 29 +Has the match been won by them? 24 +Where has the law been studied by mike? 31 +How many marks have been scored by lucy? 32 +What was being discussed by them? 27 +Where were you being led by the road? 29 +Why will you be allowed to enter by them? 32 +The movie had been watched earlier by me. 33 +You are requested to open the door. 28 +You are requested to stand in a queue. 30 +A novel is read by him. 17 +His teachers are not obeyed by him. 28 +A snake was killed by him. 20 +Why is time wasted by you? 20 +He will be helped by me. 18 +A story was told to her by me. 22 +By whom will the bill be paid? 23 +We are being waited by her. 21 +Is the work being done by him? 23 +You are ordered to shut the door. 26 +You are advised to work hard. 23 +You may be helped by him. 19 +Is he loved by you? 14 +He is known to me. 13 +I am interested in music. 20 +I washed my hands because they were dirty. 34 +Somebody has the broken pane. 24 +We saw a very good film yesterday. 27 +I have never ridden a horse. 22 +Have you finished your work yet? 26 +Boys fly kites. 12 +I feel sorry. 10 +The ball has been lost. 18 +I have read the book. 16 +When I am tired, I enjoy watching television. 37 +The teacher taught the lesson yesterday. 34 +We visited him yesterday. 21 +He has recovered completely. 24 +He is waiting for the results. 24 +Last month he appeared for an interview. 33 +Yesterday, I received her reply. 27 +John has been lying in the hospital for two weeks. 40 +She is a wonderful singer. 21 +He was planning to meet the doctor. 28 +They were winners last year. 23 +Birds have feathers. 17 +The teacher praised the pupil. 25 +She is eating a pear. 16 +They are playing football. 22 +She is writing an essay. 19 +Rachel looks very beautiful. 24 +The ship sank rapidly. 18 +I was late for school yesterday. 26 +These questions are difficult. 26 +It is a great feeling to win the trophy. 31 +Please let me work. 15 +The boys make a noise. 17 +Stand up. 7 +What a clever girl you are! 21 +What a horrible sight it was! 23 +My father is a bank employee. 23 +Children like sweets. 18 +Who is at the door? 14 +Don't make a noise. 14 +You are a true hero. 15 +Mike is a well-behaved man. 21 +What a pity! he is dead. 17 +He is on the way. 12 +Oh please! don't say that again. 24 +Reading a novel is a good habit. 25 +Joe is a woman of a gorgeous style. 27 +The horse runs at a good speed. 24 +In the end, we all have to die. 23 +As soon as you got in, he went out. 26 +I want something. 14 +I want to read a book. 16 +I wished to speak to the principal. 28 +He loves to talk to you. 18 +I intend to work hard. 17 +He dislikes having to go there. 25 +Horses prefer living in the darkroom. 31 +I should hate having to punish him. 28 +He refuses to write anything. 24 +Having dirty thoughts is disgraceful. 32 +Thinking good thoughts precedes good actions. 39 +Have you ever tried using butter instead of oil? 39 +Use the space around you. 20 +He did what he was told. 18 +He has taken his seat. 17 +I have learned from you how to love. 28 +I want you to come. 14 +Show me how to do it. 15 +He has a chain of gold. 17 +We asked john round for diner. 24 +I am fed up with his complaints. 25 +All children need love. 19 +Plants need water and sunlight. 26 +My brother serves in the army. 24 +Puppies make great companions. 26 +Fire burns and wind blows. 21 +The river flows into the sea. 23 +Time flies. 9 +She remembers everything. 22 +I keep forgetting things. 21 +This pen is small. 14 +These shoes are black. 18 +This is a temple. 13 +That is a hill. 11 +These are buildings. 17 +That plane is a toy. 15 +This cat isn't eating. 17 +Those glasses are for reading. 25 +These glasses are sunglasses. 25 +I like this pen. 12 +A man an egg. 9 +The cow gives us milk. 17 +The man whom i meet was very helpful. 29 +Let us go to the park. 16 +This is the boy that I meet yesterday. 30 +The sun shines in the sky. 20 +My favourite subject is science. 27 +I like painting. 13 +He got injury in the head. 20 +The dog is a faithful animal. 23 +The tiger is young. 15 +The earth moves around the sun. 25 +Sam is the best boy in the class. 25 +Holi is the festival of the Hindus. 28 +I read the Times of India daily. 25 +The gold of this ring is pure. 23 +That house is not mine. 18 +I have some more files to complete. 28 +She doesn't like him much. 20 +Rachel answered all the questions wrong. 34 +All the girls had to carry their own luggage. 36 +I shall not buy these oranges. these are rotten. 38 +I have bought a cycle. 17 +Most of my answers were correct. so I passed. 35 +Hello! this is Mike. can i speak to Joe? 29 +He spends more time on video games. 28 +I went there early. 15 +She will come tomorrow. 19 +I went to the market in the morning. 28 +We have lived in this city since 1995. 30 +We have yet to hear from the bank. 26 +Where have you been since I last saw you? 32 +He has just found a good job. 22 +We have already prepared dinner. 27 +Have you called the doctor yet? 25 +James has not yet arrived. 21 +Will you be on time tomorrow? 23 +I have seen him once. 16 +I seldom read the newspaper. 23 +I occasionally eat junk food. 24 +I sometimes forget my brother's birthday. 34 +He is often late for work. 20 +We seldom see john. 15 +Jack is never late for work. 22 +Sara is often early for class. 24 +I am always with you. 16 +You always make a voice. 19 +Read the facts carefully. 21 +He swims well. 11 +She spoke softly. 14 +She ran quickly. 13 +He plays the flute beautifully. 26 +I laughed nervously. 17 +He quickly drank the water. 22 +She read the letter carefully. 25 +He calmly explained his point of view. 31 +Drive the car slowly. 17 +I eagerly await to see his batting. 28 +Hurry! you are getting behind. 24 +Mary fell down. 12 +We decided to drop in on jake. 23 +Let's get off at the next stop. 23 +Come in! 6 +I'm going back to school. 19 +She took the child outside. 22 +They built a house nearby. 21 +Put it there. 10 +Here comes the bus! 15 +I have nowhere to go. 16 +The water was extremely cold. 24 +The movie is quite interesting. 26 +He was just leaving. 16 +She has almost finished. 20 +She is running very fast. 20 +You are walking too slowly. 22 +You are running fast enough. 23 +I got here early enough. 19 +The coffee is too hot. 17 +It is extremely hot today. 21 +I was sick, thus I didn't go to school. 29 +Because I was late, I jogged a little faster. 36 +He was left because he was late. 25 +I was not well, hence didn't go to school. 32 +The bell rang so she left the classroom. 32 +Since it is snowing, I'm feeling very cold. 34 +I was hungry so I ate pizza. 21 +Because I was sick, I stayed home. 27 +It is late and thus we must go. 23 +He was late so he was punished. 24 +I didn't go for office because it was raining. 36 +It is dark. 8 +You should go. 11 +He is intelligent but he is selfish. 29 +I want to come but I have some work to do. 31 +I think that you will like it. 23 +Where she went is not known to anyone. 30 +Wait here till I come back. 21 +Put the key where you can find it easily. 32 +I am happy that you have liked it. 26 +We shall stay with you if it rains. 27 +It is a big company. four hundred people are employed there. 48 +Water covers most of the earth's surface. 33 +Most of the earth's surface is covered by water. 38 +The park gates are locked at 7 p.m. daily. 31 +The letter was posted a week ago and it arrived yesterday. 47 +The boat sank quickly but fortunately, everybody was rescued. 52 +Why was sam sacked from his job? 25 +I was born in Mumbai but I grew up in Delhi. 33 +While I was on holiday, my camera was stolen from my hotel room. 51 +I hope that I shall pass. 19 +You can see what we have done. 23 +I can't say whom I shall believe. 25 +Please tell me why he is always late. 29 +I can tell you that he is a good boy. 27 +If only I were rich. 15 +She knows what I want. 17 +I can't tell you when he will come. 26 +I asked whether the train will leave on time. 36 +The problem is how we can cross the river. 33 +I arrived after he had started. 25 +I have never seen her since she was ten years old. 39 +His father died when he was young. 27 +Someone called while you were out. 28 +Whenever I smiled, she smiled back. 29 +I shall wait here till you return. 27 +As I was leaving the phone rang. 25 +While you were playing I was working. 30 +I enjoy it a lot while cooking. 24 +Do it before you forget. 19 +Don't talk while she is singing. 25 +I will wait here until you arrive. 27 +Whenever I see him, I feel nervous. 28 +We will meet soon. 14 +As soon as he heard the news, he called me. 33 +If it rains we'll go indoors. 22 +If you boil water, it evaporates. 27 +If you need a pen, you can take mine. 28 +If you request me I shall help you 27 +If you beat a child he weeps. 22 +If I won the lottery, I would buy a car. 30 +If I would rich, I would open a school for the poor. 40 +If I like it, I will buy it. 20 +If you heat ice, it melts. 20 +If it rains, we will stay at home. 26 +You may come if you want to. 21 +You won't pass unless you work hard. 28 +Do you know the girl who started in grade 7 last week? 42 +Can I have the pencil that I gave you this morning? 40 +A notebook is a computer which can be carried around. 43 +I won't eat in a restaurant whose cooks smoke. 36 +I want to live in a place where there is lots to do. 39 +Yesterday was a day when everything went wrong! 39 +I have never met the people who live next door. 37 +This is the key that opens the garage. 30 +Those who haven't submitted their tax returns yet should do so immediately. 62 +He has a daughter who is really beautiful. 34 +I have got a book that you might like. 29 +The people who live next door hardly ever step out. 41 +He has set up a shop where they sell used goods. 37 +It is a movie that will interest children of all ages. 43 +Here is the magazine which you were looking for. 39 +Do you know that fat guy who just walked in? 34 +He is senior to me by five years. 25 +Lucy is the most intelligent of all the students in the class. 50 +Choose the better of the two. 23 +Uttar-Pradesh is the most populated state of India. 42 +Make less noise. 13 +Joe is the better painter of the two. 29 +You are junior to me. 16 +Health is better than wealth. 24 +Taj Mahal is one of the most beautiful buildings in the world. 50 +She is a cleverer girl. 18 +You are the widest boy. 18 +I saw the longest tree. 18 +You are better than him. 19 +She is the most beautiful lady in the hall. 34 +Are you feeling better now? 22 +May was the hottest month of the year. 30 +Mike is wiser than two. 18 +You are the most regular boy in the class. 33 +Who is the tallest person in your family? 33 +My mum is the best cook in the world. 28 +He will go to Chennai next month. 26 +You shall not enter the kitchen with muddy shoes. 40 +Mike will see you again. 19 +You shall go at once. 16 +I will write a letter to him tomorrow. 30 +Will you do me a favor? 17 +Work hard lest you should fail. 25 +You should send a reply tomorrow. 27 +You would please lend me your bicycle? 31 +You should do as he says. 19 +You would like another cup of tea? 27 +"They said, ""We shall have won the race""." 30 +"She will say, ""I have sent him a present""." 31 +"He said, ""face is the index of min""." 26 +"The teacher said, ""the earth rotates around its axis""." 43 +"Rachel said, ""death comes sooner or later""." 34 +"He said, ""India became free on 15th august, 1947""." 39 +"She said, ""her father lived in Kerala for ten years""." 41 +"She said, ""I am a top-class singer""." 26 +"We said, ""he is writing a poem""." 23 +"He said, ""it may rain tonight""." 23 +"He said, ""a devil ever remains a devil""." 30 +"Sam says, ""she has brought fame to her family""." 36 +"Sam has said, ""I cannot displease my friend""." 35 +"I shall say, ""I went to Agra on Monday""." 29 +"She said, ""I was American""." 20 +"He said to her, ""do you want to go home?""." 29 +"He said to you, "" where are you going?""." 28 +"I said to him, "" what brings you here?""." 28 +"She said to me, ""who taught you English?""." 31 +"The mother said to the child, "" did you have your breakfast?""." 47 +"He said, "" how is your father?""." 22 +What do you want? he said to her. 24 +"""don't you know the way home?"", I asked." 28 +"""do you really come from china?"", said the prince." 38 +"""sit down boys"", said the teacher." 26 +"""run away, children"", said the mother." 30 +"He says, ""he writes a poem.""." 20 +"You said to us, ""how do you solve this problem?""." 36 +"I said to my friend, ""have you been to England?""." 36 +They said that they would have won the race. 35 +She will say that she has sent him a present. 35 +He said that face is the index of mine. 30 +The teacher said that the earth rotates around its axis. 46 +Rachel said that death comes sooner or later. 37 +He said that India became free on 15th August, 1947. 42 +She said that her father lived in Kerala for ten years. He said to her, 56 +She said that she was a top-class singer. 32 +We said that he was writing a poem. 27 +He said that it might rain tonight. 28 +He said that a devil ever remains a devil. 33 +Sam says that she has brought fame to her family. 39 +John has said that he cannot displease his friend. 41 +I shall say that I went to Agra on Monday. 32 +She said that she was American. 25 +He asked her if she wanted to go home. 29 +He asked you where you were going. 27 +I asked him what brought him there. 28 +She asked me who had taught me English. 31 +The mother asked the child if he had his breakfast. 41 +He inquired about my father. 23 +He asked her what she wanted. 23 +I asked if he did not know the way home. 30 +The prince asked him if he really came from china. 40 +The teacher asked the boys to sit down. 31 +The mother asked the children to run away. 34 +He says that he writes the poem. 25 +You asked us how we solved that problem. 32 +I asked my friend if he had been to England. 34 +Do you have to obey his orders? 24 +I said that I should go to school the next day. 36 +She had to look after her mother. 26 +First, you have to mix the water and sugar. 34 +This is the only thing you need to do. 29 +Need to attend the class today? 25 +You ought, to tell the truth. 23 +We must obey our teachers. 21 +The villagers had to use kerosene lamps a few years ago. 45 +He needs not to buy a car. 19 +The girl is playing. 16 +I like this scenery. 16 +Honesty is the best policy. 22 +One of the girls was singing. 23 +The moon was shining in the sky. 25 +The chairs which I bought yesterday were very costly. 44 +There is none chair in the room. 25 +My friend and his father are meeting us tomorrow. 40 +Ten thousand rupees is not a small one. 31 +"""The hotel taj"" is five-star hotel." 26 +Mathematics is not an easy subject. 29 +The Indian cricket team has won the match. 34 +This furniture is very old. 22 +As I left my home, I found a purse. 26 +Time to hit the books. 17 +I need to cram for a final. 20 +I have to study. 12 +When is the final? 14 +What grade are you in? 17 +I need to prep for a big test. 22 +I've got a big exam tomorrow. 22 +What tests are required? 20 +When is the assignment due? 22 +What's the grading curve? 20 +I've got to study. 13 +How is my daughter doing in class? 27 +What can I do to help her at home? 25 +Do you have a note from home? 22 +Can I talk to you about my grade? 25 +I'd like to talk about my daughter's grade. 33 +She's having a hard time with her homework. 34 +How can I help her with her homework? 29 +Is attendance required in this course? 32 +Do you have a note from your mother? 28 +When is the midterm? 16 +What will the test cover? 20 +How do you like school? 18 +Do you go to school yet? 18 +You're just like your mother. 23 +You take after your father. 22 +She favors her mother. 18 +Like father, like son. 18 +He's a real mama's boy. 16 +She looks just like her mother. 25 +She's the picture of her mother. 25 +He's got his father's features. 24 +She's got her mother's nose. 21 +He's a chip off the old block. 22 +She's a real daddy's girl. 19 +She's daddy's little girl. 20 +We're best friends. 15 +She's my best friend. 16 +She is one of a kind. 15 +They're two of a kind. 16 +Do you care if I join you? 19 +We're like a brother. 16 +Care if I join you? 14 +Let's play pool. 12 +We're very close. 13 +We're the closest of friends. 23 +She's a dear friend. 15 +May I join you? 11 +Is this stool taken? 16 +Is this seat taken? 15 +Can I buy u a drink? 14 +Could I get you something to drink? 28 +Would you like to play darts? 23 +Do you know who does this song? 24 +She's my closest friend. 19 +She's like a sister to me. 19 +We're pretty tight. 15 +I can't drink milk. 14 +I can't breathe. 12 +My eyes itch. 10 +I feel sick. 9 +The room is spinning. 17 +My sinuses are bothering me. 23 +My sinuses are congested. 21 +My nose is clogged. 15 +My nose is congested. 17 +My allergies are acting up. 22 +My eyes are swollen. 16 +My skin is breaking out. 19 +My skin itches whenever I eat shrimp. 30 +I'm breaking out. 13 +I feel sick to my stomach. 20 +I feel nauseous. 13 +I think I'm going to throw up. 22 +I think I'm going to be sick. 21 +My head hurts. 11 +My head is killing me. 17 +We're on our way. 12 +That'll never hold water. 20 +It doesn't stand a chance. 20 +It makes no difference. 19 +Get rid of it. 10 +Wipe it off the map. 15 +Put it out of its misery. 19 +Throw it out. 10 +Put it in the circular file. 22 +File it. 6 +Well, it's back to square one. 23 +Well, it's back to basics. 20 +Time to start over from scratch. 26 +It's not worth the trouble. 21 +The pleasure was mine. 18 +She's beautiful. 13 +Good going! 9 +Many happy returns! 16 +Happy anniversary! 16 +Happy birthday! 13 +Have a good trip! 13 +Have a good time! 13 +How should I dress? 15 +What should I wear? 15 +You have many thanks. 17 +Thanks ever so much. 16 +Thanks a bunch. 12 +I owe you big. 10 +Thank you very much. 16 +Thank you for your help. 19 +I'm deeply grateful. 16 +I'm indebted to you. 15 +Thanks a million. 14 +I'm in your debt. 12 +I owe you big-time. 14 +You have much gratitude. 20 +Thank you for all you've done. 23 +I'll be there after dinner. 21 +I couldn't get a taxi. 16 +Am I ever surprised to see you! 24 +Come in and stay awhile. 19 +Come in and set a spell. 18 +Come in and take a load off your feet. 29 +Come in and sit down. 16 +Traffic was slow. 14 +I didn't realize it was so far away. 27 +I'll be there in just a moment. 23 +Be there in a minute. 16 +I couldn't get a cab. 15 +May I bring a friend? 16 +This is my friend Mary. 18 +Glad to meet you. 13 +How's the family? 13 +How's business? 12 +John, this is Mary, John. 20 +Mary, do you know john? 18 +Mary, have you met john? 19 +I've been better. 13 +Good to meet you. 13 +So we finally meet face to face. 25 +How are you getting along? 21 +Pardon me... 8 +If it's okay with you. 16 +As you are aware... 13 +Come again. 9 +I can't hear you. 12 +That's all right. 13 +Forgive and forget. 16 +I'll let u off this time. 18 +Let's bury the hatchet. 18 +Think on it no more. 15 +Don't give it another thought. 24 +I'll let it slide this time. 21 +I'll give you another chance. 23 +I won't hold it against you. 21 +It's twelve noon. 13 +It's three o'clock sharp. 19 +It's three-fifteen. 15 +It's twenty to four. 15 +Could you tell me what time it is? 26 +Could you please tell me the time? 27 +Do you know what time it is? 21 +Do you know the time? 16 +Do you have the correct time? 23 +It's noon. 7 +It's twelve midnight. 17 +It's three o'clock on the dot. 22 +It's three o'clock on the nose. 23 +It's just after three. 17 +It's getting later. 15 +Let's do lunch sometime. 19 +Good-bye for now. 13 +Exit stage right. 14 +It's been fun talking to you. 22 +It's been nice chatting with you. 26 +It's so good to see you again. 22 +Must run. 7 +I'm going to have to run. 18 +I'm all out of time. I'll have to say goodbye now. 36 +Look at the time. I really must go. 26 +Let's call it a day. 14 +Let's get out of here. 16 +Let's get going. 12 +We should be on our way. 18 +Let's say our goodbyes. 18 +You're most welcome. 16 +The pleasure was all mine. 21 +It was nothing. 12 +You're entirely welcome. 20 +Need someone to talk to? 19 +It will work out. 13 +Are you feeling ok? 15 +Are you all alright? 16 +Do you feel all right? 17 +Did life get you down? 17 +Have you no conscience? 19 +How is everything? 15 +What's happening? 14 +Where did you go? 13 +We missed you. 11 +I haven't seen you in years! 21 +Welcome back, stranger! 20 +Fancy meeting you here. 19 +Haven't we met before? 17 +How are you this bright morning? 26 +Long time no see! 13 +I've been meaning to call you. 23 +Do you have pictures? 17 +I'm tone-deaf. 10 +I'm tone deaf. 10 +What a racket! 11 +Prick up your ears! 15 +Tastes great. 11 +That noise is deafening. 20 +That noise assaults the ear. 23 +That noise is setting my teeth on edge. 31 +My ears are ringing. 16 +I'm sorry, I'm hard of hearing. 23 +I'm so sorry. 9 +I'm so sorry for your loss. 20 +You have my deepest sympathy. 24 +Please accept my sympathy. 22 +I share your pain. 14 +You have my sympathy. 17 +My heart goes out to you. 19 +I share your sorrow. 16 +If you need anything, please let us know. 33 +Our thoughts are with you. 21 +Do you mean to tell me? 17 +I didn't get that. 13 +I don't follow you. 14 +Open your ears. 12 +You've got it wrong. 15 +What's the point? 13 +I didn't hear from you 17 +How so? 5 +What's the bottom line? 18 +I don't get it. 10 +That's not what I meant. 18 +That's not what I said. 17 +I said no such thing. 16 +I didn't mean to imply that. 21 +Please speak more slowly. 21 +When do you open? 13 +Are you open on Saturday? 20 +Are you open on weekends? 20 +What are your hours? 16 +How late are you open today? 22 +Can I help you with something? 24 +I need gloves. 11 +Do you have our store card? 21 +Can I show you something? 20 +What size do you need? 17 +I have just the thing. 17 +It's a gift. 8 +I am famished. 11 +I'm dying of hunger. 15 +Dinner's ready. 12 +How about a bite. 13 +Please pass me the salt. 19 +When do we eat? 11 +When's dinner? 11 +When's supper? 11 +When will supper be ready? 21 +What's to eat? 10 +What are we having? 15 +It's almost ready. 14 +Time to eat. 9 +That tastes like chicken. 21 +That's unfit for human consumption. 29 +Like mother, like daughter. 23 +We are a family. 12 +It's almost done. 13 +I'm so furious. 11 +I was scared. 10 +I was terrified. 13 +You frightened me. 15 +You scared me to death. 18 +I'm going nuts. 11 +I'm going crazy. 12 +I'm losing my mind. 14 +I need a break. 11 +I need some sleep. 14 +My head is going to explode. 22 +I can't take it anymore. 18 +I can't deal with this anymore. 24 +I have got butterflies in my stomach. 30 +I've never been so mad in my life. 25 +Safety first. 11 +Take your time. 12 +Play it cool. 10 +Be careful! 9 +Don't forget to call. 16 +Call when you get there. 19 +Text me. 6 +The exit stage left. 16 +Hello, Smith residence. 20 +Hello, this is John speaking. 24 +Smith, how may I direct your call? 27 +City hall. what department, please? 29 +I need to take this call. 19 +Can you hold it? 12 +Hang on a moment. 13 +I really have to go now. 18 +I'll just be a minute. 16 +Are you being helped? 17 +Could I have someone call you? 24 +I am standing behind you. 20 +I am a hundred percent behind you. 27 +I am with you. 10 +You have got my support. 19 +You can count on me. 15 +You've got my vote. 14 +You can lean on me. 14 +You can trust me. 13 +You can put your trust in me. 22 +If you need me, call. 16 +I'll always be there for you. 22 +I have faith in utmost in you. 23 +I trust you completely. 19 +I have confidence in you. 20 +I'm cool. 6 +Keeping cool. 11 +Fine and dandy. 12 +Couldn't be better. 15 +Happy as a clam. 12 +Getting by. 9 +Been getting by. 13 +Could be better. 13 +Same as usual. 11 +Not so well. 9 +A pleasure. 9 +Well said. 8 +I agree. 6 +Right you are. 11 +Sure thing. 9 +You bet. 6 +By all means. 10 +That's true. 9 +That's not true. 12 +You've got that wrong. 17 +You missed the boat. 16 +You're wrong. 10 +Listen here. 10 +Get a load of this. 14 +Hear me out. 9 +I am talking to you. 15 +You got a minute? 13 +Did you get a minute? 16 +I need to talk. 11 +Can I talk to you? 13 +Let's talk. 8 +Let's chew the fact. 15 +Do you have the time? 16 +Coming through. 13 +You first. 8 +Catch you later. 13 +No, I don't think so. 15 +Blaze of sunshine. 15 +We were trundling through the countryside at night. 43 +The eyes are the organs of sight. 26 +Bulldozers oiled up huge mounds of dirt. 33 +The air had a frosty bite. 20 +The film lacks any semblance of realism. 33 +The contest should be very keenly fought. 34 +The wind is moderate today. 22 +Folk songs are part of our common heritage. 35 +A forensic team was hunting for clues. 31 +What a big honeycomb it is! 21 +I could elicit no response from him. 29 +Choral singing becomes a national pride. 34 +There was no spontaneity to her. 26 +Mum was incensed at his lack of compassion. 35 +Polarity is inherent in a magnet. 27 +She is good at telling anecdotes. 27 +I will endeavor to arrange it. 24 +The leaves turn brown in autumn. 26 +A cat was beneath the table. 22 +He had blue eyes and crinkly fair hair. 31 +We fixed up the attic as a study. 25 +The driven part should be geared up. 29 +I had loftily denied the assertion. 29 +He tucked his wallet into a pocket. 28 +There's no town just a cluster of shops. 31 +The film had an exciting plot. 24 +The first prize was a car. 20 +People got lost in the hampton court maze. 34 +We must obey orders. 16 +The floor is littered with scraps of paper. 35 +Her husband looked at her sternly. 28 +Levers are blanked out of strip steel. 31 +A ground sweat cures all disorders. 29 +It's tempting to believe her story. 28 +The president was disguised as a peasant. 34 +Birds of a feather flock together. 28 +I prefer coffee. 13 +He is famous for his cruelty. 23 +The patient is lingering out his life. 31 +She can recite the poem from memory. 29 +The tail and britches are well feathered. 34 +Tuck your shirt into your trousers. 29 +The wind wrinkled the water with waves. 32 +Your dishcloth can harbor many germs. 31 +The sailors are bending to the oars. 29 +Lucy is much to be pitied. 20 +One particular incident sticks in my mind. 35 +The reward of suffering is experience. 32 +Repent and ask god's forgiveness. 27 +John awoke from a fitful sleep. 25 +They are skilled debaters. 22 +The committee has decided to dismiss him. 34 +The story is narrated in flashback. 29 +Curiosity killed the cat. 21 +Dig trenches to drain away from the water. 34 +The house is being built at the moment. 31 +The jacket is very generously cut. 28 +He submitted unwillingly to his mother. 33 +The wire was uncut, the dugouts intact. 32 +Officers are entitled to travel first class. 37 +The best grades of tea are expensive. 30 +We won by a lopsided score. 21 +I have been banished to a distant corridor. 35 +I'm not awfully keen on fish. 22 +She flung him a scornful look. 24 +I am sorrowfully shouting loudly. 28 +He walked nonchalantly to the door. 29 +He diverged the bike. 17 +Cattle had trodden a path to the pond. 30 +The crow flew away. 15 +Sight is one of the five senses. 25 +The deer fell prey to the lion. 24 +I recognized your jeep. 19 +I was guarding you while you dozed. 28 +Farmers feed hay to the cows. 23 +Brinjal is my sister's favorite. 26 +The birds live mainly on nectar. 26 +A snake slithered across the grass. 29 +Spices are widely used in Indian cooking. 34 +Tonight show features a host of celebrities. 37 +This food is very nutritious. 24 +Fame is a magnifying glass. 22 +The bird entangled itself in the net. 30 +The stone stairway was covered with lichens. 37 +The plow was unknown among them. 26 +I am the bearer of seeds. 19 +My job was in a missile silo. 22 +Sowing the seeds of truth. 21 +Beaker was full of chemicals. 24 +It is snow and ice crystals. 22 +Snow and ice dissolve into water. 27 +The force of kinetic energy is greater. 32 +Diffusion clarifies the difference. 31 +The drought damaged all the crops there. 33 +She was prey to irrational fears. 27 +The faintest suspicion of a tinge is cleared. 37 +She recognized Pierre's voice. 25 +Jaggery is used as sugar. 20 +She is bleeding due to mosquitoes. 28 +He is sniffing out his next project. 29 +Vultures and other birds of prey are met. 33 +Pulses include peas, lentils, and chickpeas. 38 +Mix together the mustard and olive oil. 32 +Groundnuts and cotton were exported. 31 +He was bitten by a poisonous snake. 28 +The seeds will sprout in a few days. 28 +Beehive shaped tombs were mixed also. 31 +The manufacture of chlorophyll in plants is activated. 46 +This food provides nutrition for you. 31 +The parasite would not live to see its success. 38 +Stomata are not required in the water plant. 36 +The birds live in symbiosis with cattle. 33 +The severe climatic changes during the ice age had major. 47 +The humidity was low. 17 +The vision loosened its grip. 24 +Rub off the microbes with your handkerchief. 37 +There are few earthworms or snails. 29 +Double cultivation of a man. 23 +He need to think no more of the matters of tilling the soil. 47 +This home decorating idea implements. 32 +It only goes to the sprinkler system. 30 +The tunnels drip and stop. 21 +Raw vegetables contain more potassium. 33 +The area is approximately 100 square kilometers. 41 +The chemical is diluting with water. 30 +Lemonade drops out of glass. 23 +Steam is water in its gaseous form. 28 +Her nostrils flared with anger. 26 +This thermometer is calibrated by centigrade. 39 +Birch trees have white bark. 23 +She professed a belief in god. 24 +The whole holiday was a catalog of disasters. 37 +The city was devastated by floods. 28 +The scribe, what was his fate? 24 +The coastal route had been mined. 27 +The Japanese empire was quickly dismantled. 37 +I'm a foreigner. 12 +A Persian rug covered the polished floor. 34 +The viceroy did not respond to this letter. 35 +It is precisely the case. 20 +He gave jack a significant look. 26 +You have a Scottish accent. 22 +They took over their territories. 28 +Nazism suppressed all three movements. 33 +He sought vainly for the answer. 26 +They waged a battle. 16 +A good beginning is half the battle. 29 +Nobles need not pay taille. 22 +A proportion of the land is used for agriculture. 40 +The tributary is debauched into the big river. 38 +They kept a record of earthquake disasters. 36 +He is conquering his fear. 21 +He saw the caravan people. 21 +She's very religious. 17 +They lived in a town close to the frontier. 34 +The archive is a goldmine for historians. 34 +The dynasty he founded ruled for 700 years. 35 +No record of this letter exists in the archives. 39 +Libraries are stores of factual information. 38 +I'm just one of his many conquests. 27 +There is an emergency. 18 +He became the patron of foresters. 28 +Extremely few historians support this. 33 +The old man fascinated him. 22 +Dawn and resurrection are synonymous. 32 +Mary and Jesse were less enthusiastic. 32 +Rude kingdoms are taking shape. 26 +She is having good personalities. 28 +He gave us the chronology of each item. 31 +Who loses liberty loses all. 23 +She was given freedom. 18 +They are fighting for women's equality. 32 +The country still has a strong monarchy. 33 +Your head is full of silly notions. 28 +Rethought is think again about. 26 +Only a few of the nation's peasants are literate. 39 +The soviet union is no more. 22 +Massacres like the picture too are terrorists. 39 +Love is a sweet tyranny. 19 +He was a feudal lord. 16 +The regime was the very incarnation of evil. 36 +The clergy prey on bereaved families. 31 +Sant wrote many treatises. 22 +Do business, but be not a slave to it. 29 +Earth is a planet. 14 +It'll soon be sunset. 16 +Stars are celestial bodies. 23 +Does life exist on other planets? 27 +You can grow dwarf conifers in pots. 29 +Someplace emphasis on biotic. 25 +The system is relatively easy to use. 30 +Custom is second nature. 20 +Exhaust fumes are bad for your health. 31 +Bicycling doesn't pollute the air. 28 +The terrain is very flat. 20 +He again climbs in altitude. 23 +Oil is extracted from olives. 24 +The device was protected by patent. 29 +The shortage of energy is the problem. 31 +A tropic heatwave is expected to hit the city. 37 +She lit the gas with a taper. 22 +A king in ancient times had many slaves. 32 +A meridian is an imaginary circle. 28 +She's an expert on maritime law. 25 +The two conspired to rob a bank. 25 +The aridity of soil prevents a permanent settlement. 44 +A theft desire is unlimited. 23 +She was heard to emit a cry of horror. 29 +The satellite orbits the earth every 48 hours. 38 +Our ultimate aim is to realize communism. 34 +You can grow dwarf conifers in pots on the patio. 39 +"The earth is called the ""blue planet""." 29 +Hydrogen and oxygen combine to form water. 35 +Don't confuse comets and asteroids. 29 +Each galaxy contains myriads of stars. 32 +In the photo, her face was slightly elongated. 38 +Plant cells responded to biotic stresses. 35 +Established practices are difficult to modify. 40 +His ideas on this subject are a bit foggy. 33 +The rainforest is a self-supporting ecosystem. 39 +I had to barter with the locals for food. 32 +The pet remedies is a feature. 24 +The renewable energy age is here. 27 +I exhausted all my funds. 20 +Love gives and is replenished by loving. 33 +China has a long history of civilization. 34 +The price of oil has dropped significantly. 36 +Austria lies to the southeast of Germany. 34 +There will be rain in the southwest. 29 +The road follows the pacific coastline. 33 +There are latitudinal gradients in species. 37 +This is a longitudinal study of one subject. 36 +We put it to a vote. 14 +Drain them and let cool. 19 +When employers choose not to. 24 +That is the epitome of inequality. 28 +So the civil war began. 18 +Cheers from all the assembly. 24 +The destiny of the fool. 19 +That is the dominant cycle. 22 +It annoyed her to be excluded. 24 +She sets a high value on autonomy. 27 +The new democracies face tough challenges. 36 +Dictators rarely go down without a fight. 34 +Corruption was rife before the election. 34 +I voted 'no' in the referendum. 23 +They were absolute monarchies. 26 +They are accused of medical malpractice. 34 +Catering in the schools is run on a franchise basis. 42 +The constitution guards the liberty of people. 39 +They demanded demonstrations of his powers. 37 +Journalists are supposed to be politically neutral. 44 +The coup leaders could face life imprisonment. 39 +He praised her role in the struggle against apartheid. 45 +The matrimonial causes huge losses. 30 +There was a dignity about. 21 +Provisions of new york statute. 26 +In the heat of midday! 17 +Screw Walt and his stupid prejudices. 31 +They don't relish the idea of abolishing. 33 +Them elaborates on the theme. 24 +I hate to see her misusing her time. 28 +The vast majority of cash. 21 +No matter how sick or unhealthy they are! 33 +The start of real tyranny in us. 25 +There is a fear of adverse legal action. 32 +This includes during colonial times. 31 +The bay glittered in the sunshine. 28 +He refused to be interrogated about his friends. 40 +He was arrested for selling pirated software. 38 +The student was tortured with anxiety. 32 +She hotly denied having taken the money. 33 +Depression is often hereditary. 27 +Judges had been engaging in sexual orgies. 35 +There are speed restrictions on this road. 35 +He survived the massacre by feigning death. 36 +His book destroyed the mystique of monarchy. 37 +Labour is light where love doth pays. 30 +Farmers occasionally plow up old Indian relics. 40 +The plateau extends for many miles. 29 +The government authorized an irrigation project. 42 +The statistics can be depicted as a graph. 34 +Gambling is always coupled with degradation. 38 +We took adequate food for the holiday. 31 +The wood must be free of insecticides. 31 +Swallows begin their migration south in autumn. 40 +Wheat was in surplus that year. 25 +Engineers maintain the turbines. 28 +The crops are regularly sprayed with pesticides. 41 +The threshers came and threshed the oats. 34 +The farmers are out harvesting. 26 +The forest gets down depletion in condition. 37 +The child was rolling a hoop. 23 +I expect he'll pass the examination. 29 +The conductor beat time with a baton. 30 +A flock of wild geese flew overhead. 29 +One must howl with the wolves. 24 +Freedom of expression is a basic human right. 37 +The fire gave out a fierce heat. 25 +The girl darted away like an arrow. 28 +We saw a herd of deer of twenty. 24 +He stood on the edge of the cliff. 26 +She protested her innocence. 24 +The dove is an emblem of peace. 24 +The guerrillas descended on the enemy. 32 +Cars were whizzing past. 20 +I stumbled over a tree root. 22 +The tsunami warning was not lifted. 29 +I reeled round in a daze. 19 +They redeployed the troops along the seashore. 39 +He was deflated by the news. 22 +He sprang up from the sofa. 21 +Don't jostle against me! 19 +The picture was at a slight angle. 27 +I went to a violin recital today. 26 +Our tryst is a litter of green. 24 +She's getting very old and frail. 26 +Don't get into a fuss about anything. 29 +She muttered a threat. 18 +A winding path leads to the cave. 26 +The sail flapped in the wind. 23 +Don't pretend you don't know. 22 +We sat in the leafy shade of an oak tree. 31 +The champion was in sparkling form. 29 +The baby gurgled happily. 21 +The thunder panicked the horses. 27 +The dove is a symbol of peace. 23 +Freedom of expression is a human right. 32 +A servant is known for his master's absence. 35 +Joe sniffed miserably and nodded. 28 +A note of hysteria crept into her voice. 32 +He faithfully lived up to his promise. 31 +Many species have diverged from an ancestor. 37 +Love is letting him take a snooze after dinner. 38 +Generosity is its own form of power. 29 +The hot sun blistered the paint. 26 +The stars are gleaming in the sky. 27 +The brake cable needs tightening up. 30 +The sun beamed down. 16 +She was afraid of upsetting her parents. 33 +The old man groaned with dismay. 26 +The whirlpools are located in a smaller room. 37 +Emily realized that she sounded hysterical. 37 +Our troops withstood the onset of the enemy. 36 +Joe is an eyewitness of murder. 25 +Sam was shocked by seeing carcasses. 30 +Life went back to a semblance of normalcy. 34 +The town grew in a haphazard way. 26 +The ship's route is clearly delineated. 32 +She has worshipped her ancestor. 27 +Solitude had always been her friend. 30 +The maestro was nursing a secret passion. 34 +I bought a few trifles as souvenirs. 29 +King's works seem to lack something on celluloid. 40 +Venture a small fish to catch a great one. 33 +Joe leaned over and conferred with his attorneys. 41 +He won the prize they all coveted. 27 +There is peace among the tribes. 26 +We are on an island. 15 +Dolphins smiled out at her. 22 +It was more like a tsunami! 21 +The child of sloth and liberty. 25 +Whether by sharp teeth, claws, tusks, or. 34 +She could smell the musk. 20 +Proteins and DNA are polymers. 25 +He's a scurvy wretch. 16 +You eat too much starch. 19 +All the fibers are natural. 22 +Jaggery is sweet in the taste. 24 +The amoeba is a very simple organism. 30 +The fox is a canine animal. 21 +He has good digestion. 18 +Glycerol is a colorless liquid. 26 +The cow is a ruminant. 17 +A vaccine is being tested. 21 +The virus was already here. 22 +I added some more yeast. 19 +Anne, there's been a case of polio. 27 +He was the god of fertility and crops. 30 +Brass is an alloy of copper and zinc. 29 +Copper pipe is sold in lengths. 25 +A bankrupt firm is not solvent. 25 +Soluble barium compounds are poisonous. 34 +The island we were on. 17 +That tsunami went as far as. 22 +Bev said they are dolphins. 22 +Camel dung, musk, and lumps of rock. 29 +The poachers have a quick. 21 +A poisonous dart had wounded him. 27 +A tasty aniseed-flavored herb for salads. 34 +I only use vegetable fats in cooking. 30 +Fish is rich in vitamins and minerals. 31 +Plants absorb nutrients from the soil. 32 +Eat more roughage to keep healthy. 28 +This diet is full of vitamins. 24 +The fowls are pecking at the corn. 27 +Obese patients are given dietary advice. 34 +Gently knock the object against an incisor. 36 +Every ingestion of food can affect our mood. 36 +Insulin is secreted by the pancreas. 30 +The first premolar is nearly as large as the second. 42 +Goats use rumen to digest silage. 27 +Humans have hundreds of minor salivary glands. 39 +Saliva is secreted by glands in the mouth. 34 +The smell of food causes the saliva to flow. 35 +Darkness will charge the carrier. 28 +It is made from the fermentation of corn sugar. 38 +It all dripped with moss and fungi. 28 +The amount of lactobacillus added to the milk. 38 +Salt was the cure to the common preservation dilemma. 44 +The operation of filtration is very important. 39 +The solubility is equal. 20 +What do you infer from her refusal? 28 +The trees formed a leafy canopy above heads. 36 +Centrifugation uses a centrifuge that can spin. 40 +The impurity is decreased as the chemical was clear. 43 +I could taste iron in the air and naphthalene. 37 +Metalloids are usually too brittle. 30 +Give the tube of toothpaste a squeeze. 31 +He had been hunted up. 17 +I wonder at her perennial youthfulness. 33 +Chop the carrots up into small pieces. 31 +The buddha encouraged animal sacrifices. 35 +Thrift is a good revenue. 20 +He is a valuable acquisition for our firm. 34 +A lot of my grant goes on the book. 26 +The first comer was the sultan himself. 32 +Some late microliths have also boon found. 35 +We can't overbuild a natural environment area. 38 +Pollution led to a shrinkage of grasslands. 36 +The summer sunshine ripened the melons. 33 +It's hard to tame a tiger. 19 +A demarcated area of the earth. 25 +They are waging warfare with drought. 31 +The tripartite definition has obvious attractions. 44 +The staff is doing a splendid job. 27 +The plastic arts include sculpture. 30 +The inscriptions are fresh and deep-grooved. 37 +The face was ancient. 17 +They were pretty loud and medieval. 29 +Abby was reluctant at first. 23 +I refuse your charter point-blank. 28 +This venture was to be based. 23 +Once was an old mercantile was there. 30 +Granting them whatever powers are. 29 +Could I have three cinnamon donuts? 29 +Stir in vanilla and cinnamon. 24 +David put it on with a flourish. 25 +Our aim is to reduce road casualties. 30 +Always emphasize the positive. 26 +The village was placed under curfew. 30 +The whole flat had been ransacked. 28 +He was once an officer in the cavalry. 30 +His men mutinied. 14 +I was satiated and happy. 20 +His aunt died of a seizure. 21 +We condemned him for his bad conduct. 30 +There is not a trace of banditry. 26 +They have a very large autonomy. 26 +The study of nomadism mainly involves humans. 38 +Miss Williams confiscated all our sweets. 35 +The authorities deported her for illegal entry. 40 +The orchestra has grown in stature. 29 +He soon rallied from his fever. 25 +The duma members had left their seats. 31 +Her mother looked stern. 20 +She was exiled from her country. 26 +He seemed a very jovial chap. 23 +Try icing your knee so the bulge will go down. 36 +The tropic sun glared down on us all day. 32 +The wheel is revolving around its axis. 32 +The family resides in southern India. 31 +Bake until the crust is golden. 25 +One's mantle falls on somebody. 25 +The ocean splashed against the pier. 30 +Diamonds are the hardest known mineral. 33 +The interior of the church was dark. 29 +Jobs are scarce. 13 +It is the diversity that is made. 26 +Organic logic does not lie. 22 +A bold row of the rugged cross. 24 +This leaves you highly susceptible to it. 34 +The rainbow formed a beautiful arc in the sky. 37 +Arid areas have minimal rain. 24 +The valley was carved out by glaciers. 31 +Streams can carry sediment or alluvium. 33 +You can't build buildings on swampy land. 33 +It is freezing outside. 19 +Only skeletons of buildings remained. 32 +Rhythm is the vitality of the music. 29 +The birds breed in northern latitudes. 32 +The exosphere is the layer of the atmosphere. 37 +Try icing your knee so that bulge will go down. 37 +Gps operates best near the equator. 29 +The park is in the northern part of the city. 35 +The ball ran to the boundary. 23 +Concentric spheres are parallel. 28 +Two thoughts were uppermost in my mind. 32 +It wasn't squared for hopscotch. 26 +The molten metal is poured into the mold. 33 +The blazing magma was surging by us. 29 +The discovery had begun to put humankind in. 36 +Depletion charges of mining companies. 33 +Net bags in which maize is stored. 27 +The topography of the tales is absolutely correct. 42 +There is not a habitable structure left on the planet. 44 +The place looked uninhabited and untouched. 37 +The pop group is now touring the provinces. 35 +Most people's faces are asymmetrical. 31 +It is excavated in soft calcareous stone. 34 +Her singing voice has a pure, crystalline quality. 42 +It is not its cure. 14 +Queue up for boiled beef. 20 +Money is the death of ethics. 23 +The budget will only cover generic. 29 +Cage space should be adequate. 25 +The context too was wrong. 21 +The exclusion is related to soft. 27 +Each of them will interpret it. 25 +He wore a powder blue turban. 23 +I do not prohibit it. 16 +She is exempt from sex discrimination laws. 36 +We oppose segregation on religious grounds. 37 +It would be futile to protest. 24 +Cease to struggle and you cease to live. 32 +They are fighting for the equality of women. 36 +He spoke without preamble. 22 +That is a fundamentally undemocratic argument. 40 +I admired him for his determination. 30 +He was overwhelmingly re-elected as party leader. 41 +The representatives ruled against the motion. 39 +Deasy had gone home with tuberculosis. 32 +God's prescribed time in history. 27 +He examined me using the ultrasound. 30 +May I and other practitioners. 25 +He wasted no time with amenities. 27 +Actions of violence and persecution took. 35 +She had resisted his domination. 27 +Fate had to intervene. 18 +The full inheritance of his love. 27 +The legislature ignored their pleas. 31 +The camera's shutter mechanism is broken. 34 +His new job seemed to rejuvenate him. 30 +The state legislature exists in many cases. 36 +The parliamentary session is due to end. 33 +He is a professor of moral philosophy at oxford. 39 +It's such a valuable magazine. 24 +We have to strive for what we want. 27 +He was in thralldom. 16 +We give our patronage to local shops. 30 +Untouchability is practiced for a very long time. 41 +The disloyal thought was instantly suppressed. 40 +Hard household chores roughed her hands. 34 +The little hooks for hanging utensils. 32 +The flat had been meticulously cleaned. 33 +Don't admit liability for the accident. 32 +The striking miners will soon return to work. 37 +Mosquitoes breed in stagnant pools of water. 37 +All seats have been inhabited by students. 35 +Wire stitching sees saddle or side stitching. 38 +Clever tailoring can flatter your figure. 35 +People in occupations have a lower expectancy. 39 +The children had a harsh upbringing. 30 +She was filled with the aspiration. 29 +I like her tenderness. 18 +Zinc can be used for the catalytic converter. 37 +The castle had been used as a jail. 27 +The huntsmen chased the deer silently. 32 +The ship was anchored offshore. 26 +Tom is getting bolder. 18 +A man cannot serve two masters. 25 +In war, they were savage and cruel. 28 +I chopped a branch off the tree. 25 +The pitcher tagged him out. 22 +Chew your food well before swallow. 29 +Jake stood shivering in the cold air. 30 +I shall be back ere nightfall. 24 +This river is smearing. 19 +Events took a comical turn. 22 +The airplane cracked up in landing. 29 +I was curious. 11 +Poverty is no shame, laziness is. 27 +Self-trust is the essence of heroism. 30 +We were massacred in the final. 25 +A smile suddenly animated her face. 29 +He denied the depravity of man. 25 +He is a bit of a trickster figure. 26 +John grew fainter with every step. 28 +Her spectacles glinted in the moonlight. 34 +The tree grew on the brink of the cliff. 31 +She yawned and rubbed her eyes. 25 +He could hear the old man snoring. 27 +The knight spurred on to the castle. 29 +The dog had chased a rabbit into its burrow. 35 +Those children can be real little savages. 35 +The gunboat opened fire on the mainland. 33 +The children wandered in the woods. 29 +The real dream is the other shore of reality. 36 +She prayed to god to keep her son from harm. 34 +Every citizen may claim the protection of the law. 41 +We are leaving a footmark on the beach. 31 +The vessel anchored alongside the quay. 33 +I know tom will be delighted to see you. 31 +The children eyed the cakes greedily. 31 +The bullet missed its intended target. 32 +A child can drown in only a few inches of water. 37 +The knitting should be 120 stitches wide. 34 +A guilty conscience is a self-accuser. 31 +This cheating is disgraceful. 25 +It is a mystical experience for him. 29 +I heard the floorboards creak. 25 +After a moment's hesitation, he nodded. 32 +The regulation allows for no variation. 33 +May many fortunes find their way to you! 32 +The army put down the rebellion. 26 +Discontent is the first step in progress. 34 +The two sisters correspond every week. 32 +Her hair was lifeless and uncombed. 29 +She is tracing laboriously now. 26 +Leaves still clung to the branches. 29 +His eyes rolled and he sobbed. 24 +The man began to scream horribly. 27 +She snuggled up to him on the sofa. 27 +Seagulls hover over the surging waves. 32 +A mood of melancholy descended on us. 30 +What are the symptoms of shingles? 28 +She started to chew her tail. 23 +Career judgment is good now. 23 +Glucose was dripping into the patient. 32 +A spray of misty saliva. 19 +My stomach churns. 15 +It made me half dizzy. 17 +Peaches are a good source of fiber. 28 +She stopped to have a yarn with me. 27 +It's a synthetic diamond. 20 +In the digestive tract, they are! 27 +You'll bake in that fleece jacket! 27 +She is weaving on her loom. 21 +The farmer is shearing his sheep. 27 +The silkworm spins a cocoon. 23 +The butterfly emerged from the pupa. 30 +We shall never yield to a conqueror. 29 +The champion won the silk glove. 26 +The rope is made of nylon. 20 +It was metal and plastic. 20 +The fibers are well preserved. 25 +He knows how to buy at the synthetic price. 34 +She reads Proust in translation. 27 +He termed the gas argon. 19 +The balloons had been inflated with helium. 36 +Carbon has a valency of 4. 20 +Calcium is good for the growth of your bones. 36 +Chew on it from another end. 22 +In the digestive tract they are. 26 +Glycogen is a long chain of glucose. 29 +This process of vomiting from. 25 +They tend to the patients. 21 +They drove old cars with bad mufflers. 31 +Her silk dress rustled as she moved. 29 +A candle had set the curtains on fire. 30 +Mother used to spin her yarn. 23 +Stretch fabric is quick-drying and wicks moisture. 42 +The straw mattresses are airing there. 32 +Quilts were neatly folded inside a closet. 35 +There are cotton presses and ginning factories. 40 +He had been scouring the papers. 26 +Donna was sorting out scraps of material. 34 +The computer is useful in processing data. 35 +A caterpillar transforms into a butterfly. 36 +Mum made mulberry pies the first year. 31 +Polluted water sources are a hazard to wildlife. 40 +He was dressed in his usual polyester shirt and pants. 44 +It's a very light durable polymer that i created. 39 +There was a polythene bag in the cabin. 31 +It was made of scrap materials. 25 +Take a look at an atom. 17 +Ammonia has a very powerful smell. 28 +Nitrogen is a gas without color or smell. 33 +Sulfur is also used to sterilize equipment. 36 +Magnesium is thought to affect the heart muscle. 40 +Molecular biology is pushing medicine into a new age. 44 +At the gate of the citadel, they found no guard. 38 +Draw a line with a ruler. 19 +The temple was a place of worship. 27 +Lead is a metal. 12 +Crimp the edges to seal them tightly. 30 +The thin glass is fragile. 21 +Troops are massing on the frontier. 29 +The lion reign as king of the jungle. 29 +A lawyer acts for his client. 23 +Every chance you get to humiliate me. 30 +Shit like that really reinforced. 28 +This is an assumption. 18 +He resorted to Allah truly. 22 +This is the paramount truth. 23 +Many allies are pushing to lift the embargo. 36 +The sentence has to be recast. 24 +Things are frantic in the office right now. 35 +Maybe what you saw was an imprint. 27 +You worked for the ghettos. 22 +My doctor referred me to a hospital specialist. 39 +Irrigation channels supply the crops with water. 41 +The archaeologists excavated an ancient fortress. 43 +My memories are within me, imperishable. 34 +You are making very fine distinctions. 32 +The garrison will stand out for some time. 34 +How lovely things were out in the hinterland. 37 +The polar region is the habitat of the polar bear. 40 +The right to elect chieftains and to depose them. 40 +The extended sovereignty expanded u. 31 +He maintains the annexation of himself. 33 +Something is interfering with us. 28 +I hate excessive subservience. 26 +The sandalwood aroma had faded. 26 +Park and the museum of the confederacy. 32 +Several bore repeating muskets present. 34 +I didn't like the way the film glorified war. 35 +He left in a rage of humiliation. 26 +She was crippled in a car accident. 28 +The rich peasants answered mockingly. 32 +He seems never deplete of them! 25 +He said that this is my reparation. 28 +There are cartloads of junk in the garage. 34 +This ritualize battle is to death. 28 +They are more tolerant of gypsies. 28 +Children joined the jungvolk movement. 33 +We all condemn cruelty to children. 29 +Her reputation is sullied by crimes. 30 +A crowd of onlookers formed around the fight. 37 +She felt too apathetic even to move. 29 +A selfless man has an indomitable spirit. 34 +What is the orbital speed of mercury? 30 +Crop rotation helps prevent soil erosion. 35 +More about the energies of the march equinox. 37 +An astronomer can determine the brightness of each star. 47 +Seat the telescope on the tripod. 27 +Glaciers are moving rivers of ice. 28 +The whole area was a maze of dunes and dells. 35 +Her expression was glacial. 23 +The stem of the mushroom is broken. 28 +These wolves were cannon fodder. 27 +The road was sparsely traveled. 26 +This attack can cause landslides. 28 +It sort of wreaks havoc on the balance. 31 +The drainage system needs careful construction. 41 +There was devastation on every side. 30 +The riverbed was strewn with big boulders. 35 +No gradual abatement, no tapering off. 32 +I tried to assimilate yet another miracle. 35 +There should be no disunity within our party. 37 +A beach is a landform along a body of water. 34 +The revolution divided many families. 32 +The rooms were flooded with soft illumination. 39 +An astronomer can determine brightness of star. 40 +My natural inclination was to say no. 30 +The diamonds she wears are false. 27 +Truncation is evidence of an erosion hiatus. 37 +Pride goes before destruction. 26 +The area suffers badly from coastal erosion. 37 +Simple organisms like bacteria mutate rapidly. 40 +A lecture on the environment. 24 +They are amenable to reclamation and reuse. 36 +Afforestation implies planting trees. 33 +It has empowered us as women. 23 +he decrease in its permeability. 27 +Time is not an accumulation. 23 +Good luck in weathering this storm. 29 +Marble is a metamorphic rock. 24 +The drainage system needs construction. 34 +It's the confluence of three rivers. 29 +We came to a picturesque cottage. 27 +Mars has almost no atmospheric pressure. 34 +Provide plenty of compost and mulching. 33 +When the oceans were streams. 24 +The united states legislative branch. 32 +Morning assembly is held in the school. 32 +Covid-19 is a dangerous epidemic. 27 +That was up for debate. 18 +The preceding trend is important. 28 +She was a natural artist. 20 +The young initiate was shaking. 26 +The coalition would never allow it. 29 +I speculated on religious factionalism. 34 +I think that's a very sensible idea. 28 +Many students are not on the electoral register. 40 +He will create incentives anyhow. 28 +The estate is holding an auction to raise money. 39 +The accident deprived her of her life. 31 +She was nominated to the legislative council. 38 +He told them of his decision in a memorandum. 36 +The national tests were educationally unsound. 40 +I am a fake communist. 17 +You are exaggerating as usual. 25 +She was his work colleague. 22 +A special room just for sanitation. 29 +Reflections on gender and science. 29 +The nationalists came to power. 26 +The pump would stop functioning. 27 +It had suffered immense damage. 26 +Dating factory nominated at the I date awards. 38 +The center of the opposition it is. 28 +Progressive house music once a week. 30 +I'm not trying to draft legislation. 29 +The wall has been defaced with slogans. 32 +He will not confirm or deny the allegations. 36 +It would be unfair not to let you have a choice. 37 +There was no need for election rigging. 32 +At the recent convention, a declaration was adopted. 44 +My enthusiasm for the project was waning. 34 +It was incumbent on them to attend. 28 +Two police officers were barring her exit. 35 +We got the drop on the criminal. 25 +This is in direct violation of our memorandum. 38 +She's decided to shack up with her boyfriend. 36 +It was sheer luxury to step into a hot bath. 34 +They were toiling at their experiment. 32 +He could feel his strength ebbing. 28 +She cannot afford a new dress. 24 +These disparities are matters of concern. 35 +All pollution is simply an unused resource. 36 +He hoped to profit from his investments. 33 +One of the missing paintings resurfaced. 34 +Her hobbies are music, reading, and handicraft. 40 +Surveys are offered at reasonable rates. 34 +He did research on group dynamics styles. 34 +He was a hand-loom weaver then, a real craftsman. 39 +His widowed mother brought him up. 28 +Feed by measure and defy physician. 29 +The hostages wept for joy on their release. 35 +The ball fell splash into the river. 29 +Our teacher told us a joke today. 26 +The cat crept silently towards the bird. 33 +She turns pale at the sight of blood. 29 +The crew is thirty in all. 20 +Jack has gone aboard the plane. 25 +The space shuttle is now in orbit. 27 +My son's dream is to be an astronaut. 28 +The plant naturalizes well in grass. 30 +Love thy neighbor as thyself. 24 +I'd assess your chances as low. 24 +The detective scanned every bit of evidence. 37 +Confidence is a plant of slow growth. 30 +The dogs next door are a real nuisance. 31 +His voice was heavy with sarcasm. 27 +A good appetite is a good sauce. 25 +Straight trees have crooked roots. 29 +The fiercest agonies have the shortest reign. 38 +The pupil was told off for being careless. 34 +I was nearly stifled by the smoke. 27 +The women wore black veils. 22 +The ground soaked up the rain. 24 +The shower tailed off into a drizzle. 30 +He stroked the baby's head. 21 +You're joking, aren't you? 20 +A dolphin leaped out of the water. 27 +A hint of sarcasm crept into his voice. 31 +He is affectionate to me. 20 +The rumor has no foundation. 23 +The loss was a tragedy for all concerned. 33 +The sky was streaked yellow and purple. 32 +The party was nothing short of a disaster. 34 +It left us reeling with disbelief. 28 +The best defense is a good offense. 28 +He was buried with his wife. 22 +She coaxed a smile from the baby. 26 +I feel like a maggot in a carcass. 26 +The air was sweet with incense. 25 +A home isn't just bricks and mortar. 28 +The entire nation mourned her death. 30 +Cloud to buy a cold chisel. 21 +The mills of God grind slowly. 24 +Leave a generous margin on the left. 29 +The flowers withered in the cold. 27 +The police warned the intruder off. 29 +Colour is inconceivable to people born blind. 38 +This kind of risk borders on insanity. 31 +We enjoyed a bracing walk on the beach. 31 +His suggestion borders on the ridiculous. 35 +Mike is waiting for the order confirmation. 36 +Lucy is snuggling up to me. 21 +He defeated the philistines. 24 +His courage never faltered. 23 +I never doubted my interpretation. 29 +The policeman's badge deflected the bullet. 36 +Fission power is a worse idea. 24 +The book caused an uproar in France. 29 +His family is agitating to get him home. 32 +I love the tranquillity of the countryside. 36 +Portugal is a traditional ally of England. 35 +She is also a spoilt brat. 20 +Got kind of a fungus on it. 20 +Fold in coriander, onion, and chilies. 32 +Half of the apples are unripe. 24 +Sorry, wild, I'm out of pickles. 25 +They were woven from vines. 22 +Separate the skins and the pulp. 26 +Sand is insoluble in water. 22 +The material has a red fleck in it. 27 +I find her poetry rather opaque. 26 +Uranium is soluble in seawater. 26 +The earthen pot is glazed inside. 27 +Clinical trials may take five years. 30 +Wood is an excellent insulator. 26 +Mercury is the smallest of all the planets. 35 +There is rust on metal. 18 +Check ph with litmus paper. 22 +It was a fatal reaction. 19 +The missile deflected from its trajectory. 36 +I did a bit of fencing while I was at college. 35 +One of the proponents is Ernest rutherford. 36 +The farmers are scattering seed. 27 +Yet another uses fluorine as the reactant. 35 +I have spoilt your life. 19 +Garnish with fresh coriander to serve. 32 +Her head was a bloody pulp. 21 +I'm afraid of earthquakes. 21 +One day a storm came up. 18 +His behavior was very odd. 21 +The shell had a beautiful pearly luster. 33 +Aluminum is a metal. 16 +The rough cloth pricked my skin. 26 +The way he works isn't very systematic. 31 +We possess ten acres of the plow. 26 +Are the temperatures given in celsius or Fahrenheit? 44 +Conduction transfers heat via molecular collision. 44 +Wood is a poor conductor of heat. 26 +Warm air rises by the process of convection. 36 +She was exposed to high levels of radiation. 36 +Clinical trials of the new drug may take five years. 42 +The overly familiar train conductor. 31 +It's a rabid displacement of all things. 32 +Some elements are too simple. 24 +This is the hardness of heart. 24 +A metal's malleability is a measure. 29 +The first section discusses precious metals. 38 +He gave the shovel a kick. 20 +Aluminum is a kind of metal. 22 +Phosphorus is a nutrient used in fertilizer. 37 +The compartments are fully pressurized. 34 +You can see it with a microscope. 26 +They had to use high forceps. 23 +The veda is true. 13 +Tears are the silent language of grief. 32 +The service opened with a hymn. 25 +A mother will sacrifice her life for her children. 41 +A megalith forms a giant sculpture. 29 +I like the contrast of the white trousers. 34 +I became a genealogy of my family. 27 +Each section is explained pictorially. 33 +He is next in line to the throne. 25 +The leader must be a person of authority. 33 +Ten men were our witnesses. 22 +The peasants lodged a complaint. 27 +Numerous examples can be had. 24 +The sudden silence is oppressive. 28 +It has no coercive power. 20 +He can scarcely survive. 20 +The rabi crops are harvested. 24 +Fields of yellow stubble. 21 +Peony is a kind of herbs. 19 +He purchased this stamp at an auction. 31 +The number of city dwellers is growing. 32 +I felt we were off to greener pastures. 31 +The riverine villages are beautiful to see. 36 +The Romans liked watching chariot racing. 35 +Passenger service can best be described as skeletal. 44 +Election campaigns run for three weeks. 33 +Australia is the province of the kangaroo. 35 +The army quickly crushed the revolt. 30 +Deccan includes the east and west coasts. 34 +The college is steeped in tradition. 30 +I had followed his pressurized lifestyle of course. 43 +All condiments were originally fermented. 36 +This is the shadow of tyranny. 24 +There were hidden horrors within. 28 +Outsiders are too weak to hurt him. 28 +The woman was tumbling towards the treetops. 37 +She pointed at the fallow strip. 26 +The crowd shrank back from it. 24 +Let the lady have her dignity. 24 +They fear for their own livelihoods if it is closed. 42 +Wrap in cellophane or plastic wrap. 29 +Are they always among the first colonizers? 36 +He demarcated a piece of property. 28 +Alaska is the last great wilderness. 30 +They are heavy sleepers. 20 +He had reckless. 13 +The cattle are grazing in the field. 29 +The hunting dog put up some partridges. 32 +They were caught poaching wild animals. 33 +I was summoned by my boss. 20 +He was threatened with flogging. 27 +The spartans were warlike people. 28 +He is the captain of the mercantile boat. 33 +The man could have his own little ecosystem. 36 +Passenger services can best be described as skeletal. 45 +The cookies will flatten slightly while cooking. 41 +Do you see this point on the map? 25 +The city stands on a rocky plateau. 28 +The shape of the ocean is almost triangular. 36 +Soon afterward he entered political life. 35 +Kindness radiated from her. 23 +Sleds run well over the frozen snow. 29 +Inhale the pollution. 18 +Every mechanism has its reverse. 27 +The cleanser is a remedy and cure. 27 +Runoff from the road. 17 +Black sunken eyes like dried figs. 28 +She is irrigating the garden. 24 +Seepage is the slow flow of a liquid. 29 +The high latent heat of evaporation gives. 35 +The cyclonic storm destroyed some villages. 37 +A peninsula is a landform surrounded by water. 38 +The road straightened and we were on a plateau. 38 +The streets were pulsating with life. 31 +The apples were ripening on the trees. 31 +I should have stayed in the biosphere. 31 +All the living organisms are linked to biosphere. 41 +Friends agree best at a distance. 27 +This is a matter of cardinal significance. 35 +Do these symbols have a particular significance? 41 +Protecting the environment is every man's duty. 39 +The surrounding land is marshy. 26 +The train is a safe means of transportation. 36 +The aquarium has many tanks of fish. 29 +The discovery of putting humankind in its place. 40 +Most paints reduce with turpentine. 30 +The innumerable souls of the land. 28 +Pollination is effected by the aid of insects. 38 +The fungus is a decomposer organism. 30 +The cleanser is almost a certain remedy and cure. 40 +The temperature suddenly dropped to zero. 35 +I don't like the humidity of this climate. 33 +There is heavy precipitation in some parts. 36 +The road straightened and on a plateau. 32 +She meditated on the uncertainties of the future. 41 +Her foreign accent was barely perceptible. 36 +The ships in the southern. 21 +Drums beat in the courtyard. 23 +This draws the purposeful distinction. 33 +Beyond the mind, all distinctions cease. 34 +They are arbitrary and often. 24 +Lord God who judges her. 19 +Animal welfare activists have tried. 31 +We could petition the bishop. 24 +Two perps are in custody. 20 +Three runs of trains were scheduled to last year. 40 +He gave air to his grievances. 24 +I picked up some literature about pensions. 36 +They were struggling with functionaries. 35 +He cared little for social advancement. 33 +The recommendations will soon be put into effect. 41 +hey sent us a lovely Christmas hamper. 31 +There is a problem with this implementation. 37 +The new emperor declared a total amnesty. 34 +He says his claim is not negotiable. 29 +The morning excursion was about to end. 32 +Force them to strike hard. 21 +Valuing life is not a weakness. 25 +It actually devalues the product. 28 +One is for the domestic. 19 +The wages of sin could. 18 +The girl who humiliated you. 23 +Jody ran to his chores. 18 +Life became a burden to me. 21 +A word as to my circumstances. 24 +We were penalized by the referee. 27 +Cosmic evolution is huge. 21 +These testimonies are meant to expand. 32 +Despite their lack of monetary. 26 +Congress is empowered to levy taxes. 30 +This bridge over the river has a steel framework. 40 +The two parties have united to form a coalition. 39 +He is arrayed in ceremonial robes. 28 +The message was well-received by commissioners. 40 +The best ambassadors for the sport are the players. 42 +The supreme court judged him guilty. 30 +It could fetter the independence of the judiciary. 42 +I defer to your judgment in these matters. 34 +I resent his interference in my work. 30 +This is the state subsidy theory of strikes. 36 +The curve illustrates costs per capita. 33 +A restricted import quota was set for meat products. 43 +There is a chronic shortage of teachers. 33 +Many people die of famine every year. 30 +I raged at my own inability. 22 +The government introduced meat rationing. 36 +The club is an exclusively male preserve. 34 +Note the stabilizing wheels at the rear. 33 +The vase made by the artisan is wonderful. 34 +Sometimes the current gets fluctuates. 33 +It is a classic case of malnutrition. 30 +It seemed like a good argument for eliminating me. 41 +We measured the dimensions of the kitchen. 35 +He decided to shirk his duty. 23 +The dog's tongue lolled out. 22 +Tom lives in a log cabin. 19 +I prefer coffee in the morning. 25 +Never poke a boat from the bow. 24 +He's an emotional cripple. 21 +He is so lame. 10 +The family lived in misery for several years. 37 +I feel awful about forgetting her birthday. 36 +People are gradually awakening to their rights. 40 +The ship sank in mysterious circumstances. 36 +I was awakened by their shouts. 25 +The murmur swelled into a roar. 25 +He gave her a penetrating stare. 26 +Sam was a genuinely friendly sort. 28 +Sam is full of ruggedness. 21 +The walls are unscalable. 21 +It is worthwhile to do this. 22 +He is anxious to finish the job. 25 +We plowed furrows in the field. 25 +He busked to supplement his meager wages. 34 +It has a dormer roof joining both gables ends. 37 +He slithered helplessly down the slope. 33 +Floral arrangements were at a reedy minimum. 37 +He preens under his right-wing, then on top. 35 +We mustn't shirk our cleaning job. 27 +He was lolling in an armchair. 24 +The captain always keeps a log. 25 +Time does not bow to you, you must bow to time. 36 +The sled coasted down the mountain slope. 34 +He shouted that he couldn't swim. 26 +The dog made a leap over the fence. 27 +He was an old man with grey, grizzled hair. 34 +The nurse was a cheerful plump woman. 30 +A policeman has the authority to arrest lawbreakers. 44 +He is feeling homesick. 19 +The accident made him lame in the left leg. 34 +A hero is known in a time of misfortune. 31 +The little boy was chambered in a narrow cave. 37 +Flowery carpets became the vogue. 28 +The company advertised goods for sale. 32 +Wealth is the test of a man's character. 31 +Parents were left anxious. 22 +A miasma rose from the marsh. 23 +Their provisions were practically gone. 34 +The humorous joke is common property. 31 +Rubber boots are impervious to water. 31 +Many managers are resistant to change. 32 +The conquest of Everest. 20 +She needed greater fulfillment in her job. 35 +Rome has been called the eternal city. 31 +There was something ennobling about it. 33 +I closed my eyes in reverence. 24 +Everyone ought to rarefy his spiritual life. 37 +She made a decision and resolutely stuck to it. 38 +The British were formerly dominant in India. 37 +The town wasn't electrified until 1990. 32 +Donna like a xylophone, they said. 28 +He is a young percussionist. 23 +Every seed is a potential plant. 26 +A barrel swells in the middle. 24 +Tom soaked in the bathtub. 21 +There was a hole in the stem. 22 +They were walking on clay. 21 +Sprouts are good for health. 23 +Serve with a mustard sauce. 22 +He came to a wide. 13 +Add the sesame seeds to the pan. 25 +The group scatters to harvest the guavas. 34 +She is sieving the rice in order to sieve out the stones. 45 +The solution to the problem lies with you. 34 +The filtration system is relatively simple. 37 +My stomach was churning. 20 +Roses will not root in such acid soil. 30 +Some fruit juices are very acidic. 28 +The match will be played at a neutral venue. 35 +Business is the salt of life. 23 +Rich food always gives me indigestion. 32 +The coal fell in the grate. 21 +Coke has a lot of carbon. 19 +It was fixed in a rock like a fossil. 28 +He had a natural flair. 18 +This fuel pipe is blocked. 21 +Isotonic is defined as having equal tension. 37 +The war is threatening to engulf the entire region. 42 +Plant cells contain the liquid in spaces called vacuoles. 48 +The control is effected through changes in turgidity. 45 +The function of bones is to give rigidity. 34 +It is soaked in you. 15 +Tears sprout from my eyes. 21 +With these lips of clay. 19 +On such a wide list. 15 +Toss in the mustard seeds. 21 +Two things stem from this. 21 +The holy seed will be. 17 +I appeared to be trapped. 20 +Australia, or as best he could. 25 +Evaporation is not usually directly observable. 41 +The filtration system is relatively simple, sam said. 45 +Handpicking is a separation technique. 33 +The river carries its sediment westward. 34 +The farmers are threshing their wheat. 32 +The winnowing was done by women. 26 +The girl is winnowing the chaff from the corn. 37 +No words can be the disguise of base intentions. 39 +Price alone is not a reliable indicator of quality. 42 +Neutralization is not necessary for all. 34 +It's monotonous work, like most factory jobs. 37 +The petroleum industry reached the island. 36 +Dad is working at the refinery. 25 +The fool machine hit a tar pit!. 24 +A man screamed on the other side of the reservoir. 40 +It is a natural acid trip. 20 +The crowd gave a spontaneous cheer. 29 +The skin of amphibians is permeable to water. 37 +This pair of scales is not in equilibrium. 34 +Eukaryotic cells contain a nucleus and organelles. 43 +Chromosomes also determine the sex of animals. 39 +The crowd chanted their hero's name. 29 +The victorious army returned in triumph. 34 +The price includes tax. 19 +The priests were robbed in black. 27 +She objects to the ritual of organized religion. 40 +The local limestone is very porous. 29 +He made a keystone of his story. 25 +It is not exactly an auspicious start! 31 +Our earth is a tomb. 15 +The next day he hired a laborer. 25 +Their acquaintance had not ripened into friendship. 44 +Winnowing of the stock guide. 24 +My livelihood will be shattered by this. 33 +It may be then broken down with a cultivator. 36 +The saplings are budding. 21 +The fortification was built in stone. 31 +You cannot transplant history. 26 +His courage and exploits were legendary. 34 +This sugar cane is quite sweet and juicy. 33 +You can stay at the monastery. 24 +He was not a bigot. 14 +The jumper has a geometrical pattern on it. 35 +It's just another of joe's grandiose schemes. 36 +Great limestone mansions were rising. 32 +The post of mayor is largely ceremonial. 33 +The anthropologist thinks about this. 32 +The light was later supplemented with a foghorn. 40 +Descendants of the tribe re-emerged. 30 +The consequences could be awful. 27 +The folks spoke of open rebellion. 28 +The land was too rocky to cultivate. 29 +The dog lay so still it scarcely seemed animate. 39 +These are wonderfully succulent peaches. 35 +The puppets are intricately crafted. 31 +She groans for success. 19 +The whole region is in turmoil. 25 +Our troops are now on the attack. 26 +The brigands of this area have been annihilated. 40 +In a frenzy of rage, she hit him. 25 +She threw pitchforks towards the barn. 32 +There were wonderful chateaux. 26 +He abolishing himself. 19 +Asia is the largest continent. 25 +We will transit the strait at night. 29 +The region has a very high population density. 38 +A cloud is a mass of vapor in the sky. 28 +The city is at an elevation of 2000 meters. 34 +We need food and water for survival. 29 +The firemen were unable to quench the fire. 35 +He is on a saline drip. 17 +Soup condenses when boiled. 23 +His father has bad circulation. 26 +Farmers poaching noble forests. 27 +The extinction of a sense is required. 31 +The hillside had been quarrying for many years. 39 +In mining areas, helpers are not 27 +Popping shots, drilling the table clean. 34 +They hacked away at the dense vegetation. 34 +Deciduous trees shed their leaves in autumn. 37 +There is no rose without a thorn. 26 +An abnormal climate stunted crops. 29 +Hundreds of the sedimentary rock formations are done. 45 +Metamorphic rocks have been modified by heat. 38 +The oceanic lithosphere is much less. 31 +I find the atmosphere there rather impersonal. 39 +The hydrosphere consists of water. 29 +It is the first whole of the biosphere laboratory. 41 +What of the role played by microbes? 29 +David looked across to the terrarium. 31 +Water evaporates into steam. 24 +You should test the salinity of the water. 34 +I found the whole film fascinating. 29 +The experience reinforced my sense of loss. 36 +Securing constructional joints to making candles. 43 +Indiscriminate love is a nonsense concept. 36 +The lithosphere is the coolest part of the earth. 40 +Tim concentrated for a moment. 25 +What used to be rigid. 17 +The widow gave all she had. 21 +I am both a patient. 15 +He is gentle with her. 17 +Nurture and grow what you have. 25 +She cut him a glance. 16 +We dispute its first axioms. 23 +We think it is partial. 18 +Life is the supreme guru. 20 +She poured out his tea. 18 +Is the claim capable of proof? 24 +The money was given to us by deed of covenant. 36 +Which spouse should enter into the covenant? 37 +They call it ethnic cleansing. 25 +She managed to summon up a smile. 26 +A writ was filed in the high court. 27 +Finally, he issued one last. 23 +Exercise your democratic right to vote. 33 +Few medical procedures carry no risk of any kind. 40 +He spent five years in prison for forgery. 34 +She is literate in both english and spanish. 36 +I leave philosophy to others. 24 +They gave dowry to him. 18 +The right to be greedy. 18 +Yet he had been murdered. 20 +She was up and protesting. 21 +Awareness of the need for. 21 +The suspect instead claimed solidarity with the oppressed. 50 +It doesn't need the apex. 19 +The city of the pyramid. 19 +The presidency of Ronald Reagan is here. 33 +The appellate judge brought a bible over. 34 +This was the general verdict. 24 +The high court acquitted him. 24 +The federation has offered you. 26 +He was obviously a subordinate. 26 +Gambling debt is not legally enforceable. 35 +Who sanctioned bombing the town? 27 +Minorities must still battle against discrimination. 46 +The minority is subordinate to the majority. 37 +He that marries for wealth, sells his liberty. 38 +You may infer from his remarks the implications. 40 +In those days apostasy was punishable by death. 39 +When you have finished an exercise, rule off. 37 +The first priority was to mobilize his force. 37 +Migrant workers are vulnerable to exploitation. 41 +The sheets were aired on the line. 27 +It's impolite to stare at a girl. 25 +I will have fun with little blind girls. 32 +The sculptor figured the girl in clay. 31 +Sam became the navigator. 21 +Nobody can equal him in intelligence. 31 +Children are naturally inquisitive. 31 +The leaves change color, then shrivel. 32 +The proceedings were interrupted. 29 +Appearance often deceives. 23 +Her face was gaunt and grey. 22 +The gun was stashed under the bed. 27 +She was really unfriendly to me. 26 +He is seeing helplessly. 20 +I started to scrub off the dirt. 25 +The keys clacked as she typed. 24 +She fondled his neck. 17 +A scrawny old woman. 16 +The church was austere and simple. 28 +She is very orthodox in her views. 27 +He walked out a prophet. 19 +He plans to appeal against his conviction. 35 +She is a little conservative. 24 +The incident caused discussion among the public. 41 +They had barely time to catch the plane. 32 +She was a studious child. 20 +Cheerful company shortens the miles. 31 +I admire her for her bravery. 23 +He made a remarkable recovery from a shin injury. 40 +Talking to a counselor helped her enormously. 38 +The composer expresses his sorrow in his music. 39 +The teacher made a systematic work of teaching. 39 +Doctors watched the heartbeat on a monitor. 36 +She was annoyed at his invasion. 26 +They were all perpetually starving. 30 +He accompanied his words with actions. 32 +A downpour of rain put out the bonfire. 31 +I wrote him an answer immediately. 28 +A galled horse will not endure the comb. 32 +The horse's hooves bit deep into the soft earth. 38 +I felt obliged to ask them to dinner. 29 +A buzzard soared high overhead. 26 +The child was quivering in her arms. 29 +She is delirious but has lucid intervals. 34 +The country was in ruin and convulsion. 32 +The boat bobbed gently up and down. 28 +Americans have an innate sense of fairness. 36 +Generosity is part of the American character. 38 +That man is of undistinguished appearance. 36 +Such a move is rare, but not unprecedented. 35 +Her job is to superintend the production process. 41 +The birds nest in huge colonies. 26 +How deep is the lake? 16 +The one decorated by ian smith. 25 +In the storm drains in the park. 25 +You are precious to me. 18 +Put the garbage outside. 20 +We have to change our plan. 21 +The applause burst from the crowd. 28 +Cut the cookie dough into diamonds. 29 +The company was now set for major expansion. 36 +The snow showed no sign of melting. 28 +Rusting trawlers are marooned in the sand. 35 +She was in constant physical pain. 28 +Officials claim the chemical poses no real threat. 42 +Dilute the paint with a little oil. 28 +The shock of the explosion was felt far away. 36 +The warmth of the flame. 19 +Warming up may sound strange. 24 +He fired up the ignition. 20 +Nuclear power is not green energy. 28 +It was an apical point in his life. 27 +The tunnels were lateral to each other. 32 +The oak was 2 meters in girth. 23 +The iris is the thin structure in the eye. 33 +The bucket was full of rainwater. 27 +Bronchi are plural for bronchus. 27 +This lake is deep. 14 +All of the programs are a result. 26 +You are too hard on her and her countrymen. 34 +The second had to do with the staircases again. 38 +In storm drains, or in the park. 25 +It is a precious stone. 18 +Cold causes contraction of the metal. 31 +Be careful not to lose too much liquid by evaporation. 44 +He flew the airplane over to France. 29 +The fabric is woven on these machines. 31 +Cry up wine and sell vinegar. 23 +This is an adaptation of a novel for the scenario. 40 +The various elements of the novel fail to cohere. 40 +We are hoping for good weather on Sunday. 33 +There's a fire extinguisher on the wall. 32 +This can build your skill and efficiency. 34 +The temperature was fairly low. 26 +Highly inflammable ideas on board. 29 +The toxic substances could be heard. 30 +That was before the spontaneous concert. 34 +This camphor represents your identified state. 40 +This was an intercalary year. 24 +In many annual plants, no cambium is found. 35 +How is cervical parenchyma strain treated? 36 +Sclerenchyma is the supporting tissue in plants. 41 +Stick the pieces on with tile cement. 30 +The area is surrounded by alveoli. 28 +Squamous is a cancer type. 21 +Everybody desires happiness. 25 +The team is thirsty for success. 26 +The universe is limitless. 22 +The bill was passed after long debates. 32 +Other cravings are born of habit. 27 +This is a medieval story. 20 +She has exquisite taste. 20 +Cook rice with the saffron. 22 +Sprinkle with onion salt and nutmeg. 30 +They were use chariot in war. 23 +The number of associates recruited. 30 +He raised his hands miserably. 25 +We rage and revolt against god. 25 +An adolescent stands next to the woman. 32 +Mohammed was the founder of the Muslim religion. 40 +Mike meditated on great marriages for his children. 43 +Her unhappiness was apparent to everyone. 35 +Preaching releases faith for what god. 32 +I enjoy intellectual conversations. 31 +Singapore, an emporium of the east. 29 +All donations will be gratefully received. 36 +Cinnamon is an excellent flavor enhancer. 35 +His father had hidden this before the uprisings. 40 +Only cruelty and oppression survive here. 35 +This loop can be constructed. 24 +There was a guard stationed there. 28 +They are almost disbanded. 22 +The superiority of the united states savings bonds. 43 +Its word was not to be violated. 25 +The accused has made a deposition. 28 +The city was entombed in volcanic lava. 32 +Small plants are called bushes. 26 +We marched across the foothills. 27 +The city has a warm climate. 22 +Fish are plentiful in the lake. 25 +The umbrella dripped moisture. 26 +I don't like the taste of olives. 25 +Mary is weaving a carpet. 20 +The Colour is fixed in dyeing. 24 +The order was given to evacuate. 26 +They planned to emigrate. 21 +America is a country of immigrants. 29 +There are cotton ginning factories. 30 +The house was unfit for human habitation. 34 +Mike is a man of charm and cultivation. 31 +The territory was never densely settled. 34 +This area is subject to earthquakes. 30 +He was asleep in a twinkling. 23 +The vegetation consisted of low scrub. 32 +August was almost tropical this year. 31 +The ban only covers tropical hardwood. 32 +Incentives always help. 20 +She is skilled at spinning and weaving. 32 +The pyramids were built in ancient times. 34 +Let them publish it abroad. 22 +His message was throttled by censorship. 34 +Mike cut off the broadcast. 22 +Not so with paid media. 18 +Most owners do not watch soap operas. 30 +It is the trial of my faith. 21 +No one has arrested me. 18 +Why do I feel guilty? 16 +They frantically waved at me. 24 +Grace is an innocent child. 22 +Energy moves by the channels. 24 +You can become a newsreader. 23 +Go and brief the minister. 21 +They all have their own agendas. 26 +The causeway was then demolished. 28 +You can get their statements. 24 +You will be the evidence. 20 +I would hire a brass. 16 +We went to a lawyer. 15 +England, forcibly pushing the Britons back. 37 +The captain bawled out the orders. 28 +He lives in a grand house. 20 +He went to the island looking for treasure. 35 +Measure thrice before you cut once. 29 +Pleasure has a sting in its tail. 26 +I pretended to be indifferent to it. 29 +Political dissent is not tolerated. 30 +He replied shamelessly. 20 +A guilty conscience needs no accuser. 31 +Revenge is a dish best served cold. 28 +The car is in reasonably good condition. 33 +The new drug is derived from fish oil. 30 +The chair looked a bit wobbly. 24 +Mike scoffed at her fears. 21 +Disappear a memory. 16 +Genet teaches you to think creatively. 32 +We have just hit the inflection point. 31 +Most trees lose their foliage in winter. 33 +Jack was grinning all over his chops. 30 +The shop assistant is very zealous. 29 +Don't make a nuisance of yourself. 27 +Conceit is the quicksand of success. 30 +He enjoys rough and tumbles play. 27 +She was a very gracious lady. 23 +It was just a bit of rough and tumble. 29 +Novelty is the great parent of pleasure. 33 +The practice is the key to the treasure. 32 +My son jumbled up all my papers. 25 +They managed to blank the giants for five innings. 41 +An ill marriage is a spring of ill-fortune. 34 +One of the crew fell overboard and drowned. 35 +Aquatic sports include swimming and rowing. 37 +He pleaded innocent to the charges. 29 +I nominate john as the club president. 31 +I would like to propose a vote of thanks to our host. 41 +The men claim they did not receive a fair trial. 38 +The examination results will be announced. 36 +An enemy's mouth seldom speaks well. 29 +The house was in a wretched state. 27 +You must abide by what you have said. 29 +The ship sank with great loss of life. 30 +The plane had to deviate from its normal flight path. 43 +The whole story is a pure invention. 29 +He was squeezed in the important post. 31 +I keep the photographs in an album. 28 +Your opinion is of little consequence to me. 36 +My fear has turned into exhilaration. 31 +Johnson gleefully took up the challenge. 34 +The palace is closed for restoration. 31 +The radiance of power hangs around him. 32 +I'm afraid it's a fathomless mystery. 29 +The ship ran aground on a submerged reef. 33 +Perspiration dampened her face and neck. 34 +I trod on his foot by accident. 24 +What an extraordinary thing to say! 29 +A mysterious illness is affecting all animals. 39 +The boy tried to squirm free. 23 +I knew that in Europe. 17 +A muffled pop and puff of smoke. 25 +I have plenty of dough. 18 +He was floating in time. 19 +The two matchstick lights in the boy's affrighted eyes blew out. 52 +She sank upon the snow. 18 +Sunday was the day for collecting aluminum cans. 40 +Hasty climbers have sudden falls. 28 +The police will conduct a random breath test 37 +The house is covered in creepers and ivy. 33 +The sepal is usually green. 22 +The peacocks roost in nearby shrubs. 30 +Love and hatred are polar feelings. 29 +The petrol gauge is still on full. 27 +It was recorded on a wax cylinder. 27 +Some animals have no natural predators. 33 +Nobody clued us to this mystery. 26 +Polio was then endemic among children my age. 37 +It creates a new species. 20 +The ancient races are extinct. 25 +It was a strange reserve! 20 +He stumbled into the sanctuary. 26 +Aves would turn the ship over. 24 +Ulva is sea lettuce. 16 +The embryo consists of two large fleshy cotyledons. 43 +The coelomic fluid is a milky white liquid. 35 +A jaw-like appendage of an arthropod. 30 +Bent to puff at his cigarette. 24 +There was no dough day. 18 +Her hat sank at once. 16 +Let the matchstick drop into the wet grass. 35 +Aluminum will not break but stretch. 30 +To graze his white cabbage. 22 +Would you pass the peas? 19 +Jack went for a coffee. 18 +A broken petal falls in the wind, has no laws in. 38 +The petiole is much shorter than the blade. 35 +The stigma is the sticky knob at the top of the pistil. 43 +The function of the stamen is development. 35 +Censorship strikes at the taproot of our free society. 45 +The cost of inland transpiration will be borne. 39 +We sat on a tree stump. 17 +Royal blood ran in his veins. 23 +The heat and humidity were insufferable. 34 +We are measuring the radius of the circle. 34 +The penguins porpoise away on all sides. 33 +A sensitive child should not be mishandled. 36 +I saw the whole of our polluted, endangered earth. 41 +Christianity is a migratory religion. 32 +Fraudulent investment schemes in reforestation projects. 50 +Extinction of species with loss of habitat. 36 +I'll try to be as inconspicuous as possible. 35 +They are bilaterally symmetrical with a triploblastic body plan. 55 +A worm is not considered vertebrates 31 +They're kind of like hagfish but different. 35 +Blood pressure and respiration are also recorded. 42 +The roman empire existed for several centuries. 40 +The capital of India is the new Delhi. 30 +Modern abstract art is outside my province. 36 +The messenger brought your note today. 32 +The news was announced as official. 29 +Plants grow well in fertile soil. 27 +The whole clan will be here over Christmas. 35 +May you be happy and prosperous. 26 +The regiments debauched from the valley. 34 +A national census is taken every ten years. 35 +He is engaged at a bank. 18 +The colonel shook his head. 22 +Colonialism was the order of the day. 30 +He seized it now. 13 +Mike persisted with the questions. 29 +Joe read excerpts of it. 19 +The statue was carved out of marble. 29 +The medal had an inscription. 24 +Money is wise, it knows its way. 25 +The mind is the kingdom of thought. 28 +I would take it from any nomads. 25 +The doctor prescribed radiotherapy for him. 37 +There are numerous people in the square. 33 +He felt a real sense of kinship with his uncle. 37 +She carefully preserved all his letters. 34 +Rowdy has taken all this upheaval very well. 36 +I could barely suppress a laugh. 26 +He went back to his regiment. 23 +The mag hisses and the cartridge ejects. 33 +He has proclaimed himself asking!. 28 +Chains of polyps dangle from a float filled with gas. 43 +Young actresses dwell in a quandary. 30 +Forestry is a state protected industry. 33 +The walls of the dwellings are entirely cut. 36 +The mountains are five miles inland. 30 +The invention is a collective effort. 31 +The mountaintops were bare of any vegetation. 38 +Japan is not rich in corals and sponges. 32 +Chains of polyps dangle from afloat. 30 +The rising sun casts a golden glow. 28 +There was a flicker of hope in his eyes. 31 +I'm going on holiday for a fortnight. 29 +Deciduous forests are not so dense. 29 +Few plants grow in tundra regions. 28 +A peaceable settlement has been reached. 34 +The guard flourished his pistol at the crowd. 37 +Water frequently accumulates in old factory. 38 +The new model for markets. 21 +Traders find the tips and. 21 +I have made a bargain. 17 +Fertilizers can supply these nutrients. 34 +Apartment complexes are available in many cities. 42 +No one threatened his mate. 22 +I eventually figured it out. 23 +The inhabitants might be hostile. 28 +The temporal battle was tribal. 26 +Mining is a hazardous job. 21 +Yet the expenditure couldn't be directed. 34 +The more expensive ones are. 23 +Smith did not recognize him. 23 +He was scheduled for an. 19 +You have crossed some boundary. 26 +The ancestral dust reveres. 23 +The root has substantial. 21 +When it hits the mainstream, it's over. 31 +He invariably found them there. 26 +She is so exotic. 13 +The tragedy of the child migrants. 28 +John felt replaced and displaced. 28 +It was the survival of the sanctuaries. 32 +I don't have a pen. can you lend me one? 28 +She used to tease me about my hair. 27 +Pinch me and I will react. 20 +The fish had a queer taste. 21 +She tried to claw at his face. 23 +An occasion lost cannot be redeemed. 30 +I was obliged to abandon that idea. 28 +Don't trifle away your time. 22 +I have no sympathy for beggars. 25 +Someone patted me on the back. 24 +He is a habitual criminal. 21 +Smoking is a serious health hazard. 29 +The rain prevented us from coming in time. 34 +The story had been wildly exaggerated. 32 +The report is a masterpiece of brevity. 32 +Good books give edification. 24 +He has a melancholy look. 20 +Heave the rocks into the ravine. 26 +Ashley offered up a fervent thanks. 29 +She stood poised for a moment. 24 +Formula one is the pinnacle of motor racing. 36 +The last part of the ascent is very steep. 33 +The aggressors were fiercely fought back. 35 +Can you lend me your car this evening? 30 +The moving van is a monster of a truck. 30 +Newcastle managed to claw a goal back. 31 +Turn the jar upside down and shake it. 30 +Suddenly he grabs her pincers with his. 32 +A crab nipped my toe while I was paddling. 33 +She yelled at her mischievous child. 30 +The local tradesmen have objected to the plans. 39 +The six-month delay will be costly for the company. 41 +Critics scored him for his foolishness. 33 +The state of Nevada is largely desert. 31 +This summer is scorching. 21 +Each student had to recite a poem. 27 +The book adopts a historical perspective. 35 +The emergency room was in disorder. 29 +He started to fizz with enthusiasm. 29 +The log has slivered into kindling. 29 +The temperature has risen five degrees. 33 +Firemen were called to extinguish the blaze. 37 +The shelter is a brick construction. 30 +The question will be settled tonight. 31 +Stop drumming on the desk. 21 +The kids were screaming with delight. 31 +Hair sprouted in damp, unexplored crevices. 37 +Success covers a multitude of blunders. 33 +A hailstorm hurt the apple crop. 26 +Heavy rain drenched the travelers. 29 +It rarely suffers power cuts. 24 +A note of impatience had entered his voice. 35 +The rain poured down without ceasing. 31 +He flashed her a disarming smile. 27 +The bolt came away with a tacky wrenching sensation. 43 +She steadfastly refused to speak. 28 +The scandal ended his meteoric political career. 41 +Hemoglobin is the red pigment found in the blood. 40 +I don't believe in medicine. 22 +It's not a disease. 14 +Malaria was a normal disease to me. 28 +What are the symptoms of anemia? 26 +Beware! lest I should fall. 21 +He's torn cartilage. 16 +He pulled a muscle in his groin. 25 +She watched the snake slither away. 29 +Learn to creep before you leap. 25 +After a hurricane comes a rainbow. 28 +The tree was struck by lightning. 27 +The town was hit by a tornado last night. 32 +A typhoon is on its way. 18 +It was a cell phone. 15 +The skin is the largest organ of the body. 33 +He is very interested in plasma physics. 33 +As the red blood cell has little cytoplasm. 35 +She handed me a tissue just as I sneezed. 32 +This displacement is in no way finished. 33 +Sales of automobiles are up this year. 31 +An older car will have poor acceleration. 34 +Light travels at a constant velocity. 31 +The auditorium is a building of great magnitude. 40 +He even left some medicine. 22 +They called it a disease. 20 +Beware what you wish for. 20 +Feeding the larvae is one of them. 27 +This can bring on algae. 19 +History is a slippery thing. 23 +Her bike was hard to control in the swampy grass. 39 +The bouillon should have a nutty brownish color. 40 +She stood with her backbone rigid. 28 +My toothbrush is losing its bristles. 31 +The gold was hidden in a secret cavity. 31 +The cold-pressed into his rib cage. 28 +The police unearthed a skeleton in his garden. 38 +The production process is to be streamlined. 37 +Middle-latitude cyclones originate at the polar front. 46 +Vandals had smashed all the windows. 30 +I advised him on technical matters. 29 +The thumb is opposable to the forefinger. 34 +Let me check your blood pressure. 27 +The south-west monsoon sets in during April. 36 +The anus is a mucous membrane. 24 +Transport to the chloroplast involves a similar process. 48 +Prokaryotes lack mitochondria. 27 +Pseudopodia are characteristic of many dipterous larvae. 49 +The thallus may be unicellular or multicellular. 41 +Prokaryotic cells lack membrane-bound organelles. 43 +The voice of ultrasonic waves is high. 31 +Earthquakes are extremely difficult to predict. 41 +There is a stagnant pool at the bottom. 31 +The remedy is worse than the disease. 30 +They can also relieve diarrhea. 26 +I iron my clothes almost every day. 28 +The river flows cranking into the village. 35 +Corps under sickles. 17 +Don't take his help for granted. 25 +Wealth makes worship. 18 +She advocated higher salaries for teachers. 37 +This is not to say that athletes are mystics. 36 +His head was bowed in submission. 27 +Hostility gleamed in those eyes. 27 +The bungalow is auction at a high price. 32 +I am polished, first and foremost. 28 +A new conquest, she guessed. 23 +Those plants you gave me are flourishing. 34 +Every potter praises his own pot. 27 +The carpenter planed a table smooth. 30 +Tom teaches sculpture at the local art school. 38 +My philosophy life is work. 22 +The ultimate decision lies with the parents. 37 +The clergyman preached to people. 28 +She is the idol of countless teenagers. 32 +The money will go towards a new hospice. 32 +That is the understatement of the year. 32 +They bombarded them with questions. 30 +It is the end of season fare for the weavers. 35 +And then the exquisite twist happened. 32 +Egypt has a long history of amazing craftsmanship. 42 +Racism was acutely flourishing. 27 +The good seaman is known in bad weather. 32 +Tomorrow's weather will be cloudy. 28 +I wear blue-tinted glasses on sunny days. 33 +It is interesting to contrast the two writers. 38 +The monsoon rains were beating down. 30 +The area has an abundance of wildlife. 31 +I had hoped to brush up on my Spanish. 29 +A paradise that you cannot leave is hell. 33 +The knife cut the flesh of his arm. 27 +Summer in south china is hot and humid. 31 +The timber has started to decay. 26 +It was survivals of the medieval sanctuaries. 38 +Many animals and birds are now extinct. 32 +The book contains numerous passages. 31 +Piranha fish live in the lakes and electric eels. 40 +The farmer is cultivating his land. 29 +It looked gaunt and inhospitable, he realized. 39 +A jeep is ideal for driving over rough terrain. 38 +I have borrowed his time. 20 +All they want is profit. 19 +Everybody was a gainer by its consolidation. 37 +Weaver held out the file. 20 +I think he probably was. 19 +I always sold the rights. 20 +This article is not wild. 20 +I admit to my crime. 15 +He was in my soul. 13 +New policies come into effect. 25 +The time decay will erode the premium. 31 +Buddhist communities around the world. 33 +So he is untainted by action. 23 +The symbol of the guardians. 23 +The fruit of thy womb. 17 +The deity is very happy. 19 +They continue carrying out atrocities. 33 +The lawn is full of journalists. 26 +The boy was cunning and assertive. 28 +The subway is a public conveyance. 28 +The old man is a grumpy elder. 23 +The explorers discovered an inward passage. 37 +The troop trotted the hills and valleys. 33 +He shaved his beard with a new trend. 29 +The beach is pebbly. 16 +We saw a real live rattlesnake! 25 +Illiteracy was widespread at that time. 33 +The lion is known by his claws. 24 +The boy was twiddling his pen. 24 +The thermometer is inaccurate. 26 +My life is meaningless. 19 +The choir walked solemnly past. 26 +The papers are all in a muddle. 24 +All these events had been revealed by prophecy. 39 +The expenses came to an enormous sum. 30 +Such a small mistake is pardonable. 29 +The Japanese are an industrious people. 33 +My sympathies go out to the boy's mother. 32 +Sloth is the key to poverty. 22 +Wild notions inhabit his mind. 25 +You should muzzle your dog. 22 +The refugees were a pitiful sight. 28 +She scooted down the road after them. 30 +I don't ride the subway late at night. 29 +The device exploded underneath a van. 31 +She jabbed at the elevator buttons. 29 +She's very grumpy when her toothaches. 31 +I got lost in the London underground. 30 +A word to the wise is enough. 22 +The dogs tracked the wolf to its lair. 30 +The vibrations of the vehicles rattled the windows. 43 +The lion stalks its prey through the long grass. 39 +The snake's venom induces instant paralysis. 37 +Young birds are very vulnerable to predators. 38 +The food conversion rate on roughage is good. 37 +I think they're starting to get suspicious. 35 +All over the tropics stand termite hills. 34 +The bill of rights nourishes our freedom. 34 +She was a remnant from my predecessor. 31 +Was she being sarcastic? 20 +I tried to dissuade her from leaving. 30 +The man's a raving lunatic. 21 +The rope tightened around his body. 29 +The rope holding the boat loosened. 29 +The gates were made of wrought iron. 29 +The inhabitants of a village held land commonly. 40 +The staircase was almost perpendicular. 34 +Everyone complimented him on his shrewdness. 38 +The day was proclaimed a public holiday. 33 +The elevation and vertical section are treated similarly. 49 +The animals were killed wantonly for sport. 36 +Keep your breath to cool your porridge. 32 +Pepper and salt are condiments. 26 +Blood is aerated with oxygen in the lungs. 34 +Susan went to drop off her rucksack. 29 +I was frozen in terror. 18 +Then he realized what it. 20 +I can feel the blisters. 19 +The instructor paused a moment. 26 +This is an activated form of the vitamin. 33 +Icy of soul and heart. 17 +His left arm was in a sling. 21 +The kidneys are organs of excretion. 30 +This creature's habitat is the jungle. 31 +Dying is as natural as living. 24 +Her respiration was slow and difficult. 33 +Strawberries grow well in a loamy soil. 32 +Enclose the pot in a clear polythene bag. 33 +The organic gardener avoids the use of pesticides. 42 +Dump the topsoil here. 18 +Travel broadens one's horizons. 26 +Embryo research is an emotive issue. 30 +Happiness doesn't depend on any external conditions. 44 +Embryos are developed by in vitro fertilization methods. 48 +The fertilized egg implants and becomes a fetus. 40 +We were rowing against the current. 29 +She felt him recoil from her, frightened. 34 +He became entangled in legal disputes. 32 +His car was in collision with a motorbike. 34 +He was carrying a rucksack. 22 +And then I realized that. 20 +A good source of vitamin. 20 +He had been an instructor. 21 +He was frozen in place. 18 +He was shivering, as he. 19 +To keep climbing the mount. 22 +Bacterial reproduction is accelerated in space. 41 +The new tax laws should act as a stimulus to exports. 42 +He recollects all things. 21 +The clayey soils of the region are difficult to work. 43 +Cotton is a humus wasting crop. 25 +The retention of data in a storage device. 34 +Sandy is a very busy teenager. 24 +The two brothers are almost inseparable. 34 +A butterfly is produced by metamorphosis from a caterpillar. 51 +It is the one-celled embryo known as the zygote. 38 +He grew from adolescence to young manhood. 35 +The calorific values of these have been given in the text. 47 +An explosion shook the boat. 23 +I saw her pedaling along the towpath. 30 +There is a need for the conservation of trees. 37 +It was just as I had conjectured. 26 +The centripetal force is provided by gravity. 38 +It is gravitation that causes the apple to fall. 39 +Credit is everything to a trader. 27 +Which is the best route to take? 25 +She piped the skirt with blue silk. 28 +Billy pilgrim again led the parade. 29 +He studies greek and roman mythology. 31 +She comes from a very artistic family. 31 +A day is a miniature of eternity. 26 +I shall take literature this spring. 30 +I can't understand classical literature. 34 +English is a west germanic dialect. 29 +All this was almost coarse. 22 +The tall imposing man added. 23 +Coal is the key to metallurgy. 24 +His armor had not vanished. 22 +It meant the smell of old furnaces, heavy. 34 +The children polished off the cake. 29 +He put some pepper on his steak. 25 +The British men arrived on the American coasts. 39 +I'm sorry you had a wasted journey. 27 +The coastline can now be monitored by radar. 36 +Beer has a very distinctive smell. 28 +He extended the pattern to apply to the deity. 37 +I've never had any political aspirations. 34 +One of the minstrels strummed his banjo. 33 +The local war escalated into a major conflict. 38 +Devour all on your deadly pyre! 25 +Rescuers made heroic efforts to save the crew. 38 +We heard laughter in the adjoining room. 33 +The room was filled with an assortment of clothes. 41 +They made a thousand advances to him. 30 +One word, nephews, is rendered with. 30 +It was a fairly intricate scene. 26 +The legendary hoards of gold brought in by. 35 +Flora shuffled through a pile of magazines. 36 +There are plains of hard sands and plateaus. 36 +The soil fauna may also be developing. 31 +The aridity of soil prevent a settlement. 34 +She bears a faint resemblance to my sister. 35 +Igneous rocks. 12 +It would be a struggle. 18 +Only an end of the thread. 20 +Heather and johnny were on the ballot. 31 +Well, I will not endure. 19 +My poverty worked for me. 20 +I accept your generous offer. 24 +Suburban and the Bugatti was tremendous. 34 +This is an essential condition. 26 +You have borne arms against us. 25 +It is equitable and certain. 23 +It was a terribly unequal world. 26 +This is significant for you. 23 +The association of sanctuaries. 27 +That is the last document. 21 +It is an inadequate warning. 23 +Purification of the heart is very necessary. 37 +He looked at me in astonishment. 26 +The city has textile mills. 22 +She shook her mane of auburn hair. 27 +The regiment began to prepare its lair. 32 +If wishes were horses, beggars might ride. 35 +Trees encircle the house. 21 +The laborer is worthy of his hire. 27 +I wonder if you are a spy. 19 +He is one of the great combatants. 27 +The bird took its perch. 19 +His voice was grimly determined. 27 +There can be a deception by omission. 30 +Parents encourage every activity imaginable. 39 +King George was the sovereign of England. 34 +He behaved like a true gentleman. 27 +The popularity of the internet has soared. 35 +His manners proclaim him a scholar. 29 +No one can be persuaded by sophistry. 30 +Ethics is a branch of philosophy. 27 +The skin of a snake would slough. 26 +I will pouch up no such affront. 25 +The dancer was adorned with flowers. 30 +The watching deities gave a collective sigh. 37 +The compass was first used in sailing. 31 +I fell into a gentle slumber. 23 +The scepter is an attribute of kingly power. 36 +A solitary viola plucks a lonely, soft f sharp. 38 +Children have the qualities of their parents. 38 +The expert in anything was once a beginner. 35 +The spear pierced the lion's heart. 28 +Breathe in through your nose as you stretch up. 38 +He looks like a restless man. 23 +Edward renounced his claim to the French throne. 40 +In the time of peace prepare for war. 29 +The contest was too one-sided to be exciting. 36 +I failed in my attempt to persuade her. 31 +The grass glistened in the early morning dew. 37 +We heard him thudding up the stairs. 29 +The hound whipped out at the whistle. 30 +A full-frontal assault right in the snout. 34 +The birds fluttered excitedly in the trees. 36 +The slaves writhed under the master's whip. 35 +The company is appealing against the ruling. 37 +She was regarded as an oddity. 24 +The first edition was published in 1998. 33 +It is manufactured by hand. 22 +He fermented prejudiced crowds to riot. 33 +The laws on intellectual property are murky. 37 +The smile broadened to a grin. 24 +Love sought is good, but given unsought is better. 41 +It's customary for the women to sit apart. 33 +The preacher was circuiting about the state. 37 +The light diffused into the room. 27 +I can see the family resemblance. 27 +Opera devotees were disappointed with the performance. 47 +The child protruded his tongue. 26 +His actions are entirely mercenary. 30 +It was the shrines that differed. 27 +Mike rubbed his chin meditatively. 29 +The air tasted of tin. 17 +Time to grab our gear. 17 +The end of the tunnel. 17 +A great deal of their tribal. 23 +Most of the metal is copper. 22 +Curves his white bastions with the projected roof. 42 +This room was in ruins. 18 +Some of their carvings arevery fine. 30 +The fountain is over there. 22 +Nuclear power is safe. 18 +Heat is a mode of motion. 19 +Bats are flitting about in the dusk. 29 +The windows were nearly opaque with grime. 35 +Glory is the shadow of virtue. 24 +The restaurant was packed to the gills. 32 +Coughing clears the lungs of mucus. 29 +Aerobic exercise helps to build up stamina. 36 +For most of us, breathing is automatic. 32 +A cellular telephone beeped. 24 +Adrenalin was injected into the muscle. 33 +It is important to have a balanced, healthy diet. 40 +The glands in the neck may enlarge. 28 +Estrogen is a primarily female hormone. 33 +She set up her telescope on the balcony. 32 +I'm specializing in differential and integral calculus. 47 +Copernicus was an astronomer. 25 +She lapsed into inertia and lay there as if asleep. 41 +He was a man of remarkable buoyancy. 29 +In the thick of it. 14 +Curves his white bastions with the roof. 33 +Carving is one of them. 18 +But it was the fountain. 19 +Bil cannon was the one. 18 +America was attacked by a nuclear bomb. 32 +Bronze is a stout metal. 19 +The pendulum has swung back. 23 +Glass is a transparent material. 27 +The colors were bright, almost luminous. 34 +One cloud is enough to eclipse all the sun. 34 +This matter is a reflection of me. 27 +The sky was a pale translucent blue. 29 +Respiration becomes difficult at great heights. 41 +The diaphragm draws air into the lungs. 32 +Milton let out his breath in a long exhalation. 38 +One man was treated for smoke inhalation. 34 +Many biological processes are controlled by hormones. 46 +I have to inject myself with insulin. 30 +Chromosomes are made up of DNA. 25 +Thyroxine is produced by the thyroid gland. 36 +Cooking vegetables reduces their nutritional value. 45 +The biosphere keeps a low profile. 28 +For them, the imperial sun shines on undiminished! 42 +A upthrusted rock is carved as an altar. 32 +Cork is a very buoyant material. 26 +He immersed himself totally in his work. 33 +This is bulging, tuber formation, elongation. 39 +Archimedes stroked his beard and retired to cogitate. 45 +Eureka a job at last! 16 +She is wearing a green robe. 22 +She is praised by martial. 21 +The court found him guilty. 22 +He mimed brushing away tears. 24 +It is time for the harvests. 22 +The nation's coffers are empty. 25 +He found life in the provinces. 25 +He is seizing her by the arm. 22 +Enslaved by it to do its bidding. 26 +He has an inferiority complex. 25 +It is almost like something crippled it. 33 +The curriculum isn't easy. 21 +I had many strange notions at the time. 31 +Let's visit some temples tomorrow. 28 +Painting helps fill a spiritual need for beauty. 40 +This is an epic novel. 17 +That's a whale of a story. 19 +It was just a small ramp. 19 +He taught courses in engineering and metallurgy. 41 +The excavations are open to the public. 32 +The monumental inscription is scarcely readable. 42 +A word in season is most precious. 27 +Turn the dial in a clockwise direction. 32 +Tom was seriously maimed in the war. 29 +The servant will be exposed. 23 +The nighthawk was a disaster. 24 +The inspector arrived at last. 25 +They took reprisals against the leaders. 34 +The tragedy of the tests improves. 28 +I thought that was peculiar. 23 +The killers were neither found nor prosecuted. 39 +This is the science of the total environment. 37 +No mercury emissions in the atmosphere. 33 +Young children learn how to speak by imitation. 39 +I love victorian melodramas. 24 +I hope it was amusing. 17 +Sovereignty resides with the people. 31 +This was an issue transcending party politics. 39 +I can only pick up the linguistic crumbs. 33 +The play is a composite of fiction. 28 +The curator conducted us round the museum. 35 +My life is in America. 17 +We came out of Africa. 17 +The book of the earth. 17 +The globe was in total power. 23 +Seven is a magical number. 21 +Roads and railways artery every province. 35 +One cannot get blood from a stone. 27 +They are the smallest capillary vessels. 34 +The phloem is generally typed. 25 +They give you new blood plasma. 25 +It can be caused by excessive friction. 32 +All objects are subject to gravity. 29 +He is tall, broad, and muscular. 26 +It brings a different level of interaction. 36 +I can drag you out. 14 +Farmers plow in autumn or spring. 27 +She bent down to shake a pebble out of her shoe. 37 +He was sweating like a bullock. 25 +They formed a bomb with nuclei. 25 +Press on the space bar. 18 +A zigzagging of the globe. 21 +America at the same time. 20 +Africa and all of Russia. 20 +The family hosts the show in brazil. 29 +After they met, Onassis abandoned Argentina. 38 +It is a floating forest. 19 +These are consistent with the bright blobs of. 38 +Her body has already rejected two kidneys. 35 +The platelets are decreases in her body. 33 +The doctor felt her pulse on her wrist. 31 +The stethoscope is a medical instrument. 34 +Don't sweat the small stuff. 22 +A blue vein throbbed in his forehead. 30 +Xylem carries water from the root of the plant. 38 +This software is used for modeling atmospheric dynamics. 48 +Rigidity is not an issue with the electrostatic diaphragm. 49 +All matter exerts a gravitational attraction. 39 +The magnetic pull of the city was hard to resist. 39 +This is a bad practice. 18 +She was humming softly to herself. 28 +The epidermis is composed of four layers. 34 +All bacteria are larger than viruses. 31 +The shrine was an object of pilgrimage. 32 +Listen to them honk. 16 +What a treasure she is! 18 +He told us to lift kerosene. 22 +Well, Mr smelly start boasting. 26 +Grease a large roasting pan. 23 +He is panting and coughing. 22 +Its life-cycle starts with a spore. 28 +Parsley seed goes nine times to the devil. 34 +A period of vegetative propagation follows. 37 +Nuclear fusion is the holy grail of energy production. 45 +Fluid includes both gasses and liquids. 33 +The path is paved with interlocking stones. 36 +Normal services will be resumed in the spring. 38 +The population remained more or less static. 37 +The ceremony opened with a fanfare of trumpets. 39 +Running on a full bladder is not a good idea. 35 +I find him very congenial. 21 +He braked just in time. 18 +Listen to them honk and. 19 +Coughing, off to the left. 21 +Dad's working at the refinery. 24 +The room was stuffy and smelly. 25 +Grease ran down his chin. 20 +It was the magical line. 19 +The silvery aura moved away. 23 +Diploid is restored when two haploid gametes fuse. 42 +Hypha cell is a long type like bamboo segment. 37 +A stalk connecting an ovule with the placenta. 38 +Nectar and pollen are very nutritious. 32 +It is the peaceful dispersal of the demonstrators. 42 +The globe is rolling around all the time. 33 +Many practitioners have a sliding scale of fees. 40 +The walls of the palace are marble with silver inlay. 43 +The seeds of this food are true husbandry. 34 +It is a pure death crop. 18 +Her oscillations of mood frustrated him. 34 +The drug has no undesirable side-effects. 34 +Sally was a noisy car. 17 +A nylon bag flew towards. 20 +He paid me with trunks full of. 24 +I was happy and excited. 19 +That is how we breathe. 18 +A shot hit her shoulder, grazing her. 30 +My clarinet sounded like an apoplectic yak. 36 +Some hospitals utilize temporary ward closures. 41 +We changed seats in the interval. 27 +It was the hundredth birthday of my grandmother. 40 +His eardrum was broken in the accident. 32 +He shouted with extreme loudness. 28 +She was awoken by the noise. 22 +He who touches pitch will be defiled. 30 +The frequency is high. 18 +He has had an acute analysis of the situation. 37 +They still get cases of typhoid there. 31 +It is not a good idea to culture anthrax in your home. 42 +She was full of vim and vigor. 23 +The pilot did manage to get airborne. 30 +I got excited about this. 20 +On top of some of those trunks. 24 +Paddy came down between them. 24 +Pumpkins are household reach to grown. 32 +He was in a narrow. 14 +The animals are always grazing. 26 +Economists predict the oscillation of the yen. 39 +The ball hung on the roof is a compound pendulum. 39 +The uniform was trimmed with gold braid. 33 +The odometer shows now 140 miles per hour. 34 +My waist measurement is 32 inches. 28 +Sound waves are measured by their amplitude. 37 +The frequency of lucy's phone calls increased rapidly. 45 +When the string is short, the oscillation is always fast. 47 +Vibration displaced part of the mechanism. 36 +I found his manner extremely unpleasant. 34 +Ultrasound showed she was expecting twins. 36 +Antibiotics are effective to cure throat infection. 44 +She injected the patient with penicillin. 35 +A flurry of handshakes and he is back in the car. 38 +Inflammation is a phenomenon of disease. 34 +Telling your troubles is swelling your troubles. 41 +He had to spend two years bedridden with it. 35 +The baby died of diphtheria last night. 32 +The doctor tested him for hepatitis. 30 +I must be buried here. 17 +When dawn came, I wept. 18 +One day there was a parade in. 23 +I was in a panic situation. 21 +This earthquake was the greatest. 28 +I was possibly damaged goods. 24 +We can begin to rebuild. 19 +The battery charger plugs into any mains socket. 40 +The circuit of the city walls is three miles. 36 +The news had an electric effect. 26 +The fear of ill exceeds the ills we fear. 32 +Check whether a fuse has blown. 25 +The electrode was found to be usable for at least months. 46 +Someone was seen depositing a packet. 31 +An uncontrollable tremor shook his mouth. 35 +Animals had been rubbing against the trees. 36 +The body was hidden beneath a thin layer of soil. 39 +Many forms of aquatic life inhabit ponds. 34 +The farmer bemoaned his loss. 24 +Marine sponges have a long fossil record. 34 +Shrank still leads the parade. 25 +I was in a panic. 12 +That one was too damaged. 20 +And the sky is fractured. 20 +But the boy only wept. 17 +The architects and masons gasped. 28 +Our water engineers have been. 25 +A drought is a mind truly barren. 26 +Lifting electromagnet is a kind of lifting gear. 40 +The data is stored on magnetic tape. 29 +This shop sells fluorescent paint. 29 +The sun beat down with fierce intensity. 33 +It's full of nutrients and makes a great fertilizer. 42 +They've finished harvesting. 24 +Let's go to the irrigation channel. 28 +Manure was well dug into the soil. 27 +He breezes through life, never worrying about anything. 47 +I demonstrate throughout this book. 30 +There was a lot of condensation on the windows. 38 +Inhalation should be as long. 24 +Terrestrial amphibians respire through their skin. 44 +She likes the subject of biodiversity. 32 +I will blow it cool. 15 +The woodcutter replied, no. 23 +He was hazy after Paris. 19 +I just felt so numb. 15 +I was amazed at this. 16 +It amused him to the see lion. 23 +Concave on both sides or surfaces. 28 +Wine is a mirror of the mind. 22 +Hold your head erect. 17 +A rainbow is a natural phenomenon. 28 +The earth is not perfectly spherical. 31 +The crust of the bread is burnt. 25 +The bridge broke down in the last earthquake 37 +The big tree was struck by lightning. 30 +A swift clap of thunder woke me. 25 +Tallness seems to run in the family. 29 +It was a mistake. my profuse apologies. 31 +He fed mostly on rodents and animals. 30 +On such a hot day, even water was nectar. 32 +Blow me to the skies. 16 +I feel cold and numb. 16 +Amused at him, sam said. 19 +I nodded at his legs. 16 +His lip began to tremble. 20 +You did not wear spectacles then. 27 +All this in a heartbeat. 19 +The flexibility of the lens decreases with age. 39 +The convex side is pointed toward the enemy. 36 +His glasses magnified his irritable glare. 36 +A prism decomposes sunlight into various colors. 41 +The country was sliding into a state of virtual civil war. 47 +He was found guilty and given a conditional discharge. 45 +The leaves of the electroscope slowly diverge. 39 +The thunderstorm may settle the weather. 34 +Fumigation will also poison water, food, and soil. 42 +Lactation is a lengthy process. 26 +Vaccinations ensure one against diseases. 36 +A supplementary reading list is attached. 35 +Many mollusks have tentacles. 25 +There is a large take of mackerel. 27 +The tidal estuaries are called rivers. 32 +Get her into intensive care. 23 +The pasturage has been destroyed by the floods. 39 +I had a good childhood. 18 +He acts but with justice. 20 +Use a lot of compost. 16 +The freedom of the car. 18 +It was a big responsibility. 23 +All the articles are untouchable in the museum. 39 +The bar emptied in seconds. 22 +The drill takes about three hours to recharge. 38 +The elephant population is dwindling. 32 +The scarcity of food forced prices up. 31 +The perch is a freshwater fish. 25 +It bears cones as large as a man's head. 30 +The heartbeat was feeble and irregular. 33 +The wall is weak and requires lateral support. 38 +His age impaired his chances of finding a new job. 40 +The rocket launched two communications satellites. 44 +This is a big responsibility. 24 +The room had been emptied. 21 +Use a lot of compost and. 19 +No, I do him justice now. 19 +I lost my freedom and. 17 +Constitution of the team of. 23 +I had to sweep it up. 15 +Ozone depletion was based on theory. 30 +The faucet has developed a drip. 26 +The rivers merge just north of a vital irrigation system. 47 +Groundwater is recharged from the surface. 36 +The police tried to prevent infiltration. 35 +There's still a high incidence of malaria in the area. 43 +She was looking at her reflection in the mirror. 39 +Printing presses have diffused out information. 41 +Utensils are at the end of the line. 28 +He refused to let go. 16 +He insisted she was not. 19 +He had a separate coach. 19 +I am curious to know. 16 +The wife scolds her son. 19 +The soil here is very poor. 21 +A fresh layer of snow covered the street. 33 +A crown is no cure for the headache. 28 +His basketball lay in the ruins. 26 +Water was dripping. 16 +I wish i could see Cassiopeia. 24 +Did you ever see a comet? 19 +The moon has celestial bodies. 25 +A meteorite streaked across the sky. 30 +He looks about him, sensing danger. 29 +We met in a basketball game. 22 +I insisted he take it. 17 +He was a curious mute. 17 +My boss is very lenient. 19 +I don't want to quarrel. 18 +It can block real cooperation. 25 +The trees formed a leafy canopy above their heads. 41 +Deforestation is destroying large areas of rainforest. 47 +Biogas is a renewable energy source. 30 +All nations are interdependent in the modern world. 43 +Bacteria is something invisible to the eye. 36 +Waste treatment aeration pond at a paper mill. 38 +These appear to be pieces of carbonaceous asteroids. 44 +The sun, the stars, and the moon are celestial bodies. 44 +One constellation is called libra. 29 +They put a weather satellite into orbit around the earth. 47 +The bomb was detonated by remote control. 34 +I was dying of fever. 16 +I was dying of a fever. 17 +Now she is the bride. 16 +The water is so soothing. 20 +The crickets have stopped chirping. 30 +Moses, the god of their forefathers. 30 +He likes red rubber balls. 21 +Then there was some quarrel. 23 +Becky tried to imitate me. 21 +This is a waste treatment aeration pond at a paper mill. 45 +The pond stank like a sewer. 22 +Some diseases spread due to a lack of sanitation. 40 +The new metro is designed to run on unleaded fuel. 40 +The threat of attack has been greatly exaggerated. 42 +We need their industrial strength. 29 +Crops flourish in rich soil. 23 +It was soothing to watch. 20 +The insects had stopped chirping. 28 +Then let man imitate god. 20 +Then there were some quarrels. 25 +Now she is your bride. 17 +My legs feel like rubber. 20 +They used to collect firewood. 25 +Some were scattered in the. 22 +Roadside food is get affected by contaminants. 39 +Sewage is a type of wastewater. 25 +Our town has a modern sewerage system. 31 +All dumping of sludge will be banned by 1998. 36 +The huge outlet debauched the wastewater. 35 +The water must be heavily chlorinated. 32 +We can't have any contamination. 26 +It was scorching hot inside the greenhouse. 36 +New regulations will reduce hazardous air pollutants. 46 +They recycle empty tins so as to use the metal. 37 +They graze on the algae that grow on the coral. 37 +Three compartments divided the coffer. 33 +She eyed the compartments of clutter. 31 +She's on the moving clay. 19 +She spun round to me. 16 +You find cereals, hot, and cold. 26 +With pulses that beat double. 24 +My head spun a few. 14 +I liken it to a canal boat. 20 +The meat and vegetables were. 24 +Pulses jumped in my ears. 20 +Underwater, in the canal. 21 +The elders dismissed it as. 22 +But they use it wisely. 18 +It will be crumbly. 15 +The earthworm wriggled when I touched it. 34 +A leftover from the old days. 23 +She bundles it up and hides it away. 28 +Herbs that may be helpful. 21 +I told him I was a contractor. 23 +He is journalist. 14 +I won the lottery. 14 +To weave a beautiful memory. 23 +Unwrap one of the bundles. 21 +These herbs tend to be. 18 +He is a journalist. 15 +I used to play the lottery too. 24 +Chop green chillies, onion and potatoes. 34 +Lima beans in tomato sauce. 22 +The potatoes were ruined. 21 +Cindy sneezed again. 17 +It was polio again. 15 +He was a strange guy. 16 +That was my twin brother. 20 +The monk smiled. 13 +My oldest son is adopted. 20 +One of the monks sneezed. 20 +I think I was adopted. 17 +To the monk of the '90s. 17 +How far to the monastery. 20 +As we saw in our observations. 24 +The scientists have come to. 23 +The result of sin lends itself to. 27 +Paying the bills and expenses. 25 +Most sugarcane is cut by hand in eight hours. 36 +The red cross lost a caravan. 23 +The receipt is in the bag. 20 +Sweet pea seed can be sown in May. 26 +She put down her coffee. 19 +Europe was on the mend. 18 +Sticking to the speed limit. 23 +I was a bit amazed. 14 +What a treasure she is. 18 +I live in Australia. 16 +Why does Nietzsche call this work a genealogy? 38 +The national assembly has discussed the crisis. 40 +The whole city solemnly assembled on the square. 40 +Men with mustaches all look the same to me. 34 +At one time we met frequently. 24 +The plaster was falling away in big chunks. 35 +War and revolution have torn families apart. 37 +She writes the stories in her vernacular. 34 +That would only provoke the animal. 29 +This seemed to enrage her too. 24 +I'll run the interference on that. 27 +Rachel says it is time to modernize the house. 37 +I had smiled. 10 +It's a little pricey. 16 +It's too expensive. 15 +Got anything cheaper? 18 +You'll never guess what I heard. 25 +You'll never guess what I read online. 30 +Guess what I just found out. 22 +Guess what? 9 +She abjured all worldly pleasures. 29 +The rioters set the bus ablaze in the village. 37 +We do ablutions before entering a temple. 34 +Gautam buddha's ablutions took everyone aback. 39 +It is said that he was abetted to commit suicide. 39 +An eyewash. 9 +Play you ace. 10 +An acquired test. 14 +Settle account. 13 +On account of. 11 +Cut your coat according to your cloth. 31 +There is no accounting for the test. 29 +All is well that end is well. 22 +It was much ado about nothing. 24 +Go there. 7 +I will stay there. 14 +It's over there. 12 +I am going to Mumbai and I will stay there. 33 +Please stand there. 16 +There is a teacher in the classroom. 29 +There is a teacher in classroom. 26 +There were many peoples at the party. 30 +There was a problem with the system. 29 +There is a restaurant around the corner. 33 +Hello, there! 11 +You there! come here! 16 +There you are! I have been looking for you everywhere! 43 +There goes the last bus. 19 +There he goes. 11 +Are you familiar with this? 22 +Can you tell from looking at this? 27 +Do you recall this question? 23 +Do you recognize that exhibit? 25 +Solemnly swear. 13 +Do you swear that this is a true and accurate statement? 45 +Do you swear to tell the truth? 24 +Do you swear to well and truly interpret these proceedings? 49 +How do you plead? 13 +What happened next? 16 +What are your current duties? 24 +How do you recognize that exhibit? 28 +May the record reflect? 19 +May I have it? 10 +Members of the jury. 16 +Bail should be continued. 21 +Call your next witness. 19 +Please raise your right hand. 24 +Please remain standing. 20 +Please resume your seat. 20 +Poll the jury. 11 +Remember, you are under oath. 24 +Rephrase the question. 19 +See if you recognize it. 19 +Speak into the microphone. 22 +State your full name for the record. 29 +The following prospective jurors are excused. 39 +The witness will resume the stand. 28 +Use your common sense. 18 +Directing your attention to people's exhibit. 38 +Do you recall making this statement? 30 +Please proceed. 13 +Will the defendant please rise. 26 +Will the prospective jurors please stand? 35 +Will the people in the well of the courtroom please stand? 47 +Will the record reflect that the witness has identified the defendant? 59 +Will you call the first case? 23 +Would you raise your right hand? 26 +Would you indicate? 16 +Would you describe it? 18 +Would you point out? 16 +Would you look at it? 16 +As jurors, you are not to be swayed by sympathy. 38 +Counsel lay a foundation. 21 +The defendant will be remanded. 26 +Don't belabor the point counselor. 28 +Don't discuss the case. 18 +Don't volunteer explanations of your answers. 38 +I direct the jury to disregard the statement. 37 +Jurors may be excused. 18 +Keep your voice up. 15 +Keep your own counsel, don't talk about the case. 39 +Let's have a charge conference. 25 +I call your attention to the incident. 31 +Each count carries a 25 dollars fine. 30 +Exhibit one is received in evidence. 30 +Exhibit one is marked as evidence. 28 +Have you had any involvement with? 28 +Have you had occasion to be involved with? 34 +Have you ever been involved in? 25 +Have you formed an opinion as to? 26 +Have you reached a verdict? 22 +Have you read the pre-sentence report? 31 +I would like to advise the court that the defendant is not present. 54 +I would ask that the court instruct the witness to answer yes' or no'. 54 +Did you notice anything about it? 27 +Did you post bail for release? 24 +Did you advise of his rights? 23 +Did there come a time when you? 24 +Have you filed a notice? 19 +Could I have a brief voir dire? 24 +I move to strike the answer. 22 +If it pleases the court. 19 +Let me call your attention to that evening. 35 +Do you want the jury polled? 22 +Do you wish to say anything before sentence is imposed? 45 +Does reasonably and accurately depict? 33 +Does that refresh your recollection? 31 +Did you discuss it? 15 +Did you go to trial or did you plead guilty? 34 +Can you tell the jury? 17 +Could you briefly describe it? 25 +Could you describe the appearance of? 31 +I'll enter a not guilty plea on your behalf. 34 +I don't have any objections. 22 +I am showing you a cassette tape. 26 +I deny your motion. 15 +I find that the government has sustained its burden aided by the presumption. 64 +I have a procedural matter. 22 +Can the witness testify? 20 +It shall be proved in the court of law. 30 +I believe the trial will last long. 28 +My lordship may i proceed? 21 +The court proceedings will start at noon. 34 +May i call your attention to the incident. 34 +Let me direct your attention to the picture in front of you. 48 +I would ask most respectfully, your honor, for a ruling. 46 +At this time the defense rests. 25 +At this time the government rests. 28 +Criminal cause for pleading, u.s. 27 +I'll show you what has already been received in evidence. 46 +I am showing you a tape. 18 +Received in evidence. 18 +Received subject to connection. 27 +Objection sustained. 18 +Sustained rephrase the question. 28 +Tell us to the best of your recollection. 33 +That was your sworn testimony. 25 +The court finds that there is a factual basis for the plea. 47 +The court is prepared to proceed to sentence. 37 +The defendant admits to frequent travel. 34 +The defendant has admitted his involvement in the instant charge. 55 +The defendant has no history of drug or alcohol abuse. 44 +The defendant has no prior convictions. 33 +The defendant is guilty as charged in the incident. 42 +The defendant represents me. 24 +The defendant says that he is sorry and remorseful. 42 +The defendant waives a public reading of the indictment. 47 +The defendant has not made his bail yet. 32 +The defendant is being brought over by way of writ. 41 +The defense rests. 15 +The evidence is overwhelming. 25 +The evidence will show. 19 +The exhibit is accepted into evidence. 32 +The government objects as to the relevance of this document. 50 +The objection is overruled. 23 +The objection is sustained. 23 +The only thing I have redacted. 25 +The outburst was non-responsive. 27 +The witness's answer was not responsive to the question. 46 +We'll take a break for lunch. 22 +We're awaiting the execution of the documents. 38 +You are entitled to have a lawyer. 27 +You have been placed on probation. 28 +You testified earlier. 19 +You testified on direct. 20 +You are under oath. 15 +Isn't that correct? 15 +Isn't that right? 13 +The juror is that your verdict? 25 +Have you been threatened or coerced into pleading guilty? 48 +How are you employed? 17 +How much schooling have you had? 26 +How do you plead to the charge contained? 33 +How do you recognize that? 21 +How can you tell? 13 +What, if anything, did you do? 24 +What, if anything, did you say? 25 +What is people's exhibit number or identification? 42 +What is the government's recommendation? 34 +What is your current assignment? 27 +What is your immigration status? 27 +What were the lighting conditions? 29 +What were the weather conditions? 28 +Where was in relation to the driveway? 31 +The defendant is innocent until proven guilty. 39 +The defense has no objection as to foundation. 38 +At this time I would like to read. 26 +Could we have a sidebar? 19 +I move to strike. 13 +I would like to advise the court. 26 +I would ask that the court instruct the witness. 39 +You have the right to consult your lawyer and ensure his 46 +If you want a lawyer and can't afford one, one will be appointed to you. 56 +Anything you say may be held against you in a court of law. 46 +I don't have any objection. 21 +I have no further questions. 23 +I have to reserve an application. 27 +I move for a directed verdict. 24 +I now show you a device. 18 +The defendant acted knowingly and intentionally. 42 +I beg your pardon. 14 +Let me call your attention. 22 +Let me direct your attention. 24 +May I approach the bench? 20 +May I beg the court's indulgence for a moment? 36 +May I call my first witness? 22 +May I have the witness approach the blackboard? 39 +May I inquire? 11 +May I publish these to the jury? 25 +May it please the court? 19 +May we approach? 13 +May we get a ruling? 15 +May we have a short recess? 21 +May we see you at the sidebar, your honor? 33 +Move to strike, there's no question before the witness. 45 +Your honor, may the jury be instructed to disregard? 43 +I object on the grounds that the answer was not responsive. 48 +I object to that no predicate has been laid. 35 +I object to these self-serving statements. I offer the government exhibit number 1 into evidence. 80 +I remind you that you are still under oath. 34 +I'll rephrase the question. 22 +I'll show you what has been marked for identification as exhibit 1. 54 +Do you recognize that? 18 +I'm going to move to strike that answer as non-responsive. 46 +I said, freeze! 12 +I take it that you were together. 26 +I'll address any application to the district court. 42 +I use the struck jury method of picking a jury. 37 +I would submit that they're conditions to ensure mr. sam's return to court. 59 +It is received. 12 +Lawyers may exercise challenges. 28 +Marked as evidence. 16 +Motion denied. 12 +No objection. 11 +Not that i recall. 14 +Objection to the form, your honor. 28 +Objection, your honor, leading. 27 +What was your state of mind regarding the reliability of the informant? 59 +Would that refresh your recollection? 32 +Would it be fair to say prior to that time? 33 +Would you like the jury polled? 25 +Would you like to be heard? 21 +Would you like to say anything on your own behalf? 40 +You and each of you, do solemnly swear. 31 +Do you have the right to remain silent? 31 +I play football. 13 +He plays football. 15 +She plays football. 16 +You play football. 15 +They play football. 16 +We play football. 14 +Shara plays football. 18 +I love to travel. 13 +He loves to travel. 15 +She loves to travel. 16 +You love to travel. 15 +They love to travel. 16 +We love to travel. 14 +Sarah loves to travel. 18 +I don't like to quarrel. 18 +He doesn't like to quarrel. 21 +She doesn't like to quarrel. 22 +They don't like to quarrel. 21 +You don't like to quarrel. 20 +We don't like to quarrel. 19 +Sarah doesn't like to quarrel. 24 +I prefer coffee to tea. 18 +He prefers coffee to tea. 20 +She prefers coffee to tea. 21 +You prefer coffee to tea. 20 +They prefer coffee to tea. 21 +We prefer coffee to tea 19 +Shraa prefers coffee to tea. 23 +I wrote articles. 14 +He wrote articles. 15 +She wrote articles. 16 +You wrote articles. 16 +They wrote articles. 17 +We wrote articles. 15 +Shara wrote articles. 18 +I watched a movie. 14 +You watched a movie. 16 +He watched a movie. 15 +She watched a movie. 16 +They watched a movie. 17 +We watched a movie. 15 +Sarah watched a movie. 18 +I came. 5 +You came. 7 +He came. 6 +She came. 7 +They came. 8 +We came. 6 +Sarah came. 9 +I went to the library. 17 +You went to the library. 19 +He went to the library. 18 +She went to the library. 19 +They went to the library. 20 +We went to the library. 18 +Sarah went to the library. 21 +You shall come. 12 +He shall come. 11 +She shall come. 12 +They shall come. 13 +We shall come. 11 +Shraa shall come. 14 +I will understand. 15 +You will understand. 17 +He will understand. 16 +She will understand. 17 +They will understand. 18 +We will understand. 16 +Shraa will understand. 19 +I will enjoy it. 12 +You will enjoy it. 14 +He will enjoy it. 13 +She will enjoy it. 14 +They will enjoy it. 15 +We will enjoy it. 13 +Shraa will enjoy it. 16 +I will think. 10 +You will think. 12 +He will think. 11 +She will think. 12 +They will think. 13 +We will think. 11 +Shraa will think. 14 +She is playing. 12 +We are playing. 12 +Sharia is playing. 15 +Kids are playing. 14 +I am washing my shirt. 17 +He is washing his shirt. 19 +She is washing her shirt. 20 +You are washing your shirt. 22 +They are washing their shirts. 25 +We are washing our shirts. 21 +I like swimming. 13 +You like swimming. 15 +He likes swimming. 15 +She likes swimming. 16 +They like swimming. 16 +We like swimming. 14 +Shara likes swimming. 18 +I am sleeping. 11 +You are sleeping. 14 +He is sleeping. 12 +She is sleeping. 13 +They are sleeping. 15 +We are sleeping. 13 +Sarah is sleeping. 15 +Sarah was eating. 14 +I was visiting. 12 +He was visiting. 13 +She was visiting. 14 +You were visiting. 15 +They were visiting. 16 +We were visiting. 14 +Shraa was visiting. 16 +I was shouting. 12 +He was shouting. 13 +She was shouting. 14 +You were shouting. 15 +They were shouting. 16 +We were shouting. 14 +Shraa was shouting. 16 +I was dreaming. 12 +He was dreaming. 13 +She was dreaming. 14 +You were dreaming. 15 +They were dreaming. 16 +We were dreaming. 14 +Sarah was dreaming. 16 +I will be baking. 13 +You will be baking. 15 +He will be baking. 14 +She will be baking. 15 +They will be baking. 16 +We will be baking. 14 +Shraa will be baking. 17 +I will be arriving. 15 +You will be arriving. 17 +He will be arriving. 16 +She will be arriving. 17 +They will be arriving. 18 +We will be arriving. 16 +Shraa will be arriving. 19 +I will be throwing. 15 +You will be throwing. 17 +He will be throwing. 16 +She will be throwing. 17 +They will be throwing. 18 +We will be throwing. 16 +Shraa will be throwing. 19 +I will be yelling. 14 +You will be yelling. 16 +He will be yelling. 15 +She will be yelling. 16 +They will be yelling. 17 +We will be yelling. 15 +Shraa will be yelling. 18 +I have left. 9 +You have left. 11 +He has left. 9 +She has left. 10 +They have left. 12 +We have left. 10 +Shraa has left. 12 +I have hit him. 11 +You have hit him. 13 +He has hit him. 11 +She has hit him. 12 +They have hit him. 14 +We have hit him. 12 +Shraa has hit him. 14 +I have bought a new car. 18 +You have bought a new car. 20 +He has bought a new car. 18 +She has bought a new car. 19 +They have bought a new car. 21 +We have bought a new car. 19 +Shraa has bought a new car. 21 +I have accepted it. 15 +You have accepted it 17 +He has accepted. 13 +She has accepted. 14 +They have accepted. 16 +We have accepted. 14 +Shraa has accepted. 16 +I had swum. 8 +You had swum. 10 +He had swum. 9 +She had swum. 10 +They had swum. 11 +We had swum. 9 +Shraa had swum. 12 +I had helped him. 13 +You had helped him. 15 +He had helped him. 14 +She had helped him. 15 +They had helped him. 16 +We had helped him. 14 +Sarah had helped him. 17 +I had run. 7 +You had run. 9 +He had run. 8 +She had run. 9 +They had run. 10 +We had run. 8 +Sarah had run. 11 +I had slept. 9 +You had slept. 11 +He had slept. 10 +She had slept. 11 +They had slept. 12 +We had slept. 10 +Shraa had slept. 13 +You will have finished this book. 27 +He will have finished this book. 26 +She will have finished this book. 27 +They will have finished this book. 28 +We will have finished this book. 26 +Shraa will have finished this book. 29 +I will have cooked dinner. 21 +You will have cooked dinner. 23 +He will have cooked dinner. 22 +They will have cooked dinner. 24 +We will have cooked dinner. 22 +Shraa will have cooked dinner. 25 +I will have enjoyed the party. 24 +You will have enjoyed the party. 26 +He will have enjoyed the party. 25 +She will have enjoyed the party. 26 +We will have enjoyed the party. 25 +Shraa will have enjoyed the party. 28 +I will have talked to her. 20 +You will have talked to her. 22 +He will have talked to her. 21 +She will have talked to her. 22 +They will have talked to her. 23 +We will have talked to her. 21 +Shraa will have talked to her. 24 +I have been fighting. 17 +You have been fighting. 19 +He has been fighting. 17 +She has been fighting. 18 +They have been fighting. 20 +We have been fighting. 18 +Shraa has been fighting. 20 +I have been shopping. 17 +You have been shopping. 19 +He has been shopping. 17 +She has been shopping. 18 +They have been shopping. 20 +We have been shopping. 18 +Shraa has been shopping. 20 +I have been studying. 17 +He has been studying. 17 +She has been studying. 18 +You have been studying. 19 +They have been studying. 20 +We have been studying. 18 +Sarah has been studying. 20 +I have been listening to music. 25 +You have been listening to music. 27 +He has been listening to music. 25 +She has been listening to music. 26 +They have been listening to music. 28 +We have been listening to music. 26 +Shraa has been listening to music. 28 +I had been drinking milk. 20 +You had been drinking milk. 22 +He had been drinking milk. 21 +She had been drinking milk. 22 +They had been drinking milk. 23 +We had been drinking milk. 21 +Shraa had been drinking milk. 24 +I had been walking. 15 +You had been walking. 17 +He had been walking. 16 +She had been walking. 17 +They had been walking. 18 +We had been walking. 16 +Shraa had been walking. 19 +I had been living. 14 +You had been living. 16 +He had been living. 15 +She had been living. 16 +They had been living. 17 +We had been living. 15 +Sarah had been living. 18 +I had been going to school. 21 +You had been going to school. 23 +He had been going to school. 22 +She had been going to school. 23 +They had been going to school. 24 +We had been going to school. 22 +Shraa had been going to school. 25 +I will have been learning. 21 +You will have been learning. 23 +He will have been learning. 22 +She will have been learning. 23 +They will have been learning. 24 +We will have been learning. 22 +Shraa will have been learning. 25 +I will have been cooking. 20 +You will have been cooking. 22 +He will have been cooking. 21 +She will have been cooking. 22 +They will have been cooking. 23 +We will have been cooking. 21 +Shraa will have been cooking. 24 +I will have been watching tv. 23 +You will have been watching tv. 25 +He will have been watching tv. 24 +She will have been watching tv. 25 +They will have been watching tv. 26 +We will have been watching tv. 24 +Shraa will have been watching tv. 27 +I will have been wandering. 22 +You will have been wandering. 24 +He will have been wandering. 23 +She will have been wandering. 24 +They will have been wandering. 25 +We will have been wandering. 23 +Shraa will have been wandering. 26 +I love to play. 11 +You love to play. 13 +He loves to play. 13 +She loves to play 14 +They love to play. 14 +We love to play. 12 +Shraa love to play. 15 +I work. 5 +You work. 7 +He works. 7 +She works. 8 +They work. 8 +We work. 6 +Sarah works 10 +I swim. 5 +You swim. 7 +He swims. 7 +She swims. 8 +They swim. 8 +We swim. 6 +I accept it. 9 +You accept it. 11 +He accepts it. 11 +She accept it. 11 +They accept it. 12 +We accept it. 10 +Shraa accept it. 13 +I ate. 4 +You ate. 6 +He ate. 5 +She ate. 6 +They ate. 7 +We ate. 5 +Shraa ate. 8 +I thought. 8 +You thought. 10 +He thought. 9 +She thought. 10 +They thought. 11 +We thought. 9 +Sarah thought. 12 +I taught. 7 +You taught. 9 +He taught. 8 +She taught. 9 +They taught. 10 +We taught. 8 +Shraa taught. 11 +I bought. 7 +You bought it. 11 +He bought. 8 +She bought it. 11 +They bought. 10 +We bought. 8 +Shraa bought. 11 +I will try it. 10 +You will try. 10 +He will try. 9 +She will try. 10 +They will try. 11 +We will try. 9 +Shraa will try. 12 +I will learn. 10 +You will learn. 12 +He will learn. 11 +She will learn. 12 +They will learn. 13 +We will learn. 11 +Shraa will learn. 14 +I will reject it. 13 +You will reject it. 15 +He will reject it. 14 +She will reject it. 15 +They will reject it. 16 +We will reject it. 14 +Shraa will reject. 15 +I am attending. 12 +You are attending. 15 +He is attending. 13 +She is attending. 14 +They are attending. 16 +We are attending. 14 +Sharia is attending. 17 +I am earning. 10 +You are earning. 13 +He is earning. 11 +She is earning. 12 +They are earning. 14 +We are earning. 12 +Sarah is earning. 14 +I am hearing. 10 +You are hearing. 13 +He is hearing. 11 +She is hearing. 12 +They are hearing. 14 +We are hearing. 12 +Sarah is hearing. 14 +I am asking. 9 +You are asking. 12 +He is asking. 10 +She is asking. 11 +They are asking. 13 +We are asking. 11 +Shraa is asking. 13 +I was confusing. 13 +You were confusing. 16 +He was confusing. 14 +She was confusing. 15 +They were confusing. 17 +We were confusing. 15 +Shraa was confusing. 17 +I was accusing. 12 +You were accusing. 15 +He was accusing. 13 +She was accusing. 14 +We were accusing. 14 +They were accusing. 16 +Shraa was accusing. 16 +I was achieving. 13 +You were achieving. 16 +He was achieving. 14 +She was achieving. 15 +They were achieving. 17 +We were achieving. 15 +Shraa was achieving. 17 +I was arranging. 13 +You were arranging. 16 +He was arranging. 14 +She was arranging. 15 +They were arranging. 17 +We were arranging. 15 +Shraa was arranging. 17 +I will be catching. 15 +You will be catching. 17 +He will be catching. 16 +She will be catching. 17 +They will be catching. 18 +We will be catching. 16 +Shraa will be catching. 19 +I will be laughing. 15 +You will be laughing. 17 +He will be laughing. 16 +She will be laughing. 17 +They will be laughing. 18 +We will be laughing. 16 +Shraa will be laughing. 19 +I will be acting. 13 +You will be acting. 15 +He will be acting. 14 +She will be acting. 15 +They will be acting. 16 +We will be acting. 14 +Shraa will be acting. 17 +I will be missing you. 17 +You will be missing you. 19 +He will be missing you. 18 +She will be missing you. 19 +They will be missing you. 20 +We will be missing you. 18 +Shraa will be missing you. 21 +I have lived. 10 +You have lived. 12 +He has lived. 10 +She has lived. 11 +They have lived. 13 +We have lived. 11 +Shraa has lived. 13 +I have forgotten. 14 +You have forgotten. 16 +He has forgotten. 14 +She has forgotten. 15 +They have forgotten. 17 +We have forgotten. 15 +Shraa has forgotten. 17 +I have written. 12 +You have written. 14 +He has written. 12 +She has written. 13 +They have written. 15 +We have written. 13 +Shraa has written. 15 +I have walked. 11 +You have walked. 13 +He has walked. 11 +She has walked. 12 +They have walked. 14 +We have walked. 12 +Shraa has walked. 14 +I had never played. 15 +You had never played. 17 +He had never played. 16 +She had never played. 17 +They had never played. 18 +We had never played. 16 +Shraa had never played. 19 +I had studied. 11 +You had studied. 13 +He had studied. 12 +She had studied. 13 +They had studied. 14 +We had studied. 12 +Sarah had studied. 15 +I had wished. 10 +You had wished. 12 +He had wished. 11 +She had wished. 12 +They had wished. 13 +We had wished. 11 +Shraa had wished. 14 +I had asked. 9 +You had asked. 11 +He had asked. 10 +She had asked. 11 +They had asked. 12 +We had asked. 10 +Sarah had asked. 13 +I will have left. 13 +You will have left. 15 +He will have left. 14 +She will have left. 15 +They will have left. 16 +We will have left. 14 +Shraa will have left. 17 +I will have studied. 16 +You will have studied. 18 +He will have studied. 17 +She will have studied. 18 +They will have studied. 19 +We will have studied. 17 +Shraa will have studied. 20 +I will have stopped. 16 +You will have stopped. 18 +He will have stopped. 17 +She will have stopped. 18 +They will have stopped. 19 +We will have stopped. 17 +Shraa will have stopped. 20 +I will have read it. 15 +You will have read. 15 +He will have read. 14 +She will have read. 15 +They will have read. 16 +We will have read. 14 +Shraa will have read. 17 +I have been living. 15 +You have been living. 17 +He has been living. 15 +She has been living. 16 +They have been living. 18 +We have been living. 16 +Sarah has been living. 18 +I have been reading. 16 +You have been reading. 18 +He has been reading. 16 +She has been reading. 17 +They have been reading. 19 +We have been reading. 17 +Sarah has been reading. 19 +I haven't been studying. 19 +You haven't been studying. 21 +He hasn't been studying. 19 +She hasn't been studying. 20 +They haven't been studying. 22 +We haven't been studying. 20 +I had been arriving. 16 +You had been arriving. 18 +He had been arriving. 17 +She had been arriving. 18 +They had been arriving. 19 +We had been arriving. 17 +Shraa had been arriving. 20 +I had been asking. 14 +You had been asking. 16 +He had been asking. 15 +She had been asking. 16 +They had been asking. 17 +We had been asking. 15 +Sarah had been asking. 18 +I had been telling. 15 +You had been telling. 17 +He had been telling. 16 +She had been telling. 17 +They had been telling. 18 +We had been telling. 16 +Shraa had been telling. 19 +I had been singing. 15 +You had been singing. 17 +He had been singing. 16 +She had been singing. 17 +They had been singing. 18 +We had been singing. 16 +I won't have been living. 19 +You won't have been living. 21 +He won't have been living. 20 +She won't have been living. 21 +They won't have been living. 22 +We won't have been living. 20 +Sarah won't have been living. 23 +I will have been shopping. 21 +You will have been shopping. 23 +He will have been shopping. 22 +She will have been shopping. 23 +They will have been shopping. 24 +We will have been shopping. 22 +Sarah will have been shopping 25 +I will have been laughing. 21 +You will have been laughing. 23 +He will have been laughing. 22 +She will have been laughing. 23 +They will have been laughing. 24 +We will have been laughing. 22 +Shraa will have been laughing. 25 +Here is your order. 15 +Enjoy your meal. 13 +There you go. 10 +Careful, the plate is hot. 21 +I hope that everything is satisfactory. 33 +Is everything all right? 20 +Is everything ok? 14 +Are you enjoying your meal? 22 +How's your steak? 13 +How's that steak? 13 +Is there anything else? 19 +s there anything else I can get for you this evening? 42 +Anything else I can do for you? 24 +Is there anything I can get for you? 28 +Would you care for dessert? 22 +Would you like to try one of our desserts? 33 +Would you like to see the dessert menu? 31 +Would you like to see the menu again? 29 +Let me show you the dessert tray. 26 +Is this all on one bill? 18 +Separate checks? 14 +You can pay at the register. 22 +You can pay for me. 14 +I'll take it when you're ready. 23 +What's yours? 10 +What'll you have? 13 +It's out of service. 15 +It's out of kilter. 14 +It's dead. 7 +It up and died on me. 15 +It died on me. 10 +It's in the shop. 12 +It's out of commission. 18 +Could you wrap this, please? 23 +Could we have a doggie bag? 21 +I'd like to take the rest. 19 +I would like to take the rest home. 27 +Could I have the bill? 17 +We would like the bill, please. 25 +Do I pay you or the cashier? 21 +Do you take credit card? 19 +May I have a receipt, please? 23 +Check, please. 12 +Could i have the check? 18 +Can I have a receipt, please? 23 +We are ready to leave now. 20 +All together. 11 +There seems to be a mistake. 22 +We did not order this item. 21 +Does this include the tip? 21 +Does this include the gratuity? 26 +Is a gratuity include? 18 +Keep the change. 13 +Don't put your elbows on the table. 27 +Don't talk with your mouth full. 25 +No tv during dinner. 16 +No texting at the table. 19 +Turn that cell phone off. 20 +Wipe your mouth. 13 +Please pass the pepper. 19 +Please pass the butter. 19 +Don't you mind if I leave the table? 27 +I'll have to excuse myself. 21 +Don't put elbows on the table. 23 +Don't read at the table. 18 +Do you mind if i leave the table? 25 +Would you excuse me? 16 +Would you like salt and pepper? 25 +Would you care for butter? 21 +Would you care for some butter? 25 +Could you pour me some more milk? 26 +What's for dessert? 15 +Could you pass the rolls around? 26 +Could I have some gravy? 19 +Could you start the rolls around? 27 +Is there any more of this? 20 +Be quiet and eat your dinner. 23 +Be quiet and eat your food. 21 +You have to clean up your plate. 25 +There are starving children in Africa. 32 +Fold your hands. 13 +More milk, please! 15 +A drop more wine, please. 20 +Could I have seconds, please? 24 +May I have seconds, please? 22 +Is someone waiting for you? 22 +Is there anything I can help you with? 30 +Is there anything I can help you with today? 35 +Is there anything I can help you find today? 35 +The changing rooms are over there. 28 +Only five items in the dressing room at a rime. 37 +Only six allowed in the dressing roome. 32 +If you need me, i'll be right here. 26 +If you need any help, i'll be right here. 31 +If you need me, my name is Maria. 25 +If you need any help, my name is Maria. 30 +If i can help you find anything, i'll be right over here. 44 +What are you interested in? 22 +Are you looking for something in particular? 37 +Do you have something specific in mind? 32 +Do you know what size you are? 23 +Do you have anything in mind? 23 +Do you know what you want? 20 +I've got just your size. 18 +I've got just what you're looking for. 29 +I've got exactly what you need. 24 +Have i got something for you! 23 +That's on sale this week. 19 +We don't have that in your size. 24 +We don't have it in that color. 23 +We're out of that item. 17 +I can back order that for you. 23 +I can issue you a rain check. 22 +We can notify you by phone or e-mail. 28 +You can order it from our website. 27 +Can i try these on? 14 +I'd like to try this on. 17 +Where is the fitting room? 21 +How many items can i take in the dressing room? 37 +That looks nice on you. 18 +Thar really flatters your figure. 28 +That flatters you. 15 +That looks great on you. 19 +That's your color. 14 +This is you! 9 +It's you! 6 +It's too tight. 11 +It's too loose. 11 +I don't like the color. 17 +I'll have to keep looking for what i want. 32 +Is it on sale? 10 +Will it be on sale soon? 18 +Is is going on sale soon? 19 +Can you hold it for me? 17 +Will you hold it for me? 18 +Where is the men's shop? 18 +Where is ladies' wear? 17 +What floor is furniture on? 22 +Where can I find children's clothes? 29 +Do you sell appliances here? 23 +Is there a public restroom here. 26 +Where is the credit department? 26 +Where is the children's cloth? 24 +Where is the shoe department? 24 +I'm looking for something for my wife. 30 +I'm looking for something for my husband. 33 +I don't know my size. 15 +I need a belt. 10 +I need some jeans. 14 +I need a pair of pants. 17 +I need socks. 10 +I need a pair of gloves. 18 +I need a swimsuit. 14 +Just looking. 11 +Thank you, I'm just looking. 22 +I just can't make up my mind. 21 +I'm not sure which I like. 19 +Which do you prefer? 16 +Do you have this in blue? 19 +Do you have this in suede? 20 +Do you have this in wool? 19 +Do you have this in a larger size? 26 +Do you have this in a smaller size? 27 +Do you have something a bit less expensive? 35 +Do you have this in stock? 20 +Do you have any more of these? 23 +Do you have a shirt to match this? 26 +How would you like to pay for this? 27 +How do you want to pay for this? 24 +Will that be cash or credit? 22 +Will that be cash or charge? 22 +What method of payment will you use? 29 +Would you like to sign up for our store card? 35 +Do you take credit? 15 +Can I apply for a credit card? 23 +What financing options do you have? 29 +Can i get this gift wrapped? 22 +Would you please gift wrap that? 26 +May I get it to gift wrapped? 22 +Where is the gift-wrap counter? 25 +Is there a charge for gift wrapping? 29 +This is my phone. 13 +Sorry, do you mind if I take this? 26 +I just need to send a reply. 21 +Do you mind if I take this call? 24 +It's my ringtone. 13 +I'm being texted. 13 +She is away from her desk. can I take a message? 36 +Could I take a message? 18 +May I take a message? 16 +Is there anyone else who could help you? 32 +Would you care to talk to her secretary? 32 +Could I help you? 13 +I have to get back to work before the boss sees me. 39 +There's someone on the other line. I must say goodbye now. 45 +Can I call you back? something has come up. 33 +The doorbell is ringing. I'll call you back. 34 +Who do you want to talk to? 20 +Who do you want to speak with? 23 +Whom do you wish to speak to? 22 +With whom do you wish to speak? 24 +Who do you wish to speak to? 21 +Do you know her extension? 21 +May I sell her who's calling? 22 +Who may I say is calling? 19 +Who shall I say is calling? 21 +Whom shall I say is calling 22 +Is she expecting your call? 22 +May I ask who is calling? 19 +Who's calling? 11 +Do you wish me to page Mrs. Smith? 25 +I will see if she is in the building? 28 +Let me page her. 12 +Let me connect you with that department. 33 +He is on another line. will you hold? 28 +Hold, please. 11 +Hold the line. 11 +Just a moment, please. 18 +Would you like to hold it? 20 +Would you care to hold? 18 +Just a moment I have another call. 27 +Hang on a second. 13 +For whom are you holding? 20 +Who are you holding for? 19 +Who's on the line? 13 +I'm fine. 6 +I have nothing to complain about. 27 +Keeping busy. 11 +Keeping myself busy. 17 +Been up to no good. 14 +Been keeping my nose clean. 22 +Just muddling through. 19 +Plugging along. 13 +I'm busy. 6 +I don't have time to think. 20 +There aren't enough hours in the day. 29 +Not a moment to spare. 17 +I've been running around with my head cut off. 36 +I've been running around like a chicken with its head cut off. 49 +I'm snowed under. 13 +Not good. 7 +Not so good. 9 +Not well. 7 +Not very well. 11 +Not too hot. 9 +Not so hot. 8 +None too hot. 10 +None too great. 12 +Kind of crummy. 12 +I've seen better days. 17 +I've had better days. 16 +I haven't seen you in an age! 21 +Welcome back! 11 +Where were you? 12 +Goodbye until later. 17 +Goodbye for now. 13 +I'll try to catch you later. 21 +I'll catch you later. 16 +Likewise, I m sure. 15 +See you in the morning. 18 +Oh, look at the time! 16 +Well. David, it's really good to see you, but I really must go. 48 +Sorry, but I have to leave now. 24 +Let's continue this another time. I really must go 40 +Let's call it a night. 16 +Good-bye, until next time. 21 +I'll talk to you soon. 16 +Let's get together soon. 19 +I'll be seeing you. 14 +I'll see you real soon. 17 +See you in a little while. 20 +See you next year. 14 +See you then. 10 +Good running into you. 18 +Nice running into you. 18 +Nice talking to you. 16 +It was good to see you. 17 +It was nice to see you. 17 +It was a pleasure meeting you. 24 +Are we ready to leave? 17 +Are you about finished? 19 +Are you ready to go? 15 +Ready to go? 9 +Ready to roll? 11 +Are we away? 9 +Let's blow. 8 +Let's go out of this taco stand. 24 +Let's blow this joint. 17 +Let's get while the getting's good. 27 +Let's head out. 11 +Let's make tracks. 14 +Let's heat the road. 15 +Have a safe trip. 13 +Have a safe journey. 16 +Drive carefully. 14 +Take care of yourself. 18 +We'll miss you. 11 +I will call you when I get home. 24 +You've got my e-mail address? 22 +I'm on Facebook. 12 +I'll be in touch. 12 +Let's keep in touch. 15 +I think it's fine. 13 +It's good enough. 13 +It's satisfactory. 15 +I'll do it. 7 +I'll serve the purpose. 18 +I like it. 7 +I think it's great. 14 +I like the color. 13 +I like the texture. 15 +I like the flavor. 14 +It's got a good rhythm. 17 +It's wonderful. 12 +It's fabulous. 11 +It's ideal. 8 +It's a masterpiece. 15 +It's perfect. 10 +This is second to none. 18 +This is perfect. 13 +This is far and away from the best. 27 +This is the ultimate. 17 +It couldn't be better. 17 +Never been better. 15 +There's none better. 16 +It doesn't get any better than this. 28 +I've never seen anything like it. 26 +This is the cream of the crop. 23 +This is the pick of the litter. 24 +That's the ticket. 14 +That's just what the doctor ordered. 29 +That's just what I needed. 20 +That hits the spot. 15 +That's it. 7 +It's in a league of its own. 20 +I give it four stars. 16 +It gets two thumbs up. 17 +I've hit the jackpot. 16 +Bonus score! 10 +I hear from you. 12 +I hear you, man. 12 +I see what you're saying. 19 +I can see what you're saying. 22 +I can see that. 11 +I see what you mean. 15 +I see where you're coming from. 24 +I know what you mean. 16 +Point well taken. 14 +I know what you're talking about. 26 +I understand what you're saying. 26 +I dig it. 6 +I can dig it. 9 +I got you. 7 +I got it. 6 +I follow you. 10 +I'm with you. 9 +I'm there with you. 14 +I've been there. 12 +Read you loud and clear. 19 +You're without a clue. 17 +She doesn't know anything. 21 +You don't know bean. 15 +You don't know up from down. 21 +You don't know which end is up. 23 +You don't know quality from a hole in the ground. 38 +Don't you know anything? 19 +How can you be so stupid? 19 +Get your head out of the sand. 23 +The ain't the way I heard it. 21 +That's not what I heard. 18 +Let me set you straight. 19 +You're clueless. 13 +For real? 7 +No kidding? 9 +No fooling? 9 +No lie? 5 +No way! 5 +Are you serious? 13 +Are you for real? 13 +You're not making this up, are you? 27 +You're making this up, aren't you? 26 +You're not trying to pull one over on me, are you? 38 +No way, smith. 11 +No, sir. 6 +You're out of luck. 14 +When hell freezes over. 19 +Not a chance. 10 +Not likely. 9 +Absolutely not! 13 +Only in your dreams. 16 +Dream on. 7 +Save your breath. 14 +Save it. 6 +You were barking up the wrong tree. 28 +Over my dead body. 14 +Forget it. 8 +Not for a million dollars. 21 +Not in your wildest dreams. 22 +You wish. 7 +Like hell. 8 +I'll see you in hell first. 20 +What are you talking about? 22 +You don't know what you're thinking about. 33 +You don't have a leg to stand on. 24 +You don't know the first thing about it. 31 +You were really stretching the truth. 31 +You can ley that notion to rest. 25 +You've got it all wrong. 18 +You've got the facts wrong. 21 +You haven't got the facts. 20 +You haven't got the facts right. 25 +I don't think you have got your facts straight. 37 +Don't speak until you have got your fact straight. 40 +Next time get the facts straight. 27 +Next time get the facts first. 24 +Don't jump to conclusions. 21 +Get a life! 8 +Get real! 7 +Get with the program. 17 +Come back to earth. 15 +It cuts both ways. 14 +An eye for an eye a tooth for a tooth. 28 +The chicken has come home to roost. 28 +Two can play at that game. 20 +Serves you right. 14 +Now hear this! 11 +Are you ready for this? 18 +Are you paying attention? 21 +Do you hear me? 11 +Am I making myself heard? 20 +Look at this. 10 +Take a look at this. 15 +Take a gander at me. 15 +Feast your eyes on this. 19 +Look what we have here. 18 +Look here. 8 +Can you eyeball this for a minute? 27 +Can you believe your eyes? 21 +I don't believe my eyes. 18 +Do my eyes deceive me? 17 +That's a sight for sore eyes. 22 +I heard from you. 13 +I am still here. 12 +I am all ears. 10 +Did you get a problem? 17 +What do you mean by that? 19 +Were you talking to me? 18 +Are you trying to start something? 28 +Just exactly what are you getting at? 30 +Just exactly what are you trying to say? 32 +What a surprise to meet you here! 26 +Imagine meeting you here! 21 +Never thought I'd see you here! 24 +What are you doing in this part of town? 31 +What are you doing out of the office? 29 +Where've you been hiding? 20 +What have you been up to? 19 +Shouldn't you be in school? 21 +Shouldn't you be at work? 19 +Had you been keeping busy? 21 +You been keeping busy? 18 +Been keeping busy? 15 +We seem to keep running into each other. 32 +We have to stop meeting like this. 27 +Didn't we meet at that party last week? 30 +I'm sorry I've forgotten your name. 27 +How was it? 8 +How did it go? 10 +Did everything go ok? 17 +Did you have fun? 13 +You'll have to tell us all about it. 27 +Were the locals friendly? 21 +We missed you around here. 21 +Did you take any pictures? 21 +Were the natives friendly? 22 +Did you bring me anything? 21 +We've missed you around here. 23 +It just wasn't the same without you. 28 +Did you have pictures? 18 +I'll stand by you. 13 +I am on your side. 13 +I have got your back. 16 +You have got my backing. 19 +You can put your faith in me. 22 +Go on you can do it! 14 +Just one more. 11 +Just a little harder. 17 +Stick with it. 11 +Stay at it. 8 +Give it try. 9 +Give it a shot. 11 +Give it your best. 14 +Keep at it. 8 +Hang tough. 9 +Stick it out. 10 +Have a go at it. 11 +Take a shot at it. 13 +Take a stab at it. 13 +Take a crack at it. 14 +Have a crack at it. 14 +Come on. 6 +I won't hurt you to try it. 19 +Everybody is doing it. 18 +Everyone else is doing it. 21 +It's all the rage. 13 +Try your luck. 11 +See what you can do. 15 +Nothing ventured, nothing gained. 29 +Go on. 4 +Get going. 8 +Get going already. 15 +Get moving. 9 +Get a move on. 10 +Get cracking. 11 +Get on the stick. 13 +Get the lead out. 13 +Let's see some action. 17 +It's now or never. 13 +Take no prisoners. 15 +Knock yourself out. 16 +Go for broke. 10 +I expect to see some results soon. 27 +Are you just going to sit there? 25 +Aren't going to do anything. 22 +Good job! 7 +Good work! 8 +Nice work! 8 +Keep it up! 8 +Show a little resolve. 18 +Show me courage. 13 +Show some spine. 13 +Don't be so spineless. 17 +Don't be such a lily-liver. 20 +Take things as they come. 20 +Take it as it comes. 15 +Take it one day at a time. 19 +Take things one day at a time. 23 +Take one day at a time. 17 +Rome wasn't built in a day. 20 +Good things come to him who waits. 27 +Patience is a virtue. 17 +In good time. 10 +All in good time. 13 +There is time for everything. 24 +It will work out in the end. 21 +Everything will come together. 26 +Everything will fall together. 26 +Everything will fall into place. 27 +In the long run, everything will be ok. 31 +Everything will work itself out. 27 +It ain't over till it's over. 21 +Just between you and me... 19 +This is between you, me, and the bedpost. 33 +This is between you, me, and the four walls. 35 +I'm telling you this in confidence. 28 +I'm telling you this in strict confidence. 34 +I'm telling you this in the strictest confidence. 40 +Can you keep a secret? 17 +Could you keep a secret? 19 +Better keep quiet about it. 22 +Better keep still about it. 22 +Keep it to yourself. 16 +Don't breathe a word of this to anyone. 30 +Don't breathe a word 16 +Don't let it out of this room. 22 +Don't let this go any further. 23 +Don't tell a soul. 13 +It's on the quiet. 13 +Play dumb. 8 +This is a top secret. 16 +This is for your eyes only. 21 +This is for your ears only. 21 +Don't say I told you. 15 +Don't say who told you. 17 +This is off the record. 18 +This is not for the record. 21 +This is not to be quoted. 19 +This is not for public knowledge. 27 +This is not a publication. 21 +I won't tell a soul. 14 +My lips are sealed. 15 +It won't leave this room. 19 +I will take it to my grave. 20 +Have you heard the latest? 21 +Have you heard? 12 +Did you hear what happened? 22 +Did you hear the news? 17 +Did you get the scoop? 17 +You won't believe this. 18 +You won't believe what bill just told me. 32 +Get this. 7 +May I have word with you? 19 +Let's shoot the breeze. 18 +This food is good, isn't it? 21 +How's work? 8 +Looks like you just got a haircut. 27 +I like your hair. 13 +I like your outfit. 15 +That dress is lovely. 17 +That dress looks nice on you. 23 +Can I take a look at your paper? 24 +What are you listening to? 21 +What book are you reading? 21 +Read any good books lately? 22 +Did you see that show last night? 26 +Do you have a breath Mint. 20 +Seen any good movies recently? 25 +Do you want to step outside? 22 +Would you like to step outside? 25 +Want to make something of it? 23 +Care to make something of it? 23 +May I be frank? 11 +Let me be perfectly clear. 21 +Make no bones about it. 18 +Read my lips. 10 +To make a long story short. 21 +Let me spell it out for you. 21 +Here's the bottom line. 18 +What's your point? 14 +What's the upshot? 14 +What are you trying to say? 21 +What are you trying to tell me? 24 +Get to the point. 13 +Get to the heart of the matter. 24 +That's beside the point. 19 +That's beside the question. 22 +That's not an issue. 15 +That's not the issue. 16 +That's irrelevant. 15 +That has nothing to do with it. 24 +That's another story. 17 +That's a different ball of wax. 24 +That's a horse of different color. 27 +You're off on a tangent. 18 +You're getting off the subject. 25 +As you were saying... 15 +Getting back to the point... 21 +But I digress. 11 +What are you thinking? 18 +What's your deal? 13 +What's your problem? 16 +What kind of drugs are you on? 23 +Where are your head? 16 +What's with you? 12 +What are you trying to get at? 23 +So what's the upshot? 16 +What are you saying? 16 +What are you getting at? 19 +I don't see what you're getting at. 26 +I don't follow. 11 +I'm not sure I follow. 16 +I'm not sure I get your point. 22 +I'm not sure I know what you mean. 25 +I didn't mean that. 14 +I didn't say that. 13 +I didn't mean to give you that impression. 33 +I don't understand you. 18 +I can't understand you. 18 +Could you please speak slower? 25 +Could you please speak louder? 25 +Could you write it down, please? 26 +Please write it out. 16 +Could you spell that? 17 +Get the wax out of your ears. 22 +You're not listening to what I'm saying. 31 +You're only hearing what you want to hear. 33 +You're missing the point. 20 +That's not my point. 15 +That's not the point I'm trying to make. 30 +You've got me wrong. 15 +You've twisted my words. 19 +You're putting words in my mouth. 26 +You're taking it out of context. 25 +You're blowing it out of proportion. 29 +You're blowing this all out of proportion. 34 +You're quoting me out of context. 26 +Let me rephrase that. 17 +Let me clarify that. 16 +Allow me to clarify. 16 +Let me make myself clear. 20 +Let me make myself perfectly clear. 29 +That's the truth. 13 +That's the honest truth. 19 +That's the honest-to-goodness truth. 29 +That's the truth, the whole truth, and nothing but the truth. 49 +Cross my heart and hope to die. 24 +Would I lie? 9 +Would I lie to you? 14 +Why would I lie? 12 +I swear. 6 +I swear to you. 11 +I swear on a stack of bibles. 22 +I swear on my mother's grave. 22 +I swear to god. 11 +May God strike me down if I am not telling you the truth. 44 +That's the gospel truth. 19 +Take my word for it. 15 +You have my word. 13 +You have my word on this. 19 +I give you my word of honor. 21 +On my honor. 9 +Scout's honor. 11 +You can count on it. 15 +You can bank on it. 14 +You can take it to the bank. 21 +You better believe it. 18 +You had better believe it. 21 +Believe me. 9 +Don't be such a doubting Thomas. 25 +I don't know and I don't care. 21 +I don't have a clue. 14 +I haven't a clue. 12 +I'm clueless. 10 +I don't have the faintest idea. 24 +I haven't the faintest idea. 22 +I haven't the vaguest notion. 23 +I don't have the foggiest notion. 26 +Haven't the foggiest. 17 +Beats the heck out of me. 19 +Beats the hell out of me. 19 +Got me beat. 9 +You got me. 8 +Got me stumped. 12 +Got me. 5 +How would I know? 13 +How the hell should I know? 21 +Like I would know. 14 +I give up. 7 +Search me. 8 +Lord knows. 9 +God only knows. 12 +I don't care. 9 +I couldn't care less. 16 +I could care less. 14 +I don't give a damn. 14 +Like I give a damn. 14 +It doesn't matter to me. 18 +Really doesn't matter to me. 22 +Makes no difference to me. 21 +Makes me no difference. 19 +Makes me no nevermind. 18 +Makes no nevermind to me. 20 +Either way. 9 +Whatever you prefer. 17 +It's not important. 15 +I guess so. 8 +I guess. 6 +Do you want me to go? 15 +Do you want me to leave? 18 +Would you like me to leave? 21 +If you want me to leave, just ask. 26 +If you want me to leave, why don't you just say so? 38 +Afraid not. 9 +I'm afraid so. 10 +Afraid so. 8 +If I must. 7 +Well, if I have to. 14 +Well, if you insist. 16 +Well, if you really think so. 23 +Well, if you really want me to. 24 +I guess I have no choice in the matter. 30 +It doesn't sound like I have a choice. 29 +We've got no choice. 15 +We have no alternative. 19 +There's no alternative. 19 +I'd rather not. 11 +I'd rather die. 11 +I'd sooner die. 11 +Never in a thousand years. 21 +Not in a million years. 18 +That's life. 9 +That's the way life is. 17 +That's how it goes. 14 +That's the way it goes. 17 +That's the way the ball bounces. 25 +That's the way the cookie crumbles. 28 +Things could be worse. 18 +It's not as bad as all that. 20 +Look on the brighter side. 21 +Make the best of it. 15 +Haifa loaf is better than none. 25 +It's always darkest before dawn. 26 +When life hands you lemons, make lemonade. 35 +It's the best we can do under the circumstances. 38 +I wish we could do more. 18 +You did the best you could. 21 +You did the best that could be expected. 32 +You get an a for effort. 18 +The important thing is that you tried. 31 +Winning isn't everything. 21 +You can't win them all. 17 +You made a noble effort. 19 +Truth is stranger than fiction. 26 +It was just one of those things. 25 +Don't ask why it just is. 18 +Why ask why? 9 +Who am I no question? 16 +It's for the best. 13 +It's all for the best. 16 +Don't let it get you down. 19 +Keep your chin up! 14 +Grin and bear it. 13 +Grit your teeth. 13 +Take it in stride. 14 +Roll with the punches. 18 +Accept your fate. 14 +The third time's the charm. 21 +Things are never as bad as they seem. 29 +Things will get better. 19 +Tomorrow is another day. 20 +It will always darkest before dawn. 29 +Chin up. 6 +It was destiny. 12 +It was destined to happen. 21 +It's your fate. 11 +It was fated to happen. 18 +It's fate. 7 +It's in the cards. 13 +It's in the stars. 13 +It's the cruel hand of fate. 21 +That's karma. 10 +It's god's will. 11 +It's all in god's plan. 16 +It was meant to be. 14 +What will be, will be. 17 +Whatever will be, will be. 21 +There's nothing you can do about it. 28 +You have to play the hand life deals you. 32 +You've got to play the hand you're dealt. 31 +You can't fight it. 14 +Do you happen to have the time? 24 +Could I bother you for the time? 25 +Could you give me the time? 21 +It's midnight. 11 +It's three. 8 +It's three o'clock. 14 +It's exactly three o'clock. 21 +It's almost three. 14 +It's not quite three. 16 +It's ten after three. 16 +It's ten minutes after three. 23 +It's ten past three. 15 +It's ten after. 11 +It's ten past. 10 +It's a quarter past three. 20 +It is three-thirty. 15 +It's half-past three. 16 +It's at half past. 13 +It's three forty. 13 +It's twenty four. 13 +It's twenty minutes until four. 25 +It's three forty-five. 17 +It's a quarter of four. 17 +It's quarter to. 12 +It's a quarter of. 13 +It's quarter till. 14 +It's quarter till four. 18 +It's ten minutes to four. 19 +It's ten to four. 12 +It's ten to. 8 +It's ten. 6 +It's ten till. 10 +Is this clock right? 16 +I think my watch needs a new battery. 29 +This clock is fast. 15 +This clock is slow. 15 +My watch is running fast. 20 +My watch has been running slow. 25 +Oh isn't he cute! 12 +Isn't she the sweetest thing! 23 +Oh, isn't she darling! 17 +What an adorable baby! 18 +His eyes are just like his father's. 28 +Her nose looks just like her mother's. 30 +She has her father's eyes. 20 +He's got his mother's nose. 20 +How much does he weigh? 18 +Was he early? 10 +Was she late? 10 +What's his name? 12 +Who is she named after? 18 +Has he been sleeping well? 21 +Is she sleeping through the night? 28 +Does he sleep through the night yet? 29 +Can I hold her? 11 +May I hold her? 11 +Are you free later today? 20 +Could I come over later today? 24 +Can I come over? 12 +Do you mind if I stop by later today? 28 +Would you mind if I stopped by later? 29 +Are you busy or can I come over? 24 +Would it be all right if I dropped by for a few minutes? 43 +When is a good time for you? 21 +I'll be there by seven. 17 +Do I need to bring anything? 22 +Would you like me to bring anything? 29 +Can I bring something? 18 +Can I bring anything? 17 +Should I bring anything? 20 +What should I bring? 16 +Let me bring dessert. 17 +What time should I be there? 22 +What do you have planned? 20 +Is it casual or formal? 18 +I'm planning to drive. how's the parking? 31 +Can I bring my kids? 15 +Can you stay for dinner? 19 +Can you have dinner with us? 22 +Can you stay and have dinner with us? 29 +Would you care to stay for dinner? 27 +Would you like to freshen up a bit? 27 +Would you like something to drink? 28 +Can I get you something to drink? 26 +Look who's here! 12 +Well, look who's here! 17 +Am I surprised to see you! 20 +Look at what the cat dragged in! 25 +Come right on in. 13 +Come right in. 11 +Do come in. 8 +Come in and relax for a few minutes. 28 +Come in and make yourself at home. 27 +Come in and take a load off. 21 +To what do I owe the pleasure of this unexpected visit? 44 +To what do I owe this visit? 21 +What brings you to this neck of the woods? 33 +Why this delightful surprise? 25 +It's nice to see you. 15 +What are you doing here? 19 +What brings you here? 17 +What a delightful surprise! 23 +What a nice surprise! 17 +It's a pleasure to see you again. 25 +It's good to see you after all this time. 31 +Good to see you again. 17 +I'm delighted to have you visit. 25 +I'm delighted to have you. 20 +Delighted to have you here. 22 +I'm so happy you looked me up. 22 +I'm so glad you looked me up. 21 +I'm so glad you took the trouble to look me up. 35 +I'm so glad you could come. 20 +I'm so glad you could come by. 22 +I'm so glad you could make it. 22 +I'm so glad you could drop by. 22 +I'm so glad you could stop by. 22 +We've wanted to have you over before this. 33 +We've wanted to invite you over before this. 35 +We've been meaning to have you over. 28 +Please sit down. 13 +Have a seat. 9 +Would you like to sit over here? 25 +Please come to the living room. 25 +Come on in the living room. 21 +Right, this way. 13 +Would you like to join us in the living room? 35 +Everyone is in the living room. 25 +Everyone seems to be in the kitchen. 29 +The other guests are in the library. 29 +Make yourself right at home. 23 +Would you like to take off your coat? 29 +Here, let me take your coat. 22 +Can I take your coat and hat? 22 +Can I help you off with your things? 28 +Let me help you off with your things. 29 +Put your things anywhere and sit down for a minute. 41 +Just drop your coat here. 20 +Take your coat off and stay awhile. 28 +Why don't you take off your coat and make yourself comfortable? 51 +Make yourself comfy. 17 +Try this chair. it's more comfortable. 30 +Would you prefer a more comfortable chair? 35 +Please make yourself at home. 24 +Our house is your house. 19 +My house is your house. 18 +If there's anything I can do for you, just ask. 36 +If there's anything you need, don't hesitate to ask. 41 +Please do exactly as you please. 26 +Would you like to talk about it? 25 +If you need someone to talk to, I'm always available. 42 +I'm here if you talk about it. 22 +Nice weather we're having. 21 +The sun is shining. 15 +Horrible weather we're having. 25 +It's not the heat it's the humidity. 27 +It's raining again. 15 +What a storm! 10 +What a downpour! 13 +What a snowstorm! 14 +What blizzard! 12 +Hot enough for you. 15 +Cold enough for you? 16 +It's raining. 10 +It's hot. 6 +It's humid. 8 +It's snowing. 10 +It's cold. 7 +It's soggy. 8 +It's muggy. 8 +It's windy. 8 +Lousy weather, isn't it? 19 +Thanks for having me over. 21 +Thank you for the lovely evening. 27 +Thank you for your lovely timing. 27 +Thank you for having us. 19 +Thank you for inviting us. 21 +Do you want a cup of coffee before you go? 32 +Are you sober enough to drive? 24 +Can I call you a taxi? 16 +Can you find your way home? 21 +Will you get home all right? 22 +Will you get home okay? 18 +Do you have everything? 19 +It's been a delightful visit. 23 +It's been delightful. 17 +It's been our pleasure. 18 +So good to see you. 14 +Thank you for coming. 17 +Thanks for dropping in. 19 +Thanks for dropping by. 19 +Thanks for stopping over. 21 +I'm so glad you stopped by. 20 +Glad you could come. 16 +Glad you could drop by. 18 +Glad you could stop by. 18 +Come back soon. 12 +Come back anytime. 15 +Come back when you can stay longer. 28 +Do come back soon. 14 +Let's do this again soon. 19 +Mr. Smith to see Dr. jones. 19 +I'm here to see Mrs. Smith. 19 +Could you please tell Mr. Smith I'm here? 31 +I have an appointment with Mrs. Jones. 30 +Do we have everything? 18 +Have we forgotten anything? 23 +Did we forget anything? 19 +Do you have your keys? 17 +Did you leave a light on? 19 +I can't find my keys. 15 +Wait, I forgot my wallet. 20 +Did you bring the map? 17 +Did you have the directions? 23 +Are the kids ready? 15 +Is the answering machine on? 23 +Did you go to the bathroom? 21 +Did you unplug the iron? 19 +Did you turn off the tv? 18 +Did you turn down the heating? 24 +Did you turn off the gas? 19 +I'll be gone just a few minutes. 24 +See you in an hour. 14 +I won't be late. 11 +I'll be back by ten. 14 +I'll be home late. 13 +Don't wait up for me. 15 +Is it that late already? 19 +Is it that time already? 19 +Looks like it's that time. 20 +The time has come. 14 +I hate to eat and run. 16 +I don't want to wear out my welcome. 27 +We have to get up early tomorrow. 26 +We have a big day tomorrow. 21 +I need to run. 10 +I'm afraid I must run. 16 +I'm afraid I must be going. 20 +I've got to be running. 17 +I'm afraid I have to be going. 22 +I've got to be going. 15 +I'd better be off. 13 +I'd best be off. 11 +I'd better leave now. 16 +I better get moving. 16 +I better hit the road. 17 +I must be off. 10 +I must say good night. 17 +Time to call it day. 15 +Time to call it night. 17 +Time to go. 8 +Time to run. 9 +Time to hit the road. 16 +Time to move along. 15 +Time flies when you're having fun. 27 +Gotta go. 7 +Got to get running. 15 +Have to go now. 11 +Have to move along. 15 +Could I be excused? 15 +May I be excused? 13 +Might I be excused? 15 +Be prepared! 10 +Leave nothing to chance. 20 +Play it safe. 10 +Don't blow your cover. 17 +Let the buyer beware. 17 +We're not out of the woods yet. 23 +We're skating on thin ice. 20 +Hit the pavement! 14 +Hit the deck! 10 +Proceed with caution. 18 +Man overboard! 12 +Stop, look, and listen. 19 +Look both ways before you cross the street. 35 +Watch out! 8 +Watch it! 7 +Look sharp! 9 +Watch your step! 13 +Heads up! 7 +Behind you! 9 +To your right! 11 +On your left! 10 +Coming through! 13 +Make way! 7 +Where do we begin? 14 +How should we go about doing this? 27 +What's the first step? 17 +We're off and running. 17 +We're headed in the right direction. 29 +We're off on the right foot. 21 +We've made a good dent in it. 21 +It's a start. 9 +You've got to begin somewhere. 24 +I'd like to lay down a few ground rules. 30 +What's first on the agenda? 21 +Let's organize a task force. 22 +Who will be in charge? 17 +We're off to a good start. 19 +We've hit the ground running. 23 +We've laid a good foundation. 23 +We're just getting our feet wet. 25 +We've only just begun. 17 +This is your big night. 18 +This could be your lucky day. 23 +This is it. 8 +This is the moment you've been waiting for. 34 +This is a big moment. 16 +Make us proud of you. 16 +Make us proud. 11 +I'm sure you will make us proud of you. 29 +It's not as easy as it seems. 21 +There's more to it than meets the eye. 29 +It's surprisingly difficult. 24 +It's like looking for a needle in a haystack. 35 +It's a real challenge. 17 +It's not as easy as it looks. 21 +It's harder than it looks. 20 +It's harder than you think. 21 +Easier said than done. 18 +That won't work. 12 +Never happen. 11 +No can do. 7 +There's no way. 11 +You're wasting your time. 20 +You're wasting your energy. 22 +You're wasting your effort. 22 +It doesn't stand a chance in hell. 26 +It doesn't stand a snowball's chance in hell. 35 +You're spinning your wheels. 23 +It isn't worth beating your brains out. 31 +It's headed for the junk heap. 23 +There's not a chance in hell. 22 +You're running around in circles. 27 +You're beating a dead horse. 22 +Trying to activate or motivate something. 35 +Its like looking for a needle in a haystack. 35 +It's fit for the junkyard. 20 +Doesn't matter. 12 +It makes no nevermind. 18 +It doesn't make any nevermind. 24 +It's not worthwhile. 16 +It's not worth your while. 20 +It's not worth a hill of beans. 23 +It's not worth mentioning. 21 +It's not worth it. 13 +Do it in. 6 +Finish it off. 11 +Kill it. 6 +Kill it off. 9 +Wipe it out. 9 +Sound the death knell. 18 +Pull the plug on it. 15 +Pull the rug out from under it. 24 +Pitch it. 7 +Junk it. 6 +Trash it. 7 +Nip it in the bud. 13 +Throw it away. 11 +Put the skids on it. 15 +It's back to the drawing board. 24 +Well it's back to square one. 22 +I'm allergic to cats. 16 +I'm allergic to chocolates. 22 +I'm allergic to nuts. 16 +I'm allergic to shrimp. 18 +I'm allergic to strawberries. 24 +I can't have chocolates. 19 +I can't eat strawberries. 20 +I'm lactose intolerant. 19 +I have hay fever. 13 +I have an environmental illness. 27 +I'm allergic to penicillin. 22 +I'm allergic to dust. 16 +I'm allergic to bees. 16 +I'm allergic to bees stings. 22 +I'm on a gluten-free diet. 19 +Dairy products make me break out in a rash. 34 +My sinuses are acting up. 20 +My sinuses ache. 13 +My nose is stuffed up. 17 +Bless you. 8 +God bless you. 11 +My eyes are puffy. 14 +My eyes are itchy. 14 +I'm breaking out in hives. 20 +I break out when I eat chocolate. 26 +I'm sick. 6 +I feel funny. 10 +I feel awful. 10 +I feel downright awful. 19 +I feel terrible. 13 +I feel lousy. 10 +I feel rotten. 11 +I feel like hell. 13 +I don't feel well. 13 +I don't feel so well. 15 +I don't feel quite right. 19 +I feel ill. 8 +I'm not feeling myself. 18 +I'm a little under the weather. 24 +I'm little under the weather. 23 +I'm feeling a little down in the mouth. 30 +I'm sick to my stomach. 17 +I feel like throwing up. 19 +I think I'm going to vomit. 20 +I'm going to barf. 13 +I have a headache. 14 +I've got a splitting headache. 24 +My head is throbbing. 17 +My head is pounding. 16 +There's hammering inside my head. 27 +I have a migraine. 14 +I have an excruciating headache. 27 +I'm dizzy. 7 +I'm so dizzy I can't stand up. 21 +I'm so dizzy I have to sit down. 23 +I need some rest. 13 +I need a nap. 9 +I need a take a day off. 17 +I need a day off. 12 +I need a vacation. 14 +My get-up-and-go has got up and left. 27 +You're as cold as ice. 16 +You're cold fish. 13 +You're cold-blooded. 16 +You have got a heart of stone. 23 +You've got no heart. 15 +You're heartless. 14 +You're thick-skinned. 17 +Have you no qualms? 15 +Have you no scruples? 17 +Have you no thought of anyone but yourself? 35 +Think before you speak. 19 +Think before you act. 17 +Try putting yourself in my shoes. 27 +Are things getting you down? 23 +You look like you lost your best friend. 32 +You look like the wind has been taken out of your sails. 44 +I'm in trouble. 11 +I'm in big trouble. 14 +I'm in deep trouble. 15 +I'm in deep. 8 +I'm in over my head. 14 +I'm in way over my head. 17 +My neck is on the line. 17 +My job is on the line. 16 +My reputation is on the line. 23 +My reputation is at stake. 21 +You've really screwed up. 20 +You've done it now. 14 +Now you've done it. 14 +You've really done it at this time. 27 +You're in for it. 12 +You're gonna get it. 15 +How could you do something so stupid? 30 +What kind of mess did you get yourself into? 35 +How dumb do you think I am? 20 +Do you think I was born yesterday? 27 +Who do you think you're kidding? 25 +Who do you think you're talking to? 27 +Stop stirring things up. 20 +You like to make trouble, don't you? 28 +Don't you have anything better to do? 29 +You've got too much time on your hands. 30 +Can't you leave well enough alone? 27 +I am losing my marbles. 18 +I am mad at the world. 16 +I'm going to explode. 16 +Everything is getting on my nerves. 29 +I can't another problem. 19 +I'm on pins and needles. 18 +I am a bundle of nerves. 18 +I am coming apart and the seams. 25 +I'm falling apart at seams. 21 +I was in the wrong place at the wrong time. 33 +I feel like a fish out of water. 24 +I'm out of my element. 16 +When in Rome, do as the Romans do. 26 +I am so mad I could scream. 20 +I was chewing my nails. 18 +Simmer down. 10 +Control yourself. 15 +Don't go into hysterics. 19 +Don't be such a worrywart. 20 +Don't worry yourself sick. 21 +Don't lose sleep over it. 19 +Don't let it go to you. 16 +Don't trouble yourself. 19 +You will send yourself to an early grave. 33 +I was frightened. 14 +I was scared silly. 15 +I was chewing nails. 16 +You scared me. 11 +You scared the hell out of me. 23 +You scared the crap out of me. 23 +You scared the devil out of me. 24 +You scared the wits out of me. 23 +You scared me out of my wits. 22 +You scared me half to death. 22 +You scared the daylights out of me. 28 +You scared the living daylights out of me. 34 +You scared the pants off me. 22 +I almost jumped out of my skin. 24 +I almost lost it. 13 +It gave me the creeps. 17 +It gave me goosebumps. 18 +My hair stood on end. 16 +My blood ran cold. 14 +My blood curdled. 14 +It set my teeth on edge. 18 +I was petrified. 13 +I was scared to death. 17 +It gave me the willies. 18 +It made my flesh crawl. 18 +It gave me goose pimples. 20 +A shiver ran down my spine. 21 +It curled my hair. 14 +What's the smell? 13 +What smells? 10 +Do you smell something? 19 +What's that fragrance? 18 +What's that aroma? 14 +What's that scent? 14 +What's the odor? 12 +What's that stench? 15 +What stinks? 10 +Do you smell gas? 13 +Get a whiff of this! 15 +Take a whiff of this. 16 +Sniff this. 9 +That reeks. 9 +That smells. 10 +That smells to high heaven! 22 +That stinks to high heaven! 22 +It stinks on ice. 13 +They're bosom buddies. 18 +He's like the brother I never had. 26 +He is one of a kind. 14 +What a character! 14 +They don't make them like him anymore. 30 +After they made him, they broke the mold. 33 +We're two of a kind. 14 +We're cut from the same cloth. 23 +We're made from the same mold. 23 +We're birds of a feather. 19 +Do you mind if I join you? 19 +Mind if I join you? 14 +Care to join us? 12 +What are you drinking? 18 +Where was I? 9 +What was I saying? 14 +What were we talking about? 22 +I don't remember. 13 +I have a mind like a sieve. 20 +I am a little absent minded. 22 +I would lose my head if it weren't attached. 34 +I've lost my train of thought. 23 +It's at the tip of my tongue. 21 +It's slipped my mind. 16 +The thought escapes me. 19 +It's left my head. 13 +What was your name again? 20 +What did you just say? 17 +It went in one ear and out in another. 29 +Are we supposed to be someplace right now? 34 +I'm sorry, I'm hearing-impaired. 25 +He suffered a hearing loss. 22 +She's deaf as a post. 15 +I don't have an ear for music. 22 +He's got an ear for the piano. 22 +She plays piano by ear. 18 +I can't hear them they're out of earshot. 31 +It was so quiet you could hear a pin drop. 32 +Are you trying to wake the deaf? 25 +My plea fell on deaf ears. 20 +They turned a deaf ear to our plea. 27 +There's none so deaf as those who will not hear. 37 +In one ear and out the other. 22 +To hear tell, the whole situation was awful. 36 +Boy, did I get an earful? 19 +Keep your ears open. 16 +Hear no evil. 10 +That tastes great. 15 +That's as sweet as honey. 19 +That's as sweet as sugar. 19 +That tastes terrible. 18 +That turns my stomach. 18 +Would you like a taste? 18 +Here.Try some. 11 +Would you like a sip? 16 +I'm hungry. 8 +I'm famished. 10 +I'm starved. 9 +I'm ravenous. 10 +My mouth is watering. 17 +Who wants to say grace? 18 +Shall we grace? 12 +Shall we pray? 11 +Let us pray. 9 +Let's pray. 8 +What's for supper? 14 +Dinner's almost ready. 18 +It will be on the table in a minute. 27 +Soup's on. 7 +You look tired. 12 +You look like you need some sleep. 27 +You look dreadful. 15 +You look terrible. 15 +You look like hell. 15 +You look a sight. 13 +You're a sight. 11 +Look what the cat dragged in. 23 +You look like something the cat dragged in. 35 +You look like you've been to hell and back. 33 +You look like you've been through a war. 31 +You look like you've gone through the wringer. 37 +You could stop a truck. 18 +You could stop a clock. 18 +That face could stop a clock. 23 +Are you having a bad hair day? 23 +You're as ugly as sin. 16 +You don't look well. 15 +You don't look too good. 18 +You don't look so good. 17 +You look like death. 16 +You look like death warmed over. 26 +You look green around the grill. 26 +You look a little peaked. 20 +You look pale. 11 +You're pale. 9 +You're white as a ghost. 18 +Why is your face so long? 19 +Did something get you down? 22 +What's got you down? 15 +Who rained on your parade? 21 +Why are you so blue? 15 +Did someone rain on your parade? 26 +I am hungry. 9 +I am starved. 10 +That stew is mouthwatering. 23 +I'm so hungry I could eat a horse. 25 +I could eat a horse. 15 +I'm not interested. 15 +I am seeing someone else. 20 +I have other plans. 15 +I have got something going on. 24 +Something suddenly came up. 23 +I have to wash my hair. 17 +My calendar is full. 16 +You are not my type. 15 +You must be joking. 15 +I don't feel up to it. 15 +Was I talking to you? 16 +Who asked you? 11 +I wasn't speaking to you. 19 +When I want your opinion, I will ask it. 31 +When I want your opinion, I'll beat it out of you. 38 +Thank you for sharing. 18 +I'll thank you to keep your opinion to yourself. 38 +I'll thank you to mind your own business. 32 +Keep your nose out of my business. 27 +Keep your opinion to your self. 25 +You're not doing your share. 22 +You're not carrying your weight. 26 +You're not doing fair your share. 26 +You're not pulling your weight. 25 +You're not living up to your end of the bargain. 37 +You're not holding up your end of the bargain. 36 +You're not reaching your potential. 29 +You're slacking off. 16 +I'm broke. 7 +I'm dead broke. 11 +I'm flat broke. 11 +I'm flatter than a pancake. 21 +I don't have a dollar to my name. 24 +I don't have a penny to my name. 23 +I don't have a cent to my name. 22 +I don't have a red cent. 17 +I'm busted. 8 +I am as poor as church mouse. 22 +My pockets are empty. 17 +I have empty pockets. 17 +All I have is my good name. 20 +I don't know where my next meal is coming from. 36 +My savings are wiped out. 20 +I've lost everything. 17 +Are you crazy? 11 +Are you out of your mind? 19 +Are you out of your head? 19 +Are you psychotic, or what? 22 +Are you out of your ground? 21 +Are you out of your skull? 20 +Are you out of your tree? 19 +Are you out of it? 13 +Have you gone crazy? 16 +Have you gone insane? 17 +Have you gone mad? 14 +Have you gone loco? 15 +Have you lost your mind? 19 +Have you lost your senses? 21 +Have you lost your marble? 21 +Have you wigged out? 16 +Have you completely flipped out? 27 +Have you flipped your lid? 21 +Have you completely lost it? 23 +Have you taken leave of your senses? 29 +Do you have a screw loose? 20 +What planet are you from? 20 +Do you have rocks in your head? 24 +There is a time and place for everything. 33 +A place for everything and everything in its place. 42 +Everything has its session. 23 +All in due time. 12 +First thing first. 15 +First come, first served. 21 +The first shall be last and last, shall be first. 39 +Rules are made to be broken. 22 +Rules are meant to follow, not to be broken. 35 +Don't put the cart before the horse. 28 +Let's cross the bridge when we come to it. 32 +Do what you are told. 16 +I just do what I am told. 18 +I just do as I am told. 16 +I just work here. 13 +I'm just the help. 13 +Follow the rules. 14 +That's how we do it here. 18 +Go by the book. 11 +You must go through proper channels. 30 +This place is a mess. 16 +This place is a pigsty. 18 +What a pit. 8 +What a dump. 9 +How can you find anything in here? 27 +How do you expect to find anything in this mess? 38 +Were you raised in a barn? 20 +How about cleaning up a little around here. 35 +If you would put things where they belong, they wouldn't get lost. 53 +This place is a disgrace. 20 +What a mess. 9 +This place looks like a tornado hit it. 31 +This place looks like a national disaster. 35 +This place looks like a disaster area. 31 +This place looks like it's been through a war. 36 +I have a hunch. 11 +I have a gut feeling. 16 +I just have this feeling. 20 +I get the feelings somthing's going to happen. 37 +I feel it in my bones. 16 +I can feel it. 10 +I can sense it. 11 +My sixth sense tell me that... 22 +My guts tells me that... 17 +It's women intuition. 17 +A storm is brewing. 15 +The handwriting's on the wall. 24 +It's an omen. 9 +It's sign of things to come. 21 +It's portent of things to come. 24 +It's a good sign. 12 +It's a bad sign. 11 +It's a good omen. 12 +It's a bad omen. 11 +You're as busy as beaver. 19 +I was hoping for more. 17 +I was counting on more. 18 +I was gunning for more. 18 +It's not what i had in mind. 20 +It's not what i pictured. 19 +It's not what i hoped for. 19 +It's not what i expected. 19 +It's not what i anticipated. 22 +I expected something more. 22 +It's a far cry from what i expected. 27 +It leaves a lot to be desired. 23 +They got the best of me. 18 +I've been cheated. 14 +I didn't gain what i bargained for. 27 +I was taken advantage of. 20 +I got short end of the stick. 22 +I got robbed. 10 +I got taken. 9 +I got a raw deal. 12 +I got screwed. 11 +You can't please everybody. 22 +You can't be all things to all people. 29 +You have got your fingers in too many pies. 34 +You have got your irons in too many fires. 33 +You're burning the candle. 21 +You're taking too many things on. 26 +You're taking on too much. 20 +You're doing too much. 17 +You're trying to do too much. 22 +You're overcommitted. 18 +You're overdoing it. 16 +You're carrying world on your shoulders. 33 +You need to set your priorities. 26 +You're as busy as a bee. 17 +Many hands make light work. 22 +A little work never hurt anyone. 26 +It's all in day's work. 16 +A woman's work is never done. 22 +God helps those who help themselves. 30 +Don't get excited. 14 +Don't get all excited. 17 +Don't get all worked up. 18 +Don't blow your stack. 17 +Don't lose your cool. 16 +Don't blow your cool. 16 +Don't go into hysterics on me. 23 +Don't fly off the handle. 19 +Restrain yourself. 16 +Would you restrain yourself? 24 +Get a grip on yourself. 18 +Would you get a grip? 16 +Mellow out. 9 +Chill out. 8 +Keep cool. 8 +Cool it. 6 +Cool off. 7 +Cool down. 8 +Be calm. 6 +Calm yourself. 12 +Take it easy. 10 +Take it slow. 10 +This is a non-smoking area. 21 +This is a non-smoking building. 25 +You'll have to step outside. 22 +Please observe the no-smoking sign. 29 +Can you put out? 12 +Please put that out. 16 +I'm sorry, you'll have to put that out. 29 +I am sorry, the smoke is bothering. 28 +Have you ever thought of quitting? 28 +You smoke like chimney. 19 +And how are you today? 17 +And what is your name? 17 +You've gotten so big! 16 +You're growing so tall. 18 +You're turning into a little lady. 27 +You're turning into little gentlemen. 31 +What a big girl! 12 +How many years till you're in school? 29 +What's your favorite subject in school? 32 +Have you been a good boy? 19 +Are you being a good girl? 20 +How many brothers and sisters do you have? 34 +That's very good. 13 +You're a good little boy. 19 +You're a good little girl. 20 +I'm so proud of you. 14 +Mommy's proud of you. 16 +We are very proud of you. 19 +Behave yourself. 14 +Be good. 6 +Be a good girl. 11 +Be a good boy. 10 +That's enough of that! 17 +Sit down. 7 +Be quiet. 7 +Let's be quiet. 11 +Not another word. 14 +I don't want to hear a peep out of you. 28 +Stop it. 6 +Stop that. 8 +Settle down. 10 +Do you have a note from your doctor? 28 +Can I still get into your course? 26 +What is the book list for the course? 29 +Is there a final for this course? 26 +What are the requirements? 22 +When are your office hours? 22 +Where is your office? 17 +Could you explain that again? 24 +I don't get it. please explain. 23 +Please go over that part again. 25 +I don't understand. 15 +I still don't understand. 20 +I do not understand your English. 27 +I'm having a problem understanding the teaching assistant. 49 +What do you want us to know about the test? 33 +Will there be a review session? 25 +Will the test cover the whole book? 28 +Will the test take the whole period? 29 +What's on the test? 14 +Can you tell me what grade I'm getting? 30 +Would you tell me what grade I'm getting? 32 +Do you grade on a curve? 18 +How many were there? 16 +I worked hard, so don't I deserve a good grade? 36 +I'd like to discuss my daughter's progress. 34 +My daughter seems to be having trouble in class. 39 +Can I get you a glass of water? 23 +Do you want a glass of water? 22 +Would you like a glass of water? 25 +Would you like to lie down? 21 +Want to lie down? 13 +Would you like some aspirin? 23 +Want some aspirin? 15 +Should I call the doctor? 20 +Have you seen a doctor? 18 +I still have to go back to the doctor for a follow-up. 41 +I'm still under a doctor's care. 24 +I'm still seeing a doctor. 20 +I'm in therapy. 11 +I'm still seeing a therapist. 23 +I'm well now. 9 +I'm all better. 11 +I'm completely over it. 18 +I'm as good as new. 13 +It's like it never happened. 22 +I feel like a new person. 19 +I've got a new lease on life. 21 +I'm on cloud nine. 13 +I'm in seventh heaven. 17 +I'm on top of the world. 17 +I'm sitting on top of the world. 24 +I am happy as can be. 15 +I am high on life. 13 +I'm feeling fine. 13 +I'm as merry as the day is long. 23 +I'm as happy as a clam. 16 +I'm pleased as punch. 16 +I'm beside myself with joy. 21 +I couldn't be happier. 17 +I'm walking on air. 14 +You look like you just won the jackpot. 31 +You look like you died and went to heaven. 33 +You're looking on top of the world. 27 +What are you smiling about? 22 +Things couldn't be better. 21 +Everything's coming up roses. 24 +What a great day! 13 +It feels good just to be alive! 24 +Life's been good to me. 17 +It's great to be alive! 17 +My mind's at ease. 13 +I am content. 10 +We're satisfied. 13 +I'm just going with the flow. 22 +I'm at peace. 9 +I don't have a care in the world. 24 +Tom is without a care in the world. 27 +I haven't a care. 12 +I accept myself for what I am. 23 +I've come to grips with reality. 25 +I've come to terms with myself. 24 +I've learned to face the music. 24 +Leave well enough alone. 20 +Let well enough alone. 18 +I've come to terms with reality. 25 +Let sleeping dogs lie. 18 +She's the life of the party. 21 +He's such a card. 12 +He is a kill. 9 +I'm feeling low. 12 +I'm feeling blue. 13 +I'm feeling down. 13 +I'm out of sorts. 12 +I'm in the doldrums. 15 +I'm a little down in the mouth. 23 +I'm down in the dumps. 16 +I've been down in the dumps lately. 27 +I can't put my finger on what's wrong. 28 +My heart is heavy. 14 +My heart is broken. 15 +I'm downhearted. 13 +I'm broken-hearted. 15 +I'm heartbroken. 13 +That leaves a lot to be desired. 25 +That doesn't quite suit me. 21 +That's not what I had in mind. 22 +That didn't fit the bill. 19 +That is not what it's cracked up to be. 29 +It's not up to snuff. 15 +Please go around and introduce yourself to everyone. 44 +I hope you don't mind introducing yourself around. 41 +Could you just introduce yourself to the other guests? 45 +Just go in and meet everyone. 23 +Don't stand on ceremony. make yourself known. 36 +Get yourself a drink and something to eat. 34 +Please feel free to mingle with the other guests. 40 +I hope you don't mind getting yourself a drink. 37 +Please help yourself. 18 +Mind if I join? 11 +Hello, my name isJjane. 19 +Hello, I'm jane. 12 +I work with Lee. 12 +I'm friends with Maria. 18 +I'm a friend of maria. 16 +Have you tried the dip? 18 +Where can I put my coat? 18 +Where is the bathroom? 18 +The table looks beautiful. 22 +I love what you have done with the living room. 37 +You have a wonderful place. 22 +You have wonderful taste. 21 +Do as I say, not as I do. 17 +Do as I tell you. 12 +Do as you're told. 13 +Have I made myself clear? 20 +Do I make myself clear? 18 +Do I make myself perfectly clear? 27 +Did you hear me? 12 +Mind your manners. 15 +I expect you to be on your best behavior. 32 +Act like a gentleman. 17 +"Say ""excuse me""." 11 +"Say ""thank you""." 11 +"Say ""you're welcome""." 15 +"Say ""please""." 9 +What's the magic word? 17 +What do you say? 12 +Yes, what? 8 +Put that down. 11 +Look with your eyes, not your hands. 29 +Put that away. 11 +Leave that alone. 14 +Don't touch that. 13 +Stop playing with that. 19 +Don't bother your father when he's driving. 34 +Stop pestering your little brother. 30 +Keep your hands to yourself. 23 +Keep your hand off your little brother. 32 +Stop teasing your little sister. 27 +Leave him alone. 13 +Leave him be. 10 +Let him be. 8 +Time to crack the books. 19 +Gotta cram. 9 +I have a lot of studying to do. 23 +I've got a midterm tomorrow. 22 +I've got a final exam tomorrow. 24 +How many pages do we have to read for Monday? 35 +How many pages? 12 +Will we have to turn in our homework? 29 +What's the reading assignment for next time? 36 +Will there be a quiz? 16 +What's the assignment for tomorrow? 29 +I'm going to take a nap. 17 +I'm going to take a catnap. 20 +I'm going to take a snooze. 20 +I'm going to get some shut-eye. 23 +I'm going to catch forty winks. 24 +I'm going to catch some sleep. 23 +I'm going to bed. 12 +It's bedtime. 10 +It's past my bedtime. 16 +I'm going to sleep. 14 +I'm going to hit the sack. 19 +I'm going to hit the hay. 18 +I'm going to crash. 14 +I think I'll retire for the night. 26 +I think I'll say good night now. 24 +Don't sit on the counter. 19 +Don't eat that you'll spoil your dinner. 31 +Don't stand in front of the refrigerator with the door open. 48 +Watch out it's hot! 14 +Don't drink milk out of the carton! 27 +Don't drink milk out of the jug. 24 +Would you set the table? 19 +Go sit down supper's ready. 21 +Go tell your father supper's ready. 28 +Call the family for dinner. 22 +Call everyone to the table. 22 +Finish your dinner. 16 +You have to eat everything. 22 +You have to eat everything that you serve yourself. 42 +You have to eat some of everything. 28 +If you don't eat your vegetables, you won't get any dessert. 47 +Don't wear your shoes on the good carpet. 32 +Don't sit on the good furniture. 25 +Keep your feet off the furniture. 27 +Keep your feet off the furniture.. 27 +Take care of it. 12 +Take good care of it. 16 +I'm trusting you to take good care of it. 31 +Keep an eye on it. 13 +Guard it with your life. 19 +Don't let it out of your sight. 23 +I want this back. 13 +I want it back in one piece. 21 +You're always on the computer. 24 +Are you on Facebook? 16 +I need to check my e-mail. 19 +Look it up online. 14 +I looked it up on google. 19 +I googled it. 10 +Did you see that funny video online? 29 +It's up on youtube. 14 +I'll send you the link. 17 +What's your log on? 14 +What's the password? 16 +I've forgotten the password. 23 +Remember to log off. 16 +My files are on my laptop. 20 +I put all my photos up online. 23 +I've uploaded all my videos. 22 +Back up your files. 15 +Do you have a flash drive? 20 +Have they figured out what's wrong? 28 +What's the prognosis? 17 +How long you will be here? 20 +When do you get to go home? 20 +When are you going home? 19 +When are you being released? 23 +Is there anything you need? 22 +Is there anything I can do? 21 +Can I get you anything? 18 +Should I call for the nurse? 22 +Is the food as bad as they say? 23 +How's the food? 11 +How's your doctor? 14 +Is it catching? 12 +Are you contagious? 16 +Don't give it to me. 14 +I don't want to catch it. 18 +You need to relax. 14 +You've been running around too much. 29 +Your resistance is down. 20 +It's been going around. 18 +Be quite! 7 +Keep quiet! 9 +Keep still! 9 +Be still! 7 +Shut up! 6 +Shut your mouth! 13 +Shut your trap! 12 +Hold your tongue! 14 +Hush your mouth! 13 +Not another word! 14 +Button your lip! 13 +Button in! 8 +Clam up! 6 +Dry up! 5 +Go blow. 6 +Go fry an egg. 10 +Go take a long walk off a short pier. 28 +Make yourself scarce. 18 +Go climb a tree! 12 +Go fly a kite! 10 +Go jump in the lake! 15 +Go play in traffic! 15 +Buzz off! 7 +Bug off! 6 +Take a hike! 9 +Get out of here! 12 +Get out of my face! 14 +Who asked your opinion? 19 +When I want your opinion, I will ask for it. 34 +Who invited you? 13 +You're not invited. 15 +You're not welcome here. 19 +We don't want your kind around here. 28 +Keep out. 7 +No trespassing. 13 +Members only. 11 +Employees only. 13 +No admittance. 12 +No admittance without proper identification. 39 +These premises are for the use of members and guests only. 47 +Would you stop that? 16 +Could you please stop doing that? 27 +You are really trying my patience. 28 +That's really annoying. 19 +That's really irritating. 21 +That's driving me nuts! 18 +That's making me crazy! 18 +That's really bothersome. 21 +That's really bothering me. 22 +That's really bugging me. 20 +That's going on my nerves. 20 +That's grating on my nerves. 22 +Let me be. 7 +Let me alone. 10 +Leave me be. 9 +Please go away. 12 +I'm asking you to leave me alone. 25 +I just want to be left alone. 22 +You're a pain in the neck. 19 +You're a royal pain. 15 +He grates on me. 12 +He grates on my nerves. 18 +He gets on my nerves. 16 +He rubs me the wrong way. 19 +He gets my dander up. 16 +The nerve of you! 13 +What nerve you have! 16 +You have a lot of nerve! 18 +The nerve! 8 +You have a lot of gall! 17 +What gall! 8 +The very idea! 11 +How dare you! 10 +Why I never! 9 +How could you say such a thing? 24 +How could you do such a thing? 23 +Don't get smart with me! 18 +Don't get sassy with me. 18 +Don't sassy me. 11 +Don't talk back to me. 16 +Don't give me any of your lip. 22 +Don't get uppity with me. 19 +Don't get uppity on me. 17 +Don't get your nose out of joint. 25 +Don't overstep your bounds. 22 +Watch yourself. 13 +Watch it. 7 +Watch out. 8 +Don't contradict me. 16 +It's as clean as whistle. 19 +It's so clean you could eat off the floor. 32 +Clean your room. 13 +Pick up your clothes. 17 +I want you to pick up your room. 24 +I want this space spotless. 22 +Pick up after yourself. 19 +Cleanliness is next to godliness. 28 +Andrew, please clear the table. 26 +Please put your dishes in the sink. 28 +Please carry your own dishes to the kitchen. 36 +It's your turn to do dishes. 21 +It's your turn to clear the table. 26 +I'll scrap and you load. 18 +Whose turn is it to do the dishes? 26 +I'll wash and you dry. 16 +I apologize for any inconvenience caused. 35 +I assure you I'll do everything possible to help you. 42 +I appreciate your patience. 23 +What I can do right now is. 20 +I'll do everything to resolve this issue as soon as possible. 49 +I see how frustrating it must be. 26 +Let's see how we can work this out. 26 +If I were in your position, I feel the same. 34 +Yes, I would be feeling the same way. 29 +You are right. 11 +Your business means a lot to us. 25 +I understand sir. 14 +All you need to do you've to send your all documents for verification. 56 +I'm sending an update. 17 +Let me check. 10 +Visit our help center instead. 25 +I'm sending the confirmation. 24 +Did you know about our additional service? 35 +I appreciate your feedback. 23 +Please check that format. 21 +Be sure to check your information. 28 +Let me confirm if I've got this right. 29 +It's important to make sure your loyalty. 33 +A simple way to do that is to dispatch your credentials with us. 51 +So you're saying that there are some issues. 35 +If I'm getting the story right then I'll sort it out today. 45 +I'll make things right. 18 +I'll get this sorted out. 19 +I'll fix the issue for you. 20 +While that isn't possible right now but'll. 34 +Currently, that's a limitation. what I can do is? 38 +Is there anything else I can do for you today? 36 +Please let me know if you have any questions. 36 +I want to make sure I understood everything correctly. 45 +Did you mean to tell me? 18 +If I can understand you correctly then it will be great for you! 51 +That's a great question. 19 +I would be more than happy when you tell me your problem. 45 +I would be happy to help you. 22 +That's a good choice. 16 +A lot of people prefer. 18 +So many people prefer this product. 29 +We appreciate your patience. 24 +Thank you for remaining so positive. 30 +Personally, I would recommend you for your benefit. 43 +I think you'll find it's much easier if you do this process. 46 +You might find this service helpful. 30 +If I'm understanding you correctly which you've to say to me. 48 +Because you're a valued customer. 27 +I realize that this situation is difficult, sir. 40 +I assured we'll find a solution for you. 31 +I would feel the same if this happened to me. 35 +We'll sort this out. 15 +I'm sorry to hear you're having this problem. 35 +I know how frustrating it can be, sir. 30 +Let's see how we can help you. 22 +We'll get this resolve as quickly as possible. 37 +Absolutely right, sir. 19 +Great, sir. 9 +I would feel the same in your situation, ma'am. 37 +Sure, we will sort this out. 22 +I'm sorry you are having this problem. 30 +Let's see if there is anything we can do to help the situation. 49 +I think I'd feel just as you do, ma'am. 28 +Now that I am aware of the situation, but I'll help. 40 +I will definitely try my best to fix it for you, sir. 41 +That sounds frustrating, let's see what we can do. 40 +So that I can resolve this problem. 28 +It would be marvelous if you could act. 31 +You're right! can you tell me more? 26 +Yes, that's good. what else do you know about that? 39 +You're correct. how did you know about that? 34 +Can you also tell me why this is important? 34 +es, I like the way said that, but it's not our company's policy sir. 52 +I'd like to go back to what you said now. 30 +Do you think that? 14 +I noticed that. 12 +Good thinking! 12 +From what I understand the issue, will sort it out. 41 +It would be excellent if you could act. 31 +Definitely, I'll make retain that this gets resolved quickly for you. 57 +Thank you. we can certainly help you with this. 37 +Thanks for alerting us to this, we really appreciate your feedback. 56 +Can you explain what you mean? 24 +Could you please repeat it? 22 +What does that mean? 16 +That's okay. 9 +Everything will be fine. 20 +We'll take it easy. 14 +It's going to be easy. 16 +It will be my pleasure. 18 +I'll make sure we are thorough. 24 +I'll get this resolved to your satisfaction. 36 +Please tell me more about what you need. 32 +Don't worry. 9 +Don't worry about that problem, we'll sort it out. 39 +I'll be happy to assist you. 21 +Let's look at how we can fix these things. 32 +Here's what you can do to sir. 22 +Thank you! I hope you enjoy the rest of your weekend. 41 +I want to give you the best solution. 29 +Please, give me a second and let me see what can I do. 41 +We absolutely understand and want to help. 35 +We're glad to reached out! 20 +Would you like to transfer directly to our manager? 42 +May I suggest reaching out to our support agent directly? 47 +I'm transferring you right now, please bear with us for one moment! 54 +Yes, jack is available to chat if you prefer to speak with him. 50 +If you can do this, that will fix your issue. 35 +We recommend that you need to contact our manager. 41 +Do you prefer to be called Mr. Smith. 28 +What I will do for you now? 20 +We'll investigate this issue immediately Mr. smith. 42 +And get straight back to you, sir. 27 +This will be fixed for you, sir. 25 +We'll look into this for you right away, sir. 35 +I can see where the problem is, sir. 28 +Let's see what we can do to fix this solution, sir. 39 +What I'm doing for you right now? 25 +That's now been done, sir. 20 +This will be fixed by the end of the weekend, sir. 39 +We'll give you a call as soon as when we've had an update on your complaint. 58 +I'll sort that for you immediately. 28 +What's the weather like where you are today? 35 +I'm sorry to hear that you feel this way Mr. smith. 38 +I'd like to call you back to give an update. 33 +Can you tell me, when would be the best time to reach you? 45 +I completely understand how you feel Mr. smith. 38 +I fully appreciate the inconvenience this has caused you. 48 +Thank you for your understand Mr. smith. 32 +Mr. smith we're doing everything. 26 +We can resolve your problem quickly. 30 +Thanks for calling Mr. smith, your feedback is extremely valuable. 55 +Please, don't hesitate to call us again. 32 +I'm very please that we've been able to help you today Mr. smith. 49 +If you have any questions, don't hesitate. 34 +Please, call again if you need help. 29 +It's great that we've answered your questions today. 42 +Thanks for calling. have a wonderful day. 33 +We thought you might be interested to hear our company. 45 +That's true, sir. 13 +I can assure you that we haven't unriddled this problem. 45 +I'm throwing in a discount, just for you. 32 +We can certainly do that for you, sir. 30 +I'm sorry to bother you, sir. 22 +I thought you would be interested to know that it. 40 +When would be a suitable start date, Mrs. joe? 36 +Let's move forward and discuss your problem. 36 +Let's see if we can put together a package that's perfect for you. 51 +My name is Joe. 11 +This won't take long. 16 +Great, great! 11 +Just for a moment, sir. 18 +They are in your area. 17 +You need to. 9 +Guaranteed, sir. 14 +Maybe, later, sir. 15 +I'll share your feedback with our department. 37 +For questions about your problem, so contact us. 40 +We regret any inconvenience this may have caused. 41 +Our records show something different. 32 +Your feedback will be shared with the appropriate department. 52 +Please do not reply to this message as the mailbox is not monitored. 55 +How this problem must have been frustrating for you. 43 +Let me direct you to the page on the website. 35 +That site gives you the information. 30 +Let me ping your link information. 28 +I'm sorry that you've had contact with us. 32 +I'll raise the issue with the team. 27 +To ensure that this doesn't happen again in the future. 44 +Can you tell me a little more about it, please? 37 +Please contact us if you have any questions. 36 +Your policy doesn't cover that scale. 30 +I can check if we can offer that to you. 30 +The item is out of stock. would you like me to pre-order? 43 +I'm sorry it's not arrived yet. let me check with the courier. 47 +I'm sorry that I can't offer you a refund. 31 +Would you like to try our new product? 30 +You can consider as good it be. 24 +I think you'll find it's much easier if you do this service. 46 +I don't know, but let me find out. 25 +Thank you for bringing this to our attention. 37 +I certainly can check that for you. 28 +I'm really sorry for the inconvenience. 32 +I'm appealing for the inconvenience. 30 +I apologize for the inconvenience. 29 +I'll update you by tomorrow. 22 +Happy to help. 11 +As much as I would love to help you. 27 +Can you please provide me with your order number? 40 +Can you please check the status of your package? 39 +Just to clarify, you have already ordered your package. 46 +Just to clarify, you have to waiting to receive it, is that correct? 55 +So what I'm hearing is that there is a problem with shipping. 48 +Are you saying that we failed to deliver on time? 39 +I'm sorry, I don't understand. 23 +Can you please rephrase the question? 31 +I completely understand how you feeling sir. 37 +I can definitely help with that problem. 33 +I assure you, we most certainly will sort it out in this situation. 54 +Fantastic! I'm so glad to be of help to you. 32 +As soon as you receive your email, today. 33 +Great to meet you, how can I assist you today? 36 +Please clarify your request. 24 +You can pick up your product next week. 31 +Please recheck the enclosed statement. 33 +You'll receive your order as soon as we receive the shipment. 49 +Although, I do normally handle that. 30 +While I'm unable to represent it. what I can do is going to have a consult with my senior. 69 +What we can do is to solve this situation? 33 +Would you mind? can I ask you your name? 30 +Let me find out for you. 18 +That may be challenging, but let's discuss some options. 46 +That sucks so badly. 16 +You don't deserve that. 18 +That is terrible! 14 +We are sorry for giving you a bad service! 33 +It must be awful to be you right now. 28 +I'm going to take care of this for you. 29 +I assure you, ma'am. 15 +I understand where you're coming from. 31 +Let me find that out for you. 22 +Let me forward you to our specialist. 30 +What can I do to make your experience with us better? 42 +What would be the best-case scenario for you? 36 +Is there anything else, that I can help you with today? 44 +How do you feel about our service? 27 +Are your needs being met with our service? 34 +If I'm understanding you correctly then you should follow our policy. 57 +Did you mean to tell me that? 22 +Let me know if I'm getting the story right. 33 +What you are saying is that you do not deal with us? 40 +Thanks for waiting this out. 23 +I'd love to help you with that. 23 +Give me just a minute while I figure this out for you. 42 +That's awesome. 12 +I can fix that. 11 +Could I please take your telephone number? 35 +That's would be fantastic, thanks! 28 +Is there anything I can do for you today? 32 +You're absolutely correct sir. 25 +I want to make sure that. 19 +I really have an understanding of what you're telling me. 46 +I'm hearing that you're sad. 21 +What can I currently do to help you? 28 +I'll make sure. 11 +Get this sorted for you. 19 +I'm so sorry that happened to you. 26 +I'm sorry to hear that. I can imagine that must be frustrating. 49 +That's terrible! 13 +I can understand the times are very difficult. 38 +Let's see what we can do for you. 24 +With your refundable problem, right? 31 +I can understand how you feel. 24 +We'll work for you. 14 +I'll do my best to fix this situation. 29 +You must be feeling pretty frustrated, sir. 36 +I definitely know that could be frustrating. 37 +I can understand that must make you feel upset. 38 +I apologize that this happened. 26 +I'd like to help you if I can. 21 +It sounds like you're having a hard time. 32 +I can't tell you how sorry I'm that this happened to you. 43 +This must be difficult time. 23 +I'm sure it's not that bad! 19 +I'll do that right away. 18 +I do understand, I'll do that now. 26 +I'll contact you as soon as we have had an update. 38 +It's a good day today at the bank of wealth, how can I help you? 48 +I'll be glad to help you. 18 +May I please get your account number and the name? 40 +Thank you, let me just check on it. 27 +Okay, can you please verify the last number of your security id? 52 +Is there anything else that I could assist you with? 42 +If we do the transaction online, our team will still contact you. 53 +You're very much welcome. 20 +You have a great day! 16 +Thank you for calling the bank of wealth, goodbye! 41 +This is mike of the loco, what would you like to order? 43 +Thank you, so, that is regular supreme food, right? 42 +Is that right? 11 +Got it. would you like to add extra orders? 33 +Alright, it's gonna be right in front of your door, within 30 min. 52 +Thanks for calling, mike of the loco! 30 +Have a great night! 15 +Sorry for the inconvenience sir. 27 +May I have your account number, please? 32 +For verification purposes, can I get your name? 39 +For verification purpose, can I get your birth date? 43 +Thank you for that information sir. 29 +Delays in the bill caused by delays in our courier services. 49 +For more updates, you can visit our website. 36 +Will, there is anything else that you need sir? 38 +Thanks for calling. we're glad to assist you. 35 +Am i speaking with mr. smith. 22 +Good afternoon sir. 16 +Good morning sir. 14 +Hello, our company launched a very attractive card. 43 +Can I just take 5 minutes of your precious time to explain it to you? 54 +Yes, sir, I'm 100% sure. 17 +Sir, you just have to give a copy of your documents. 41 +Thanks, sir. our agent will come to your place tomorrow. 45 +May I know the convenient time when you would be available? 48 +Ok, sir. thank you very much. have a nice day. 34 +Good afternoon. tata network solutions. 33 +Okay. let me gather some information and see if we can help. 47 +What is your first name? 19 +Would you spell it for me, please? 27 +Okay. and your company name? 22 +Okay and your call back number? 25 +Okay. and what seems to be a problem today? 33 +Okay, and what type of system do you have? 33 +Are you able to log on to the system? 28 +Okay, great. in the meantime, see if you can reach out to the system. 54 +Let them know your issue. 20 +And randy should be calling you back shortly. 37 +You're welcome. thank you. take care. goodbye. 35 +If I were in your position, I would feel the same. 39 +That would be frustrate me, too. 26 +I would be asking the same questions as you are. 38 +You're totally right. 17 +I would come to the same conclusion. 29 +I can see why you feel that way. 24 +That must be very upsetting. 23 +I understanding how frustrating this must be. 38 +I'm sorry about this. 16 +I want to thank you for taking the time with me today. 42 +What about this is the hardest for you to talk about? 42 +I see you have a lot of feelings about what might happen. 45 +I want to do my best to make sure I'm following your goals. 45 +I appreciate how hard this is for you. tell me about it. 43 +I can see how important this is to you. 30 +I understand this can be frustrating. 31 +I know this process can be confusing. 30 +I'm sorry to see that you're in this situation. 36 +Let's see if we can solve this together. 31 +It sounds like you are having a hard time. 33 +I'm really sorry to hear that. 23 +I can tell you how sorry I'm, that this happened with you. 45 +This must be a difficult time. 24 +I definitely will make sure that it gets sorted out. 42 +You're welcome, and thanks for calling. 32 +Do you mind if I place you on a brief hold? 32 +And wait for their response before putting the call on hold. 49 +I will find out the answer for you. 27 +Can I email you where that is located on our website? 42 +I wish I could. 11 +We will need to sort out this situation, quickly! 40 +One moment please while I check on that for you. 38 +I would be happy to assist you. 24 +I'm happy to take a look at your perfect information. 42 +While my computer is loading, let me tell you your issues. 47 +Please allow me to connect you to the correct person. 43 +You would want to. 14 +You could. 8 +You've reached our department. I would happy to connect with you. 52 +She is not available at the moment, can I take a message? 45 +She will call you back as soon as possible. 34 +Let's see what we can do. 18 +It's my pleasure. 13 +I'd be happy to recommend it. 22 +Thanks for choosing us. 19 +I'll find a solution. 16 +What is more convenient for you? 26 +You made my day. 12 +How can we make this right? 21 +I completely agree with you. 23 +I'm on it! 6 +We'll figure this out. 17 +Would you please excuse me for a moment? 32 +I'll be happy to help you shortly. 26 +That's a great suggestion. 21 +Let me see how I can meet your need. 27 +I understand your request. 22 +Let me contact Karan, who can better help you with that. 45 +I'm going to find out the answer to your question. 39 +I'm happy to help you with that. 24 +I'll finish helping with your problem within the weekend. 47 +Here's how I can help you right now? 27 +Thanks for emailing, I'm sorry that you're having trouble. 47 +Thanks for writing back. that makes a lot of sense. 40 +Thanks for sharing those insights. 29 +Thanks again for your patience here. 30 +I totally hear you that what you're saying. 34 +It's one of my least favorite things about shopping! 42 +I know that can be a total bummer. 26 +I can definitely see how that would be frustrating. 42 +I know it can be tricky. 18 +Please reach out if anything else comes up. 35 +Let us know if you run into any other trouble. 36 +I'm glad that helped! if you have any concerns. 36 +Thank you for calling sir. 21 +Ok, Sir you are in the right place. 27 +Yes, Sir I can help you with that. 26 +Ok sir, please hold for a moment. 26 +Have a great rest of the day sir. 25 +Hello, good morning. 17 +How can I assist you? 16 +I'm afraid I didn't hear what you said. 29 +Could you speak a little louder, please? 33 +Will there be anything else? 23 +I can help you with today? 20 +Have a nice day. 12 +May I have your email, please? 24 +How many boxes would you like? 24 +How would you like to pay? 20 +How will you be paying today? 23 +I can help you out. 14 +But first, I'll ask you for some personal information. 44 +It's for your security purpose, sir. 29 +Can I ask for your personal info, sir? 30 +Can I please have your first and last name? 34 +May I please have your account number? 31 +Your account would be needed for refund purposes. 41 +Could I please have your date of birth? 31 +Last question sir. 15 +Sir, could you please provide the last 4 digits of your SSN. 48 +Ok, sir I will activate your account. 30 +I'll provide the needed information, sir. 34 +Your account has been activated, sir. 31 +Is there anything else I can do for you, sir? 35 +Sure, what do you need? 18 +Could you please your registered phone number? 39 +Just bear with me for a moment. 24 +It seems to me that you have a billing error. 35 +I'm pulling up your bill, sir. 23 +Hello, agent jack speaking here. 27 +Just hold on for a second. 20 +Just bear with me for a second. 24 +Please stay on the line while I'm checking. 34 +Please stay on the line while I'm transferring you to the manager. 53 +I'll put you through to the accounting section. 38 +Just stay online, please! 21 +Would you like to leave a message for that person? 40 +I'm sorry for keeping you waiting. 27 +Would you like to speak with the manager? 33 +Is there anything else I can help you with? 34 +I'm sorry that you feel this way, sir. 29 +May I suggest that? 15 +We really do appreciate this feedback, sir. 36 +May I arrange for an update call? 26 +What time most convenient for you sir? 31 +Tell me exactly what happened. 25 +I would feel the same way. 20 +I'm sorry this happened. 19 +So, if I'm understanding you correctly, your system has been going down. 59 +I'll do everything I can. 19 +First, I need you to talk calmly. 26 +Thank you so much for letting us know about this, sir. 43 +I'm sorry to hear about this, Mrs. brown. 31 +I can completely understand how you feel, sir. 38 +Thank you so much for your patience, sir. 33 +Thank you so much for your understanding, sir. 38 +I will action this for you right away sir. 33 +I truly understand your concern, sir. 31 +But we can't tolerate this language you're using right now. 47 +I totally understand you, sir. 25 +I'm going to do my very best to help you, sir. 34 +You seem very upset sir. 19 +Would you prefer to continue this conversation? 40 +Would you like to continue this conversation through the mail? 52 +Would you like us to call you back when you feel calmer? 44 +But if you continue to use this language, I'll cut the call. 47 +Make sure, sir, I'll be forced to end this call. 37 +Would you prefer to continue or not? 29 +But we can't bear your language. 25 +I do understand the inconvenience you've faced, sir. 43 +Let me see how I can fix this, sir. 26 +I recommend that you, sir. 21 +I am more than happy to help you, sir. 29 +For the quickest resolution, I would request you to. 43 +So that I can take further action without delay. 39 +I'm sorry for this trouble. 21 +Please tell me more about your problem. 32 +I can understand why you'd be upset. 28 +This is important - to both you and me. 29 +Let me see if I have this right. 24 +Let's work together to find a solution. 31 +Here's what I'm going to do for you. 26 +What can we do to resolve this now? 27 +I want to take care of this for you. 27 +I want to take care of this for you immediately. 38 +Do you think this solution would work for you? 37 +What I'll do right now is to solve your problem. 37 +As an immediate solution, I'd like to suggest... 37 +You've come to the right place to get this resolved. 41 +What would you consider a fair? 25 +What would you consider a reasonable solution? 39 +Ok, let's get you in better shape. 26 +I'm more than happy to help you with this. 32 +If I can't take care of this, I know who can. 33 +I hear what you're saying, and I know how to help. 38 +You have a right to be upset. 22 +Sometimes we fail, and this time I'm here. 33 +Sometimes we fail, and now I'm ready to help. 35 +If I were in your shoes, I'd feel the same way. 35 +You're right, and we need to do something immediately. 44 +Thank you for bringing this to my attention. 36 +Thank you for being straight with me. 30 +Thank you for your patience with us. 29 +Thank you for your loyalty to us. 26 +Thank you for your trust in us even when things go wrong. 45 +I assure you I'll try my best. 22 +If I can't take care of this, I'll find out who can. 38 +Thank you so much for bearing with me. 30 +Thanks for being straight with me. 28 +Sometimes we fail. 15 +You have the right to be angry. 24 +You're right. 10 +That must have been frustrating. 27 +Would you mind if I write this down? 28 +I'm going to do my best to help you. 26 +Have I done something personally to upset you? 38 +What could you have done better? 26 +I understand your trouble. 22 +I'll certainly try my best to set things right. 37 +If I can't resolve your concerns, I'll surely find someone who can. 53 +Here's what has worked in situations like yours. 39 +For a speedy resolution, I would request you to... 39 +This is what I can do to help you. 25 +I'm grateful for your patience. 25 +Thank you for giving me a chance to fix this. 35 +Thank you for getting in touch. 25 +I would feel frustrated by that too. 29 +Have I done something to offend you? 29 +I completely understand where you're coming from? 41 +Why you would want that? 19 +However, we can't accommodate this at this time. 39 +As much as I'd love to help. 20 +As much as I'd like to help, but what we're able to do right now? 48 +I'd like to help, that's beyond what to do now? 35 +I recognize this isn't exactly the outcome you were looking for. 52 +I'll take your feedback to my team. 27 +I've recorded your feedback for my team. 32 +We'll follow up with you if a solution becomes available. 46 +I'm confident this is the solution you're looking for. 43 +Let me just put you on a brief hold. 27 +Let me just put you on a hold to confirm with a colleague. 45 +This seems to be some unusual behavior from this product. 47 +Mind, if I put you on a quick hold? 26 +Let me put you on a quick hold to dive into this. 37 +I have a solution for this issue. 26 +It's going to take me a little time to set things up. 40 +Mind if I put you on hold for a moment? 29 +I'm sorry to keep you waiting. 23 +How may I help you? 14 +Will you mind it? 13 +I'll do this. 9 +Can you tell me about the difficulty? 30 +Will you do this procedure? 22 +What have you considered? 21 +It works well. 11 +It works well when you use it. 23 +It may not work well if you don't follow it. 33 +You're not listening. let me say it again. 32 +I know that must have been difficult for you. 36 +The situation must have seemed perplexing. 36 +Yes, there are a lot of words in the bylaws. 34 +Websites can be difficult to navigate. 32 +I can see how you were confused. 25 +The industry language can be confusing. 33 +Start from the beginning and tell me what happened. 42 +When exactly did this happen? 24 +Can I see the notice? 16 +The specific wording will help me understand the situation. 50 +What did you say afterward? 22 +Do you have any papers that record this information? 43 +I see you've been with us for 4 years. that's a long time! 42 +I want to thank you for taking the time to speak with me. 44 +That would frustrate me, too. 24 +I would be asking the same question you are. 35 +You are totally right! 18 +I'll find out the answer for you. 25 +I'll check and be right back. 22 +I completely understand your concerns. 33 +I'm sorry for such a big inconvenience sir. 34 +Yeah...I'm sorry. could you spell out your name? 35 +Thank you for that information, sir. 30 +Will there be anything else that you need sir? 37 +Sounds fair enough. 16 +Yes, this is customer support. 25 +Oh? I am sorry to hear that. 20 +Could you tell me your order number, please? 36 +Just let me verify this order number. 30 +Thank you for waiting, sir. 22 +Now, could you tell me what the problem is? 34 +Ok, sir. just to rule out this possibility. 34 +May I ask you if other devices are working properly? 42 +I understand your situation. 24 +Let me tell you what I could do for you? 30 +Please, calm down and stop yelling at me. 33 +Ohh, sorry, sir. my mistake. 22 +I'll discuss your feedback with my supervisor. 38 +We're so glad to hear your valuable feedback sir. 39 +What's your emergency, sir? 22 +Sir, please, calm down, ok. 22 +Sir, if you scream, I won't able to understand. 37 +I won't able to understand what you are saying, sir. 41 +This is very important, sir. 23 +So we can alert the authorities right away. 35 +You're doing a great job! 19 +Ok, don't worry, sir. 16 +I'm reporting as we speak sir. 23 +And, what is your name? 18 +Ok, we can have it in our records. 26 +Ok. I got it. thank you, sir. 20 +Stay with me on the phone sir, ok? 26 +I already alerted the authorities. 29 +And they are now on their way! 23 +At what time did it happen? 21 +Don't worry, sir. 13 +They will take care of that alright. 29 +Gnarly, ok? 9 +Sir, unfortunately, joe is off today. 31 +He's out of the office. 17 +So I can take care of this. 20 +We appreciate your loyalty to our store. 33 +I'm terribly sorry about that. 24 +I can't believe our warehouse could ship a damaged. 41 +I do believe you, sir. 17 +I'm so sorry about this situation. 27 +I didn't mean that you were not telling me the truth. 41 +I was surprised that we did that. 26 +Do you have your sales receipt by any chance? 36 +Yes, sir. we'll take care of it for you. 29 +I'm sure we can fix the problem. 24 +How could I be of help today? 22 +Well, first and foremost thanks for the info. 37 +I'll try my best to help you out. 24 +So please let me know. 17 +What can I do for you? 16 +Once again I'll try my best to get this matter. 36 +I'll try my best to get this straightened out. 36 +I'm pretty sure. 12 +We'll be able to resolve this matter once. 33 +Star hotel reservations, this is Jack speaking. 40 +How may I assist you at this time? 26 +Pardon me, sir, what was that? 24 +Well, I'm not grasping anything. 26 +What are you asking for? 19 +Well, sir, our company's main mission is to serve all customers. 52 +However, I'm unable to comprehend. 28 +I'm here to try to get this matter straightened out. 41 +We are going to need your personal data. 32 +So that we can sift your info in our database. 36 +And see what happened. 18 +I'm sorry indeed sir. 16 +Could you spell that out for me? 25 +Okay, I got it now. 14 +Ok, sir. I'm gonna put you on hold. 25 +So please stay on the line. 21 +We'll be back in a jiffy. 18 +So it looks your name is not registered in the database. 45 +I'll let you know about it though. 26 +I apologize for the long delay. 25 +I just queried your name on our database. 33 +Also pinpointed your issues. 24 +For which days do you need the reservation? 35 +Perhaps we can reserve a room for you. 30 +Well, sir, our room rates have recently gone up. 39 +However, we can offer you a special discount. 37 +Ohh, ok. Just give me one moment. 25 +Hey, Jack I need your help with a Portuguese speaker. 43 +Because as you already know I don't know any other language. 48 +So perhaps you can help me out jack. 28 +I don't wanna burden with my stuff. 27 +But I do really need your help. 24 +Ok. I'm gonna add you to the call. 24 +Just give me a second. 17 +Okay, you can speak. 16 +Ok, I got it. 9 +But this has nothing to do with our software. 36 +Thank you so much for your help. 25 +Alright, goodbye. 15 +I'll update you in the next two hours. 29 +It's my pleasure, sir. 17 +I would be delighted to help. 23 +We will have to do some tests. 23 +I'd like to keep you here overnight for observation. 42 +We haven't made a diagnosis yet. 25 +Does it hurt when I press here? 24 +I am going to prescribe you some antibiotics. 37 +Show me your tongue. 16 +What's the problem? 15 +What are your symptoms? 19 +I want you to see a specialist. 24 +I have a rash on my arm, and it is very itchy. 34 +That's a relief! 12 +I'd like to get a second opinion. 25 +Am I going to need surgery? 21 +What are my options for treatment? 28 +I feel a sharp pain when I bend my knee. 30 +My stomach hurts and I have lost my appetite. 36 +I feel sick and painful. I feel hot and cold. 34 +I've been having difficulty sleeping. 31 +I need a sick note. 14 +I'd like to see a doctor. 18 +Please sit. 9 +I'd like to make an appointment to see dr. mike. 36 +The doctor will see you in a minute. 28 +I think I might be pregnant. 22 +I need a doctor. 12 +The doctor would be waiting for you at his office. 40 +May I know when is the doctor available? 32 +What is the name of your hotel? 24 +What is your date of birth? 21 +How will you pay? 13 +Do you have a traveler's insurance? 28 +May I see your insurance card? 24 +Do you have an appointment? 22 +Do you have private medical insurance? 32 +Would you like to book an appointment? 31 +Can you please help me? 18 +Is it urgent? 10 +I need another inhaler. 19 +I'm having difficulty breathing. 27 +I've got very little energy. 22 +I've been feeling very tired. 23 +I've been feeling depressed. 23 +I'm allergic to antibiotics. 23 +I am epileptic. 12 +I've got a sprained ankle. 20 +I've got a pain in my waist. 20 +I need another more insulin. 23 +Do you have any allergies? 21 +Can I have a look? 13 +Where does it hurt? 15 +I'm going to take your blood pressure. 30 +Could you roll up your sleeve? 24 +Your blood pressure is quite low. 27 +Your temperature is very high. 25 +Open your mouth, please. 20 +I am going to check your temperature. 30 +I am going to check your heart rate. 28 +How have you been feeling generally? 30 +Is there any possibility you might be pregnant? 39 +You're going to need a few stitches. 28 +I'm going to give you an injection. 27 +We need to take a urine sample. 24 +You need to have a blood test. 23 +I'm going to prescribe you some antibiotics. 36 +Take two of these pills three times a day. 33 +Take this prescription to the chemist. 32 +You should stop smoking. 20 +You should cut down on your drinking. 30 +You need to try and lose some weight. 29 +I want to send you for an x-ray. 23 +Does it hurt when I touch here? 24 +Do you have any allergies to medication? 33 +How long have you been sick? 22 +How long have you been feeling this way? 32 +I am going to prescribe a medication for you. 36 +Take this medicine. 16 +We'll check in a follow-up appointment. 31 +Hospitals have given medications for patients. 40 +Please come with me-it is an emergency. 31 +Is there a pharmacy nearby? 22 +Can I use your phone? 16 +Call the ambulance! 16 +Leave me alone! 12 +Someone call 911, I am dying. 23 +I have got a deep cut I need a doctor urgently. 36 +I need an ambulance, it's an emergency. 31 +Describe your location when in an emergency. 37 +Keep in touch with the hospital when in an emergency. 43 +My skin is itchy! I can't stop scratching! 32 +I've got a lump. 11 +I'm asthmatic. 11 +My arm is sore! 11 +I have got very little energy. 24 +I have a rash on my arm, and it's very itchy. 33 +My stomach hurts and I've lost my appetite. 34 +My neck is stiff and sore. I think I've pulled a muscle. 42 +I need you to fill the form. 21 +Where is my baby, I need to see my baby? 30 +The cut is serious and deep. 22 +I hope the medicine works. 21 +I am sorry, but we have lost the patient. 32 +Hi, how are you? today you feel good? 28 +Hello doctor, I am not feeling good today. 34 +What's wrong with you? 17 +I have a fever and a cough. 20 +My throat is dry! 13 +I can't stop coughing! I'm also sneezing. 31 +Let me take your temperature. 24 +I am feeling giddy. 15 +I think you have the flu. 19 +Take this medicine twice a day. 25 +Get some rest. drink a lot of water. 27 +Thank you so much, doctor. 21 +I hope you feel better! 18 +Stay hydrated, it is summertime. 27 +A spoonful of sugar helps the medicine go down. 38 +An apple a day keeps the doctor away. 29 +Consult your diary. 16 +Day surgery. 10 +Do you like hospital food? 21 +Just what the doctor ordered. 24 +Laughter is the best medicine. 25 +Take two aspirin and call me in the morning. 35 +Taste of your own medicine. 22 +Tell me the worst doctor. 20 +Doctor Livingstone I presume? 25 +Is there a doctor in the house? 24 +What to say at the doctor? 20 +I have a doctor in my house. 21 +I think you should see a doctor. 25 +You look very pale. shall I call the ambulance? 37 +I'm ill. I don't feel well. 18 +Where do i find the general physician's office? 38 +What are the consulting hours of the ear nose throat specialist? 53 +Do I have to make an appointment? 26 +I need a doctor urgently! 20 +I need to book an appointment. 24 +My ears are sore, I need to consult a doctor. 35 +My head hurts! what is wrong with me? 28 +I have a cold for two weeks. 21 +I have taken the appointment of 4 in the evening. 39 +Let me take your pulse, please. 25 +I'll measure your blood pressure. 27 +Your blood pressure is too low. 25 +Let me sound your back. take a deep breath. I'll check your lungs. 50 +Does it hurt here? breathe out slowly. 30 +Show me your tongue. poke out your tongue. 33 +Have you got any other symptoms? 26 +What infectious diseases have you had? 32 +Don't worry. there's no serious problem. 31 +I don't think it's too serious. 23 +You've got to be vaccinated against tetanus. 36 +You must stay in bed. 16 +Take this medicine three times a day, after meals. 41 +I'll dress the wound and put a plaster on your arm. 39 +You must follow a diet. 18 +You need to rest and you shouldn't worry. 32 +The blood test came back negative. 28 +Your test results have come in. 25 +The biopsy shows a tumor. 20 +You should consult a specialist. 27 +We'll know more in a few days. 22 +It would be better if you went to the hospital. 37 +I think you'll have to stay in the hospital for a week. 42 +Hopefully, there won't be any complications. 37 +I don't think you need chemotherapy. 29 +I'll give you a prescription. 23 +You'll soon be well again. 20 +Come back next week if you don't feel better. 35 +Take this medicine three times a day. 30 +Where's the pain? what do you complain of? 32 +Have you taken your temperature? 27 +For how long have you been feeling ill? 31 +Can I have a look? where does it hurt? 28 +What have you eaten? 16 +What have you drunk? 16 +Have you been injured? 18 +Do you have a headache? 18 +Are you on any sort of medication? 27 +How long have you been feeling like this? 33 +I've got a high temperature. 22 +I feel really rough. I'm shattered. 27 +Could you check my blood pressure? 28 +I've got high blood pressure. 23 +There's a sharp pain here. I've got a pain in my limbs. 40 +I feel dizzy. I've got a kidney problem. I've lost weight. 43 +I've got a stomach ache. 18 +I always feel bad after meals. 24 +I've lost my appetite. 17 +I have diarrhea. 13 +I've got circulation problems. 25 +My ears are buzzing. I've got an upset stomach. 36 +I've sprained my wrist. 18 +My hand is badly swollen. 20 +I think I've pulled a muscle in my leg. 29 +I've had scarlet fever, mumps, the measles. 35 +I've been feeling sick. 18 +I've been having headaches. 22 +I'm very congested. 15 +My joints are aching. 17 +I've got diarrhea. 14 +I've got a swollen. 14 +I'm in a lot of pain. 14 +I've got a pain in my back. 19 +Is it something serious? 20 +When will the test results come in? 28 +Are you going to run more tests? 25 +Will I need surgery? 16 +Do I have to be operated on? 21 +How long do I have to stay in the hospital? 33 +I hope there won't be any complications. 32 +Could you prescribe some medicine for me? 34 +How often should I take this medicine? 31 +Shall I come back next week if I don't get better? 38 +Is this a common problem at my age? 27 +Let me check your mouth. 19 +I've got pain in my back teeth and my gum is bleeding. 41 +My dentures broke. 15 +I've lost a filling. 15 +Can you please replace the filling? 29 +Does the tooth have to be extracted? 29 +The gum seems to be dead. 19 +We will have to operate you. 22 +The root canal is the option we have. 29 +I have very brittle teeth. 21 +The wisdom tooth is on its way. 24 +There is tooth decay. 17 +You need to brush your teeth after every meal. 37 +The braces are new to the patient. 27 +Anesthesia is given to the patient. 29 +I will suggest you have ice-cream as much as you can. 41 +Keep the kids away from chocolate. 28 +Let the milk teeth break and then come back to me. 39 +Has the toothache been constant or fluctuating? 40 +I have pain in the right side teeth from the end of the jaw. 46 +You've got another set of cavities. 28 +Taking good care of teeth is a good habit. 33 +I've been having some gum pain recently. 32 +Please recline and open your mouth. 29 +There is some inflammation of the gums. 32 +We need to take x-rays to identify tooth other decay. 42 +Make sure that there isn't any between the teeth. 39 +I'll just get these two fillings drilled and taken care of. 47 +It looks like you may have a few cavities as well. 39 +Would you make up this prescription for me? 35 +Shake well before use. not to be taken orally. 36 +Can I get a packet of vitamin tablets? 30 +I've got a temperature sore throat. 28 +My throat is dry! I can't stop coughing! 30 +My legs feel weak! 14 +I'm diabetic. 10 +I cut my finger! the bleeding won't stop. 31 +I hope you have an antiseptic solution. 32 +May I have a first aid kit? 20 +You are the fifth pharmacist that I have asked for it today. 48 +Thank you, and can you tell me how I should use it? 39 +Ten days for this one. it's important that you finish all the packages. 56 +If you forget to take it at night, you need to take two in the morning. 55 +No, you can not take aspirin while you are on this, no painkillers allowed. 61 +I see, are there any side effects? 27 +Rare but possible drowsiness, dizziness, blurred vision, upset stomach, nausea. 69 +Okay then. can I pay with my card? 25 +I am an honest employee. 19 +I am not only a hard worker, but a smart worker as well. 43 +I am a dedicated worker. 19 +It is important to have a positive outlook. 35 +I am good at making decisions. 24 +I like working with a supportive team. 31 +I want to keep learning every day. 27 +I can work the night shift as well. 27 +I want to grow as a professional. 26 +All the projects will be completed on time. 35 +I seek perfection. 15 +I am ambitious. 12 +I am an excellent communicator. 26 +I do not shy away from asking for help. 30 +My strength is my flexibility to handle change. 39 +I am driven to succeed. 18 +I work well with others. 19 +I can juggle multiple tasks. 23 +I develop a positive work environment. 32 +I am self-motivated. 16 +I easily adapt to new situations. 27 +I value integrity. 15 +I care about the workplace atmosphere. 32 +I am able to work long and hard hours. 29 +I am able to adapt my priorities. 26 +I am excellent at gathering information. 34 +I take constructive criticism well. 30 +I am a meticulous planner. 21 +I am a great listener. 17 +I use every tool at hand. 19 +I am industrially savvy. 20 +I do not stress easily. 18 +I am a dependable person. 20 +I am dedicated to my work. 20 +I have to be organized at what I do. 27 +I respect people and my work. 23 +I have a strong work ethic. 21 +I am disciplined and punctual. 25 +I have strong communication skills. 30 +I have problem-solving skills. 25 +I am consistent and I do not procrastinate. 35 +I take my work seriously. 20 +I am a responsible and practical person. 33 +I work well individually as well as in teams. 36 +I am very ethical and professional. 29 +I am very helpful and kind. 21 +I am open to changes and suggestions. 30 +I take up challenges with a positive outlook. 37 +I do not engage in gossips. 21 +I can go the extra mile. 18 +Thank you for the opportunity. 25 +Thank you for meeting with me today. 29 +Thank you for considering my application. 35 +Thank you for your time. 19 +Thank you for calling me here today. 29 +Thank you for giving me a chance. 26 +I appreciate your time. 19 +Thank you for taking the time to talk today. 35 +I am grateful for interviewing you today. 34 +I appreciate the information you have shared. 38 +Thank you for accepting my connection request. 39 +Thank you for sharing your expertise. 31 +Thank you for your consideration. 28 +Thank you for making me feel comfortable. 34 +Thank you for your assistance. 25 +Thank you for your support. 22 +Thank you for the courtesy you extended to me. 37 +I appreciate the confidence you showed in me. 37 +Thank you for your encouragement. 28 +I really appreciate your guidance. thank you. 37 +Thank you for appointing me. 23 +Thank you for accepting my application. 33 +Thank you for the offer. 19 +Thank you for your advice. 21 +Thank you for your patience. 23 +Thank you for believing in me. 24 +I truly appreciate your honesty. 27 +Thank you for comforting me. 23 +Thank you for making me feel at home. 29 +I appreciate the kindness and generosity. 35 +I appreciate your decision. 23 +Thank you for the motivation. 24 +Thank you for being so amiable. 25 +I am forever grateful for today. 26 +Thank you for choosing me. 21 +Your words meant a lot to me. 22 +Thank you for this experience. 25 +Thank you for making my dream come true. 32 +I got to learn a lot today, thank you. 29 +Thank you for recognizing me. 24 +Thank you for your advice and help. 28 +Thank you for being so thoughtful. 28 +Thank you for being so energetic and lively. 36 +Thank you for the lovely interview. 29 +I appreciate your consideration. 28 +Thank you for listening to me. 24 +Thank you for everything. 21 +Hello, my name is Mike. 18 +I am pleased to meet you. 19 +I was so excited when the manager told me this position was open. 52 +I'd like to learn more about the company. 32 +It's nice to meet you. 16 +I have read the job description. 26 +I have researched your company. 26 +This job sounds interesting. 24 +The job description aligns with my qualifications. 43 +This is the perfect opportunity. 27 +I can provide value to the company. 28 +I am committed to my work. 20 +I want to improve my skills under your guidance. 39 +I am passionate about my work. 24 +My experience helps me advance faster. 32 +I have a flexible schedule. 22 +I am seeking new challenges. 23 +I feel well prepared for this job opening. 34 +I left for an opportunity to advance my career. 38 +I wish to experience a new environment to continue growing. 49 +I am highly organized. 18 +I have strong interpersonal skills. 30 +I try to think out-of-the-box for creative solutions. 42 +I am a quick learner. 16 +I am inventive in my work process. 27 +I have heard so much about you. 24 +I have always wanted to meet you. 26 +This is the ideal company I'd love to work with. 37 +I feel very lucky and blessed to have got this opportunity. 48 +I am really nervous and thrilled at the same time. 40 +You have always been a role model for me. 32 +You are an inspiration to me and many. 30 +I am from Pune. 11 +I have been waiting for this moment. 29 +I really look up to you. 18 +I have always dreamed of working with you. 34 +You're an inspiration to me and many. 29 +Thank you for taking the time to meet with me today. 41 +Thank you for having me. 19 +I'd love to be a part of your company. 28 +I have the experience to do the job. 28 +I constantly like to learn. 22 +Your company aligns with my long-term goals. 36 +I am calm and composed. 18 +I am always full of energy. 21 +I take criticism and advice we'll. 27 +I can be very cooperative. 21 +It gives me immense pleasure to meet you. 33 +I would be thrilled to work with this organization. 42 +I enjoyed learning more about this role. 33 +I am excited to get started. 22 +I am confident that this is the job I want. 33 +I look forward to hearing from you. 28 +I enjoyed speaking with you. 23 +I am looking for a competitive offer with effective compensation. 55 +I look forward to a positive reply from your side. 40 +It will be an honor to work with you. 28 +I hope to join the team soon. 22 +I wish to grow as a professional under your guidance. 43 +This position is a great opportunity to advance my skills. 48 +My aim is to help the company grow. 27 +I am committed to the company's success. 32 +I will be an asset to the company. 26 +I am open to negotiate salary. 24 +My salary expectations are in line with my experience. 45 +I am looking forward to being part of the team. 37 +I am willing to join as soon as needed. 30 +I have a very quick turnover time. 27 +I am goal-oriented. 15 +I am not afraid to ask questions. 26 +I thrive on a challenge. 19 +I am a natural leader. 17 +I am looking forward to working with you. 33 +I will never let you down. 20 +I know what it takes to be work hard. 28 +I learn from my mistakes. 20 +I am willing to work with you. 23 +This interview has been an amazing experience. 39 +I will never be a reason to disappoint you. 34 +I can be a great contributor to your company. 36 +I hope to remain in consideration for this position. 43 +I guarantee I can be a boon to this company. 34 +I promise to make you proud. 22 +Working under your leadership is all I'll ever want. 42 +I hope to learn from you. 19 +I'd be lucky to work with you. 22 +It's a privilege to meet you. 22 +Awaiting your reply. 17 +I want to build a career in your company. 32 +I'd love to work here. 16 +The position sounds like a great fit for me. 35 +Please let me know if you need anything else from me. 42 +I'd be thrilled to work with this organization. 38 +Based on what I've learned, I believe I'm perfect for the job. 48 +I'm excited to get started. 21 +I can't wait to be a part of the company. 30 +Have a great day. 13 +I majored in legal studies. 22 +I am a professional dancer. 22 +I am trained as a civil engineer. 26 +I am an experienced engineer. 24 +I completed my graduation from oxford university. 42 +I pursue law after the 12th standard. 30 +I scored a grade in the final year of college. 36 +I passed out of college in the year 2020. 32 +I joined oxford university to pursue law. 34 +I hold a diploma in banking and finance. 32 +I shifted to Mumbai to complete my Ph.D. 31 +I did my initial schooling at an English school. 39 +I gained practical experience only after completing graduation. 55 +I am an engineer by profession. 25 +I took up research in the first year of college. 38 +My course prepared me for this role. 29 +My extra-curricular activities enhance my personality. 47 +I continue to seek educational opportunities. 39 +I did not pursue a master's degree because of personal issues. 50 +I am a qualified doctor. 19 +I always wanted to be a lawyer. 24 +I received my master's degree from the same university. 45 +I was always passionate about computers as a student. 44 +I am a trained electrical engineer. 29 +I qualify as a teacher. 18 +I completed my b.e. in computer engineering. 35 +I obtained my bachelor's degree in nursing. 35 +I have a degree in criminal justice. 29 +I have a master's degree in finance. 28 +I majored in economics. 19 +I hold a diploma in pharmacy. 23 +I am an architect by profession. 26 +I qualify as a doctor. 17 +I have a bachelor's and master's degree in social work. 43 +I completed my post-secondary education in journalism. 46 +I have an associate's degree in fashion. 32 +I qualify as a judge. 16 +I am a chartered accountant. 23 +I have done a few courses in hospitality. 33 +I am a mechanical engineer. 22 +I have a degree in e-commerce and law. 29 +I have a diploma as a medical laboratory assistant. 42 +I am formally trained in acting. 26 +I completed my bachelors in hotel management. 38 +I qualify as a veteran. 18 +Your company has a positive working environment. 41 +I did some research about your company before coming here. 48 +The company keeps the security of women employees in mind. 48 +I like the quality of work that the company does. 39 +I will be able to improve my skills in this company. 41 +Your client base is impressive. 26 +I love that your company emphasizes professional development. 53 +I hear that you wish to expand your services. 36 +The company has its branches all over India. 36 +I like how the company is technologically savvy. 40 +Your company values its employees. 29 +The company helps its workers maintain a healthy work-life balance. 56 +There is a scope for me to develop in this company. 40 +Your team is very hard working. 25 +The company's policies are liberal. 29 +The company has a team-oriented approach. 34 +Your company motivates the employees to do their best. 45 +The company's values are what make it the best. 37 +I like how a customer is king for the company. 36 +The quality of your work is excellent. 31 +Your guidance will help me work better. 32 +The company also offers its services in London. 39 +I know how employees are the real assets of your company. 46 +Your company's work efficiency is commendable. 39 +I have always wanted to be a part of your company. 39 +I love the way your company functions. 31 +My goals and values line up with the company's background. 47 +I love your company's ideas for future efficiency. 41 +Your company always provides top-quality service. 42 +I've read about your company on Twitter. 32 +The company is known to achieve top levels of success. 44 +I've read about your company's recent product launch and its results. 56 +It's a dream to be a part of your company. 31 +I really like how your company constantly evolves. 42 +Your company has the perfect work environment. 39 +I admire how the company treats its employees. 38 +Many things important to this company are equally important to me. 55 +The company meets its goals successfully. 35 +The company's work ethic speaks for itself. 35 +The company never ceases to amaze me. 30 +This is the best company to work with. 30 +Your company's performance is praiseworthy. 37 +I have always admired the customer-service of the company. 48 +Your company is always open to new and emerging technologies. 51 +I would love to work with your company in the future. 42 +Customers are always happy with your company. 38 +I like how your company is not afraid to take risks. 41 +The company has an extremely healthy and comfortable atmosphere. 55 +I first came across your company at this event. 38 +I'm really impressed by your company's position. 39 +Failures helped me get better. 25 +It is ok to make mistakes. 20 +It is difficult to keep going after facing failures. 43 +I failed the class because I did not work hard. 37 +Failure is the stepping stone to success. 34 +Success comes to those who work hard. 30 +Working efficiently is important to gain success. 42 +I want to do my best. 15 +I hope to be learned from my mistakes. 30 +Failing is good if we gain experience from it. 37 +I am a successful writer. 20 +I seek perfection and so does success. 31 +I successfully organized that meeting. 33 +I might fail, but I will surely learn a lesson. 37 +It is easy to give up after failing, but I keep going. 42 +I want to help this company achieve success. 36 +Success and failure are the fruits of hard work. 39 +I believe in myself and hope to be successful. 37 +I am working hard to change my failure into success. 42 +Perseverance can change failure into success. 39 +Making the same mistake twice is not good. 34 +I am optimistic and that is my first step towards success. 47 +Failure will help me identify my weaknesses. 37 +Failing can be constructive if handled properly. 41 +I work hard to achieve success. 25 +I embrace failure. 15 +Success is power. 14 +I use failure as an inspiration. 26 +Success is how high you bounce when you hit bottom. 41 +Failure is a part of success. 23 +Self-belief leads to success. 24 +I try to rise above failures. 23 +Self-esteem is the strongest factor in success. 39 +Success motivates me. 18 +I accept failures and learn from them. 31 +Success is a strength. 18 +The real failure is when you stop trying. 33 +I fail until I succeed. 18 +I dream of success and work towards it. 31 +Success is not final and failure is not fatal. 37 +If you're not ready to fail, you're not ready to succeed. 44 +Success is a journey, not a destination. 33 +Success and happiness lie in me. 26 +I aim to never give up. 17 +The best revenge is a success. 24 +Failure is the key to success. 24 +Fear kills more dreams than failure ever will. 38 +Perseverance is the secret of success. 32 +All my successes are built on my failures. 34 +My immediate goal is to get this job. 29 +I want to be head of the department. 28 +Setting long-term goals is important for growth. 40 +I wish to start my own business one day. 31 +I want to become an expert in this field. 32 +I want to complete my education. 26 +Short-term goals help me achieve my target easily. 41 +My next step will be to get a promotion. 31 +I want to assume more responsibilities by next year. 43 +I am looking forward to taking on leadership roles. 42 +I want to boost my abilities. 23 +I want to develop and streamline newer processes. 41 +I wish to provide excellent service. 30 +One of my goals is to develop my writing skills. 38 +My long-term goal is to be financially independent. 42 +I want to become a better worker. 26 +I wish to grow with a company where I can continue to learn. 47 +I plan on enhancing my skills. 24 +I want to learn the basics in an entry-level role. 39 +I shall contribute as much value as possible to the team. 46 +I want to be more responsible. 24 +I believe that goals give our lives meaning. 36 +I have a clear vision of where I am going. 32 +I want to be more knowledgeable. 26 +My goal is to be famous. 18 +My goal is to be efficient. 21 +My goal is to make a lot of money. 25 +I want to focus on my education. 25 +I want to become a manager. 21 +My goal is to earn my MBA. 19 +My aim is to travel the world. 23 +I want to become an expert in the field of medicine. 41 +I want to settle abroad. 19 +My goal is to improve my skills. 25 +I want to focus on productivity. 26 +I aim to receive a degree in economics. 31 +I aspire to be a great leader. 23 +I want to become a top lawyer. 23 +My goal is to become one of the leading accountants. 42 +My goal is to be happy in all I do. 25 +I aspire to be an author. 19 +My aim is to become a business tycoon. 30 +I aspire to be a great politician. 27 +My goal is to focus on personal development. 36 +My aim is to learn new skills. 23 +I want to become a doctor. 20 +My aim is to get a promotion. 22 +I aspire to succeed in life. 22 +My goal is to live a lavish life. 25 +My last job did not make me happy. 26 +I was motivated to do my best at my last job. 34 +My last experience did not help me develop my skills. 43 +I faced many limitations in the workplace. 35 +I did not like their way of functioning. 32 +I gained so much experience from my last job. 36 +I enjoyed the people I worked with. 28 +I liked how the seniors always encouraged me. 37 +The work environment was not safe. 28 +I was not challenged enough and so I decided to leave. 43 +There was no room for advancement in my last job. 39 +My capabilities were recognized and rewarded there. 44 +There were limited opportunities for development. 43 +The company helped me gain confidence. 32 +My previous job provided some valuable lessons. 40 +The working environment was very positive. 36 +My last job challenged me to improve my skills. 38 +I was able to grow as an individual. 28 +There was a real emphasis on providing quality work. 43 +My previous job taught me to maintain a work-life balance. 47 +The experience taught me several transferable skills. 46 +I did not like the lack of communication between members. 47 +The company made me a smart worker. 28 +I could easily adjust to their style of work. 36 +Everyone was very supportive and worked as a team. 41 +My previous job was slow. 20 +I'll always be grateful for my previous job. 35 +The company made me realize my capabilities. 37 +I learned a lot from my previous job. 29 +I developed many skills in my previous company. 39 +I got on well with my colleagues. 26 +The company got merged with another. 30 +I wasn't able to showcase my full potential. 35 +There was no opportunity for growth. 30 +I learned a lot about different management styles. 42 +The company made me work hard. 24 +I feel my skill set can be better employed elsewhere. 43 +I found myself bored with the work. 28 +I enjoyed group projects and admired our cooperation. 45 +I didn't want my unhappiness to affect my job. 36 +I was taught different strategies. 29 +There was no room for advancement in the company. 40 +The people were too terrific to work with at the company. 46 +I want to see growth in my career. 26 +The opportunities were limited for me in my previous company. 51 +My previous job shaped me to be a better person. 38 +It was difficult for me to adjust to my previous company. 46 +The company helped me to become confident. 35 +My previous job was prone to crashing. 31 +I was not challenged enough at the job. 31 +What can I do to excel in this position? 31 +How is my performance measured in this position? 40 +How do you deal with challenges? 26 +What goals does your company currently have? 37 +What do you know about our company? 28 +Tell me why you chose this particular profession? 41 +What do you find most challenging? 28 +What do you like the most about this profession? 39 +What do you like the least? 21 +Why have you applied for this position? 32 +What are your long-term career goals? 30 +What industries have you worked in? 29 +Describe the ideal job from your perspective? 38 +What is your interpretation of success? 33 +Describe an ideal work environment? 30 +Why should we hire you? 18 +What are my next steps? 18 +What do you think makes a good organization? 36 +Why do you want to leave your current job? 33 +What would you say is your greatest weakness? 37 +If we hire you, when would you be available to start? 42 +If the position required it, would you be willing to travel? 49 +Tell me about your educational background. 36 +What are your salary expectations? 29 +Why did you choose your major? 24 +How does your education relate to your career? 38 +How has your education prepared you for this job? 40 +What is your biggest professional achievement? 40 +Where do you see yourself in 5 years? 29 +What was the toughest decision you had to make? 38 +What do you do when you disagree with someone? 37 +How will other people describe you? 29 +What do you like to do outside of work? 30 +What questions do you have for me? 27 +What are your three top traits? 25 +How can you contribute to the company? 31 +What do you plan to do if you're not selected? 35 +Can you tell me a little about yourself? 32 +What do you know about the company? 28 +Have you faced any conflict at work? 29 +Why were you fired? 15 +What do you like least about yourself? 31 +What's your management style? 24 +How do you deal with stressful situations? 35 +When can you start? 15 +Any other company you're interviewing with? 36 +You must be ready to take risks. 25 +It will be measured on the basis of the quality of your work. 48 +I look at challenges in a positive way and divide them into smaller pieces. 61 +We are focusing on overseas expansion. 32 +I'm great! I'm at an interview for a company I admire. 40 +I know that your company is one of the best in the market. 45 +I chose this career because I enjoy it. 31 +Keeping pace with technological change is a challenge for me. 51 +It helps me meet people with engaging ideas on a daily basis. 49 +I did not like the unavoidable repetitive tasks in my last role. 52 +It will give me the opportunity to build several skills. 46 +I wish to grow into the job and gain more experience. 42 +I have worked in sales as well as marketing industries. 45 +A job where there is always scope for improvement is an ideal job. 53 +Success is an answer to the hard work that I give to perform a task. 53 +One that values and encourages individual employees. 45 +I am passionate about this job and can perform efficiently. 49 +We will get in touch with you for the second round of interviews. 52 +Efficient employees and motivating employers make good organization. 60 +I have the desire to take on more responsibilities. 42 +I get impatient when projects run beyond the deadline. 45 +I can start as soon as you want me to. 28 +Yes, I think it will be a good experience. 33 +My salary expectations are in line with my qualifications. 49 +I have always been interested in this field. 36 +Several of my classes have tied into real-world examples for my career. 58 +My school shaped me into a better person, ready to face the world. 53 +It has developed my skills and increased my knowledge. 45 +Organizing a successful charity event. 33 +The future is uncertain but I see myself to be successful. 47 +The work environment is not friendly. 31 +To leave my previous job. 20 +I voice my opinion and respect the other person's opinion. 47 +I'll be described as a person full of energy. 35 +I like to spend time with my family and friends. 38 +I think we've covered most of it. 25 +Diligence, consistency, and discipline. 35 +I am always ready to learn and perform well. 35 +I'll continue to apply to other companies. 34 +I am hardworking and optimistic. 27 +I have researched a lot about your company. 35 +Yes, and I'm open to learning from such experiences. 42 +I couldn't perform well initially. 28 +I tend to be over-sensitive sometimes. 31 +I am strong and flexible. 20 +I try to stay calm and focus. 22 +Challenges motivate me. 20 +I am ready to start immediately. 26 +Who is the ideal client? 19 +Will you find the ways to approach a customer? 37 +Rachel, do you know which demography he lives in. 40 +Does he have the power to buy? 23 +Donna, make sure the customer is willing to buy. 39 +Sir can the client have questions to ask? 33 +Joe, where the customers are located? 31 +Should we meet the client? 21 +Anna, listen to all customers are different. 37 +Do you know customers may change? 27 +Team, people have different tastes and preferences. 44 +Choose your client as per product specifications. 42 +Do you think the product can satisfy their needs? 40 +What does the customer actually want? 31 +Is there a specific requirement? 27 +Where is the client located? 23 +Can the targeting be done demographics? 33 +Will the customer like our product. 29 +Is there a gender preference? 24 +Is the customer familiar with the industry? 36 +Effective prospecting is identifying good-fit customers. 49 +It can be done by asking sales qualification questions. 46 +Bella, start speaking of leads and prospects. 38 +Mike, it's important to note the differences. 37 +The sales team should be communicating with while prospecting. 53 +Please target who has expressed familiarity with your product or service. 62 +Try to develop more personalized outreach. 36 +Customers can be characterized by infinite information. 48 +Emma, will you schedule the next meeting. 34 +Please connect the person in charge of making a decision. 47 +Joe, first evaluate and qualify needs. 32 +You as a marketer must identify to provide value. 40 +Mike, try using the different methodologies of prospecting. 51 +You should avoid unproductive prospecting. 37 +Before closing the deal determine if the prospect is workable. 52 +Do qualify and begin prioritizing prospects. 38 +You have to develop a connection through personalization. 49 +You have to develop a connection through rapport building. 49 +You can develop a connection through trust development. 47 +Does the prospect fall within my territory? 36 +Prioritize customers based on the size of the opportunity. 49 +Prospect can be classified as a potential customer. 43 +Leads and prospects differ by definition. 35 +Nurture leads and prospects until they buy your product or service. 56 +Use social media to explore a relationship with a lead. 45 +Sales reps can provide value to prospects on social media. 48 +Hello sir, how are you? 18 +I hope you are doing well. 20 +May I know what you are looking for? 28 +Tell us about your interest. 23 +What is your budget? 16 +Does this product attract you? 25 +I'll show you the different varieties. 31 +We have a wide range of products. 26 +You can choose as per your requirement. 32 +It suits you well! 14 +When can I expect the call? 21 +Does this product excite you? 24 +When are you planning to buy? 23 +Represent your business in a positive light. 37 +You have to provide value and establish understanding. 46 +Use tactics to encourage a customer. 30 +Create messages directed at your target market. 40 +Attract your ideal clients by giving them something of value for free. 58 +Use direct response marketing practices. 35 +Joe, create compelling messages. 28 +Mike, can you show them you understand their pain. 41 +David, please offer complementary services. 38 +You can take advantage of synergy. 28 +Listen to what the customer is saying. 31 +Mike, please focus on building human relationships. 44 +Eric, always remembers to close the loop. 34 +The team doesn't forget to follow up. 29 +Daniel, try to target potential new customers. 39 +Mike, reach out by sending email newsletters that include discounts. 58 +Can we develop a detailed plan to target potential customers? 51 +Everyone should execute the plan in a diligent manner. 45 +Joe, please review your existing customer's persona. 44 +Everyone has to find prospective customers who are active on social media. 62 +Attract clients through your marketing techniques. 44 +Adopt a customer-focused approach to selling. 38 +Use words that evoke sensory feelings. 32 +Use the same perspective when you respond. 35 +Max reach out by sending email newsletters that include promotions. 57 +Try to give new clients a chance to sample your product. 45 +Please analyze prospects before making an initial approach. 51 +You can approach a potential client referred by someone. 47 +Encourage existing customers to promote. 35 +Try engaging a customer's subconscious mind. 37 +Building a healthy client list is an overwhelming task. 46 +Nurturing relationships helps you create a client base. 47 +A marketing plan is the key aspect of appealing to potential clients. 57 +There are several approaches. 25 +A marketer has to be armed with the necessary tools and knowledge. 54 +Word of mouth advertising is often the most effective. 45 +Tell me the specifications of the product. 35 +What is the warranty for the product? 30 +Do you have any substitutes? 23 +What is the life of product? 22 +Is the price negotiable? 20 +Will you charge for delivery? 24 +Can we pay in installments? 22 +Till when can we expect the delivery. 30 +Let me read your company's policy. 27 +Are the reviews good of the product? 29 +What is the discount you will offer? 29 +Tell us about the competitive analysis. 33 +Do you take cash or card? 19 +Brief me about the insurance of the product. 36 +Is your company registered? 23 +What about after-sales service? 26 +Meeting with a resounding rejection. 31 +Misconceptions about the product or service. 38 +Lack of budget. 12 +We want different features. 23 +I had a bad experience with a similar product. 37 +Mike, don't mislead to demonstrate the value. 37 +Is the reward enough to justify the risk? 33 +Is there a lack of trust? 19 +I've never heard of your company. 26 +I need to talk to my team. 19 +Check whether the objection is feasible to nurture them. 47 +Is there a lack of need? 18 +I don't see how this can help me. 24 +Find if there is a lack of urgency. 27 +It isn't important for me right now. 28 +Your services cost too much. 23 +I'm okay with the way things work right now. 34 +Do you think too much can go wrong? 27 +We have fear of change. 18 +Cost is a big driver against change. 29 +How do I know you really have the necessary experience? 45 +I'd use my friend's company for my next project. 37 +It's too much for me to take on right now. 31 +Call me again in six months. 22 +I don't like contracts. 18 +I'm already under contract with someone else. 37 +Objections based on price come across most frequently. 46 +Purchases come with some level of financial risk. 41 +People do business with those they like. 33 +Aim there to help you. 17 +You can ask anything about the product. 32 +I'll brief you about the specifications. 33 +It has a 24 months warranty. 22 +We are available 24 hours 365 days. 28 +You can count on us. 15 +We provide the best service. 23 +We are in business for a decade. 25 +You can trust us blindly. 20 +Yes, we accept card and cash as well. 29 +We have a service center all over the country. 37 +The product has 5-star rating. 24 +We will give you the best product. 27 +This has better performance. 24 +We are above all the competitors. 27 +When do you intend to buy it? 22 +We will make the arrangements. 25 +We don't charge for delivery. 23 +First insurance will be on us. 24 +Help your prospect secure budget. 28 +Help customers come to a different conclusion. 39 +You should first listen to the objection. 34 +First, acknowledge your customer's concern. 37 +Demonstrate you have been actively listening. 39 +Instead, circle back to the product's value. 36 +Explore the concerns underlying your customer's objection. 50 +It is imperative that you understand the exact issue. 44 +Note that the final step is to respond. 31 +Please offer your response in the form of a recommendation. 49 +Please offer your response in the form of an alternative. 47 +Please offer your response in the form of a solution. 43 +Address customer's concerns and close the transaction. 46 +Joe, objections should be viewed as opportunities. 43 +Do you have any concerns around? 26 +Are there any obstacles that would stop you from buying? 46 +You seem a little worried about the offer. 34 +Ask follow-up questions. 20 +Set a specific date and Megan began to follow-up. 39 +Anticipate sales objections. 25 +Repeat back what you hear. 21 +Practice active listening. 23 +Avoid interrupting them while they are speaking. 41 +Offer a solution to mitigate their fears. 34 +Have a set of neutral recommendations ready. 37 +Keep track of the objections you receive. 34 +Objections are generally around the price, product fit, competitors. 59 +A sincere acknowledgement can have a calming effect. 44 +Which triggers the need in his mind? 29 +Mike, fulfill the buyer's or consumer's problem is the goal. 48 +Check need or problem recognition. 29 +To understand the influences that are operating. 41 +Search when the consumer recognizes a problem or need. 45 +Could he be satisfied with a product or service in the market? 50 +Find if the consumer is aroused to seek more information. 47 +Yes, consumers try to find goods for satisfying such needs. 49 +Yes, consumers get information about goods from a personal sources. 57 +Yes, consumers get information about goods from a commercial sources. 59 +Yes, consumers get information about goods from a public sources. 55 +Yes, consumers can get information about goods from experimental sources. 63 +Carry out an evaluation of alternatives. 34 +When consumer proceeds to alternative evaluation. 43 +Do evaluate brands in the choice set. 30 +Evaluating different alternatives and their attractiveness. 53 +To evaluate alternatives on basis of attributes of a product. 51 +To evaluate alternatives on basis of the degree of importance. 52 +To evaluate alternatives on basis of belief in the brand. 47 +To evaluate alternatives on basis of satisfaction. 43 +They decide to buy the best brand. 27 +Note the purchase of the subconscious drive. 37 +Enable you to align your sales strategy accordingly. 44 +Find out what they feel is the best solution. 36 +Search internal and external business environments. 45 +Can customers rely on print, visual, online media? 42 +Involvement is a factor that influences the evaluation process. 54 +Customers will be bound to change their preferences. 44 +Purchase is generally of value in monetary terms. 41 +Consumers will take Megan to actually assess alternatives. 50 +The decision process is short-circuited. 34 +The buyer has a need to satisfy or a problem that needs solving. 51 +What's out there in terms of choice? 28 +Mike, review the matter for deciding. 31 +Olivia, reviews can help insulate your reputation. 43 +Bella, ask people around us for recommendations remains commonplace. 59 +Customers are no longer relying on single sources. 42 +People make instant decisions with their subconscious. 47 +The crowd leads the way. 19 +Preferences evolve as society evolves. 33 +People examined products while standing. 35 +It's your responsibility to be aware. 30 +Email and search advertising are more effective. 41 +Social media probably impacts purchases. 35 +We make emotional decisions and rational justifications. 49 +Emotions rule in all areas. 22 +The customer's buying process is essential for marketing and sales. 56 +The decision is influenced by others' attitudes and situational factors. 61 +I don't like this product. 20 +Can the product be exchanged? 24 +It was a bad experience! 19 +Wow! such an amazing service. 23 +When can you schedule the exchange delivery? 37 +I want a service next week. 21 +Where is the service station located? 31 +Do you provide pick up and drop facility? 33 +I will give 5-star rating. 20 +I'm not at all satisfied. 19 +I told you this does not suit me. 25 +Do you have other options available? 30 +Customers regret their decisions made. 33 +Occurs due to a large number of alternatives available. 46 +Post-purchase dissonance can be avoided. 34 +What are your return policy? 23 +Can I get the refund back after a return? 32 +Connect me to the service representative. 35 +When is the next service scheduled? 29 +Are all the services paid? 21 +Customers assess whether they are happy with the purchase. 49 +It's human nature to rave. 20 +Customers feel anxious after they've bought something. 46 +Might wish they'd bought this instead. 31 +Customers can get a full refund if they aren't happy. 42 +The idea of returning a product can seem stressful. 42 +Is the product still under warranty? 30 +Can the insurance be extended? 25 +Can I refer this to my friend? 23 +Do you give discount of reference? 28 +Explain a returns policy well. 25 +Don't let your customers wind up frustrated. 36 +Show your customers you value their custom. 36 +Tempt them with exclusive offers. 28 +Tempt them with bonus points on purchases. 35 +Post-purchase is the perfect Megan to get feedback. 42 +Make sure you Megan your feedback requests appropriately. 49 +We believe in customer satisfaction. 31 +Email a discount voucher they can forward to a friend. 44 +Mike encourages people to engage with you on relevant channels. 53 +Rose, send them a handy replenishment reminder. 40 +Hope that we've made the right decision. 32 +Mia shows your customer that you value their custom. 43 +Rose being transparent will build trust. 34 +We will reduce the risk of returns from frustrated customers. 51 +We are always here to help you. 24 +Count on us every time. 18 +Is this the right time to talk to you? 29 +I think I have the right product for you. 32 +Are you interested in buying a fortune? 32 +This is the best I can offer. 22 +That suits you well. 16 +It's your opening line, your verbal business card. 41 +Share a very clear, concise statement of value. 39 +Be action-oriented and outcome-focused. 33 +Provide clear reference examples and list recognizable achievements. 60 +Share industry validation and awards. 32 +Keep your sales pitch short, clean, and simple! 39 +Tell a story to create a connection. 29 +Find the perfect hook. 18 +Hook to capture your buyer's attention. 32 +Convince the customer to read on. 27 +Solve the problem. 15 +Focus on how your product can help fix these problems. 44 +Back it up with facts. 17 +So what would that be? 17 +Ask for the sale. 13 +Short and sweet does the trick. 25 +What's the problem you're trying to solve? 33 +Reference past conversations. 26 +I think I can help you prioritize deals. 32 +Can we talk about it next week sometime? 32 +Have you ever noticed it? 20 +Anchor your pitch in data. 21 +Which is more compelling? 21 +Tell a story. 10 +Keep it conversational, not formal. 30 +Ensure your pitch is effective. 26 +The buyer's needs come first. 23 +It'll put off your audience. 22 +It's John from acme company.how are you? 31 +I noticed you are in need of a car. 26 +Have you got a few minutes to chat? 27 +I have called to follow up. 21 +Do you intend to invest. 19 +Are you in need of? 14 +Include social proof and actual numbers. 34 +Encourage a conversation by asking a question. 39 +Good morning! how are you? 20 +I just noticed your needs. 21 +When can we schedule a meeting? 25 +Can I show you the brochure? 22 +Let's discuss what we can offer. 25 +I hope you need this badly. 21 +This is the right choice man. 23 +I guarantee the return on investment. 31 +Subscribe to premium and enjoy for life. 33 +You might also love it. 18 +Show related items. 16 +There are more added features to the golden pack. 40 +Mike, offer products that aren't similar in color. 41 +You can also try this. 17 +This item goes with what you have. 27 +This product compliments your watch. 31 +It will amplify your looks. 22 +This can increase your popularity. 29 +It shows your inner beauty. 22 +Frequently bought together. 24 +This will complete your set. 23 +This is a must-have a product to fulfill your need. 40 +That's in line with their casual. 26 +This goes hand in hand with what you have. 33 +It looks appealing to your shirt. 27 +You have to have this. 17 +It resembles your inner beauty. 26 +Please try this it's the best accessory for your shirt. 44 +Encourage customers to purchase add-ons. 34 +It will give an add on advantage. 26 +Customize their product using complimentary items or features. 54 +You can take this additional feature. 31 +I bet this will be the best fit. 24 +The platinum pack has it all. 23 +Rose strike when the iron is hot. 26 +We can provide you discounts. 24 +If you buy more there's a lot to offer. 29 +Bulk buying will give you heavy discounts. 35 +By one get one free. 15 +The more the volume more the discount. 31 +Sir, there is the end of season sales. 30 +You can get a flat 50 percent discount. 31 +Buy for the whole family. 20 +Eat more save more. 15 +The more you spend more is your saving. 31 +You should only jump in and sell. 26 +To maximize value in ways your customer gets. 37 +The more the investment is the return. 31 +Special bonus for you. 18 +Switch to premium for more facilities. 32 +The price includes premium services. 31 +It's an all in one package. 20 +I can customize if you intend to spend more. 35 +Listen free or subscribe to premium for download. 41 +Cross-selling allows you to bundle. 29 +Lush makes and sells high-quality products. 36 +Has this happened before? 21 +Have the complaints been recorded? 29 +How often does the same complaint arise? 33 +Always listen to your customers. 27 +It is important to understand why they are complaining. 46 +Maintain quality from all support personnel. 38 +Apologize for the mistake. 22 +Acknowledge their complaint. 25 +Customers are more willing to forgive. 32 +This won't happen again. 19 +We ensure a speedy recovery for your loss. 34 +We take all the responsibility. 26 +Keep calm all your problems will be sorted. 35 +Give us some Megan to configure. 26 +Your satisfaction is of utmost importance to us. 40 +Will try to resolve it as soon as possible. 34 +Please consider our request. 24 +Can we please discuss the matter? 27 +It's our fault and we accept it. 24 +Please give us a second chance. 25 +We ensure the full recovery of your assets. 35 +Things cannot be undone. 20 +We understand your feelings. 24 +Our sympathy is with you always. 26 +Find a solution. 13 +Avoid passing your customer onto a series of people. 43 +This issue won't be repeated. 23 +We will make the necessary changes. 29 +We are happy to resolve your issue. 28 +We are very sorry for your bad experience. 34 +You will be informed once the problem is solved. 39 +Is there anything we can help you with? 31 +Please let us know. 15 +Are you still facing the issue? 25 +Please keep us informed in the future. 31 +We are trying our best to fulfill your needs. 36 +Please review so we can help better in the future. 40 +We appreciate your Megan and value. 29 +Your issue has been recorded and is under speculation. 45 +As per the policy, we will resolve. 28 +Customer complaints are important. 30 +We have a better solution for you. 27 +We understand your concern. 23 +Whatever is the issue we will resolve. 31 +Your expectations will be met. 25 +Just keep the faith. 16 +We are trying hard to resolve the issue. 32 +What would you like to buy today? 26 +How are you doing sir? 17 +What are your thoughts about new technologies? 39 +Are you interested in buying new gadgets? 34 +Does social network influence you? 29 +Do you think ai is the new future? 26 +Are you planning to change your vehicle? 33 +What are your thoughts about changing habits? 38 +Wow!! you have the same taste and preferences. 36 +Do you intend to switch your cell phone? 32 +Customers are built on the frame of reliable, friendly engagement. 56 +Try building a positive relationship with your brand. 45 +Make an emotional bond with a product, service. 39 +They're popular because they make some pretty cool furniture. 51 +Mike customers want to feel valued and prioritized. 43 +Engage with them is a great way to make them feel like VIPs. 47 +Do social interactions. 20 +Interact directly with your audience via social media. 46 +Yes, customers have high expectations for speedy responses. 51 +Joe keeps waiting in line can hurt your engagement. 42 +Initiate that relationship from scratch. 35 +The team note that the customer is the king. 35 +Fulfill customer's needs and wants. 29 +Olivia always is polite while talking. 32 +Rose listen, plan, and then react. 28 +Smith provides them with the best option available. 43 +Megan never let your customer down. 29 +Jenny controls their expectations. 30 +Talk to them about their core values. 30 +Try emotional appeal. 18 +Hit right at the sensitive nerve. 27 +Engage in general discussions. 26 +Value their suggestions. 21 +Take care of their needs during the meeting. 36 +Engage with their family. 21 +Include family in the conversations. 31 +Talk with their children. 21 +Create a personalized user experience. 33 +Human nature to respond better to an experience. 40 +Personalizing a customer's experience is your goal. 43 +Always remember their names. 24 +Wish them on their birthdays and festivals. 36 +Send exciting offers via email. 26 +Ask about their health and family. 28 +Help them as you can. 16 +Give them better guidance than others. 32 +Treat like a family. 16 +Rachel, every customer is different. 31 +Categorize your customer depending on demographics. 45 +Categorize your customer depending on geography. 42 +Everyone has a different way of seeing things. 38 +People have a various approach. 26 +People like customized products as per their needs. 43 +Mike updating is the necessity of the hour. 35 +You know lifestyle is how a person lives his life. 40 +You should think global act local. 28 +People can be labeled as competitors loyal. 36 +Groups of customers shares traits such as similar interests. 51 +Groups of customers shares traits such as similar needs. 47 +Groups of customers shares traits such as similar locations. 51 +It is easier for marketers to personalize their marketing campaigns. 58 +The team you should target specific audiences. 39 +People can be labeled as brand-neutral. 32 +People can be labeled as brand loyal. 30 +You have to better allocate their attention. 37 +You should better allocate their resources. 37 +Do you know niche marketing is a concentrated form of marketing? 53 +Note that niche marketing involves targeting very specific. 51 +Increase the results of your marketing efforts. 40 +As a marketer, we should draft personalized marketing campaigns. 55 +Yes, gender is one of the bases of market segmentation. 45 +Try making gender-specific goods. 28 +Age is one of the factors for segmentation. 35 +We have customized services depending upon age. 40 +Age is just a number and we take it seriously. 36 +Income decides the purchasing power of a person. 40 +We make products that suit your pocket. 32 +Get pocket-friendly deals. 22 +Invest as per your income. 21 +Does the place impact a person's interests? 35 +We deliver the package to your doorstep. 33 +A doorstep pick up and drop facility is available. 41 +Mark that occupation influences purchase decisions. 45 +Do target audience engaged in a specific occupation. 44 +Product usage also acts as a segmenting basis. 38 +Increase awareness of the product to the targeted customers. 51 +Psychographic factors affect the decision making of an individual. 57 +People are belonging to different regions. 36 +Technological advancements are taking place. 39 +Process of dividing a market of potential customers into groups. 54 +Market segmentation reduces ineffective marketing campaign. 53 +Segmentation is to prioritize their target audiences. 46 +Segmentation is dividing a group into subgroups. 41 +Personality is a combination of characteristics. 42 +Is it capable of satisfying our needs? 31 +What is the value it will bring to me? 29 +Why should I buy this? 17 +Will it enhance the user experience? 30 +I'm sure this product will justify your wants. 37 +It is very much capable of delivering 100 percent satisfaction. 53 +How long the best value we can expect? 30 +Till when the last value updating we can expect? 39 +What is the competitive advantage over their brands? 44 +Will value chains help increase a business's efficiency? 47 +Mike, you have to create a competitive advantage. 41 +Joe, make our value chain to retain a competitive advantage. 50 +Our supply chain focuses on the procurement process of goods. 51 +We aim to create profitable value for a product. 39 +We ensure that inputs are converted to outputs. 39 +The profit margin can be less important for us. 38 +Illustrate and understand the value chain concept. 43 +The company selects its products carefully. 37 +Is the company capable of providing to a larger group? 44 +Are the delivery standards as per the industry. 39 +How does your organization create value? 34 +Greater value than the original cost of creating. 41 +The more value an organization creates, the more profitable it is. 55 +The goal is to create value for its customers. 37 +Do procurement purchasing. 23 +We have our human resource management. 32 +Rose, can you make technological development. 39 +Direct activities create value by themselves. 39 +Indirect activities allow direct activities to run smoothly. 52 +Human resource management adds value to inbound logistics. 50 +Sam, are you sure this is value for money. 33 +Joe, can we calculate the return on investment. 39 +Bella, will you guide me to the values I can expect. 41 +Look for opportunities to increase value. 35 +Porter's value chain is a useful strategic management tool. 49 +What's your business's competitive edge? 33 +Our company performs to create a product. 34 +We run on a cost leadership strategy that reduces product costs. 53 +We provide a unique or highly specialized products or services. 53 +It's best to pick a single competitive advantage. 40 +Mike can you analyze the value and cost of the activities. 47 +Jenny, please overview where the business is excelling. 47 +Bella begins with minor improvements. 32 +Did you recently acquire or merge with another business? 47 +Try eliminating inefficient business activities. 43 +Inbound logistics include functions like receiving, warehousing. 57 +Operations include procedures for converting raw materials into a finished product. 72 +Outbound logistics include activities to distribute a final product. 59 +Marketing and sales include strategies to enhance visibility and target. 62 +Service includes programs to maintain products and enhance the consumer experience. 72 +How large an audience can we target in the new area? 41 +Sam, can you please create a new geographical area. 42 +What is the new emerging trend? 25 +Follow the ongoing trends. 22 +Will the market accept us. 21 +Do our values suffice the new market? 30 +Can we be a sustainable entity there? 30 +What can we expect more? 19 +Joe, markets change over sometime. 29 +Yes, technological advancements influence market change. 50 +Do emerging concepts have a greater impact. 36 +The World in emerging for a sustainable environment. 44 +Focus on keeping the environment cleaner. 35 +Environmental friendly is the new normal we make. 41 +Competition policies also created an impetus for productivity growth. 60 +Our sectors with a larger share of big companies grew faster. 50 +Our investors seek out emerging markets for the prospect of high returns. 61 +Our company should think of becoming a global entity. 44 +We provide products all over the globe. 32 +We deliver to every corner of the world. 32 +We have critically acclaimed products from every corner. 48 +Joe, what are the parameters to go global. 34 +Does rapid social change leads to change in market? 42 +Yes, multinational companies go globally. 36 +Is there a growth potential? 23 +This growth requires a lot of investment capital. 41 +Our country focuses on an export-driven strategy. 41 +Our company has a brisk pace of economic growth. 39 +We have huge growth potential. 25 +Mike, go with the market trends. 26 +Does industrialization favors rapid economic growth? 46 +Olivia, can we think of entering a global market next year. 48 +Rose, think global act local. 24 +Bravo, pinpoint their core values. 29 +Bella, check for the influential entities. 36 +Do emerging market leaders are poised to ride the growth. 47 +Daniel, the emerging market brings a lot of opportunities. 49 +We should excel in new emerging markets. 33 +When can we take the shot? 20 +Developing economies to identify the outperformers we do. 49 +The rapid rise in productivity correlated with industrialization. 57 +An emerging market economy is the economy of a developing nation. 54 +Emerging market economies can offer greater returns. 45 +Emerging markets are more susceptible to volatile currency swings. 57 +A mature economy is the economy of a nation with a stable population. 56 +Governments of emerging markets tend to implement policies. 51 +Rising to the top in the outperforming emerging economies. 49 +Contested leadership is a vital sign of a competitive environment. 56 +Our company leaders play an instrumental role. 39 +Try being a role model for the organization's beliefs. 44 +Hello, team let's do this together. 28 +Our company's culture will be reflected in its dress code. 47 +Our corporate culture is influenced by national cultures. 49 +We have an employee-friendly corporate culture. 40 +We create positive cross-culture experiences. 39 +Mike, interact with management. 27 +Your ineffective culture can bring down the organization. 49 +Joe, treat your employees like your family. 36 +Bella, be helpful to your subordinates. 33 +John, don't talk rudely. 19 +Megan, have a go-getter attitude. 27 +Our culture has an improved brand identity. 36 +It can be shaped intentionally or grown organically. 44 +Try to reach the core of a company's ideology and practice. 47 +Our company implements its values. 29 +Our corporate culture refers to the shared values. 42 +Our corporate culture refers to the shared attitudes. 45 +Our corporate culture refers to the shared standards. 45 +Our corporate culture refers to the shared beliefs. 43 +We have a corporate culture that helps reach our goals. 45 +Our corporate culture by definition affects a firm's operations. 54 +Emma, culture can be particularly important. 38 +The owner takes a great deal of responsibility themselves. 49 +A very small company can be detrimental. 33 +In our healthy culture, employees view themselves as part of a team. 56 +The team is helping the overall company succeed. 40 +The company's prevailing corporate culture begins at the top. 51 +Entrepreneurs need to explain and share their vision. 45 +Olivia, let your vision for the company become there. 44 +Rose, treat all employees equally. 29 +Bravo, business owners can not bestow extra rewards. 44 +Yes, many small business owners are nepotism. 38 +Our hiring decisions reflect the desired corporate culture. 51 +Mike, a good attitude is an essential component. 40 +Having two-way communication is essential. 36 +Adopt a participatory and engaging culture. 37 +Olivia, a lack of honest communication is bad. 38 +Our company's values are the core of its culture. 39 +Our vision articulates a company's purpose. 36 +Our values offer a set of guidelines. 30 +Can a company build a coherent culture without people? 45 +Please possess the willingness and ability to embrace those values. 57 +Our strong culture is a common denominator. 36 +Corporate culture refers to the beliefs and behaviors. 46 +Corporate culture is implied. 25 +Good corporate culture improves the quality of employees. 49 +Mergers and acquisitions are fraught with cultural issues. 50 +Mike, always be polite while talking. 31 +Joe, be cut to the point. 19 +Bravo, don't hesitate while talking. 30 +Olivia, do not make fake promises. 28 +Rachel always delivers the same as you promised. 40 +Rose, track your process. 21 +Daniel, match the person's expectation. 33 +Harry, maintain a healthy relationship. 34 +Max, handle promotions and public relations for a company. 49 +We follow the thread of organizational conversation. 45 +We use words in corporate relations that are intelligible. 49 +"The outside world should instantly affirm, ""yes""." 40 +Our company should never hear bad from a customer or employee. 51 +Our values humanize the company. 27 +What we value. 11 +Our colleagues communicate with each other. 37 +Our management communicates with employees. 38 +Note if customers are not addressed appropriately, they will not buy anything. 66 +Megan, the right communication turns buyers into loyal customers. 56 +Olivia, please contact investors, shareholders. 42 +The team greets everyone with a smile on a face. 38 +Bella, don't indulge in any type of conflict. 36 +Rose, always have a helpful attitude. 31 +Donna, never say never. 19 +Emma, be expressive about your thoughts. 34 +Olivia, convey the right message to the stakeholders. 45 +Emma, be patient for a reply. 23 +Bravo, seek proper information. 27 +Have you finished the task which I gave? 32 +Till when is the deadline? 21 +I'm expecting the best content out of your efforts. 41 +Your advice is valuable to us. 24 +Hello sam, is this the right time to talk? 33 +Is there any vacancy in your organization? 35 +Can we work with your organization? 29 +We will be obliged to be partnered with your company. 43 +Please give us some Megan to reconsider. 33 +What are your thoughts about the merger joe? 36 +Eric, are you thinking of a strategic alliance. 39 +Mia, can you please provide the last year's financials. 45 +Communication can be as efficient as possible,. 40 +A standard form of expression distinguishes the company,. 49 +Investors feel uncomfortable with a casual approach. 45 +We make sure its left-hand knows what its right hand is doing. 49 +Communications should be deemed priceless to a company. 47 +Deepen employee's knowledge of the company's big-picture strategy. 55 +No longer is branding for customers only. 34 +A brand gives people a fixed, memorable understanding. 46 +Bravo, work effortlessly. 22 +We should talk to resolve the problems. 32 +Our corporate is run by people. 25 +Our employee's feelings and emotions need to care. 41 +Listen people are very sensitive about their culture. 45 +We are a society of diversity. 24 +Talk as per the requirement. 23 +Handel the situation in a polite manner. 33 +John, can you please elaborate. 26 +Jack, do not talk about rubbish. 26 +Bella, be precise about what you want to convey. 39 +Jack, will be more specific, please. 30 +May I beg your pardon, sir? 21 +What is the task for today? 21 +What will be my day to day activities? 30 +Where shall keep the documents? 26 +Joe, when can we take the meeting. 27 +Make sure the rights of each community need to be well protected. 53 +Mind it man is a social animal and wants to share his feeling. 49 +Enjoy with his family and party with his friends. 40 +Issues of social responsibility include asking well being. 50 +Our salary pay should be up to the market standard. 41 +Our salary pay should be up to the city standard. 39 +Social development societies are funded by us. 39 +We preserve the environment and protect employee rights. 48 +Our ethical conflicts develop from conflicts between differing interests. 64 +We produce a reasonable profit for the company's shareholders. 52 +James, please be honest with me. 26 +Emma, never lie to your reporting manager. 35 +Joe, will you please do me a favor? 27 +Mike, work with full dedication. 27 +Your conversations should have a positive impact. 42 +Rose, give respect to your subordinates. 34 +Ensure safety in the workplace. 26 +Try to engage in fair practices in the light of social ethics. 50 +Bella, aim to become a sensible corporate citizen. 42 +Anna, aim to strive for harmony with society. 37 +To engage in honest and transparent communications. 44 +We contribute to the preservation of the environment. 45 +We respect fundamental human rights and individuality. 47 +Mike, take care of everyone's feelings. 32 +Bella, keep the working environment clean. 36 +Rose, make the working environment peaceful. 38 +Anna, don't be late for the office. 27 +Maintain the decorum of the premises. 31 +Ethics, also known as moral philosophy. 33 +The philosophy that addresses questions about morality. 48 +Ethical questions range from practical, narrowly defined issues. 56 +Megan, no ethical behavior can be promoted without trust. 48 +We practice arguably controversial subjects. 39 +Bravo, never makes false promises to the customer. 42 +Our company delivers the exact specifications stated. 46 +We don't manipulate the prices. 25 +We treat every customer equally. 27 +John never indulges in malpractice. 30 +We do not sell contaminated products. 31 +Our company prohibits adulteration. 31 +Mike, please deliver always on time. 30 +Jake, be specific about the risk associated with the product. 51 +Joe, you should never misguide your customer. 38 +Yes, ethics include corporate governance. 36 +Eric, the law usually sets the tone for business ethics. 46 +David, provide a basic guideline that businesses can follow. 51 +Ensure a basic level of trust exists between consumers and companies. 58 +Ensure the public receives fair treatment. 36 +Yes, business ethics goes beyond just a moral code of right and wrong. 57 +Are these attempts to reconcile what companies must do legally. 53 +Emma, report any unethical incidences observed or experienced. 54 +Harry, doesn't have fear of retaliation for reporting misconduct. 55 +Rose, report unethical behavior in the workplace. 42 +You identify ethical courses of action in difficult grey-area situations. 62 +Why should managers be ethical? 26 +It is to understand the gap between business ethics. 43 +Yes, ethics involves learning what is right or wrong. 44 +Should jack lie to his boss? 22 +Should bob steal from jack? 22 +Our business requires to do trade-offs. 32 +Our executives need to demonstrate courage and personal integrity. 57 +Mia, pay attention to ethics in the workplace. 38 +Megan, manage ethics programs in the workplace. 40 +Emma, develop codes of ethics. 25 +Do the code of ethics specifies the ethical rules of operation? 52 +Mike, developed codes of conduct. 28 +Joe, can you please redefine the standard of the workflow. 48 +Every employee has to abide by the rules. 33 +Megan, please follow the code of conduct. 34 +The payment shall be processed per our guidelines. 42 +Olivia, will you please follow the companies standard. 46 +Ensure that policies are legal. 26 +Our business is focusing more on the ethics part. 40 +Our principles of the organization should be maintained. 48 +We have a standard set for the organization to regulate their behavior. 59 +Olivia, balance stakeholders and their desire to make profits. 53 +Business ethics refers to implementing appropriate business policies. 61 +Ethics depends on the influence of the place, Megan, and the situation. 59 +John, motivate your team members. 28 +Olivia, recognize their efforts. 28 +Mike, give them rewards as per the goals. 33 +Daniel remembers their names. 25 +Bella, solve their internal conflicts. 33 +Rose, give them daily tasks. 23 +Daniel, review their work often. 27 +Jack, praise them for their hard work. 31 +Hello, the team hope you are all good today. 35 +Please give your suggestions on the project. 37 +We have to make things possible. 26 +Joe, and James you have to take responsibility. 39 +Daniel, I want you to work like adam. 29 +Max, you are doing a great job man! 27 +Bravo, your hard work is paying off. 29 +Mike, you will get the reward this time. 32 +Who wants to win the competition this time. 35 +I will win the employee of the month. 29 +It's the time celebration team. 25 +Please ensure everyone attends the meeting. 37 +I want you all to collaborate with me. 30 +Everyone has contributed equally. 29 +Let's go to the party team. 20 +Emma, be consistent with what you do. 30 +Max, focuses on clarity, accuracy, and thoroughness in communication. 60 +Set the goal of working as a team. 26 +We should publicly reward and recognize hard work. 42 +Publicly reward and recognize hard work. 34 +Yes, a small trophy or even just a vocal recognition will do. 49 +Do this in front of the group. 23 +Max, be consistent in your rewards. 29 +Megan, be the example. 18 +Olivia, don't lose your temper easily. 31 +Olivia, strive to be your ideal of the perfect worker. 44 +Mia, never go with one-size-fits-all. 29 +Your team is comprised of individuals with unique preferences. 53 +Mia never uses the same approach to motivate. 37 +Rose, focus on individuals and customize your approach. 47 +The team remains as transparent as possible. 37 +Transparency shows your integrity as a leader. 39 +Don't jeopardize your relationships. 31 +Encourage all opinions and ideas. 28 +Everyone should actively participate in discussions. 46 +Mia, make improvements to the organization. 37 +Mia, never chastise a team member. 28 +Mike, don't discourage people from sharing their new thoughts. 52 +Boss help people enjoy work. 23 +Rose, have casual conversations with your workers. 43 +You should listen and ask questions. 30 +How do you feel about that? 21 +John, what are your thoughts about new trends? 38 +Daniel, do you think we can launch a new product. 39 +Will our product satisfy the new trend needs. 37 +Joe, please collect the competitor's information. 42 +Daniel, you have got some innovative ideas. 36 +I need all the technological advancements. 36 +Till when can we think of launching it? 31 +David, are all the resources available for production. 46 +We have to set the goals. 19 +David, make all the necessary arrangements. 37 +Olivia, carry out the buyer's personal. 32 +Follow as per the industry standards. 31 +It will be a collective effect. 25 +We need a holistic approach. 23 +Sam, make all the necessary arrangements for the research team. 53 +Many aspiring entrepreneurs get stuck on ideation. 43 +Our product should be relatively advantageous. 40 +Our concepts are expanded ideas. 27 +Bravo, validate your product ideas. 30 +Talk about your idea with family and friends. 37 +Harry, ask for feedback on forums. 28 +Harry, get feedback from a substantial and unbiased audience. 52 +Does niche has the potential to take off? 33 +Megan, ask your potential customers what they like or dislike. 52 +Bravo, take Megan to plan before you begin. 35 +Rose, the sketch should be as detailed as possible. 42 +Emma, do the prototyping of the product. 33 +Donna, start prototyping usually involves experimenting. 50 +John, start gathering the materials and securing the partners. 53 +Donna, find multiple suppliers for the different materials. 51 +We safeguard our business for the long-term. 36 +We do research, planning, prototyping, and sourcing. 45 +Mia, determine a retail price and gross margin. 39 +We cater to the new tastes of consumers. 32 +He must feel that such a new thing in the product. 39 +Mia, make a product new to the world. 29 +Mike, make additions to the existing product lines. 43 +Megan, make improvements in revision to an existing product. 51 +Bravo, provide improved performance or greater perceived value. 55 +We give choices to consumers for selection. 36 +Megan, find out the possibility of producing a product. 46 +Olivia, create new avenues for growth. 32 +Bella, take advantage of market fads. 31 +The degree of change for customers is sufficient to require the design. 59 +The market is always evolving itself. 31 +Marketing is about being able to meet consumer needs profitably. 54 +Don't wait for the stroke of genius to reveal the perfect product. 53 +New can be creatively fulfilling. 28 +Sir are we in a need of a new employee? 29 +Can you please check the finance department? 37 +Do we have a budget for new employees? 30 +Donna, please give me the list of employees. 36 +Mia, will you help with the new requirement thing. 41 +Harry, please have a word with every department. 40 +I need all the reports on my table. 27 +When can I expect the results? 24 +Does the team on that project work well? 32 +I think we require some new talent. 28 +On what grounds are you thinking like this. 35 +Sir, we need to update the skills of our employees. 41 +Ma'am, do you think the older employees are skillful? 43 +Max, do you want any help? 20 +Olivia, when can we discuss the budget? 32 +Is the operations team full? 23 +Yes ma'am we need new talent. 22 +We specifically require some technically skilled people. 49 +Daniel requires three new members. 29 +Harry, also has some requirements in his team. 38 +David wants a new accountant. 24 +Let's plan the proceedings then. 26 +Till when we should hire new talent? 29 +Please hire only if you are in desperate need. 37 +We can also train the older employees. 31 +Yes, I will take care of that. 23 +Fine then let's give chance to the young. 32 +Make things work as fast as possible. 30 +Donna, please note all the points. 28 +Max, I want you to lead this project. 29 +Harry, will be assisting you with this. 32 +You can always ask me for help. 24 +I can help you with prospecting. 26 +Let's do this people. 16 +Let me talk to every department. 26 +Mia, will you guide through this? 27 +I want everyone to be on the toes. 26 +We need some smart minds. 20 +Forget about lazy people. 21 +We need someone enthusiastic. 25 +Let me have a word with the management. 31 +I'll keep you informed on this. 24 +Make sure you don't make any mistakes. 30 +We will start hiring soon. 21 +Before let's check all the requirements. 33 +The right candidate is hard to get. 28 +We will make things right this time. 29 +We don't any escalation this time. 27 +Donna, I know you can do this. 23 +I have full faith in you. 19 +Rachel, you will do it for operations employees. 40 +Mia, you take care of the sales department. 35 +Emma, you can do for people. 22 +Megan, you can guide everyone on how to do this. 38 +No excuses will be entertained. 26 +Each and everyone should note that. 29 +This time I'm very much curious. 25 +Mike, you have to supervise this takes. 32 +You should include every criterion. 30 +Ma'am what will be the age criteria. 28 +You can ask all the departmental heads about that. 41 +Do we require any specific skills? 28 +Yes, we do so ask the technical head of each team. 39 +Every point should be understood by a layman. 37 +Don't forget to include our mission statement. 38 +Start with a greeting statement. 27 +Mention our company's history as well in the job description. 50 +Sir, will it be helpful to mention specifications? 42 +No, we will include that in other documents. 36 +On what parameters we will judge? 27 +We have thought about it max, please tell everyone. 42 +Yes, ma'am so the team I'll guide on this. 31 +We will be taking three rounds. 25 +First will be an aptitude test. 25 +Followed by a group discussion. 26 +Harry, you have to take care of the final interviews. 43 +Bella, will you take the hr round? 27 +Sure harry, just give me the final job description. 42 +Yes, I'll do that before proceeding. 29 +So team please prepare a good format of the job description. 49 +Include the educational qualifications we are looking for. 50 +Sure ma'am we will take care of that. 28 +Megan, this time don't make a mistake about the age. 41 +We want all the youngsters to apply. 29 +Yes sure as we need smart minds. 25 +Bravo, can you share the last job description you prepared? 49 +Yes, will in a while. 16 +David, please give me an idea of the criteria included. 45 +Daniel, be prepared with the finance profile's job description. 53 +Sure sir we will follow the same pattern. 33 +Include technical skills required. 30 +Eric, print the soft skills as well. 29 +Jack, I want you to print all the job description.s. 41 +Sure sir I'll make a note of that. 25 +David, right after the next page frame a job specification. 49 +Daniel, ask althea departments for their requirement. 46 +Harry, make a format as soon as possible. 33 +Max, do we have the last year's jess format. 34 +No sir we don't have it. 17 +Not an issue we will frame a new one. 28 +Eric, what are the necessary points to be included? 42 +Include althea rules to followed by an employee. 40 +We have to include the office timings. 31 +Also, mention the dress code. 24 +Mike, make sure we mention the office structure. 40 +Jack, please confirm the new telephone numbers. 40 +Include all the phone numbers and the office address. 44 +Rachel, can you make the left format. 30 +Right away ma'am I'll give you in two hours. 33 +That's so kind of mate. 17 +Donna, keep a check on the format,. 28 +Yes sir I'll ensure it to be the right one. 32 +You have to abide by the rules of the company. 36 +No coming late to the office. 23 +Politely treat your co-employees. 28 +Be formerly dressed in the office. 28 +You would have to travel to the field. 30 +You are required to have a laptop. 27 +You are required to carry a smartphone always. 38 +She will be reporting to the line manager. 34 +You have to follow the regulations. 29 +Sick leaves will be given only after a genuine document. 46 +There will be a loss of pay for more leaves. 34 +You are authorized to take fifteen paid leaves. 39 +Your medical insurance will be taken care of by us. 41 +Max, have you followed up on yesterday's task? 37 +Yes, ma'am finance department wants a techie guy. 40 +Mention the day to day activities for the profile. 41 +Include all the conditions to join the organization. 44 +Bella, check on the upcoming profiles. 32 +Ma'am do we need to mention working hours. 33 +Yes for sure darling mention the working hours. 39 +Also, include extra pay will be provided for extra work. 46 +Don't forget to mention the annual appraisal. 37 +Mia, mention the territorial area to be controlled. 43 +You have to target all the counters in the area. 38 +Jack, I hope you'll make it right. 26 +Yes sir you can count on me. 21 +Team the specifications should be cut to the point. 42 +The candidate should not confuse about it. 35 +Sure ma'am we are here to take care of that. 33 +From when can we start posting the ads? 31 +How many profiles we have to post? 27 +May I know the exact number of requirements? 36 +Donna, please check with all the ad platforms. 38 +Do we have the subscriptions available? 33 +Which platforms we should target to show ads? 37 +Rachel, give me the timeline for posting the ads. 40 +Max, you have to take care of the results. 33 +Let's roll out the ads as soon as possible. 33 +Let's hope for a better response. 26 +Do you think social media will help? 29 +I think yes, ma'am we should with it. 28 +So harry, it's your responsibility. 29 +Joe, is the content ready for social media posting? 42 +How much are we expecting from social sites? 36 +We are open to hiring. 17 +Apply for your dream job. 20 +Get your career started. 20 +Let's work with the best in the industry. 32 +Do you want to work with us? 21 +Early applying leads to early joining. 32 +We have to roll out the forms now. 26 +Emma, you can buy the subscriptions needed. 36 +Start posting on daily basis. 24 +Bella, lookout for a cheap subscription. 34 +Rose, you have to take care of monster.com. 34 +Tell me if you need anything. 23 +Let's start hunting the candidates. 29 +We have to find the right fit guys. 27 +Megan, I want you to handle the incoming response. 41 +We shall close the ads by next month. 29 +Rose, I'm expecting the right people this time. 38 +The team doesn't let me down. 22 +Best place to shape your career. 26 +Give them all the resources needed. 29 +Bravo, will look after the follow-ups. 31 +David, can you speed up the postings. 30 +I think social media is very influential. 34 +Next time we will buy Naukri first. 28 +Guys don't forget to post on LinkedIn. 30 +I want everyone to share this post. 28 +Connect with all your prospective candidates. 39 +Sam, we need your sources. 21 +Lucy, you need to buck up this time. 28 +I'm counting on you Rachel this time. 29 +Hiring starts next month. 21 +Enroll for your dream job. 21 +If you are passionate then we are ready to hire. 38 +The right place to showcase your skills. 33 +Donna, have we closed taking the applications? 39 +Yes sir it was closed yesterday evening. 33 +Rachel, give me a count on the number of applicants. 42 +Do we have the resume of every candidate? 33 +We had asked them to send the resume right? 34 +Yes ma'am we did and most of them have sent. 33 +Sure then how many applicants do we have? 33 +Sir, we have a hundred applicants so far. 33 +Megan, start the screening process as soon as possible. 46 +I want you all to scan properly. 25 +Jack, help them in doing the same. 27 +Emma split the candidates as per their applied profile. 46 +No one should be left out. 20 +Eric, will you please help Emma? 26 +Yes, sure ma'am I'm always there to help. 31 +Sir on what basis do we need to reject an application? 43 +Reject if there is a year gap in education. 34 +Cancel if the applicants haven't sent a resume. 38 +Do not include the ones with no work experience. 39 +We will allow if they have a relevant experience. 40 +How many candidates do we need for the second round? 42 +Let us finish the screening then we can think of it. 41 +We will take the utmost 75 people for the next round. 42 +David, sort out the technical profiles separately. 43 +Max, you do thru same for the finance profile. 37 +Mia, your job is to tell me the exact number of rejections. 47 +Bravo, you help max with the task. 27 +Sir, can we take fresher's? 21 +Yes but only if they are from b schools. 31 +Do we need fresher with a 60 percent criteria? 37 +Yes, we want the candidates to be first class students. 45 +Megan, when shall I expect the screening done? 38 +Sir, we will finish the process by Wednesday evening. 44 +Olivia, you have to be specific with the operations profile. 50 +How many applicants we have for the hr profile? 38 +Ma'am only fifteen of them have applied. 32 +Oh! well, that's a good number. 23 +We always receive less number of applicants for hr. 42 +Still, it's our job to find the right fit. 32 +Yes, we will find the right person to do the job. 38 +Rose, check for the excel skills people. 33 +John, I want good people with the best communication skills. 50 +Yes, there are plenty of people with excel skills. 41 +David, search for the techie guy. 27 +We need the best of the best this time. 30 +I hope we all are on the same page. 26 +Yes sir we are all with you. 21 +Joe, it's your job to notify me when it's done. 35 +Yes boss I'll make a note of that. 25 +Thanks a lot, team for your efforts. 29 +Megan, what's the count for applicants coming or interview. 49 +Sir, there is a total of twenty-five students scheduled. 46 +Rachel, will you please give the list of candidates. 43 +At what time have we called them for the process? 39 +We will start the process by 11 am. 27 +Where will it happen? 17 +Are all the candidates informed about timings? 39 +Yes, we have sent an email regarding the same. 37 +Eric, have you checked all the arrangements. 37 +David, I don't want any on time arrangements. 36 +Jack, you will asset all the applicants. 33 +Emma, where is the list I'm still waiting. 33 +Rose, are all the lights working in the cabin? 37 +Let me check sir. 13 +Hope you all know your responsibilities. 34 +It is a big day for us, best of luck! everyone. 35 +Bravo, have you checked the systems? 30 +All ok sir everything is in position. 30 +So who wants to take a finance profile? 31 +Eric, you can handle the finance profile applicants. 44 +Bella, you take care of operations people. 35 +Olivia will assist me with supervision. 33 +Mia, can you handle hr applicants? 28 +Sure sir I'll be more than happy to do that. 33 +Max, I want you to thoroughly look for sales guys. 40 +Are all the questions prepared? 26 +I want you guys to ask questions as per the profile. 41 +If you need help ask Olivia for that. 29 +Olivia is good at framing questions for applicants. 43 +Mia, you also try to frame questions for finance people. 46 +We will give the candidates a rough idea of the profile. 45 +For each profile, we have to give them a rough idea. 41 +So David and bravo will handle the sales applicants. 43 +Emma and Eric you guys be with finance applicants. 41 +Donna and jack will be with hr candidates. 34 +Ask all the applicants to keep the resume in hand. 40 +We will start the process in a bit. 27 +Till then ask everyone if they want anything. 37 +Bella, send the candidates one by one. 31 +Make sure each applicant goes to the right cabin. 40 +We have allotted a different cabin for each profile, right? 49 +Max, make a note of the student's testimonials. 38 +Harry, you have to take feedback from everyone. 39 +We will try to finish it off as soon as possible. 38 +Let's buck up team we need the right people this time. 42 +Rachel will help us in coordinating together. 38 +David will take care of things during the process. 41 +Max, last time will you check the system. 33 +Ma'am, you don't worry everything is in line. 35 +Let's go get the best one then. 23 +What's the status of the results team? 30 +Sir, we have shortlisted a total of 12 candidates. 41 +There are 3 candidates for each department. 36 +Rachel, make a list of all the shortlisted ones. 39 +Mia, follow up with everyone and call them to the office. 46 +We will announce the results today. 29 +Emma, please be ready with the documentation process. 45 +I don't need any one-time escalations. 30 +Be prepared everyone. 18 +Donna, make arrangements for the candidates. 38 +Hello everyone we will be announcing the results in a bit. 47 +Hold on to your breath some of you will be getting their dream job now. 56 +Results are a part of the process. 27 +Don't be disheartened if you are not selected. 37 +You have done your best. 19 +Bella, please start announcing the names. 35 +David, you'll specify their profiles parallel. 39 +Bravo, note down their names accordingly. 35 +Applicants total of 12 people is selected among you. 43 +I request non selected people to leave. 32 +Don't be upset we know and will give you a call in the future. 47 +Non-selected people can again apply in the future. 41 +It was nice to interview your people. 30 +Ok, the selected one please gather in the conference hall. 48 +Congratulations everyone for your selection. 39 +Your hard work has paid off. 22 +Welcome to your dream company. 25 +We are very happy to have you on board. 30 +Hope to see you soon working for us. 28 +Max, can you arrange some refreshments for them. 40 +Harry, will provide you with your offer letters. 40 +Bravo, please arrange their selection gift kit. 40 +Sure sir I'll be on it. 16 +It was a tough process I tell you. 26 +You guys have deep potential to be here. 32 +I'm very happy with the results team. 29 +Kudos to all of us. 14 +We have to celebrate this soon. 25 +Joe will guide you all the documentation process. 41 +All must be having their updated documents. 36 +Yes sir we have what is required. 26 +Good, jack please check all their documents. 37 +Mia, please collect their documents. 31 +Candidates, please wait outside till we do the review. 45 +Rose, sort the documents as per profile. 33 +Olivia, till then you talk to the candidates. 37 +Sam, make them feel comfortable. 27 +Mike, please ask the office boy to arrange tea or coffee. 46 +Finally, we did guys congratulations to us. 36 +Rahul, what is the date of joining for new employees? 43 +Sir, it is from the coming Monday that is the first of august. 49 +Ok so have we made all arrangements? 29 +Yes, everything is in line. 22 +We are all set to welcome our new workforce. 35 +Emma, send all the new joiners a welcome note. 37 +Also, send them their department head details. 39 +Ask everyone to be on time. 21 +Donna, make arrangements for a conference meeting. 43 +Mia, call each new joined and tell them the joining details. 49 +Joe, make a list of line managers for each separately. 44 +Today they are joining the right team? 31 +Yes, sir from today new joiners will start their journey. 47 +Welcome everyone on board. 22 +We are pleased to have you in our time. 30 +This is the day you all were looking for. 32 +You have now entered the starting phase of your career. 45 +Please make yourself comfortable you are part of the family now. 53 +David will guide you through all the departments. 41 +Bravo, will, later on, show you the office view. 39 +Jack, will take care of id cards. 26 +Harry, I want you to call all the line managers. 38 +Max, will give you through all the technical systems. 44 +Megan, take them through the company guidelines. 41 +All you must undergo the security scans. 33 +We are all equipped with the latest security equipment. 46 +Don't worry all your information is safe with us. 39 +Make sure you keep your belongings in the desired area only. 49 +Littering in the office will not be tolerated. 38 +You can seek permission from line managers for half-day. 46 +There will be a total of 4 breaks in a day. 32 +3 of them will be relaxed breaks. 26 +One will be a lunch break. 20 +Make sure you finish your lunch within the stipulated time. 49 +Are you all clear about the instructions? 34 +If there is any query come directly to me. 33 +Sure ma'am we have understood all the instructions. 42 +Be happy at the workplace and work efficiently. 39 +You will be given ample time to learn. 30 +Don't misuse any of the company's assets. 32 +If you don't know anything directly ask your line managers. 48 +Your subordinates are always there to help you. 39 +Olivia will be your mentor for the first ten days. 40 +Later on, you all be handed over to respective line managers. 50 +Rose, will be your all-time office help. 32 +Max, is the mediator between office staff. 35 +Once again congratulations and a warm welcome from us. 45 +Do well, focus on what you do. 23 +Work as if it's your organization. 27 +Team, we are done with the induction right? 35 +Yes, sir, the onboarding and induction process is done. 46 +Ok then now we have to move towards the training part. 43 +David, sort out the names as per department. 36 +Bravo, you help David with that. 26 +Harry, I need you to prepare a rough training format. 43 +Max, you will be a helping hand for harry. 33 +Sure, sir, I'm always at your service. 30 +Jack, tell all the employees to be prepared for training. 47 +Send them the details of the date and time. 34 +So the team there will be training for the exact one month. 47 +It will include in house as well as on the job training. 44 +Each employee has to undergo training. 32 +It's your responsibility to handle them. 33 +Also giving them proper knowledge about the corporate. 46 +We will also be arranging corporate lectures. 38 +Rachel, please talk to the industry experts. 37 +This needs to be a rigorous training session. 37 +All the sessions will be monitored by me. 33 +Emma, I'll need your help in monitoring the sessions. 43 +Sure ma'am I also have a bit of experience of doing it. 42 +That is great then we will handle monitoring. 37 +Training sessions will comprise of all profile knowledge. 49 +Rose, you handle the finance people separately. 40 +Finance employees need more technical training. 41 +Olivia is technically sound she will help you. 38 +Megan, you arrange a conference room for the rest of them. 47 +Finance people will be given a separate cabin. 38 +Training sessions will start at 10 am. 31 +There will be only 2 breaks between the sessions. 40 +We will add one more break if needed. 29 +Mia, contact all the trainers. 25 +Get their confirmation on dates. 27 +And also ask the trainers to bring their content. 40 +Training is the most important part of an employee's journey. 50 +So we have to be very careful and intuitive. 35 +Start collective all the necessary content for the same. 47 +We will also be arranging video lectures. 34 +Joe, do you think we should include activities? 39 +Yes, sir activates help a lot to learn. 31 +Ok, then we will arrange some fun activities as well. 43 +Jack, start preparing some fun activities. 36 +At the end of the training sessions, we will take a small test. 50 +And at the end of the training, we will conduct an exam. 44 +This exam is just to check the knowledge. 33 +It won't result in any layoffs. 24 +We also need to be prepared fully right? 32 +Yes ma'am I have shared some links in our group check it out. 47 +Sure thanks Megan, for your efforts. 30 +Thank god I have such a lovely team! 28 +Now that the training is done we should take some feedback. 48 +I want all of you to take it seriously. 30 +Employee's feedback will help us plan for the future. 43 +Lucy, you will be handling this process. 33 +Rachel, you will assist lucy in this. 30 +Donna, please make a feedback format. 31 +Joe, I want you to send the notifications to everyone. 44 +Anna, make separate formats for the head of departments. 47 +Bella, make specific issues printed on it. 35 +Emma, you can discuss it with line managers. 36 +Sir how to distribute the forms? 26 +I think we should do it digitally from now onwards. 41 +It will save us a lot of paper and it's quite easy also. 42 +What do you people think? 20 +Yes sir we need to take step towards environment-friendly ideas. 53 +Ok then is confirmed to distribute the forms online. 43 +We will send the feedback forms to everyone's email id's. 45 +Mia, list out all the email ids. 25 +Rose, don't forget to make a separate seer for the head of departments. 57 +Megan, when will you send the emails? 30 +Ma'am, I'll do it by today evening. 26 +That's good I think my team is doing very well these days. 45 +Thanks a lot, ma'am for your appreciation. 34 +Olivia, just remind me to talk to tomorrow. 35 +Yes sir I'll make a reminder in your system. 34 +Thanks a lot that's very nice of you. 28 +Give the employees a stipulated time to fill the forms. 45 +Ask them to submit as soon as possible. 31 +Also share a spreadsheet so that they can mark on it after submission. 57 +Sam, it's your responsibility to give me that spreadsheet. 48 +John, you will get all the complaints directly from the head of departments. 63 +Mike, have a word with the security department. 39 +We want feedback from them as well. 28 +Joe, make a different format for the security department. 48 +Make the format in the Hindi language. 31 +Most of the security people speak Hindi. 33 +Try to print that format on paper only. 31 +There are only a few people so it won't be any problem. 42 +Bravo, after collecting the feedback sort it department wise. 52 +Daniel, you specifically look for the complaints raised. 48 +David, if there is anything serious issue tell me directly. 49 +Eric, ask Megan to include the rating scale as well. 42 +Jack, your job is to separate as per the ratings. 39 +Harry, please tell the people who give a 5-star rating. 44 +Max, you just ask people the reason for low ratings. 42 +After all the feedback thing we will schedule a team meeting. 50 +This meeting will be for planning to escalate the issues. 47 +Also, we will focus on solving similar problems. 40 +This will help us to work well. 24 +I need everyone to attend the meeting. 31 +How is everybody at work? 20 +Are you people enjoying working with us? 33 +Is there anyone who needs some motivation? 35 +Team, I think it's now time to motivate the employees. 43 +We should now plan to engage our employees together. 43 +This will help them to know each other properly. 39 +It gives a boost working in the team right? 34 +Do you want me to plan that? 21 +Yes of course sir we think that some new activities should be planned. 57 +Ok then call for a meeting in the evening. 33 +Sam, prepare the minutes for the meeting. 34 +John, follow up with every department. 32 +Mike, ask people if they are interested in such activities. 49 +Joe, make a detailed schedule when we can arrange it. 43 +Bravo, you think of what new we can do this time. 38 +Daniel, go through old videos and get an idea about it. 44 +David, you plan to get the stuff needed. 32 +Eric, you come with me we will seek permission from coo. 45 +Jack, can you make a little presentation on that? 40 +Sure sir, actually I have already some examples ready. 45 +Good job jack, I'm pretty impressed by you. 34 +Thanks a lot, sir it's all because of your teachings. 42 +Harry, you have to make a notification message. 39 +Max, you will paste the notification on the board. 41 +Lucy, will you share this message with everyone. 40 +Rachel, make a team for the procurement of materials. 44 +Donna, work on humorous activities. 30 +Joe, do we have stuff from the last activity sessions? 44 +Yes ma'am we have some which can be still used. 36 +Ok, then we won't spend much on material stuff. 37 +Anna, will we need to call any artists? 31 +Not necessarily, but we can call some stand-up comedians. 47 +Guys this time we will do it in the office only. 37 +We are short of budget this time. 26 +Hope you understand people? 23 +Yes sir we know that this year we have spent a lot. 39 +What kind of activities are you looking forward to executing? 51 +Sir, I think we should include a quiz on our company's history. 50 +That's a great idea, Bella. 21 +I'll keep in mind to include this. 26 +Emma, do one thing note all the activities. 35 +We will sort and choose the best ten of them. 35 +In a day we can only do ten activates. 29 +Mia, will you coordinate with the event management team? 47 +Rose, you give a helping hand to mia. 29 +Both of you do negotiate with them and tell me. 37 +Sure ma'am we will keep the cost as low as possible. 40 +Megan, take suggestions from all employees. 37 +Olivia, look for a better proposal. 29 +We need to work hard on this thing. 27 +I think we are at the end of the financial year. 37 +So we need to plan to reward our star employees. 38 +Schedule a meeting for the same. 26 +Does anybody have plans for this? 27 +Lucy, take the charge this time. 26 +I want you guys to handle it on your own. 31 +All the planning and execution will be done by you guys. 45 +I want to take some rest this time. 27 +Are employees working hard than before? 33 +Yes ma'am some of them are doing exceptionally well. 42 +Ok then let me know all the details by tomorrow. 38 +Sure sir we will give a follow-up on this. 32 +I will take care of the planning. 26 +Lucy, find a good vendor for trophies. 31 +Rachel, make a list of star employees. 31 +Who do you think will be an employee of the year? 38 +Can we have some nominations? 24 +Donna, give me the nomination list by evening. 38 +We will do voting this time. 22 +It will be equal for everyone. 24 +The nominations will be based on experience. 37 +It will include behavior and achievements as well. 42 +Who is the best contender this time? 29 +Do you have anyone's name in mind? 26 +Ma'am, are we going to have a party after that? 36 +I said before it's all unto you people. 30 +Yes of course we can arrange after party. 33 +The winners will pay for it. 22 +Just kidding we have funds for the party. 33 +Anna, check with the event team for the party. 37 +Bella, ask the event team to send a proposal. 36 +Emma, can you ask everyone to be secretive about this. 44 +It will be a surprise for the winners. 30 +We will be rewarding one member of each team. 36 +One will be an employee of the year. 28 +The second will be want to be an employee of the year. 42 +Separate rewards for the head of departments will be given. 49 +Do you want to include the board of directors? 37 +Ma'am, they don't involve these things. 31 +Yes but still it's our responsibility to include everyone. 48 +Ok, then we will have a separate category for that. 41 +And from our team who is the one? 25 +I think everyone in our team does exceptionally well. 44 +We will do the voting for our team separately. 37 +But remember every year we give rewards. 33 +No matter if you don't get this time. 28 +You can always try for next year. 26 +I hope people will be happy after the rewards. 37 +May the best one will get rewarded. 28 +The eligible person will only get rewards. 35 +All the line managers should recognize subordinate's work. 49 +You have done a great job. 20 +I must tell you are growing. 22 +I'm pretty much impressed by you. 26 +Keep doing the great work. 21 +I bet there's no one other who can do this. 32 +I hope you are satisfied. 20 +I think you're the best on my team. 26 +Great going man keep it up. 21 +Wow! that was an amazing deal you cracked. 33 +I always wanted an employee like you. 30 +You have high standards mate. 24 +That's very impressive to get going. 29 +Your hard work is paying off now. 26 +I want you to excel in your career. 27 +I will recommend you for the reward. 29 +I know you are the employee of the year for next year. 42 +You must keep doing the good work. 27 +That's a huge accomplishment congratulations mate. 43 +Will always want you to be my finisher. 31 +You have the best talent among everyone. 33 +I hope to see you at the top. 21 +The day is not very far my child. 25 +You'll be the best performer this time. 31 +I hope for your better future ahead. 29 +Don't hesitate to take your own decision. 33 +That's amazing what you have done. 27 +No one could match your level. 24 +You are doing exceptionally well in every aspect. 41 +Please be patient and keep the focus on. 32 +Do as you used to do it before. 23 +I have something great to tell you. 28 +There's a reward for you coming up. 27 +You are the best on my team. 21 +I want you to learn from Rachel. 25 +Emma, you are such an amazing person. 30 +Mia, I knew you are the one. 21 +Bella, I always thought you'd be the next performer. 42 +Rose, I always looked upon you. 25 +You guys have done a great job. 24 +You are the best anyone could have asked for. 36 +I think we are the best team in the company. 34 +You are doing a level next kind of work. 31 +I wish you good luck with the task. 27 +I'm very much sure you'll do it. 23 +Megan, I knew you are the one who can do it. 33 +Olivia, I always had faith in you. 27 +David, you're my team leader. 23 +Bravo, you are such an achiever. 26 +Harry, you are the jack of all trades. 30 +Is there some conflict going on between employees? 42 +I think something is wrong between them. 33 +Yes, the ma'am sales team is not working properly. 40 +There are some differences between them. 34 +I think we should encounter some issues. 33 +What do you think team? 18 +Yes sir we have to take charge. 24 +Or else the conflict may arise into a job termination. 44 +Sam, go check with every team and tell me what's happening. 47 +I want to get to the bottom of the issue. 31 +It has been rattling for a long time. 29 +This issue should be resolved as quickly as possible. 44 +John, ask the head of departments for their opinion. 43 +Mike, can you please call the receptionist. 36 +Joe, check if the problem is with the head of departments. 47 +Bravo, keep an eye on rose, she had some conflict last day. 47 +This time, it should be something important. 37 +I don't want people to fight on lame excuses. 35 +All are mature enough still this kind of behavior. 41 +I don't want to see this next time. 26 +Emma, why do you always disagree. 27 +I think salespeople coming late is the problem. 39 +No matter what the problem we should solve. 35 +Please anyone having a problem tries to resolve. 40 +We are employees here not friends. 28 +Keep your grudges with yourself. 27 +This is a company we don't need any fights. 33 +This kind of issue will not be tolerated. 33 +I think we are all grown-ups. 22 +Megan, use strict methods to deal with it. 34 +We are ready to accept mistakes. 26 +But bad behavior will not be accepted. 31 +This will impact an employee's productivity. 37 +Olivia, will check and confirm the issue. 34 +Sam, will listen to the problems. 27 +Later he will give his feedback. 26 +Then we will think about what steps should be taken. 42 +Joe, I need your help with this. 25 +Bravo, will you talk to the head of departments? 39 +We need a firm decision on these. 26 +If we follow the guidelines then it wouldn't have happened. 48 +Negligence is the factor for this issue. 33 +You guys don't need someone to watch all the time right? 44 +So if it is the case then you must make peace. 35 +We are a family we have to make peace with each other. 42 +Have your opinions but don't unseen others too. 38 +Having different thought is good. 28 +But don't force to let others have the same thought. 41 +We don't need any conflicts after this. 31 +Help each other to get things done. 28 +How is the performance of employees? 30 +Is everybody's working well? 23 +Lucy, give me a detailed report on this. 32 +Rachel, I need detail of every employee. 33 +Are they achieving their targets? 28 +If not then we have to take some strict actions. 38 +I don't like doing this but it has to be done. 34 +I want everybody's progress report. 29 +We only want productive employees in our organization. 46 +This is not a place for lazy people. 28 +We want people to work efficiently. 29 +Donna, give me the list of non-performing employees. 43 +We need to talk to them. 18 +This is a serious matter. 20 +Joe, help donna with that. 21 +Anna, do a background check for each employee. 38 +Check what is bothering them. 24 +Mia, confirm the unproductive tasks. 31 +Rose, we need this done as soon as possible. 35 +Olivia, first try to give them suggestions. 36 +If the employees don't listen then tell me. 34 +Is everybody working well? 22 +Everyone will be treated equally. 28 +Rules are the same for everyone. 26 +No work means no salary. 19 +Sam, first listen to their problem. 29 +Think about it and then you tell me. 28 +I'll think of keeping them are not. 27 +Mike, this is the last warning I'm giving you. 36 +Bravo, I hope you won't do this again. 29 +Daniel, what I've told you is the last time I'm doing it. 43 +I think this cannot be tolerated. 27 +You will be suspended for two months. 30 +If you are found to be improving then we can think again. 45 +Rehiring will be done later on. 25 +There's room for improvement. 24 +If you don't do this right it will be a problem for you. 42 +It's a tough time for us also. 22 +We don't like doing this. 19 +Eric, I have lost all the patience. 28 +I need to resign as soon as possible. 29 +The management wants this to happen immediately. 41 +Your consistently low performance is the reason. 41 +Don't be disheartened you'll get another opportunity. 44 +Try searching somewhere else. 25 +It was a pleasure having you on the team. 32 +Learn from your mistakes. 21 +Never make the same mistakes again. 29 +Don't be unproductive in any organization you join. 42 +Do you mind waiting a few minutes? 27 +I'm calling to clarify. 18 +I'd like to leave him a message. 24 +When is a good time to call? 21 +Hello, this is mike from the travel agency. 35 +Hi, it's sam from the tata company. 27 +Hello, may I speak to sam? 20 +I'd like to speak to Mr. Joe. 20 +I'm calling to ask about you. 22 +I just wanted to ask about the article. 31 +Hi, Rachel, how are you? 19 +How are you getting on with? 22 +I am sorry, she's not here today. 25 +I'm afraid she's not available at moment. 32 +Can I take a message? 16 +I'll give her your message. 21 +Could you please take a message? 26 +Please tell her that I am here. 24 +I'd like to manage things. 20 +When is a good time to call her? 24 +When is she going to be back? 22 +Could I ask what company you're with? 29 +Could you give me your mobile number, please? 37 +Could you spell that for me, please? 29 +How do you spell that, please? 24 +Let me see if I got that right book. 27 +Would you mind speaking up a bit? 26 +I can't hear you very well. 20 +How about the following week. 24 +Shall we say January 20? 19 +What would you suggest? 19 +Do you have a time in mind? 20 +I'll send you the report as soon as possible. 35 +I will pay for this bill. 19 +Not as far as I'm concerned. 21 +Not in my book. 11 +Okay, it is by me. 13 +See if I care! 10 +Go away and mind your own business! 28 +Not according to my views. 21 +That's fine with me. 15 +I don't care if you do it. 18 +Believe me! I am telling you the truth. 30 +Pain in the neck. 13 +Say a word for word. 15 +The way the wind blows. 18 +I enjoyed meeting you, mark. 23 +Don't worry, I'll make sure to stay in touch. 34 +Have you seen the way she dresses? 27 +Oh, Ana, don't jump to conclusions! 28 +Are you going to come to Peru? 23 +I'm not sure yet. 12 +I need to sleep on it before giving you. 31 +Well, it's unusual nowadays. 23 +What a small world! 15 +Seriously? that's funny. 19 +Oh no! I forgot toothpaste! 21 +Never mind, we will just do it. 24 +Oh, come on! 9 +I don't feel like going out tonight. 28 +Come on, sheila, the band is great. 28 +Okay. I guess it's done. 17 +I'm sorry, it slipped my mind. 23 +Sure. no problem. 13 +Thanks. I owe you one. 16 +How was your interview today? 24 +I think it went okay. 16 +Hand in there, Stella. 18 +What movie do you want to watch? 25 +It's up to you. I don't have a preference. 30 +It is a pleasure to meet you. 22 +At your earliest convenience. 25 +Concerned about you always. 23 +Firstly, let us talk about yesterday. 31 +Give my regards to your grandfather. 30 +Have you seen tom? 14 +I agree with my colleague, Anna, that hard work matters. 46 +I would like to remind you that you have left up with the same work. 53 +I appreciate your assistance! 25 +In light of fact that I owe you more always. 34 +It is my opinion that once you meet your mom. 35 +It is necessary for me to go to school. 30 +It is not necessary for you to go out of the house. 39 +It is recommended you go to the hospital. 33 +Please accept our apologies for not accepting the gift. 46 +Furthermore, we need to discuss our future together. 44 +Lastly, I wasn't lying to you anything about last night. 45 +She has the ability to speak in English. 32 +The plan was implemented. 21 +Our destination is not here, it's in New Zealand. 39 +I regret to inform you of the accident that happened yesterday night. 57 +I was hoping that you could be here for me always. 39 +It will cease to a problem that is yet to occur. 37 +One grows weary in these matters. 27 +This appeared to rectify the problem which was in past. 45 +Your arrival was so late that I could not even wait. 41 +Please state your business properly. 31 +We note that you have not received your email. 37 +I would be grateful if you could reply early as soon. 42 +I'd appreciate it if you could complete the task. 39 +We would like to have the same ice cream. 32 +Would you like me to have the photograph? 33 +To consider the same calculation you need to complete the task. 52 +This demonstrates that we have completed the task for robot preparation. 61 +To distinguish between what is right or wrong is a big question. 52 +We receive the hospitality bill. 27 +Revision should be done twice a day. 29 +This will be of great benefit to you if done on regular basis. 49 +I am writing to inform you about the health of my parents. 46 +I am afraid I will not be able to attend the meeting. 41 +Thank you for your email of the 10 of march. 34 +Please let us know your requirements. 31 +People consume a tremendous amount of electricity. 43 +Please let me know when you will be available. 37 +I hope to hear from you at your earliest convenience. 43 +As per our telephone conversation on today's date. 41 +We would be honored if you would attend this event. 41 +We can assist in the resolution of this matter. 38 +I am afraid your child is experiencing difficulty in listening. 53 +I look forward to meeting you next week. 32 +I think she is shy. 14 +I feel it a too old one. 17 +I guess it's done actually. 21 +In my view this room is awesome. 25 +In my eyes, you are too pretty always. 30 +From my perspective this scene is perfect. 35 +From my viewpoint, this is the best dress. 34 +I think we should leave now. 22 +What I mean is to use tomato instead of onion. 36 +Some people say that there is a big road which is too dangerous. 51 +It is generally accepted that a girl takes all the responsibility. 55 +It goes without saying that girls have to complete all household chores. 60 +I think that uses only Indian products. 32 +I believe that nature always heals the world. 37 +I suppose you were present for the function. 36 +According to my, the vegetable taste is too awesome. 43 +In my opinion, this car is the best one for Rachel. 40 +It seems to me that this is going to be the end of today's night. 49 +From my point of view, this place is wonderful to have our house. 52 +As far as I'm concerned for his health, he needs special care now. 52 +I'd like to point out that this presentation was done by ma'am. 49 +Well, it is considered that daughter in law takes over the charge of the home. 63 +My impression is that she is a great artist. 35 +I hold the view that she should wear it and then decide. 44 +I agree with your mom nowadays more. 29 +Definitely, this is going to be the best gift. 37 +Absolutely, we need to think about this surely. 39 +I see your point is right now, last night I didn't feel it. 45 +I have to side with you on this one solution for this recipe. 48 +I think so too that we need to draw it again. 34 +That's a good point that may elaborate on maths solutions in detail. 55 +You're right, that's a good point we can discuss it in the presentation. 57 +That's true, you should try it once again. 33 +You have my full agreement of the rent house. 36 +Ok, that's convincing that you need to go now at home. 42 +You took the words right out of my mouth and she started to cry. 50 +I agree that now dad should stay with us all. 35 +I couldn't agree more that he wasn't non-violent. 38 +Precisely, he needs to understand the concept in deep. 45 +I see what you are getting at nowadays after lockdown. 44 +Sure, that's one way of looking at it, and it's accepted. 44 +I suppose that there would be bread and butter in the fridge. 49 +I see exactly what you mean by hitting it badly. 38 +I think you're right. 16 +Well, I agree with you here. 22 +I second that there would be an animal. 31 +I take your word on it as it may give us a good path. 39 +I see your point, but... 17 +That's one way of looking at it, however. 32 +Well, I see things rather differently. 32 +I'm not sure I go along with that view. 29 +I agree up to a point, but... 20 +I wouldn't quite put it that way myself. 31 +I can't go along with that. 20 +You've got to be kidding. 19 +We don't seem to be in complete agreement. 33 +I see what you are getting at, but... 27 +I completely disagree. 19 +Umm, I'm not sure about that. 22 +I don't really agree with that idea. 28 +I still have my doubts. 18 +That's out of the question. 21 +We don't seem to agree here. 21 +That's not always true. 18 +I'm afraid, I disagree. 18 +Sorry to interrupt, but... 20 +Is it ok if I jump in for a moment? 25 +If I may interrupt? 15 +Do you mind if I add something? 24 +Excuse me but in my opinion. 22 +Excuse me for a second, but... 22 +Let me finish what I have to say first. 30 +Excuse me for interrupting, but... 27 +Well, that reminds me of that. 24 +I don't mean to intrude, but... 22 +Sorry, but can you let me finish. 26 +Before you go on, I'd like to say something. 34 +Just a moment, I like to add something here. 35 +Can I add something here? 20 +If I might add something. 20 +Can I throw my two cents in your one? 28 +Umm, well not really but I don't want to talk to you. 40 +Are you telling me that this is going to be my work? 40 +Sorry, but I'm not done yet. 21 +May I say something here? 20 +Sorry to cut you off, but... 20 +Well, if that is the case... 20 +Wait a minute, let me take my bag too. 29 +The next point I'd like to make is... 26 +Moving right along from this path. 28 +That brings us to the child whom we met before. 37 +My first point is. 14 +Now the situation is to sit at home and study for further. 46 +Not only you but jenny too need to work on this. 37 +As you can see from these examples. 28 +Finally, I am here at my goal point. 28 +Now that we have established. 24 +Keeping these points in mind. 24 +Now that we understand that we need to move. 35 +Let's begin with a further chapter. 28 +My next example is regarding spiders. 31 +Likewise, we need to look further into our company. 42 +In the same way, we need to print on the same duplicate paper. 49 +In a like manner, we always move further in life. 39 +In addition to this, we also need one more offer. 39 +Contrast that with other colors. 27 +At the same time, we also need to look at other responsibilities. 53 +Now let's consider this example again so that we can correlate. 51 +However, we also need to go to another site. 35 +Nevertheless, we need to go further still. 35 +Furthermore, we also find some more evidence. 38 +If your actions inspire others to dream more, learn more, you are a leader. 61 +If you think you can do a thing, you're right. 35 +The great teacher inspires. 23 +Indeed it is the only thing that ever has. 33 +You can speak well if your tongue can deliver the message of your heart. 58 +Let thy speech be better than silence, or be silent. 42 +A good orator is pointed and impassioned. 34 +Before anything else, preparation is the key to success. 47 +There are two types of speakers in the world, the nervous and liars. 55 +It takes one hour of preparation for each minute of presentation time. 58 +The most precious things in speech are the.. pauses. 41 +Well-timed silence hath more eloquence than speech. 43 +Always give a speech that you would like to hear. 39 +Speeches measured by hour die with the hour. 36 +Only the prepared speaker deserves to be confident. 43 +To sway an audience, you must watch them as you speak. 43 +A presentation is a chance to share, not an oral exam. 43 +The world is waiting for your words. 29 +If God is in the details, then the devil is in PowerPoint. 46 +Some people talk in their sleep, lecturers talk while other people sleep. 61 +To hear his lecture. 16 +The trouble with a lecture is that it answers questions. 46 +The moment the feeling enters the body is political. 43 +What an amazing gift to help people, not just yourself. 45 +Define a successful lecturer. 25 +Knowing the topic of the lecture very well. 35 +Being well prepared for the lecture. 30 +So she was waiting for the lecture. 28 +Silence always led to a lecture. 26 +Do we have to give lectures in twelve hours? 35 +Form for a striking lecture. 23 +There is no smarter professor than life and no wiser sage than experience. 61 +Comic books in a lecture. 20 +First few lectures here. 20 +Fiction can show you a different world. 32 +Anyone can lecture from the butt. 27 +What's happening is a very stern lecture. 33 +The lecture will become a spanking. 29 +I notice that, in the lecture. 24 +Hold forth. 9 +Take the floor. 12 +A true dreamer is one who knows how to navigate in the dark. 47 +We are going to have another department meeting. 40 +Let's hold a meeting to discuss this. 29 +Did you go to the project team meeting? 31 +Did not attend the development meeting. 33 +The meeting minutes. 17 +Meetings are held to collaborate. 28 +Some meetings use a formal system of voting. 36 +Hello, everyone. thank you for coming today. 36 +Since everyone is here, let's get started. 34 +I'd like to take a moment to introduce to our new manager. 45 +Please join me in welcoming. 23 +Sheila, would you like to introduce yourself? 38 +As you can see from the agenda, we'll be talking about it. 45 +I've called this meeting too. 23 +Our main goal today is to. 20 +What does everyone think about it? 28 +I'd like to get your feedback on the same page of Facebook. 46 +What are your thoughts about this situation? 37 +What are your views on this plan? 26 +What does everyone else think? 25 +Are there any other comments? 24 +Susan, can we get your input? 23 +Would you like to add anything, joe? 29 +I strongly believe that. 20 +I have no doubt whatsoever that. 26 +I think we have to go this way. 23 +Believe me, this is going to be the best moment for us. 43 +I feel that this is the last day of life. 31 +From my point of view, this is perfect. 31 +In my experience, this is going to be the right way. 41 +I find that this is the last solution which I may get now. 45 +I'd say that. 9 +If you want my honest opinion, I think that. 35 +To be honest with you I want to go now. 29 +It seems to me that I am the last one left. 32 +It's possible that we can go further on this. 35 +I tend to think that this is going to be the last tracking. 46 +My initial reaction is anger always. 30 +I completely agree. 16 +I couldn't agree more. 17 +That's just how I see it. 18 +I'm with Peter on this. 17 +Well, it depends totally on your point of view. 38 +I agree with you up to a point, but not now. 33 +I agree with you in principle, but I don't want to obey those. 48 +I'm afraid I disagree with this thing. 30 +I'm not so sure that this is going to be right. 35 +I see it differently nowadays based on situations. 42 +Yes, but you need to understand it once. 32 +Not necessarily this is going to be the best one for always. 48 +I'm sorry, but I completely disagree. 30 +I'm sorry, but I don't agree with that at all. 34 +We don't seem to be getting anywhere with this. 37 +Let's move on. 10 +I think we're going to have to agree to disagree. 38 +We could have completed his last wish. 31 +Why don't you help me? 16 +How about today's evening? 21 +What about your plan? 17 +Why don't we go with them? 19 +I suggest she stay here with mom. 26 +I recommend using the same paper. 27 +We should not go to the hospital. 26 +Let's wait and look at the situation which is best for her. 46 +I recommend using the same sheets. 28 +We should go to the hospital. 23 +I think we've spent enough time on this topic. moving on. 44 +If nobody has anything else to add, let's move on to the next item. 52 +We're running short on time, so let's move on. 35 +I'd like to skip item 2 and go directly to item 3. 37 +I'd like to hand it over to Brian, who is going to lead the next point. 54 +Next, Brain is going to tell us about it. 32 +I'm afraid that's outside the scope of this meeting. 41 +I think we're getting a bit off-topic. 29 +We'd better save that for another meeting. 34 +Let's get back on track, ok? 21 +Getting back to. 13 +It looks like we've covered the main items on the agenda. 45 +That will be all for today. 21 +If no one has anything else add, then I think we'll wrap this up. 50 +Our next meeting will be on Friday. 28 +Let's get together next month. 24 +First, let me introduce myself. 26 +Let me start by giving you some background information. 46 +Let's move on to our second slide. 26 +Turning our attention now to the results. 34 +I'd like to expand on my point. 23 +Let me elaborate further. 21 +As I said at the beginning, we'll see an increase in profit. 47 +This relates to what I was saying earlier about increasing production. 59 +This ties in with the way we've been doing business. 41 +The significance of this is if we complete the project on the schedule date. 62 +This is important because any marketing effort we put in now will help to boost. 65 +We have to remember that people are the most important resources. 54 +According to our study, working people in the city go directly to the gym. 60 +I'd like to illustrate this point by showing you a chart. 45 +This chart shows a breakdown of the ingredients. 40 +In other words, we need to change our design. 36 +To put it simply, we'll need you to work. 31 +What I mean to say is that we need to change the way. 40 +In conclusion, let me sum up my main points. 35 +Thank you for your attention. 24 +Now I am happy to answer any questions you might have. 43 +Can we proceed with conclusions? 27 +Please someone among you tries to answer the questions. 46 +I have a question for you all about this context. 39 +Can we have some more questions here? 30 +Is the topic completely understood? 30 +Can we expect good results among these projects? 40 +I think we need to work more with these slides. 37 +Can we come up with a summary? 23 +I want to thank you for considering me. 31 +I'm glad you called me because I want to work for this company. 49 +I'm here because I think I have the profile. 34 +I want to congratulate you on making this company capable. 48 +I am sorry, would you please repeat the question? 40 +Excuse me, I didn't even hear you, can you please say it again? 49 +Could you please repeat the same question? 35 +Speak a little bit loud. 19 +Sorry, I didn't hear the last part. 27 +I think I'm the right choice for the job. 31 +My patience will allow me to do this easily. 35 +I'd love to work here because I do love to explore a new world. 48 +I can let you know some skills. 24 +Please justify the strength which you have. 36 +Can you tell me something about yourself? 34 +How did you come across this course? 29 +What are you expecting from us more? 29 +I am very thankful for this. 22 +I hope we see each other again. 24 +I wanted to thank you before I leave. 29 +It was my pleasure to meet you again. 29 +I want you to thank you for having me here. 33 +I've been looking for this position for a long time. 41 +I'm glad that I was recommended. 25 +Love for all, hatred for none. 24 +Change the world by being yourself. 29 +Every moment is a fresh beginning. 28 +Never regret anything that made you smile. 35 +Die with memories, not dreams. 25 +Aspire to inspire before we expire. 29 +Everything you can imagine is real. 29 +Simplicity is the ultimate sophistication. 37 +Whatever you do, do it well. 22 +What we think, we become. 20 +Tough times never last but tough people do. 35 +Problems are not stopped signs, they are guidelines. 44 +If I'm gonna tell a real story, I'm gonna start with my name. 46 +If you tell the truth you don't have to remember anything. 46 +Have enough courage to start and enough heart to finish. 46 +Hate comes from intimidation, love comes from appreciation. 51 +I could agree with you but then we'd both be wrong. 39 +Oh, the things you can find, if you don't stay behind. 42 +Determine your priorities and focus on them. 37 +Be so good they can't ignore you. 25 +Dream as if you'll live forever, live as if you'll die today. 47 +Yesterday you said tomorrow. just do it. 32 +I don't need it to be easy, I need it to be worth it. 38 +Never let your emotions overpower your intelligence. 45 +Nothing lasts forever but at least we got these memories. 47 +Don't you know your imperfections is a blessing? 39 +Reality is wrong, dreams are for real. 31 +To live will be an awfully big adventure. 33 +There is no substitute for hard work. 30 +What consumes your mind controls your life. 36 +Strive for greatness. 18 +Wanting to be someone else is a waste of who you are. 41 +And still, I rise. 14 +The time is always right to do what is right. 35 +Let the beauty of what you love to be what you do. 38 +May your choices reflect your hopes, not your fears. 43 +A happy soul is the best shield for a cruel world. 39 +White is not always light and black is not always dark. 44 +Happiness depends upon ourselves. 29 +Turn your wounds into wisdom. 24 +It hurt because it mattered. 23 +If the world was blind how many people would you impress? 46 +I will remember and recover, not forgive and forget. 43 +The meaning of life is to give life meaning. 35 +To be honest. 10 +To tell you the truth. 17 +Believe me! 9 +Let me be clear. 12 +The fact is. 9 +So rich as honesty. 15 +It takes strength and courage to admit the truth. 40 +Honesty never hides the deeds. 25 +Honesty tells the truth. 20 +A half-truth is a whole lie. 21 +Be honest with yourself. 20 +Honest is more. 12 +Do believe, I am honest. 19 +She expressed her honesty always. 28 +No legacy is rich than honesty. 25 +Her honesty helps to build trust. 27 +"See, her honesty looks like""." 23 +Ohh, she expresses to him her honesty. 31 +First honesty, then industry. 25 +The man's honesty is true? 20 +A man's honesty is seen in his eyes, you know about it? 42 +Life's lesson is honesty first. 25 +Her integrity was more to tell her. 28 +Be yourself everyone else is already taken. 36 +Honesty helps always. 18 +It's discouraging that employees aren't honest. 39 +It's better to offer no excuse than a bad one. 35 +You can't lie to your soul. 20 +Please!! do not lie now. 17 +Honesty changes real things. 24 +Honesty says a lot. 15 +Still best to be honest and truthful. 30 +Honesty is the first chapter. 24 +It takes courage and strength to admit. 32 +Honest people don't hide. 20 +Something honest. 15 +Honest is more what I mean. 21 +Integrity is telling myself the truth. 32 +Love is honesty. 13 +Friends are honest. 16 +Honesty is very expensive. 22 +Delegate work to someone. 21 +Delegate a task. 13 +Delegate responsibility. 22 +Feel free to delegate some of those responsibilities to me. 49 +You can delegate authority. 23 +Deciding what not to do is as important as deciding what to do. 50 +Delegate your work. 16 +I'm a lousy delegator, but I'm learning. 31 +Don't be a bottleneck, delegate it. 28 +Make a big impact, learn to delegate. 30 +Surround yourself with the best people you can find, delegate authority. 61 +Delegate work works, provided the delegating works, too. 48 +You've got to learn to delegate. 25 +You almost don't have to delegate them. 31 +The first rule is to delegate in management. 36 +You can never delegate responsibility for delegating a task. 51 +Delegating means letting others become experts. 41 +Art of delegation. 15 +If you work 160 hours a week, don't delegate. 35 +How to decide, what to delegate. 26 +Effective delegate. 17 +How to select the right person to delegate to. 37 +Don't delegate the wrong. 20 +When in doubt, delegate when in charge, ponder. 39 +Learn to delegate. 15 +Delegating a job. 14 +Don't grow much without delegation. 29 +It's to master the delegation. 24 +He cannot delegate. 16 +Delegation is giving others. 24 +Need to delegate. 14 +Delegation is an issue of respect. 28 +Don't have a problem with delegation. 30 +How are you feeling about...? 21 +I appreciate it when you... 20 +It helps me trust you when you... 24 +Yes, I'll do that. 13 +Okay, what is your biggest concern? 29 +So you feel like... is that correct? 26 +I appreciate all you do. 19 +Let's see if I understood this correctly, what you're saying is... 51 +Let's get some ice cream and talk about this some more. 43 +I'm sorry. I take responsibility for that. 33 +These are some thoughtful ideas of the same. 36 +It helps me trust you more when you... 28 +I want to know about this'. 20 +I love this kind of thinking. 23 +How you concluded. 15 +Tell me more about that. 19 +What do you think? 14 +What I hear you saying is. 20 +I trust your judgment. 18 +I'm on it. 6 +How can we make this happen? 22 +I've got your back! 14 +Be silent, or say something better. 29 +The most important thing in communication is hearing. 45 +See if possible for him. 19 +If you have nothing to say, say something. 34 +How we say. 8 +What we say. 9 +Speaking can persuade an individual. 31 +Communicate directly with my soul. 29 +The quality of your communication determines size. 43 +What a great conference! 20 +"I m ready,"" she said with more confidence than she felt." 44 +He wasn't a tall man, but he walked with confidence. 41 +The big question was, would her confidence last? 40 +"Dr. Bell said ""No!"" with great confidence, and the kite was sent up." 51 +No confidence in me! 16 +To help you believe in yourself. 26 +It's the confidence in our bodies. 27 +It's the confidence minds. 21 +It's confident spirits. 19 +It's the confidence that allows us to keep looking for new adventures. 57 +Self-confidence in one's ability can build a better world. 47 +No one can make you feel inferior. 27 +Just believe in yourself. 21 +Confidence comes from not fearing wrong. 34 +A man cannot be confident unless he is comfortable. 42 +Doubt kills more dreams. 20 +They're no better. 14 +Argue for your limitations and be sure they're yours. 43 +Confidence is the most beautiful thing. 33 +Confidence is worth it. 19 +Kindness in words creates confidence. 32 +Confidence is the greatest friend. 29 +Life is ignorance and confidence is a success. 38 +Confidence.. thrives on honesty. 26 +Daring confidence in god's grace. 27 +Confidence of people. 18 +The leader must already have considerable confidence. 46 +Above all confidence in ourselves. 29 +Confidence in your own. 19 +Action breed confidence and courage. 31 +Ignorance more frequently begets confidence. 39 +Confidence of Indian. 18 +To have that confidence. 20 +Powerful thinking with confidence. 30 +Tell yourself I am confident. 24 +Create what you want. 17 +The key to success is self-confidence. 31 +Commitment is an act, not a word. 26 +Decide. commit. succeed. 19 +You cannot conquer what you are not committed to. 40 +Without commitment, nothing happens. 32 +Commitment in face of conflict produces character. 43 +Commitment isn't easy. 18 +Commitment quotes to keep you focused. 32 +Commitment is the ability to stick. 29 +Commitment is a decision. 21 +Even it's not easy. 14 +Excellence to commitment. 22 +Proportion to their commitment to excellence. 39 +Unless commitment is made, there are only promises. 43 +Your imagination and commitment matters. 35 +You may have to fight a battle than to win. 33 +Powerful promise quotes. 21 +Great changes may not happen right away. 33 +There's a difference between interest and commitment. 45 +Stay committed to your decision. 27 +Commitment unlocks doors of imagination. 35 +Keep on going and the chances will stumble on something. 46 +It's always too early to quit. 23 +I am easily satisfied with the best. 29 +To have a caring and committed heart. 30 +To fall in love and to commit. 23 +Art of commitment becomes soulmates. 31 +Love is of maximum commitment. 25 +Freedom is not the absence of commitment. 34 +You always have two choices, commitment, and fear. 42 +The result of a commitment to excellence. 34 +Once you have the commitment, you need discipline. 42 +There's a higher form of happiness in commitment. 40 +To be 100 percent commitment. 24 +Commitment is the foundation. 25 +Commitment transforms promise. 27 +Commitment in face of conflict. 26 +Stay committed to your decisions. 28 +Think positive, act positive, behave positively. 42 +With a positive attitude, the world is your oyster. 42 +With a positive attitude that has his goal clearly in sight. 49 +A positive attitude can have a huge impact on a career. 44 +Your positive attitude, commitment, and self-discipline. 49 +Positive thinking is the way to success. 33 +I can get this job and do it well. 25 +Today is a wonderful day. 20 +Everything moves smoothly and harmoniously. 38 +I always try to be optimistic. 24 +Hope for the best. 14 +I expect to get good grades. 22 +Today is an amazing day. 19 +I am full of energy. 15 +I am sure it is good in this situation. 30 +I trust myself to make the best decision. 33 +I am enjoying the work that I am doing. 30 +I always hope for the best and expect the best. 37 +I let go of all my anger and frustration. 32 +Replace them with peace and hopes. 28 +I can earn the money. 16 +To provide a comfortable life for me. 30 +People love and respect me. 22 +I always try to keep on open mind. 26 +I choose to find hopeful and optimistic. 33 +I feel confident and at ease in the company. 35 +I always find reasons to be happy and optimistic. 40 +I have very good relations with my family. 34 +I forgive people and treat them with respect. 37 +I can achieve all of my ambitions. 27 +I can solve every problem. 21 +I can finish my work on time. 22 +Everything in my life is improving. 29 +The creative adult is the child who survived. 37 +The desire to create is one of the deepest yearnings of the human soul. 57 +Creativity doesn't wait for perfection. 33 +You can't use up creativity. 22 +Creativity is intelligence. 24 +The secret of creativity knows. 26 +God's best creation is human. 23 +Creativity is contagious. 22 +This was created further. 21 +Creativity is just connecting things. 32 +Benefits of creativity. 20 +Products with spirit and creativity. 31 +The Comfort zone is a great enemy to creativity. 39 +Creativity makes life more fun. 26 +Creativity has got to start. 23 +The worst enemy to creativity is self-doubt. 36 +Creativity has got to start with humanity. 35 +Creativity requires courage. 25 +The essential aspect of creativity is not being afraid. 46 +Anxiety is part of creativity. 25 +Creativity is not finding a thing. 28 +Anxiety is the handmaiden of creativity. 34 +Creativity makes a leap and then looks to see when it is. 45 +Lack of creativity. 16 +A pinch of creativity. 18 +Creativity is breaking out of established patterns. 44 +Creativity follows. 17 +Creativity comes from a conflict of ideas. 35 +Creativity is a great motivator. 27 +A natural extension is a creativity. 30 +Creativity is the greatest expression. 33 +Energy is the key to creativity. 26 +I am passionately curious. 22 +Creativity is connectivity. 24 +Creativity follows instincts. 26 +A great motivator is a creativity. 28 +Creativity is what helps to escape a lot. 33 +Keep inspiring me. 15 +She inspires her with her behavior. 29 +Inspires others, dream big. 23 +Success doesn't just find you it inspires you. 37 +Dream bigger, inspire others. 25 +Courage to continue. 17 +All our dreams can come true. 23 +Only the paranoid survive. 22 +It's hard to beat a person who never gives up. 35 +I wake up every morning and think to myself. 35 +Write it. shoot it. publish it. 23 +Fairy tales are more than true. 25 +When one door of happiness closes, another opens. 41 +Do one thing every day that scares you. 31 +It's no use going back to yesterday because I was different. 48 +Smart people learn from everything and everyone. 41 +Do what you feel in your heart to be right. 33 +Happiness is something that comes from your actions. 44 +Whatever you are, be a good one. 25 +Passion is waiting for courage. 26 +Magic believes in you. 18 +You can either experience the pain of discipline. 41 +Impossible is just an opinion. 25 +Hold the vision, trust the process. 29 +Don't be afraid to give up. 20 +The glass is refillable. 20 +One day or day one, you decide. 24 +Dip it in glitter and sparkle the day. 30 +Things left by those who hustle. 26 +Every successful person in the world is a hustler. 41 +Invest in your dreams, grind now, shine later. 38 +Look in the mirror that's competition. 31 +Never influence the world by trying. 30 +Life changes when we change. 23 +Design yourself, design the future. 30 +Inspire every day for physicality. 29 +Inspire the world to stay in peace. 28 +Man's life is dependent on inspiration. 32 +Create your empathy statements. 27 +You're right, she said empathetically. 32 +After having empathetic communication, I've experienced this. 53 +I appreciate you. 14 +If I understand correctly. 22 +Thank you for remaining positive. 28 +I want to thank you for taking the time to speak. 38 +Put yourself in their shoes. 23 +I would feel just you do if I would be in your shoes. 40 +I would recommend it to you. 22 +Would you like to try? 17 +You can consider it. 16 +You might find it helpful. 21 +I think you'll find it's much easier if you do. 35 +If I understand you correctly. 25 +So what you're saying is. 19 +What you're saying is. 17 +I'd love to love to help you with that. 29 +Give me just a minute. 17 +Can you tell me a little bit more? 26 +I gave him and he accepted it. 23 +I have got something wrong. 22 +Please can I speak once? 19 +Let you know soon regarding it. 25 +It would be good if you elaborate more. 31 +It sounds like you did everything you could. 36 +I can see how hard you tried here. 26 +I know what it feels like to get a bad grade. 34 +Accountability is a core value. 26 +Personal accountability matters. 29 +Personal accountability is the feeling that you are entirely responsible. 63 +Examples are related to personal accountability. 42 +Personal accountability meets expectations. 39 +Peace comes from within, do not seek it without. 39 +If you hand out with chickens, you cluck, if you hand out with eagles, you fly. 63 +Source of hope, accountability. 27 +For greater clarity, accountability stands. 38 +The right thing to do and a hard thing to do usually the same. 48 +The opinion requires no accountability. 34 +It requires no accountability. 26 +We feel mistreated when we fail to set boundaries and hold peoples accountable. 66 +You don't have to worry about burning bridges if you're building your own. 59 +It is wrong and immortal to seek escape from the consequences of one's act. 60 +When it comes to accountability, people always demand former themselves. 62 +Never compromise your values. 25 +Endure the discordance between imagination and fact. 45 +You don't have to be accountable for anything. 37 +Accept responsibility for your life. 31 +At some point realize that you are the driver and drive accordingly. 56 +Each day you are leading by example. 29 +If he is not held accountable to its laws. 33 +The only people that can ruin a relationship are the 2 people in it. 54 +Regulation is an imperfect substitute for accountability. 50 +As long as you use accountability to describe your sins. 46 +The pressure of adversity is the most powerful sustainer of accountability. 64 +You hit them with accountability and they mutate. 41 +Sense of personal accountability. 29 +The position of power is not made to be accountable. 42 +Mutual submission is accountability to be held to god's standard. 54 +Accountability means to say what you do, do what you say. 46 +Accountability for achievement. 28 +Accountability is the basis for all meaningful human. 45 +Create a culture of integrity and accountability. 42 +All are responsible and accountable for what we do. 42 +Live your truth, express your love, and share your enthusiasm. 52 +It was to be an enthusiast in life. 27 +Enthusiasm can help you find new doors. 32 +You will do foolish things, but do them with enthusiasm. 46 +We lose enthusiasm in life because we become ungrateful. 47 +Protect your enthusiasm from negativity and fear. 42 +It's faith in something and enthusiasm for something that makes life worth it. 64 +Not a visible enthusiasm but a hidden one. 34 +Always remember to take your vitamins, vitamin a for action, vitamin b belief, vitamin e enthusiasm. 84 +I am, more interested in arousing enthusiasm. 38 +Enthusiasm is a supernatural serenity. 33 +Spring work is going on with joyful enthusiasm. 39 +Enthusiasm is the electricity of life. 32 +Enthusiasm spells the difference between mediocrity and accomplishment. 63 +I wept because I was re-experiencing enthusiasm. 40 +Passion or drive is what moves the vehicle of a fulfilled life. 51 +Excuse my enthusiasm or rather a madness, for I am drunk. 46 +Now, what saps the enthusiasm in a man? 31 +When is enthusiasm created? 23 +One feels enriched by enthusiasm and inspiration. 42 +The ability to be enthusiastic. 26 +Who only begin to be enthusiastic about it. 35 +The possibility of a dream gives strength. 35 +If you want to be enthusiastic, act enthusiastic. 41 +"The worst thing said about him is that he was ""incurious""." 45 +Let the winds of enthusiasm sweep through you. 38 +Without enthusiasm, nothing great can be affected by art. 48 +With an enthusiastic team, you can achieve almost anything. 50 +Back with a spirit of enthusiasm. 27 +Interest and enthusiasm are the wellsprings of a continually evolving community. 69 +You feel that you are losing enthusiasm. 33 +Choose a teacher with enthusiasm. 28 +The enthusiasm that makes one resist. 31 +It's a pleasure to do something. 25 +Flying high. 10 +I'm quite excited about it. 21 +I can't believe it! 14 +I'm delighted for you. good luck! 25 +You deserve it! 12 +We must focus to see the light. 24 +My big focus is china now. 20 +You can't focus on the task. 21 +She is being driven by him. 21 +Be in the driving seat. 18 +It's only after you've stepped outside your comfort then you begin to change. 62 +Focus on living fully in the present. 30 +Lack of direction, no lack of time is the problem. 40 +Focus on your strengths. 20 +Focus on your character. 20 +Focus on your blessings. 20 +Shift the focus on something positive. 32 +Very occasionally, if you pay close attention, life doesn't suck. 54 +Whenever you need to achieve something just focus. 42 +The only time you fall is when you fall and stay down. 42 +Focus on your goals, not on fears. 27 +Focus like a laser beam on your goals. 30 +Stop stressing. 13 +Stop worrying. 12 +Give rest to the problems weighing you down. 36 +Lighten up. 9 +Forgive yourself, others. 22 +They are passionate, driven, alive and they are real. 44 +She had said he had been driven away from her by a dream. 44 +Without knowing anything else about him, I already he'd be worth the hurt. 60 +Sometimes people have no idea what drives you. 38 +I have been driven to the greatest inspiration. 39 +Don't follow the money, let the money follow your purpose. 47 +Go beyond motivated, be more, do more, overcome more. 44 +I don't have that has driven this kind of search. 38 +Your biggest battles internally happen in boredom. 43 +I'm driven and self-made. 19 +You have to be firm, persistent, passionate, and driven by an idea. 55 +Man's main task in life is to give birth to himself. 40 +Focus gives learning. 18 +Continually improving develops by focus. 35 +Strengths that helps to focus. 25 +Attempt once to focus. 18 +Focus on choice. 13 +Purpose develops focus. 20 +The price of greatness is responsibility. 35 +You must take personal responsibility. 33 +You may believe that you are responsible. 34 +A hero is someone who understands the responsibility that comes with his freedom. 68 +Take responsibility for your own happiness. 37 +You become responsible forever for what you've tamed. 44 +I just don't want that responsibility. 31 +You become responsible, forever. 28 +Most people are frightened of responsibility. 39 +I'm not much but I'm all I have. 22 +The knowledge that we are responsible for our actions. 45 +To say you have no choice is to relieve yourself of responsibility. 55 +You've got a lot of responsibility now. 31 +Please take it responsibility for making it so. 39 +The willingness to accept responsibility for your own life. 50 +Responsibility to yourself means refusing to let others do your thinking. 62 +In the end, total responsibility depends on our actions. 47 +Liberty means responsibility. 26 +In dreams begin responsibilities. 29 +The truth is that you are responsible for what you think. 46 +The function of freedom is to free someone else. 39 +Man is nothing else but what he makes of himself. 39 +Action springs not from thought, but readiness for responsibility. 57 +It was the fault and responsibility of the adult. 40 +Men who reject the responsibility of thought exist as parasites. 54 +No choice is to release yourself from responsibility. 45 +With freedom there comes responsibility. 35 +Choice accepts responsibility. 27 +You must take over your responsibility. 33 +To have the will to be responsible for one's self. 39 +Responsibility in your own hands. 28 +Responsibility for doing any personal good. 37 +Responsibility when the situation occurs. 36 +Stand by taking responsibility for yourself. 38 +Refuse responsibility when not sure. 31 +Dignity begins by accepting responsibilities. 40 +Thanks for your suggestion. 23 +Excuse me, can you leave my path. 26 +Could you? could you please? 22 +Let me know. 9 +I don't like it. 11 +I'm not too fond of it. 16 +Some more phrases. 15 +Why did he lose his job? 18 +Excuse me, you have left your keys here. 32 +How did you tear your shirt? 22 +Many innocent people lost their lives in the recent riot. 47 +It is dangerous to go there. 22 +Is it possible to prove this? 23 +You should be ashamed of what you did. 30 +I felt very well when I heard this news. 31 +That's a beautiful shirt you are wearing. 33 +I have got something in my eye. 24 +Have you done with the scissors? 26 +My arm has gone to sleep. 19 +Get your foot off the chair. 22 +Your tea is getting cold. 20 +Are you getting tired? 18 +What is the point of worrying? 24 +I can't let the lid off this bottle. 27 +I think we should get a taxi now. 25 +Could you lift the chair a bit? 24 +I am feeling strange these days. 26 +It is getting late. 15 +This rope is not strong enough. 25 +I had gone there once. 17 +They always eat together. 21 +I was living in thane then. 21 +Don't go near that wire. 18 +Is there a hotel near here? 21 +He works as my assistance. 21 +I have seen great poverty. 21 +My grandma taught me to play. 23 +Developing empathy. 17 +I respect you as my father. 21 +Please, can I get those cookies? 26 +Yes, I apologize for the same mistake. 31 +Yes, granny, I understood, what you want to say. 39 +Can you please elaborate on it further, please? 39 +Can we talk later, mom? 18 +We need to speak too about this. 25 +It's too difficult to deal with the situation currently. 46 +Hi all, we can have a small talk. 25 +Sorry, I won't do it again. 20 +Mommy, please forgive me. 21 +Can you please lend me the pen? 24 +Jack, I won't do it again. 19 +Can you help me out to clear out this solution? 37 +After every dark night there comes a bright morning. 43 +Try to look at the brighter side of life. 32 +Every problem has a solution. 24 +Conflicts arise when people backstab each other and spread baseless stories. 65 +Personality development also plays important role in strengthening relationships. 72 +Make your smile cheaper. 20 +Genuine kindness is the ultimate strength. 36 +Attract everything that is for the highest good. 40 +Self-love is the greatest medicine. 29 +Show up, expand, and shine. 22 +You deserve this good life. 22 +Stop waiting for others to appreciate. 32 +Become your biggest fan. 20 +Love yourself unconditionally. 27 +Be disciplined. 13 +Change your priorities if necessary. 31 +Remember how far you've come. 23 +Know life's impermanence. 21 +Unpleasantness makes you aware of your pleasantness. 45 +Your kindness will never go wasted. 29 +Choose every day to forgive yourself. 31 +Protect your peace. 16 +Get rid of toxicity. 16 +Cleanse your space. 16 +Cultivate love. 13 +Embrace change. 13 +Be brave enough to heal yourself. 27 +Don't give up, even when it hurts. 26 +I have permission to put myself first. 31 +My ability to conquer challenges is limitless. 39 +Authenticity starts by letting go of fear. 35 +Your level up is about improving. 27 +It's always you vs you, not you vs them. 30 +Speak your truth. 14 +The ego is a control freak. 21 +Forgive others and accept to move. 28 +Show great commitment. 19 +Show a caring and attentive nature. 29 +Exhibit good negotiation abilities. 31 +Acceptance is the best solution. 27 +No offense should be taken. 22 +Often avoid conflicts by ignoring facts. 34 +Time is more valuable than money. 27 +Time is one thing that you can never get it back. 38 +In spite of spending time invest it. 29 +Take care of the minutes and the hours will take care of themselves. 55 +The greatest gift you can give someone is time. 38 +Time block your day. 16 +Schedule in the buffer time. 23 +You can't always be productive. 25 +You can't work all day. 17 +Just get going. 12 +Set deadlines. 12 +Work in sprints. 13 +Multitasking doesn't work. 22 +Break down tasks. 14 +Always take notes. 15 +Set up and follow your routine. 25 +Keep a time journal. 16 +Create a priorities list. 21 +Make a task list. 13 +Minimize interruptions. 21 +Go to the most beautiful space. 25 +Use a calendar. 12 +Know your deadlines. 17 +Don't procrastinate. 17 +Prioritize wisely. 16 +Focus on strategies and values. 26 +Manage crisis and deadlines. 24 +Avoid time-wasters and escapes. 26 +Recognize the outcome. 19 +Serve your true goals. 18 +Take some quiet time. 17 +Plan your day the night before. 25 +Create a morning routine. 21 +Be consistent. 12 +Connect with your end vision. 24 +Follow the path of the highest enjoyment. 34 +Always track your progress. 23 +Celebrate what you have done so far. 29 +Don't force it if it's not working. 26 +Without rain, nothing grows. 24 +I prefer loneliness, over a fake company. 34 +Don't let your ego cloud your judgment. 31 +If you want to go far, go together. 27 +Finish what you started. 20 +Be yourself, the world will adjust. 29 +Make your anger expensive. 22 +Don't quit too early. 16 +Stop giving energy to things you don't want. 35 +Hate is heavy. let it go. 18 +The biggest risk is not taking any. 28 +If you can dream it, you can achieve it. 31 +Make peace with your past. 21 +Be strong and choose to be positive. 29 +I am amazing. 10 +No one is you, and that is your superpower. 34 +Never doubt yourself. 18 +Do the right thing. 15 +A goal without a plan is just a wish. 28 +If you want it, go get it. 19 +I'm working on myself, for myself, by myself. 36 +Patience is key. 13 +The best thing I did was to believe in myself. 36 +Success isn't given, it's earned. 26 +Pain is temporary, regret is forever. 31 +Make more moves and fewer announcements. 34 +Work hard and stay humble. 21 +Don't forget to enjoy the little things. 32 +Don't let the internet rush you. 25 +Be so good, they can't ignore you. 26 +Forget yourself and start to work. 28 +Success is doing ordinary things. 28 +The key to immortality is first living. 32 +The secret to success is consistency. 31 +Think outside of the box. 20 +You're going to kill it today. 23 +Hello, we need to discuss optimizing our company operations. 51 +Let's schedule this meeting for tomorrow early morning. 46 +Ok, sure sir we all will be present for the discussion. 44 +Lucy, seek permission for the conference hall. 39 +Rachel, send a notification to all the line managers. 44 +Donna, keep posted to the assembly team. 33 +I want the production people to be informed. 36 +Material handling people must attend this. 36 +All the machinery will be held for that time. 36 +Joe, hand over the documents to the supervisor. 39 +Anna, you have a word with the union leader. 35 +I think the union leader will help us with this. 38 +We need to fasten up all the operations. 32 +Optimizing operations need speedy operating. 39 +Bella, make a formal approval letter. 31 +Emma, speak to the director about this. 32 +Mia, keep the plant head involved with you. 35 +I want the plant head this time to make decisions. 40 +Optimizing supply management will be a priority this time. 49 +Do you guys have any suggestions on this? 33 +Sir, I think we need some technical advancements in the process. 53 +Rose, thanks for your point I'll look after it. 37 +Anyone else has a better idea. 24 +I have one, can we try the trial and error method. 39 +That is a good mate but not advisable at this point. 41 +We have to speed up the production process. 35 +Megan, you will train every machine operator guy. 41 +Olivia, you will help Megan in doing this. 34 +Starting from the material intake we will end with the quality check. 57 +Are all the quality control checks done? 33 +Do we regularly order from the same vendor? 35 +Yes, we have a strategic alliance with them. 36 +I hope everybody is clear about the agenda. 35 +I don't need on-time approvals. 24 +Get the things by this evening itself. 31 +Production planning will begin after two weeks. 40 +I want the forecast plans for the coming month. 38 +Do a regular quality check for optimization. 37 +Sam, can you come over early tomorrow? 31 +John, strictly ask the security people to start early. 45 +Mike, I think you are spending more on research. 39 +Are we able to optimize that machine? 30 +Joe, can you calibrate the milling machine? 36 +Bravo, keep informed of the material room people. 41 +Daniel, how often we change our tools? 31 +I think tools need to be replaced. 27 +Sure sir I'll order the new ones. 25 +David, check the budget and then order. 32 +Eric, ask welding people if they need anything. 39 +Max, you'll be the leader of this project. 33 +The team does you think this strategy is old. 36 +We are using the same strategy for a decade. 35 +I think we need to develop a new strategy. 33 +Does anyone have an idea about this? 29 +We are open to all suggestions. 25 +Ma'am, I think we should go make estimation an essential thing. 51 +Yes sam, I was also thinking the same way. 33 +Estimation the most essential thing to do. 35 +From now onwards we will look into this matter. 38 +Anyone ideas do you people have? 26 +John, I'm expecting a valuable insight from you. 39 +Sure ma'am I'll give you my suggestion by evening. 39 +Mike, do you think strengthening quality check will help. 48 +Yes sir that is what I was thinking to do for a month. 41 +Ok, then team we will be focusing on estimation and quality check. 54 +Joe, I want you to lead this task. 26 +Bravo, I want the plan ready by Monday morning. 38 +Daniel, you will be assisting bravo in this. 36 +David, check all the previous estimation formats. 42 +Eric, you talk to the technical chief. 31 +Jack, make an inventory table. 25 +Harry, when will you give those files? 31 +Max, the quality will need your help soon. 34 +Where is the department head of production? 36 +Soon we will need to talk with the plant head. 36 +Lucy, schedule a meeting with the superiors. 37 +This time make sure you guys achieve before time. 40 +I want you all to be in front always. 28 +Be on your toes till you find success. 30 +Rachel, please handle the discussion with max. 39 +Donna, can you the delivery timing of that product? 42 +Do you think we need scientific calculators for estimation? 50 +Yes sir we will need those. 21 +Joe, will you order at least a hundred of those. 38 +Anna, you check the specifications online, and then we can order. 54 +Bella, you also do a bit of research on that. 35 +How long it will take to implement this strategy? 40 +Sir, I think we will end this by next week. 33 +Ok, that's enough time then. 22 +I don't want any delay in that. 23 +Has everybody understood the strategy? 33 +This time we will make things happen best. 34 +It will be a new beginning for us. 26 +Emma, you do a background check on this subject. 39 +Mia, keep focusing on the quality check part. 37 +Rose, I want you to train all the operators. 35 +Megan, when will you give me the estimation format? 42 +I hope this step will impact well on us. 31 +Yes, we also hope for the same impact. 30 +Olivia, keep an eye on the machining process. 37 +From next month we will start the process of automation. 46 +It has been a long time we did some updates. 34 +Yes sir it is the right time to automate the processes. 44 +Everyone is now used to the old process. 32 +This has to be changed to create innovation. 36 +Lucy, carry out research on this topic. 32 +Rachel, you go through the past records. 33 +Joe, check for previous human errors. 31 +We want to achieve the 99.99 percent accuracy level. 42 +For this, we all have to work extremely hard. 36 +Yes boss we are ready to spend our sweat and blood. 40 +Good, that's the attitude I want everyone to have. 40 +I'm lucky to have you all on my team. 27 +Bella, you go with the purchase manager. 33 +Check for the necessary requirements. 32 +Emma, search for all the technically updated machines. 46 +I want all the machines to form Germany. 32 +German technology is best for process automation. 42 +Mia, I hope you are in touch with that manager. 37 +Yes sir we have been in touch since last year. 36 +Ok then ask him for the assembly line machines. 38 +Sure sir I'll ask for the quotation for items we need. 42 +Megan, do you need any specific machine? 33 +Ma'am, we badly need a conk machine. 28 +Ok then let's check with the vendors. 29 +They might have the best in class products. 35 +Till when do you want this to be installed in the plant? 44 +Sir actually my team wants it by next week. 34 +I will ensure you get what you desire within this week. 44 +That's so great of sir, the best operations manager. 42 +If anyone else has the same issues can come over and talk. 46 +As of now, we don't have any issues. 27 +We will surely let you know sir. 25 +Olivia, take a sample of this material. 32 +Sam, come with me to the tool room. 27 +We might need some automated tools as well. 35 +Yes, we can order it from nearby vendors. 33 +Why nearby john, we will order it from Germany only. 42 +From now onwards we will use german automated products. 46 +Rest all the equipment will be India made only. 38 +Have everyone got what I said? 24 +David, talk with higher management. 30 +Daniel, you will negotiate the deal. 30 +Harry, you check all the technical specifications. 43 +Max, you have expertise in process automation, right? 45 +Yes, ma'am I actually did a diploma course in that. 40 +Ok, then you must assist me on the project. 34 +Sure ma'am it's my pleasure to work with you. 34 +We will ensure to do this by end of march. 32 +Lucy, get me the list of all the labors in the plant. 41 +Rachel, you sort the list as per the departments. 40 +We have to distribute the workforce as per the department. 48 +These are the orders from the management. 34 +We will give the task force as per the desired projects. 45 +As of now, there is no proper workforce assigned. 40 +Right sir this was always in my mind. 29 +Ok, then people we have to distribute then manpower now. 46 +I think most of the people will be required in production. 47 +Yes sir we think that the assembly line is a very critical area. 51 +We need many men to handle the assembly line. 36 +Skilled labor is needed on the line. 29 +Joe, get all the skilled labors details. 33 +We will sort the laborers as per their skill set. 39 +Emma, do we have the welding people around? 35 +We also want some casting skill manpower. 34 +Casting products will be produced from next month 42 +We have to hire some new talent. 25 +Or else we can train our workforce for specific skills. 45 +Mia, what do you think about the plan? 30 +Yes ma'am you are correct but we have to ask the management. 47 +Don't worry I'll talk to those people. 29 +Ok, then sir I'll search for some skilling agencies. 42 +We can call these people at our campus to train. 38 +The training was much needed for our labors. 36 +But still, we have the best-skilled workforce in our company. 50 +Bella, do one thing call everyone in the auditorium. 43 +Ok, but for what ma'am if I may ask? 26 +We will give them the good news about training. 38 +This news will motivate them to work more efficiently. 45 +That's a great idea, the need of the hour. 32 +Megan, can you send a notification for that. 36 +Olivia, you talk to the finance head. 30 +Do we have to take permission for that? 31 +No not needed sir it's not that important. 33 +Ok, then we will finish the announcement and start the work. 49 +Sam, you can address these people in your native language. 48 +You know how to tackle these people right? 34 +Yes of course ma'am I've been doing this since childhood. 45 +John, will you follow up with Microsoft company? 40 +Yes, I already did they will send the material by next week. 48 +Ok, then we will be ready to produce after two weeks. 42 +David, what about your product updating idea? 38 +Yes, that is in line for next month. 28 +Daniel, are you familiar with your department labors. 45 +Not actually sir but I'm trying to socialize now. 39 +It's good then because we have a policy like that. 39 +Harry, are you motivating your workforce daily? 40 +Max, you have a pretty good team of skilled laborers. 43 +Yes, I chose them myself for the project. 33 +Sam, how much raw material is left at the factory? 40 +Is it enough for the next coming batch to produce? 40 +I don't think sir it will last till the next batch. 39 +Ok then have we planned to order it? 28 +Yes sir we have been asking the hods about that. 38 +You have to be a quick team. 21 +You know that raw material is the key component. 39 +We cannot unseen this issue right? 28 +John, get the requirements to form everyone. 37 +Mike, will you carry out all the calculations? 38 +Do we need to talk to the purchasing team? 33 +Yes ma'am can we ask for their help? 27 +Yea! sure why not it is their job to do. 29 +David, talk to the purchase head. 27 +Daniel, I need the previous order list. 32 +This will help us to tally the rates. 29 +Dine sir I'll get it by the purchasing team. 34 +Harry, can you go to the previous vendor? 33 +I want some specification brochures. 31 +Ok, sir I already scheduled a visit to them. 35 +Max, we need some samples for testing. 31 +Yes ma'am I'll ask for that soon. 24 +Rachel, will you check with the technician. 36 +I want all the samples to be tested before we order. 41 +This will refrain us from getting the product spoiled. 45 +Last time people had some complaints. 31 +I think the raw material was not good enough. 36 +This time we will make sure we get the best quality. 41 +Good quality will also increase the machine's life. 42 +Yes sir we agree with your theory. 27 +I also had the same view. 19 +Lucy, conduct a survey with the union leaders. 38 +Rachel, you can ask the labors about the quality. 40 +These labor people know better about the quality. 41 +If we give them a better feed they will produce the best. 45 +Mia, follow up with the reporting head. 32 +Team, I think there will be an audit next week. 37 +We need to ensure full capacity production. 36 +These audit people are very strict. 29 +Emma, I need your help with price negotiation. 38 +Bella, you ordered the material last time right? 40 +Yes sir I did as I knew the people there. 31 +Ok then joe, will do it this time. 26 +I want everyone to develop contacts. 30 +Megan, have a look at the quotation. 29 +Do you think they have increased the price? 35 +Yes sir they have increased a lot this time? 35 +Olivia, call them and negotiate on loyalty terms. 41 +We have been procuring from them for a decade. 37 +We need a discount on our goodwill. 28 +What's the exact stock of the product left? 34 +Are we planning the inventory as per the guideline? 42 +We were short of stocks last time. 27 +Please all ensure it won't happen this time. 35 +Right sir, actually we had a team meeting last night. 43 +We have come to a fruitful conclusion. 31 +From now onwards we will keep the stocks updated. 40 +We will plan it fifteen days before only. 33 +Let's now make a pile in the warehouse. 30 +Yes, we understand that that's why we will sell it fast. 44 +Lucy will track the inventory every Monday. 36 +Rachel will make the necessary changes. 33 +Emma will look after the product b stock. 33 +We won't make a pile of products. 25 +I have asked the sales team to speed up. 31 +This will help in ordering new inventory. 34 +Mia, I want a smooth flow of products. 30 +If we don't deliver on time it gives a bad impression. 42 +Yes ma'am we won't let that happen. 26 +Joe, get all the documents ready for stock inventory. 44 +Are we keeping the invoice copy for every stock? 39 +Yes sir it is been stored in the inventory room. 38 +Ok then let's move the products to the final lines. 40 +As soon as the demand rises level up the inventory. 41 +More demand needs more inventory to keep. 34 +Megan, you talk to the finance head. 29 +Ask them if we have enough budget for demand rise. 40 +There is a chance of a rise in demand next month. 38 +For that, we need to plan inventory from next week. 41 +Yes sir we were pretty much aware of that. 33 +Olivia, check the latest reports on the demand rise. 43 +I think we will need more stock of product c. 35 +Sam, check how much we have product c in the inventory. 44 +This one is in more demand since last month. 35 +John, I hope you'll plan your requirement as per our discussion. 52 +I have already done that my inventory is full. 37 +I only need support from the sales team. 32 +They have to speed up sales to reduce inventory costs. 44 +Sir some products do incur a lot of inventory costs. 42 +Actually, these are the products that need regular checks. 49 +It costs us more to take care of such stock. 34 +No issue we'll address the problem in the next meeting. 44 +Mike, are you aware of your product's inventory? 39 +Ma'am actually my product sells smoothly. 34 +I don't have any issues in keeping the stocks. 36 +My team is handling the inventory very well. 36 +Yes, I know that and I'm proud of it. 27 +We had some problems managing the inventory last week. 45 +Don't worry this time we will do our best. 32 +This warehouse is a decade old, right? 31 +We have this since I joined the company. 32 +Yes, sir actually it has all the facilities we need. 42 +Yes, you are right this is a perfect warehouse for our products. 52 +Lucy, when was the pastime it was painted? 34 +I think ma'am we did it last summer. 27 +Ok, then we should do it again this summer. 34 +Do we have enough fire extinguishers inside? 37 +Sir, we have to increase the fire extinguishers. 40 +The new products are inflammable ma'am. 32 +We need at least ten more of those items. 32 +Ok then Rachel, order it as fast as possible. 36 +We cannot take a risk with people's life. 32 +Yes ma'am I'll ask for the quotation first. 33 +Emma will choose which one should be installed. 39 +She is perfect with warehousing. 27 +Mia, you check where it can be installed. 33 +We already have on the corners. 25 +I think the new ones should be installed in the middle. 44 +Bella, can you tell me the exact area of our warehouse? 44 +I'll need the information to discuss with the stock keeper. 48 +Megan, you come with to the old warehouse. 34 +We have some important files to take out from there. 42 +Is the sanitation process being done on daily basis? 43 +Yes ma'am we are doing it every day. 27 +Olivia, please install new lights in the warehouse. 43 +You can also keep the good ones. 25 +Just try to replace the lights which are too old. 39 +I want everybody to see clearly in the warehouse. 40 +Sam, ask the cleaning staff to come in the evening as well. 47 +We have to take the utmost care to keep the warehouse clean. 48 +Which are stocks we are keeping in this warehouse? 41 +How much capacity does this warehouse have? 36 +Sir actually capacity is not much but the facilities are more. 51 +Ok then do one thing transfer all the product c here. 42 +These products need more care. 25 +John, you'll manage this warehouse from now. 36 +Jack, I need you to prepare the timetable for the warehouse staff. 54 +Ok ma'am do you want anything to add specifically? 40 +David, do we have good ladders in the warehouse? 39 +Daniel, check on the product a and b stock. 34 +If we have space left then we can transfer the product here. 48 +I think that's a good idea. 20 +Harry, I want you to check for space. 29 +Max, do you need some area to keep your products? 39 +No sir there is enough area in the old warehouse. 39 +Fine, then all product C will be in this warehouse. 41 +She will take care of sanitization. 29 +If you people need anything here do tell me. 35 +Sure sir we will let you know if anything is needed. 41 +Can you tell me how many vendors we have for raw material? 46 +Lucy, you also give the list of products vendors. 40 +How many vendors we have outsourced as of now? 37 +Sir actually 30 percent of vendors are outsourced. 42 +Ok fine, then we have to allocate proper incentives to them. 49 +Rachel, how is it going with the vendor from Germany? 43 +Pretty well sir those people are good in conversation. 45 +Yes, I also thought when we finalized them as a permanent vendor. 53 +Do we have any issues pending to solve? 31 +Yes ma'am there are issues with vendors from the western zone. 50 +Their people from west always has some issue. 37 +The thing there a stronghold of Microsoft company's vendors. 50 +They try to disturb all the marketspace. 33 +Mia, hand over me the final documents. 31 +Emma, check with the vendor for the order date. 38 +We have to build strong relations with these vendors. 44 +As these are the people who will supply us with the right material. 54 +You, people, know-how important quality material is to us. 48 +Yes sir we understand your concern. 29 +We are trying to build a good rapport with them. 38 +Ma'am but some vendors are very rude. 29 +They don't pick up calls regularly. 28 +Bella, note down the issues with them. 31 +He will try to resolve every problem in some days. 40 +If you have a strong reason then we can replace that vendor. 48 +Megan, you told me last time some issue with b vendor. 43 +Yes sir there was something but we resolved it. 38 +That's such a smart move you have taken. 31 +I'm very proud of you people. 22 +You all are allowed to take calculative risks. 38 +This will help you in being a good future operations leader. 49 +Our job is to make things work smoothly. 32 +Olivia, send all the vendors this Diwali a gift. 39 +We want them to know that we care for them. 33 +It will be a token of appreciation from us. 34 +Sure sir I'll directly order online and send directly. 44 +That's what I also wanted. 20 +Sam, schedule a meeting with product c vendors. 39 +They had some issues in delivery timing. 33 +John, can you ask mike to talk to me personally. 38 +Jack, when the remaining orders we will get? 36 +I'm in constant conversation with them. 32 +Soon we will get the orders. 22 +David, ask the vendor to make things work as we want. 42 +There have been a lot of complaints from them. 37 +We are here to do business right? 26 +Daniel, ask him if it's possible if not then tell him to leave. 49 +Such mistakes won't be tolerated again. 32 +Harry, go talk to the security head. 29 +Max, have planned a meet with product b vendors? 39 +How many deliveries have to be scheduled for next week? 45 +Lucy, give me the details of these deliveries. 38 +This time the freight charges will higher. 35 +It is because of the rise in fuel prices. 32 +Rachel, what was the freight charge or last delivery? 44 +Sir, we charged five thousand bucks for that freight. 44 +Oh! is it, that's quite expensive. 26 +Ok, let it be we will try our best to lower that cost. 41 +Emma, from which are we sending the trucks? 35 +Ma'am those drivers have their defined routes. 38 +Ok, are we giving the new routes to follow? 34 +No, they are reluctant on that part. 29 +See this is the problem truck drivers don't listen only. 45 +Mia, ask the fleet owner to call me. 28 +Ok sir I'll fix the con call on Monday. 29 +Sir, I have a doubt why are these drivers so rude? 39 +The thing is a single freight takes at least fifteen hours to complete. 58 +These drivers get very tired. 24 +That's why some drivers are rude and reluctant to listen. 46 +On what basis we are charging them for a single freight? 45 +Ma'am, it depends on the material weight and distance. 44 +We charge more if the distance is too long. 34 +Are we giving them a discount on toll taxes? 35 +No ma'am they only said they'll manage. 30 +Ok fine then this issue is solved. 27 +Bella, we want freezer trucks to schedule the next freight. 49 +Ok, sir then I'll find out such type of fleet owners. 41 +Right and also ask them if they have a permit. 36 +Sure sir I'll check all the documents before assigning. 45 +Megan, talk to yesterday's freight drivers. 36 +I think they have some issues with the material. 39 +Ah! that's why they are calling me since morning. 38 +Yes, they might have you talked with them? 34 +No ma'am actually I was busy with scheduling the next freights. 51 +Olivia, you go with Rachel and talk to them. 35 +Sure ma'am we both will solve the issue. 31 +Sam, tell me the status of your freight schedule. 40 +Sir, I have already emailed you the schedule of the next freight. 53 +That's amazing I like such kind of attitude. 35 +John, will you ask the drivers to be quick. 34 +Last they delayed the deliveries. 28 +Which is why the company owner was pissed. 34 +Mike, will you handle the product's deliveries. 39 +Jack, what about our charge raw material freights. 42 +How much they are charging us. 24 +David, check the last freight charges. 32 +Daniel, you talk to that driver. 26 +Harry, please be specific on negotiation. 35 +Sir, they also charge the same mostly. 31 +Sometimes they overcharge us. 25 +At what we start the process of back operation. 38 +Sir, we usually start at 4 o'clock in the evening. 39 +Ok, that's good not much time is needed. 31 +What all things are being done in that office? 37 +Ma'am all the documentation and scheduling process is done. 49 +Good then lucy, note down all the process done here. 42 +Sure sir I'll do it and pass the information to you. 40 +Rachel, have you documented the material purchases. 44 +I was about to do that today sir. 25 +That's late ok no issue don't be late next time. 36 +Fine sir I won't let this happen again. 30 +Emma, are all the systems working in the office? 39 +I want the systems to be to date. 25 +You, people, know-how important documentation is. 42 +Mia, will you handle the escalation process. 37 +Bella, I want you to talk to the material department head. 47 +This what we can turn things around. 29 +From now we will first document the processes. 38 +Megan, are all the meetings scheduled for next week? 43 +It has been done last week only ma'am. 29 +You are such a smart person. 22 +Thanks for handling all my scheduling operations. 42 +I'm glad to that sir. 15 +Olivia, would you please document this deal? 37 +This is an important deal and it should be documented. 44 +Actually, it was done by itself. 26 +Oh! then I'll do it on an immediate basis. 31 +Good, I wanted this only from you, Olivia. 34 +Sam, you pretty good at handling back end work. 38 +I know your documentation skills. 28 +From where have you got these skills? 30 +Sir, I did a professional course on the back end process. 46 +Fine, it is helping you in your career. 31 +Yes, thank you sir for your appreciation. 34 +John, would you mind keeping the files in the cupboard? 45 +No sir we won't mind doing any work for you. 33 +You are like a teacher to us. 22 +I want to learn such skills from you. 29 +It will help me in being a good operations manager. 41 +Sure mate, I'll teach you everything. 30 +Joe, I hope you also help in doing this. 31 +You people are doing great in the back end process. 41 +Mike, where were you for an hour? 26 +I was talking to the purchase head for the next day's order. 47 +Ok fine then, have you confirmed it? 29 +Jack, I will need your suggestion on this. 34 +It will be my pleasure to give my inputs. 32 +David, you are late for the meeting. 29 +Daniel, plan the next meeting after back end work. 41 +Harry, come we need to talk. 22 +Lucy schedule a meeting with the purchasing team this evening. 52 +I want all to address their issues regarding purchase. 45 +Do we have any leader for this department? 34 +Sir as of now I was only looking at the department. 40 +But I think that we need a dedicated leader to handle this. 47 +Ok, then we will find a better fit for the job. 36 +Rachel, from now onwards you will be leading the purchasing department. 60 +Whatever we need in the plant will be ordered by you. 42 +Sure sir thanks a lot for giving me this opportunity. 43 +So people tell me your requirements. 30 +Do we have enough stationary till next month in the office? 48 +Everyone can tell me specifically what they want. 41 +He was asking about the scientific calculators. 40 +I think we have already ordered that right Rachel? 41 +Yes ma'am we did it last month only. 27 +Emma, do you need anything for the documentation process. 48 +I think we will buy a tally subscription for you. 39 +That will be very helpful ma'am thanks in advance. 40 +Mia, I hope you have enough product B raw material. 41 +Not enough sir but will order it next week. 34 +Ok, then you tell the team directly your requirement. 44 +Definitely ma'am I'll do that. 23 +Bella, from where are purchasing the stationary. 41 +It's a well-known shop in the market. 28 +We have been buying from them for a decade. 34 +Ok, then no need to alter that. 24 +Joe, what about your technical device? 32 +Do you want any updated one for work? 29 +Ma'am as of now I don't need anything. 28 +Megan, you asked me about the records. 31 +Yes sir I wanted it badly next week. 28 +Ok, then we will order it as soon as possible. 36 +Olivia, do we have enough supply of snacks in the office? 46 +Yes, we do have, the supply is regular. 31 +That's pretty good no one should feel hungry the whole day. 47 +Sam, when is the product b's delivery scheduled? 39 +That one I wanted next week. 22 +Sir, I want new writing pads for the supervisor. 39 +Ok, anything else with that you want? 30 +That's it for, I will ask Rachel if I want anything else. 44 +John, what about the tools that are all updated? 39 +Sir, we need some repairmen to be done on it. 35 +Ok then ask mike for that. 20 +Jack, I hope you are full of the material part? 37 +Yes, I have plenty of that material in-store. 36 +David, please tell me directly what you want? 37 +Daniel, are stocks piled up in the store? 33 +Who is handling the store by the way? 29 +Sir, I'm responsible for store operations. 35 +Which are the next batches for production? 35 +Give me the list of products for the next batch. 38 +Until when shall I expect the start of production? 41 +Lucy, do you any information regarding the same? 40 +I want specific details. 20 +Have we scheduled the production on conk machines? 42 +Rachel, do you know about this process. 32 +Yes, sir, I know and we are taking forward the decision. 45 +I like that keep doing the same work Rachel. 35 +Emma, you have to give the process map. 31 +Sure ma'am I'll send you by this evening. 31 +Done I want everybody to speed up the work. 34 +Mia, have you assigned the work to laborers. 36 +No, not yet boss will do it tomorrow. 29 +Most of the laborers are gone home today. 33 +We should plan the meeting with laborers in the morning itself. 52 +Yes, I also think the same way. 24 +Yes ma'am it will help to have a fruitful discussion. 42 +Joe then asks all the laborers to come early in the morning. 48 +I have done it already boss. 22 +Good timing of work you got man. 25 +Bella did you spoke to the product research team. 40 +Yes, they are saying it will be ready by Monday. 38 +Good, then we are good to start with production. 39 +Megan, ask the technicians to be available. 36 +How much quantity we are planning to produce. 37 +This time we will do it more than required. 34 +Last time there was a shortage of product. 34 +I don't want people to suffer from the supply. 36 +We produce an essential product. 27 +People need it on daily basis. 24 +Olivia, next time do a forecast beforehand. 36 +Forecasting the production will help us. 34 +This will save time for rework. 25 +I hope you people are understanding my thoughts. 40 +Very much ma'am we are with you in any decision. 37 +Sam, get your tools ready for the process. 34 +I will need the best in class tools. 28 +We produce the best in a class quality product. 38 +John, hand over me the reports of the process. 37 +Mike, what was the last time's estimate? 32 +Do we have any copy of that? 21 +Give me some time I'll find it out. 26 +Jack, you be ready with your design. 29 +This time we will produce your design. 31 +David, where is the operator of the milling machine. 43 +I want him to be very keen on this project. 33 +Daniel, it's your responsibility to supervise. 39 +That I have already taken care of. 27 +Max, you be along the whole process. 29 +People say our company has the best supply chain management. 50 +It is a hundred percent true I think. 29 +It is only possible because of you guys. 32 +You are the best team members. 24 +Lucy, from where we are sourcing product b's raw material. 47 +Ma'am is has been supplied by the Microsoft company. 42 +We have been in relation to their company for since long. 46 +They never delay the deliveries. 27 +Their supply has never stopped since we started. 40 +See these kinds of people we want in business. 37 +Our supply chain is three phases. 27 +Rachel, were you aware of this? 25 +No sir but I'm eager to learn about this. 31 +See our supply is based on production. 31 +Later we send it to the warehouse. 27 +Emma, do you know the next phase. 26 +Yes sir then we send it to the distributors. 35 +Yes, you are absolutely correct. 27 +This is called the primary billing phase. 34 +Here the business starts moving forward. 34 +Mia, do you know the last in the process. 32 +I'm a bit confused about that can you explain. 36 +Sure I'll let you know today all about the supply chain. 44 +The last transaction is between distributors and retailers. 51 +Since he is the last in the phase he sells the product. 43 +This is how all the supply chain works. 31 +Bella, you know about the transport right? 35 +Yes sir I'm aware of this thing. 24 +Good, I'm glad you know these things. 29 +Megan has good relations with the suppliers. 37 +Olivia, always handles the transport process. 39 +We need to talk with the suppliers next week. 36 +Can we schedule a virtual meet with them? 33 +It's not possible to go and meet every supplier. 38 +They live far away from our company. 29 +Right sir, I will send a notification to everyone. 41 +Sam, I want you to go to old supplier. 29 +He is one of the largest suppliers of our company. 40 +And also he has an outlet nearby only. 30 +We want our relation to strengthening with them. 40 +Ok, then I'll go and meet him personally. 32 +John, you also go with sam. 21 +Mike, just a request can you talk to you jack about the supply break. 55 +This time there was a supply break in the chain. 38 +That issue has resulted in a bad reputation. 36 +David, you are good with conversation. 32 +You can handle this situation properly. 33 +Daniel, you give him the required information. 39 +We don't want any delay in the supply of product B. 39 +Right sir, I'm personally looking into the matter. 41 +We have been in business for two decades. 33 +Still, our company produces the best quality product. 45 +This is all because of our quality control checks. 41 +We have been doing this on regular basis. 33 +This procedure has helped in staying at the top. 39 +Lucy, check with the last product reports. 35 +Everything is going well sir. 24 +The customers are happy with the quality of the product. 46 +See I said we are good at maintaining the quality. 40 +Rachel, who is the supervisor for quality control? 42 +Ma'am daniel is looking at the quality control department. 48 +Ok, then we have a smart person for the job. 34 +Daniel is well equipped with technical skills. 39 +Emma, we can also ask skilled laborers to check. 39 +Ok right sir I'll ask them to check in the assembly line only. 48 +That will be better than I expected. 29 +Mia, get me the list of software operators. 35 +These people know very well about quality. 35 +We can use their technology insights. 31 +Yes, I think it will save most of our time. 33 +These processes will help us attain higher accuracy. 44 +Bella, you also go and learn from them. 31 +Megan, you were aware of their expertise. 34 +Yes, ma'am actually we had a long discussion with them. 44 +That discussion with software people was insightful. 45 +Olivia, you also discuss it with Megan. 32 +Then you can also help daniel with quality control. 42 +This is the last process and the most important one. 42 +The products final quality is tested here. 35 +Sam, you also have experience in quality control. 41 +Yes, I did the same work in my previous company. 38 +So are willing to help them in the task. 31 +Sir, I would have but I'm occupied with some other work. 44 +Ok, then I'll ask John to take care. 27 +He will be able to learn new things. 28 +What do you say john? 16 +Yes, absolutely sir I always wanted to learn quality control. 51 +It's the best opportunity as of now. 28 +Joe, make arrangements for john then. 31 +Right away as you said will be done. 28 +Mike, where are you since morning? 28 +I want you to assist john with the new project. 37 +David will check the last quality of the product. 40 +Daniel will do the final documentation. 33 +I suppose we are done with the discussion. 34 +Anyone has some points to discuss? 28 +Not actually sir we have covered all the points. 39 +Harry, you will be operating the systems for the project. 47 +Sure I don't have any issue doing that. 30 +Max, I want you to be firm with the same design. 37 +I wake up at 7 o'clock in the morning with the ringing of my alarm. 51 +I turned off the alarm and get up. 26 +Then I had a shower. 15 +After having a shower I get dressed. 29 +I have my breakfast. 16 +I always go to school at 8 o'clock. 26 +As I am punctual, I can't be late. 25 +I have my lunch at school. 20 +I have my lunch at the office. 23 +Chicken is my favorite cuisine. 26 +I also read books in the evening. 26 +I like to go to roam with my friends. 28 +I got to bed early as it keeps me fit. 28 +Actually, I want to say this. 23 +Actually, I was stuck there. 23 +Actually, I caught in a traffic jam. 29 +Actually, I want to study. 21 +Actually, I don't have money to purchase books. 38 +Actually, I worked hard. 20 +Anyway, what you want to do now? 25 +Anyway, have you learned English? 28 +Anyway, will you meet me? 20 +You know tomorrow is an India Pakistan match. 37 +You know the competition is very much nowadays. 39 +You know I like ice-cream very much. 28 +By the way, what is your name? 23 +By the way, what is your school name? 29 +By the way, where did you learned pretty good English? 44 +By the way, where do you play cricket? 30 +Let me tell you, I am an English teacher. 32 +Let me tell you, I am feeling sick. 27 +Let me tell you, I am very fond of English. 33 +Let me tell you, I love you very much. 29 +Let me tell you, there are many talented people living in late India. 56 +Obviously, I do. 13 +Obviously, I love it. 17 +You won't believe you will change totally. 34 +You won't believe English is very simple. 33 +Why are you so dejected today. 24 +I penned a letter. 14 +Where do you put up? 15 +My mother mopped up my room. 22 +Railway commuter. 15 +You have to enhance your English skills. 33 +Why did you deceive me? 18 +Why didn't you intimate that yesterday was my birthday? 45 +My father bristled at me. 20 +I feel very cozy with you. 20 +I have to embellish my house. 23 +The Indian economy is robust. 24 +His tactics were good. 18 +My brother is sedate. 17 +Why are you so sedate. 17 +He is a promising guy. 17 +You should drink in the lecture with your teacher. 41 +I blatantly say that I can speak English. 33 +Can you look up these words in the dictionary? 37 +Can you look up the location on Google? 31 +I am looking up my keys. 18 +She looked up for a new apartment. 27 +He was very brave but he gave up. 25 +I will never give up. 16 +He always makes up some excuses so that he could not be punished. 52 +She made-up a story which is liked by everyone. 37 +You had a fight with him last year so you should make-up with him. 51 +I took-up interest in cricket at sixteen. 33 +She brings up her children. 22 +I will bring up this topic at the next meeting. 37 +I was not expecting him to be here but he turned up. 40 +My son was lost but suddenly he turned up in front of me. 44 +My neighbor is good. 16 +My friend is good. 14 +The cat is hungry. 14 +This shirt is blue. 15 +You are clever. 12 +You are a nice person. 17 +You are handsome. 14 +That shoe is small in size. 21 +A rich man. 8 +He is brave. 9 +I am fearless. 11 +All the students have passed the medical exam. 38 +I know little about country music. 28 +I know little about hip-hop dance. 27 +He gave me some chocolates. 22 +We have enough time for practice. 27 +You don't have much milk. 19 +I have only one pen. 15 +Rose buy three books. 17 +The third-place goes to Marie! 24 +This book is good. 14 +That mango is good. 15 +These books are costly. 19 +Those apples are sweet. 19 +I can't forget that incident. 23 +This time I won't fail you. 20 +Whose house are you staying in? 25 +Which way shall we go? 17 +Whose book was that? 16 +Which pen do you like more? 21 +What books are you buying today? 26 +Neither of us was present. 21 +Each boy will play football. 23 +Every person can sing well. 22 +I don't know either of them. 21 +Is there any milk left? 18 +Can I see that one? 14 +They are both good teachers. 23 +My shirt is black. 14 +This dog is mine. 13 +Our school is famous. 17 +Where is your sister? 17 +His wife is very beautiful. 22 +It's her guitar. 12 +We're going in their car. 19 +It's yours. 8 +The chameleon can change its color. 29 +He is an American person. 20 +He speaks Indian English. 21 +Mike is an Australian player. 24 +My brother likes Italian cuisine. 28 +Japanese cars are wonderful. 24 +All African people are not black. 27 +Do you enjoy Spanish food? 21 +German cars are among the finest. 27 +Alaskan salmon is nutritious and delicious. 37 +A gala day. 8 +At snail's pace. 12 +Apple of discord. 14 +Try on. 5 +Try out. 6 +At large. 7 +Aboveboard. 10 +Turn against. 11 +At low ebb. 8 +Wink at. 6 +Add fuel to the fire. 16 +Above all. 8 +Turn in. 6 +Adept in. 7 +All moonshine. 12 +Watch over. 9 +All over with. 11 +As good as gold. 12 +At a stretch. 10 +At a standstill. 13 +Wear off. 7 +At any cost. 9 +All the rage. 10 +While away. 9 +You are the apple of my eyes. 22 +Bad apple. 8 +She has a heart of gold. 18 +He has a heart of stone. 18 +He has a one-track of mind. 20 +He has a big mouth. 14 +My baby has a sweet tooth! 20 +You are not paying heed at all. 24 +Your ears are tingling. 19 +It's not a big deal. 14 +She did it behind my back. 20 +Stop building castles in the air. 27 +I am dead broke. 12 +I am dead died. 11 +You can do it on the run. let's go! 24 +I did it on the fly, it's nothing special. 32 +Do or die. 7 +He has a good head on his shoulders. 28 +I broke out in a cold sweat. 21 +The day of his marriage was a gala day for him. 36 +The work is going on at a snail's pace. 29 +The small piece of land is the apple of discord between the brothers. 56 +What a lovely dress! why don't you try it on? 33 +You should try out that led t.v. before you finally buy it. 45 +He is a heartless fellow, his sympathy for the widow is just an eyewash. 58 +The criminal is still at large. 25 +He is above board in his dealings. 27 +She turned against her best friend. 29 +His efficiency is at a low ebb. 24 +I cannot wink at his faults any longer. 31 +Why are you adding fuel to the fire? 28 +He is a good doctor, above all he is a good man. 36 +He turned in his answer paper and came out of the examination hall. 54 +She is adept at painting. 20 +His boss dismissed him. to add injury, he didn't give him wages for one week. 60 +His statement was not based on reality. it was all moonshine. 49 +The dog faithfully watched over his master's sleeping child. 50 +The matter was all over with his departure. 35 +He is good as gold. 14 +He worked for 12 hours at a stretch. 28 +Due to a shortage of funds, the construction work is at standstill. 55 +This color wears off soon. 21 +I want to get this at any cost. 23 +This fashion was all the rage ten years ago. 35 +Don't open the door. 15 +Don't ask me for money. 17 +Don't be afraid to fail. 18 +Don't be arrogant. 14 +Don't be disappointed. 18 +Don't be jealous. 13 +Don't be late for school. 19 +Don't be nervous. 13 +Don't be overconfident. 19 +Don't be proud of yourself. 21 +Don't be shy to speak English. 23 +Don't be upset with the results. 25 +Don't behave like a child. 20 +Don't bite your nails. 17 +Don't care what other things. 23 +Don't chew gum in class. 18 +Don't come to my house. 17 +Mind your language. 16 +None of your business. 18 +He is coming soon. 14 +I not sure. 8 +Not recently. 11 +Don't kid. 7 +I am not ready yet. 14 +I would like to go for walk. 21 +This is very important. 19 +I am cleaning my room. 17 +It's longer than 2 kilometers. 24 +That is right. 11 +That is too much. 13 +More than that. 12 +I need to change clothes. 20 +Just a moment. 11 +I will come back later. 18 +Right there. 10 +Come as soon as possible. 20 +Eat whatever you want. 18 +Get it repaired by monday. 21 +Mom make a green tea for us. 21 +One tea without sugar please! 24 +Do you brush your teeth twice a day? 28 +Do you mind if i close the window? 26 +Do you fancy going out for a drink? 27 +I spend a lot of money on a books. 25 +Please observe. 13 +Does anyone want some more rice? 26 +Do you often come to this restaurant? 30 +Will i teach you how to operate it? 27 +I usually go to walk after dinner. 27 +I will be very happy to work with you. 29 +Do you think we need a car? 20 +I think you should go to see a doctor. 29 +If you are late please inform me. 26 +Let us go out for dinner. 19 +Get it fix by someone else. 21 +Come in. 6 +Don't cry. 7 +Go back. 6 +Don't shout. 9 +Stop there. 9 +Turn left. 8 +Turn right. 9 +Look straight. 12 +Look down. 8 +Get ready. 8 +Who's speaking. 12 +Your friend. 10 +Of course. 8 +Walk slowly. 10 +That's all. 8 +What happened? 12 +Switch on. 8 +Switch off. 9 +Try again. 8 +Repeat again. 11 +Give me. 6 +Take this. 8 +Don't jump. 8 +Don't hurry. 9 +Run fast. 7 +Very good. 8 +Shut up. 6 +Take the risk. 11 +Join us. 6 +Hold this. 8 +Don't move. 8 +Keep quiet. 9 +Happy birthday. 13 +Please help. 10 +Next time. 8 +Tell me. 6 +Don't mind. 8 +Take outside. 11 +I enjoy teaching English. 21 +I enjoyed teaching English. 23 +I will enjoy teaching English. 25 +John plays cricket. 16 +John and his friends play cricket. 28 +I read books. 10 +I like dancing. 12 +Swimming is my favourite sport. 26 +I want to dance. 12 +I create videos to teach. 20 +She can't go out. 12 +I couldn't swim. 12 +The man runs to the store. 20 +He wanted to find a solution. 23 +He is looking for a solution. 23 +Looking for solutions is something he enjoys. 38 +They went to the mall today. 22 +The outfielder leaped for the baseball. 33 +Many people travel to the ocean in the summer. 37 +The sailboat glides over the water. 29 +The lion is the king of the jungle. 27 +I can't swim yet. 12 +I have a suggestion to help you study. 30 +To run is often tiresome. 20 +You promised me the last ticket. 26 +I went for a walk around the park. 26 +She was waiting in the room before he came in. 36 +Does your brother know my brother? 28 +We want john to act as club secretary. 30 +I like taking photographs of insects. 31 +Coming home last night, I saw a deer run across the road. 45 +I decided not to go to new york. 24 +I'd rather not eat meat. 18 +I might not come. 13 +He asked me not to be late. 20 +I'd like you not to sing so loudly. 26 +I sing. 5 +We tell stories at night. 20 +Maya laughed. 11 +The shelter collapsed. 19 +I like to get up early at the weekend. 29 +Harriet dislikes cleaning the cooker. 32 +I certainly wouldn't want to see him again. 34 +We persuaded them to join us. 23 +I like to play with my puppy. 22 +She works hard to pass the test. 25 +Smoking is prohibited in the kitchen. 31 +He went to the city to find work. 25 +The boy saved the cat from the dogs. 28 +I have finished my dinner. 21 +The nurse is dressing the wounds of the patient. 39 +My mother bakes tasty cookies. 25 +He wants to launch a business. 24 +A florist is a person who arranges flowers artistically. 47 +The doctor is attending to the patient. 32 +I need a pen to write. 16 +I worked very hard yesterday. 24 +Begin know. 9 +Oh snap. 6 +Take roadtrip. 12 +Take risk. 8 +Don't ask question. 15 +Don't try again. 12 +Hello sweet heart. 15 +Stop over analyzing. 17 +Lets get high. 11 +Lets get drunk. 12 +Lets just dance. 13 +Lets be friends. 13 +Who are you. 9 +No strings attached. 17 +Ohh god save me. 12 +Recess is over. 12 +I can do. 6 +Lets run away. 11 +Laughter is best. 14 +Based on results. 14 +He work smartly. 13 +Happiness is choice. 17 +I really appreciate. 17 +Yes you can. 9 +Oh.. what a fun. 10 +Be extra ordinary. 15 +Lets's stay home. 13 +Any thing else? 12 +Organization of future. 20 +Are you free. 10 +Just a little. 11 +No, thank you. 11 +See you later. 11 +See you tonight. 13 +Take it outside. 13 +He is alright. 11 +This is right. 11 +Grab a seat. 9 +Don't be hasty. 11 +Let's not be hasty. 14 +Where to go? 9 +Stay a while. 10 +Stand in line. 11 +Stop avoiding me. 14 +Stop that immediately. 19 +Stop this nonsense. 16 +Take a nap. 8 +Take my hand. 10 +Yours is better. 13 +Write this down. 13 +Wipe your eyes. 12 +Wake them up. 10 +Wait till seven. 13 +Try this out. 10 +Try it now. 8 +Remember your promise. 19 +Do the dishes. 11 +Safety comes first. 16 +Nothing feels right. 17 +Anything could happen. 19 +Give it up. 8 +Give it back. 10 +People are weird. 14 +Count on me. 9 +Hold my calls. 11 +Almost everyone came. 18 +Try to relax. 10 +Ask your question. 15 +Here, drink this. 14 +Make it quick. 11 +Nobody saw anything. 17 +Do something else. 15 +Here comes trouble! 16 +Keep looking around. 17 +Let them fight. 12 +Everybody thought so. 18 +Knock it off. 10 +Knock yourself out! 16 +Something felt wrong. 18 +Keep on working. 13 +Someone dropped this. 18 +Bring that home. 13 +Hey, turn around! 14 +Take that home. 12 +Look this way. 11 +Everything looks good. 19 +Nothing has changed. 17 +Make a decision. 13 +He is losing. 10 +Come out here. 11 +Try once again. 12 +Deep sea. 7 +Beans and cheese. 14 +Severe heat. 10 +Breathe deep. 11 +Three meals. 10 +Green leaves. 11 +Extremely easy. 13 +Peaches and cream. 15 +Speak chinese. 12 +We went for deep sea diving in Goa. 27 +The sea was very deep. 17 +I want beans and cheese in the sandwich. 32 +There were less beans and cheese in the cuisine. 39 +I got skin burn due to severe heat. 27 +My car's colour became faint due to severe heat of sun. 43 +Take deep breathe while doing physical activity. 41 +One should practice taking deep breathes. 35 +Everyone should consume three meals in a day. 37 +There was a arrangement of three meals at the function. 45 +The tree was having more green leaves. 31 +In the winter season trees have more green leaves. 41 +It was an extremely easy exam. 24 +That exercise was extremely easy for me to do. 37 +Good night buddy have sweet dreams. 29 +Think of sweet dreams while you are sleeping. 37 +The ice cream contained peaches and cream. 35 +I like peaches in submerged in the cream. 33 +People speak chinese in china. 25 +I have a problem when i speak chinese. 30 +The employees agreed to meet at eight fifteen. 38 +Don't keep the tv near the heater. 26 +It's extremely easy to cheat when the teacher isn't here. 45 +Please speak to peter about the employee meeting. 41 +Steve will reread the email before he leaves. 37 +Big city. 7 +Innocent victim. 14 +Drink milk. 9 +Simple living. 12 +Fish and chips. 12 +Trip to italy. 11 +Spring picnic. 12 +This thing. 9 +Winter wind. 10 +Mumbai is a very big city. 20 +There are more opportunities in big city. 34 +He was an innocent victim. 21 +The victim was innocent still she was punished. 39 +One should drink milk everyday. 26 +Sometimes children hesitate to drink milk. 36 +We watched a children's film yesterday. 32 +Successful people believe in simple living. 37 +Simple living is very hard to achieve. 31 +There were chips made of fish. 24 +Can you cut the fish like chips. 25 +I went on a trip to italy last year. 27 +Lets go a trip to italy next year. 26 +The spring season is good for picnic. 30 +We go for a picnic usually in spring season. 35 +From where this thing came? 22 +This thing has many attributes. 26 +In winter wind is very cool. 22 +There was less wind in last winter. 28 +Kim will visit her big sister linda in virginia. 39 +In the beginning it was difficult for jim to quit drinking. 48 +The smiths invited him to an informal dinner. 37 +This city has an interesting history. 31 +When did bill clinton visit the middle east? 36 +The same day. 10 +Stay away. 8 +Escape from jail. 14 +Take a break. 10 +Stay the same. 11 +Explain the situation. 19 +Play baseball. 12 +Eighty eight. 11 +Bake a cake. 9 +Save the whales. 13 +She is going to the church the same day as him. 36 +My birthday is as the same day as my father. 34 +Police are advising fans without tickets to stay away. 45 +Stay away from the edge of the cliff. 29 +The prisoners used the tunnel to escape from jail. 41 +In the movie the villain make the hero escape from jail. 45 +We'll take a break now and resume in half an hour. 38 +I see it's approaching lunchtime, so let's take a break. 44 +The more things change, the more they stay the same. 42 +Half of the people believed economy would stay the same. 46 +I tried to explain the situation to my boss. 35 +Please explain the situation to me immediately. 40 +Kids who used to play baseball are now playing basketball. 48 +We used to play baseball in the vacant lot. 34 +His father is an eighty eight year old man. 34 +The policy covers the health upto eighty eight years of age. 49 +Bake a cake and do chocolate icing. 28 +Bake a cake for his friend's birthday tomorrow. 38 +Please donate to this charity to save the whales. 40 +There is a protest going on to save the whales. 37 +Presidential elections. 21 +Bend your legs. 12 +Plenty of energy. 14 +Remember the pledge. 17 +Better friend. 12 +Heavy metal. 10 +Get better. 9 +Elegant dress. 12 +Next wednesday. 13 +Well read. 8 +In america, presidential elections are held every four years. 52 +Presidential elections are due to be held in ten days' time. 48 +For the next exercise, please bend your legs. 37 +If you want to be flexible, you need to bend your legs. 43 +The cylinder moulding drier caused a plenty of energy. 45 +We used a tin of powder, a damp cloth and plenty of energy. 46 +When you serve at the office remember the pledge you made. 47 +If you remember the pledge, you'll know that it is a lie. 44 +Yet somehow we stumbled along and became better friends. 47 +The cat and dog may kiss, yet are none the better friends. 46 +His music is a heady brew of heavy metal and punk. 39 +These symptoms will start to get better with time. 41 +The weather is bound to get better tomorrow. 36 +They were generally attired in elegant dress. 38 +She was in an elegant dress and glass slippers. 38 +Entries must arrive by first post next wednesday. 41 +Let us adjourn the meeting to next wednesday. 37 +It was good to see that he was clever and well read. 40 +In the months to come we might well read about profiteering. 49 +She complained about her weight but ate the cake anyway. 46 +Jake hates waiting for trains and planes. 34 +It rains and hails in april and may. 28 +I will stay in the game even though it's late. 35 +My neighbour from spain moved away today. 34 +Without some extra effort you will never excel. 39 +Jenny and her friend had eggs for breakfast. 36 +I expect this session to end at ten. 28 +On the seventh of february the weather was wet. 38 +I see my best friend fred every seven days. 34 +Bad example. 10 +National anthem. 14 +Back at the ranch. 14 +Accurate answer. 14 +Bad habit. 8 +Practical plan. 13 +Annual gathering. 15 +Last chance. 10 +Handsome actor. 13 +Angry man. 8 +His rivals would denounce him as a bad example for the youth. 49 +Her loose ways are setting a bad example to her younger siblings. 53 +We must always stand while singing our national anthem. 46 +The concert began with the national anthem. 36 +He was back at the ranch after three weeks. 34 +The cattle's are back at the ranch after years. 37 +You have given the accurate answer of the problem. 41 +The accurate answer to his question was not found. 41 +A bad habit in a child should be nipped in the bud. 39 +The boy drifted into the bad habit of smoking. 37 +We must strike out a practical plan of action. 37 +He tried to crystallize his ideas into a practical plan. 46 +This annual gathering already has more delegates than last year. 54 +This year the annual gathering of office will be at town hall. 50 +This is my last chance to pass the boards. 33 +The teacher gave her one last chance to prove she could behave. 51 +The hero of the movie is a very handsome actor. 37 +The tv show is filled with handsome actors. 35 +You've always struck me as being an angry man. 36 +The door shut with a bang after the angry man. 36 +This is your last chance to give me an accurate answer. 44 +Sam sat at the back of the math class. 29 +Danny had a salad and a sandwich in the cafeteria. 40 +Nancy has a bad attitude in her spanish class. 37 +Kathy would rather study acting at the national academy. 47 +Common problem. 13 +Body shop. 8 +Occupy the office. 15 +Office politics. 14 +From top to bottom. 15 +Logical response. 15 +Hot topic. 8 +Modern hospital. 14 +Sloppy job. 9 +It's a common problem but this doesn't make it less disturbing. 50 +There's also the common problem of under-staffing. 41 +The body shop expanded rapidly under the franchise system. 49 +Body shop issued a warning as its product strategy hit problems. 53 +We need to rent the cabins to occupy the office completely. 48 +Boss told the new employees to occupy the office. 40 +I don't like to get involved in office politics. 38 +They cleaned the house from top to bottom. 34 +This company needs reorganizing from top to bottom. 43 +The logical response is to retreat into your private life for love. 55 +He has given a logical response for the team. 36 +The hot topic in political circles here is about the senator. 50 +Physical fitness is the hot topic in the world. 38 +The equipment of modern hospital may take one year to fix. 47 +The design of the modern hospital is in the making. 41 +The nonstop news reports jacked up the emotions. 40 +We took a nonstop flight to los angeles. 32 +The carpenter i hired did such a sloppy job in the kitchen. 47 +He castigated the secretaries for their sloppy job of filing. 51 +Ronald is confident that he got the job. 32 +Scott goes to a lot of rock concerts. 29 +The doctor operated in the modern hospital. 36 +Bob will probably lock the office. 28 +He's got a lot of dollars in his pocket. 30 +Pause in the hall. 14 +Awful thought. 12 +Water the lawn. 12 +Talk until dawn. 13 +Autumn in Austria. 15 +Walk the dog. 10 +Small talk. 9 +Already exhausted. 16 +Tall wall. 8 +Caught the ball. 13 +He used to pause in the hall after looking at me. 38 +I had to pause in the hall for the janitor. 33 +An awful thought has just struck me. 29 +You should always avoid awful thought. 32 +The gardener forgot to water the lawn. 31 +He gives me allowance to water the lawn. 32 +When he came to the city we had to talk till dawn. 38 +Deciduous trees shed their leaves in autumn in Austria. 46 +Maple leaves turn red in the autumn in Austria. 38 +He used to walk the dog in the evening daily. 35 +I will be out of town so please walk the dog daily. 39 +He was never very good at making small talk with her parents. 49 +She opened the conversation with some small talk. 41 +He was already exhausted when he came home. 35 +I was already exhausted before even the program started. 47 +There was a tall wall at the edge of the cliff. 36 +The hospital had very tall walls. 27 +He caught the ball with great dexterity. 33 +I reached out a hand and caught the ball. 32 +The audience applauded even though the talk was awful. 45 +His small daughter thought that santa claus would come in august. 54 +I saw your mother-in-law in the mall. 28 +He bought an automobile at the auction last fall. 40 +This sauce is awesome, sam! 22 +Phone home. 9 +Own a home. 8 +Almost over. 10 +Open road. 8 +Drove slowly. 11 +Don't smoke. 9 +Low profile. 10 +Slow motion. 10 +Old poem. 7 +Golden bowl. 10 +Don't phone home from your hotel. 26 +Maybe when they didn't phone home, the alarm bells rang. 45 +Their dream is to own a home in suburbia. 32 +I have to own a home before i turn 30. 28 +Their relationship is almost over now. 32 +My dissertation is almost over so i can go now. 37 +Put on a helmet, fire up your engine and head out on the open road. 52 +The car's performance is good, especially going fast on the open road. 57 +We drove slowly through the driving rain. 34 +The old car pulled hard as we drove slowly up the hill. 43 +I don't smoke and i drink only moderately. 33 +People who don't smoke are healthier than people who do. 45 +I advised her to keep a low profile for the next few days. 45 +During the event clinton will keep a low profile. 40 +Let's see that goal again in slow motion. 32 +Everything seemed to proceed in slow motion. 37 +He dedicated an old poem to his teacher. 32 +She explained an old poem to the children. 34 +He used to eat food in a golden bowl. 28 +We both hope it's going to snow. 24 +Oh, no! don't open the window! it's cold. 29 +Do you want to go bowling or roller skating? 35 +I chose a bowl of soup, potatoes, roast beef, and a soda. 45 +I don't know if joan smokes. 21 +Young son. 8 +Jump up. 6 +Fun in the sun. 11 +Another subject. 14 +Wonderful mother. 15 +Under the rug. 11 +Number one. 9 +Enough money. 11 +Sunday brunch. 12 +Their young son had been injured seriously in an accident. 48 +Sometimes my young son wants to cross the road alone. 43 +I might jump up and clap my hands. 26 +He continued to jump up and down like a boy at a football match. 50 +Beach is all about having fun in sun and water. 37 +The children had fun in the sun on weekend. 34 +The direct downward view is dull unless it contains another subject. 57 +You should choose another subject for your dissertation. 48 +She was a wonderful mother to both her children. 39 +She proved herself to be a wonderful mother for him. 42 +He looked hard at the outline of the body under the rug. 44 +They key to the room is under the rug. 29 +The economy is the number one issue by far. 34 +It's been number one in the charts for six weeks. 38 +She is an undercover agent for 3 years. 31 +He worked undercover in germany and northern ireland. 45 +She didn't have enough money for the bus fare. 36 +He has barely enough money to live on. 30 +They always put on a mean sunday brunch. 32 +They serve delicious sunday brunch on fourth street. 44 +Your younger brother doesn't trust us. 31 +What country does he come from? 25 +I had another fun summer in london. 28 +I don't have much stuff in the trunk of my truck. 37 +I love the sunny summer months. 25 +Too few. 6 +Fruit juice. 10 +Soup spoon. 9 +New suit. 7 +True value. 9 +Blue shoes. 9 +New moon. 7 +Suitable suitcase. 16 +Two rooms. 8 +Super cool. 9 +There were too few people at the meeting. 33 +The tax on films is causing too few films to be produced. 45 +There was fruit juice in the refrigerator. 35 +Fruit juice drinks do not compete directly with coca-cola. 48 +Smooth the mixture with the back of a soup spoon. 39 +His soup spoon dropped onto the ground. 32 +He's gone to be measured for a new suit. 30 +My father bought a new suit on his charge account. 40 +The true value of the company was published later. 41 +His friendship was the true value of their bond. 39 +He was wearing blue shoes under his tuxedo. 35 +The kid wanted the blue shoes with the cartoon on it. 42 +The new moon was the occasion of festivals of rejoicing. 46 +It was black as night at new moon and white as frost at first light. 53 +I had to find a suitable suitcase for the flight. 39 +She needed a suitable suitcase to go with her outfit. 43 +There is a plywood partition between the two rooms. 42 +A bead curtain separated the two rooms. 32 +The new car by toyota has some super cool features. 41 +The new roof was installed in june. 28 +I drink fruit juice and eat a lot of soup. 32 +Your blue shoes are really cool. 26 +I need proof that you're telling the truth. 34 +The statue on the avenue is truly beautiful. 36 +First person. 11 +Purple shirt. 11 +Learn german. 11 +Other world. 10 +Serve dinner. 11 +Third term. 9 +Firm words. 9 +Early bird. 9 +Nervous girl. 11 +Thirty third. 11 +Autobiographies are written in the first person. 41 +He became the first person to cross the desert on foot. 44 +She was wearing a purple shirt with black trousers. 42 +The lead guitarist wore a purple shirt in the concert. 44 +He is trying to learn german language. 31 +I chose to learn german rather than french. 35 +These are issues that are not related about the other world. 49 +Once you step into the other world, you can never come back. 48 +Please clear your books away so that i can serve dinner. 45 +My mother used to serve dinner to us early. 34 +The democrats are hoping to deny him a third term in office. 48 +He was dropping out after his third term. 33 +He used firm words to deny his proposal. 32 +You have to use firm words to scare them away. 36 +It is the early bird that catches the worm. 34 +My dad's been an early bird his whole life. 33 +She was a very nervous girl in the beginning. 36 +The new secretary is a very nervous girl. 33 +His company was thirty third in the ranking. 36 +It was his thirty third birthday party. 32 +I will work during the third term. 27 +They served turkey for dinner. 25 +Her purple shirt is dirty. 21 +She gave birth to a third girl. 24 +It's not worth worrying about another birthday. 39 +Lime pies. 8 +White white. 10 +Fly a kite. 8 +Nice try. 7 +Nine lives. 9 +Bright light. 11 +Fly high. 7 +Sign on the line. 13 +Fine dining. 10 +Ninety nine. 10 +His favourite dessert was lime pies. 30 +This eatery has the best lime pies in the city. 37 +The thought will be similar to the vast white white clouds. 48 +The house was too white for my liking. 30 +There isn't enough wind to fly a kite. 29 +My brother was used to fly a kite in the night. 36 +It was a nice try by him, but he couldn't win the match. 42 +She made a really nice try at convincing the boss. 40 +Cats are supposed to have nine lives. 30 +The modern belief that a cat has nine lives comes from a tradition. 54 +I closed my eyes against the bright light. 34 +The bright light made her look away. 29 +We can't fly high because we overweight ourselves. 41 +For once he allowed the cork to fly high into the air. 42 +You have to sign on the line in the form. 31 +The agent made me sign on the line of agreement. 38 +There is a new fine dining restaurant in the city. 40 +I like fine dining over fast food stalls. 33 +The batsman got out after making ninety nine runs. 41 +Why is the price so high for that design? 32 +The wildfire started on friday night. 31 +He was tired after hiking for five hours. 33 +It's a nine-hour drive to iowa. 23 +We had lime pie and dry white wine. 27 +About an hour. 11 +Crowded house. 12 +Loud announcement. 16 +Around the mountain. 17 +Brown couch. 10 +Found out. 8 +Down and out. 10 +Pronounce the vowel. 17 +Ninety nine percent people turned up for the event. 42 +The journey takes about an hour, door to door. 37 +She spoke eloquently on the subject for about an hour. 44 +I lived in a very crowded house growing up. 34 +I had to stay at the crowded house because of the wedding. 46 +There has been sporadic violence downtown. 36 +Pick pocketing is rampant in the downtown area. 39 +She made a very loud announcement about her wedding. 43 +The political party is making loud announcements. 42 +The countdown to the election has already begun. 40 +The highway winds around the mountain. 32 +There is an abandoned wooden cabin around the mountains. 47 +He had a brown couch in his living room. 31 +We bought a brown couch from the store. 31 +The police hasn't found out who set fire to the storehouse. 47 +We found out he'd been stealing from us for years. 39 +Nobody loves you when you're down and out. 33 +He has not been completely down and out yet. 35 +Please pronounce the vowel correctly. 32 +I doubt that the clown will say something profound. 42 +There are flowers all around the house. 32 +Is that your spouse in the brown blouse? 32 +The clouds behind the mountain will bring showers. 42 +The brown cow is near the fountain. 28 +Enjoy the toy. 11 +Spoiled boy. 10 +Appointment in detroit. 20 +Broiled oysters. 14 +Boiling point. 12 +Annoying noise. 13 +Destroy the poison. 16 +Loyal employee. 13 +Moist soil. 9 +Avoid the moisture. 16 +If you need a good accent, pronounce the vowel clearly. 45 +The kids in the orphanage used to enjoy the toy a lot. 42 +When you were little you used to enjoy the toy a lot. 41 +He was a very ill mannered and spoiled boy. 34 +He was sent to boarding school because he was a spoiled boy. 48 +She used to have an appointment in detroit for a check-up. 46 +I have an appointment in detroit with my dentist. 40 +She ordered broiled oysters with garlic breadcrumbs. 45 +My grandmother had a great broiled oyster recipe. 41 +Gradually increase the temperature to boiling point. 45 +Heat the water until it reaches boiling point. 38 +She made a very annoying noise when she laughed. 39 +The motorbike is supposed to make annoying noise. 41 +We had to call a specialist to destroy the poison. 40 +We have to destroy the poison before it ruins all the plants. 49 +It is such a pleasant change to have such a loyal employee. 47 +She was awarded for being a loyal employee. 35 +This herbicide degrades in moist soil. 32 +They endure for weeks in moist soil and dead animal tissues. 49 +If you want no damp conditions then avoid the moisture. 45 +It is not possible to avoid the moisture in cities with beach. 50 +He destroyed the poison by flushing it down the toilet. 45 +Roy had an appointment in detroit. 28 +Joyce is annoyed and a little paranoid. 32 +I was disappointed with joy's choice. 30 +Why is floyd avoiding roy? 21 +You have to submit the assignment on time. 34 +Wash your hands before the lunch. 27 +I will obey my teaching. 19 +Where do you see yourself 5 years from now? 34 +Sorry, i didn't understand. 22 +Ok. bye, friends! 13 +Let me give some time to prepare lunch. 31 +Let him go for the match. 19 +I will be in the office by 230. 23 +Welcome, dear. 12 +Let's celebrate. 13 +I will come tomorrow. 17 +You can go there. 13 +Hi, good morning. 14 +Hello, good afternoon. 19 +I am sure dear. 11 +What is going on? 13 +Oh, i am fine. 10 +What about you? 12 +You looking great that day. 22 +Hello, good evening. 17 +Cool, see you there. 16 +That's wonderful! 14 +Hey, i really like your new dress. 27 +Those glasses really suit you! 25 +Congratulation, dear. 19 +Your every desire come true. 23 +It's a party time. 13 +When will you give a party? 21 +Please call. 10 +You are very beautiful. 19 +Wish you happiness for your bright future. 35 +Today can i meet you? 16 +You are welcome. 13 +Too good for you. 13 +Thanks in advance. 15 +I will be there in a minute. 21 +You are an angel. 13 +I am grateful for your assistance. 28 +I don't have the words to thank you. 27 +Keep in touch. 11 +You can't be too careful to make friends. 32 +Have a great future life. 20 +Have happy married life. 20 +Hope you feel brighter soon. 23 +My heartbeats for you. 18 +You are a billion-dollar girl. 24 +I am ready. 8 +Hope you find. 11 +I am good. 7 +Lot's of love. 10 +All are fine? 10 +When you come. 11 +Say hi to him from me. 16 +Can you call me tomorrow? 20 +I pray for you. 11 +It's a lovely day. 13 +Happy anniversary to both of you. 27 +Are you sure, you will come? 22 +Are you kidding? 13 +Believe me, i am sure. 17 +How is your sister? 15 +I scare, it's true. 14 +How was your lockdown day? 21 +Oh, hi lucy. 9 +I am doing good. 12 +Do you complete your lunch? 22 +Are you busy? 10 +He will come there in 10 minutes. 26 +I will join you at 4 pm. 17 +Where are you going next week? 24 +Meet me on sunday. 14 +I am totally free. 14 +Best of luck. 10 +Have a great life ahead. 19 +Hey, congratulations. 19 +I am on the way just coming. 21 +Welcome back, dear. 16 +Just a second i tell you. 19 +Don't worry, be happy! 17 +Merry christmas dear. 18 +Lovely greetings, thank you. 24 +Oh, my god! 8 +You can ask me anything, dear. 24 +I hope, your idea helps me. 21 +Not a big deal. 11 +Watch out! there's a car coming. 24 +Be careful! the floor is wet. 22 +Look out for that tree! 18 +Don't go there. 11 +Smoking prohibited. 17 +If you go hiking alone, you will get lost. 33 +Don't check your phone when crossing the street. 39 +I'll be back in an hour. don't answer the door for anyone. 43 +I'm warning you if you do that again, there will be problems. 48 +Keep calm. 8 +Only for boys. 11 +Go away from the poll. 17 +Be careful, the chair is broken. 26 +Be careful you will walk on pieces of glass. 35 +Drink and drive are not allowed. 26 +Keep your phone on silent mode. 25 +Do not tease animals in the zoo. 25 +Do not give any food to animals. 25 +Don't come in without permission. 27 +Do not park vehicles here. 21 +Don't go-ahead. 11 +Dead end ahead. 12 +School ahead. 11 +To away zone. 10 +Smoking is injurious to health. 26 +Keep to the right. 14 +Keep please take care of the cleanliness of this place. 45 +Don't spread garbage here. 21 +Take off your shoes out. 19 +Take care! 8 +Do not take bath here. 17 +Deepwater, don't go in. 18 +Only for ladies. 13 +Mobile is not allowed. 18 +Take a left turn. 13 +The pool is damaged, don't go on. 25 +Bump ahead, go slow. 16 +Fire, stay away from here. 21 +Drinking water, don't waste it. 25 +Take an appointment first. 22 +Do not touch it. 12 +Keep your children away from here. 28 +Wear your mask first. 17 +Don't come in without a mask. 22 +Do not shout, please. 17 +Speak slowly here, please. 22 +Package not child-resistant. 24 +Straight prohibited, no entry. 26 +Horn prohibited. 14 +No parking zone. 13 +Dangerous dip ahead. 17 +Do not drive over the speed. 22 +Drive slow, student crossing ahead. 30 +The narrow road ahead. 18 +Emergency exit only. 17 +Don't drink the tap water. 20 +Don't go anywhere. 14 +For inhalation only. 17 +Medication should be taken with plenty of water. 40 +Keep a distance from it. 19 +Do not speak loudly. 16 +Sit in a raw. 9 +Nicotine is injurious to health. 27 +Boys are not allowed in the hostel. 28 +Anyone can not go out after 10 pm. 26 +Always drive the left side. 22 +Terrible curve ahead, go slow. 25 +Stay safe, stay home. 17 +Keep quite. 9 +Be careful from fire. 17 +Be careful, terrific circle ahead. 29 +Do not wash your hand here. 21 +Do not stand, sit, or climb on a zoo fence. 33 +Do not drop your cigarette butts on the ground. 38 +Garbage throw in the dustbin. 24 +Please don't feed fingers to the animals. 33 +Do not drink water, fish crap in it. 28 +Hot surface, do not touch. 21 +Dangerous area, keep out. 21 +Entry by permit only. 17 +Do not stand here. 14 +Please do sit here. 15 +Dangerous animals, do not cross the barrier. 37 +Protective clothing is required in this area. 38 +Please wash your hands after petting animals. 38 +Touching wires causes instant death. 31 +A face mask is required to enter this establishment. 43 +Attention gentlemen, this s a women's restroom. 39 +Do not breathe under the water. 25 +Do not step on. 11 +Keep away from fire. 16 +Don't do anything stupid! 20 +Please queue at safe distance. 25 +Do not look directly at lights. 25 +No swimming if you can't swim. 23 +Smoking kills. 12 +Smoking can cause a slow and painful death. 35 +Keep out quarantine. 17 +I am sorry to be late for your reply. 28 +I am sorry to fail in the exam. 23 +I apologize. 10 +I'm calling about. 14 +Hello maria. nice to hear from you. 27 +She is not available. can i take a message? 33 +I really have to go now... 18 +I got the short end of the stick. 25 +Blanket of snow. 13 +It's the arctic outside! 19 +Could you find out. 15 +I'd like to remind you about. 22 +You haven't forgotten about grocery, have you? 38 +I cannot accept. 13 +What's your opinion of this? 22 +I couldn't tell you. 15 +Sorry, i'm not able to speak about this. 31 +I don't want to talk on the matter. 26 +I don't have any idea. 16 +I really can't say anything. 22 +You're asking the wrong question to the wrong person. 43 +In my opinion, you can ask your dad. 28 +I'd say that it's better to discuss this with jack. 39 +Personally, i think we need to ask this professor. 41 +I believe that this isn't my cup of tea. 30 +I've never given it much importance. 29 +Whatever i won't give any opinion about this. 36 +You always don't give me any opinions. 30 +I cannot express any opinions right now. 33 +My opinions never matter in any sense. 31 +I don't want to express my opinions. 28 +My opinions aren't considered here. 29 +Jack my opinions aren't meant to matter. 32 +I'm thinking about. 15 +We're planning on buying a house within the next 12 months. 47 +We have a lesson next monday. 23 +I forgot to call mom, i'll do it after dinner. 35 +It will be a nice day tomorrow. 24 +I hope you will come to my party. 25 +I will see you tomorrow. 19 +I'm going to call my mom after dinner. 29 +Be careful, you're going to fall. 26 +I would like to go to university next year. 34 +I am going to meet. 14 +We plan to shift to canada in the near future. 36 +It will happen in our lifetime. 25 +I'm counting the days until. 22 +I don't really care for cricket. 25 +I didn't quite catch that. could you please repeat it? 42 +Could you repeat, please? 21 +Got it. 5 +Ok, i get it now. 12 +That's clear, thank you. 19 +I take your point. 14 +That makes sense. 14 +That's totally fair. 16 +I don't blame you. 13 +I would feel the same. 17 +I'm sorry, but i'd like to make a complaint. 33 +I'm sorry, but there appears to be a problem. 35 +I'm sorry to say this, but... 20 +I'm sorry to bother you. 18 +Can you help me with this? 20 +I understand it's not your fault. 26 +I'm afraid there may be a misunderstanding. 35 +Excuse me, i understand that. 24 +There seems to be a problem. 22 +Sorry to bother you. 16 +I want to complain about your family. 30 +Would you mind? 12 +There must be a misunderstanding. 28 +I have to complain about your brother. 31 +I hate to tell you this. 18 +How many items can i take to the dressing room? 37 +Is it going on sale soon? 19 +I'll have. 7 +Do you like to eat fast food? 22 +How often do you eat out? 19 +What diet are you on? 16 +Are you personally a good cook? 25 +Could i add a little salt, please? 27 +This is wonderful! 15 +I'm glad you like it! 15 +Would you like a second helping? 26 +Yes please, i'd love some! 20 +It was lovely, but i'm really full thanks! 33 +It has a very unusual taste. 22 +Do you mind if i leave the food? 24 +I'm afraid i couldn't manage all this. 29 +Where to eat? 10 +I had cereal for breakfast. 22 +I ate chicken for lunch. 19 +I'll have a cup of tea. 16 +I always have met for lunch. 22 +I love spicy food. 14 +This popcorn is very salty. 22 +I love crunchy fried chicken. 24 +She bought a bunch of ripe bananas. 28 +What do you want to eat? 18 +Do you want to get dessert? 21 +Are you going to get a drink? 22 +Tonight, i will snack on popcorn. 27 +Jen polished off her dinner. 23 +Take this medicine after your meals. 30 +Is breakfast ready? 16 +Do you want breakfast? 18 +I will be late for dinner. 20 +I have difficulty while chewing. 27 +Turn on the tv. 11 +I'm watching tv. 12 +What's on the tv? 12 +What do you watch on tv? 18 +Don't you like to watch? 18 +I just watch what i like. 19 +There is nothing to watch well. 25 +My favorite show about to start. 26 +What did you watch on tv yesterday? 28 +What kind of tv programs do you watch? 30 +I decide what to watch on tv. 22 +He watches too much tv. 18 +Don't change the channel. 20 +Star plus is showing ads at the moment. 31 +My program is going to be back in 35 seconds! 35 +I don't want to miss a single scene. 27 +Switch to the next channel. 22 +Switch to the previous channel. 26 +There is nothing interesting on tv today! 34 +Turn off the tv, i'm trying to sleep! 28 +Turn up the volume of the tv. 22 +Turn down the volume of the tv. 24 +Raise the volume. 14 +Now, it's my turn to watch tv. 22 +I rarely watch tv. 14 +Give me the remote. 15 +The remote gets missing very often. 29 +What is the channel number of star plus? 32 +That's a bit steep. 14 +It's too cheap to buy. 16 +I'm paying through online transactions. 33 +That's a little outside my budget. 27 +I got two for the price of one. 23 +It was bought one, get one free. 25 +I got it for a song. 14 +It's a good price. 13 +A good value for the amount of money. 29 +I don't have enough money to buy it. 27 +Extremely inexpensive. 20 +That's so cheap. 12 +You pay a lot more in other places. 27 +It was quite cheap. 15 +It wasn't very expensive. 20 +I'm happy with the price. 19 +It wasn't that expensive, really. 27 +I thought it'd be more expensive. 26 +It was quite reasonable, actually. 29 +It was a good value for money. 23 +It didn't cost a fortune. 19 +That's a bit princely. 17 +No, thanks. i'm ok. 13 +Yes, please. that would be nice lovely. 31 +Please send me the address. 22 +Would you mind answering the phone? 29 +Would you mind calling me later? 26 +Would you mind sharing this video? 28 +Could you please. 14 +Could you please get me a glass of water? 32 +Can you pass me the book? 19 +Can you help me in this place? 23 +Please send me a photo. 18 +I'd appreciate it if you could. 24 +I'd appreciate it if you could wash the dishes. 37 +Can you call me? 12 +Can you pass me the salt? 19 +Can you lend me this book? 20 +Could i have a cup of coffee? 22 +Could you give me it, please? 23 +Do you know if this can help? 22 +Please guide me for the same. 23 +Hello, can you give me a travel card? 29 +Two tickets, please. 17 +Can you give me directions to oxford street? 36 +Would you like to have pizza? 23 +Will that be enough? 16 +Can you pass those t-shirts? 22 +Can we sit for this lecture? 22 +Are we going to get the notes? 23 +Can you come to my place? 19 +Will it be fine if you come here? 25 +Can i take these books to read? 24 +Shall i take your newspaper? 23 +Could you share the recipe? 22 +Shall i go this way? 15 +My sister is 25 years old. 20 +Maria has a 4-year-old kid. 20 +She is in her early twenties. 23 +My friend has a daughter aged 5. 25 +I am 28. 5 +My friend has two sons aged 5 and 8. 27 +My neighbor has a four-month old baby. 30 +She must be under 18. 16 +She is in her teens. 15 +Bare with me. 10 +Not so fast. 9 +Something will have to wait. 23 +It won't belong. 12 +Excuse me for just a moment. 22 +Gimme a second! 12 +Worse things happen at sea. 22 +Every cloud. 10 +Lighten up! 9 +Get ready we will roam and come. 25 +Cheer on. 7 +Cheer to the echo. 14 +1.45 am is time for the last call. 25 +Guess what i just saw online. 23 +If i had to take a guess, i'd say she has a green dress. 41 +It's difficult to say, but i think anna would reach soon here. 49 +Off the top of my head, i guess sir would reach soon here. 45 +It's about yesterday i guess. 23 +I guess mom will be getting some sweets while coming. 43 +There's a good chance to go out now i guess. 33 +I guess jack will be late to reach here. 31 +I have a feeling to have some hot food i guess. 36 +Does david guess what i have for you? 29 +Guess what! i have movie tickets. 26 +I guess we need to move as soon as possible. 34 +Can you guess what i have got for you? 29 +I've been married for 10 years. 24 +It's 20% off. 8 +I'm paying through the nose. 22 +It's dirt cheap. 12 +You pay a lot more in another place. 28 +It didn't cost that much. 19 +I think i cannot afford it. 21 +Is it negotiable? 14 +You have paid a lot for this. 22 +That's a good price. 15 +It wasn't very expensive basically. 29 +I am on a tight budget. 17 +I am looking for the best price. 25 +I cannot increase my budget too much. 30 +What's the best price? 17 +What is going to be the last price? 27 +How far can you come down in price to meet me? 35 +Let me run the numbers and get back to you. 33 +I need to calculate if i can pay you? 28 +What will your cash price be? 23 +How much will you reduce the asking price? 34 +Shall i pay you the money in cash? 26 +What is your final offer? 20 +Let's meet in the middle. 19 +Can i pay the online payment? 23 +What a price to pay! 15 +What's your price range? 19 +He asked the price and paid for it. 27 +You're dead right. 14 +I'm sorry to say so. 14 +Spot on. 6 +You are quite right. 16 +Yes, that's right. 14 +Yes, that's very correct. 20 +I guess so it's right. 16 +I had the same idea. 15 +I'd go along with that. 17 +That's just what i was thinking. 25 +Of course, it's correct. 19 +Yup, it's perfectly correct. 23 +We are of one mind. 14 +You got it, dude. 13 +Our thoughts are parallel. 22 +I see what you mean about it. 22 +So do i. 5 +I agree with you. 13 +You are so right. 13 +I think you are totally right. 24 +You took the words right out of my mouth. 32 +We're in accord. 12 +You're absolutely right. 20 +You got it. 8 +You're in luck! 11 +Down on your luck. 14 +Knocked dead! 11 +Blow them away! 12 +Strike gold, fella! 16 +You're going to ace it. 17 +Luck out! 7 +May the force be with you. 20 +May it falls into your lap! 21 +Make hay while the sun shines! 24 +Knock on the wood! 14 +He convinced me to buy. 18 +I had a change of heart. 18 +On reflection. 12 +Upon reflection. 14 +I did a 180. 8 +Hang on a minute. 13 +He persuaded me to. 15 +I'm debating between... 17 +I'm not sure what i was thinking. 25 +After further consideration. 25 +I'm scared that. 12 +Don't you think it is a good idea to? 27 +I suggest to you. 13 +Actually, i don't think... 19 +Your flight leaves from gate 15. 26 +Your seat number is 8f. 18 +Flight 800 is now boarding. 22 +The gold rate rose. 15 +The following table is from the statistics. 36 +There was a sharp increase in coronavirus. 35 +We need to have correct data for statistical analysis. 45 +The quadrant method is more suitable for statistics. 44 +The death rate is decreased as per the current data. 42 +There is an increase in grocery rate. 30 +There is a sharp increase in the rate of onion. 37 +The crime rate has dropped. 22 +Suicide rates are increasing day by day. 33 +I have shown the death rate by a graph. 30 +The charts are given below in this research paper. 41 +Can we discuss the cutting rate grocery? 33 +How much there is an increase in gold? 30 +Is there an increase in silver coin rates? 34 +There is a small amount of decrease in the amount of the peanut. 51 +There was a slight rise in the cost of fuel. 34 +In october the number of tourists was a plummet. 39 +There was a slight decrease in the petrol rate. 38 +Those traveling by car fell impressively. 35 +The coronavirus rate rose. 22 +The coronavirus rate went up. 24 +The gold rate reached its peak. 25 +There was a gradual rise in covid patients. 35 +The crime rate reached a peak. 24 +Recover from jet lag. 17 +I was mugged in broad daylight. 25 +We forgot to bring bug spray and got bitten all over. 42 +I ended up with huge blisters while walking. 36 +I had to catch the red-eye to get back to work. 35 +I was hungover on the last day of my trip. 32 +My train was delayed. 17 +I couldn't wait to back home. 22 +I have been practicing it for 5 years. 30 +My office is in model town. 21 +Boss has accepted mark's resignation. 31 +He's got his father's features.. 24 +Children were brought up to be polite by parents. 40 +Your children are growing up fast! 28 +I think he takes after his father. 27 +Who looks after your children during the holidays. 42 +We're looking for someone to care for my mother. 38 +Is there anyone you look up to in your family? 36 +Her daughter is having friends to stay for this weekend. 46 +His father passed away suddenly. 27 +When my kids are tired, they begin to paint. 35 +He has run from home to get the pets. 28 +Her grandmother lives with them. 27 +We usually visit our farms for a break. 31 +He's always standing up for his brother at school. 40 +We learned to stick together as children. 34 +He turned to his brother when he lost his job. 36 +His parents split up when he was a child. 32 +She's finally settled down with jack. 30 +I come from big family background. 28 +There are 5 people in my family. 25 +I look similar to my dad. 19 +I'm feeling under the weather. 24 +Are you alright? 13 +Whom shall i say is calling? 22 +What do i say? 10 +What if i say the wrong thing? 23 +How many uncles and aunts do you have? 30 +What's the right thing to say? 23 +Excuse me, do you have the time? 25 +Hi, is this seat taken? 18 +Do you mind if i sit here? 19 +That is really nice. 16 +Can i ask where you got it? 20 +I really like your dress. 20 +Did you get them near here? 21 +That's a cool t-shirt, can i have it, mom? 31 +Is that store near here? 19 +Was it good value? 14 +How much did it cost? 16 +Do they have other colors available? 30 +Thanks for the suggestion. 22 +I appreciate the information. 25 +Thank you, that was really helpful. 29 +Are you fro in this area? 19 +So, what do you do for a living? 24 +What brings you here today? 22 +Do you come here a lot? 17 +Really? i'm a vegetarian too. 22 +Did you hear that voice? 19 +It was really nice meeting you. 25 +I really enjoyed your company, thanks so much. 38 +I had a great time talking with you. 28 +Hope to see you again soon. 21 +Have a good meal. 13 +Can you recommend a good restaurant around? 36 +Think about it no more. 18 +It doesn't matter. 14 +Please don't mention it. 19 +Leave the topic. 13 +We shall discuss it later. 21 +Let's learn a lesson. 16 +We need to leave this right now. 25 +Please learn from it. 17 +Do i want to forgive? 16 +Do you wish to forgive? 18 +I am will forgive. 14 +Please forgive this moment. 23 +It's accepted by my side. 19 +Can we leave this topic? 19 +Can we forgive our son? 18 +Please leave the topic and move on. 28 +Take a lesson from the situation. 27 +It's twenty till four. 17 +You're very welcome. 16 +The pleasure is mine. 17 +I know you'd do the same for me! 23 +That's alright! 12 +Sure, no problem! 14 +Much obliged! 11 +I'm very much obliged to you! 22 +We appreciate your custom. 22 +I'm happy to help. 13 +We all have a personal life. 22 +He was on a personal quest. 21 +Surely this wasn't a personal file. 28 +Joe, consider it a personal favor. 28 +I was merely expressing a personal opinion. 36 +It's not personal, she replied. 25 +He stopped in her personal zone, too close. 35 +It wasn't simply a personal matter to anna. 34 +I have no experience in such matters. 30 +I will be always alert in my personal matters. 37 +To him, it is a chess game, not personal combat. 38 +Do we not do the same in our personal lives? 34 +Will you answer something personal, david? 36 +I have no more personal weaknesses. 29 +It's more of personal debt. 21 +Anna, did you get this card for cheering me up? 37 +Can somebody please tell david to cheer up? 35 +Cheer up! it cant be as bad as all that. 29 +Cheer up! it's not that bad! 20 +Bright curtains can cheer up a dull room. 33 +Flowers always cheer up a room. 25 +Cheer up! the news isn't too bad. 24 +Cheer up! the worst is over. 21 +Cheer up, it's not quite hopeless yet. 30 +Cheer up! victory is just around the corner. 35 +He's stone deaf. 12 +A thumping headache. 17 +Doe, it ever happens to you? 22 +You should work, but you can't. 24 +You find your walking boots and get out. 32 +Can you picture the scene? 21 +The smell of rain lingers in the air. 29 +A gentle breeze soothes your aching head. 34 +He also had a sense of responsibility for it. 36 +I can sense it and i'm never wrong. 26 +She shivered and shrugged the sense way. 33 +I had the sense to keep my mouth shut. 29 +I have no sense whatever of dramatic action. 36 +Even your horse has better sense than you do. 36 +It made more sense to submit to david. 30 +I can sense the smell of delicious food. 32 +Her sense of smell is wonderful. 26 +The sense that joe was in the house. 28 +She lost her sense of smell and taste. 30 +We're so sorry for your loss. 22 +I'm going to miss her, too. 20 +I hope you feel surrounded by much love. 32 +I'm sorry to hear that. 17 +I hope things get better soon. 24 +I hope you feel better soon. 22 +Please accept my condolences. 25 +I'm sorry about your hearing loss. 27 +Get well soon. 11 +She will be sadly missed. 20 +I'm saddened to hear of your sudden loss. 32 +Words can't express my sorrow for your loss. 35 +Wish you a quick recovery. 21 +Hope you perk up soon. 17 +I didn't hear from you. 17 +John, may i help you? 16 +I have to go now. 12 +I have faith in the utmost in you. 26 +You two should meet each other! 25 +Oh. i've got to go. see you! 18 +Ok, well, first of all. 18 +Anna is not a good friend! 20 +So how to save this situation? 24 +The food's here, isn't it? 19 +It was good to talk to you. 20 +That's a nice hairstyle. 19 +It could be the best painting. 24 +That's a nice painting. 18 +That's a nice giraffe. 17 +Ok, so max who has put you in the situation? 34 +So how did you meet david? 20 +How to find out what that interesting thing is? 38 +Just ask questions. 16 +What's your job? 12 +What do you do at the weekend? 23 +Have you traveled much? 19 +What's your dream job? 17 +Excuse me! shall i get it back again? 28 +No way! we shall go home. 18 +Seriously? we have to wait for it. 26 +I don't believe you! really? 21 +Did he come to meet me? 17 +Was it really important to meet her? 29 +And then he fell into the pool with his pet. 34 +That reminds me of the time we met. 27 +By the way, how's joe? 16 +A bit off-topic, but i shall leave now. 30 +Got a minute? 10 +Hi. is this seat taken? 17 +That is a really nice hat. 20 +I really like your shoes. 20 +That's a cool looking phone. 22 +It smells so good from the food. 25 +The salmon looks delicious! 23 +This place looks great since the renovation. 37 +I love the coffee smell. 19 +Did you hear about it? 17 +It's a beautiful day, isn't it? 23 +It looks like it's going rain. 23 +Your dog is so cute. 15 +That's an interesting painting. 26 +This is a great song. 16 +I love latin music. how about you? 26 +What did you study? 15 +I want to talk to you. 16 +Is there anything else i can get for you this evening? 43 +Only six allowed in the dressing room. 31 +I can backorder that for you. 23 +You are not alone, i am here to guide you. 32 +We have a plan. 11 +Can we have a conversation for 2 minutes? 33 +Shall we start the discussion? 25 +Are you comfortable with english conversation? 40 +Please let me know your occupation. 29 +Are you able to connect comfortably? 30 +Imagine. for one year of this offer. 28 +It's possible to save your savings every month. 38 +Hello, you've reached! 18 +Let me transfer you to manager's extension. 35 +Can you hold the call for the next 5 minutes? 35 +Can i call you back in the next 10 minutes? 33 +I'll need to find out if we can do that. 29 +Let me call you back. 16 +I'm not sure if we can do that, but let me check. 36 +Can you please hold? 16 +Could you please hold on? 20 +Thank you for holding. 18 +I'm calling to follow up on offers in the next 3 days. 41 +The plan payment should be on its way to you now. 38 +We shipped out the headphones last week. 33 +The items should have arrived already. 32 +I'm sorry, i can't hear you. 20 +Can i call you right back? 20 +I'm sorry, there's nobody here by that name. 34 +Could you please clarify what you mean? 32 +I will follow up with the requested information soon. 44 +I will keep you updated on our progress. 32 +Thank you, have a nice day. 21 +We have the best offer plan for you. 28 +Can i get it to gift wrapped? 22 +Let's continue this another time. i really must go. 40 +Pardon me, but this right. 21 +You're wrong! 10 +Your presentation was terrible! 27 +I would not appreciate your hard work. 31 +Next time this mistake shouldn't happen. 33 +I criticize by creation. 20 +Please don't criticize what you can't understand. 40 +John, can i have a quick word? 23 +How do you think it could be improved? 30 +Just have a look at this paragraph. 28 +Just be more careful in the future. 28 +If you're unsure in the future, just ask me. 34 +We have received a complaint about you. 32 +Can you think why that is? 20 +How do you account for the complaint? 30 +I am afraid i have to disagree. 24 +Have you been keeping busy? 22 +Have you booked the tickets? 23 +What is the route of our journey? 26 +I have taken some fruit for our journey. 32 +Shall we travel by plane? 20 +I want to enjoy the sky ride. 22 +Mom, how's the journey of snow road? 28 +I love to travel max. 16 +What's the driving speed of every vehicle? 34 +Success is a life long journey. 25 +I wish you a prosperous journey. 26 +I wish you a safe journey to you. 25 +The portion of a journey that ends at home. 34 +To set out on a journey for studies. 28 +Our journey towards a place is destined. 33 +Have a good and safe journey. 23 +Can i accompany you on this journey to mumbai? 37 +I shall join you with your journey tomorrow morning. 43 +Take care of yourself while traveling. 32 +I am with you! 10 +Things will be fine soon. 20 +Go on! i am there. 12 +Give it a try! 10 +Just do it! 8 +Give it your best! 14 +Give it a shot! 11 +Give it your best shot! 18 +Take a deep breath. 15 +It's just a bad day! 14 +Don't stop now. 11 +Just remember how far you've come. 27 +It's just a setback, not a reason to give up. 34 +You've got what it takes. 19 +That's a good effort. 16 +You're on right track. 17 +You're bound to succeed. 19 +You're getting better all the time! 28 +I'll stand with you to the end. 23 +I'll back you up. 12 +I'm on your side. 12 +I'll support you no matter what. 25 +I've got your back. 14 +I gotcha. 7 +I support you. 11 +I understand you. 14 +I'll cover the cost. 15 +Don't breathe a word. 16 +This is top-secret. 15 +Do you have a breath mint? 20 +Where are you head? 15 +Believe you me. 12 +It's three-thirty. 14 +It's at half-past. 13 +It's twenty of four. 15 +It's twenty minutes to four. 22 +How much does he weight? 19 +You've really done at this time. 25 +That stinks to hugh heaven! 22 +I had to take a guess. 16 +I have seen her painting, those are so unique. 37 +Some humans are born with uniqueness. 31 +It wasn't so unique to be traceable jack. 32 +It's a unique chance to show your dedication. 36 +He told them, he had a unique father. 29 +It was something unique about him. 28 +Is it unique or might others perform likewise? 38 +Dad's perspective is always in a unique way. 35 +The wall painting at your home is unique. 33 +There is a marked similarity to them. 30 +The similarity in the language of the story is different. 47 +There is a remarkable similarity among them. 37 +Both weddings are similar to accept the rituals in them. 46 +You're not pulling your own weight. 28 +I get the feeling something's going to happen. 37 +My sixth sense tells me that... 23 +My guts tell me that... 16 +It's women's intuition. 18 +It's a portent of things to come. 25 +You're carrying the world on your shoulders. 36 +This is a nonsmoking area. 21 +This is a nonsmoking building. 25 +Excuse me, sir, can you face towards the left side. 41 +I'm sorry, but i am unable to bear the smell. 34 +Please face your face towards the air. 31 +There's no smoke without fire. 24 +Put that in your pipe and smoke it. 27 +I want to change my grandpa's smoking habit. 35 +Joe got afraid when he pulled a smoke pole. 34 +He is just closing smoke. 20 +My plan to ask mary to dance went up in smoke. 35 +Can we use smoke spray for wall painting? 33 +Are you aware of smoke wall painting? 30 +Can we have a smoking ice-cream tomorrow? 33 +Wow, she is a real smoke show. 23 +They need to sit down and smoke the peace. 33 +He told us to watch his smoke as he went out and started. 44 +He is still throwing smoke after that many years. 40 +All the smoke signals point to an agreement. 36 +You're turning into a little gentleman. 32 +How many as were there? 18 +Should I call a doctor? 18 +Don't put your feet on the furniture. 29 +You are trying my patience. 22 +Why, i never! 10 +The college does not have experienced professors. 42 +Post exams, students will be getting 10 days' holiday. 44 +So what do you do? 13 +Who is the best shortstop? 21 +Whose socks are these? 18 +How did you do that? 15 +Who left their shoes in the middle of the hallway? 40 +Am i too early? 11 +Are you ready to leave? 18 +Did you read it? 12 +Do you want a candy cane or a chocolate bar? 34 +Would you like this book or that book? 30 +Should i get coffee, tea, or water? 28 +Do you know who she is? 17 +And for how much longer? 19 +So how can i help you? 16 +How long have you been here? 22 +Somehow the steady beat. 20 +I told her just how fond. 19 +Why haven't you completed your homework? 33 +Don't you know who she is? 19 +Do you want to go there? 18 +Have you watched the movie? 22 +How often do you go there? 20 +Have you been there before? 22 +Can you help me get rid of this dog? 27 +Can i borrow your grammar book for a day? 32 +Could you please help me with these bags? 33 +How did you make that water-mark? 26 +How often you go to a bar? 19 +How many times do you smoke? 22 +Does he know that i am here? 21 +Does she love you the way you do? 25 +Does he care about us? 17 +Why did he leave us then? 19 +Who is that man seating in the corner? 30 +How on earth did you think about me in that way? 37 +Will you please open the door for me? 29 +Would you like a beer? 17 +Can't we be friends again? 20 +Where do you want to go today? 23 +Who did you give the last cookie to? 28 +Why was she so grumpy yesterday? 26 +Where did i leave my car keys? 23 +Why did rose leave so late? 21 +Would you like cookies or a banana for dessert? 38 +Is she mad or just tired? 19 +Do you think i should go home or stay a little longer? 42 +Is the dog okay, or should we go to the vet? 33 +Will you be home soon? 17 +Do you want to go to the movies? 24 +Dude, where's my car? 16 +Have you brushed your teeth? 23 +Can they come downstairs? 21 +How can i ask better questions? 25 +How did it get so late so soon? 23 +Is it cold outside? 15 +Are you feeling better? 19 +Was the film good? 14 +Did you like it? 12 +Does it taste good? 15 +Where is the toilet, please? 23 +Where shall we go? 14 +How do you open this? 16 +Is she awake? 10 +What are you wearing? 17 +Where are my keys? 14 +Would you like some tea? 19 +Did bella buy a present for the party? 30 +What is the right way to iron a shirt? 29 +When are the best days to go to the mall? 31 +Where is your new cat? 17 +What was the universe like before it was expanding? 42 +When did she sleep? 15 +When will you go to school? 21 +Where is she going? 15 +Where is the house? 15 +How many sheets do you have? 22 +How much money do you invest in that scheme? 35 +How much time do we have to finish the test? 34 +How many days are there in january? 28 +How many people work at your company? 30 +How many cousins do you have? 23 +How many books did you buy? 21 +How many countries are there in the world? 34 +How many students are in the class right now? 36 +How many chairs are there in this room? 31 +How many pieces of chocolate would you like? 36 +How much is that painting? 21 +How much are those shoes? 20 +How much did your jacket cost? 24 +How much is the dress on display in the window? 37 +How much will it cost me? 19 +How much does it cost? 17 +How many stars are there in the sky? 28 +How many people live on islands? 26 +How many birds are there? 20 +How much water is in the ocean? 24 +How much money is in a bank? 21 +How much bread is eaten per day? 25 +How many bones are there in the human body? 34 +How much sand is in the deserts? 25 +How much information is on the internet? 33 +How many books are there? 20 +But when will that be? 17 +When you put it that way? 19 +When was his last meal? 18 +When did it become trapped? 22 +When you aren't even gifted? 22 +Wow, i like you! 12 +Water is passing through a pipe. 26 +I can see through hole. 18 +The secret between you and me. 24 +I first met john in 1987. 19 +It's always cold in january. 22 +The girls play in the garden. 23 +Her efforts were in vain. 20 +It is without precedent in history. 29 +It sounds fine in theory, but will it work? 34 +I've always believed in living life to the full. 38 +I was born in 1982. 14 +We eat breakfast in the morning. 26 +They play football in the morning and cricket in the afternoon. 52 +There is some milk in the fridge. 26 +We are running in the gym today. 25 +I prefer to read in the library. 25 +Easter falls in spring each year. 27 +We're anti complaining in this house. 30 +I'll be there in five minutes. 23 +In case of an emergency, you can always call me. 38 +Put the paper inside the file. 24 +In addition to your brains, you also have beauty. 40 +She likes swimming, even in winter. 29 +I work faster at night. 18 +We can meet at the crossroads. 24 +All speak at the same time. 21 +Employees can buy a book at a discount. 31 +He was putting himself at risk. 25 +She lost her ring at the beach. 24 +He swam at the lake. 15 +The bird sat at top of the oak tree. 27 +Aside from singing, she also plays the piano at the bar. 45 +He was frustrated at the situation. 29 +He'll be waiting for you at the front door. 33 +She looks just like her grandmother at that age. 39 +The cat is on the table. 18 +The images are on the page. 21 +Could you put your ideas down on paper? 31 +What are your plans for sunday? 25 +He tried to jump back on board. 24 +He's on trial for his life. 20 +Don't sit on that chair. 18 +He sat on the chair. 15 +The food was placed on the table. 26 +Let's go sit on that stone wall. 24 +After two trial runs we did it for real. 31 +Let's meet the day after tomorrow. 27 +Let's go out for dinner after the show. 30 +By the time i got there he'd gone. 25 +By the way, how is john? 18 +He was by nature a philosophical person. 33 +I've paid this bill twice by mistake. 29 +Perhaps they are already there by now. 31 +We came by car. 11 +Fireworks were invented by the chinese. 33 +He was shot by a professional killer. 30 +It happened by accident. 20 +He lost the race by five seconds. 26 +We must finish by tuesday. 21 +We were sitting by the window. 24 +By my calculation, he must be 73. 26 +The book by the wizard. 18 +They were sitting by the tree. 24 +She put the flowers by the window. 27 +The coffee mugs are by the water glasses. 33 +By the beach or on the hill. 21 +He took the purse from her by force. 28 +Where do you come from? 18 +This letter is from my wife. 22 +I bought this car from harry. 23 +They prevented me from entering. 27 +My car is different from yours. 25 +We worked from monday to wednesday. 29 +Paper is made from wood. 19 +It can cost anything from $5 to $15. 26 +The police took my driving license from me. 35 +Everyone from school is present here. 31 +Rachel was absent from the meeting of the small council. 46 +She walked about from here to there. 29 +I got a package from a friend. 23 +The loud noise came from within the stadium. 36 +She sat across from marie. 21 +He picked up the penny from beneath the couch. 37 +I felt out of place among foreigners. 30 +I'm afraid we're temporarily out of stock. 33 +Never tell tales out of school. 25 +I was unable to get out of the appointment. 34 +He drove over the bridge. 20 +My brothers were fighting over the car. 32 +I am in debt to the bank for my car loan. 30 +I am writing about concerning your recent order. 40 +He's going to the store. 18 +That chair belongs to the boss. 25 +Come to the office and have a cup of tea. 31 +Please don't sit next to me. 21 +I tried to hit the nail but hit my thumb instead. 38 +I ask for her hard with all respect. 28 +I believe marriage is for life. 25 +I haven't seen you for ages. 21 +This is for you. 12 +Do you want to go for a walk? 21 +You use a corkscrew for opening bottles. 33 +Cigarettes are bad for you. 22 +I'm saving for a new car. 18 +Is this the road to rome? 19 +They passed me over for john. 23 +Is this the train for cambridge? 26 +We worked for three hours. 21 +Keep walking for two kilometers. 27 +A room was booked for me by the name of david. 35 +I am still waiting for her. 21 +It is a container for butter. 23 +We located the key for the lock. 25 +I bought a new bag for my upcoming trip. 31 +I'd like a bike for commuting to work. 29 +Please sit down for a while. 22 +The post office is down the road. 26 +They ran down the hill. 18 +They have had many wars down the years. 31 +Bring it down and lift it again. 25 +I walked down the street. 20 +Go down the stairs and through the door. 32 +What goes up must come down. 22 +We climbed aboard the boat. 22 +Is there a doctor aboard the plane? 28 +You can't climb aboard without a preposition. 37 +What do you think about max? 22 +The lion was pacing about its cage. 28 +Let's talk about something different. 31 +I've just read a book about president putin. 35 +The book about the wizard. 21 +We are flying above the clouds. 25 +Who came above you in the test results? 31 +The sun is above the clouds. 22 +We drove across the desert. 22 +The dog ran across the road. 22 +There is a bridge across the river. 28 +He swam across the pool. 19 +We walked along the beach for two miles. 32 +The toilet is along the corridor. 27 +There are trees along the road. 25 +We walked around the town for an hour. 30 +They all sat around the campfire. 27 +He was born around 1570. 19 +There is a big fence around the house. 30 +Our garage is beneath our house. 26 +The tunnel runs beneath the sea. 26 +Emma is beneath the general manager. 30 +It was beneath his dignity to do that. 30 +We have a garden behind our house. 27 +The child was hiding behind the tree. 30 +Rachel finished behind shirley in the race. 36 +She is behind the other children in her class. 37 +The book behind the wizard. 22 +Falling behind on your schoolwork would be bad. 39 +The river runs beside our house. 26 +John was sitting beside miriam. 26 +What shall we have besides coffee? 28 +Give me the watch beside the book. 27 +We had lunch before the meeting. 26 +We met the day before yesterday. 26 +She was before me in the queue. 24 +I would rather die before doing that. 30 +Rose was sitting between rachel and anna. 34 +Between you and me, i think she's crazy. 31 +Much of holland is below sea-level. 28 +There is a family in the flat below us. 30 +I came below in the test. 19 +The mouse ran below the basement door. 31 +Do not waste time with regret. 24 +She drew the picture with a crayon. 28 +Take your brother with you. 22 +I have known him since childhood. 27 +I will do it since it is important. 27 +He does not only know english but also french. 37 +I am not only a brother but also a friend. 32 +You either give me money or a loan. 27 +I will either go to pune or delhi. 26 +Go there otherwise, he will jail. 27 +Although he's very famous he is still nice. 34 +I like tea and coffee. 17 +As i came she was leaving. 20 +As you couldn't see the film, we'll tell you something about it. 50 +She goes to the tennis club because she likes to play tennis. 49 +He reads magazines, but he doesn't like to read books. 43 +I'm sorry, mike is ill and i can't come either. 35 +Don't drink any alcohol even if you drive carefully. 42 +This book is very popular even though, i don't like it. 43 +Do you know how to ride a snowboard? 28 +However, we've lost the match. 24 +They worked hard for the test, however, they failed. 43 +If they were older, they could go to the party. 37 +Take your mobile with you in case you miss the bus. 40 +He looks very fit despite his age. 27 +They didn't go to the person, and neither did i. 37 +Neither drinks nor food is allowed in this room. 39 +Do you like tea or coffee? 20 +Look at the map, please. otherwise, you'll get lost. 41 +Since he's lost his money, he couldn't go to the restaurant. 47 +Her baby cannot fall asleep unless she stays in the room. 46 +I don't know what to say. 18 +When you're in london, write an e-mail to me. 34 +I'm going home whether you like it or not. 32 +I have two goldfish and a cat. 23 +You can have peach ice cream or a brownie sundae. 39 +I try very hard in school yet i am not receiving good grades. 48 +I can pass after the green light is on. 30 +Although she speaks seldom, she says meaningful words. 46 +She talks as if he was rich. 21 +You can go as long as you are good. 26 +I hate broccoli as much as i hate cauliflower. 37 +As soon as i went the home, i started to work. 35 +It seems as though she is in trouble. 29 +She usually eats at home, because she likes cooking. 43 +My work must be finished before the afternoon. 38 +He works every day, even on sundays. 29 +Let me know if you go to school. 24 +If only emma had been able to come. 27 +Since it rains, i will take an umbrella. 32 +People burn forests so that they have more land. 39 +You must study hard lest you fail. 27 +Now go home and cook meat meals. 25 +Once i start eating, i must continue. 30 +I will go to the cinema to provide the others to go to. 42 +I go to the theatre weekly rather than monthly. 38 +Since i was ill for two months, i lost my job. 35 +She was too late so that she could not apply for the job. 44 +Supposing you had a dog, what would you do with it? 40 +She runs faster than me. 19 +Life has not been the same since i fell for you. 37 +I'm sure of getting good grades because i study every day. 46 +You can either have the cheesecake or the frozen hot chocolate. 52 +She said she neither wanted the yogurt nor the ice cream. 46 +I am in the mood for not ice cream but some waffles. 40 +Dogs and cats make perfect pets. 26 +I read poems and short stories. 25 +Do you want pancakes or waffles? 26 +My dog is neither mean nor aggressive. 31 +I am going to europe for a vacation, or i am going to africa. 47 +Rose likes ice cream, but eating dairy makes her sick. 44 +She is very tired, yet she has lots of work to do. 38 +I like to read history books and storybooks. 36 +She often goes running or hiking. 27 +Because of him, i learned how to start my own business. 44 +Everything will fall into place if you start at the beginning,. 52 +Until you try, you'll never know. 26 +As i write this letter, i know i must say goodbye. 39 +Life's been so happy since i moved to chile. 34 +I want either a pink sofa or a purple one. 32 +I'll study both english literature and art history. 42 +I didn't know whether you'd want milk or cream, so i grabbed both. 51 +Why do you want to visit neither ireland nor scotland? 44 +I took not only the pink sofa but also the tiffany lamp. 44 +Not the cheeseburger for me, but the fries. 35 +Please stay at home till the afternoon. 32 +I will go to the supermarket unless it is very crowded. 44 +I waited up for her until eleven o'clock. 32 +I was watching tv when she came in. 27 +You can come whenever you want. 25 +She was eating in the kitchen, where there was a table. 44 +She is very funny whereas he is boring. 31 +We can meet you wherever you want. 27 +I worry about whether she'll be a good person. 36 +I found a very important article. 27 +While i was playing with the children, he came to the park. 47 +I visited alice who was ill. 22 +Whoever says so is a liar. 20 +She asked him why he was playing football. 34 +Though it is raining, they swam in the pool. 35 +Oh, honey! 8 +They can find it. 13 +I can not do it. 11 +Could you open it? 14 +Would you like to be my friend. 24 +Would you like to have coffee with me. 30 +Shraa plays football. 18 +Shraa loves to travel. 18 +I don't like a quarrel. 17 +He doesn't like a quarrel. 20 +She doesn't like a quarrel. 21 +They don't like a quarrel. 20 +You don't like a quarrel. 19 +We don't like a quarrel. 18 +Shraa doesn't like a quarrel. 23 +We prefer coffee to tea. 19 +I love this place. 14 +You love this place. 16 +We love this place. 15 +They love this place. 17 +He loves this place. 16 +She loves this place. 17 +Shraa loves this place. 19 +I am sad. 6 +You are sad. 9 +We are sad. 8 +They are sad. 10 +He is sad. 7 +She is sad. 8 +Shraa is sad. 10 +I am feeling happy. 15 +You are feeling happy. 18 +We are feeling happy. 17 +They are feeling happy. 19 +He is feeling happy. 16 +She is feeling happy. 17 +Shraa is feeling happy. 19 +I think it is right. 15 +You think it is right. 17 +We think it is right. 16 +They think it is right. 18 +He thinks it is right. 17 +She thinks it is right. 18 +Shraa think it is right. 19 +I live in gujarat. 14 +You live in gujarat. 16 +We live in gujarat. 15 +They live gujarat. 15 +He lives in gujarat. 16 +She lives gujarat. 15 +Shraa lives in gujarat. 19 +I have a fever. 11 +You have a fever. 13 +We have a fever. 12 +They have a fever. 14 +He has a fever. 11 +She has a fever. 12 +Shraa has a fever. 14 +I go there often. 13 +She goes there often. 17 +He goes there often. 16 +We go there often. 14 +You go there often. 15 +They go there often. 16 +Shraa go there often. 17 +I go to the library every day. 23 +You go to the library every day. 25 +He goes to the library every day. 26 +She goes to the library every day. 27 +We go to the library every day. 24 +They go to the library every day. 26 +Shraa goes to the library every day. 29 +I do not like to quarrel. 19 +You do not like to quarrel. 21 +He does not like to quarrel. 22 +She does not like to quarrel. 23 +We do not like to quarrel. 20 +Shraa does not like to quarrel. 25 +They do not like to quarrel. 22 +I jump from the roof. 16 +You jump from the roof. 18 +He jumps from the roof. 18 +We jump from the roof. 17 +They jump from the roof. 19 +She jumps from the roof. 19 +Shraa jumps from the roof. 21 +I need help. 9 +You need help. 11 +He need help. 10 +We need help. 10 +They need help. 12 +She need help. 11 +Shraa needs help. 14 +I move from this place. 18 +You move from this place. 20 +He moves from this place. 20 +We move from this place. 19 +They move from this place. 21 +She moves from this place. 21 +Shraa moves from this place. 23 +I catch fish. 10 +You catch fish. 12 +He catches fish. 13 +We catch fish. 11 +They catch fish. 13 +She catches fish. 14 +Shraa catches fish. 16 +I go to school. 11 +You go to school. 13 +We go to school. 12 +They go to school. 14 +She goes to school. 15 +Shraa goes to school. 17 +I want to be a doctor. 16 +You want to be a doctor. 18 +He wants to be a doctor. 18 +We want to be a doctor. 17 +They want to be a doctor. 19 +She wants to be a doctor. 19 +Shraa wants to be a doctor. 21 +She loves to play. 14 +Shraa loves to play. 16 +Shraa work. 9 +She accepts it. 12 +Shraa accepts it. 14 +You know him. 10 +We know him. 9 +They know him. 11 +He knows him. 10 +She knows him. 11 +Shraa knows him. 13 +I am feeling bore. 14 +You are feeling bore. 17 +We are feeling bore. 16 +They are feeling bore. 18 +He is feeling bore. 15 +She is feeling bore. 16 +Shraa is feeling bore. 18 +I am at lucy's home. 14 +You are at lucy's home. 17 +We are at lucy's home. 16 +They are at lucy's home. 18 +He is at lucy's home. 15 +She is at lucy's home. 16 +Shraa is at lucy's home. 18 +I hope for her. 11 +You hope for her. 13 +We hope for her. 12 +They hope for her. 14 +He hopes on her. 12 +She hops on her. 12 +Shraa hopes on her. 15 +I have a pen. 9 +You have a pen. 11 +We have a pen. 10 +They have a pen. 12 +He has a pen. 9 +She has a pen. 10 +Shraa has a pen. 12 +I write an essay. 13 +She writes an essay. 16 +He writes an essay. 15 +We write an essay. 14 +You write an essay. 15 +They write an essay. 16 +Shraa write an essay. 17 +I like bananas. 12 +You like bananas. 14 +He likes bananas. 14 +We like bananas. 13 +They like bananas. 15 +She likes bananas. 15 +Shraa likes bananas. 17 +I always shop in that market. 23 +You always shop in that market. 25 +She always shops in that market. 26 +He always shops in that market. 25 +We always shop in that market. 24 +They always shop in that market. 26 +Shraa always shops in that market. 28 +I kick the ball. 12 +You kick the ball. 14 +He kicks the ball. 14 +We kick the ball. 13 +They kick the ball. 15 +She kicks the ball. 15 +Shraa kicks the ball. 17 +I kill the snake. 13 +You kill the snake. 15 +He kills the snake. 15 +We kill the snake. 14 +They kill the snake. 16 +Shraa kills the snake. 18 +She kills the snake. 16 +I obey my parents. 14 +You obey my parents. 16 +He obeys my parents. 16 +We obey my parents. 15 +They obey my parents. 17 +She obeys my parents. 17 +Shraa obeys my parents. 19 +I knock at the door. 15 +You knock at the door. 17 +He knocks at the door. 17 +We knock at the door. 16 +They knock at the door. 18 +She knocks at the door. 18 +Shraa knocks at the door. 20 +I ignore him. 10 +You ignore him. 12 +He ignores him. 12 +We ignore him. 11 +They ignore him. 13 +She ignores him. 13 +Shraa ignores him. 15 +I maintain the entire family. 24 +You maintain the entire family. 26 +He maintains the entire family. 26 +We maintain the entire family. 25 +They maintain the entire family. 27 +She maintains the entire family. 27 +Shraa maintains the entire family. 29 +I ride a motorcycle. 16 +You ride a motorcycle. 18 +He rides a motorcycle. 18 +We ride a motorcycle. 17 +They ride a motorcycle. 19 +She rides a motorcycle. 19 +Shraa rides a motorcycle. 21 +Cat was at home. 12 +Shraa wrote articles. 18 +I watched movie. 13 +You watched movie. 15 +He watched movie. 14 +She watched movie. 15 +They watched movie. 16 +We watched movie. 14 +Shraa watched movie. 17 +Shraa came. 9 +I went to library. 14 +You went to library. 16 +He went to library. 15 +She went to library. 16 +They went to library. 17 +We went to library. 15 +Shraa went to library. 18 +I liked her voice. 14 +You liked her voice. 16 +We liked her voice. 15 +They liked her voice. 17 +He liked her voice. 15 +She liked her voice. 16 +Shraa liked her voice. 18 +I knew him. 8 +You knew him. 10 +We knew him. 9 +They knew him. 11 +He knew him. 9 +She knew him. 10 +Shraa knew him. 12 +I walked. 7 +You walked. 9 +We walked. 8 +They walked. 10 +He walked. 8 +She walked. 9 +Shraa walked. 11 +He studied hard all year. 20 +I studied hard all year. 19 +She studied hard all year. 21 +They studied hard all year. 22 +You studied hard all year. 21 +We studied hard all year. 20 +Shraa studied hard all year. 23 +He had a meeting with her colleagues. 30 +I had a meeting with her colleagues. 29 +She had a meeting with her colleagues. 31 +They had a meeting with her colleagues. 32 +You had a meeting with her colleagues. 31 +We had a meeting with her colleagues. 30 +Shraa had a meeting with her colleagues. 33 +He lived in spain. 14 +I lived in spain. 13 +She lived in spain. 15 +They lived in spain. 16 +You lived in spain. 15 +We lived in spain. 14 +Shraa lived in spain. 17 +Shraa thought. 12 +You bought. 9 +She bought. 9 +I loved cake. 10 +You loved cake. 12 +We loved cake. 11 +They loved cake. 13 +He loved cake. 11 +She loved cake. 12 +Shraa loved cake. 14 +I was sad. 7 +You were sad. 10 +We were sad. 9 +They were sad. 11 +He was sad. 8 +She was sad. 9 +Shraa was sad. 11 +I was at church. 12 +You were at church. 15 +We were at church. 14 +They were at church. 16 +He was at church. 13 +She was at church. 14 +Shraa was at church. 16 +He finished all the exercises. 25 +I finished all the exercises. 24 +She finished all the exercises. 26 +We finished all the exercises. 25 +They finished all the exercises. 27 +You finished all the exercises. 26 +Shraa finished all the exercises. 28 +He missed the class last week. 24 +I missed the class last week. 23 +She missed the class last week. 25 +They missed the class last week. 26 +You missed the class last week. 25 +We missed the class last week. 24 +Shraa missed the class last week. 27 +He was a student last year. 21 +I was a student last year. 20 +She was a student last year. 22 +They were students last year. 24 +You were a student last year. 23 +We were students last year. 22 +Shraa were students last year. 25 +He bought a new house last month. 26 +I bought a new house last month. 25 +She bought a new house last month. 27 +They bought a new house last month. 28 +You bought a new house last month. 27 +We bought a new house last month. 26 +Shraa bought a new house last month. 29 +He will have a coffee. 17 +I will enjoy. 10 +You will enjoy. 12 +He will enjoy. 11 +She will enjoy. 12 +They will enjoy. 13 +We will enjoy. 11 +Shraa will enjoy. 14 +I will cheat. 10 +You will cheat. 12 +We will cheat. 11 +They will cheat. 13 +He will cheat. 11 +She will cheat. 12 +Shraa will cheat. 14 +I will have to work. 15 +You will have to work. 17 +We will have to work. 16 +They will have to work. 18 +He will have to work. 16 +She will have to work. 17 +Shraa will have to work. 19 +I will be at the office. 18 +You will be at the office. 20 +We will be at the office. 19 +They will be at the office. 21 +He will be at the office. 19 +She will be at the office. 20 +Shraa will be at the office. 22 +I will work with sir. 16 +You will work with sir. 18 +We will work with sir. 17 +They will work with sir. 19 +He will work with sir. 17 +She will work with sir. 18 +Shraa will work with sir. 20 +He will clap for the team. 20 +I will clap for the team. 19 +She will clap for the team. 21 +They will clap for the team. 22 +You will clap for the team. 21 +We will clap for the team. 20 +Shraa will clap for the team. 23 +He will adjust to this new apartment. 30 +I will adjust to this new apartment. 29 +She will adjust to this new apartment. 31 +They will adjust to this new apartment. 32 +You will adjust to this new apartment. 31 +We will adjust to this new apartment. 30 +Shraa will adjust to this new apartment. 33 +He will aim at the bird. 18 +I will aim at the bird. 17 +She will aim at the bird. 19 +They will aim at the bird. 20 +You will aim at the bird. 19 +We will aim at the bird. 18 +Shraa will aim at the bird. 21 +He will run away. 13 +I will run away. 12 +She will run away. 14 +They will run away. 15 +You will run away. 14 +We will run away. 13 +Shraa will run away. 16 +He will lead the team always. 23 +I will lead the team always. 22 +She will lead the team always. 24 +They will lead the team always. 25 +You will lead the team always. 24 +We will lead the team always. 23 +Shraa will lead the team always. 26 +He will pray for us. 15 +I will pray for us. 14 +She will pray for us. 16 +They will pray for us. 17 +You will pray for us. 16 +We will pray for us. 15 +Shraa will pray for us. 18 +I will try. 8 +I will reject. 11 +You will reject. 13 +He will reject. 12 +She will reject. 13 +They will reject. 14 +We will reject. 12 +I will write. 10 +You will write. 12 +We will write. 11 +They will write. 13 +He will write. 11 +She will write. 12 +Shraa will write. 14 +I will have a tea. 13 +You will have a tea. 15 +We will have a tea. 14 +They will have a tea. 16 +He will have a tea. 14 +She will have a tea. 15 +Shraa will have a tea. 17 +He will kill you. 13 +I will kill you. 12 +She will kill you. 14 +They will kill you. 15 +You will kill you. 14 +We will kill you. 13 +Shraa will kill you. 16 +He will attend all the sessions. 26 +I will attend all the sessions. 25 +She will attend all the sessions. 27 +They will attend all the sessions. 28 +You will attend all the sessions. 27 +We will attend all the sessions. 26 +Shraa will attend all the sessions. 29 +He will play football together. 26 +I will play football together. 25 +She will play football together. 27 +They will play football together. 28 +You will play football together. 27 +We will play football together. 26 +Shraa will play football together. 29 +He will bring lots of food. 21 +I will bring lots of food. 20 +She will bring lots of food. 22 +They will bring lots of food. 23 +You will bring lots of food. 22 +We will bring lots of food. 21 +Shraa will bring lots of food. 24 +He will make it true. 16 +I will make it true. 15 +She will make it true. 17 +They will make it true. 18 +You will make it true. 17 +We will make it true. 16 +Shraa will make it true. 19 +He will climb this tree. 19 +I will climb this tree. 18 +She will climb this tree. 20 +They will climb this tree. 21 +You will climb this tree. 20 +We will climb this tree. 19 +Shraa will climb this tree. 22 +Shraa is washing her shirt. 22 +Shraa likes swimming. 18 +Shraa is sleeping. 15 +I am writing. 10 +You are writing. 13 +We are writing. 12 +They are writing. 14 +He is writing. 11 +She is writing. 12 +Shraa is writing. 14 +I am learning. 11 +You are learning. 14 +We are learning. 13 +They are learning. 15 +He is learning. 12 +She is learning. 13 +Shraa is learning. 15 +I am coming. 9 +You are coming. 12 +We are coming. 11 +They are coming. 13 +He is coming. 10 +She is coming. 11 +Shraa is coming. 13 +Shraa is dancing. 14 +I am drinking coffee. 17 +He is drinking coffee. 18 +She is drinking coffee. 19 +They are drinking coffee. 21 +You are drinking coffee. 20 +We are drinking coffee. 19 +Shraa is drinking coffee. 21 +I am shopping in that market. 23 +He is shopping in that market. 24 +She is shopping in that market. 25 +You are shopping in that market. 26 +We are shopping in that market. 25 +They are shopping in that market. 27 +Shraa is shopping in that market. 27 +I am not quarreling with you. 23 +He is not quarreling with you. 24 +She is not quarreling with you. 25 +We are not quarreling with you. 25 +You are not quarreling with you. 26 +They are not quarreling with you. 27 +Shraa is not quarreling with you. 27 +I am traveling around the world. 26 +He is traveling around the world. 27 +She is traveling around the world. 28 +We are traveling around the world. 28 +You are traveling around the world. 29 +They are traveling around the world. 30 +Shraa is traveling around the world. 30 +I am playing cricket on that field. 28 +He is playing cricket on that field. 29 +She is playing cricket on that field. 30 +You are playing cricket on that field. 31 +We are playing cricket on that field. 30 +They are playing cricket on that field. 32 +Shraa playing cricket on that field. 30 +Shraa is attending. 16 +Shraa is earning. 14 +Shraa is hearing. 14 +I am seeing. 9 +You are seeing. 12 +We are seeing. 11 +He is seeing. 10 +She is seeing. 11 +I am watching it. 13 +They are watching. 15 +Shraa is watching. 15 +I am running. 10 +You are running. 13 +We are running. 12 +They are running. 14 +He is running. 11 +She is running. 12 +Shraa is running. 14 +I am going to the library. 20 +He is going to the library. 21 +She is going to the library. 22 +You are going to the library. 23 +We are going to the library. 22 +They are going to the library. 24 +Shraa is going to the library. 24 +I am helping him to do the task. 24 +He is helping him to do the task. 25 +She is helping him to do the task. 26 +We are helping him to do the task. 26 +They are helping him to do the task. 28 +You are helping him to do the task. 27 +Shraa is helping him to do the task. 28 +I am watching cricket on television? 30 +He is watching cricket on television? 31 +She is watching cricket on television? 32 +We are watching cricket on television? 32 +You are watching cricket on television? 33 +They are watching cricket on television? 34 +Shraa is watching cricket on television? 34 +I am listening to realistic songs? 28 +She is listening to realistic songs? 30 +He is listening to realistic songs? 29 +You are listening to realistic songs? 31 +We are listening to realistic songs? 30 +Shraa is listening to realistic songs? 32 +Shraa was eating. 14 +Shraa was dreaming. 16 +I was connecting. 14 +You were connecting. 17 +We were connecting. 16 +They were connecting. 18 +He was connecting. 15 +She was connecting. 16 +Shraa was connecting. 18 +I was bathing. 11 +You were bathing. 14 +We were bathing. 13 +They were bathing. 15 +He was bathing. 12 +She was bathing. 13 +Shraa was bathing. 15 +I was going to buy an umbrella. 24 +He was going to buy an umbrella. 25 +She was going to buy an umbrella. 26 +You were going to buy an umbrella. 27 +We were going to buy an umbrella. 26 +They were going to buy an umbrella. 28 +Shraa was going to buy an umbrella. 28 +I was taking john with me. 20 +He was taking john with me. 21 +She was taking john with me. 22 +You were taking john with me. 23 +We were taking john with me. 22 +They were taking john with me. 24 +Shraa was taking john with me. 24 +I was hugging me so tight. 20 +He was hugging me so tight. 21 +She was hugging me so tight. 22 +They were hugging me so tight. 24 +We were hugging me so tight. 22 +Shraa was hugging me so tight. 24 +I was keeping this hide. 19 +He was keeping this hide. 20 +She was keeping this hide. 21 +We were keeping this hide. 21 +You were keeping this hide. 22 +They were keeping this hide. 23 +Shraa was keeping this hide. 23 +I was walking through the street. 27 +He was walking through the street. 28 +She was walking through the street. 29 +They were walking through the street. 31 +We were walking through the street. 29 +You were walking through the street. 30 +Shraa was walking through the street. 31 +I was clearing the ground. 21 +You were clearing the ground. 24 +We were clearing the ground. 23 +They were clearing the ground. 25 +He was clearing the ground. 22 +She was clearing the ground. 23 +Shraa was clearing the ground. 25 +I was watching the bird. 19 +He was watching the bird. 20 +She was watching the bird. 21 +We were watching the bird. 21 +You were watching the bird. 22 +They were watching the bird. 23 +Shraa was watching the bird. 23 +I was shooting at the enemies. 24 +He was shooting at the enemies. 25 +She was shooting at the enemies. 26 +We were shooting at the enemies. 26 +You were shooting at the enemies. 27 +They were shooting at the enemies. 28 +Shraa was shooting at the enemies. 28 +I was hating the moment with her. 26 +He was hating the moment with her. 27 +She was hating the moment with her. 28 +We were hating the moment with her. 28 +You were hating the moment with her. 29 +They were hating the moment with her. 30 +Shraa was hating the moment with her. 30 +I was installing an important software on my computer. 45 +He was installing an important software on my computer. 46 +She was installing important software on my computer. 45 +We were installing important software on my computer. 45 +They were installing an important software on my computer. 49 +You were installing important software on my computer. 46 +Shraa was installing important software on my computer. 47 +I was wearing black pants. 21 +He was wearing black pants. 22 +She was wearing black pants. 23 +We were wearing black pants. 23 +They were wearing black pants. 25 +You were wearing black pants. 24 +Shraa was wearing black pants. 25 +I was going to meet her mom. 21 +He was going to meet her mom. 22 +She was going to meet her mom. 23 +You were going to meet her mom. 24 +We were going to meet her mom. 23 +They were going to meet her mom. 25 +I will be going there next monday. 27 +You will be going there next monday. 29 +We will be going there next monday. 28 +They will be going there next monday. 30 +He will be going there next monday. 28 +She will be going there next monday. 29 +Shraa will be going there next monday. 31 +I will be having lunch. 18 +You will be having lunch. 20 +We will be having lunch. 19 +They will be having lunch. 21 +He will be having lunch. 19 +She will be having lunch. 20 +Shraa will be having lunch. 22 +I will be combing. 14 +You will be combing. 16 +We will be combing. 15 +They will be combing. 17 +He will be combing. 15 +She will be combing. 16 +Shraa will be combing. 18 +I will be helping. 14 +We will be helping. 15 +They will be helping. 17 +He will be helping. 15 +She will be helping. 16 +Shraa will be helping. 18 +I will be flying to hawaii. 21 +He will be flying to hawaii. 22 +She will be flying to hawaii. 23 +They will be flying to hawaii. 24 +You will be flying to hawaii. 23 +We will be flying to hawaii. 22 +Shraa will be flying to hawaii. 25 +I will be cooking tomorrow. 22 +He will be cooking tomorrow. 23 +She will be cooking tomorrow. 24 +We will be cooking tomorrow. 23 +You will be cooking tomorrow. 24 +They will be cooking tomorrow. 25 +Shraa will be cooking tomorrow. 26 +I will be taking a test. 18 +He will be taking a test. 19 +She will be taking a test. 20 +We will be taking a test. 19 +They will be taking a test. 21 +You will be taking a test. 20 +Shraa will be taking a test. 22 +I won't be buying dinner for us. 24 +He won't be buying dinner for us. 25 +She won't be buying dinner for us. 26 +We won't be buying dinner for us. 25 +You won't be buying dinner for us. 26 +They won't be buying dinner for us. 27 +Shraa won't be buying dinner for us. 28 +I won't be studying. 15 +He won't be studying. 16 +She won't be studying. 17 +We won't be studying. 16 +They won't be studying. 18 +You won't be studying. 17 +Shraa won't be studying. 19 +I won't be flying to australia. 24 +He won't be flying to australia. 25 +She won't be flying to australia. 26 +We won't be flying to australia. 25 +You won't be flying to australia. 26 +They won't be flying to australia. 27 +Shraa won't be flying to australia. 28 +Shraa will be writing. 18 +I will be praying. 14 +You will be praying. 16 +We will be praying. 15 +They will be praying. 17 +He will be praying. 15 +She will be praying. 16 +Shraa will be praying. 18 +I will be writing articles on different topics. 39 +He will be writing articles on different topics. 40 +She will be writing articles on different topics. 41 +They will be writing articles on different topics. 42 +You will be writing articles on different topics. 41 +We will be writing articles on different topics. 40 +Shraa will be writing articles on different topics. 43 +I will be working next tuesday. 25 +He will be working next tuesday. 26 +She will be working next tuesday. 27 +We will be working next tuesday. 26 +You will be working next tuesday. 27 +They will be working next tuesday. 28 +Shraa will be working next tuesday. 29 +I will be creating a website. 23 +She will be creating a website. 25 +He will be creating a website. 24 +You will be creating a website. 25 +We will be creating a website. 24 +They will be creating a website. 26 +Shraa will be creating a website. 27 +I won't be competing. 16 +She won't be competing. 18 +He won't be competing. 17 +We won't be competing. 17 +You won't be competing. 18 +They won't be competing. 19 +Shraa won't be competing. 20 +I won't be traveling tomorrow. 24 +He won't be traveling tomorrow. 25 +She won't be traveling tomorrow. 26 +We won't be traveling tomorrow. 25 +You won't be traveling tomorrow. 26 +They won't be traveling tomorrow. 27 +Shraa won't be traveling tomorrow. 28 +I won't be coming tonight. 20 +He won't be coming tonight. 21 +She won't be coming tonight. 22 +We won't be coming tonight. 21 +You won't be coming tonight. 22 +They won't be coming tonight. 23 +Shraa won't be coming tonight. 24 +You have accepted it. 17 +I have discussed my topic. 21 +You have discussed your topic. 25 +We have discussed our topic. 23 +They have discussed their topic. 27 +He has discussed his topic. 22 +She has discussed her topic. 23 +Shraa has discussed its topic. 25 +I have written a new poem. 20 +You have written a new poem. 22 +We have written a new poem. 21 +They have written a new poem. 23 +He has written a new poem. 20 +She has written a new poem. 21 +Shraa has written a new poem. 23 +I have dropped there. 17 +You have dropped there. 19 +We have dropped there. 18 +They have dropped there. 20 +He has dropped there. 17 +She has dropped there. 18 +Shraa has dropped there. 20 +I have seen that movie. 18 +He has seen that movie. 18 +She has seen that movie. 19 +They have seen that movie. 21 +You have seen that movie. 20 +We have seen that movie. 19 +Shraa has seen that movie. 21 +I have learned to speak spanish. 26 +She has learned to speak spanish. 27 +He has learned to speak spanish. 26 +You have learned to speak spanish. 28 +We have learned to speak spanish. 27 +They have learned to speak spanish. 29 +Shraa has learned to speak spanish. 29 +I have not gone home. 16 +She has not gone home. 17 +He has not gone home. 16 +We have not gone home. 17 +You have not gone home. 18 +They have not gone home. 19 +Shraa has not gone home. 19 +I have received. 13 +I have done. 9 +You have taken. 12 +We have seen. 10 +I have made. 9 +You have got. 10 +I have seen this play. 17 +You have seen this play. 19 +We have seen this play. 18 +They have seen this play. 20 +He has seen this play. 17 +She has seen this play. 18 +Shraa has seen this play. 20 +I have seen the movie. 17 +You have seen the movie. 19 +We have seen the movie. 18 +They have seen the movie. 20 +He has seen the movie. 17 +She has seen the movie. 18 +Shraa has seen the movie. 20 +I have reached the station. 22 +You have reached the station. 24 +We have reached the station. 23 +They have reached the station. 25 +He has reached the station. 22 +She has reached the station. 23 +Shraa has reached the station. 25 +I have never been to texas. 21 +He has never been to texas. 21 +She has never been to texas. 22 +They have never been to texas. 24 +You have never been to texas. 23 +We have never been to texas. 22 +Shraa has never been to texas. 24 +I have not traveled to venus. 23 +He has not traveled to venus. 23 +She has not traveled to venus. 24 +We have not traveled to venus. 24 +You have not traveled to venus. 25 +They have not traveled to venus. 26 +Shraa has not traveled to venus. 26 +I have gone to the library. 21 +He has gone to the library. 21 +She has gone to the library. 22 +We have gone to the library. 22 +They have gone to the library. 24 +You have gone to the library. 23 +Shraa has gone to the library. 24 +I have been to london. 17 +She has been to london. 18 +We have been to london. 18 +You have been to london. 19 +They have been to london. 20 +Shraa has been to london. 20 +I have put the money on the table. 26 +Shraa had helped him. 17 +Shraa had run. 11 +I had written a letter. 18 +You had written a letter. 20 +We had written a letter. 19 +They had written a letter. 21 +He had written a letter. 19 +She had written a letter. 20 +Shraa had written a letter. 22 +I had done this task. 16 +You had done this task. 18 +We had done this task. 17 +They had done this task. 19 +He had done this task. 17 +She had done this task. 18 +Shraa had done this task. 20 +I had broken his leg last week. 24 +He had broken his leg last week. 25 +She had broken his leg last week. 26 +We had broken his leg last week. 25 +You had broken his leg last week. 26 +They had broken his leg last week. 27 +Shraa had broken his leg last week. 28 +Shraa had studied. 15 +Shraa had asked. 13 +I had completed my work. 19 +You had completed your work. 23 +We had completed our work. 21 +They had completed their work. 25 +He had completed his work. 21 +She had completed her work. 22 +Shraa had completed his work. 24 +I had gone home before i came. 23 +He had gone home before i came. 24 +She had gone home before i came. 25 +We had gone home before i came. 24 +They had gone home before i came. 26 +You had gone home before i came. 25 +Shraa had gone home before i came. 27 +I had already sung a song. 20 +He had already sung a song. 21 +She had already sung a song. 22 +We had already sung a song. 21 +You had already sung a song. 22 +They had already sung a song. 23 +Shraa had already sung a song. 24 +I will have done my work by monday. 27 +You will have done your work by monday. 31 +We will have done our work by monday. 29 +They will have done their work by monday. 33 +He will have done his work by monday. 29 +She will have done her work by monday. 30 +Shraa will have done his work by monday. 32 +I will have completed my file by this noon. 34 +You will have completed your file by this noon. 38 +We will have completed our file by this noon. 36 +They will have completed their file by this noon. 40 +He will have completed his file by this noon. 36 +She will have completed her file by this noon. 37 +Shraa will have completed his file by this noon. 39 +I will have known alice for 20 years. 29 +He will have known alice for 20 years. 30 +She will have known alice for 20 years. 31 +They will have known alice for 20 years. 32 +You will have known alice for 20 years. 31 +We will have known alice for 20 years. 30 +Shraa will have known alice for 20 years. 33 +I will have read the book by the weekend. 32 +She will have read the book by the weekend. 34 +He will have read the book by the weekend. 33 +We will have read the book by the weekend. 33 +You will have read the book by the weekend. 34 +They will have read the book by the weekend. 35 +Shraa will have read the book by the weekend. 36 +I will not have eaten mangoes. 24 +He will not have eaten mangoes. 25 +She will not have eaten mangoes. 26 +We will not have eaten mangoes. 25 +You will not have eaten mangoes. 26 +They will not have eaten mangoes. 27 +Shraa will not have eaten mangoes. 28 +I will have finished the novel by tonight. 34 +He will have finished the novel by tonight. 35 +She will have finished the novel by tonight. 36 +We will have finished the novel by tonight. 35 +You will have finished the novel by tonight. 36 +They will have finished the novel by tonight. 37 +Shraa will have finished the novel by tonight. 38 +I will have received. 17 +She will have taken. 16 +You will have made. 15 +I will have gone out by sunday. 24 +You will have gone out by sunday. 26 +We will have gone out by sunday. 25 +They will have gone out by sunday. 27 +He will have gone out by sunday. 25 +She will have gone out by sunday. 26 +Shraa will have gone out by sunday. 28 +I will have met him by this night. 26 +You will have met him by this night. 28 +We will have met him by this night. 27 +They will have met him by this night. 29 +He will have met him by this night. 27 +She will have met him by this night. 28 +Shraa will have met him by this night. 30 +I will have fallen asleep by 10 p.m. 27 +She will have fallen asleep by 10 p.m. 29 +He will have fallen asleep by 10 p.m. 28 +You will have fallen asleep by 10 p.m. 29 +We will have fallen asleep by 10 p.m. 28 +They will have fallen asleep by 10 p.m. 30 +Shraa will have fallen asleep by 10 p.m. 31 +I will have taken a walk by seven o'clock. 32 +He will have taken a walk by seven o'clock. 33 +She will have taken a walk by seven o'clock. 34 +We will have taken a walk at seven o'clock. 33 +You will have taken a walk by seven o'clock. 34 +They will have taken a walk by seven o'clock. 35 +Shraa will have taken a walk by seven o'clock. 36 +I will have completed the work before sunset. 37 +He will have completed the work before the sunset. 41 +She will have completed the work before sunset. 39 +We will have completed the work before sunset. 38 +They will have completed the work before the sunset. 43 +You will have completed the work before sunset. 39 +Shraa will have completed the work before the sunset. 44 +I will have reached home before the rain starts. 39 +He will have reached home before the rain starts. 40 +She will have reached home before the rain starts. 41 +We will have reached home before the rain starts. 40 +You will have reached home before the rain starts. 41 +They will have reached home before the rain starts. 42 +Shraa will have reached home before the rain starts. 43 +Shraa has been studying. 20 +I have been going. 14 +You have been going. 16 +We have been going. 15 +They have been going. 17 +He has been going. 14 +She has been going. 15 +Shraa has been going. 17 +I have been typing. 15 +You have been typing. 17 +We have been typing. 16 +They have been typing. 18 +He has been typing. 15 +She has been typing. 16 +Shraa has been typing. 18 +I have been drinking. 17 +You have been drinking. 19 +We have been drinking. 18 +They have been drinking. 20 +He has been drinking. 17 +She has been drinking. 18 +Shraa has been drinking. 20 +Shraa has been living. 18 +Shraa has been reading. 19 +I have been calling. 16 +You have been calling. 18 +We have been calling. 17 +They have been calling. 19 +He has been calling. 16 +She has been calling. 17 +Shraa has been calling. 19 +I have been walking. 16 +You have been walking. 18 +We have been walking. 17 +They have been walking. 19 +He has been walking. 16 +She has been walking. 17 +Shraa has been walking. 19 +You have been learning. 19 +I have been learning. 17 +We have been learning. 18 +They have been learning. 20 +He has been learning. 17 +She has been learning. 18 +Shraa has been learning. 20 +Shraa had been living. 18 +I had been brushing. 16 +You had been brushing. 18 +They had been brushing. 19 +He had been brushing. 17 +She had been brushing. 18 +Shraa had been brushing. 20 +I had been combing. 15 +You had been combing. 17 +We had been combing. 16 +He had been combing. 16 +She had been combing. 17 +Shraa had been combing. 19 +You had been running. 17 +We had been brushing. 17 +They had been combing. 18 +I had not been studying english all day. 32 +He had not been studying english all day. 33 +She had not been studying english all day. 34 +We had not been studying english all day. 33 +You had not been studying english all day. 34 +They had not been studying english all day. 35 +Shraa had not been studying english all day. 36 +Shraa had been asking. 18 +I had been calling. 15 +You had been calling. 17 +We had been calling. 16 +They had been calling. 18 +He had been calling. 16 +She had been calling. 17 +Shraa had been calling. 19 +I had been climbing. 16 +You had been climbing. 18 +We had been climbing. 17 +They had been climbing. 19 +He had been climbing. 17 +She had been climbing. 18 +I had been laying. 14 +You had been laying. 16 +We had been laying. 15 +They had been laying. 17 +He had been laying. 15 +She had been laying. 16 +Shraa had been laying. 18 +I had been studying when they asked. 29 +He had been studying when they asked. 30 +She had been studying when they asked. 31 +We had been studying when they asked. 30 +You had been studying when they asked. 31 +They had been studying when they asked. 32 +Shraa had been studying when they asked. 33 +I will have been typing. 19 +You will have been typing. 21 +We will have been typing. 20 +They will have been typing. 22 +He will have been typing. 20 +She will have been typing. 21 +Shraa will have been typing. 23 +I will have been sleeping. 21 +You will have been sleeping. 23 +We will have been sleeping. 22 +They will have been sleeping. 24 +He will have been sleeping. 22 +She will have been sleeping. 23 +Shraa will have been sleeping. 25 +I will have been digging. 20 +You will have been digging. 22 +We will have been digging. 21 +They will have been digging. 23 +He will have been digging. 21 +She will have been digging. 22 +Shraa will have been digging. 24 +I shall have been studying since friday. 33 +She shall have been studying since friday. 35 +He shall have been studying since friday. 34 +You shall have been studying since friday. 35 +We shall have been studying since friday. 34 +They shall have been studying since friday. 36 +Shraa shall have been studying since friday. 37 +I won't be watching the news at eight. 29 +She won't be watching the news at eight. 31 +He won't be watching the news at eight. 30 +We won't be watching the news at eight. 30 +You won't be watching the news at eight. 31 +They won't be watching the news at eight. 32 +Shraa won't be watching the news at eight. 33 +I will be studying at the library tonight. 34 +He will be studying at the library tonight. 35 +She will be studying at the library tonight. 36 +We will be studying at the library tonight. 35 +You will be studying at the library tonight. 36 +They will be studying at the library tonight. 37 +Shraa will be studying at the library tonight. 38 +Shraa won't have been living. 23 +Shraa will have been shopping. 25 +I will have been coming. 19 +You will have been coming. 21 +We will have been coming. 20 +They will have been coming. 22 +He will have been coming. 20 +She will have been coming. 21 +Shraa will have been coming. 23 +I will have been cutting. 20 +You will have been cutting. 22 +We will have been cutting. 21 +They will have been cutting. 23 +He will have been cutting. 21 +She will have been cutting. 22 +Shraa will have been cutting. 24 +I shall have been laughing for an hour. 31 +He shall have been laughing for an hour. 32 +She shall have been laughing for an hour. 33 +We shall have been laughing for an hour. 32 +You shall have been laughing for an hour. 33 +They shall have been laughing for an hour. 34 +Shraa shall have been laughing for an hour. 35 +I will be helping alex tomorrow. 26 +He will be helping alex tomorrow. 27 +She will be helping alex tomorrow. 28 +We will be helping alex tomorrow. 27 +They will be helping alex tomorrow. 29 +You will be helping alex tomorrow. 28 +Shraa will be helping alex tomorrow. 30 +I will be drinking milk tomorrow. 27 +He will be drinking milk tomorrow. 28 +She will be drinking milk tomorrow. 29 +We will be drinking milk tomorrow. 28 +You will be drinking milk tomorrow. 29 +They will be drinking milk tomorrow. 30 +Shraa will be drinking milk tomorrow. 31 +I read the book. 12 +I caught a train to london. 21 +Joe was talking to a man. 19 +Megan gave him a present. 20 +A girl is on the see-saw. 18 +He is a good sportsman. 18 +Akbar is a great king. 17 +Gold is a precious metal. 20 +I had a late lunch today. 19 +A daniel comes to judgement. 23 +Sanskrit is a difficult language. 28 +I have a black dog. 14 +Eric bought a new car. 17 +Donna has a new bat. 15 +Santa is on a reindeer. 18 +Can you give me a pen? 16 +There is a hotel nearby. 19 +Emma is a clever girl. 17 +Clara is a doctor. 14 +Donna has a white puppy. 19 +Dubai is a beautiful place. 22 +Mia is scared of an owl. 18 +A pupil should obey the teacher. 26 +He is a better poet than novelist. 27 +Lucy is a brave girl. 16 +A new prime minister was appointed. 29 +I need a pen. 9 +Lisa wants to see a movie. 20 +Joe has a car. 10 +She is a dancer. 12 +I am a singer. 10 +A man on the street stepped on my foot. 30 +Well, i've seen a better movie since! 29 +I have a problem. 13 +This is a table. 12 +Bella is a designer. 16 +Max is a nice guy. 13 +I've built a strong ship. 19 +I was playing with a boy. 19 +We had a subscription to the new york times. 35 +Do you live in a house? 17 +Do you have a cat? 13 +She's a gardener. 13 +A cricket match is being played. 26 +A cow gives milk. 13 +I hope this is not a waste of time. 26 +That would make a good present. 25 +Who thought this was a good idea? 26 +In a little while, we'll be doing something else. 39 +Where's a spoon when you need one? 26 +Did anyone hear a doorbell? 22 +A new prime minister was appointed today. 34 +She is Austrian. 13 +An ostrich can have parents Austrian. 31 +Sam drives an old car. 17 +Eric has left an hour ago. 20 +Mike has joined a university. 24 +David is an honest man. 18 +Mike is european. 14 +French is an easy language. 22 +I first met him a year ago. 20 +Australia is an island. 19 +Olivia is an english woman. 22 +Joe is an heir to that property. 25 +An aeroplane is on the runway. 24 +Rachel is an engineer. 18 +Joe has an old guitar. 17 +Don't eat on an uncovered plate. 25 +An owl is awake during nights. 24 +Harry is an ark bearer. 18 +An ounce of poison kills a man. 24 +I am an indian. 11 +Daniel wanted an umbrella. 22 +No, i live in an apartment. 21 +Would you like an apple? 19 +That was an excellent meal. 22 +He's an ambulance driver. 20 +I ate an apple for lunch. 19 +The cook is wearing an apron. 23 +Brutus is an honorable man. 22 +I will be there in an hour. 20 +Since it might rain, i have an umbrella in the car. 40 +He has an oxbridge accent. 21 +She has an italian accent. 21 +I am an australian. 15 +An Australian and an Austrian are two different people. 46 +An orphan has no parents. 20 +An ostrich can have parents. 23 +Orange is also orange. 18 +Sam has an oxbridge accent. 22 +Mike has an italian accent. 22 +They are an ethiopian team. 22 +Have you ever been to an afghan restaurant? 35 +The prayers were led by an imam. 25 +My brother can be an idiot sometimes. 30 +The train was late. 15 +The cow is a useful animal. 21 +The train is on the platform. 23 +The circus has begun. 17 +The students have formed a union. 27 +Jack was the first man to arrive. 26 +The darkest cloud has a silver lining. 31 +The man is on the platform. 21 +Where are the children? 19 +Dog watches the house faithfully. 28 +The moon shines bright during the night. 33 +John got the best present. 21 +Honest men speak the truth. 22 +The poet sings his poems as songs. 27 +The bed is broken. 14 +The bag has a hole in it. 18 +The teacher is very busy. 20 +The weather is cold today. 21 +The books are all in yellow color. 27 +The watchman is very rude. 21 +The milk is very hot. 16 +The cat is under the table. 21 +The boy is very hungry. 18 +The guide knows the way. 19 +The time is very short. 18 +Draw the map of india. 17 +The wisdom of solomon is great. 25 +Dinner is ready. 13 +The boy is very heavy. 17 +The lamb is very gentle. 19 +The school is very near to my house. 28 +The pilots are ready. 17 +The plane is very neat. 18 +The shelves are made of wood. 23 +The sofa cover is in velvet. 22 +The mosquitoes are harmful. 23 +The roads are filled with potholes. 29 +The drainage has over-flowed. 24 +The walls are in bad shape. 21 +The logs are lying waste. 20 +The balcony is to dry clothes. 24 +The pen is in the pouch. 18 +The switch is on. 13 +The pillow is very soft. 19 +The cow gives the milk. 18 +The mobile phone is very useful. 26 +He is the chairman of the company. 27 +The company has come up with an outcome. 32 +The theft is done by an outsider. 26 +The bridge is a masterpiece. 23 +The ball is in the court. 19 +The bell is ringing. 16 +The maid is cleaning the floor. 25 +The match has been canceled. 23 +Get the most out of your education. 28 +The end is very near. 16 +The bank is closed by evening. 24 +The tree dropped a leaf, an orange one. 31 +Do you remember the movie we watched together? 38 +The doctor said i should get more rest. 31 +The feeling i got was very strange. 28 +I passed the test! 14 +Look at the sun. 12 +I was playing with the boy. 21 +I am looking for a boy. 17 +She is fixing the computer. 22 +I am looking for the boys. 20 +Emma is fixing the computers. 24 +I am flying to the netherlands. 25 +I live in the united states. 22 +We sailed on the pacific ocean. 25 +We visited the empire state building last year. 39 +The smiths live there. 18 +We are members of the chess club. 26 +We slept at the holiday inn. 22 +I love fishing in the summer. 23 +I go to school in the spring. 22 +Would you like to try the apple pie? 28 +Have you seen the cat? 17 +Here's the book you were looking for. 29 +Is this the card you were thinking of? 30 +It should be the third house on the right. 33 +It should be the third rock from the sun. 32 +I spent all day in front of the tv. 26 +I was watching football. 20 +The beatles and the rolling stones are rock bands. 41 +The party is much too loud. 21 +The president said that taxes may have to increase. 42 +The army staged a coup. 18 +The film is very funny. 18 +I live at the end of the street. 24 +I live on the second floor. 21 +I live up the stairs from you. 23 +I am the oldest in my family. 22 +Rachel is the youngest in her family. 30 +The city. 7 +Rose is my sister. 14 +I love to play with my dog. 20 +My sister was born in march. 22 +River Nile is very long. 19 +David was a wise king. 17 +The minister has pulled a large crowd. 31 +Sam is a painter. 13 +Napoleon is a good leader. 21 +Childhood is a memorable one. 24 +Boys are very naughty. 18 +Megan lives in Mumbai. 18 +Books are knowledgeable. 21 +Early man used stone to build a house. 30 +Sam is used in construction. 23 +Bees rest a little while. 20 +Railway station has an escalator. 28 +Sticks are ready material for fuel. 29 +The jury found the prisoner guilty. 29 +An army protects our country. 24 +David is a strong man. 17 +Obedience pays off well. 20 +The bowl is full of fresh fruits. 26 +Dogs live in kennels. 17 +Hen live in a coop. 14 +Tall buildings can be seen in mumbai. 30 +New york city is in the u.s.a. 21 +Wisdom is better than strength. 26 +May is the hottest month. 20 +Mia loves to dance. 15 +Glory has an infant. 16 +John is a novelist. 15 +Max is laughing. 13 +Mike is a young boy. 15 +Bravo is a young boy. 16 +Jack is a student. 14 +Daniel goes to the market every day. 29 +Eric has saved in the army. 21 +Rose is expecting a parcel. 22 +Trees give us oxygen. 17 +The bull is struck in the bush. 24 +Always speak the truth. 19 +Megan loves sailing. 17 +Rachel is my neighbor. 18 +Nature is the best medicine. 23 +Donna is an author. 15 +Animals live in dense forest. 24 +Camel is the ship of the desert. 25 +Hair and nails grow faster. 22 +Trekking is an adventure. 21 +The hanger hangs the clothes. 24 +The baby has curled into its blanket. 30 +The door is made up of iron. 21 +The windowpane is made up of steel. 28 +Rachel is in the trousers. 21 +Joe always carries a mosquito repellent. 34 +The books are neatly organized on the shelf. 36 +Rottweiler is a dangerous dog. 25 +China is a highly populated country. 30 +Max is baking a cake. 16 +Roses are beautiful. 17 +Jasmine gives a sweet fragrance. 27 +Harry is a short guy. 16 +Rachael is a true human being. 24 +The t-shirt is in blue. 17 +The napkins are in the case. 22 +Mia always carries a shawl. 22 +Rachel wore blue shoes. 19 +The doctor is on the train. 21 +The bus is on the road. 17 +Mcdonald's has a farm. 17 +Mike plays the piano. 17 +The river flows gently. 19 +The road is full of mud. 18 +Cheetah is the fastest animal. 25 +The circus is in the city. 20 +Eric runs a general store. 21 +Anna loves red hat. 15 +Shearer shears the sheep. 21 +Rachel is an intelligent boy. 24 +Polly puts the kettle on the stove. 28 +The fire is burning brightly. 24 +The candle is on the table. 21 +David loves to go around the park. 27 +Robin loves the puppet show. 23 +Eric plays the guitar. 18 +The violin gives melodious music. 28 +Ducks live in water. 16 +The trees prevent pollution. 24 +Rachel dog has a chain. 18 +Zion drinks milk every day. 22 +David is painting the fence. 23 +Anna has a bungalow. 16 +Joe loves to wear jeans. 19 +Jack is paddling the boat. 21 +Darcy loves a bike ride. 19 +Eric posses a lot of furniture. 25 +Mia has long hair. 14 +Max is down with fever. 18 +The muffin man has a cart. 20 +Chubby has curly hair. 18 +Mary has a white pony. 17 +Straw hat's highlighted the fair. 27 +John is climbing the ladder. 23 +The name of this monkey is boo. 24 +The pacific ocean is very vast. 25 +Albert einstein was born in germany. 30 +I visited the taj mahal in india. 26 +Every sunday i visits my friends. 27 +I love watching my cat play with the pink yarn. 37 +How much time do you spend on your studies? 34 +How many brothers do you have? 24 +How many balls are there? 20 +How much money do you have? 21 +How many pens do you have? 20 +How many thyme do i have to tell you? 28 +How much i care about you? 20 +How much is left in the fridge? 24 +How much do you want? 16 +How much do you like me? 18 +How much is the time? 16 +How much can he take? 16 +How much do you charge? 18 +How much more do you want? 20 +How much do you miss me? 18 +How much of antarctica is covered in ice? 33 +How much of stress of you feel? 24 +How many bikes do you have? 21 +How much is the ticket? 18 +How much can you drink? 18 +How many houses are in your colony? 28 +How much far is your house? 21 +How much money can you afford? 24 +How many students are in your class? 29 +How many days is the journey? 23 +How many shoes do you have? 21 +How much longer can you drive? 24 +How much fast can you write? 22 +How much far is the hotel? 20 +How much water is in the tank? 23 +How many states are in india? 23 +How many plants are in your house? 27 +How many fishes are in the fish tank? 29 +How many goats do you have? 21 +How many pets do you have? 20 +How much far is the zoo? 18 +How many days does it take to climb everest? 35 +How many people live in your village? 30 +How many players are on the court? 27 +How many are in the prison? 21 +How many convicts are presented in the court? 37 +How much longer is the police station? 31 +How much longer will i drive the car? 29 +How much fast can you run? 20 +How many ears do you have? 20 +How much money do you spend? 22 +How many benches are there in that classroom? 37 +How many times does it ring? 22 +How much cotton is used for the pillow? 31 +How much oil is there in that tin? 26 +How many languages can she speak? 27 +How many students are there? 23 +How many books are there in the library? 32 +How many are working on the project? 29 +How much effort have kept? 21 +How much does it last? 17 +How many chains do you have? 22 +How much gold do you have? 20 +How many people can accommodate in that suite? 38 +How much money did you borrow? 24 +How many times does it blink? 23 +How many times do you bathe? 22 +How many times do i have to boil the chicken? 35 +How much time should i waste in convincing you? 38 +How many bows do you have? 20 +How much more does it bloom? 22 +How many times have you climbed the mountains? 38 +How many glasses did you arrange on the table? 37 +How many calls did you receive? 25 +How many buildings are demolished? 29 +How many employees are working at your company? 39 +How many people have entered through this gate? 39 +How many faces will you show up? 25 +How many times did you fail? 22 +How much information have you gathered? 33 +How much does he earn in gambling? 27 +How much do you heat? 16 +How much did he gain in cheating others? 32 +How much do you hate her? 19 +How many people did you interrogate? 30 +How many people did you invite? 25 +How many have joined that course? 27 +How many tissues do you use daily? 27 +How many sets of crockery do you have? 30 +How many blocks are there in that box? 30 +How many chairs are there in that room? 31 +How many ideas? 12 +How much money did you spend? 23 +How much sugar would you like in your coffee? 36 +How much paper will i need? 21 +How much milk is in the fridge? 24 +How much traffic was there on the way to work? 36 +How much did you pay for it? 21 +They play basketball together. 26 +I have more money than he. 20 +Eric sang the song to me. 19 +Count yourselves. 15 +I prefer this. 11 +Did you see that? 13 +I am young. 8 +I have a class today. 16 +We are on board. 12 +You are beautiful. 15 +That book is mine. 14 +Do you have my book? 15 +Don't think about me. 16 +Those books are yours. 18 +This car is ours. 13 +The discussion is about us. 22 +You have a good sense of humor. 24 +You are my inspiration. 19 +Just grab your chance. 18 +Is he your brother? 15 +I owe you a lot. 11 +Is this pen yours? 14 +This child is mine. 15 +It is raining. 11 +John is my friend. 14 +David's friend is a doctor. 21 +Max is an engineer. 15 +This book belongs to him. 20 +We are going to the park. 19 +We have three children. 19 +Ours is a big house. 15 +They care about us. 15 +Let's surprise her. 15 +Here is your book. 14 +He loves his dog. 13 +He loves to dance. 14 +He plays drums. 12 +His pen is red. 11 +That eraser is mine. 16 +His brother is very talkative. 25 +Her face is beautiful. 18 +Her bangles are nice. 17 +His countenance has fallen. 23 +She is my sister. 13 +She is my guardian. 15 +That book is hers. 14 +That idea of yours is excellent. 26 +It is a sunny day. 13 +It is ten o'clock. 13 +I hurt myself. 11 +This is my turn. 12 +It was i who first protested. 23 +She is my neighbor. 15 +They have gone home. 16 +The fleet will reach its destination. 31 +Nobody will help you but me. 22 +The presents are for you and me. 25 +John and i were present. 19 +You are a lazy boy. 14 +They are very intelligent. 22 +Wait for me and rani. 16 +You and i have done our duty. 22 +My uncle lives in hyderabad. 23 +Radha has hurt herself. 19 +That pen is yours. 14 +The laundry isn't going to do itself. 29 +I was sitting by myself. 19 +Who is your friend? 15 +The honest man is trusted. 21 +My sister who is a nurse went to somalia. 32 +The presents were received by each of them. 35 +I bought these mangoes for three rupees. 33 +Eric is more of himself. 19 +David set himself a hard task. 24 +We hurt ourselves. 15 +We saw the president himself. 24 +The town itself is not very large. 27 +The task itself is very difficult. 28 +Do it yourself. 12 +I was standing alone by myself. 25 +Let's do it ourselves. 17 +They enjoyed themselves. 21 +Daniel hurt himself. 17 +Acquit yourselves like a man. 24 +I met hari who had just returned. 26 +I have found a pen which i lost. 24 +Here is the book that you sent me. 26 +The two men care about each other. 27 +They quarreled with each other. 26 +Nobody was there to rescue the child. 30 +Do good to others. 14 +Did you ask anybody to come? 22 +Daniel is a man of few words. 22 +Some milk was spilled. 18 +Whom do you like? 13 +To whom does this book belong? 24 +This is the boy about whom i told you. 29 +Jack is always against me. 21 +This is the boy whose work is appreciated. 34 +This is the girl who is going to dance now. 33 +My son who is a doctor works in a care hospital. 37 +Max is that his content is rich. 25 +He who hesitates is lost. 20 +Whom do you want? 13 +Which one is yours? 15 +Which book are you reading? 22 +Tell me what you have done. 21 +Whoever told you so? 16 +Whoever has done this is guilty. 26 +Whatever do you say i am going? 24 +What still here i thought you had gone. 31 +What you don't know rama? 19 +What how silly are you? 18 +I heard him telling them about the movie. 33 +Bravo agreed to look after the baby. 29 +The headmistress likes her a lot. 27 +Emma asked me to review it by this evening. 34 +They went to the museum. 19 +It is an endangered species now. 26 +They were planning to hide it. 24 +John himself went to check the gate. 29 +David himself is responsible for those low grades. 42 +Jane looks into the nitty-gritty of running the house. 44 +They admitted to their mistakes. 27 +The book itself tells you all about pronouns. 37 +I am a slow walker. 14 +The children themselves made the plan. 32 +The village itself is very small. 27 +We will be completing the assignment. 31 +Ruskin bond himself is a great author. 31 +This is the lady who helped me. 24 +This is the book that my mother wrote. 30 +There is the man whose horse won the race. 33 +This is the house that belongs to my great-grandfather. 45 +This is the person whom we met at the party. 34 +This is the letterbox that i was talking about. 38 +A chair is a piece of furniture which we use for sitting. 45 +I found the ring that i thought i had lost. 33 +Jack is a boy whose sister is a famous tennis player. 42 +This is the boy who scored the highest marks. 36 +Who is there at the door? 19 +Which is your book? 15 +What are you doing? 15 +Who is making noise? 16 +Whom were you speaking to? 21 +Whichever came first? 18 +Whose is this dress? 16 +Whoever came to the shop? 20 +Whoever should tom invite? 22 +Harry stared at himself in the mirror. 31 +Something is wrong there. 21 +Everyone was smiling. 18 +He never does a favor to others. 25 +Everything was told before the meeting. 33 +Many of them were injured. 21 +Both have paid homage to their great ancestors. 39 +All of the players we count on are out of form. 36 +Almost all the money in my bank account has been spent. 44 +Those are my neighbor's dogs. 23 +This is my bicycle. 15 +These are cakes and those are burgers. 31 +That is my bag. 11 +In those days, we were young and innocent. 34 +This is a present from my uncle. 25 +Those keen to attend the magic show may come along. 41 +That is the sound of a factory siren. 29 +Are those your classmates? 22 +That is not the best thing to do. 25 +This dress is mine. 15 +This is my dress. 13 +That school is hers. 16 +This is her school. 15 +This house is theirs. 17 +This is their house. 16 +I will be leaving soon. 18 +Rachel is the new teacher. 21 +Daniel speaks three languages. 26 +They are very friendly neighbors. 28 +They offered me a ride. 18 +This letter is addressed to me. 25 +The green gloves are mine. 21 +That cat is hers. 13 +The red house is theirs. 19 +I bought myself a new car. 20 +That man thinks a great deal of himself. 32 +We may be deceiving ourselves. 25 +I was certain of the facts. 21 +The trouble is in the machine itself. 30 +The cooks themselves eat after all the guests have finished. 50 +Both were candidates. 18 +No one is home. 11 +Several of the workers went homesick. 31 +I don't much care for these. 21 +Who's that? 8 +Such are the fortunes of war. 23 +Who left? 7 +Which of these is yours? 19 +Do whatever you please. 19 +The car that has a flat tire needs to be towed. 36 +The visitor who came yesterday left his phone number. 44 +Do whatever you like. 17 +Thou shalt not kill. 16 +With this ring, i thee wed. 21 +Thy name is more hateful than thy face. 31 +To think own self be true. 20 +The boxers punched each other. 25 +The couple love one another deeply. 29 +I will do it myself. 15 +We made this pie ourselves. 22 +A nation speaks for itself through elections. 38 +We are going on vacation. 20 +Don't tell me that you can't go with us. 29 +These are steep stairs. 19 +We ran into each other at the mall. 27 +This car is better than that. 23 +These animals are wilder than those. 30 +The blue hat is mine. yours is on the upper shelf. 38 +Who will come to the party? 21 +What do you need? 13 +Whose clothes are on the floor? 25 +Whom did you tell? 14 +It is one of the nicest italian restaurants in town. 42 +I have green eyes. 14 +They are coming to my house. 22 +You are my friend. 14 +I like to watch tv, but he does not. 27 +Bring your glass here. 18 +Here the subject you are understood. 30 +Here are some ripe mangoes. 22 +He comes here every day. 19 +Here is a rupee. 12 +Are strangers here. 16 +Here are the books which i found. 26 +Here is the book. 13 +Here is the doctor. 15 +Here is the pen. 12 +I have been living here for months. 28 +I wish my brother were here. 22 +The child came here yesterday. 25 +They are here used for asking questions. 33 +They sell radios here. 18 +We shall stop here a few days. 23 +Stand here. 9 +Do you want to stay here? 19 +He called her a few minutes ago. 25 +He comes here daily. 16 +He is here. 8 +He seldom comes here. 17 +Here are further. 14 +Could you come here for a minute? 26 +Here are your shoes. 16 +Here comes the bus. 15 +Here is a house to let. 17 +I am here. 7 +I will be staying here till sunday. 28 +I will have worked here for five years. 31 +If he should see me here, he will be annoyed. 35 +Let him sit here. 13 +Playing cards is not allowed here. 28 +The distance from here. 19 +They are here. 11 +We also see that it is here. 21 +We have lived here for ten years. 26 +He lives far from here. 18 +He will come here. 14 +Here is the watch that you asked for. 29 +How far is it from here? 18 +I remember the house where i was born. 30 +Bring your glass here and i will give you some juice. 42 +He says put it here. 15 +But here, a city on the. 18 +I am here for the. 13 +But here it is. 11 +If he had stayed here. 17 +I am here my love. 13 +I tell her i was here. 16 +You are here in hell. 16 +You should be ok here. 17 +Rachel had no place here. 20 +Rose had no allies here. 19 +And all is lost here. 16 +We are here to serve. 16 +Not here, mister whitlow. 21 +Here, in her own words. 18 +Todd, i can't stay here. 18 +What is going on here? 17 +I will be fine over here. 19 +I then said here i am. 16 +I'm here to see that. 15 +That is the topic here. 18 +Here as always, my lord. 19 +And, well, here i am! 16 +Ok, back here in 2 hours. 19 +As ever i'm here too. 15 +We will be here early. 17 +He owns them down here. 18 +He's been here with you. 18 +Came here in the winter. 19 +They were all over here. 19 +So hesper still was here. 20 +Only that you were here. 19 +We can stop right here if you want, carmen. 34 +She didn't come here to talk to me. 26 +Are you here again? 15 +Pause here to take a breath. 22 +She'll have to stay here tonight. 26 +Strange, it had never seemed lonely here before. 40 +He has been here for about an hour. 27 +I believe they are all here, said one. 30 +Megan should be here any minute. 26 +What makes you think i came here to see you? 34 +Our press that button there. 23 +Put it over there. 14 +There it is, on the sink. 19 +There came a giant to my door. 23 +There are twenty boys in this class. 29 +There is a cow in the garden. 22 +Without health, there is no happiness. 32 +There are three ways. 17 +Thus there are two numbers in english. 31 +There are many different people in europe. 35 +There is little time for preparation. 31 +There are no pictures in this book. 28 +There should not be much talk. 24 +There were riots in delhi. 21 +There was not the slightest excuse for it. 34 +I knew he was there. 15 +I do not know who is there. 20 +I will take you there one day. 23 +Lay the basket there. 17 +There are on the committee among others. 33 +There are two articles. 19 +There are two ways of doing the sum. 28 +There is a flaw in this diamond. 25 +There is little hope of his recovery. 30 +There lived a giant. 16 +There were doors all round the hall. 29 +Wait there. 9 +What is there that i do not know? 25 +Is there a bank around here? 22 +Who goes there? 12 +Yet there is the method in it. 23 +You see him there. 14 +Bid him go there. 13 +He is not there. 12 +He was there. 10 +I have to be there at five o'clock. 26 +I used to live there when i was a boy. 28 +I was there,. 10 +There are several ways. 19 +There aren't any left for you. 23 +Therefor five years. 17 +There is a growing tendency. 23 +There is a screw loose somewhere. 27 +There is much truth in what he says. 28 +There she goes. 12 +There was not a moment to be lost. 26 +There was nothing for it to fight. 27 +They were there. 13 +Unfortunately, no one was present there. 34 +Come away from there. 17 +Hang the picture there. 19 +He comes from there. 16 +He must have reached there. 22 +He was discharged as there was no proof. 32 +Sam went there on my bike. 20 +There are many rumors in the bazar. 28 +There are some diseases. 20 +There is a big tree in front of his house. 32 +There is a cow in the field. 21 +There is no authority. 18 +There is no exception. 18 +There is no meaning in what you say. 28 +There is still no cure. 18 +There were three other boys present. 30 +There weren't many people at the meeting. 33 +We should go there tomorrow evening. 30 +There is no other way. 17 +It was hot out there. 16 +It's there, so use it. 16 +I was there for him. 15 +There was a blue flash. 18 +There was more to it. 16 +There is no life in. 15 +There is a time and. 15 +There is no life too. 16 +There was a knock-on. 16 +There is a paradox here. 19 +So there we are, right. 18 +In others, there it is. 18 +There were four of them. 19 +There seemed to be no. 17 +I had brought you there. 19 +There is no going back. 18 +There were many of them. 19 +There is no such thing. 18 +There is a short silence. 20 +It is there with death. 18 +We have to go in there. 17 +There was no other way. 18 +There were two of them. 18 +There was no one inside. 19 +David did have to stop there. 23 +For a moment there was. 18 +Harry will be there for you. 22 +Their mole had given a. 18 +Then there are the gangs. 20 +There has to be a reason. 19 +Daniel is there with him. 20 +He was aware that there. 19 +No one has. 8 +I will be there in five. 18 +There is a wonder in most. 20 +There was a small table. 19 +It's not there anymore. 18 +There were only two beds. 20 +This is mine. 10 +I like this, he said, zipping it up. 28 +This is our planting ground. 23 +This might be the most difficult discussion. 37 +And stop this making before the kids come in. 36 +Many changed in these seventy years of life. 36 +This was a decision she had already made. 33 +This isn't a good time. 17 +At least at this point, don't go. 25 +Waiting this long might have been an advantage. 39 +I want this baby as much as you do, alex. 31 +This time he didn't simply indicate what he felt. 39 +This isn't easy for you, is it? 23 +How else would you explain things like this? 36 +Don't open this door. 16 +Lucy had come this far for vegetables. 31 +Cade had been busy this morning. 26 +Bandages are not for things like this, anyway. 38 +I'm old and weak and this is what you wanted? 34 +I agreed to this because of the baby. 29 +It's none of my business how you run this outfit. 38 +What's this? she said, frowning. 25 +I should get rid of this and buy something else. 38 +Maybe this was his expression of resistance. 37 +Megan should discuss all this with alex. 33 +He had hidden it from her all this time. 31 +Don't blame her for the lack of attention this time. 41 +I'm the one who dragged you into this. 29 +Why did you do all this? 18 +Daniel gave this picture to me. 25 +And this must be mr. 15 +This is his woman now. 17 +How do i know this? 14 +This was going to be. 16 +I just made this up. 15 +Ants are good at this. 17 +Think of it like this. 17 +This is quite a boat. 16 +I just love this game. 17 +This was not good news. 18 +By the way, this is. 15 +I think this is a test. 17 +This is how the name. 16 +How did i know this? 15 +As he did this, son. 15 +But i do know this. 14 +While this is true, we. 18 +So let's dive into this. 18 +He had no time for this. 18 +This happens in a day. 17 +This is the power of god. 19 +This is not a love song. 18 +You can stop this, baby. 19 +This is the end of me. 16 +This is at our disposal. 19 +Why not keep this up? 16 +If this spirit is not. 17 +God teaches us this way. 19 +You have to do this!!!. 15 +What the hell is this? 17 +I was surprised by this. 19 +Share this with your friends. 24 +This is as it should be. 18 +They camped on this site. 20 +Say this prayer with me. 19 +Of course, this took time. 21 +This is what we need, mr. 19 +I don't understand this. 19 +This is your truth, mac. 19 +This truth sets us free. 19 +I have heard of this wonderful magic. 30 +This is our planting-ground. 23 +About this time i found out the use of a key. 34 +I'm too warm in this one. 18 +But this wasn't just any trip. 23 +This is the usa. 12 +This wasn't the alex she knew. 23 +This dog helped him watch the sheep. 29 +Now eat with this. 14 +This is a fine meal, do you think? 26 +You've paid a dear price for this thing. 31 +This is our home. 13 +This does not bother you? 20 +This was the final step. 19 +Let's talk about this. 17 +We need some fresh air in this stuffy room! 34 +I should have anticipated this. 26 +Is it this house? 13 +But this wasn't about intimacy-was it? 30 +I'm old and weak and this is what you wanted. 34 +Could all this be happening to her? 28 +The pear trees are blossoming out early this year. 41 +What had she been thinking of all this time? 35 +This train conveys passengers to london. 34 +This is a nice scrape you've got me into, isn't it? 38 +We are all vegetable, in this country. 31 +But this was not true. 17 +In the first place, he didn't consider this home. 39 +Someone else carries this baby for you. 32 +This world belongs to the energetic. 30 +Is it always like this? 18 +And he loves you this much? 21 +It always comes down to this, doesn't it? 32 +This is not enough for alex to support? 31 +Rose, this is bravo, felipe introduced her. 36 +This time it will be a long one. 24 +Do you know the meaning of this word? 29 +No, only in this county. 19 +She should discuss all this with alex. 31 +Do you have much room for this new baby? 31 +Since you arrived, she is not sure this is the way. 40 +I do not want all this. 17 +Will this be your last baby? 22 +Who was paying for this? 19 +This came in by currier a few minutes ago, sir. 37 +No, this one is ours. 16 +May i have this dance? 17 +This will take us most of the way. 26 +That dog is hers. 13 +Clean that table. 14 +That toaster burned my bagel. 24 +I thought that was the best way to carry her. 35 +Eric was thinking to hide a thing like that from you. 42 +Well, if my cooking is that bad. 25 +That was when mary decided to relieve her mind. 38 +Harry spoke so well that everybody was pleased. 39 +It was the first time she thought of mary that way. 40 +Stop bugging her about that thing. 28 +Jack stopped and picked up a bird's nest that had fallen. 45 +That i am not prepared to say. 23 +I am greater than that sorcerer. 26 +Did i ever tell you that you're the most handsome man? 42 +After that other people brought water from a brook. 42 +That is if jim has had enough of the pink grass. 37 +It is with a kind of fear that i begin to write the history. 46 +What do you mean by that? asked the little wizard. 39 +That was a no-brainer. 17 +But i noticed that many queer things have happened. 42 +I wonder why it is that we can walk so easily in the air. 43 +No one could deny that alex was a devoted husband. 40 +That didn't sound very nice. 22 +But even that did not satisfy the princess. 35 +Baby birds were there, that had not fallen out. 38 +I know better than that. 19 +Let's just leave it at that. 21 +I was so excited that i couldn't sleep. 30 +Do you know that? 13 +That's what you get for waiting so long. 31 +That's easy for you to say. 20 +I guess that will do. 16 +That would change when they got home. 30 +Rose was so exhausted that he couldn't pick up bill. 41 +That sounds like her fever finally broke. 34 +Crackling is much better than that faint wheezing. 42 +Anna came home that evening very tired. 32 +Yet one has just occurred that was even worse. 37 +There was an object that looked like a balloon. 38 +Did alex think of her that way? 24 +Later, he said that with a grin. 25 +Don't hide from me that i haven't already seen? 36 +Now that's splitting hairs. 22 +I've waited at that station for five hours. 34 +David thought that was all to say. 27 +How can we do that? asked the girl. 26 +Do i look that bad? 14 +That seemed unlikely, though. 25 +We can call it that. 15 +That was our deb year. 17 +I got that kind of. 14 +With that, he was gone. 18 +That is why i will. 14 +I go along with that. 16 +That is kind of them. 16 +So far today that was. 17 +That is why in that. 15 +And that is the point. 17 +She went to work on that. 19 +Look at that, will you? 18 +I'm tired of that game. 17 +It is my prayer. 12 +Anna would not do that. 18 +That throws me a little. 19 +If that is true what. 16 +Even he could see that. 18 +He could see that now. 17 +So jack did just that. 17 +And that is a process. 17 +Consider that in the u. 18 +I have to laugh at that. 18 +Even i don't know that. 17 +But you don't know that. 18 +I don't see it that way. 17 +I preferred it that way. 19 +Oh, give up on that one. 18 +They do not think that. 18 +That time is ticking by. 19 +If that makes any sense. 19 +Me and my mom, that is. 17 +It was as simple as that. 19 +Can't say that i have. 16 +And what would that be? 18 +All told, that was that. 19 +I cling to that thought. 19 +I get that in that club. 18 +A horse stumbles that has four legs. 29 +He that will thrive must rise at five. 30 +He that regards not a penny, will lavish a pound. 39 +He that fears death lives not. 24 +Can i have one of these? 18 +You can use any one of these. 22 +These are my other two daughters, joe and anna. 38 +Quick harry, help me pull off these wooden wings! 40 +They carry these at the store. 24 +These were temptations of the devil. 30 +Do you treat these calls differently? 31 +King was very intrigued by all these oracles. 37 +I'm quite worn out by these callers. 28 +Max knew that these were the eyes of the wolf. 36 +I guess not but please take down all these details. 41 +I took the liberty of confirming some of these cases. 43 +But she drove these thoughts away with disgust. 39 +It comforted him to hear these arguments. 34 +These silly jobs didn't make her a living. 33 +These could be hallucinations, couldn't they? 38 +These belonged to aunt annie too? 27 +Do you know what these are going to be yet? 33 +I have all these visions in my head. 28 +You have magic in these hands. 24 +After all these years, he still held regrets. 37 +Now, where do i put these? 20 +I'm going to get out of these wet clothes. 32 +Are these women's clothes? 21 +These are from anna. 16 +These men aren't wearing western uniforms. 35 +These doctors will take care of the injured. 36 +I will go out and see some of these things. 33 +For these live by faith. 19 +It was during these long. 20 +Most of these you take. 18 +God, i hated these places. 21 +These are not old times. 19 +All these gifts begin to. 20 +I put these into the sack. 20 +These things were not me. 20 +Loves me more than these? 20 +At least these could be. 19 +All of these ports were. 19 +These went to the stream. 20 +As i do these things, i. 18 +Withal of these, every. 19 +Dead these many years now. 21 +I have waited these hours. 21 +I have witnessed these wars. 23 +Even in all these letters? 21 +Many of these warriors had. 22 +These he stuffed into the. 21 +But these are modern times. 22 +All these humans were the. 21 +Pay attention to these two. 22 +All these things i loathe!. 21 +I hate these fucking doors. 22 +We will debate these issues. 23 +These words are only used. 21 +Where did you get these? 19 +Mack, these are just great. 22 +These weapons of your life. 22 +Note these in your journal. 22 +Average of these four years. 23 +Yes, these shall be gathered. 24 +These are wounds at that time. 24 +Women don't do these things. 22 +But what had these animals. 22 +These cones are so full of. 21 +These events were not normal. 24 +As you have told us, these. 21 +Now, many people have these. 23 +Are these bears here? 17 +The worst misfortunes are these that never happen. 42 +How's your mother doing these days? 28 +How long would these mind games go on? 30 +I'm talking about the safety of these people. 36 +You'll have to show me these beautiful flowers. 38 +These are my other two daughters, daniel and anna. 41 +Who built these lovely bridges? asked the little girl. 44 +So you must be careful not to spend these foolishly. 42 +If they could talk, what tales these hills could tell. 44 +Nobody could answer these questions. 31 +These ships were loaded with corn. 28 +These steps lead to the land of the gargoyles. 37 +One of these days is none of these days. 31 +These are friends, not enemies. 26 +Can it be proved that he did commit these offenses? 41 +Why hadn't she anticipated these questions? 36 +How will we see these discontinuities coming? 38 +These are friends and will do you no harm. 33 +Quick bravo, help me pull off these wooden wings! 40 +They carry these at the store where we always shop. 41 +Are these ingredients in other foods as well? 37 +Are you prepared to repeat these allegations in court? 45 +It's impossible to be accurate about these things. 41 +I'm all for putting these guys down. 28 +But these doubts only lasted a moment. 31 +These treaties are good. 20 +These ideas have now been completely discarded. 40 +These bloody lessons would sober most people down. 42 +She has built these scraps of metal into a sculpture. 43 +He knew that these were the eyes of the wolf. 35 +Are you sure these documents belong together? 38 +So how do these things get made? 25 +Where did you get all these questions? 31 +These cakes are very quick and easy to make. 35 +Tell me about these bones. 21 +Do you ever ride one of these? 23 +I need to paint those windows. 24 +What color are those? 17 +Those films are being made now. 25 +Besides, those are my animals. 25 +Those eyes would be mocking her. 26 +Do those two things even compare? 27 +Those jeans make your legs look so long. 32 +Those hospital corridors are long. 29 +My parents used to listen to those old songs. 36 +Those words stayed in her mind all afternoon. 37 +Joe couldn't have forgotten those eyes. 32 +Daniel, we all agreed on those rules. 30 +In those days, people are kind to each other. 36 +I'll take care of those details. 25 +See those clouds how they hang! 25 +A touch of humor flashed in those blue pools. 36 +I think i shall never revisit those scenes. 35 +What if a snake had been in those bushes? 32 +To me, those stories feel a bit desperate. 34 +I take it you don't want to fix those snakes. 34 +It's awful with those sausage eaters! 30 +He saw the kind faces of those whom he loved. 35 +The answers to those questions are in this book. 39 +Those are the things to be seen. 25 +Those ideas were stolen from me. 26 +Those people are very insane. 24 +It was one of those break-through moments. 34 +Those are the plain and simple facts. 30 +Then more in one year than those five. 30 +Are those our men there? 19 +Ah, those are the french! 20 +Eric could have gone to get those troops. 33 +See what you can do with those. 24 +Fourteen left-two of those wounded. 29 +I tossed you about those rabbits. 27 +I guess those are all excuses. 24 +I suppose he missed those. 21 +I'd outgrown those feelings, hadn't i? 30 +Those were the last words spoken by him. 32 +This causes them to be drawn to those flowers. 37 +What about those we were accusing? 28 +Those that do not will. 18 +Like those porn flicks we. 21 +When we fight as those. 18 +What's up with those two. 19 +Some of those may have. 18 +For those who would delude. 22 +I need those magic hands. 20 +Those that are should not. 21 +Oh! the idiocy of those. 18 +Those carbs that are from. 21 +For those who act in the. 19 +One of those pensive ones. 21 +Those who live by faith. 19 +Who truly weep over those. 21 +One of those options is. 19 +Max can elaborate on those. 22 +Killed two of those bastards. 24 +We call on those groups. 19 +Give me two of those torches. 23 +The strikes of those from. 21 +I was not one of those girls. 22 +Those prey to them wishes to. 23 +Those who want to seem more. 22 +Today was one of those days. 22 +Why are those men here? 18 +Those who have great cal. 20 +I can eat without those. 19 +Those who are in the bible. 21 +Each of those people would. 22 +What those anglos did to us. 22 +Those men with whom you were. 23 +Those that were healed began. 24 +It's neither of those things. 23 +He seemed to be one of those. 22 +We just have to cross those. 22 +You can't have grown those. 21 +Those, on the contrary, for. 23 +But those are merely words. 22 +Those were years of transition. 26 +Good things come to those who wait. 28 +None are so deaf as those who will not hear. 34 +Miracles are to those who believe in them. 34 +None so blind as those who won't see. 28 +There's none so blind as those who will not see. 37 +None so deaf as those that won't hear. 29 +Am i looking pretty? 16 +I am alone. 8 +Who am i? 6 +Am i your friend? 13 +Am i your servant? 14 +Am i your sport? 12 +As long as i am a king. 16 +Why i am brighter? 14 +I am a magic carpet. 15 +I am going to the cinema tonight. 26 +I am hoping to get a holiday soon. 26 +I am loving it. 11 +I am monarch of all. 15 +I am not afraid to speak the truth. 27 +I am thinking of going to malaysia. 28 +I am late. 7 +I am a boy. 7 +I am at a loss. 10 +I mean, i am a. 10 +So what? so am i. 11 +I am not as they. 12 +I am that i am. 10 +Here am i, my son. 13 +I am one of them. 12 +What i am telling. 14 +I am not in the. 11 +And yes what i am. 13 +And what i am not. 13 +Deep down i am a. 12 +I am 24 years now. 13 +Oh, i am so sorry. 13 +And yet here i am. 13 +I am in the crypt. 13 +I am afraid of him. 14 +I am born in the u. 13 +I am chosen to show. 15 +Yes, i am that good. 15 +Then what am i? 11 +Feel that i am. 11 +I am sure you will. 14 +Of which i am made. 14 +I am no beauty, mrs. 15 +I am very tired now. 15 +I am there in the heart. 18 +But i am not fooled. 15 +I am ashamed to beg. 15 +I am not worth that. 15 +It was now seven am. 15 +For one thing, i am. 15 +Wait until i am done. 16 +What am i afraid of? 15 +I am a teacher. 11 +I am working on my computer. 22 +Am i late? 7 +Emma is my best friend. 18 +Who is your favorite? 17 +Daniel is my friend. 16 +My uncle is going abroad. 20 +Harry is my best friend. 19 +David is our teacher. 17 +He is but a child. 13 +He is like his father. 17 +Rose is my cousin. 14 +He is little known here. 19 +He is more like a brother. 20 +He is averse to playing cards. 24 +Rose is a clever girl. 17 +He is addicted to alcohol. 21 +He is an expert in inventing stories. 30 +He is skillful in drawing. 21 +He is honest. 10 +Each direction is filled with wonderful planets. 41 +It is the worst of the worst. 22 +Mine now is it. 11 +There is a rainstorm. 17 +There is no such day. 16 +This is odd. 9 +Your gold is with the princess. 25 +Your treasure is mine. 18 +A herd of cattle is passing. 22 +He is on the committee. 18 +How cold the night is! 17 +Islamabad is the capital of pakistan. 31 +John is absent because he is ill. 26 +Measles is infectious. 19 +Billiards is my favorite game. 25 +Nature is the best physician. 24 +Our team is better than theirs. 25 +The class is studying grammar. 25 +The up train is late. 16 +This flower is very beautiful. 25 +The girl is fond of music. 20 +This room is thirty feet in length. 28 +I am sorry to hear this. 18 +I am the person that is to blame. 25 +It is cold. 8 +She is hungry. 11 +She is working on her computer. 25 +It is an elephant. 14 +I am what is. 9 +He is a god of. 10 +It is not my work. 13 +The one who is in. 13 +This is crucial. 13 +This is first seen. 15 +Power is what god is. 16 +It is his foundation. 17 +He is dominated by. 15 +There is no wasted. 15 +In a song in harmony. 16 +It is disbelief. 13 +Is that a problem? 14 +Hell is a real place. 16 +Neither is complete. 17 +In a yes love is born. 16 +Remember, he is the. 16 +If he is taking you. 15 +He too is crying now. 16 +My kiss is not death. 16 +Only love is natural. 17 +God is always ready. 16 +How crazy is that? 14 +It is strong and big. 16 +It is not real. 11 +The paint is peeling. 17 +He is always with us. 16 +Where is she? 10 +What is addiction? 15 +Fear is a primal thing. 18 +It is unique. 10 +Rosita is still there. 18 +Mighty is what god is. 17 +Taking a life is easy. 17 +My sister is a nurse. 16 +John is a clever boy. 16 +The kettle is boiling. 18 +The baby is sleeping. 17 +What is he doing there? 18 +Where is my pen? 12 +What is this? 10 +Maya is my best friend. 18 +The teacher is standing in front of the desk. 36 +The dog is barking. 15 +Is he happy? 9 +Is she hungry? 11 +Is it cold? 8 +She is my best friend. 17 +He is writing a letter. 18 +Mother is cooking dinner. 21 +Father is working in the garage. 26 +It is a dog. 8 +Where are your children? 20 +We are taught arithmetic. 21 +They are singing. 14 +They are my friends. 16 +We are wrong about you. 18 +We are relatives. 14 +We are related to each other. 23 +You are looking awesome. 20 +We are on a mission. 15 +We are four in our family. 20 +They are very rich. 15 +We are obliged. 12 +Order is in the wrong words. 22 +Here are some flowers. 18 +My treasures are missing. 21 +You are the brightest planet. 24 +The japanese are a hard-working people. 32 +These poultry are mine. 19 +I am watching you very carefully. 27 +People who pay their debts are trusted. 32 +Rama and hari are cousins. 21 +Sweet are the uses of adversity. 26 +The after-effects of the drug are bad. 30 +The book is where you left them. 25 +We are preparing for the test. 24 +We are waiting for them. 19 +When i am aware, i. 14 +You are one of us. 13 +My lady, you are correct. 20 +If you are to lead. 14 +Are we the new israel? 17 +If you are a match. 14 +We are not sax-cult. 15 +You are a good crew. 15 +You are all my family. 17 +You are then full. 14 +The trees are all dead. 18 +The birds are all dead. 18 +They are lots of fun. 16 +They are the same god. 17 +All actions are for god. 19 +Both are a little tipsy. 19 +You are still our mayor. 19 +You are staying in me. 17 +So we are at his mercy. 17 +Tell me, what are yours. 19 +By his stripes we are. 17 +You are a wizard, joe. 17 +Not all insects are bad. 19 +We are seeing god as god. 19 +You are repelled by this. 20 +They are still breathing. 21 +Aye, where mine is also. 19 +We are baptized in jesus. 20 +Are you still on duty? 17 +Although, we are in the. 19 +The questions are these. 20 +I like that you are a path. 20 +We are playing in a bank. 19 +May i ask who you are? 16 +The victims here are men. 20 +Boys are playing in the garden. 25 +The students are learning their lessons. 34 +Birds are flying in the sky. 22 +The girls are singing devotional songs. 33 +Are you coming with me? 18 +Are they ready yet? 15 +Where are the books? 16 +What are these tiny objects? 23 +Max and megan are pretty girls. 25 +We are late. 9 +You are sleepy. 12 +They are great. 12 +Are you clever? 12 +Are we late? 9 +Are you sleepy? 12 +Are they great? 12 +You are wonderful. 15 +She was crying. 12 +Joe was knitting. 14 +His voice was controlled. 21 +It was the earthquake. 18 +Her face was burning. 17 +His voice was soft. 15 +It was no secret. 13 +There was a lot at stake. 19 +Tom was a tough guy. 15 +It was so like her. 14 +It was will, my son. 15 +It was one of mine. 14 +I said i was sure. 13 +It was not a vision. 15 +It was dark by now. 14 +None of it was real. 15 +It was fine with me. 15 +It was an old story. 15 +It was a nice day. 13 +She was off his line. 16 +Ah, he was a bum. 12 +I was an only child. 15 +He was armed and fit. 16 +He was at her place. 15 +I thought it was her. 16 +It was a good evening. 17 +She was right so far. 16 +It was a small thing. 16 +But he was a man of. 14 +Travis was in a daze. 16 +It was peter, my boss. 17 +My heart was pounding. 18 +The pitch was perfect. 18 +It was my turn to nod. 16 +Now the game was tied. 17 +It was a very dark theo. 18 +Thirst was strange. 16 +Will was beside me now. 18 +It was a frugal meal. 16 +Fucking stupid, it was. 19 +Nothing great was ever achieved without enthusiasm. 44 +A man is not a horse because he was born in a stable. 40 +That was the best ice-cream soda i ever tasted. 37 +Rome was not built in a day. 21 +He who never was sick dies the first. 29 +He who was never sick dies the first fit. 32 +When i lent i had a friend when i asked he was unkind. 41 +Why do you weep? did you think i was immortal? 35 +Nothing comes out of the sackbut what was in it. 38 +I wept when i was born, and every day shows why. 37 +Avoid the ford on which your friend was drowned. 39 +He was fallible like everyone else. 29 +Senior medina was the first boy in his family. 37 +You said eric was your cousin. 24 +The return address was the doctor's office in chicago. 44 +That idea was troublesome to carmen as well. 36 +At ten years old, jonathan was almost as tall as she was. 45 +He was getting to be quite a handsome young man. 38 +What was he disappointed about-the new baby? 36 +He wouldn't have approved-of that she was certain. 40 +Then there was the money he left for carmen. 35 +The religion we call false was once true. 33 +He was born with a silver spoon in his mouth. 35 +They were playing. 15 +We were waiting for them. 20 +The boy was startled and his eyes were big. 34 +You were very greedy, said the girl. 29 +I don't know where they were planning to sit. 35 +There were sparks between them from the start. 38 +My parents were deeply grieved and perplexed. 38 +They were faithful straight liners. 30 +All eyes were on anna as she mounted. 29 +Soldiers were marching through the fields. 36 +But the foes were too many to be repulsed for long. 40 +We were on our way back. 18 +The orders were not to let them in. 27 +Eric opened his eyes as they were closing. 34 +Right now she didn't care where they were. 33 +The home was any place they were together. 34 +At least they were talking. 22 +His shrug and tone were nonchalant. 29 +The babies in the photo were living beings. 35 +They were home and together. 23 +Now i understand why you were crying. 30 +There were no openings. 19 +So they were going to question her. 28 +You were a lot harder to read. 23 +We were all together. 17 +What were you thinking? 19 +You weren't exactly friendly. 24 +After all, her plans were going so well. 32 +They were wrong, and she intended to prove it. 37 +Maybe that was why they were so happy. 30 +All eyes were on him, but he appeared not to notice. 41 +I didn't know you were awake. 22 +People passing between them were a blur. 33 +The lady you were talking to. 23 +Even as tired as she was, his arms were a welcome haven. 44 +They were expecting-as surely as if they were in her womb. 46 +Her pupils were large, making her eyes look dark. 40 +Love, he said, as if the one word were a full explanation. 46 +Again it struck her how much they were alike. 36 +John was so angry that tears were rolling down her face. 45 +It was a good thing they were going home tomorrow. 40 +Anna, why were you with mia all evening? 32 +They were home but still playing love tag at night. 41 +I guess i'd wonder too if i were in your shoes. 35 +They weren't exactly best of friends. 30 +Tears were streaming down her cheeks. 31 +Most of them were in. 16 +Said you were doing a. 17 +They were part of the. 17 +They were close to the. 18 +We were doing all right. 19 +They met when they were. 19 +They were gifts, you see. 20 +They were going to kill us. 21 +Even the birds were silent. 22 +He and the father were one. 21 +They were quite proud of it. 22 +There were two chairs set. 21 +Her pleas were to no avail. 21 +Heaven and hell were human. 22 +Yes, they were still there. 22 +Were others to examine me. 21 +They were after chip. 17 +The results were due. 17 +They were part of the hack. 21 +There were a few rather. 19 +Even so, there were a few. 20 +The keys were old and loose. 22 +They were probably out cold. 23 +The carpets were a disgrace. 23 +Ish and i were too overfed. 21 +Man, we were dumb back then. 22 +The lips were pale and thin. 22 +They were close to a forest. 22 +The rest were on top of him. 21 +You were shot, he said. 18 +The folk of buttercup were. 22 +They were nearing the tunnel. 24 +You were down there awhile. 22 +The other woman was shocked. 23 +Of course, there were rumors. 24 +If the beard were all, the goat might preach. 36 +A friend is, as it were, a second self. 30 +If wishes were horses, beggars would ride. 35 +If it were not for hope, the heart would break. 37 +If there were no clouds, we should not enjoy the sun. 42 +If things were to be done twice all would be wise. 39 +Instructions were relayed to him by phone. 35 +A gang of youths was loitering outside the cinema. 41 +All the hospital staff was wonderfully supportive. 43 +Some leaves were floating about on the still lake. 41 +His eyes were full of fire. 21 +We have a meeting at 12. 18 +Nurses have a difficult job. 23 +You have done well said his grandfather. 33 +You'll all have to walk. 18 +Where in the world have you been, my lad? 32 +It is a little speech that i have written for him. 39 +Why have you not written. 20 +I have something here for little harry. 32 +If it isn't i'll have to stand it, that's all. 33 +Harry, you have done very well. 25 +Have you them here with you? 22 +In persia, we do not have such feasts. 30 +Have you a room here for me?. 21 +I have come to ask your pardon. 24 +I think you have been asleep, said the king. 35 +We're going to have a baby, not a sin. 28 +Have mercy on me. 13 +I have some pennies, said benjamin. 29 +Have you been sick? 15 +But come, children, let us have our supper. 35 +You may have them. 14 +And what have they promised? 23 +I deceived only the birds, but you have deceived me. 42 +What have you come for? 18 +You have your children in your home. 29 +Many boys and girls have read his story. 32 +That is the one thing i have faith in! 29 +Wherever have you been, emma? 24 +I may have to eat them, after all. 26 +I do not need to breathe, returned the other. 36 +It is the cross i have to bear. 23 +You have a good family. 18 +We might have done something to help you. 33 +Ours must have got the best of it. 26 +Kittens have no conscience. 23 +Well, have you heard the great news? 29 +I have known him for a long time! 25 +A fine idea to have a blind general! 28 +How many do you have? 16 +Yes, we have many horses. 20 +I can't have one. 12 +They have some very nice animals. 27 +That way you don't have to taste it. 27 +I have no experience. 17 +They would like to have such a life. 28 +She could have been a model. 22 +I must have missed them. 19 +You need to have it x-rayed. 21 +I did not have any. 14 +We have to have it. 14 +All we have is now. 14 +I have to be free. 13 +Sip mine. 7 +We have plenty of fuel. 18 +You have to wake up. 15 +It means we have some. 17 +He would have done it. 17 +I have one arrow left. 17 +You have to be first. 16 +I think he must have. 16 +But you have to smile. 17 +I have no later ones. 16 +Daniel, you have to listen. 22 +I may have been too good. 19 +He did have to stop there. 20 +They would have a hose. 18 +You have done well john. 19 +He didn't have to. 13 +Have you looked at him? 18 +You must have liked him. 19 +We don't have to wait. 16 +Why don't you have a? 15 +He need not have worried. 20 +They all just have the. 18 +You'd have to drive them. 19 +It would have been good. 19 +We have a sitting tenant. 20 +Because i have made them. 20 +It should have been fine. 20 +It could have been worse. 20 +Yes, he has a very good eye. 21 +We have three hours to go. 20 +He has given you the air in which to move and have homes. 44 +Do you have plans for this afternoon? 30 +He seems to have vanished without a trace. 34 +Will i have to have an operation? 26 +I have a bit of a fever. 17 +I have a lot of free time today. 24 +What kind of snacks should we have? 28 +Have you hugged your child today? 27 +She didn't have any maternal instincts. 32 +She didn't even have the strength to stand up. 36 +I have the hots for tom. 18 +I have a hunch that jane likes me. 26 +I shouldn't have drunk this much. 26 +Would you like to have a drink after work? 33 +I'm going to have a baby. 18 +Do you have any tickets for the concert? 32 +I have strong feelings for tom. 25 +I never said that! you must have misheard me. 35 +I have a lot of money on me now. 23 +I think i have a fever. 17 +I'm happy to have been a part of our life. 31 +Let's forget about work and have some fun. 33 +Several border crossings have now reopened. 37 +Do you have a high temperature? 25 +I have a great english teacher. 25 +He has a new haircut. 16 +The machine leaks it. 17 +It has a hole near the door. 21 +He hasn't had much luck yet. 21 +It looks like he has other plans. 26 +It has a lot of character. 20 +Just listen to what he has to say. 26 +He has lived for more than eighty years. 32 +If max has time, maybe he could help me. 31 +It has gps navigation. 18 +He has been received by the emperor. 29 +Or when he has a wife to point the way. 29 +If one of us has to leave, i'll go. 25 +You're the first girl who has ever accepted me. 37 +We could say he has excellent taste. 29 +God has given you the air. 20 +It's the same old wolf that has been skulking. 36 +The end of the world has come. 23 +Do you know that she has lost her father? 32 +You know it has cost money! 21 +He has you and now he forgets me. 25 +More like dulce has been talking to me. 31 +It has living quarters at the back. 28 +A lot has changed. 14 +Has he spoken to you about going away? she asked. 38 +Has it always been on the farm? 24 +This has been hard for you, as well. 28 +The emperor has designed to summon us. 31 +But she has servants to attend to me. 29 +Has mia tried to get custody of him? 28 +David tells me that the war has ruined you. 34 +Nothing has been the same. 21 +No one else has one like you. 22 +He has no other choice. 18 +He has to learn now. 15 +My opinion hasn't changed. 21 +She has a great understanding of us. 29 +How long has it been snowing? 23 +I can't figure out who has the money? 28 +Who has done this? he cried. 21 +He has seen me in my blindness. 24 +It hasn't been easy for either of us. 28 +The lord has given me. 17 +One of us has got to. 15 +He has all the power. 16 +My past has found me. 16 +He has made each of. 15 +He has all his skill. 16 +The song has to come. 16 +Ted has a thirst. 13 +If a product has a. 14 +God has so much more. 16 +He has an errand to run. 18 +I dare say she has. 14 +Has when they are little. 20 +I've heard he has a. 14 +Now, there has been a. 17 +It has to be bad. 12 +But my brother has no. 17 +He has called us to do. 17 +In our society it has. 17 +And has set us within. 17 +One has to agree with. 17 +He, she or it has by. 15 +The boy has no stamina. 18 +Make sure it has a lid. 17 +The cia has reason to. 17 +It has been said many. 17 +She has found the tooth. 19 +It has a ledge where we. 18 +The hunger has no limit. 19 +How the world has changed. 21 +She has worked too hard. 19 +Now, that has all changed. 21 +Anyone who has been to. 18 +He has a destiny for you. 19 +It has never been done. 18 +Even bravo has his limits. 21 +But lucy has no answers. 19 +He has to find an answer. 19 +He has tied me to a line. 18 +She has never gone more. 19 +If mike has time, maybe he could help me. 32 +Has anybody ever told you that you're beautiful? 39 +If he has custody, she couldn't get the money. 36 +Maybe she has someone more suitable in mind. 36 +Some medical attention has to beat none. 33 +Do you know he has over four million in savings? 38 +A growing youth has a wolf in his belly. 31 +He has transmitted the report to us. 29 +No motive for the killing has yet been established. 42 +She has devoted all her time to helping the sick. 39 +She always has her head in a book. 26 +The wound has not yet healed. 23 +The boom has created job opportunities. 33 +Paul has strong opinions on most subjects. 35 +His face has now broken out in pimples. 31 +The seller has to issue a tax invoice. 30 +Our country has a glorious past. 26 +The field has been seeded with corn. 29 +Jan has a vocation for teaching. 26 +The area has a few local peculiarities. 32 +Mia has a collection of expensive russian dolls. 40 +In the winter you must wear heavy woolen clothes. 40 +I love that really big old green antique car. 36 +John is the most handsome man on campus. 32 +Daniella is a part-time worker. 25 +Mike lost his dark brown briefcase. 29 +Rose wore a beautiful hat. 21 +Furry dogs may overheat in the summertime. 35 +My cake should have sixteen candles. 30 +The scariest villain of all time is darth vader. 39 +That cow sure is happy. 18 +It smells gross in the locker room. 28 +Driving is faster than walking. 26 +I'm looking for a small, good-tempered dog. 34 +My new dog is small and good-tempered. 30 +A cool guy. 8 +A messy desk. 10 +A mischievous cat. 15 +Garrulous squirrels. 18 +A cooler guy. 10 +A messier desk. 12 +A more mischievous cat. 19 +More garrulous squirrels. 22 +This is going to be a long, cold winter. 31 +No one could open the old silver locket. 32 +American jeans are probably the best jeans. 36 +Rachel takes great care of her pets. 29 +Max secured the first position in his class. 36 +This bicycle was gifted by my grandfather. 35 +The dog is licking its paws. 22 +They live in a beautiful house. 25 +This soup is not edible. 19 +This glass is breakable. 20 +She wore a beautiful dress. 22 +Emma's hair is gorgeous. 19 +He writes meaningless letters. 26 +Ben is an adorable baby. 19 +This shop is much nicer. 19 +A mathematical puzzle. 19 +The polar bear is listed as threatened. 32 +A biological experiment. 21 +A wooden boat. 11 +I married an american woman. 23 +My sister has a beautiful big white bulldog. 36 +A wonderful old italian clock. 25 +A big square blue box. 17 +A disgusting pink plastic ornament. 30 +Some new slim french trousers. 25 +My small new red sleeping bag. 24 +I bought a pair of black leather shoes. 31 +Sam is the most handsome man on campus. 31 +This is the prettiest dress in the window. 34 +He is more intelligent than this boy. 30 +I lost my most comfortable shoes. 27 +My job is worse than yours. 21 +This is a four-foot table. 20 +This flower is more beautiful than that. 33 +Daniel is a part-time worker. 23 +This house is bigger than that one. 28 +This is an all-too-common error. 25 +My sister is fond of animals. 23 +Beware of the green-eyed monster. 27 +I am happy to meet you. 17 +He is a cold-blooded man. 19 +The kids are ready to go. 19 +We saw a man-eating shark! 20 +Don't be afraid of the dark. 21 +Max's dog is well-behaved. 20 +Sam lost his dark brown briefcase. 28 +You have to be open-minded about things. 32 +Megan is clever. 13 +He's an extraordinary-looking man. 28 +The doctor is very late. 19 +The colorful balloon floated over the treetop. 39 +The big dog chased the car. 21 +A yellow butterfly is sitting on the red rose. 37 +The tall giraffe is eating green leaves. 33 +A small rat is beside the brown cabinet. 32 +The beautiful princess is wearing a purple gown. 40 +He is a funny little man. 19 +The green grasshopper is sitting on the flower. 39 +He banged his head against the glass door. 34 +Swiss chocolates are famous all over the world. 39 +Hydrogen gas is the lightest gas and element. 37 +Just a little juice is left in the jug. 30 +Did you have enough food? 20 +John does not need much money. 24 +Bring all the notebooks from the classroom. 36 +Jenny takes great care of her pets. 28 +Many cars are parked in the basement. 30 +Peter secured the first position in his class. 38 +Kim bought six apples. 18 +We ordered two cups of coffee. 24 +Please purchase one dozen eggs for me. 31 +Bring me two books from the shelf. 27 +A week has seven days. 17 +December is the twelfth month of the year. 34 +Which road shall we take? 20 +What time would the match begin? 26 +Whose car is this? 14 +This pen is very expensive. 22 +Look at that billboard. 19 +These mangoes are ripe. 19 +These apartments have been built recently. 36 +John has perfect features. 22 +Megan is a muscular woman in this town. 31 +Angel falls is an amazing waterfall in venezuela. 41 +Bravo is the eldest in his family. 27 +There is not any water in the jug. 26 +Your house is older than mine. 24 +This book is inferior to that. 24 +My name was the last on the merit list. 30 +Of the two routes, this is the shortest. 32 +David is the eldest in his family. 27 +The flowers smell sweet. 20 +The latter part of the story is interesting. 36 +People say that few women can keep silent. 34 +A little money is better than no money. 31 +Health is preferable to wealth. 26 +She is the wisest of all her sisters. 29 +I have no further comments to make. 28 +She is cleverer than you. 20 +The rotten eggs smell bad. 21 +Of the two boys, Tom is nobler. 24 +The park is farther than the zoo. 26 +Few people can keep the secret. 25 +The grapes tasted sour. 19 +It is not easy to walk on this uneven path. 33 +My cat has blue eyes and fluffy skin. 29 +He picked a ripe apple from the basket. 31 +The green tree is in my backyard. 26 +Skinny dogs are not necessarily healthy. 34 +Giant monsters are hiding under the bed. 33 +Hairless cats look like rats. 24 +That child sure is joyful! 21 +It was so disgusting in my son's bedroom. 32 +She is the smartest in the class. 26 +There are twenty chairs set up for the meeting. 38 +She has four children. 18 +He bought a carton of eggs. 21 +It was a long, beautiful summer. 26 +We had a fabulous and exciting time on vacation. 39 +It is dank and dreary working in the mines. 34 +Today is a crisp, cool spring day. 27 +She donated her old cashmere sweater. 31 +Anna was wearing her huge gold earrings. 33 +Joe demolished his dilapidated wooden shed. 37 +The presentation was not entirely boring. 35 +The incredibly tired bear was lying down. 34 +The overly angry onlookers started a riot. 35 +The waves are way too high. 21 +Have you received the latest news about the match? 41 +There is a damp feeling in the air due to heavy rain. 41 +He lost the few friends he had. 24 +My shirt is better than yours. 24 +She is wiser than her sister. 23 +Emma is a muscular woman in this town. 30 +Rachel noticed a brown ribbon on the box. 33 +She is known as a shy girl among her friends. 35 +He possesses an attractive personality. 34 +The little money he had, he lost in gambling. 36 +Few men came to the meeting. 22 +Your pen is superior to mine. 23 +Max is the most beautiful girl in the class. 35 +Mike is the tallest man in the town. 28 +This flower is the best of all. 24 +The cloth touches rough. 20 +My house is very spacious and clean. 29 +This cup has less sugar than i need. 28 +Please give me some milk to make tea. 29 +Call it a night. 12 +Got a chip on his shoulder. 21 +Cut any corners. 13 +A bit much. 8 +A busy bee. 8 +A cold fish. 9 +A dog in the manger. 15 +A good deal. 9 +Babe in the woods. 14 +Be like chalk and cheese. 20 +Behind the scenes. 15 +Carry the can. 11 +Catch some rays. 13 +Clean up nicely. 13 +Come by something honestly. 23 +Come out in the wash. 16 +Dance with the devil. 17 +Dead of winter. 12 +Deliver the goods. 15 +Doesn't amount to a hill of beans. 26 +Down the road. 11 +Draw a line in the sand. 18 +Drive someone up the wall. 21 +Eat someone's lunch. 16 +Elephant in the room. 17 +Every man for himself. 18 +Fall in love with somebody. 22 +Father figure. 12 +Feel like a million dollars. 23 +Fifteen minutes of fame. 20 +Find your feet. 12 +Fish for compliments. 18 +Fly off the handle. 15 +Game of chicken. 13 +Get a word in edgewise. 18 +Get bent out of shape. 17 +Get the picture. 13 +Go down in flames. 14 +Go off the deep end. 15 +Green around the gills. 19 +Hang it up. 8 +Have a tough row to hoe. 18 +Have one foot in the grave. 21 +Head and shoulders above. 21 +Hit the spot. 10 +In a heartbeat. 12 +In hot water. 10 +In the blink of an eye. 17 +In the nick of time. 15 +Just for the record. 16 +Keep an eye on. 11 +Keep your nose clean. 17 +Kill a fly with an elephant gun. 25 +Knock some sense into. 18 +Larger than life. 14 +Let the cat out of the bag. 20 +Life is a bowl of cherries. 21 +Like the cat that got the cream. 25 +Living under a rock. 16 +Lose it. 6 +Make a break for it. 15 +Move up in the world. 16 +No room to swing a cat. 17 +Not have a prayer. 14 +Not ready for prime time. 20 +Pick up the tab. 12 +Play cat and mouse. 15 +Play your cards right. 18 +Point of no return. 15 +Put your foot down. 15 +Quick as a flash. 13 +Race against time. 15 +Ring a bell. 9 +Rock the boat. 11 +Run in the family. 14 +Run out of steam. 13 +Scare the living daylights out of someone. 35 +School of hard knocks. 18 +See something out of the corner of your eye. 35 +Set something to music. 19 +Sing a different tune. 18 +Something to crow. 15 +Spit into the wind. 15 +Square the circle. 15 +Step up to the plate. 16 +Swim against the tide. 18 +Take a powder. 11 +Take the high road. 15 +Take your life in your hands. 23 +To have one for the road. 19 +The apple never falls far from the tree. 32 +Throw the baby out with the bath water. 31 +Victory lap. 10 +Waiting in the wings. 17 +Wake up and smell the coffee. 23 +Walk the plank. 12 +Water under the bridge. 19 +Wet behind the ears. 16 +What goes around comes around. 25 +You can't judge a book by its cover. 27 +You can't make an omelette. 21 +You know the drill. 15 +Young at heart. 12 +Your number is up. 14 +Zero in on. 8 +A blessing in disguise. 19 +Cut somebody some slack. 20 +Let someone off the hook. 20 +We'll cross that bridge when we come to it. 33 +Wrap your head around something. 27 +A bird in the hand is worth two in the bush. 33 +A penny saved is a penny earned. 25 +A picture is worth 1000 words. 24 +Bite off more than you can chew. 25 +By the skin of your teeth. 20 +Comparing apples to oranges. 24 +Costs an arm and a leg. 17 +Do something at the drop of a hat. 26 +Do unto others as you would have them do unto you. 39 +Don't count your chickens before they hatch. 36 +Don't cry over spilt milk. 20 +Don't give up your day job. 20 +Don't put all your eggs in one basket. 29 +Get a taste of your own medicine. 26 +Give someone the cold shoulder. 26 +Go on a wild goose chase. 19 +He has bigger fish to fry. 20 +Hit the nail on the head. 19 +Ignorance is bliss. 16 +It isn't over till the fat lady sings. 29 +It takes one to know one. 19 +Live and learn. 12 +On thin ice. 9 +Play devil's advocate. 18 +Put something on ice. 17 +Rain on someone's parade. 20 +Saving for a rainy day. 18 +Slow and steady wins the race. 24 +Take a rain check. 14 +Take it with a grain of salt. 22 +The best thing since sliced bread. 28 +The devil is in the details. 22 +The early bird gets the worm. 23 +The elephant in the room. 20 +The whole nine yards. 17 +There are other fish in the sea. 25 +There's a method to his madness. 25 +There's no such thing as a free lunch. 29 +Throw caution to the wind. 21 +You can't have your cake and eat it too. 30 +A little learning is a dangerous thing. 32 +A snowball effect. 15 +A snowball's chance in hell. 22 +A storm in a teacup. 15 +As right as rain. 13 +Bolt from the blue. 15 +Burn bridges. 11 +Don't beat a dead horse. 18 +Every dog has his day. 17 +Familiarity breeds contempt. 25 +Fit as a fiddle. 12 +Fortune favours the bold. 21 +Get a second wind. 14 +Haste makes waste. 15 +Have your head in the clouds. 23 +He who laughs last laughs loudest. 28 +He's not playing with a full deck. 26 +He's off his rocker. 15 +He's sitting on the fence. 20 +It is a poor workman who blames his tools. 33 +It is always darkest before the dawn. 30 +It takes two to tango. 17 +Jump on the bandwagon. 18 +Know which way the wind is blowing. 28 +Leave no stone unturned. 20 +Like riding a bicycle. 18 +Like two peas in a pod. 17 +Make hay while the sun shines. 24 +On cloud nine. 11 +Once bitten, twice shy. 19 +Out of the frying pan and into the fire. 31 +Run like the wind. 14 +Shape up or ship out. 16 +Snowed under. 11 +The pot calling the kettle black. 27 +There are clouds on the horizon. 26 +Through thick and thin. 19 +When it rains it pours. 18 +A bitter pill. 11 +All ears. 7 +Bent out of shape. 14 +Bite off more than one can chew. 25 +Bite the dust. 11 +Blessing in disguise. 18 +Blow one's top. 11 +Bottom line. 10 +Break one's heart. 14 +Buck stops here. 13 +Burn the midnight oil. 18 +By the skin of one's teeth. 20 +Catch some sleep. 14 +Caught my eye. 11 +Chomp on the bit. 13 +He told me he was going to call alan. 28 +Rachel said that she was very busy now. 31 +I bought a car. 11 +My parents are very well. 20 +I'm living in texas now. 18 +I am living in paris. 16 +My mother isn't very well. 20 +I need help with my work. 19 +I was walking along the street. 25 +I haven't seen george recently. 25 +I can speak perfect spanish. 23 +I haven't seen mary. 15 +What is your name? she asked me. 24 +I was sleeping when mary called. 26 +Please help me! 12 +It is too late. 11 +I had taken spanish lessons before. 29 +Did you do your homework? 20 +Please help me carry this! 21 +I like ice cream. 13 +I could swim when i was four. 22 +I should call my mother. 19 +I might be late. 12 +They told her they would arrive a little late. 37 +He said that he was unwell. 21 +She said that she was happy. 22 +He explained that he was reading a book. 32 +He said that ira had arrived on monday. 31 +They told me that they had been living in goa. 36 +He says that he is ill. 17 +She says that she sang a song. 23 +You say that you will visit london. 28 +She says that she eats an apple a day. 29 +He will say that his brother will help her. 34 +We said that we went for a walk every day. 32 +You say that you went to london the previous day. 39 +He said that his father was playing cricket with him. 43 +They said that they had completed their homework. 41 +She said that she had bought a book. 28 +We said that we had been waiting since morning. 38 +She tells me that she can do so for me. 29 +Rose that she would leave for london the next day. 40 +She says that she is writing a letter to her brother. 42 +She says that she was not writing a letter to her brother. 46 +She told me that she was writing a letter to her brother. 45 +The teacher ordered me to shut the door. 32 +He requested me to shut the door. 26 +He advised me that i should work hard to pass the exam. 43 +He forbade me to smoke. 18 +We urged him to mind his own business. 30 +She suggested he consult a doctor. 28 +He asked me to write it again. 23 +My mother forbade me to tell a lie. 27 +I asked her when she did her homework. 30 +We asked him if he was ill. 20 +You asked me if i had read the article. 30 +Rose asked me why i was late. 22 +He exclaimed with great joy that he had won the match. 43 +She exclaimed that her brother had failed the test. 42 +They exclaimed that that house was very beautiful. 42 +I said in great wonder that i was very lucky. 35 +You said to him that he was writing a beautiful drama. 43 +He prayed that i might live long. 26 +My mother prayed that i might succeed in the test. 40 +She wished she had been rich. 23 +I wished he had been there on sunday. 29 +You prayed that i might find my lost camera. 35 +They said that we cannot live without water. 36 +She said that he had finished his food. 31 +He told me that he had been to gujarat. 30 +He said that he would be in kolkata the next day. 38 +She said that she would be using the car next friday. 42 +He said that he could swim. 21 +He said that he might buy a house. 26 +He said that he had to work hard. 25 +He said that he should face the challenge. 34 +He asked me what i was doing. 22 +The girl inquired where i lived. 26 +He requested her to wait. 20 +She says that she was in the ninth class. 32 +He tells them that they have completed their job. 40 +He says that she is in the tenth class. 30 +She said that her father had come the day before. 39 +He asked whether he is coming. 24 +The boy said that he was happy with his results. 38 +He said that all people have equal rights. 34 +She says that she will go to school tomorrow. 36 +He said that she was coming that week to discuss it. 41 +He asked them whether they would come for dinner. 40 +The teacher ordered them to be quiet. 30 +The old man exclaimed with sorrow that he was ruined. 43 +The policeman inquired where we were going. 36 +She says that she is ill. 19 +She said the test was difficult. 26 +He said he bought a car. 18 +Alex said that his parents were very well. 34 +He asked them not to be late. 22 +Her father said that he was living in london now. 39 +He said that he was living in paris. 28 +She said that her mother wasn't very well. 33 +He said he could speak perfect spanish. 32 +He said he hadn't seen mary. 21 +She asked me what my name was. 23 +He said that he had been sleeping when mary called. 41 +He asked me to help him. 18 +I said it was too late. 17 +He said he had taken spanish lessons before. 36 +My mother asked me to help her carry that. 33 +He said that he liked ice cream. 25 +He said he would see me later. 23 +He said he could swim when he was four. 30 +He said he should call her mother. 27 +He said he might be late. 19 +He tells her that he loves her. 24 +They tell me that i can not help them. 29 +I say to her that she hates me. 23 +We tell them that they are not helping us. 33 +They told them that they had better alternatives than that. 49 +Alex told me that he had been writing codes for a new program. 49 +He told me that he worked in a small company. 35 +She told me that she was waiting for her salary. 38 +Alex told me that he had worked very hard on that project. 46 +I told him that i did not care about small issues. 39 +She told me that she was doing good progress on that project. 49 +We said that he had a better future than us. 34 +They told us that it was getting on very boring there. 43 +She said that i had to decide by the next day. 35 +Alex said that he had been writing that paragraph. 41 +He said that had worked very hard but failed. 36 +She told me that it had not worked for her. 33 +Alex said that he had been listening to indian music. 43 +They said that they had been going on a new mission. 41 +He said that he had collected ancient books. 36 +They told us that they had better alternatives than that. 47 +He told me that they had watched a wonderful movie. 41 +She told him that she had no intention to marry him. 41 +He said that he had wasted his time after her. 36 +She told she would perform better in the next competition. 48 +They said that they would have to stay more active. 41 +She said that she would be looking for my response. 41 +He asked whether i lived in a nearby town. 33 +He asked why i was calling jack. 25 +They asked if there would be a backup plan for them. 41 +I asked which was the best method to find him. 36 +She asked him whether he was looking for a job. 37 +They asked whether i still believed in that theory. 42 +He asked whether i thought it was an easy job. 36 +I asked him whether he was serious about that job. 40 +She asked where she could find good books. 34 +He applauded the captain that he did a wonderful job. 43 +Father exclaimed with joy that i was his proud. 38 +The teacher exclaimed with surprise that we had played well. 50 +She exclaimed with wonder that the train was coming. 43 +The old lady wished that she had died in her youth. 40 +Father prayed that god might bless me with sound health. 46 +She wished that she could marry her true lover. 38 +I prayed that god might reward our efforts in that exam. 45 +They bad goodbye to me. 18 +He wished for a single last sight of his beloved. 39 +He wished that he was born again. 26 +He prayed that god might help me in my journey. 37 +Alex wished that he was born in ancient times. 37 +He ordered his servant to clean the tables again. 40 +He ordered the waiter to bring him a detailed bill. 41 +I requested the policemen to help the poor lady. 39 +The old man requested to release his son at that time. 43 +She warned him from trying to talk her ever. 35 +The teacher ordered his students to stand up all. 40 +He advised his son not to sit with the bad guys. 37 +The doctor advised him to stay away from junk food. 41 +He said that he could read and write a new language. 41 +She said that she could understand her situation. 41 +He said that he might visit me the next day. 34 +She said that she had to know the rules of an organization. 47 +He said that had to work hard for the next level. 38 +Alex said that he should buy a new car. 30 +He said that he might bring a gift for me. 32 +She said that she would apply for the job. 33 +He said that he might ask his friends for help. 37 +Alex said that he had to apply for a new visa. 35 +He said that he was working hard for the upcoming tests. 45 +She said that her only wish was to become a good man. 41 +He said that he was learning the rules of a new language. 45 +I said that she seems to be a nice girl. 30 +He said to me that i should be responsible for my duty. 43 +Alex said that it was a rule to obey the master. 37 +They said that they are waiting for their brothers. 42 +I said that i was the winner of that game. 32 +They said that they were learning english by themselves. 47 +Mom read the novel in one day. 23 +Tom painted the entire house. 24 +The choir enjoys that piece. 23 +The two kings are signing the treaty. 30 +The science class viewed the comet. 29 +We are going to watch a movie tonight. 30 +I ran the obstacle course in record time. 33 +The crew paved the entire stretch of highway. 37 +I will clean the house every saturday. 31 +A forest fire destroyed the whole suburb. 34 +Harry generously donated money to the homeless shelter. 47 +The wedding planner is making all the reservations. 43 +Sam will bake two dozen cupcakes for the bake sale. 41 +The director will give you instructions. 34 +Thousands of tourists visit the grand canyon every year. 47 +The kangaroo carried her baby in her pouch. 35 +Monkeys adore bananas. 19 +The cashier counted the money. 25 +The dog chased the squirrel. 23 +Mia was painting a wall. 19 +Mike was repairing the car. 22 +Were you reciting the poem? 22 +She was baking the cake. 19 +She was watching me. 16 +Mia had cleaned the floor. 21 +She had not gotten the parcel. 24 +Jack had solved the doubt. 21 +Had they caught the thief? 21 +I had paid fifty thousand. 21 +Sameer wrote a letter. 18 +She writes a letter. 16 +Has she completed the work? 22 +They had won the match. 18 +She will write a poem. 17 +He will have received the letter. 27 +Help me. 6 +Open the door. 11 +Are you writing a letter? 20 +Why did you break the box? 20 +Who broke the window? 17 +I want to shoot the tiger. 20 +I remember my father taking me to the theatre. 37 +She brought me a cup of coffee. 24 +They elected him their leader. 25 +Somebody hit the dog with a stick. 27 +One finds mosquitoes everywhere. 28 +They sell books. 13 +You are disturbing me. 18 +She has written two books. 21 +Did he buy a car? 12 +The boys were singing songs. 23 +He had collected stamps. 20 +They will arrange for the party. 26 +She cleaned the table with a feather duster. 36 +Sing a song. 9 +Where can you hide this box? 22 +He does not cook food. 17 +Do they purchase books? 19 +They grow plants. 14 +She teaches me. 12 +Mia is singing a song. 17 +Mia is not chopping vegetables. 26 +Is rachel buying vegetables? 24 +She is disturbing daniel. 21 +Mia has challenged. 16 +David has not written the article. 28 +Have they left the apartment? 24 +She has created this masterpiece. 28 +I have read the newspaper. 21 +Rachel cleaned the floor. 21 +Anna bought a bicycle. 18 +Mia called my friends. 18 +Mia paid the bills. 15 +Eric will sew the bag. 17 +David will not arrange the things. 28 +Will you mop the floor? 18 +They will post the letter. 21 +They will have brought the toy. 25 +Will she have written the notes. 26 +They will have won the match. 23 +Vijay will have washed a shirt. 25 +How does one pronounce his name? 26 +The kid has served dinner. 21 +The police have been watching that house for weeks. 42 +They didn't fix my phone yesterday. 28 +They were interrogating him when i called. 35 +I wondered why they hadn't invited me. 30 +She wasn't sure how long they'd been following her. 40 +They will hang him at dawn. 21 +They won't be questioning him when you get there. 39 +I don't want anyone to disturb me. 26 +She does not cook food. 18 +Peter gave me flowers on my birthday. 30 +You are waiting for your friend. 26 +The children have broken the window pane. 34 +I shall have my car sold. 19 +The boy laughed at the beggar. 24 +Stella will invite rita. 20 +People drink champagne on new year's eve. 33 +They renovated the restaurant in 2004. 32 +I ate the strawberry pie. 20 +I bought a honda car. 16 +The sun rises from the east. 22 +They seem to have taken it. 21 +I saw the cat eating it. 18 +Having finished my work, i went home. 30 +I insisted on them paying me. 23 +Is he going to sing thriller at the party? 33 +Rachel used to take care of everything. 32 +They can question him for six hours. 29 +It could have badly hurt you. 23 +The papers say they may release him. 29 +Somebody might buy it. 18 +Passengers must wear seat belts. 27 +You should have told me. 19 +They ought to forgive him. 21 +Sam will bake two dozen cupcakes or bake sale. 37 +The saltwater corroded the metal beams. 33 +John is keeping my house tidy. 24 +Mary kept her schedule meticulously. 31 +The theatre was keeping a seat for you. 31 +I have kept all your old letters. 26 +He had kept up his training regimen for a month. 38 +Mark will keep the focus. 20 +If you told me, i would keep your secret. 32 +She wants to keep the book. 21 +Judy was happy to have kept the puppy. 30 +I have a feeling that you may be keeping a secret. 39 +The hunter killed the lion. 22 +Someone has cleaned the windows. 27 +I gave him a book for his birthday. 27 +Someone sent her a cheque for a thousand euros. 38 +They called off the meeting. 23 +His grandmother looked after him. 28 +They will send him away to school. 27 +Chefs use these machines to mix the ingredients. 40 +Once a week, the house is cleaned by tom. 32 +Right now, sarah is writing the letter. 32 +Sam repaired the car. 17 +Many tourists have visited that castle. 33 +Recently, john has been doing the work. 32 +Sally is going to make a beautiful dinner tonight. 41 +Jerry used to pay the bills. 22 +My mother would always make the pies. 30 +Harry ate six shrimp at dinner. 25 +Beautiful giraffes roam the savannah. 32 +Sue changed the flat tire. 21 +Susan will bake two dozen cupcakes for the bake sale. 43 +I keep the butter in the fridge. 25 +Someone killed twenty civilians in the bomb explosion. 46 +Leonardo da vinci painted the mona lisa. 33 +The subject does the action. 23 +At dinner, six shrimp were eaten by harry. 34 +The savannah is roamed by beautiful giraffes. 38 +The flat tire was changed by sue. 26 +The entire house was painted by tom. 29 +That piece is enjoyed by the choir. 28 +The treaty is being signed by the two kings. 35 +The comet was viewed by the science class. 34 +The metal beams were corroded by the saltwater. 39 +A movie is going to be watched by us tonight. 35 +The obstacle course was run by me in record time. 39 +The entire stretch of the highway was paved by the crew. 45 +The novel was read by mom in one day. 28 +The house will be cleaned by me every saturday. 38 +The whole suburb was destroyed by a forest fire. 39 +Instructions will be given to you by the director. 41 +The baby was carried by the kangaroo in her pouch. 40 +Bananas are adored by monkeys. 25 +The money was counted by the cashier. 30 +The squirrel was chased by the dog. 28 +Was the poem being recited? 22 +The cake was being baked by her. 25 +I was being watched by her. 21 +The floor had been cleaned by mishap. 30 +The doubt had been solved. 21 +Had the thief been caught by them? 27 +Fifty thousand had been paid by me. 28 +A letter was written by sameer. 25 +A letter is written by her. 21 +Oranges are being eaten by them. 26 +Has the work been completed by her? 28 +A book was not bought by him. 22 +A shirt was being washed by her. 25 +The match had been won by them. 24 +A poem will be written by her. 23 +The letter will have been received by him. 34 +Let me be helped. 13 +Let the door be opened. 18 +Is a letter being written by you? 26 +Why was the box broken by you? 23 +By whom was the window broken? 24 +I want the tiger to be shot. 21 +I remember being taken to the theatre by my father. 41 +I was brought a cup of coffee by her. 28 +He was elected their leader. 23 +The dog was hit by a stick. 20 +Mosquitoes are found everywhere. 28 +Books are sold by them. 18 +I am being disturbed by you. 22 +Two books have been written by her. 28 +Was a car bought by him? 18 +Songs were being sung by boys. 24 +Stamps had been collected by him. 27 +The party will be arranged by them. 28 +The table was cleaned with a feather duster by her. 41 +Let a song be sung. 14 +Where can this box be hidden by you? 28 +A novel is read. 12 +Food is not cooked by him. 20 +Are books purchased by him? 22 +Plants are grown by them. 20 +I am taught by her. 14 +Has the apartment been left by them? 29 +This masterpiece has been created by her. 34 +The newspaper has been read by me. 27 +Will the floor be mopped by you? 25 +The letter will be posted. 21 +The toy will have been brought by them. 31 +Will the notes have been written by her? 32 +The match will have been won by them. 29 +A shirt will have been washed by vijay. 31 +How is his name pronounced? 22 +Dinner has been served. 19 +That house has been being watched for weeks. 36 +My phone wasn't fixed yesterday. 26 +He was being interrogated when i called. 33 +I wondered why i hadn't been invited. 29 +He will be hanged at dawn. 20 +He won't be being questioned when you get there. 38 +I don't want to be disturbed. 22 +The food is not cooked by her. 23 +I was given flowers by peter on my birthday. 35 +Your friend is being waited for by you. 31 +The windowpane has been broken by the children. 39 +My car will have been sold by me. 25 +The beggar was being laughed at by the boy. 34 +Rachel be invited by sam. 20 +Rachel is hungry. 14 +Eric is hungrier than mark. 22 +Mike played dangerously today. 26 +Anna played more dangerously than mark. 33 +Rose played most dangerously. 25 +Very few countries in the world are as large as china. 43 +China is larger than most other countries in the world. 45 +China is one of the largest countries in the world. 41 +No other man was as strong as hercules. 31 +Hercules was stronger than any other man. 34 +Hercules was the strongest man in the world. 36 +No other boy in the class is as intelligent as james. 42 +Jack isomer intelligent than any other boy in the class. 46 +Jack more popular than most other indian saints. 40 +Mia is not intelligent than anna. 27 +Donna is more intelligent than emma. 30 +He is a tall student. 16 +This house is big. 14 +Few girls in the class are as clever as susie. 36 +Gold is more precious than any other metal. 35 +Gold is the most precious of all metals. 32 +He is an intelligent boy. 20 +John is tall. 10 +John is taller than peter. 21 +John is the tallest man i know. 24 +Susie drives carefully. 20 +Emma drives more carefully than alice. 32 +Sam drives most carefully of anybody in paris. 38 +This house is not as big as that one. 28 +Peter is taller than john. 21 +Harry is the tallest of the three. 27 +Mount everest is the highest peak in the world. 38 +No other metal is as precious as gold. 30 +No other ocean in the world is so deep as the pacific. 42 +Pacific is deeper than any other ocean in the world. 42 +Pacific is the deepest ocean in the world. 34 +Peter is smarter than john. 22 +Which of the two sisters is the prettier? 33 +Apples are dearer than oranges. 26 +Peter is the smartest boy in the class. 31 +Iron is the most useful of all metals. 30 +Alice is the prettiest girl in the neighborhood. 40 +Max is cleverer than ram. 20 +Sam is not as clever as anna. 22 +Susie is cleverer than most other girls in the class. 43 +Susie is one of the cleverest girls in the class. 39 +This flower is beautiful. 21 +Your house is as large as mine. 24 +Your house is not quite so large as mine. 32 +Jack is greater than any other king in india. 36 +Very few nations are as materialistic as the usa. 40 +Alexander's neighborhood is more peaceful than ours. 44 +A lion is as dangerous as a tiger. 26 +Einstein is as famous as darwin. 26 +A cow is more useful than any other animal. 34 +Dogs are better pets than cats. 25 +George is not as brilliant as gretchen is. 34 +Gretchen is not as old as george. 26 +A sports car is not as fast as a cheetah. 31 +Seeing movies is not as interesting as reading storybooks. 49 +John is not as smart as kyle. 22 +Gretchen is taller than martha. 26 +I have more books than you. 21 +In a similar situation, jane would be angrier than john was. 49 +Jackson is gentler than brian. 25 +Jane is naturally happier than his brother. 36 +John's car is fast. 14 +John's car is faster than kyle's. 25 +Lola is thin, but susan is thinner. 28 +Mango is sweeter than lime. 22 +Mariana trench is the deepest point in the ocean. 40 +My pencil is the shortest of the three pencils on the table. 48 +Of the three cars, walker's is the fastest. 34 +Of the three friends in the clique, andy is the wisest. 44 +Rachel is a tallboy. 16 +He is the nicest boy in the class. 26 +Rachel was taller than rahim. 24 +Sam is as beautiful as samantha. 26 +The honey is sweet. 15 +This is the biggest bottle of all. 27 +The pen is mightier than the sword. 28 +This book is better. 16 +This theatre is the tallest building in the city. 40 +His eldest son is 15 years old. 24 +Today happens to be the busiest day i've had in two weeks. 45 +Your answer was worse than yesterday's. 32 +Delhi is cleaner than any city in bangladesh. 37 +He is more wise than shrewd. 22 +My sister is elder to me. 19 +She is wiser than her brother. 24 +The speed of this car is greater than that of the old one. 45 +These shoes are preferable to those. 30 +This idea is universal and the other is not. 35 +John is superior to jane in mathematical skills. 40 +John is tom's elder brother. 22 +John is older than jane. 19 +There were a few surprises for me. 27 +Is your coffee hot enough? 21 +This box isn't big enough. 20 +He didn't work hard enough. 21 +He didn't work hard enough to pass the exam. 34 +Is your coffee hot enough to drink? 28 +She's not old enough to get married. 28 +I got here early enough to sign up. 27 +The dress was big enough for me. 25 +She's not experienced enough for this job. 34 +Is the coffee hot enough for you? 26 +He didn't work hard enough for a promotion. 34 +We have enough bread. 17 +You have enough children. 21 +They don't have enough food. 22 +I don't have enough apples. 21 +I would like to go swimming too if you will let me come. 43 +Can i go to the zoo too? 17 +Is this gift for me too? 18 +I'm not going to clean your room too! 28 +This coffee is too hot. 18 +He works too hard. 14 +Isn't she too young? 15 +I am not too short! 14 +The coffee was too hot to drink. 25 +You're too young to have grandchildren! 32 +I am not too tired to go out tonight. 28 +Don't you work too hard to have any free time? 35 +The coffee was too hot for me. 23 +The dress was too small for her. 25 +He's not too old for this job. 22 +Sally's not too slow for our team. 26 +This is the biggest house in this street. 33 +This house is bigger than any other house on this street. 46 +No other house in this street is as big as this one. 40 +This flower is the most beautiful one in this garden. 43 +No other flower in this garden is as beautiful as this one. 47 +He is the most intelligent in this class. 33 +He is more intelligent than the other boys in the class. 45 +No other boy is as intelligent as this boy. 34 +He is the tallest student in this class. 32 +He is taller than the other students in this class. 41 +Very few cities in india are as large as calcutta. 40 +No other student is as tall as this student. 35 +This is the best hotel in this area. 28 +Calcutta is large than most other cities in india. 41 +No other hotel is as better as this one in this area. 41 +Calcutta is one of the largest cities in india. 38 +No other hotel is as good as this one in this area. 39 +This is not the best solution to the problem. 36 +New york is not bigger than many other cities in america. 46 +Other solutions to this problem are not as good as this one. 48 +New york is not the largest city in america. 35 +Every day was a happy day, and every night was peaceful. 45 +The girl was very beautiful. 23 +The house is very expensive. 23 +He worked very quickly. 19 +She runs very fast. 15 +He speaks very quickly. 19 +He speaks too quickly for me to understand. 35 +It is very hot outside. 18 +It is too hot outside to go for a walk. 29 +My house is bigger than yours. 24 +Your grade is worse than mine. 24 +The pacific ocean is deeper than the arctic ocean. 41 +You are more polite than joey. 24 +My brother is taller than i am, but he is older too. 40 +A rose is more beautiful than a daisy. 30 +The earth is larger than the moon. 27 +A pint is less than a quart. 21 +Learning japanese is more difficult than learning italian. 50 +I can't find my most comfortable jeans. 31 +Jupiter is the biggest planet in our solar system. 41 +She is the smartest girl in our class. 30 +This is the most interesting book i have ever read. 41 +I am the shortest person in my family. 30 +Jerry is the least worried about the game. 34 +Sam is the most handsome boy in the whole school. 39 +Mount everest is the highest mountain in the world. 42 +Delhi is hotter than chennai. 24 +Diamond is the costliest of all gems. 30 +Iron is the heaviest of all metals. 28 +My doll is prettier than yours. 25 +Africa is the hottest of all the five continents. 40 +My car is more expensive than yours. 29 +This photograph is the better of the two. 33 +The streets of karachi are wider than mumbai. 37 +He is the fastest runner here. 24 +Your accent is worse than mine. 25 +Lead is heavier than any other metal. 30 +A bad penny always turns up. 22 +A barking dog never bites. 21 +A cat may look at a king. 18 +A change is as good as a rest. 22 +A dog is a man's best friend. 21 +A golden key can open any door. 24 +A good man is hard to find. 20 +A fool and his money are soon parted. 29 +A friend in need is a friend indeed. 28 +A good beginning makes a good ending. 30 +A house divided against itself cannot stand. 37 +A house is not a home. 16 +A leopard cannot change its spots. 28 +A little knowledge is a dangerous thing. 33 +A little of what you fancy does you good. 32 +A man is known by his friends. 23 +A man who is his lawyer has a fool for his client. 38 +A miss is as good as a mile. 20 +A new broom sweeps clean. 20 +A person is known by the company he keeps. 33 +A picture paints a thousand words. 28 +A poor workman always blames his tools. 32 +A problem shared is a problem halved. 30 +A prophet is not recognized in his land. 32 +A rising tide lifts all boats. 24 +A rolling stone gathers no moss. 26 +A thing of beauty is a joy forever. 27 +A trouble shared is a trouble halved. 30 +A volunteer is worth twenty pressed men. 33 +A woman's place is in the home. 23 +Absolute power corrupts absolutely. 31 +Adversity makes strange bedfellows. 31 +After a storm comes a calm. 21 +All good things come to he who waits. 29 +All is grist that comes to the mill. 28 +All roads lead to rome. 18 +All the world loves a lover. 22 +All things come to those that wait. 28 +All things must pass. 17 +All work and no play makes jack a dull boy. 33 +All you need is love. 16 +All's fair in love and war. 20 +All's for the best in the best of all possible worlds. 42 +All's well that ends well. 20 +An army marches on its stomach. 25 +An eye for an eye, a tooth for a tooth. 29 +An ounce of prevention is worth a pound of cure. 38 +Another day, another dollar. 24 +Any port in a storm. 15 +Appearances can be deceptive. 25 +April showers bring forth may flowers. 32 +As thick as thieves. 16 +As you make your bed, so you must lie upon it. 35 +As you sow so shall you reap. 22 +Ashes to ashes dust to dust. 22 +Ask a silly question and you'll get a silly answer. 40 +The attack is the best form of defense. 31 +Bad money drives out good. 21 +Bad news travels fast. 18 +Be careful what you wish for. 23 +Beat swords into plowshares. 24 +Beauty is only skin deep. 20 +Behind every great man, there's a great woman. 37 +Better safe than sorry. 19 +Better the devil you know than the devil you don't. 40 +Between two stools one falls to the ground. 35 +Beware of greeks bearing gifts. 26 +Big fish eat little fish. 20 +Blessed are the peacemakers. 24 +Blood is thicker than water. 23 +Blue are the hills that are far away. 29 +Boys will be boys. 14 +Brevity is the soul of wit. 21 +Business before pleasure. 22 +Caesar's wife must be above suspicion. 31 +Charity begins at home. 19 +Charity covers a multitude of sins. 29 +Cheaters never win and winners never cheat. 36 +Cheats never prosper. 18 +Children and fools tell the truth. 28 +Children should be seen and not heard. 31 +Christmas comes but once a year. 26 +Clothes market the man. 19 +Comparisons are odious. 20 +Cold hands, warm heart. 19 +Count your blessings. 18 +Crime doesn't pay. 14 +Cut your coat to suit your cloth. 26 +Dead men tell no tales. 18 +Different strokes for different folks. 33 +Discretion is the better part of valor. 32 +Distance lends enchantment to the view. 33 +Do as you would be done by. 20 +Don't burn your bridges behind you. 28 +Don't cast your pearls before swine. 29 +Failing to plan is planning to fail. 29 +Faint heart never won fair lady. 26 +Fair exchange is no robbery. 23 +Faith will move mountains. 22 +Patience is a plaster for all sores. 29 +Measure thrice and cut once. 23 +Learn wisdom by the follies of others. 31 +Judge not of men and things at first sight. 34 +He jests at scars that never felt a wound. 33 +He knows best what good is that has endured evil. 39 +Curses like chickens come home to roost. 33 +Everybody's business is nobody's business. 35 +You reap what you sow. 17 +You cannot serve two masters. 24 +Everything comes to him who waits. 28 +All are not saints that go to church. 29 +All asses wag their ears. 20 +Give a fool rope enough, and he will hang himself. 40 +Curiosity killed a cat. 19 +He is not laughed at that laughs at himself first. 40 +He is not poor that has little, but he that desires much. 45 +Many a true word is spoken in jest. 27 +Many men, many minds. 17 +Last, but not least. 16 +Laws catch flies, but let hornets go free. 34 +Oaks may fall when reeds stand the storm. 33 +Of two evils choose the least. 24 +Old birds are not caught with chaff. 29 +Old friends and old wine are best. 27 +Out of sight, out of mind. 20 +Out of the frying-pan into the fire. 28 +Packed like herrings. 18 +Learn to say before you sing. 23 +Least said, soonest mended. 23 +Leaves without figs. 17 +Let bygones be bygones. 19 +Many words hurt more than words. 26 +Many words will not fill a bushel. 27 +Self-done is soon done. 18 +The best fish smell when they are three days old. 39 +The best fish swim near the bottom. 28 +The best is oftentimes the enemy of the good. 36 +Plenty is no plague. 16 +Poverty is no sin. 14 +They are hand and glove. 19 +Things past cannot be recalled. 26 +Think today and speak tomorrow. 26 +The busiest man finds the most leisure. 32 +The camel going to seek horns lost his ears. 35 +There is no fire without smoke. 25 +There is no place like home. 22 +There is no rule without an exception. 31 +There is no smoke without fire. 25 +Idleness is the mother of all evil. 28 +Idleness rusts the mind. 20 +If a hole bray at you, don't bray at him. 30 +If the sky falls, we shall catch larks. 31 +Men may meet but mountains never. 27 +Might goes before right. 20 +Misfortunes never come alone. 25 +Misfortunes tell us what fortune is. 30 +After rain comes fair weather. 25 +After us the deluge. 16 +Agnes comes on horseback but goes away on foot. 38 +All are not friends that speak us fair. 31 +All are not merry that dance lightly. 30 +Death pays all debts. 17 +Death when it comes will have no denial. 32 +Hungry bellies have no ears. 23 +Idle folks lack no excuses. 22 +Just as the twig is bent, the tree is inclined. 37 +Keep your mouth shut and your ears open. 32 +Keep your mouth shut and your eyes open. 32 +Time and tide wait for no man. 23 +Where there is no wood, the fire goes out. 33 +Time cures all things. 18 +Time is a great healer. 18 +From pillar to post. 16 +Get a name to rise early, and you may lie all day. 38 +Gifts from enemies are dangerous. 28 +Give every man thy ear, but few thy voice. 33 +Creditors have better memories than debtors. 38 +Cross the stream where it is shallowest. 33 +Crows do not pick crow's eyes. 23 +Two wrongs don't make a right. 23 +When in rome, do as the romans. 24 +The squeaky wheel gets the grease. 28 +When the going gets tough, the tough get going. 38 +No man is an island. 15 +Fortune favors the bold. 20 +Hope for the best, but prepare for the worst. 36 +Keep your friends close and your enemies closer. 40 +A picture is worth a thousand words. 29 +There's no place like home. 21 +Discretion is the greater part of valor. 33 +The early bird catches the worm. 26 +Never look a gift horse in the mouth. 29 +You can't always get what you want. 27 +A watched pot never boils. 21 +If it isn't broke, don't fix it. 23 +Practice makes perfect. 20 +Too many cooks spoil the broth. 25 +Come easy go. 10 +Don't bite the hand that feeds you. 27 +All good things must come to an end. 28 +One man's trash is another man's treasure. 33 +Beauty is in the eye of the beholder. 29 +There's no time like the present. 26 +Necessity is the mother of invention. 31 +Two heads are better than one. 24 +A chain is only as strong as its weakest link. 36 +Absence makes the heart grow fonder. 30 +Aren't you eric's friend? 19 +I wouldn't go in there if i were you. 27 +They haven't decorated for the party yet. 33 +We'd talked about it for hours but decided nothing. 41 +I'm ready for a vacation. 19 +He's going to florida for the holiday. 30 +We're staying in town. 17 +They're undecided at the moment. 26 +He isn't home today. 15 +Those aren't my mittens. 19 +They're all my friends. 18 +I'll help you with your work. 22 +I couldn't find the kids. 19 +I wouldn't mind the words what you said to me. 35 +Aren't you getting hungry? 21 +And don't tell me you aren't playing house with him. 40 +Why aren't you serving in the army? 27 +Tell me the truth now, aren't you enjoying the ride? 41 +He is often doesn't come to school. 27 +Thanks to the insurance, there aren't any. 34 +They'll find our tracks, won't they? 28 +I won't talk about it anymore, she said cheerfully. 41 +You won't have any relief. 20 +Donna doesn't know where mia lives. 28 +I won't let anything hurt her. 23 +Sorry i haven't answered yet. 23 +Cade, i haven't finished the dishes. 29 +According to her, he isn't coming. 27 +We've taken you for granted, haven't we? 31 +Go over that way, they're there. 25 +I suppose they're both a little artificial. 35 +I guess they're not as tame as they look. 31 +Do you think they're in there? 23 +She doesn't want to talk about it. 26 +They've been watching you. 21 +They've done everything they can. 27 +They've got their minds set on something else. 37 +They've spotted the van! 19 +She'd get over him. 14 +I just can't believe this. 20 +Jim isn't a lawyer, but a doctor. 25 +You can't imagine how i've missed the country. 36 +We can't make her understand. 23 +You don't speak russian. 19 +John doesn't speak french. 21 +We don't have time for a quick drink. 28 +It doesn't rain much in summer. 24 +They don't want to come with us. 24 +She doesn't like meat. 17 +I guess we could say he hasn't been around much. 37 +He hasn't returned my call. 21 +I'm the only one who hasn't lied to you. 29 +He hasn't floated in, has he?. 22 +He hasn't seen us in years. 20 +I think i'll join anna right now. 25 +This data isn't accurate at all. 25 +Now go away or i'll call the police. 27 +Go and wake and i'll come in a moment. 28 +However, i'll look up our list. 24 +If you won't answer, i'll tell you. 26 +This sentence doesn't make sense. 27 +We weren't told anything. 20 +I guess it doesn't matter anymore. 27 +She doesn't understand me, either. 28 +Why weren't you with them? 20 +He'll be back later. 15 +It may take a few minutes, but he'll catch on. 35 +He'll be stuck to that tv for hours. 27 +He'll be back next weekend, she said. 29 +He'll follow us, won't he? 19 +Hey, you'll never guess what happened tonight. 38 +I'm sure you'll fit into his plans. 26 +You're a clever girl and you'll know how to manage. 39 +I know you'll take care of it. 22 +There isn't anybody else. 20 +This clock isn't working. 20 +This question isn't easy. 20 +This isn't what i ordered. 20 +Tom isn't watching tv now. 20 +Giving up isn't the answer. 21 +He isn't able to buy a car. 19 +Isn't that skirt too short? 21 +She isn't afraid of snakes. 21 +The baby doesn't walk yet. 20 +He doesn't watch tv at all. 20 +Pork doesn't agree with me. 21 +Tom doesn't have a bicycle. 21 +He doesn't always come late. 22 +He doesn't have any friends. 22 +Ann doesn't have any sisters. 23 +He doesn't eat this, does he? 22 +He doesn't speak our language. 24 +She's really smart, isn't she? 23 +This book isn't worth reading. 24 +This place is large, isn't it? 23 +There isn't anyone in the room. 24 +As far as i know, he isn't lazy. 23 +She doesn't speak japanese at home. 28 +She doesn't know how to drive a car. 27 +She doesn't want him to go to boston. 28 +The world doesn't revolve around you. 30 +Class doesn't begin until eight-thirty. 32 +He doesn't know how to play the guitar. 30 +I've decided to go to the party after all. 32 +He's not coming with us. 18 +It's his birthday and he has other plans. 32 +They've thought about going to the movies. 34 +It looked as if she'd already made up her mind. 36 +They'd better get here on time or they'll miss dinner. 42 +Isn't there a coffee house down the street? 34 +There are green beans on my plate, but i asked for broccoli. 48 +Do you think he'll pass his driving test? 32 +I'll see you next week. 17 +I'm going for a walk. 15 +It's freezing outside! 18 +Why aren't you answering your phone? 29 +I can't find my glasses anywhere. 26 +They didn't tell me the meeting was canceled. 36 +He hasn't been in touch for over a month. 31 +You mustn't be late for work. 22 +I shouldn't have eaten so much! 24 +I think we're lost. 14 +You've contacted jan, haven't you? 27 +Yes, i think we are. 15 +He's so handsome. 13 +She's very beautiful. 17 +They're such cute puppies! 21 +Here's the car i was telling you about. 30 +It's against the law! 16 +I will finish that project later. 27 +You'll regret that! 15 +He should put on a coat or he'll get sick. 31 +You should come to the party! it'll be fun! 32 +She'll love her birthday present. 27 +We'll arrive there around 3 p.m. 24 +I've been to his house before. 23 +You've been trying to contact her for days. 34 +He's been looking for a job since he got fired. 36 +She's already told you once before! 28 +We've been wanting to visit for a long time. 34 +They've just arrived. 17 +She could've done it if she tried. 26 +I'd love to visit but the flights are too expensive. 41 +If you'd stop panicking you could do your job. 36 +She'd like to get a pet dog. 20 +We'd hate to upset you. 17 +They'd enjoy this if they could come. 29 +He'd be better off in a different city. 30 +You can't do that! 13 +They aren't coming to the party tonight. 32 +You shouldn't eat too much junk food. 29 +It isn't healthy to eat a lot of fast food either. 38 +He doesn't understand what you said. 29 +Mom, i didn't do it! 14 +The mail still hasn't come today. 26 +I won't be able to make it to the meeting. 31 +This wasn't a good idea. 18 +Luckily, we weren't hurt in the car accident. 36 +I am not interested in that kind of thing. 33 +Let's go to the mall. 15 +I'll better pay attention to it. 25 +The doctor said it is. 17 +It's gets confused with its. 22 +You're getting confused with yours. 29 +They're getting confused with there and there. 38 +Aren't you caroline's friend? 23 +He'd walked twenty miles before he finally made it. 41 +I think it's going to snow on monday. 28 +It's been a long time since i last saw ben. 32 +It's a small world after all. 22 +Nothing can take its place. 22 +The bear carried its cub in its mouth. 30 +The cat licked with its tongue. 25 +They're happy to see me. 18 +In my opinion, they're a fine group of athletes. 38 +I think they're very nice boys. 24 +Their address is 517 west maple. 26 +What is their phone number? 22 +Their new home is in san diego. 24 +There is a present on the table. 25 +Look over there to see the ocean. 26 +I don't understand what you mean. 26 +She'll come over tomorrow. 21 +I could've gone to the football game. 29 +You shouldn't talk with your mouth full. 32 +Haven't you seen the movie yet? 24 +I'll be going on a plane. 18 +Sorry, i can't answer the phone right. 30 +I won't be home until thursday. 24 +She's gone to the bank already. 24 +They weren't in the kitchen. 22 +Billy wasn't eating any of the cake. 28 +I've already cleaned the dishes. 26 +We'd better not make too much noise. 28 +It's been a gloomy day. 17 +It'll be a sunny day tomorrow. 23 +She's playing games. 16 +He's waiting for the bus. 19 +They're eating mangoes. 19 +We will be joining you in springfield. 31 +It is too cold to go swimming this morning. 34 +She is quitting her job. 19 +There is a man. 11 +The simpsons are not going with us to the movies. 39 +It is not fair. 11 +I would like to help you. 19 +We are lost. 9 +I am too busy right now. 18 +This morning i left a message for sam. 30 +They have not been able to find a babysitter. 36 +You are going to hawaii. 19 +I do not know what is troubling her. 28 +You are a close friend. 18 +I am stuck at home. 14 +Anna boat did not run badly. 22 +Tom is very tall. 13 +The race finished too quickly. 25 +Fortunately, anna saw eric's win. 27 +The woman is quite pretty. 21 +We will be slightly late for the meeting. 33 +He smiled warmly. 14 +He is often wandering the streets. 28 +She never tells a lie. 17 +He is generally late. 17 +It was how my friends celebrated my birthday. 37 +It is very fine today. 17 +He is bold enough to face the enemy. 28 +He reads only good books. 20 +He runs much faster than i. 21 +I have not got any money. 19 +He frequently comes here. 21 +Unfortunately, he was arrested. 27 +It is nothing else but hatred. 24 +I could not find him anywhere. 24 +I am very happy to see you. 20 +He is much changed now. 18 +He has always spoken the truth. 25 +He seldom attends the classes. 25 +I was much surprised to see this. 26 +Well, anyhow i am going to finish it. 29 +This task is much too difficult. 26 +I was too sad to laugh. 17 +Luckily, he succeeded. 19 +I went directly to the college. 25 +The old man walks slowly. 20 +The plumber diligently repaired the water tank. 40 +He explained his case clearly. 25 +He delicately placed the eggs in the basket. 36 +The children went to the zoo eagerly. 30 +The prize money was equally distributed to the players. 46 +He was kind enough to lend me his camera. 32 +Finally, he completed his graduation this year. 40 +The morning air blew gently in the garden. 34 +It rained heavily yesterday. 24 +It is too hot to play football. 24 +Honey is very sweet. 16 +You should instantly suppress negative thoughts. 42 +He was often seen among the rogues. 28 +He was very delighted at this. 24 +Lastly, i would like to ask you about your plans. 39 +I normally spend the summer holidays in canada. 39 +His pay is high enough for him. 24 +It is very hot today. 16 +She reached above for one of the dishes. 32 +Let's travel abroad together. 24 +He abruptly left the workshop. 25 +She accidentally tore her shirt. 27 +We will visit nairobi annually. 26 +We can get lost anywhere together. 28 +Don't automatically rule out boston as a place to live. 44 +Let's wait a while before calling. 27 +I badly wanted to learn these new concepts. 35 +She barely knew him before she married him. 35 +They wrote beautifully in calligraphy. 33 +Let's meet beforehand to discuss our strategy. 38 +I'd like to belatedly wish you a happy birthday. 38 +Don't fall below the class average. 28 +He will act beneficially for both parties. 35 +She spoke blandly about their trip to peru. 35 +They fought bravely through the war. 30 +She busily researched for her final portfolio. 39 +He calmly arose from the chair and walked over to her. 43 +She carefully typed the affidavit. 29 +They casually walked into the room. 29 +She cheerfully waved to her neighbor. 31 +Sherlock cleverly solved the mystery. 32 +She continually prays for peace. 27 +I have correctly answered all of your questions. 40 +She is currently working in brazil. 29 +He eagerly awaited her arrival. 26 +The ghost smiled eerily at the little girl. 35 +She effectively conveyed her message at the conference. 47 +Emilia effortlessly portrayed the role. 34 +She was not emotionally attached to the locket. 39 +Daniel was enormously proud of his son. 32 +The puppy hopped enthusiastically across the lawn. 43 +The exchange student performed exceptionally well. 44 +He is extraordinarily talented at basket weaving. 42 +The train moved extremely fast through the swiss alps. 45 +You and i will get along fabulously. 29 +The scent of cinnamon faintly wafted across the air. 43 +That little dog faithfully followed his owner everywhere. 49 +Doyle fiercely defended riley to the end. 34 +Justin firmly held onto the glass treasure. 36 +He competed flawlessly in the spelling bee. 36 +He, fortunately, missed the boat. 28 +The dog furiously barked at the intruder. 34 +He illegally parked his motorcycle. 30 +The new parking regulations are being strictly enforced. 48 +She passed the exam, almost impossibly. 33 +He inadvertently left the backpack at home. 36 +Denise moved to pakistan indefinitely. 33 +He inexplicably solved the puzzle. 29 +Intellectually, she understood the conundrum. 40 +Mitchell explained the tall tale interestingly. 41 +I could not intuitively discern his meaning. 37 +She irrevocably turned her back on him. 32 +Peter's payment is partially complete. 32 +He passionately preached this sunday's message. 40 +Priscilla has moved permanently to argentina. 39 +The peonies pleasantly swayed in the breeze. 37 +Ever since that day, his demeanor has profoundly changed. 48 +The students properly lined themselves up for recess. 45 +She purposefully removed the nameplate from her door. 45 +He randomly selected two rabbits from the breeder. 42 +She was always readily available to her students. 41 +She recently broke a new record on words with friends. 44 +She drove recklessly to the hospital to get to her father. 47 +The detective relentlessly pursued the villain. 41 +She subsequently received a parking ticket. 37 +We remove the i and replace it with an apostrophe. 40 +If you don't get dressed soon we're going to be late! 40 +He brought her safely back to shore. 29 +He was significantly older than she was. 33 +They simultaneously pulled the desk and chair into the bedroom. 53 +I'm somewhat curious as to her motives. 31 +The soldiers fought bravely. 24 +She sat down. 10 +This essay is well written. 22 +He looked up. 10 +She walked slowly. 15 +I searched for him everywhere. 25 +The baby slept soundly. 19 +We seldom go out on sundays. 22 +I have seen him only once. 20 +He called again this morning. 24 +We must always try to do our best. 26 +His father died two years ago. 24 +I have seen him before. 18 +They have already come. 19 +We will have to start now. 20 +That was very tragic. 17 +Consequently, he refused to go. 26 +I have almost finished. 19 +Therefore they decided to boycott the meeting. 39 +He was rather busy. 15 +He is hence unable to refute the charge. 32 +Is he any good? 11 +When will you go to new york? 22 +You are partly right. 17 +How long will you stay here? 22 +You are entirely wrong. 19 +How often does the committee meet? 28 +How did he behave? 14 +The children are playing in the garden. 32 +How far did he go? 13 +Don't throw things out of the window. 29 +Why did you resign? 15 +The old man sat in the corner. 23 +There was a very tall tree at the end of the garden. 40 +The evening was bitterly cold. 25 +I couldn't help but laugh. 20 +I have never seen a more exciting cricket match. 39 +This movie is very. 15 +I am too annoyed to hear this. 23 +He was so tired that he could barely stand. 34 +You must not waste your hard-earned money. 34 +Can you be there at 5 o'clock sharp? 27 +No one can write as neatly as he does. 29 +Don't speak to her so sharply. 23 +I cannot by any means allow you to go. 29 +It serves you right. 16 +The fish tasted awful. 18 +That arrangement suits me fine. 26 +The problem looked difficult. 25 +She was fatally injured in the accident. 33 +Which part of the movie did you like most? 33 +The ball hit me right on the nose. 26 +The baby is sleeping soundly. 24 +I hate arriving late. 17 +I wrongly believed that you loved me. 30 +I usually go to bed at 10 o'clock. 25 +My friends are mostly vegetarians. 29 +I have never been to the usa. 22 +I watch english films occasionally. 30 +I have been to australia just once. 28 +They rarely go out. 15 +I sometimes go for a walk in the park. 29 +I was very impressed with her performance. 35 +My friends are mostly non-smokers. 28 +I always take a bath before i go to bed. 30 +He ran quickly. 12 +Will you wait here until i am ready? 28 +He is very clever. 14 +I was not at home when he came to see me. 30 +There is something wrong. 21 +Do not disturb me when i am busy with my work. 35 +I sometimes think i should take a long break. 36 +Perhaps her train is late. 21 +You can see lots of flowers there. 27 +He is seldom late for work. 21 +Have you ever wanted to run away? 26 +She is certainly the right person for the job. 37 +The situation is very serious. 25 +Otherwise can also be used as an ordinary adverb. 40 +Unless you work hard, you will fail the test. 36 +If you do not work hard, you will fail the test. 37 +You must work hard otherwise, you will fail the test. 43 +We must hurry up otherwise, we will miss the train. 41 +Unless we hurry up, we will miss the train. 34 +The same idea can be expressed using if not or unless. 43 +If we do not hurry up, we will miss the train. 35 +My boyfriend is much older than me. 28 +You are too kind. 13 +I have been to rather too many countries recently. 41 +He spoke in such a low voice that few people could hear him. 47 +He is such a good man that all respect him. 33 +They fought so bravely that the enemy fled. 35 +The famine was so severe that thousands perished. 41 +James coughed loudly to attract her attention. 39 +He ate the chocolate cake greedily. 29 +The child ran happily towards his mother. 34 +The child ran towards his mother happily. 34 +The town grew quickly after 1997. 27 +He waited patiently for his mother to arrive. 37 +He swam well despite being tired. 27 +The rain fell hard during the storm. 29 +She quickly agreed to re-type the letter. 33 +She agreed quickly to re-type the letter. 33 +She agreed to re-type the letter quickly. 33 +He quietly asked me to leave the house. 31 +He asked me quietly to leave the house. 31 +He asked me to leave the house quietly. 31 +He gently woke the sleeping woman. 28 +She angrily slammed the door. 24 +Slowly she picked up the knife. 25 +Roughly he grabbed her arm. 22 +I thought the movie ended abruptly. 29 +Her outfit showcased her delightfully quirky personality. 50 +She truthfully answered the police officer's questions. 47 +At the end of a long day, she wearily headed to bed. 40 +April cheerfully greeted mark each morning. 37 +The public library often holds meetings downstairs. 44 +Jack looked everywhere for his missing keys. 37 +She will plant her garden here. 25 +We stayed in to watch a movie instead of attending the party. 49 +When it's hot and humid, anna likes to read inside. 40 +The children love to play outside. 28 +I want to go fishing somewhere warm and sunny. 37 +The gopher began burrowing underground. 34 +I went upstairs to see my grandma who was on bed rest. 42 +She arrived early for the meeting. 28 +When i bake, i make cookies first. 27 +Before we leave on our road trip, we have to check the map. 46 +I will meet after he finishes studying. 32 +Until anna buys bread, we can't make lunch. 34 +Everybody cursed her nevertheless, she did not come round. 49 +When i was dating emma, i had an accident. 33 +Colin will meet you after he finishes studying. 39 +Although i generally prefer cats, i also like dogs. 42 +Daniel is driving into town, and regina is taking the train. 49 +Until yolanda buys more bread, we can't make lunch. 41 +Whoever wants to go fishing should come with us. 39 +In class, we learned how bats use sonar to locate objects. 47 +Sam's biggest fear is that she will trip onstage. 39 +I was wondering about what time we should leave. 39 +He will give whoever wins the contest a special prize. 44 +The real challenge is how we are going to satisfy our clients. 50 +This is the track where we like to go running. 36 +My opinion is that we should quit this place. 36 +When they arrived at the station, they ran to get the train. 48 +If sams to come along, she can meet us at the theatre. 42 +The movie was better than i expected it to be. 36 +There is no truth in what she says. 27 +I am surprised at what step she has taken. 33 +Don't crave for what you cannot achieve. 32 +You must stick to what you have promised. 33 +I want to know what help you expect to front me. 37 +I want to ascertain whether you would accompany me. 42 +The saying that pride hath a fall is true. 33 +Then came the news that mahatma gandhi was shot dead. 43 +It is quite certain that she is not at home. 34 +This is the old man who stumbled against a stone. 39 +The elephant is an animal that has tusks. 33 +She is the girl whose husband divorced her. 35 +This is the place where my friend lives. 32 +All stood up even the president came. 30 +Wait here till i do not come back. 26 +She sang while i danced. 19 +The doctor had reached there before the patient died. 44 +As the hot air cools, the balloon comes down. 36 +She studies where i study. 21 +Live wherever you desire. 21 +She returned whence she had arrived. 30 +The soul has reached where it might not return. 38 +The ship sailed whither the wind took her. 34 +Try to finish it as she has shown you. 29 +He ran as if he were frightened. 25 +She behaved as though she were annoyed. 32 +I did according as i was directed. 27 +I cannot say how far i am correct. 26 +There were water and water as far as i could see. 38 +Can you tell me how long you will accompany me? 37 +Since you recommend him, i am appointing him. 37 +I regret that i could not see you on the appointed day. 43 +Now that the sun has set, we should return home. 38 +We cannot get first division unless we bum midnight oil. 46 +He found that his cash was missing. 28 +He is miserly though he is rich. 25 +We must go although it is raining. 27 +Whatever you may say, i don't believe a word of it. 39 +Even if she apologizes, i shall not visit her house. 42 +She works hard, so that she may get a scholarship. 40 +You eat that you may live. 20 +We like the music that you brought. 28 +Although she knew that it was dangerous. 33 +Whoever gets the highest score goes first. 35 +She cried because her seashell was broken. 35 +Whoever ate the last piece of pie owes me! 33 +I took my lunch packet and boarded the bus. 34 +Either you or your sister are haughty. 31 +Neither a borrower nor a lender is. 28 +Obey your teachers or you will repent. 31 +Walk fast else you will not catch the bus. 33 +She is intelligent but slow-working. 30 +She ran fast, yet she missed the train. 31 +I am weak however, i shall carry your box. 33 +She knows where you live. 20 +She knows the place where you live. 28 +She will reach where you live. 24 +The bus arrived and i boarded it. 26 +Run fast or you will lose the race. 27 +He ran fast but lost the race. 23 +Gandhi was not only a good leader, but he was also a reformer. 49 +She cannot sing nor can she dance. 27 +She as well as her parents are stupid. 30 +Everybody felt that the old man would not recover. 41 +Her father is poor, so he cannot give a fat dowry. 39 +He missed the bus, for he did not run fast. 33 +He cursed his parents, which was wrong. 32 +She went to agra, where she saw the taj. 31 +Then he called on the principal, who promised him to help. 47 +The beggar asked me if i could help him. 31 +Everybody knows why you are late. 27 +The teacher said that hard work is the key to success. 43 +She asked me if i would lend her a hundred rupees. 39 +It seems that she is very selfish. 27 +I eat bananas in the kitchen. 23 +In the kitchen, i eat. 17 +I thought what she wore was so chic. 28 +Whomever you confide in is a person you can trust. 40 +The store that the boy robbed is on the corner. 37 +After the movie ended, we ate ice cream. 32 +Beth visits her grandfather whenever she is in town. 43 +I graduated last year. 18 +He is a wise man. 12 +I like him. 8 +Can you do it? 10 +Do it please. 10 +I read the whole story. 18 +I want to buy a phone,. 17 +When i was dating diana, i had an accident. 34 +I know the man who stole the watch. 27 +He bought a car which was too expensive. 32 +I know that he cannot do it. 21 +He does not know where he was born. 27 +If you don't eat, i won't go. 20 +He is a very talented player though he is out of form. 42 +I want some cereal. 15 +Rachel loves cats. 15 +Joseph is a good soccer player. 25 +When the president arrives. 23 +Because i can't wait for the bus. 25 +As if he knew what was going to happen. 30 +Then his sister can. 16 +If you can work on sundays. 21 +Until the sun sets. 15 +While flowers continue to bloom. 27 +Whenever you come to visit. 22 +Since i don't have enough money. 25 +Although i had never considered it. 29 +Unless you have the right size. 25 +As the lights were dimming. 22 +No matter how you look at it. 22 +How he got elected. 15 +Before the food gets cold. 21 +Supposing that she wanted to go. 26 +That i sold him. 12 +Which is located in italy. 21 +Who is intelligent. 16 +Whom we met after the movie. 22 +Whose writing is always intriguing. 30 +When the leaves turn colors and fall. 30 +Where i went to elementary school. 28 +Why the movie was a flop. 19 +That was a bestseller. 18 +Who live by the ocean. 17 +Why she said that. 14 +Whomever you like. 15 +How they would get there. 20 +Who let the cat out of the bag? 23 +What she anticipated. 18 +Whatever makes you happy. 21 +That you are listening. 19 +Whether he can drive that far. 24 +If the dress is on sale. 18 +Whoever shows up on time. 20 +What the girl did was not very helpful. 31 +The trophy goes to whoever wins the race. 33 +While i was asleep, the cat knocked over the plant. 41 +Where is the ice cream that was in the freezer? 37 +The town where i was born is on the east coast. 36 +I can't figure out why she said that. 28 +We will do whatever is necessary. 27 +Nero fiddled while rome burned. 26 +You may play outside until the street lights come on. 43 +That cat that you found belongs to the smiths. 37 +Since no one else volunteered, the job is yours. 39 +If you can give me two reasons, i will allow it. 37 +When she wakes up. 14 +In the morning. 12 +She cannot remember what she said last night. 37 +Now i know why tigers eat their young. 30 +The bankers need to know what they should do. 36 +The books, which are lost, are not necessary. 37 +Whether you like it or not, you have to go to bed now. 41 +Intelligent students get good grades. 32 +No one knows he is. 14 +When i was younger, i thought so. 26 +He laughs best who laughs last. 25 +I went to see what had happened. 25 +He met a girl whose eyes were blue. 27 +I shall remain where i am. 20 +I've eaten. 8 +The sale starts at 9 am. 18 +I didn't sleep well last night. 24 +Are you listening to the radio? 25 +What are those flowers? 19 +No, business studies. 18 +Which ones? 9 +The pink ones over there. 20 +I see you. 7 +He ran away. 9 +We ate popcorn. 12 +They sang beautifully. 19 +The dog ran. 9 +The dog ran home. 13 +The dog ate popcorn. 16 +He ate popcorn. 12 +The dog ate. 9 +He ate at the fair. 14 +What did he do after? 16 +Since he ate popcorn, what? 22 +Then what? 8 +Jack has a large coffee stain on his shirt. 34 +John is messy. 11 +Dad has been working hard all-day. 27 +Did mia bring coffee? 17 +I am watching t.v this week. 21 +Michael studied hard this year. 26 +Every child liked an ice cream. 25 +They are living in spain. 20 +They are bringing this from their trip. 32 +Mia will forget to turn off the light. 30 +We were listening to music. 22 +Every child will like an ice cream. 28 +I was saving some money from last year. 31 +I will be working for microsoft. 26 +A gardener was sweeping up dead leaves. 32 +We are making a cake for you. 22 +I had worked for microsoft. 22 +She had left school last year. 24 +A gardener had swept up dead leaves. 29 +I had liked the film. 16 +We had made a cake for you. 20 +I had enrolled in the pilates course. 30 +He had smoked a cigarette. 21 +He had drunk alcohol. 17 +She had been a dentist. 18 +She has swum every morning. 22 +He has loved to play football. 24 +She has loved to play the keyboard. 28 +My son has lived in london. 21 +Julie has talked very fast. 22 +I have loved my new pet. 18 +You will have run to the party. 24 +I will have been graduated from the university. 39 +The police will find some clues. 26 +The child will have been hungry. 26 +I will have learned spanish this summer. 33 +He will draw beautiful pictures. 27 +Why will she be crying? 18 +Paul will have answered the question correctly. 40 +I had been marveling at your visit. 28 +My father often had been reading me stories. 36 +My boss had been calling me to the office. 33 +My teacher had been teaching me dance. 31 +I had been seeing a ghost every friday. 31 +My son had been pushing his sister on the swing. 38 +I had been cooking a pizza with pepperoni. 34 +My dog had been meeting me at the bus stop. 33 +Mom and i had been watching an animation. 33 +My son had been building a house with sticks. 36 +I have been enjoying the christmas card. 33 +My mom has been picking me up after school. 34 +Dad has been taking me to the park. 27 +I have been working on essay writing. 30 +He has been completing the assignment. 32 +I have been traveling to germany this year. 35 +They have been students last year. 28 +He smoke have been bothering me. 26 +He has been catching a bird in the bushes. 33 +The ancients have been believing in superstitions. 43 +The vikings will have been invading britain. 37 +Tarzan will have been diving into the swamp. 36 +Dad will have been driving up on the sidewalk. 37 +The kids will have been smiling to see their mother. 42 +Water will have been flowing in the river. 34 +He will have been dumping the garbage. 31 +He will have been winning the silver medal. 35 +Jack will have been drying clothes in the sun. 37 +I will have been meeting my wife on the ship. 35 +I will have been visiting a client in london. 36 +He will have been writing an interesting story. 39 +My brother hid my car keys. 21 +We began selling computers. 23 +She took her children to school. 26 +A nurse brought a little girl baby to the park. 37 +A large trunk came around the corner. 30 +Did you play football last day? 25 +My brother drank a glass of milk 2 hours ago. 35 +Amelia chose to stay with her father. 30 +She doesn't study german on monday. 28 +Does she live in london? 19 +She plays basketball. 18 +We generally sing songs altogether. 30 +We go to the gym club together. 24 +Do they talk a lot? 14 +Does she drink coffee? 18 +We drink coffee every morning. 25 +She doesn't teach chemistry. 23 +My sister works at the theatre. 25 +How often do you see george? 22 +They don't have any money. 20 +I am going to cook tonight. 21 +I will be twenty-seven in april. 25 +I will read the newspaper when i go to the bus station. 43 +I will see you tomorrow, please wait for me. 35 +It won't be very cold next week. 24 +She will meet with her best friends. 29 +She will see her friend at the weekend. 31 +They are going to dance. 19 +The phone rang while i was taking a bath. 32 +I was bored. 9 +I was studying the other night. 25 +You were watching television last night. 34 +They were studying math yesterday. 29 +The steamer will sail today. 23 +I will see the movie today. 21 +The river will flow under the bridge. 30 +He will wait for you. 16 +She will wash her car. 17 +Pinky will come very early. 22 +I will watch t.v this week. 20 +I think i should study harder to master english. 39 +I am having a cup of coffee. 21 +You have been practicing hard. 25 +It was written by a petitioner. 25 +You may choose what you like. 23 +I am taking a bath. 14 +She is preparing dinner for us. 25 +They have been studying all night. 28 +I was given a free meal. 18 +He was seen by fans at the airport. 27 +This song has been sung by all nations. 31 +I do not know the truth. 18 +She doesn't agree with me. 20 +They didn't arrive here yet. 22 +Do you want to have another one? 25 +Did he finish his homework? 22 +Do we need to keep going straight? 27 +I have been following you for a mile. 29 +We have done a lot so far. 19 +She had been the queen of the town. 27 +Did you have a conflict with that time? 31 +I must ask that you explain the reason. 31 +Does sam write all his reports? 25 +Terry is writing an e-mail to a client at the moment. 41 +The secretaries haven't written all the letters yet. 43 +John has a large coffee stain on his shirt. 34 +Jack always spilling things. 24 +Jack should have been more careful! 29 +John is taking john to the airport. 28 +Did mia bring the coffee? 20 +If he doesn't arrive on time, he'll have to take a later flight. 49 +Donna doesn't ski or roller skate. 27 +Unfortunately, our dinner has been eaten by the dog. 43 +The bed was made as soon as i got up. 27 +Dad has been working hard all day. 27 +We hope you don't have an accident on your way to school. 44 +She was baking a pie for dessert. 26 +Alberto is writing a message to his girlfriend. 39 +He is doing it for fixing a date for them. 32 +Instantly, he was excited and booked a table for them. 44 +However, he should have consulted his girlfriend first. 47 +His girlfriend did not know anything about it. 38 +She had planned it another way. 25 +Now he is convincing her to go with him. 31 +But she is not listening to his bluffs. 31 +I am going to make a trip to south africa. 32 +I have planned it just now. 21 +I don't want to waste this plan this time. 32 +Didn't i waste a lot of planned trips? 29 +Has emilia been planning to go on a trip to south africa? 45 +Do you want to go with her or do you want to go alone? 40 +I would not go with her even if i had no other options. 42 +Moreover, i will not go to south africa if she goes there. 46 +I cannot bear her creepy attitude. 28 +I must find an alternative place to go if she goes. 40 +They were seen. 12 +I can swim. 8 +Such things can help. 17 +I could swim. 10 +That could help. 13 +I dare not attempt it. 17 +You did not understand. 19 +Do you like it? 11 +They have understood. 18 +May i stay? 8 +That may take place. 16 +We might give it a try. 17 +You must not mock me. 16 +It must have rained. 16 +You need not water the grass. 23 +You ought to play well. 18 +You shall not pass. 15 +You should listen. 15 +That should help. 14 +We will eat the pie. 15 +He will make that mistake every time. 30 +Nothing would accomplish that. 26 +After 1990, we would do that again. 28 +Back then we would always go there. 28 +The general shape of strong auxiliaries is as in. 40 +She was waiting for an hour. 22 +She is waiting in the hall. 21 +She will be waiting outside. 23 +She had drunk it before we arrived. 28 +She has drunk it already. 20 +She will have drunk it by then. 24 +She had been studying before the incident. 35 +She will have been studying for a month at that point. 43 +Our dessert was eaten by the dog. 26 +The phone will be disconnected tomorrow. 34 +A baby is god's opinion that life should go on. 36 +It is never too late to be what you might have been. 40 +Well, either side could win it, or it could be a draw. 42 +If you can dream it, you can do it. 26 +Rose has been drinking heavily since breakfast. 40 +Peter is taking you to the airport. 28 +I do my homework. 13 +You do the laundry. 15 +We do the washing up. 16 +They do yoga. 10 +She does the cleaning. 18 +Do i know you? 10 +Do you live here? 13 +Do we have time? 12 +Do they come from vietnam? 21 +Does she drive to work? 18 +Are is used for them and us. 21 +Was is used for the past tense of am and is. 33 +Were is used for the past tense of you, we, and they. 41 +You are indian. 12 +They are excited. 14 +She is cool. 9 +Am i in the right place? 18 +Are you my new boss? 15 +Are we nearly there? 16 +Are they the best players on the team? 30 +Is she old enough to go to bars? 24 +I have a dog. 9 +You have something on your shirt. 27 +We have seen it before. 18 +They have called me three times. 26 +She has lived in america. 20 +Eric should not have done it because it was the wrong decision. 51 +You should not have bought the fish because it was rotten. 47 +Anna should have admitted his fault as it was good for him. 47 +Mia is in new york now, she may come tomorrow. 36 +Emma is not here she might be outside. 30 +Anna might go on a vacation this month. 31 +Rachel has an exam she might be on the varsity now. 40 +How did he do it? 12 +He did most of his. 14 +I'm glad you did that. 16 +So she did the same. 15 +And since i did not. 15 +Did he know this? no. 15 +How did you put it? 14 +No, but i did help. 14 +He did a lot of good. 15 +I did my pivot turn. 15 +But he did not hurry. 16 +So he did, but not me. 16 +Tell me what he did. 15 +How did he do that? 14 +He did note that the. 16 +As i did i took notes. 16 +You know what you did. 17 +See, you did it again. 17 +What more did he want. 17 +He did ask one other. 16 +I did the wrong thing. 17 +I did not prod further. 18 +She did not want her. 16 +I think papa did, too. 17 +I did him a service. 15 +She did not regret it. 17 +He did not turn back. 16 +Sam did not believe it. 18 +And it does it an. 13 +What does it mean? 14 +And yet he does not. 15 +I guess it does not. 15 +Oh, he does have a. 14 +But does he buy it? 14 +As it does not fit. 14 +I wonder what it does. 17 +It does not seem so. 15 +And it does not miss it. 18 +But he does not know. 16 +He does not know-how. 16 +It does not have to. 15 +How does it work in? 15 +God does not like it. 16 +It does not need to. 15 +He does have an alibi. 17 +What does it say when? 17 +The one that does the. 17 +What harm does it do? 16 +Yoga can and does help. 18 +It does not mean that. 17 +He does not believe me. 18 +Does he feel the same? 17 +But it does not teach. 17 +A saint does not want. 17 +Why me, why does this. 17 +What, if it does not? 16 +It does not move him! 16 +It does that to people. 18 +But it does not matter. 18 +No matter what he does. 18 +How will we see them? 16 +Rigidity does not work. 19 +How are you? what a. 14 +But your mind does move. 19 +How he wished that 11. 17 +Does it mean that past? 18 +See if it does any good. 18 +You all by now, how. 15 +What does it say to me? 17 +Well, err, everyone does. 21 +You know how it is. 14 +How can i resist that? 17 +No matter how hard he. 17 +How one would teach it. 18 +How old is she then? 15 +How much is up to you? 16 +I don't know-how and. 15 +It teaches us how to. 16 +Let me see how it looks. 18 +How little the fear of. 18 +After all, you did, how. 19 +It was amazing how the. 18 +And i know how much. 15 +My, how we have changed. 19 +It must do this too. 15 +Mike would not do that. 18 +So what can you do? 14 +We do more than obey. 16 +That would have to do. 17 +Because i think i do. 16 +I would never do that. 17 +I couldn't do his job. 16 +I wish to do nothing. 16 +But when you do have. 16 +Do not bend your head. 17 +So what do you do if? 15 +What would you do? 14 +Do your dirty work. 15 +All he could do was nod. 18 +Yes, that should do it. 18 +Do you hear that, love? 18 +What do you feed them? 17 +Or what do you think? 16 +But i do repeat myself. 18 +He just couldn't do it. 17 +I run faster than david. 19 +He does it well. 12 +Olivia thinks about poetry. 23 +Harry ate the cookies. 18 +Max kicked john. 13 +John punches him. 14 +They sold the tickets. 18 +Anna is throwing the football. 25 +Mia accepted the job offer. 22 +He thought about his stupid mistake in the test. 39 +John visited his friend for a while. 29 +The dog ran across the yard. 22 +Anna left in a hurry. 16 +Harry yelled when she hit her toe. 27 +I'll play this song on my guitar. 25 +He hit a home run in the last game. 26 +Will you help me with the laundry? 27 +He rode his new bike around the block for hours. 38 +The horse trotted along the trail. 28 +We ate dinner then walked around the park. 34 +Did you fix the mistake in your homework? 33 +She waited for her friend at the mall. 30 +She lay on the couch and slept there all night. 37 +Close the door! 12 +The bird sings a cheery song every morning. 35 +The roof on the house leaks. 22 +The lightning struck the tree. 25 +They bought a new house. 19 +Tom accused me of lying. 19 +Tom baked some muffins. 19 +I bathe every day. 14 +I bet you know french. 17 +Do you bind books? 14 +We broke up. 9 +Rabbits breed quickly. 19 +We need to build a fire. 18 +The spy burned the papers. 21 +I don't carry cash anymore. 21 +Let's catch a bite. 14 +The mud clung to his shoes. 21 +I'm coming today. 13 +The baby is crying. 15 +John cut his finger. 16 +He didn't dare to speak to her. 23 +I have to deal with it. 17 +Mike has decided to live in france. 28 +I doubt if it'll snow. 16 +Jack explored the amazon jungle. 27 +We extended a hearty welcome to them. 30 +I fell in the pool. 14 +We just fed the baby. 16 +Don't fight with me. 15 +I can find them. 12 +The waiter gives me the menu. 23 +Let's go to eat. 11 +We grind our coffee by hand. 22 +Apples grow on trees. 17 +Don't you hang up on me? 17 +You made it happen. 15 +I hate getting to the theatre late. 28 +I have a car. 9 +I will hear me. 11 +He ignored her advice. 18 +The teacher will illustrate how to do it. 33 +I can imagine how you felt. 21 +Silence implies consent. 21 +We're not impressed. 16 +I need to improve my french. 22 +Max seems to lack energy. 20 +Megan is laughing. 15 +Sam leads a quiet life. 18 +He leaned on his elbows. 19 +Children learn to creep ere they can go. 32 +Lie back down. 11 +We've never met. 12 +The snow is melted. 15 +Their car overtook ours. 20 +Sam owes me money. 14 +I own a german car. 14 +I can play tennis. 14 +Tom pointed to the sky. 18 +I will prove it to you. 17 +John pulled out a pen. 17 +You punch like a girl. 17 +The police pursued the murderer. 27 +She quits worrying about the problem. 31 +Tom reacted appropriately. 23 +I didn't realize we were late. 23 +We had to retain a lawyer. 20 +I have decided to retire. 20 +You've got to get rid of it. 20 +No one says that. 13 +Donna asked eric to scrub the toilet. 30 +Do you see that bird? 16 +I always seem to be unlucky at cards. 29 +I can't sell you that. 16 +They're sending help. 17 +I'm going to set the table. 20 +The problem is not settled yet. 25 +Emma is sewing baby clothes. 23 +Can you stand up? 13 +Daniel started tipping the pea pods into a pan. 38 +My watch was stolen. 16 +David stuck to his job. 18 +I was stung by a bee. 15 +It stinks in here. 14 +I took a walk. 10 +Harry talked a lot. 15 +I will teach you how to swim. 22 +I tore the picture out of the album. 28 +I told him to come. 14 +Rose tends to be late for school. 26 +I can't wait to see you. 17 +I have to wake tom up. 16 +Don't try to walk before you can crawl. 30 +I want to watch tv. 14 +We've got to warn tom. 16 +Jack washed his hands. 18 +Joe waved her hand to me. 19 +Rachel wept over her child's death. 28 +I accept your apology. 18 +Mike accused me of lying. 20 +Anna achieved remarkable results. 29 +Bella acknowledged receiving assistance. 36 +Megan acquired many new friends. 27 +Mike adapted himself to his new life. 30 +I added a room to my house. 20 +You will soon adjust to living in a dormitory. 37 +I admire your confidence. 21 +He was embarrassed to admit making a mistake. 37 +I liked your idea and adopted it. 26 +He adores his grandfather. 22 +He advised applying at once. 23 +I can't afford to spend any more money this week. 38 +Why did you agree to meet her in the first place? 38 +We aim to increase the speed of delivery. 33 +Swimming isn't allowed here. 23 +She announced her intention to retire. 32 +I didn't anticipate having to do the cooking myself! 42 +You don't have to apologize. 22 +Jack appears to be tired today. 25 +Anna applied for a leave of absence. 29 +I appreciate having trouble with his supervisor. 41 +She approached him with a smile on her face. 35 +I don't think mike would approve. 26 +I don't want to argue with you. 23 +Have you arranged to meet mark this weekend? 36 +We arrived home late. 17 +Historians frequently ask to consult the collection. 45 +I assume bravo didn't show up. 23 +I assure you mike will be perfectly safe. 33 +I was astonished by his ignorance. 28 +You need to attach your photo to the application form. 44 +Are you going to attempt to pass the exam? 33 +She attends school at night. 23 +Donna certainly attracted a lot of attention. 38 +David awoke at daybreak. 20 +Sam baked some muffins. 19 +He is immature. 12 +You can't beat me. 13 +John became very sick. 18 +I beg to differ with you. 19 +The leaves begin to fall when autumn comes. 35 +I believe you're right. 18 +This bicycle belongs to me. 22 +Lie flat and let your knees bend. 26 +I got bitten by mosquitoes. 22 +Tom blew himself up accidentally. 28 +Please boil an egg for me. 20 +I need to borrow your car. 20 +Bounce the ball and try and hit it over the net. 37 +Every child bowed to the teacher. 27 +I brought some dessert. 19 +We broadcast news on the hour. 24 +John burst into the room. 20 +I will buy a lot of candies for you. 27 +A computer can calculate very rapidly. 32 +Can you give me a ring at about 10? 26 +Would you care to join us for dinner? 29 +We're celebrating max's birthday. 27 +Every day is beautiful if you choose to see it. 37 +Max chopped down the tree that was in our front yard. 42 +This diet claims to eliminate toxins from the body. 42 +John climbed the mountain. 22 +David didn't commit those crimes. 27 +I can't communicate with anna as i used to. 33 +They compared the new car with the old one. 34 +I competed with him for the first prize. 32 +John complained about the weather. 29 +He completed drawing his pictures. 29 +I'm concerned for anna's safety. 25 +The report has yet to be confirmed. 28 +We hope you will consent to act in his stead. 35 +A soccer team consists of eleven players. 34 +You'd better consult your doctor. 27 +This box contains five apples. 25 +I'm not convinced of that. 20 +The pizza will then take about twenty minutes to cook. 44 +It'll cost about 10,000 yen. 22 +We're counting on you. 17 +Max crawled into bed just before midnight. 35 +I have to create a new website. 24 +We crept toward the enemy. 21 +Bravo criticized mary for not doing the job correctly. 45 +He has decided to live in france. 26 +She deferred writing my thesis. 26 +Big companies often delay paying their bills. 38 +Letters are delivered every day. 27 +I demand to know what's going on. 25 +She denied taking the money. 23 +I can't depend on you anymore. 23 +John can't describe how painful it was. 31 +They didn't deserve to win. 21 +We all desire success. 18 +John's house was destroyed by a hurricane. 34 +I am determined to carry out this plan. 31 +Swimming develops our muscles. 26 +My opinion differs from yours. 25 +It pains me to disagree with your opinion. 34 +The miner discovered a valuable pocket of gold. 39 +We briefly discussed buying a second car. 34 +I dislike being the center of attention. 33 +The teacher distributed the leaflets. 32 +John learned to dive when he was five. 30 +I had to drag him out of bed. 21 +I dreamt about you. 15 +They intended to drill for oil. 25 +Can i have something to drink? 24 +He drives a truck. 14 +He earns three times more than me. 27 +You can't eat your cake and have it. 27 +I want to emphasize this point in particular. 37 +His wealth enables him to do anything. 31 +John encouraged mary to learn how to speak french. 41 +We used to be engaged. 17 +Can we enhance the image? 20 +I enjoy talking to you. 18 +This medicine will ensure you a good night's sleep. 41 +This review procedure entails repeating the test. 42 +He entered the room. 16 +The school was established in 1650. 29 +The doctor examined the patients. 28 +I don't believe such things to exist. 29 +The workers are expanding the road. 29 +What time do you expect to arrive home? 31 +They're experimenting with a new car. 30 +I can explain everything. 21 +He explored the amazon jungle. 25 +I fail to comprehend their attitude. 30 +He finished cleaning the kitchen. 28 +This coat doesn't fit me. 19 +Sam wishes he could fly. 19 +Mike and mia folded up the flag. 25 +We must follow the rules of the game. 29 +I forbid you to smoke. 17 +I will never forget visiting them. 28 +We have already forgiven you. 24 +That child sure is joyful. 21 +There are twenty chairs set. 23 +Rachel is wearing a sleeveless shirt today. 36 +Cathy loves the weekends in the country. 33 +We enjoy swimming after breakfast. 29 +The cup fell and broke. 18 +Emily loved spending time with her aunt nancy in paris. 45 +Buick and jeep are two important carmakers. 36 +The person threw the rock across the yard. 34 +My dog, oreo, jumped in the air and caught the ball! 41 +Can you smell the soup, john? 23 +Love and friendship are equally important. 36 +Your mind can know a million things. 29 +There are five dogs in the street. 27 +I bought three tons of coal. 22 +Mike has six pairs of blue sandals. 28 +Love is in the air. 14 +The four elements are air, earth, fire, and water. 41 +Her humor knows no bounds. 21 +The team threw confetti when it was over. 33 +Emma buys the band some sandwiches. 29 +Mike told the class she was getting married. 36 +One dog, two dogs, a red dog, blue dog. 30 +I missed not just one bus today, but two buses. 37 +New york city is one of the grandest cities in the world. 45 +The air in the countryside and the city is clean and fresh. 47 +All knowledge is a good thing. 24 +Florida has mostly warm weather in the winter. 38 +The light's color is red. 19 +The country's flag has blue stripes. 29 +John is nice. 10 +Rose is a good dancer. 17 +That man is a scoundrel. 19 +I own a cat and two dogs. 18 +I do not want a gun in my house. 23 +Megan sent me a postcard from italy. 29 +A broken egg. 10 +A european country. 16 +I need a bottle of water. 19 +I need a new glass of milk. 20 +I read a book yesterday. 19 +David is a practicing buddhist. 26 +I ate curry for lunch. 17 +I do not have a cat. 14 +They're making a lot of noise out there. 31 +I need a holiday. 13 +An ass can carry heavy loads. 23 +I think an animal is in the garage. 27 +We are looking for an apartment. 26 +An unusual problem. 16 +Jack is an irishman. 16 +That animal over there is an elephant. 31 +No, it isn't an emu. 14 +Daniel is an honorable man. 22 +Could you shut the door? 19 +The police have caught the thief. 27 +The maid is on leave. 16 +The norwegian blue parrot has beautiful plumage. 41 +The apple was juicy and delicious. 28 +The boy sitting next to me raised his hand. 34 +Thank you for the advice you gave me. 29 +The theory of relativity. 21 +The gun is in his closet. 19 +It's the postcard that i have in my office. 33 +The dog is very friendly. 20 +She is going to select the furniture that she needs. 42 +We are going to see the statue of liberty this weekend. 44 +Have nice day! 11 +My office is at model town. 21 +My favourite sport is cricket. 25 +I am interested to join army. 23 +I have brother and sister. 21 +Come in and stay a while. 19 +Its nice to see you. 15 +It's pleasure to see you again. 24 +Good seeing you again. 18 +Please come into the living room. 27 +Right this way. 12 +I'm friend of Maria. 15 +Can you hold? 10 +City hall. what department please? 28 +Shraa is my cousin sister. 21 +Sorry I'm a bit busy right now. 23 +You have many gratitude. 20 +You always making me smile! 22 +Should I call doctor? 17 +I've got a new lease in life. 21 +Would you like a glas of water? 24 +I still have to go back to the doctor for a follow up. 41 +May i be frank. 11 +Get to the heart of matter. 21 +That's not at issue. 15 +That's different ball of wax. 23 +That's a horse of different colour. 28 +Where's you head? 13 +That gall! 8 +Could you repeat please? 20 +That's little outside my budget. 26 +It was buy one, get one free. 22 +I got two the price of one. 20 +You pay a lot more in other place. 26 +It was a quite cheap. 16 +What is going to be last price? 24 +Lets meet in the middle. 19 +Can i pay online payment? 20 +I am looking for your best price. 26 +What texts are required? 20 +Tell about your background? 23 +What are your weakness? 19 +What are your strong point? 22 +What are your salary expectation? 28 +Where do you see yourself in 5 years from now? 36 +Who is the most inspiring person in your life. 37 +Do you have any question for me. 25 +I have two year of experience in computers. 35 +What is the difference between confidence and over confidence? 53 +Well that's it from me. thanks a lot. 27 +Not now! 6 +Begin now. 8 +He wanted to get good grades in school. 31 +I'll trade you my cards for yours. 26 +Which cakes shall we bake today? 26 +The car had to brake hard. 20 +The earthquake made the ground shake. 31 +Some of the team were late for the game. 31 +The flame flickered. 17 +The picture frame is made of silver. 29 +Would you like a grape? 18 +I had to chase my dog through the field. 31 +I accidentally dropped the plate. 28 +My brother can skate. 17 +We mashed the garlic into a paste. 27 +Lemons have a sour taste. 20 +Jack has a fat cat. 14 +The bad lad sat in a van. 18 +Dan has an axe on his lap. 19 +He sat on the sack. 14 +Zack has sap in a pan. 16 +Max has sap and an axe 17 +The man had a nap on a pad. 19 +Eye for eye and tooth for tooth. 25 +A bad thing never dies. 18 +Lying rides upon debt's back. 23 +You cannot lose what you never had. 28 +Fire and water have no mercy. 23 +This jacket is just my size. 22 +I happened to know about him. 23 +After black clouds, clear weather. 29 +His life had reached its natural term. 31 +We have a representative sample. 27 +Thought is the seed of action. 24 +I hate to see animals suffering. 26 +Well, what did she actually say? 26 +She wrote an essay on my family. 25 +Perhaps the letter will come today. 29 +It's exactly half past five. 22 +Mathematics is her favorite subject. 31 +Please leave a contact address. 26 +The program is a cinch to install. 27 +I am absolutely positive it was him. 29 +Be honest rather clever. 20 +No answer is also answer. 20 +Truth will stand without a prop. 26 +All is not at hand that helps. 23 +He is the cleverest boy in the class. 29 +Can i take a bath? 13 +The vet came to the dog's aid just in time. 32 +Tom's aim is to score 10 goals this season. 33 +He paid the fare for the train journey. 31 +You never fail to amaze me! 21 +The postman delivered the mail. 26 +What time does the ferry set sail? 27 +Dad tripped over the dog's tail. 25 +The snail left a trail on the path. 27 +Call this number to claim your prize. 30 +We don't want to live near the main road. 31 +I have a slight pain in my neck. 24 +There was a broken link in the chain. 29 +The chocolate cake is nicer than the plain cake. 39 +His blood made a dark red stain on the carpet. 36 +I have been under a lot of strain. 26 +How much longer do we have to wait? 27 +The sports therapist studied my gait. 31 +I like to use different colours when i paint. 36 +His voice was very faint. 20 +My skirt is tight around my waist. 27 +I bet you haven't slept yet. 21 +Get some rest. 11 +When will you be ready? 18 +He spends ten dollars a day. 22 +My head is on my neck. 16 +The floor is wet again. 18 +He said could you check if you have a pen? 32 +Let's pet the cat. 13 +Ken bet meg ten pens. 16 +The red bag fell on the men. 21 +The net sack has a wet hem. 20 +Deb has a fat vet. 13 +Jeff set the hen in a mess on the bed. 28 +Tess led meg to the end of the deck. 27 +Jed isn't well yet, Let jed rest. 25 +The bad hens quack and peck. 22 +Jeff set the net on the end of the deck. 30 +A thief will steal these jeeps. 25 +Read these brief deals. 19 +The beam is seen by the wet team. 25 +Hold the reins lightly. 19 +A vein carries blood to the heart. 27 +The bride wore a long white veil. 26 +The country prospered under the king's reign. 37 +I heard the horse neigh from the stable. 32 +Weigh the ingredients carefully. 28 +The sleigh was pulled by reindeer. 28 +I get to work at eight o'clock. 23 +The freight was loaded onto the ship. 30 +To win the cake you must guess its weight. 33 +Their new neighbor was very kind. 27 +Hannah ran faster than lee. 22 +My pencil is sharper than yours. 26 +It stays lighter for longer in the summer. 34 +My hair has become smoother. 23 +Car lights can dazzle drivers at night. 32 +The dancer twists and turns. 23 +She was an excellent rider. 22 +Will is the fastest runner in the school. 33 +The teacher gave me good advice. 26 +My brother's daughter is my niece. 27 +The arrested man asked for a lawyer. 29 +The writer won a prestigious prize. 29 +I managed to control my anger. 24 +He was reluctant to answer my question. 32 +When will you be able to deliver my order? 33 +There's a tall tree at the center of the park. 35 +This flask holds one liter of juice. 29 +We need fiber for a healthy diet. 26 +Kim sat in the big rig. 17 +My pal can sit on the mat. 19 +Pam hid in the van. 14 +I can see the tin lid. 16 +Dad can fix the van. 15 +Al has six caps. 12 +Pam has a big ax. 12 +Vin bit nick and jill. 17 +The cat will hiss at the big hen. 25 +Ned has a big bed. 13 +Yes, the big bat is in the red bag. 26 +The big cat will lick the wet leg. 26 +Rick will rip the big red lid. 23 +Jen is sick and she has a pill. 23 +That kid bit and hit my sis. 21 +You can lick the lid on the sill. 25 +We can hike a mile at night. 21 +That nice dog might bite. 20 +The wide mile is right for mike. 25 +Mike might rise at nine. 19 +A plant grows from a seed. 20 +I'm not sure if this is a weed or a flower. 31 +She hoped a plaster would stop the bleed. 33 +A tear rolled down my cheek. 22 +I feel hungry at lunch time. 22 +Have you ever been to Spain ? 22 +A deep shade of red is often referred to as crimson. 41 +The sheep were let loose in the field. 30 +Can you steer the boat? 18 +There was a sweet floral scent to the air. 33 +My laptop screen has gone blank. 26 +Bob's wedding speech was very funny. 29 +You can freeze the video at any time. 29 +An alley runs between the houses. 27 +I like to sprinkle some chocolate on my coffee. 38 +Do you agree with what i am saying? 27 +The first American settlers had pioneer spirit. 40 +We called an engineer to fix the computers. 35 +Would you like to volunteer at the library? 35 +A chimpanzee is an intelligent ape. 29 +I hope the boat floats. 18 +Joan votes in Rome. 15 +We run home at night and sleep. 24 +He can make a bowl with coal and foam. 29 +Joe will loan the foal to joan. 24 +The foal will moan when it is alone. 28 +Go home and soak a load. 18 +Joan will quote Joe's note. 21 +I hope Joan will go to rome. 21 +Nope! i won't throw the toad! 21 +Hot love is soon cold. 17 +I have told you twenty times. 23 +I hope you in the roll. 17 +The bed can fold away. 17 +This is a mould of pudding. 21 +Hold fast when you have it. 21 +All that glitters is not gold. 24 +He kept pigs and poultry. 20 +Get him on the blower at once! 23 +She is singing in the chorus. 23 +The lining of my coat is torn. 23 +No man is born wise. 15 +The knife has a horn handle. 22 +Every rose has its thorn. 20 +Will you boil the kettle for tea? 26 +They wrapped the sandwiches in foil. 30 +This garden soil is good quality. 27 +Please don't spoil the game by cheating. 32 +He began to toil up the hill. 22 +The coin featured the monarch's profile. 33 +The musician had to audition to join the band. 37 +Loin of lamb is a very tender meat. 27 +Your elbow is a hinge joint. 22 +The contract was deemed void. 24 +He used a hoist to lift the weight. 27 +You need a new joist fitted above that door. 35 +This chocolate cake is very moist. 28 +There is a good choice of food in the canteen. 36 +Did you hear that strange noise? 26 +Fish is a healthy food. 18 +I could see from his smile that he was in a good mood. 41 +The mosque has a dome on the roof. 26 +I have absolute proof that he did it. 29 +It was a spring morning and the air was cool. 35 +Please pass me my tool box. 21 +The big drum made a loud boom. 23 +He peered into the gloom. 20 +The spoon was silver. 17 +She will arrive soon. 17 +Would you like a scoop of ice cream? 28 +I heard the hoot of an owl. 20 +They had a lovely walk on the moor. 27 +The film received poor reviews. 26 +I also have proof. 14 +I want not one, but two scoops of ice cream. 34 +Her new sweater was made from wool. 28 +I dipped my foot in the freezing water. 31 +He tried not to look into the bright light. 34 +We cook in the kitchen. 18 +I had to crouch down to pick up the book. 31 +A kangaroo keeps its baby in a pouch. 29 +Don't slouch on the chair. 20 +Can you count to ten? 16 +They set out to climb mount everest. 29 +Jim drew us a plan of his new house. 27 +The grouse is a bird sometimes shot for food. 36 +I control my computer with a mouse. 28 +Your spouse is your husband or wife. 29 +She wore a white blouse. 19 +He added an ounce of sugar to the mixture. 33 +He let the ball bounce away. 22 +That cat is about to pounce on a bird. 29 +The lounge had a beautiful rug. 25 +He set a cup on the table. 19 +The sunset tinted the hut. 21 +Fools have the best luck. 20 +All is fair in love and war. 21 +If you build it they will come. 24 +He had grown staid and dull. 22 +Diamond cuts diamond. 18 +You have to duck down here. 21 +She tied her hair in a bun. 20 +The corner pub is quite good. 23 +Tall trees catch much wind. 22 +It's almost time for lunch. 21 +This cell phone sure is hot stuff. 27 +Can you undo this knot? 18 +Sometimes gain is to lose. 21 +Muck and money go together. 22 +Just untie my hands. 16 +The last mile is all uphill. 22 +Don't make fun of me. 15 +Love is the mother of love. 21 +This is a color television. 22 +Vanity is the food of fools. 22 +No fool like an old fool. 19 +No man cool calls back yesterday. 27 +Suit the action to the word. 22 +She drove straight into the pool. 27 +Don't shoot the messenger. 21 +What do you think about? 19 +What's your opinion about? 21 +Do you think? 10 +How do you feel about? 17 +May i ask you? 10 +In your opinion? 13 +Please tell me your opinion on. 25 +What's your opinion on ? 18 +Do you have an opinion on? 20 +Do you have any opinions on? 22 +In your experience? 16 +What's your view on? 15 +Would you agree that? 17 +Can you give me your thoughts on? 26 +Do you approve of? 14 +Do you agree with the opinion that? 28 +Do you have any views on? 19 +If i asked your opinion about? 24 +If i said? 7 +I'd like your views on. 17 +I'm sure you'd agree that. 19 +What are your feelings about? 24 +What are your views on? 18 +Could you explain to me? 19 +Could someone please tell me? 24 +Just tell me the reason why? 22 +I don't really understand? 21 +I just don't see why. 15 +Are you saying that? 16 +I beg your pardon? 14 +I didn't quite get that. excuse me, did you say that? 40 +Do you have an idea? 15 +Is it right what i've done? 20 +I just don't see why? 15 +Are you aware of? 13 +Would you support the view that? 26 +What's your take on? 15 +When you say, do you mean? 20 +In my view. 8 +As far as i can see. 14 +As far as i'm concerned. 18 +It seems to me that. 15 +Well, i'd say. 10 +If you want my opinion. 18 +You can take it from me that. 22 +First of all i'd like point out. 24 +First to start with i'd like point out. 30 +What we have to decide is. 20 +There can be no doubt that. 21 +It's a fact that. 12 +Nobody will deny that. 18 +The way i see it everyone knows. 25 +The way as i see it everyone knows. 27 +Let me put it this way. 17 +Let me put it another way. 20 +Let's get this clear. 16 +Sorry to interrupt you, but. 23 +The point i'm trying to make is. 24 +Personally speaking i think. 24 +I'm absolutely convinced that. 25 +My view is that. 12 +My point of view is that. 19 +The way i look at it is this. 21 +The way i look see it is this. 22 +What i actually meant was. 21 +I have seen that. 13 +I have noticed that. 16 +I have observed that. 17 +I just don't think it's right that. 26 +One argument is favour of. 21 +I think have the right to. 20 +Look, it's like this. 16 +What i mean is. 11 +The reason for this is. 18 +The main problem is. 16 +Just let me explain. 16 +Well, the reason is. 16 +Well, the thing is. 15 +Above all we must keep in mind that. 28 +What's you opinion about? 20 +What do you think about it? 21 +Do you agree with me? 16 +The reason for. 12 +One possible explanation is that. 28 +What's responsible for this effect is. 31 +Let me explain. 12 +There's no doubt in my mind. 21 +It could well be that. 17 +I agree completely. 16 +I agree entirely. 14 +I entirely agree with you on that. 27 +I completely agree with you on that. 29 +You're so right. 12 +I think so, too. 12 +I don't think so either. 18 +That's just my feeling. 18 +That's just my opinion. 18 +That's just how i see it, too. 22 +That's just how i feel about it, too. 28 +That's very good point. 18 +You've got a good point there. 23 +Yes, of course. 12 +Yes, absolutely marvellous. 24 +Yes, definitely. 14 +That's exactly what i mean. 21 +That's exactly what i say. 20 +Yes, that's obvious. 16 +That's exactly how i see it. 21 +That's what i think. 15 +How very true. 11 +Yes, indeed. 10 +I'm all in favor of what you've been saying. 33 +Yes, i agree. 10 +I think so too. 11 +That's a good point. 15 +Neither do i. 10 +That is logical. 13 +I can't argue with that. disagree. 26 +I'm not sure about that. 18 +The problem with that is. 20 +But don't you feel that point. 23 +Yes, perhaps, but. 15 +Yes, possibly, although. 21 +Yes, but on the other hand. 21 +Yes, in a way. 10 +Maybe, i suppose so. 16 +Well, it depends. 14 +I don't think it's as simple as that. 27 +I see what you mean, but i think that's not the whole story. 46 +You may be right there. 18 +Yes, but there's also another aspect to consider. 40 +There is no doubt about it that. 25 +I simply must agree with that. 24 +I am of the same opinion. 19 +I am of the same opinion as. 21 +I completely agree with. 20 +There are many reasons for. 22 +I disagree with you, i'm afraid. 25 +No, i really can't agree, i'm afraid. 28 +I don't quite agree there. 20 +I'm not so certain all sure if that's true. 32 +I'm not so sure. 11 +I'm sorry i can't agree. 17 +Do you really think so that? 22 +Do you really believe that? 22 +I'm not convinced that. 18 +Well, that's one way of looking at it, but, i have my doubts that. 51 +You can't really mean that. 21 +You don't really mean that, do you? 27 +I wouldn't say so. 13 +I don't think you're right. 20 +I don't think that's right. 20 +Surely you don't mean that? 21 +I don't want to argue with you, but. 27 +I can't go all the way with you on that point. 34 +Are you seriously suggesting that? 29 +I have my problems with what you're saying. 34 +I can't quite understand how. 23 +I've come to complain about. 22 +I'm disappointed with i'm fed up with. 29 +It really is terrible that. 22 +I'm sorry i have to say this, but. 25 +Forgive me for mentioning it, but. 28 +That's what i want to know. 20 +Are you aware that? 15 +I'm disappointed to hear that. 24 +What are you going to do about it? 26 +Something ought to be done about it. 29 +Look, i really must protest about. 28 +Can't something be done to. 21 +I really must apologize for this. 27 +Well, there's nothing we can do about that, i'm afraid. 43 +This isn't my fault, you know. 23 +What do you expect me to do? 21 +I'll find out what has happened. 25 +I'm sorry you should take it that way. 29 +I'll see what i can do. 16 +You know what i think, i think that. 28 +The point is. 10 +As i see it. 8 +The way i see it is. 14 +I sometimes think that. 19 +Wouldn't you say that? 17 +Wouldn't you agree that? 19 +I'd just like to say that. 19 +Well, i've heard that. 17 +Don't you think it's right to say that? 29 +It's my feeling that. 16 +I tend to think that. 16 +I think that. 10 +I am sure that. 11 +I believe that. 12 +I don't feel. 9 +In my experience. 14 +I would suggest that. 17 +I am certain that. 14 +Without a doubt. 13 +It is thought that. 15 +Some people say that. 17 +It is considered. 14 +Generally experience. 19 +According to me. 13 +In my eyes. 8 +From my perspective. 17 +From my view point. 15 +I'd like to point out that. 20 +Generally it is thought that. 24 +Well, it is considered that. 23 +It is generally accepted that. 25 +My impression is that. 18 +It goes without saying that. 23 +I hold the view that. 16 +I'm of the opinion that. 18 +No, that's not what i'm trying to say. 28 +No, that's not what i mean. 20 +All i'm saying is that. 17 +I was thinking exactly that myself. 29 +Ok, let's do that. 13 +Yes, let's do that. 14 +That's a good idea. 14 +It's a good idea, but. 16 +But what if? 9 +I'm not sure i understand your point. 29 +I'm sorry, could you repeat that? 26 +What do you mean by? 15 +Could you give me an example? 23 +Maybe, but it seems to me that. 24 +I partly agree, but i still believe that. 33 +I don't agree, in my opinion. 22 +I completely disagree. to me. 23 +I'd say the exact opposite. 21 +That's not always the case. 21 +No, i'm not so sure about that. 23 +That's an interesting point. 23 +I've never really thought about that. 30 +Um, let me think. 13 +It's hard to say. 12 +Just a minute. 11 +Wait, what about. 14 +Can we just pause a second? 21 +Let's see. 7 +One quick thing. 13 +Just one thing. 12 +Just let me say. 12 +According to my personal opinion. 28 +According to my professional opinion. 32 +Answer that has always appealed to me. 31 +As far as i can tell. 15 +By my reckoning. 13 +From my observation. 17 +From my personal angle. 19 +From my personal perspective. 25 +From my personal standpoint. 24 +From my prospective. 17 +From my standpoint. 16 +From where i'm sitting. 18 +I am of the opinion that. 19 +I conclude that. 13 +I feel that. 9 +I have observed. 13 +I hold the belief that. 18 +I maintain that. 13 +I would argue that. 15 +I'll state my view. 14 +I'm unconvinced that. 17 +If i may opine. 11 +If i may outline a response. 22 +If you were to ask me. 16 +In my book. 8 +In my estimation. 14 +In my mind. 8 +In my own conceit. 14 +In my valuation. 13 +It occurs to me that. 16 +It seems likely. 13 +Many people think that. 19 +It is often said that. 17 +Everybody knows that. 18 +According to scientists. 21 +The research seems to suggest. 25 +Apparently she was wrong. 21 +I've heard that. 12 +I'm afraid i have to disagree. 23 +I'm sorry to disagree with you, but. 28 +That's not entirely true. 20 +With due respect, i believe it would be wrong to. 39 +With due respect, i would only partly agree to that. 42 +I feel it wouldn't be right to. 23 +Though i agree with. it seems to me that. 31 +That's partly true, but. 19 +I see your point, but. 17 +Well, you could be right. 20 +Yes, ok, but perhaps. 17 +To some extent, i agree with you, but. 30 +It sounds interesting, but. 23 +That's true, but. 13 +Me too, but. 9 +That seems obvious, but. 20 +I accept what you're saying but. 25 +It is only partly true that. 22 +I can agree with that only with reservations. 37 +That is not necessarily so. 22 +It is not as simple as it seems. 24 +Under certain circumstances. 25 +Let's go on to another point. 22 +Next, let's talk about. 18 +Let's talk about that late. 21 +I see your point, but i think. 23 +Yes, i understand, but my opinion is that. 34 +That's all very interesting, but the problem is that. 43 +I'm afraid i can't quite agree with your point. 36 +I think i've got your point, now let me respond to it. 41 +I can see what you're saying. here's my reply. 34 +We can see what you're saying. here's my reply. 35 +I'm sorry to interrupt, but you've misunderstood our point. 48 +Excuse me, but that's not quite correct. 32 +Sorry, i just have to disagree with your point. 38 +Let me just respond to that, please. 29 +Forgive me for interrupting, but i must respond to that. 46 +Hold on a moment, that's not correct. 29 +If you would allow me to add a comment here. 34 +We pointed out that. 16 +Our opponents have claimed that. 27 +The first point i would like to raise is this. 36 +Our position is the following. 25 +Here's the main point i want to raise. 29 +I'd like to deal with two points here. the first is. 39 +I'm sorry to interrupt, but. 22 +What do you reckon? 15 +Any thoughts on? 13 +Are people right in thinking? 24 +Are you in agreement with? 21 +Do you have any particular views on? 29 +Do you have any thoughts on? 22 +From your point of view? 19 +I know this is not your specialist subject, but. 39 +I know you haven't had long to think about this. 37 +I know you haven't had much time to think about this, but. 45 +I'd be interested to hear your views on. 31 +What are your thoughts on? 21 +What would be your reaction if i said? 30 +What's your position on? 19 +Would it be right to say? 19 +My position is the following. 24 +Let me just retake my position. 25 +Just to be clear, here is what i mean. 29 +My fate, i will think, will be to have no fate. 36 +I think. 6 +As far as i know. 12 +Well, if you ask me. 15 +If you want my honest opinion. 24 +I've never come across the idea that. 29 +To draw to a close i'd like to say that. 29 +To have the final say in the matter. 28 +To crown it all i'd like to say that. 27 +Let's have a final look at. 20 +It only remains for me to say. 23 +I would like to sum up the chief points. 31 +All things considered, the obvious conclusion to be drawn is that. 55 +All in all, it is evident. 20 +To draw to the conclusion i'd like to say that. 36 +But right now our attention turns to. 30 +Now, let's look at the situation in. 28 +And now let's turn to. 16 +I think what we can hope to do now is. 28 +What is likely to happen is. 22 +Let's move to another point. 22 +Now it is going to be pleasure to explain to you. 38 +That reminds me of. 15 +Something similar happened to me. 28 +I know exactly what you mean. 23 +Where were we? 11 +Anyway, you were saying. 20 +So as i was saying. 14 +There is another side to this. 24 +There are 2 ways of looking at this. 28 +There are different view of. 23 +It would be a mistake to think that. 28 +It is not a final word on the matter. 28 +It doesn't necessarily mean that. 27 +Well, there's been a debate about this. 31 +I take a different view at. 21 +Many people oppose the viewpoint that. 32 +My honest opinion would be that. 26 +The point i would like to make is that. 30 +I would like to say that. 19 +I would like to add here that. 23 +Is it okay if i add something here. 27 +If i may interrupt, i would like to add that. 35 +Excuse me for interrupting, but. 27 +Let me jump in. 11 +Do you mind if i jump in here? 22 +Can i jump in here? 14 +Do you mind if i come in here? 22 +I don't mean to intrude, but. 22 +I don't mean to be rude, but. 21 +May i interject? 13 +Would you mind explaining that a little more, please? 44 +Could you explain that more fully? 28 +Could you tell us a bit more about that? 31 +Could you please? 14 +Could you possibly tell me? 22 +I'd really appreciate it if you could. 30 +I'd be very grateful if you could. 26 +If possible, i'd like to know about. 28 +In other words. 12 +To put it another way. 17 +Let me try that again. 17 +Let me start over. 14 +Let me explain that again. 21 +Let me restate that. 16 +Let me start that again. 19 +Well, maybe, but i'm not sure about that. 32 +He maybe correct but i'm not sure. 26 +I can see your point, but i'm not sure i agree. 35 +You don't suppose he wants to escape, do you? 35 +It doesn't appear that the situation will improve. 41 +As a matter of fact. 15 +Well, i'm not sure that is true because. 31 +I'm afraid you're missing the point. 28 +I don't think that has anything do with the goal of our discussion. 53 +I have doubt whether. 17 +This is in complete contradiction to. 31 +What is even worse. 15 +I am of a different opinion because. 29 +I cannot agree with this idea. 24 +What i object to is. 15 +Unlike i think. 12 +There is more to it than that. 23 +The problem is that. 16 +Why don't we. 9 +How about. 8 +I suggest that we. 14 +Let's revise. 10 +How about going? 13 +Why don't we go? 11 +Couldn't we? 9 +Shall we? 7 +What would you say to? 17 +Does it matter if we? 16 +Would you like to? 14 +Let's go to. 8 +Do you fancy. 10 +We might as well. 13 +Actually, what i meant was. 22 +I actually suggested that we. 24 +I meant to say that. 15 +My idea was actually that we should. 29 +What i meant by. 12 +Ok. that makes sense. 16 +You are absolutely right. 21 +I feel the same. 12 +Absolutely correct. 17 +I totally agree! 13 +Tell me about it! 13 +I couldn't agree more! 17 +Me too! 5 +I was actually trying to suggest that. 31 +I was actually trying to say that. 27 +I was actually trying to explain that. 31 +Let's see if i can explain myself better. 32 +Let me try to explain that another way. 31 +I'm sorry but that is out of the question. 32 +Unfortunately that is not possible. 30 +No, let's not. 10 +Well, i'd rather. 13 +I don't feel like it. 15 +I dislike going for a walk. 21 +What an awful idea! 15 +I'm not sure about that idea. 22 +I'd love to but. 11 +I don't think it will work. 20 +I'm not very keen on. 15 +I have a point i'd like to make. 23 +I'd like to add something here. 24 +I'd like to say something about your idea. 33 +Sorry, i'm not quite sure what you mean. 31 +Do you mean that? 13 +I'm sorry, i don't quite follow. 24 +I don't quite understand what you're saying. 35 +In conclusion, the purpose of this discussion. 39 +The goal of our discussion is to. 26 +We have concluded that. 19 +Thank you once more for your help in this matter. 39 +I look forward to seeing you soon. 27 +I'm looking forward to your reply. 27 +We hope that we may continue to rely on your valued custom. 47 +We look forward to a successful working relationship in the future. 56 +Please advise as necessary. 23 +I would appreciate your immediate attention to this matter. 50 +If i can be of assistance, please do not hesitate to contact me. 51 +If you require any further information, feel free to contact me. 53 +If you require any further information, let me know. 43 +Please feel free to contact me if you need any further information. 55 +I hope the above is useful to you. 26 +Should you need any further information, please do not hesitate to contact me. 65 +Please contact me if there are any problems. 36 +Let me know if you need anything else. 30 +Drop me a line if i can do anything else for you. 37 +What's your opinion of? 18 +You're asking the wrong person. 25 +It doesn't affect me. 16 +That's an interesting question. 26 +That's all from me. 14 +I think you get the idea. 19 +I think i've made my point. 20 +And so on. 7 +Thank you for listening. 20 +Thank you for your kind attention. 28 +Thank you very much for your attention. 32 +Thanks again for. 14 +Thanks for your time. 17 +I need to hand over to my colleague. 28 +I seem to have run out of time. 23 +I think i've covered everything. 26 +I'm afraid i've already overrun my allotted time, so. 42 +I'm sure you are all ready for lunch, so. 31 +I've already gone on for too long, so. 29 +Let's leave it there. 16 +That brings me to the end of my presentation. 36 +That is the end of my presentation. 28 +That's about it. 12 +I got it. thank you. 14 +Ah, i see. thanks for clarifying. 26 +Now i understand. thanks a lot. 24 +You're the best. 12 +I'm humbled and grateful. 20 +You knocked me off my feet! 21 +My heart is still smiling. 21 +Your thoughtfulness is a gift i will always treasure. 44 +Sometimes the simplest things mean the most. 37 +The banana bread was fabulous. you made my day. 37 +I'm touched beyond words. 20 +Many thanks. 10 +It's very kind of you. 16 +Are you sure? 10 +Are you sure about it? 17 +Are you certain about it? 20 +Do you think it is true? 18 +Do you think so? 12 +How sure are you? 13 +Yes, i am certain. 14 +I have no doubt about it. 19 +I'm sure about it. 13 +I don't think there can be any doubt about. 33 +I'm positive. 10 +I'm quite sure about it. 18 +I'm no doubt about it. 16 +I'm absolutely certain that. 23 +I'm not sure about it. 16 +I doubt it. 8 +I'm not really sure about. 20 +I don't know for sure. 16 +It's very unlikely. 15 +I have my own doubts. 16 +I don't believe this is true. 22 +There's some doubt in my mind that. 27 +I'm not a hundred percent sure. 24 +I don't know yet. 12 +Can i add something here. 20 +Is it ok if i jump in for a moment. 25 +If i may interrupt. 15 +Can i throw my two cents in. 21 +Do you mind if i add something. 24 +Umm, well not really. 17 +Excuse me, but in my opinion. 23 +Are you telling that. 17 +Excuse me for a second, but. 22 +May i say something here. 20 +Sorry to cut you off, but. 20 +Well, that reminds me that. 22 +So, you're telling me. 17 +Well, if that is the case. 20 +Wait a minute. 11 +I see what you are getting at, but. 27 +I agree up to a point, but. 20 +You could say that, however. 23 +That's out of question. 18 +Well, i don't quite agree with you. 27 +I find that very difficult to accept. 30 +There is no way i could agree with that. 31 +No, i'm not sure about that because. 28 +I am shraa. 8 +I come from maharashtra. 20 +There are seven people in my family. 29 +I'm 30 now. 7 +I'm a student at college. 19 +Where were you born? 16 +Do you have any siblings? 20 +This is one of the most beautiful places i have been visited. 49 +I can relax there. 14 +In my free time, i like to watch a movie. 31 +I can express myself and communicate in english. 40 +I have a husband. 13 +I'm not ready for a serious relationship. 33 +I'm in a relationship. 17 +I'm a happily married man. 20 +I haven't found what i'm looking for. 28 +I'm still looking for one. 20 +My school is famous. 16 +I aim to become a doctor. 19 +I get up early at 5 a.m. 16 +I like to play cricket daily. 23 +I have the habit of saving money. 26 +I am a vegetarian. 14 +I won't watch t.v. during examinations. 30 +Our school is the best in the city. 27 +Likewise. 8 +Hello, everyone my self shraa. 25 +Hey raj, meet shraa he is our team leader. 33 +Shraa, raj is a new employee in the office. 34 +He is from gujarat. 15 +May i know your good name, please? 27 +What is your good name? 18 +This is shraa before you. 20 +What's your first name? 18 +What's your middle name? 19 +What's your last name? 17 +My last name is shraa. 17 +I am shraa, i have been working here since 2005. 38 +What's your opinion on? 18 +Oh! after a long time. 16 +Glad to see you. 12 +What a pleasant surprise. 21 +Good to see you here. 16 +Good to have you. 13 +Nice to see you after a long time. 26 +Good to see you after a long time. 26 +It's my pleasure meeting you. 23 +Finally, you are here. 18 +It's amazing meeting you. 20 +Please have a seat. 15 +How was your journey? 17 +How was your flight? 16 +Welcome to my place. 16 +Welcome to our place. 17 +You can stay as much as you want. 25 +I was excited to see you. 19 +I was excited to meet you. 20 +Quickly come inside. 17 +You surprised me. 14 +I'm delighted. 11 +You surprised us. 14 +You delighted us. 14 +Come soon. 8 +What will you have? 15 +Do you want some tea? 16 +Do you want some coffee? 19 +I'll make a tea. 11 +I'll make a coffee. 14 +Give me your luggage. 17 +Keep that heavy luggage aside. 25 +Wanna take bath? 13 +Long time no see. 13 +You are becoming below the moon. 26 +Take your seat. 12 +Have your seat. 12 +All well at home? 13 +How things are going on? 19 +How is your life going on? 20 +What are you doing now a day? 22 +What would you like to take? 22 +Anything will do. 14 +You will have to take to something. 28 +You haven't taken anything. 22 +I'm sorry for being late. i missed the train. 34 +I'm sorry. i'll check with the kitchen right now. 37 +It's my mistake. 12 +I apologize for disrupting your dinner. 33 +I apologize for the delay in sending this. 34 +He will never apologize, nor explain. 31 +I apologize to my sister. 20 +I apologize for the error. 21 +You have nothing to apologize for. 28 +You're right! i was wrong about that one. sorry. 36 +It's my fault, dad. 14 +Oh! i'm sorry about that. i'll take care of it. 33 +I apologize for bothering you. 25 +I must apologize to dulce. 21 +I apologize at the outset for my judgments. 35 +I'm sorry for the inconvenience. how can i help? 37 +Well, i'm sorry you're upset. 22 +I'm sorry about the broken vase. 25 +Please forgive me, ms. stone. i made a mistake. 36 +I apologize if i am being too direct. 29 +I'm sorry i forgot your birthday. can you forgive me? 41 +I'm sorry. 7 +Sorry, jim. can i call you back in a few hours? 35 +I'm so sorry, ned. we have to let you go. 29 +Could i ask who's calling, please? 27 +May i speak to mr. smith? 18 +I just wanted to ask if you need any more articles. 40 +I think he's into me. i'm kind of into him too. 33 +Our relationship is strictly platonic. 33 +He asked me out. 12 +We've hooked up. 12 +We're seeing each other. it's nothing serious, though. 43 +We're dating. 10 +This is my boyfriend. 17 +This is my girlfriend. 18 +Scott and i just got engaged! 23 +I'm happily married, with two kids, a boy, and a girl. 42 +I am through with him! 17 +My wife and i are separated. 22 +We're getting divorced. 19 +He and i are divorced. 17 +She is widowed. 12 +Do you understand what i mean? 24 +Are we on the same page? 18 +Am i being clear? 13 +Is this clear? 11 +Get it? 5 +Got it? 5 +I was clear? 9 +Please tell me what you heard? 24 +What message did you hear? 21 +I'll have a hamburger, please. 24 +Sorry, i am a bit busy right now. let me know when you're available. 52 +I have a few concerns. 17 +To be honest, this needs some improvement. 35 +I'd prefer to use different colors in this design. 40 +I would like a single room for saturday. 32 +Can you tell me the way to the post office, please? 40 +Excuse me, do you know what platform the london train goes from? 52 +Would you give me a coffee, please? 28 +Could you step out of the room for a moment? 34 +May i borrow your pen for a moment? 27 +Could you send me those documents? 28 +What did you say your name was? 24 +I wondered if you had time to meet tomorrow. 35 +I wanted to ask a question about the agenda. 35 +I thought you might like some help with the deadline. 43 +That estimate is a bit high, don't you think? 35 +Shouldn't we consider how the client might respond? 42 +I would love to but i have to work late that night. 39 +Unfortunately, he isn't available. 29 +I'm afraid we can't change the date of the meeting next week. 47 +I'm sorry to say that your proposal has not been approved. 46 +With respect, i have to disagree with you. 34 +I'm unable to meet you tomorrow. i'm sorry. 32 +Let's talk about that later. 22 +Thanks! you're awesome for thinking of me. 33 +Thanks a bunch! i need an extra dose of caffeine right now! 46 +What a thoughtful gift. i appreciate this! 34 +I don't know what to say. thank you. 26 +That's very kind of you. thank you. 26 +I can't thank you enough. i need a night off. 33 +I'm so thankful for friends like you. 29 +All i can say is thanks. 18 +I'm so grateful. 12 +Hats off to you. 12 +I'll pay you back. 13 +I'll get you back. 13 +Thanks for coming to my party. 24 +I'm grateful for your time. 21 +I'm thankful for your friendship. 27 +I'm truly grateful that you believed in this project. 43 +I feel blessed to have such great coworkers. 36 +I don't even have the words to thank you. 31 +You have my deepest gratitude. 25 +You have my utmost respect. 22 +Nearly all the riders were young, good looking and in fantastic shape. 58 +The school is considered excellent. 30 +That's remarkable. 15 +Good grades! 10 +That looks awesome! 16 +Kudos on the great work! 19 +You look great. 12 +You look phenomenal. 17 +The dress looks stunning. 21 +What a lovely necklace! 19 +I like your shirt-where did you get it? 30 +I love your new shoes. 17 +You look very good in that suit. 25 +This tie looks nice on you. 21 +That color looks great on you. 24 +You look very handsome. 19 +You're looking very beautiful today. 30 +I like your new haircut. 19 +You have a lovely voice. 19 +Wow, you look hot! 14 +Cool glasses, totally suit you. 26 +I love your haircut. it makes you look like a movie star. 44 +Wow! you're great at delivering a pep talk! 33 +You can argue. that was an amazing debate! 33 +You're an awesome dancer. 20 +It's a mesmerizing performance. keep it up. 34 +You sure can play table tennis. great skills! 36 +I love the way you play guitar. 24 +You have some special talent. 24 +Nice car! is it yours? 16 +Your camera is superb. that's nice! 27 +You have a lovely home, jack. 23 +I love what you have done with the place. 32 +Where did you get that lovely table? 29 +I love the decor. did you do it yourself? 31 +The dish is delicious. 18 +This soup is very tasty. 19 +Great pasta! it's finger-licking good. 30 +Did you make this from scratch? 25 +You've got to give me the recipe for this chicken dish! 43 +The cherry pie is out of this world. 28 +This is the best sandwich i ever had. 29 +That was delicious. my compliments to the chef! 38 +She's darn cute. 12 +What a cute and cuddly baby. 22 +Oh, what an adorable face! 21 +Your children are very well-behaved. 30 +Your daughter is a smart cookie. 26 +She's a well-mannered kid. 20 +I happened to hear about your health. 30 +If you want to talk, i'm here to listen. 30 +I heard about your diagnosis. 24 +I hope i'm not overstepping by mentioning it. 36 +I just wanted to let you know i'm here to help your family with anything at all. 62 +How are you feeling? 16 +If there's anything i can do for you, let me know. i'm here for you. 50 +I'm going to keep bugging you. 23 +Just give me my marching order. 25 +You are in my prayer. 16 +I wish you a quick recovery. 22 +What's your point. 14 +Explain me. 9 +There is no point in the discussion. 29 +Are you getting my point? 20 +Don't make an issue. 15 +I don't know about that. 18 +Let me talk. 9 +Let me speak. 10 +It's irrelevant. 13 +Don't go out off the track. 20 +Make yourself clear. 17 +My boss and i are not on the same page. 29 +You got the wrong end of the stick. 27 +We must have got our wires crossed! 28 +I can't make heads or tails of this. 27 +I seem to have lost the thread of what you were saying. 43 +It beats me why anyone would shout. 28 +Please don't muddy the waters by telling me. 35 +I have no clue about what to prepare. 29 +I'm not sure he'll win, but anything's possible. 37 +In all probability, they will lose their jobs. 38 +The chances are we'll have moved house by then. 37 +It's a safe bet that tom will discover our secret. 39 +I'm sure. 6 +I do not doubt that. 15 +I hate to interrupt but i wanted to let you know i have to leave the meeting early. 65 +I'm so sorry to interrupt but it's urgent. 32 +I'm so sorry for interrupting but i'd like to make sure i understood you correctly. 66 +May i add something quickly? 23 +I'm sorry to interrupt but i have to be somewhere in an hour. 47 +Sorry for interrupting, but i want to make sure i understand. 50 +Sorry to interrupt, but you're needed in the lobby to sign for a package. 58 +Just a moment, i'd like to give you more information. 42 +Before you move on, i'd like to say something. 36 +Sorry, could you explain that a little more? 36 +Could you clarify that? 19 +Do you mean that. 13 +Would you tell us a little bit more about that? 37 +Would you mind explaining that a little more? 37 +You always have something negative too. 33 +You are hurting my feeling. 22 +Why are you telling me this. 22 +Do you enjoy being rude? 19 +I appreciate your perspective. 26 +I think we should stop this conversation now. 37 +That's not a very productive comment, is it? 35 +I'm sorry but i'm not sure that i understand. 34 +Sorry, i'm not sure that i know what you mean. 35 +Sorry but i don't quite follow you. 27 +I got it. thank you! 14 +The family left india with genuine regret. 35 +The mood became one of gloom and despondency. 37 +I have dissatisfaction with this new dress. 36 +Their growing disenchantment with the leadership. 43 +Bad weather had resulted in crop failures. 35 +I was a bit of a washout at school. 26 +The lockdown period is a bummer day for me. 34 +I wish i had a better job. 19 +I wish i had been hired for that job. 28 +If only i understood math. 21 +If only i had asked her to marry me. 27 +That's so disappointing! 20 +We had high hopes for her. 20 +You should have faith in me. 22 +You should believe me. 18 +Have confidence in me. 18 +You gotta trust me. 15 +I need you to trust me. 17 +You must believe me. 16 +I swear that's the truth. 19 +Don't you believe me? 16 +You know, i don't fake. 17 +You know that i don't lie. 19 +Will i do this to you? 16 +I think you don't know me, isn't it? 26 +You know i'm trustworthy. 20 +You should leave that on me. 22 +You know, i don't back off. 20 +You know, i don't give up. 19 +I will not let you down. 18 +I promise to tell the truth. 22 +I commit to give work on time. 23 +I promise i will finish the presentation today. 39 +Take my words i will not let the information out. 39 +I want what you promised. 20 +I promise to come on time. 20 +I promise if you trust me, we will finish this project on time. 50 +I promise i will call you. 20 +As promised, the minister got all the roads constructed again. 52 +I promise to buy you a gift. 21 +You promised you would stay. 23 +Promise me you will come home straight after your party. 46 +I promise to take you along. 22 +They both vowed to be together forever. 32 +I promise to be with you all our life. 29 +He promised his mother that he will get good marks in the exam. 50 +Surely, i will come to your birthday party. 35 +I give you my word, i will write a book on your love story. 45 +I promise to visit you next weekend. 29 +Promise me that you will keep my secret safe. 36 +Promise me, you will never drink. 27 +I swear that i telling you the truth. 29 +I promise to let go of the things that are holding me back. 46 +The minister pledged to make the city clean. 36 +I promised god that i would never drink again. 37 +I swear! i didn't tear the notebook. 27 +I'm a foodie. 9 +I want some cookies. 16 +Do you like pizza? 14 +Give me a slice of pizza. 19 +I love chicken. 12 +I don't like veg. 12 +Have some rice. 12 +Who ate the mangoes. 16 +It's a chocolate cake. 17 +I like pineapple pastry. 20 +Let's have lunch. 13 +What are you munching? 18 +Try a bite. 8 +Give me a bite. 11 +Have one bite. 11 +Do you like pork? 13 +It's sweet at the taste. 18 +It's sour at the taste. 17 +I don't eat sweets. 14 +Let's have our meal. 15 +What's there for lunch? 18 +What's there for dinner? 19 +Finish your lunch. 15 +Let's go out for dinner. 18 +Let's meet for dinner. 17 +Let's go out for lunch. 17 +Give me some pickle. 16 +I don't eat dairy products. 21 +I like italian food. 16 +I like thai food. 13 +I like chinese. 12 +Overpriced for more is expensive than it should be. 42 +It was quite reasonable. 20 +It was good value for money. 22 +She usually copies answers from her mate. 34 +Studying hard can get you to pass with flying colors. 43 +When dave is programming, he often gets lost in thought. 46 +I'm in ninth grade! what about you? 26 +What's the homework for today? 24 +I come by the school bus. 19 +Is there anyone in class without a textbook? 36 +Stop talking in class and pay attention! 33 +Can someone come to the board and solve this equation? 44 +Do you know these companies? 23 +Do you run or work for a small business or startup? 40 +To get my small business off the ground. 32 +I love working with our german suppliers. 34 +The net income after all taxes has been deducted. 40 +We manufacture car engines. 23 +We supply paper products. 21 +We are the market leaders in three countries. 37 +The sky is everywhere, it begins at your feet. 37 +Stop feeling sorry for yourself and you will be happy. 44 +I've got nothing to do today but smile. 30 +Laugh now, cry later. 17 +Cheer up, my dear. after every storm comes the sun. happiness is waiting for you ahead. 69 +Once they move, they're gone. once you move, life starts over again. 54 +It's better to have loved and lost than never to have loved at all. 52 +What doesn't kill you makes you stronger. 33 +My entire life can be described in one sentence it didn't go as planned, and that's okay. 70 +No matter how you feel, get up, dress up, show up, and never give up. 54 +Life is not a problem to be solved but a gift to be enjoyed. 46 +There's something in you that the world needs. 37 +Be positive. stay happy and don't let the negativity of the world get you down. 62 +Don't deny your feelings. they alone are what guide you through life. 55 +You're braver than you believe and stronger than you seem, and smarter than you think. 70 +There will always be hope as long as you believe, as long as you trust that tomorrow is there. 75 +Chin up buttercup, everything's gonna be ok. 36 +Nothing is permanent in this wicked world, not even our troubles. 54 +Don't look back! you're not going that way. 32 +If you do not hope, you will not find what is beyond your hopes. 50 +Don't be sad because of people. they will all die. 38 +You'll never find a rainbow if you're looking down. 40 +Be of good cheer. the future is as bright as your faith. 43 +Go as far as you can see and you will see further. 38 +If you are still breathing maybe it is not such a bad day after all. 53 +You alone are enough. you have nothing to prove to anybody. 47 +Give it a try. 10 +It's worth a shot. 13 +What are you waiting for? 20 +What do you have to lose? 19 +You might as well. 14 +Just do it. 8 +There you go! 10 +Keep up the good work. 17 +I'm so proud of you! 14 +Don't give up. 10 +Keep pushing. 11 +Keep fighting! 12 +Never say die'. 11 +Come on! you can do it!. 16 +I'll support you either way. 22 +I'm behind you 100%. 14 +It's totally up to you. 17 +It's your call. 11 +Follow your dreams. 16 +Reach for the stars. 16 +Do the impossible. 15 +The sky is the limit. 16 +Please excuse me, i must go. 22 +Excuse me, i have to go in meeting. 27 +I am sorry, but have to make a call. 27 +I am sorry, i can't stay more please. 28 +Please excuse me, i must take this call. 32 +I am sorry, i have to go, it is urgent. 29 +Excuse me, but i have to uttend tosomething. 36 +Anyway, it was nice to meet you. 25 +I would love to talk more, when can we meet again? 39 +I enjoyed our conversation. 23 +It is pleasure to talk to you. 23 +It was nice to talking to you. 23 +Let's talk some more in detail next week. 32 +I am gladwe got to talk. 18 +I will catch up with you later, i have to go right now. 42 +Excuse me for leaving early. 23 +Excuse me, i have to go right now. 26 +I am sorry to cut you off, but i actually gotta run. 40 +Sorry,but i am afraid i need to go. 27 +Anyway, i will talk to you more later. 30 +I am 25 years old. 13 +I am 25. 5 +My friend has two sons aged 8 and 10. 28 +My neighbor has a four-month-old baby. 30 +My uncle has a twenty-year-old daughter. 32 +My house is 40 years old. 19 +My twenty-year-old car still runs smoothly. 35 +Most students in my class are above the age of twenty. 43 +Most students in my class are below the age of 16. 39 +John is about 50. 13 +He must be under 18. 15 +I'm doing my homework this evening. 28 +I'm starting university in september. 31 +Sally is meeting john at seven o'clock this evening. 42 +I'm going to clean them later. 23 +Am going to play tennis tomorrow. 27 +You are going to see your cousin next week. 34 +She is going to get married in september. 33 +We are going to have a party this weekend. 33 +I am not going to leave my job. 23 +You aren't going to visit your cousin this week. 38 +He isn't going to get married. 23 +We aren't going to move house. 23 +They aren't going to study at university. 33 +I'm visiting our new office in london this afternoon. 43 +I think i'll stay in tonight. 22 +I'll buy some bread when i go out. 25 +I may take it. 10 +I'd like to buy it. 13 +I'm going to wear my black dress tonight. 32 +We're having a party next saturday. would you like to come? 46 +I was wondering wether yoou would stay for dinner tonight. 48 +I am going to my cousin's wedding party next saturday, would you like to come too? 65 +Come along! 9 +You must pay us a visit. 18 +I will give you a call and fix something. 32 +We must stay in touch. 17 +You must come over. 15 +Why don't you come? 14 +Will you come too? 14 +Are you up for a movie tonight? 24 +Want to join me? 12 +What days are you usually free? want to hangout sometime? 46 +I would be delighted if you come over my birthday party. 45 +Would you like to grab a coffee next week? 33 +Would you like to come round for a meal? 31 +Do you want to go to the beach? 23 +Do you want to see a movie? 20 +Do you want to go puppy shopping? 26 +Do you want to make a sand castle? 26 +Do you want to get lunch on saturday? 29 +Would you like to dance? 19 +Would you like to have lunch today? 28 +Would you like to come shopping with me next week? 40 +Do you want another cup of coffee? 27 +Do you want to come to the party on sunday? 33 +Come to the restaurant with us tonight. 32 +Sit down, have a cake. 17 +Come to the museum, bring your friends. 32 +Why don't you come to shimla with us next week? 36 +Why don't you come to the concert with us tonight? 39 +Why don't you join us for a drink after work? 34 +You must join us for a drink sometime. 30 +You must visit us in london in the new year. 34 +You'll have to have a lunch with us soon. 31 +Will you come with me for a movie? 26 +Come, let us dance. 15 +Will you spend all day with me tomorrow? 32 +Thanks for your invitation for dinner. 32 +I'm sorry i can't accept your invitation because i'm busy tomorrow. 53 +You are invited to dinner. 21 +Will you please come over here? 25 +Please have somthing cold. 22 +Many thanks for your kind invitation. 31 +You are cordially invited. 22 +Come, let's go for coffee. 20 +Would you like to join us for lunch? 28 +Come in please. 12 +How about eating pizza? 19 +Have you thought about buying a new computer? 37 +What about opening your present now? 30 +How about starting a book club? 25 +How about some lunch? 17 +Why not take a break in the south-west? 30 +Let's make a curry tonight. 21 +Let's not argue about this. 21 +Let's not spend all night talking about my problems. 42 +Couldn't you use the one in your bedroom? 32 +Couldn't you get up early in the morning to finish it? 42 +You could wear your red dress and your black shoes. 41 +Can't you finish your homework before going? 36 +Oh, dear. can't he manage with the one you have? 36 +We could always use butter. 22 +Shall we go to chez philip? 21 +Can't you go? 9 +Can't rachel do it? 14 +Couldn't you get a part-time weekend job? 32 +What times are you open? 19 +Are you open on? 12 +What time do you close? 18 +What time do you close today? 23 +What time do you open tomorrow? 25 +Are you in the queue? 16 +Next, please! 11 +I'll pay by card. 12 +Would you be able to gift wrap it for me? 31 +Would you like a bag? 16 +Can i help you? 11 +I'm just browsing, thanks. 21 +It doesn't work. 12 +I'd like to change this for a different size. 35 +How much does this cost? 19 +It doesn't fit. 11 +How much is that in the window? 24 +That's cheap. 10 +That's good value. 14 +Have you got the receipt? 20 +Do you have any postcards? 21 +Sorry, we don't sell them. 20 +Sorry, we don't have any left. 23 +I'm looking for shampoo. 19 +Could you tell me where the dish wash bar is? 35 +Do you have this item in stock? 24 +Do you know anywhere else i could try? 30 +I'll take it. 9 +It comes with a one year guarantee. 28 +Do you deliver? 12 +I'll take this. 11 +Would you like anything else? 24 +Enter your pin. 12 +Remove your card. 14 +Shoplifters will be prosecuted. 27 +Buy 1 get 1 half price. 17 +I am sorry, i can't hear you. 21 +I am sorry, your voice is breaking. 28 +I'm sorry, you are breaking. 22 +I'm sorry, your voice is jarring. 26 +I am sorry, your voice isechoing. 27 +I can hear you, but in bits and pieces. 30 +I can hear you, on and off. 20 +I can't hear you at all, let me call you back. 34 +Can you hear me loud and clear? 24 +Am i audible to you? 15 +Is my voice audible? 16 +Is my voice too low? 15 +Is my voice clear enough? 20 +Yes, your voice is audible. 22 +Yes, your voice is clear, i can hear you. 32 +Sorry, your voice is to low. 22 +Can you be a bit loud? 16 +I am barely managing to hear you. 26 +I can hear you in pieces. 19 +Hey you have to be quick, my battery is about to die. 41 +Before we stare speaking,i might lose you, as i am on 3% battery. 51 +Can i call you after charging my phone? 31 +My bettery is about to drain, could you text me? 38 +Let me grab a charger and i will call you back. 36 +I am tied up at the moment, can i call you in hours time? 43 +If it is not urgent, can i buzz you latter? 33 +I am about to start driving i won't be able to long chat. 43 +Can i reach home and call you? 23 +Can i get dhaval with us so that we can save time and have a clear discussion? 61 +Wait, let me rope in anjali in to this call. 34 +I am patching you in.. 16 +Can both of you hear me clearly? 25 +Am i audible to both of you? 21 +Take care let's be in touch. 21 +This is renu speeking, good morning. 30 +Can i know who at other side? 22 +Could i speak to aarohi? 19 +I am trying to contact aarohi. 24 +I need some information about project. 32 +I am calling on behalf of. 20 +Raj speaking, how may i help you? 26 +May i askwho is calling please? 25 +Could you hold on a moment please? 27 +Could you hold the line please? 25 +I will get backto you in a moment. 26 +I am sorry, he is not here at this time. 30 +Have you any massage for him? 23 +Could you speak slowly. 19 +I don't get you, could you repeat please? 32 +Could you spell your name for me? 26 +Well, i guess,i better get going.talk to you soon. 40 +Thanks for calling, bye for now. 26 +I have another call coming through, i need to hang up. 43 +Great, what about you? 18 +I am good, thanks. 14 +Please carry on with plan, i am exhausted. 34 +I am at the end of my game, i can't come to the party. 39 +I am completely pooped out, will you please give me a cup of tea? 51 +I am standing in a que for last two hours, i'm totly flaxed out. 49 +I'm studding for all night i am completely worn out. 41 +I can not drink any more, i am beat. 27 +I am beat so going to bed. 19 +I am going to stay in bed, i am dogtired. 31 +I can not go out, i am bone tired. 25 +Can you please call me tomorrow? i am switching off. 41 +Sorry, i can't complete this project i am ready to crash. 45 +I can't see straight, i am ready to crash. 32 +Just dragging! 12 +I can't take a glass of water. i am just dragging. 37 +No one is around! 13 +I can't tell the differnce between tea and coffee. 40 +I won't always be around! 19 +I think i need a vacation, i feel worn out. 33 +You look wiped out! 15 +I can not go out tonight, i am drained. 30 +I am fried from last night, how could we dance for 5 hours straight? 54 +What a day! i am tired i can't feel my legs. 31 +I work for whole day, burnt out. 25 +I am spent because of whole night work. 31 +I was up all night preparing for presentation, i am dead on my feet. 54 +Now ican't do any more work, i am wrecked. 32 +I am knackered! 12 +I can't do anymore, i am whacked! 25 +Beauty is but skin-deep. 19 +He tried hard but failed. 20 +It was nothing but a joke. 20 +Excuse me, but i feel sick. 21 +Wood floats, but iron sinks. 23 +I am a student, but he isn't. 21 +He's rich, but he's not happy. 22 +The boy laughed cheerfully and jumped out. 35 +He laughed at that, and his laugh was merry and frank. 43 +He parked the truck in front of the house and headed down the hill. 53 +They have two fertilized eggs and they want final consent. 48 +She stopped and gazed up at his face. 29 +Is it here yet? 11 +Are we done yet? 12 +Are we safe yet? 12 +Don't start yet. 12 +Has he come yet? 12 +I can't die yet. 11 +Here or to go? 10 +Just say yes or no. 14 +Stop or i'll shoot. 14 +Take her to the or. 14 +Should i stay or go? 15 +Because he's sick, he can't come. 25 +He couldn't come because he was sick. 29 +I couldn't go out because of the rain. 29 +I couldn't go out because of the snow. 29 +I am hungry because i did not eat lunch. 31 +He can't see nor hear. 16 +I neither drink nor smoke. 21 +I neither smoke nor drink. 21 +It's neither good nor bad. 20 +It is neither good nor bad. 21 +I don't know, nor do i care. 20 +He neither smokes nor drinks. 24 +I'll be there, although i may be late. 29 +Although it was raining, i went out. 29 +Although tom is sick, he's swimming. 29 +Although he is very old, he is strong. 30 +Although the sun was out, it was cold. 30 +Although he is rich he works very hard. 31 +I've been up since 230. 17 +I haven't seen tom since. 19 +I've been here since 230. 19 +I've been here since july. 20 +I've been here since monday. 22 +Since it rained, i didn't go. 22 +Don't move unless i tell you. 22 +He never speaks unless spoken to. 27 +You'll never know unless you try. 26 +He did not speak unless spoken to. 27 +I won't go unless the rain stops. 25 +Tom never speaks unless spoken to. 28 +Don't speak unless you're spoken to. 28 +I'm going out for a while. 19 +I fell asleep while reading. 23 +Be quiet while i am speaking. 23 +He came back home a while ago. 23 +May i take a rest for a while? 22 +I was told to wait for a while. 23 +The car not only is economical but also feels good to drive. 48 +I identified with denzel washington not only as an actor but as a person. 59 +Not only was it raining all day at the wedding but also the band was late. 58 +I like not only cheesecake but also cake. 33 +They visited not only germany but also spanish. 39 +Not only but also i am a teacher. 25 +He's not only intelligent but also funny. 33 +When writing, ann considers not only her topic but also her audience. 57 +Everywhere she goes, she brings a camera. 34 +Because it was exceptionally cold. 29 +Unless you run fast, you will miss the bus. 34 +Since i'll be working late, i'll eat downtown. 36 +If you pay your bills on time, you can have a good credit score. 50 +Once they saw the car coming, the birds flew away from the road. 51 +As we bought the tickets, the overture was beginning. 44 +Before we go on vacation, we must make reservations. 43 +Now that everyone has left the party, we need to start cleaning. 52 +She walked like an old lady. 22 +She walked as if she were heading to the gallows. 39 +Because he has a college degree, he got a great job. 41 +When the storm started, she was at the store. 36 +Bob wore the coat that i gave him. 26 +Whether you like it or not, you have to go. 33 +The boy, although he is very bright, failed math. 40 +She enjoyed the party more than he did. 31 +Wherever there is music, people will dance. 36 +You can drop by for a visit where we're staying for the summer. 49 +After the chores are done, we will eat some ice cream. 43 +When the clock strikes midnight, she has to leave. 41 +She passed the course because she worked hard. 38 +Since he has long hair, he wears a ponytail. 35 +So that he would not ruin the carpet, he took off his shoes. 47 +He ate vegetables so that he could stay healthy. 39 +If you save some money, you can buy a new game. 36 +Unless you hurry, you will be late for school. 37 +Even though you are 13, you can't go to that movie. 39 +Although you gave it your best effort, you did not win the match. 52 +I totally agree. 13 +He was definitely missing something. 31 +Absolutely. precisely. 19 +I see your point. 13 +I see what you are getting at. 23 +I'd go along with that view to a point. 29 +Sure, that's one way of looking at it. 29 +I have to side with you on this one. 27 +I see exactly what you mean. 22 +You're right, that's a good point. 26 +Actually, i think you're right. 25 +You have my full agreement. 22 +I second that. 11 +Ok, that's convincing. 18 +I take your word on it. 17 +I wish my dad would let me go to the party. 32 +Joseph's mom made him take out the trash. 32 +Mom let my brother drive the car. 26 +Why did you let him swear at you like that? 33 +He made his son clean his room. 24 +I had peter fix my car. 17 +We couldn't get her to sign the agreement. 33 +I'll have hudson show you to your room. 30 +We couldn't get him to sign the agreement. 33 +I don't let my kids watch violent movies. 32 +I don't let my toddler play at the dining table. 37 +She doesn't let us go on a trip alone. 28 +They won't let her see john again. 26 +I let all these unfortunate events happen. 35 +Don't let them get to you. 19 +My teacher made me read seven novels in one month. 40 +They made him clean the entire house by himself. 39 +The leader had his assistant arrange the meetings for his colleagues. 58 +I'll have my business partner send you an email regarding the proposal. 58 +I'm going to have my nails done later. 29 +I need to have my clogged sink fixed soon. 33 +I'm going to get my nails done later. 28 +I need to get my clogged sink fixed soon. 32 +My friends got me to wear a summer dress that is not my style. 48 +The couple got a wedding coordinator to take care of all their wedding needs. 63 +They helped her clean her house. 26 +They helped her to clean her house. 28 +Sally helps me do my homework every night. 34 +Sally helps me to do my homework every night. 36 +If you want. 9 +If you love me, let me go! 19 +If i am late for school. 18 +If you don't do your homework. 23 +F you are happy, i am happy. 21 +If i hadn't eaten so much candy. 24 +He cleans if i cook. 15 +I wouldn't be here if i had never met you. 31 +You can't be shy if you want to make friends. 34 +If opportunity knocks, open the door. 31 +If a certain condition is true, then a particular result happens. 54 +I would travel around the world if i won the lottery. 42 +When the water reaches 100 degrees, it boils. 37 +If you don't brush your teeth, you get cavities. 38 +When people smoke cigarettes, their health suffers. 44 +If you rest, you will feel better. 27 +If you set your mind to a goal, you'll eventually achieve it. 48 +If i inherited a billion dollars, i would travel to the moon. 49 +If i owned a zoo, i might let people interact with the animals more. 54 +If you had told me you needed a ride, i would have left earlier. 50 +If i had cleaned the house, i could have gone to the movies. 47 +If aspirin will ease my headache, i will take a couple of tonight. 53 +If i were to be sick, i would miss another day of work. 42 +If she were to be late again, she would have to have a conference with the manager. 66 +If the rent were to have been a penny more, they would not have been able to pay it. 65 +If i'd had time, i would have cleaned the house. 37 +I would have cleaned the house if i'd had time. 36 +What a big dog! 11 +What a concept! 12 +What a thought! 12 +What a pleasant surprise! 21 +What a talented girl! 17 +How cute she is! 12 +How awful it was! 13 +How annoying it is! 15 +How exciting that was! 18 +How touching this is! 17 +Wow! don't you look nice. 18 +Wow! i feel like royalty. 19 +Wow! how far under? 14 +"Wow!"" she finally said, and that was the end of that discussion." 50 +"""wow!"" was all i could muster." 21 +Wow! not what i expected. 19 +Wow! that's wow! 11 +Wow! i like the sound of that. 22 +I need help! 9 +That's nice! 9 +How nice that is! 13 +Wow, very nice! 12 +Cookies are forbidden! 19 +Remember, be quiet! 16 +All this is true! 13 +Everything is perfect! 19 +I'm sure! 6 +Whoa! yes, that was it. 17 +What the whoa there. 16 +I looked down and said, whoa! 23 +Whoa! wait just a second here. 23 +Whoa now! you're not going to. 22 +Whoa! he was sent here to kill me. 25 +Whoa! you can't just walk out of here. 28 +"A whole bunch of tourists went, ""whoa!""." 30 +Hooray for me! anyway. 17 +And hooray! they didn't think about sealing the cooker. 44 +Hooray! no more work 'til monday! 25 +Hooray! it's the last day of school. 27 +Hooray! it's fish and chips! 21 +A desert holiday hooray! 20 +Ouch! you trod on my toe! 18 +Ouch! that was my toe you just trod on. 29 +Ouch! it hurts. 11 +Ouch! i hit my crazy bone! 19 +My head moves sideways too. ouch! 26 +Ouch! you hit my crazy bone. 21 +Bravo! a huge snake. 15 +It's a tremendous deal! 18 +He is tremendously handsome! 24 +Tom did a tremendous job! 20 +That's so tremendous! 17 +That's a tremendous performance! 27 +Bravo, rena! you're right, the students said. 36 +Dare to say you own the lagoon, palma bravo! 35 +It was fantastic! 14 +That's fantastic! 14 +You look fantastic! 16 +You did a fantastic job! 19 +That's so amazing of you! 19 +You danced amazing! 16 +"""i, um, don't know,"" she murmured then shook her head." 41 +"""um, no,"" she turned to make sure he wasn't talking to someone else." 52 +Pretty sure those are both in the um, mortal world, deidre said. 52 +"""um, yes,"" the death-dealer said." 25 +Um, after a while? 14 +Toni said he thinks i have some of the um, natural ability. 47 +Um, i guess you know how to call me if you need anything. 44 +"""i, um, just came to "" the teen's face lit up." 32 +Maybe because everything was um, mashed together. 42 +"""i, uh, i need to go,"" she said." 22 +And uh, her babies are okay? 22 +He uh, kinda died. 14 +Uh, ladies, i think you better take a look at this. 40 +I, uh, kinda need to talk to you, bossman, if you're cool with that. 53 +"""uh oh,"" darian whispered." 20 +I'm not, uh, restricted to either realm, darian said. 43 +I er nothing, sorry. 16 +The point is, er azure. 18 +I er i wouldn't mind them, but they've. 29 +Yes, er we bombed you back to the stone age. 34 +Er guess i never noticedforgot to look up. 34 +Open your mouth wide and say ah. 25 +Why has the train stopped? ah, now we're off again. 39 +Ah, here comes the bus at last! 24 +Ah! this is a waste of time! 20 +Have you seen my keys anywhere? ah, there they are. 40 +Ah well, better luck next time. 25 +It looks like an apple. 18 +We don't like violence. 18 +Would you like to come? 18 +Would you like to wait? 18 +You like it, don't you? 17 +You seem to like fruit. 18 +I'm okay. 6 +Are you okay? 10 +Are you okay. 10 +We'll be okay. 10 +I'm doing okay. 11 +Is monday okay? 12 +His mother was right. 17 +I'm tied up right now. 16 +I believe tom is right. 18 +I'll be back right away. 18 +I'll let you know if i hear something i think you need to know. 48 +Do you know something i don't? 23 +How did you know where i was working? 29 +Don't you know that? 15 +Son, you know the rules. 19 +He is an excellent horseman, you know. 31 +Do you know what they would want? 26 +I'm off duty, you know. 17 +He had to work even on sunday. 23 +I have to go even if it rains. 22 +Tom hasn't met mary even once. 23 +I don't even have time to read. 23 +She wouldn't even speak to him. 24 +I will go there even if it rains. 25 +She will come even if she is tired. 27 +The storm became even more violent. 29 +He's just arrived. 14 +He had just arrived. 16 +I'm just watching tv. 16 +Just don't forget this. 18 +Let me say this just once. 20 +I was just taking a shower. 21 +It's just your imagination. 22 +Tom seems bored. 13 +You seem upset. 12 +You seem happy. 12 +Tom seems to mean. 14 +Tom seems calm. 12 +Tom seems busy. 12 +He's selfish. 10 +It was cheap. 10 +That's stupid. 11 +It's really hot there. 17 +Do ghosts exist? 13 +He's really into soccer. 19 +I felt very happy. 14 +She was very busy. 14 +Bob was very happy. 15 +He is very careful. 15 +She is very pretty. 15 +He was very patient. 16 +His was a life of thieving and cheating. 32 +He's cheating on his wife. 20 +That's cheating in my book. 21 +He had been cheating the taxman for years. 34 +He is moderate in drinking. 22 +They had been fighting after a drinking bout. 37 +Howard and mick were drinking buddies. 32 +They have been drinking away for hours. 32 +Drinking lots of water is good for the complexion. 41 +Smoking is banned in the building. 28 +She's always fussing at me about my smoking. 35 +We don't tolerate smoking in the library. 33 +He sat swigging beer and smoking. 27 +We have been talking up the game. 26 +They are talking about elderly pursuits. 34 +Do you know who you're talking to? 26 +He was walking along the street. 26 +I saw her walking into a shop. 23 +We went fell walking last weekend. 28 +In doing we learn. 14 +What's the reason you're doing this? 28 +What is your purpose in doing that? 28 +Are you doing anything over the weekend? 33 +I will. they asked me how u were doing. 29 +'i'm going now,' she said, fastening her coat. 35 +Chris is going to work overseas. 26 +He stands a fair chance of going abroad. 32 +What are you trying to prove? 23 +He's trying to get a job. 18 +I just couldn't stop crying. 22 +His jokes amused the crying child. 28 +I could not help crying. 19 +The eggs were frying in the pan. 25 +The smell of frying nauseated her. 28 +She fried the eggs in a frying pan. 27 +The fish was frying. 16 +I often go swimming in summer. 24 +The swimming pool drains very slowly. 31 +I find swimming very therapeutic. 28 +We did a lot of cycling in france last year. 34 +He suffered a fatal heart attack while cycling. 39 +I prefer walking to cycling. 23 +She sprained her ankle playing squash. 32 +The playing field is a large oval. 27 +Boys are fond of playing football. 28 +He was bathing in the sun. 20 +Is the beach safe for bathing? 24 +Is the washing machine working now? 29 +I do the washing in our house. 23 +The washing machine agitates the clothes. 35 +He took to dancing like a duck to water. 31 +Her dancing has great subtlety. 26 +Singing along with recorded music. 29 +She is singing in the air. 20 +He was singing to the guitar. 23 +My hobbies include reading and painting. 34 +A child's vocabulary expands through reading. 38 +Are you any good at map reading? 25 +I can play football. 16 +Can i go out tonight? 16 +It may rain tomorrow. 17 +May i go to the bathroom? 19 +You must study today. 17 +He must be her brother. 18 +You shall pay on saturday. 21 +Shall i help you? 13 +I will give you a gift. 17 +I need to talk to her. 16 +You must turn in your assignment on time. 33 +He might be the love of my life. 24 +The doctor can see you now. 21 +The doctor ought to see you now. 25 +You do know how to sing! 18 +Thank you, i do sing. 16 +Thank you, i can sing. 17 +My keys must be in the car. 20 +It might rain tomorrow. 19 +That can't be peter's coat. it's too small. 31 +Can't swim. 8 +May i ask a question? 16 +Could i have some tea, please? 24 +Would you like some help? 20 From f349877e62ae1bec225156ab569ee9966fab9208 Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Mon, 31 May 2021 18:55:11 +0530 Subject: [PATCH 08/10] added sentences without special symbol --- backend/prompts/sentence_corpus.csv | 15206 +++++++++++++------------- 1 file changed, 7603 insertions(+), 7603 deletions(-) diff --git a/backend/prompts/sentence_corpus.csv b/backend/prompts/sentence_corpus.csv index d17c6f8..4c4342b 100644 --- a/backend/prompts/sentence_corpus.csv +++ b/backend/prompts/sentence_corpus.csv @@ -1,18 +1,18 @@ Good morning. 11 -Good afternoon! 13 +Good afternoon 13 Good evening. 11 Good night. 9 Sweet dreams. 11 Sleep tight. 10 -Hi there! 7 +Hi there 7 Please wait. 10 Quick meal. 9 -Let's meet. 8 -Help me! 6 -Thank you! 8 -Not know! 7 +Lets meet. 8 +Help me 6 +Thank you 8 +Not know 7 Begin to know. 11 -Hurry up! 7 +Hurry up 7 Catch this. 9 Come here. 8 Tom stood. 8 @@ -54,7 +54,7 @@ Happy thoughts. 13 Accept yourself. 14 Dream big. 8 Start living. 11 -Don't compare. 11 +Dont compare. 11 Just imagine. 11 Act justly. 9 Aim high. 7 @@ -68,8 +68,8 @@ Be honest. 8 Be spontaneous. 13 Be still. 7 Dance today. 10 -Don't panic. 9 -Don't stop. 8 +Dont panic. 9 +Dont stop. 8 Everything counts. 16 Explore magic. 12 Fairy dust. 9 @@ -102,7 +102,7 @@ Keep going. 9 Keep smiling. 11 Laugh today. 10 Laughter heals. 13 -Let's go. 6 +Lets go. 6 Limited edition. 14 Look up. 6 Look within. 10 @@ -113,7 +113,7 @@ No boundaries. 12 Not yet. 6 Notice things. 12 Oh, snap. 7 -Oh, really? 9 +Oh, really 9 Only believe. 11 Perfectly content. 16 Perfectly fabulous. 17 @@ -130,7 +130,7 @@ Stay true. 8 Stay tuned. 9 Take chances. 11 Thank you. 8 -Then when? 8 +Then when 8 Tidy up. 6 Think different. 14 Think first. 10 @@ -138,27 +138,27 @@ Think twice. 10 Treasure today. 13 Trust me. 7 Please try again. 14 -Wanna play? 9 -What if? 6 -Why not? 6 -Woo hoo! 6 +Wanna play 9 +What if 6 +Why not 6 +Woo hoo 6 You can. 6 You matter. 9 You sparkle. 10 -Well done! 8 -Oh god! 5 -My god! 5 -Of course! 8 -How joyful! 9 +Well done 8 +Oh god 5 +My god 5 +Of course 8 +How joyful 9 How sad. 6 -Good heavens! 11 +Good heavens 11 How terrible. 11 -How disgraceful! 14 -Done wonderfully! 15 -What nonsense! 12 -How tragic! 9 +How disgraceful 14 +Done wonderfully 15 +What nonsense 12 +How tragic 9 Flowers bloom. 12 -Get up! 5 +Get up 5 Child care. 9 Brought up. 9 Hang out. 7 @@ -167,8 +167,8 @@ Job fair. 7 Get dressed. 10 My treat. 7 Peel off. 7 -Oh, dear! 7 -Once more! 8 +Oh, dear 7 +Once more 8 Awesome one. 10 Caught up. 8 Take a road trip. 13 @@ -177,70 +177,70 @@ Back out. 7 Excuse me. 8 Mention not. 10 My pleasure. 10 -It's ok. 5 -That's enough. 11 +Its ok. 5 +Thats enough. 11 Get lost. 7 -Don't whisper. 11 -Don't laugh. 9 +Dont whisper. 11 +Dont laugh. 9 Be punctual. 10 Just kidding. 11 -By god's grace.! 11 +By gods grace. 11 You surprise me. 13 -Don't ask a question. 16 -Don't try it again. 14 +Dont ask a question. 16 +Dont try it again. 14 Creativity takes courage. 22 -Let's go anywhere. 14 +Lets go anywhere. 14 Just be cool. 10 Here we go. 8 Be kind today. 11 I am fabulous. 11 -Let's fly away. 11 +Lets fly away. 11 Hello sweetheart. 15 Never look back. 13 Never grow up. 11 Life is poetry. 12 -Let's be afraid. 12 +Lets be afraid. 12 See the good. 10 Make today amazing. 16 Let it be. 7 -Stop over-analyzing. 17 +Stop overanalyzing. 17 Make yourself proud. 17 -Don't overthink it. 15 +Dont overthink it. 15 Try new things. 12 Seize the day. 11 Good vibes only. 13 Aspire to inspire. 15 -I'll be there. 10 -Maybe you're right. 15 +Ill be there. 10 +Maybe youre right. 15 I trust you. 9 Got your back. 11 -How are you? 9 -Let's get high. 11 +How are you 9 +Lets get high. 11 I respect you. 11 Please forgive me. 15 Now or never. 10 I miss you. 8 Get enough sleep. 14 -Let's get drunk. 12 -Let's just dance. 13 +Lets get drunk. 12 +Lets just dance. 13 Try something new. 15 Keep it legal. 11 I am sorry. 8 Thanks so much. 12 Protect your health. 17 Keep it fun. 9 -Don't drive drunk. 14 +Dont drive drunk. 14 Celebrate your victories. 22 -Let's be friends. 13 -All caught up..! 11 +Lets be friends. 13 +All caught up.. 11 This is music. 11 Believe in yourself. 17 Over and out. 10 -Where are you? 11 +Where are you 11 Wake your dreams. 14 -Life won't wait. 12 +Life wont wait. 12 Hold my hand. 10 -Who are you? 9 +Who are you 9 This will pass. 12 Speak the truth. 13 You had time. 10 @@ -260,13 +260,13 @@ Time heals everything. 19 Forever my friend. 15 I can do it. 8 Mistakes make people. 18 -I don't know. 9 +I dont know. 9 You are kidding. 13 Always be honest. 14 -Let's run away. 11 -Don't be afraid. 12 +Lets run away. 11 +Dont be afraid. 12 The laughter is best. 17 -Don't make disturbances. 20 +Dont make disturbances. 20 Knowledge is power. 16 Do not judge. 10 Always remain neutral. 19 @@ -303,8 +303,8 @@ Live, love, laugh. 15 Nothing is impossible. 19 Set your clear targets. 19 Value your time. 13 -Do it right! 9 -Don't miss class. 13 +Do it right 9 +Dont miss class. 13 I really appreciate it. 19 Make the bed. 10 Got to run. 8 @@ -313,7 +313,7 @@ Be your best. 10 Buy something useful. 18 Call your mom. 11 Cherish your kids. 15 -Can't stop now. 11 +Cant stop now. 11 Design your life. 14 Develop your strength. 19 Destiny is mine. 13 @@ -321,21 +321,21 @@ It is possible. 12 Keep on shining. 13 Keep the faith. 12 Respect your elders. 17 -What an idea! 10 -Really! is it! 10 -Thanks a lot! 10 +What an idea 10 +Really is it 10 +Thanks a lot 10 Take action now. 13 -That's for me. 10 -Today's a gift. 11 +Thats for me. 10 +Todays a gift. 11 Peace on earth. 12 Oh.. what fun. 9 Everything is ok. 14 Be extraordinary. 15 -Lets's stay at home. 15 +Letss stay at home. 15 Unbelievable but true. 19 Listen to me. 10 -How dare he! 9 -What news! 8 +How dare he 9 +What news 8 Well, never mind. 14 Your attention, please. 20 Please step in. 12 @@ -345,8 +345,8 @@ It is alright. 11 Wait for me. 9 We will win. 9 I found it. 8 -It's your turn. 11 -Anything else? 12 +Its your turn. 11 +Anything else 12 A dime a dozen. 11 Beat around the bush. 17 Better late than never. 19 @@ -355,7 +355,7 @@ Bite the bullet. 13 Break a leg. 9 Call it a day. 10 Cutting corners. 14 -Snail's pace. 10 +Snails pace. 10 Easy does it. 10 Make ends meet. 12 Sit tight. 8 @@ -367,16 +367,16 @@ Give someone the benefit of the doubt. 31 Go back to the drawing board. 23 Hang in there. 11 Hit the sack. 10 -It's not rocket science. 19 +Its not rocket science. 19 Make a long story short. 19 Miss the boat. 11 No pain, no gain. 13 On the ball. 9 -Pull someone's leg. 15 +Pull someones leg. 15 Pull yourself together. 20 So far so good. 11 Speak of the devil. 15 -That's the last straw. 17 +Thats the last straw. 17 The best of both worlds. 19 To get bent out of shape. 19 To make matters worse. 18 @@ -407,8 +407,8 @@ Born with a silver spoon. 20 To go from rags to riches. 20 Pay an arm and a leg for something. 27 To have sticky fingers. 19 -To give a run for one's money. 22 -Break-even. 9 +To give a run for ones money. 22 +Breakeven. 9 Break the bank. 12 To be closefisted. 15 To go dutch. 9 @@ -427,7 +427,7 @@ Once in a blue moon. 15 Every cloud has a silver lining. 26 Sail close to the wind. 18 To hold out an olive branch. 22 -Can't see the forest for the trees. 27 +Cant see the forest for the trees. 27 Out of woods. 10 Barking up the wrong tree. 21 Clear as mud. 10 @@ -472,11 +472,11 @@ Take the lid off. 13 Knock on wood. 11 Not a big fan. 10 Break a bill. 10 -I don't buy it. 10 +I dont buy it. 10 Mystery meat. 11 Fanny pack. 9 -Let's table this. 13 -Don't be such a wet blanket. 21 +Lets table this. 13 +Dont be such a wet blanket. 21 Jump the shark. 12 Long in the tooth. 14 Green thumb. 10 @@ -489,9 +489,9 @@ Shoot the breeze. 14 Spill the beans. 13 Keeping my fingers crossed. 23 Out of this world. 14 -Over one's head. 12 +Over ones head. 12 Sooner or later. 13 -Put oneself in one's place. 21 +Put oneself in ones place. 21 I can eat a horse. 13 Read between the lines. 19 Rings a bell. 10 @@ -499,141 +499,141 @@ Sleep on it. 9 I bet. 4 Grab a bite. 9 Beats me. 7 -Twenty-four by seven. 17 +Twentyfour by seven. 17 Touchwood. 9 Sort of. 6 -Stop it! 6 +Stop it 6 Never mind. 9 Fair enough. 10 Get a life. 8 Nature calls. 11 -What's eating you? 14 +Whats eating you 14 I owe you. 7 Shame on you. 10 -I'm hosed. 7 +Im hosed. 7 My two cents. 10 Read out loud. 11 Throw the dice. 12 Turn to page. 10 -It's a long story. 13 +Its a long story. 13 I blew it. 7 I messed up. 9 I am very sorry. 12 -Would you like to have coffee? 24 -I'm so happy for you! 15 -I'm sorry for your loss. 18 -I'm not really sure. 15 -We will meet again! 15 +Would you like to have coffee 24 +Im so happy for you 15 +Im sorry for your loss. 18 +Im not really sure. 15 +We will meet again 15 Appreciate his efforts. 20 -I am pleased to meet you! 19 -Please don't shout. 15 -Please don't mind. 14 +I am pleased to meet you 19 +Please dont shout. 15 +Please dont mind. 14 You can have lunch with me. 21 -I'll be back in five minutes. 22 -That's interesting. 16 +Ill be back in five minutes. 22 +Thats interesting. 16 Forgive me. 9 -How can I help you? 14 +How can I help you 14 It was the least I could do. 21 -Can you please repeat it? 20 +Can you please repeat it 20 So kind of you. 11 Glad to meet with you. 17 -Why did you trouble yourself? 24 -May I sit here? 11 -I'm really grateful. 16 -Could you please come early today? 28 -I am grateful to you! 16 -Thanks. I don't need anything. 23 +Why did you trouble yourself 24 +May I sit here 11 +Im really grateful. 16 +Could you please come early today 28 +I am grateful to you 16 +Thanks. I dont need anything. 23 It would be very kind of you. 22 -May I say something? 16 +May I say something 16 Thanks for the help. 16 Thank you for your sensible advice. 29 -Don't worry about me. 16 -Don't cause inconvenience. 22 +Dont worry about me. 16 +Dont cause inconvenience. 22 Please stay a little while more. 26 Thanks, I am well. 14 Thanks for your visit. 18 -How do you do? 10 -It is your kindness! 16 +How do you do 10 +It is your kindness 16 Please make yourself comfortable. 29 -Sure, ok! 7 +Sure, ok 7 Dear friend, thank you. 19 Let me introduce myself. 20 -All right, sir! 12 +All right, sir 12 Honestly, I came just to see you. 26 Many thanks to you. 15 You have to submit an assignment on time. 33 Let us have coffee together. 23 -Can we play on the ground? 20 -May I come in, ma'am? 15 -Let's have some snacks. 18 +Can we play on the ground 20 +May I come in, maam 15 +Lets have some snacks. 18 Wash your hands before lunch. 24 I will obey my teacher. 18 Wear a clean uniform. 17 Wear polished shoes every day. 25 Pardon me. 8 -I'm sorry sir. 10 +Im sorry sir. 10 Good afternoon. 13 -Tell me about yourself? 19 -Tell me about your background? 25 -What are your strengths? 20 -What is your weakness? 18 -What is your strong point? 21 -What is your biggest fear? 21 -What motivates you? 16 -What makes you angry? 17 -Why do you want to switch? 20 -What are your goals? 16 -What are your hobbies? 18 -Can you describe your time management skills? 38 -What is your salary expectation? 27 -Why should I hire you? 17 -Are you comfortable with the office timings? 37 -Are you open to take risks? 21 -How do you work under pressure? 25 -Are you willing to relocate? 23 -Where do you see yourself years from now? 33 -Who is the most inspiring person in your life? 37 -Do you have any questions for me? 26 +Tell me about yourself 19 +Tell me about your background 25 +What are your strengths 20 +What is your weakness 18 +What is your strong point 21 +What is your biggest fear 21 +What motivates you 16 +What makes you angry 17 +Why do you want to switch 20 +What are your goals 16 +What are your hobbies 18 +Can you describe your time management skills 38 +What is your salary expectation 27 +Why should I hire you 17 +Are you comfortable with the office timings 37 +Are you open to take risks 21 +How do you work under pressure 25 +Are you willing to relocate 23 +Where do you see yourself years from now 33 +Who is the most inspiring person in your life 37 +Do you have any questions for me 26 I want to thank you for this opportunity. 33 -It's a pleasure for me to be here. 25 +Its a pleasure for me to be here. 25 Thank you for taking me into consideration for this position. 51 I really want to work for this company. 31 -I have the profile you're looking for. 30 -Would you please repeat the question? 31 -Can you please say that again? 24 -Would you please say that again? 26 -Could you please speak a little bit harder? 35 -Sorry, I didn't understand you. 25 -I'm sorry, I didn't hear the last part. 29 -I'm very good at marketing. 21 +I have the profile youre looking for. 30 +Would you please repeat the question 31 +Can you please say that again 24 +Would you please say that again 26 +Could you please speak a little bit harder 35 +Sorry, I didnt understand you. 25 +Im sorry, I didnt hear the last part. 29 +Im very good at marketing. 21 Thank you very much for your time. 27 -I'll be waiting for your call! 23 +Ill be waiting for your call 23 I can do it very well. 16 -I hope we see each other again soon! 28 -I'll be expecting your call! 22 +I hope we see each other again soon 28 +Ill be expecting your call 22 I love the idea of working here. 25 -I hope I have the profile you're looking for. 35 -I want to thank you for having me here! 30 -When will the interview begin? 25 +I hope I have the profile youre looking for. 35 +I want to thank you for having me here 30 +When will the interview begin 25 I am present for the interview. 25 I am a graduate. 12 My hobby is art and music. 20 I have two years of experience in computers. 36 We will let you know soon. 20 -Has the interview begun? 20 +Has the interview begun 20 Of course, I can. 13 I have an interest in teaching. 25 -What is the difference between confidence and overconfidence? 53 -What is the difference between hard work and smart work? 46 -Why do you want to work at our company? 30 -How do you feel about working nights and weekends? 41 -Can you work under pressure? 23 +What is the difference between confidence and overconfidence 53 +What is the difference between hard work and smart work 46 +Why do you want to work at our company 30 +How do you feel about working nights and weekends 41 +Can you work under pressure 23 Give me an example of your creativity. 31 -Are not you overqualified for this position? 37 -What are your career options right now? 32 -Would you lie for the company? 24 -Who has inspired you in your life and why? 33 -Have you considered starting your own business? 40 +Are not you overqualified for this position 37 +What are your career options right now 32 +Would you lie for the company 24 +Who has inspired you in your life and why 33 +Have you considered starting your own business 40 Good day. 7 Hello David. 10 Hello there, Tom. 14 @@ -641,123 +641,123 @@ Good afternoon, everybody. 23 Good to see you. 12 Good morning, everybody. 21 Hey, Ron. 7 -Greetings all! 12 +Greetings all 12 May the sunshine brighten your day. 29 Nice to see you. 12 -What's new? 8 -Ok. bye friends! 12 +Whats new 8 +Ok. bye friends 12 See you again. 11 Hello, everyone. 14 -How have you been? 14 -How's your day going? 16 -How's life? 8 -It's great to see you. 16 -Have a nice day! 12 -What's happening. 14 +How have you been 14 +Hows your day going 16 +Hows life 8 +Its great to see you. 16 +Have a nice day 12 +Whats happening. 14 Happy weekend. 12 Good morning have a glorious day. 27 Have a blessed day. 15 Pleased to meet you. 16 -How are you getting on? 18 -How is it going? 12 -How's it going? 11 -What a lovely day! 14 -How are you today? 14 -How are you doing? 14 +How are you getting on 18 +How is it going 12 +Hows it going 11 +What a lovely day 14 +How are you today 14 +How are you doing 14 Have a good trip. 13 Let him go. 8 -Would you mind if I ask your help? 26 +Would you mind if I ask your help 26 Please share the cake recipe. 24 -Could you please take off your raincoat? 33 +Could you please take off your raincoat 33 Please share the book. 18 -Could you possibly hold my bottle? 28 -Could you carry my bag? 18 +Could you possibly hold my bottle 28 +Could you carry my bag 18 Please keep quiet in the class. 25 Please seat in order. 17 -Please don't be late. 16 +Please dont be late. 16 Please stay online. 16 Please come again. 15 Please follow the rules. 20 Please keep your promise. 21 -Please, can you spare some money for the house? 38 +Please, can you spare some money for the house 38 Please have a chair. 16 -Can I get your contact number? 24 -Tom, can you bring some vegetables from the market? 42 -Children, please don't mess inside the garden. 38 -Could I ask you to take me home? 24 -Could they wait for a minute? 23 +Can I get your contact number 24 +Tom, can you bring some vegetables from the market 42 +Children, please dont mess inside the garden. 38 +Could I ask you to take me home 24 +Could they wait for a minute 23 Let me know if you are ready. 22 Let me give you some time to prepare lunch. 34 Please sort it among you. 20 -Can you tell me what happened? 24 -May I leave early today? 19 -Will you go out with me? 18 -Please don't make this complicated. 29 -Could you give me some advice? 24 +Can you tell me what happened 24 +May I leave early today 19 +Will you go out with me 18 +Please dont make this complicated. 29 +Could you give me some advice 24 Please attend to the guests. 23 Please keep everything in order. 27 Please keep quiet in the office. 26 Please sign here. 14 -Please don't mind my words. 21 +Please dont mind my words. 21 Sherry please sits in a chair. 24 Please wait for a while. 19 Please move aside. 15 Please be seated. 14 -Do you need my help? 15 -Time, please! 11 +Do you need my help 15 +Time, please 11 Kindly hold it cautiously. 22 -Please don't speak loudly. 21 +Please dont speak loudly. 21 Please introduce yourself. 23 Please give me some time. 20 -Please don't embarrass me. 21 -Could you help me to make a teacher's day decoration? 42 -Will you come with me to take permission? 33 +Please dont embarrass me. 21 +Could you help me to make a teachers day decoration 42 +Will you come with me to take permission 33 Please call the doctor. 19 -Please don't disturb me. 19 +Please dont disturb me. 19 Let me go there. 12 You are most welcome. 17 -Will you please move a little? 24 +Will you please move a little 24 Please allow me to go out. 20 Make yourself comfortable. 23 Please listen to me carefully. 25 -Will you help me? 13 -Please don't cry. 13 +Will you help me 13 +Please dont cry. 13 Please speak slowly. 17 Kindly take it with pleasure. 24 Please come in. 12 Coffee, please. 13 -May I come with you? 15 -Can I make a call? 13 +May I come with you 15 +Can I make a call 13 Please stop the car. 16 Please have tea. 13 -Please don't be angry. 17 +Please dont be angry. 17 Please hold on. 12 Let him say. 9 Please take your seat. 18 -Don't be formal. 12 +Dont be formal. 12 Please stay a little longer. 23 Very kind of you. 13 No mention. 9 -Can I use your computer, please? 26 -May I come in? 10 +Can I use your computer, please 26 +May I come in 10 Please let me know if you come or not. 29 -Can you play with me? 16 -Could you repeat that, please? 25 +Can you play with me 16 +Could you repeat that, please 25 It is all right. 12 Let him prepare for the presentation. 31 See you tomorrow. 14 Take care. 8 -It's piece of cake. 14 -Can you buy a book for me? 19 +Its piece of cake. 14 +Can you buy a book for me 19 Let him go for a match. 17 Okay, sir. 8 Okay, take care. 13 Hey, are you there. 15 Please call me. 12 -Could you please come at 5 pm? 23 -Is it okay? 8 +Could you please come at 5 pm 23 +Is it okay 8 I will be late. 11 -I will be in the office by 2:30 pm. 25 +I will be in the office by 230 pm. 25 Slightly delay reaching office. 27 Please check the files. 19 I will be available on skype. 23 @@ -767,19 +767,19 @@ Sure sir I will inform him. 21 Reaching late. 12 Please send me the contact details. 29 Okay please go head. 16 -Got it! 5 -Ok, I'll try to pick something good. 28 -How was I looking today? 19 +Got it 5 +Ok, Ill try to pick something good. 28 +How was I looking today 19 Lemme know. 9 -Don't park here. 12 +Dont park here. 12 Keep to the left side. 17 Drive slowly. 11 Keep off the grass. 15 For ladies only. 13 Photography is prohibited. 23 -Don't smoke here. 13 +Dont smoke here. 13 Dangerous turn ahead. 18 -It's too late. 10 +Its too late. 10 Before crossing the road, always see your right, left. 45 Please stand in a queue. 19 It is a crime to travel without a ticket. 32 @@ -792,100 +792,100 @@ Beware of dogs. 12 There is a school ahead. 19 Follow good manners. 17 See him off. 9 -Don't tease her. 12 +Dont tease her. 12 Serve fast. 9 Do not spit on the floor. 19 -Don't depend on others. 18 +Dont depend on others. 18 Handle a book with clean hands. 25 Please keep silent. 16 Plucking flowers is prohibited. 27 -Don't doze while working. 20 -Don't fight in public. 17 -I'm sorry to be aggressive. 21 +Dont doze while working. 20 +Dont fight in public. 17 +Im sorry to be aggressive. 21 I totally forgot, I apologize. 25 I am really sorry. 14 I am sorry to be late for reply. 24 Sorry about that. 14 -I'm extremely sorry. 16 +Im extremely sorry. 16 I was just joking. 14 I am sorry to fail the exam. 21 I am sorry, I got late. 17 Sorry for the delayed payment. 25 I am sorry for interrupting you. 26 -Pardon me it's my mistake. 20 +Pardon me its my mistake. 20 Sorry, I could not call you. 22 Sorry about that. I woke up late. 25 It was not your fault. 17 It was done by mistake. 18 -Don't worry, no harm is done. 22 -I'm sorry I forgot your birthday. 26 +Dont worry, no harm is done. 22 +Im sorry I forgot your birthday. 26 I will never forgive you. 20 -I'm afraid you have the wrong number. 29 -Don't feel sorry for what I said. 25 +Im afraid you have the wrong number. 29 +Dont feel sorry for what I said. 25 I apologise. 10 Sorry for the inconvenience. 24 Sorry for the trouble. 18 -I'm very sorry to hear this. 21 +Im very sorry to hear this. 21 Pardon me for interrupting you. 26 It is my mistake. 13 -Sorry, tom. Can I call you back in a few hours? 35 +Sorry, tom. Can I call you back in a few hours 35 My humble apologies. 17 Please excuse. 12 -Can you forgive me? 15 -I'm afraid. 8 +Can you forgive me 15 +Im afraid. 8 It was done unknowingly. 20 -I'm sorry madam. 12 -I'm sorry to be a nuisance. 20 -I'm sorry to be a fight. 17 -I'm sorry to be late. 15 +Im sorry madam. 12 +Im sorry to be a nuisance. 20 +Im sorry to be a fight. 17 +Im sorry to be late. 15 Hi there. 7 See ya later. 10 See you soon. 10 Have a good one. 12 -How ya doin'? 9 -How are things? 12 -How's your family? 14 -What's up? 7 -What have you been up to lately? 25 -I'm fine, thanks. how about you? 24 +How ya doin 9 +How are things 12 +Hows your family 14 +Whats up 7 +What have you been up to lately 25 +Im fine, thanks. how about you 24 Pretty good. 10 Not bad. 6 -Couldn't be better! 15 -Can't complain. 12 -I've been busy. 11 +Couldnt be better 15 +Cant complain. 12 +Ive been busy. 11 Same as always. 12 Not so great. 10 It was nice chatting with you. 24 -Well, it's getting late. 19 +Well, its getting late. 19 Anyway, I should get going. 22 -Sorry, but I'm afraid I need to. 24 -I'm sorry to cut you off, but I actually gotta run. 39 +Sorry, but Im afraid I need to. 24 +Im sorry to cut you off, but I actually gotta run. 39 Hi, this is jane. 13 -May I speak with john smith? 22 -Is john there? 11 -I'm calling about it. 16 -I'm returning your call. 19 +May I speak with john smith 22 +Is john there 11 +Im calling about it. 16 +Im returning your call. 19 One moment, please. 16 Hang on a sec. 10 -He's not here. would you like to leave a message? 37 -Could you ask him to call me back? 26 +Hes not here. would you like to leave a message 37 +Could you ask him to call me back 26 Thanks for calling. 16 -It's fascinating. 14 -It's intriguing. 13 -I couldn't tear myself away. 22 -I couldn't put it down. 17 +Its fascinating. 14 +Its intriguing. 13 +I couldnt tear myself away. 22 +I couldnt put it down. 17 I was so into it, I lost track of time. 29 It does nothing for me. 18 I was bored to tears. 16 I was bored to death. 16 I was dying of boredom. 18 -It's about as exciting as watching paint dry. 36 -What a pity! 9 +Its about as exciting as watching paint dry. 36 +What a pity 9 What a shame. 10 How disappointing. 16 -That's too bad. 11 +Thats too bad. 11 It was a real letdown. 17 -It didn't live up to my expectations. 29 +It didnt live up to my expectations. 29 He yelled. 8 She screamed. 11 I whispered. 10 @@ -905,450 +905,450 @@ He winced when the doctor gave him an injection. 39 She gave me a dirty look. 19 She blushed. 10 His eyes were glazed over. 21 -Why the long face? 14 +Why the long face 14 Her expression was unreadable. 26 -Sorry, I'm late. 12 +Sorry, Im late. 12 I overslept. 10 -My alarm didn't go off. 17 +My alarm didnt go off. 17 I had to wait for ages for a bus. 24 The bus was late. 13 The traffic was terrible. 21 -I couldn't find a parking spot. 24 +I couldnt find a parking spot. 24 I got lost coming here. 18 I was tied up in a meeting. 20 I just lost track of time. 20 I really should help him. 20 -I promise that I'll come. 19 -I swear I'll come. 13 -No matter what happens, I'm going to come. 33 -Come hell or high water, I'll come. 27 -Are you free tonight? 17 -Are you doing anything tonight? 26 +I promise that Ill come. 19 +I swear Ill come. 13 +No matter what happens, Im going to come. 33 +Come hell or high water, Ill come. 27 +Are you free tonight 17 +Are you doing anything tonight 26 Let me check my calendar. 20 -Do you wanna see a movie? 19 -Would you like to join me for dinner? 29 -I'd love to! 8 -Sounds great! 11 -I'd love to, but I have another commitment. 34 -I don't think I can. 14 +Do you wanna see a movie 19 +Would you like to join me for dinner 29 +Id love to 8 +Sounds great 11 +Id love to, but I have another commitment. 34 +I dont think I can. 14 Maybe another time. 16 -I'm exhausted. 11 -I'm dead tired. 11 -I'm pooped. 8 -I'm spent. 7 -I'm beaten. 8 -I'm running on empty. 16 -I'm running on fumes. 16 +Im exhausted. 11 +Im dead tired. 11 +Im pooped. 8 +Im spent. 7 +Im beaten. 8 +Im running on empty. 16 +Im running on fumes. 16 I can hardly keep my eyes open. 24 -I'm off to bed. 10 -I'm gonna hit the sack. 17 -It's bedtime for me. 15 -It's nice and warm today. 19 -It's absolutely boiling! 20 -We're having a real heatwave. 23 -The sun's really strong today. 24 -It's hot and humid. 14 -It's a little chilly. 16 -It's freezing. 11 -The temperature's dropping. 23 +Im off to bed. 10 +Im gonna hit the sack. 17 +Its bedtime for me. 15 +Its nice and warm today. 19 +Its absolutely boiling 20 +Were having a real heatwave. 23 +The suns really strong today. 24 +Its hot and humid. 14 +Its a little chilly. 16 +Its freezing. 11 +The temperatures dropping. 23 Make sure to bundle up. 18 -We're expecting some winter weather. 30 -It's drizzling. 12 -It's pouring. 10 -It's raining cats and dogs. 21 +Were expecting some winter weather. 30 +Its drizzling. 12 +Its pouring. 10 +Its raining cats and dogs. 21 I got caught in a downpour. 21 -I think the rain's letting up. 23 -He's not the sharpest tool in the shed. 30 -She's a few cards short of a deck. 25 -He's a bit slow. 11 -She's a complete idiot. 18 -He's really dumb. 13 -Can you tell me? 12 -Could you tell me? 14 -I'd like to know. 12 -Do you know? 9 -Do you have any idea? 16 -Could anyone tell me? 17 -Would you happen to know? 20 -I don't suppose you know? 19 +I think the rains letting up. 23 +Hes not the sharpest tool in the shed. 30 +Shes a few cards short of a deck. 25 +Hes a bit slow. 11 +Shes a complete idiot. 18 +Hes really dumb. 13 +Can you tell me 12 +Could you tell me 14 +Id like to know. 12 +Do you know 9 +Do you have any idea 16 +Could anyone tell me 17 +Would you happen to know 20 +I dont suppose you know 19 I was wondering. 13 -I'm calling to find out. 18 +Im calling to find out. 18 Sorry to interrupt, but. 20 -Excuse me, could I talk to you for a minute? 34 -Could I jump in here? 16 +Excuse me, could I talk to you for a minute 34 +Could I jump in here 16 Sorry, I just want to say that. 24 -May I have a word? 13 -Excuse me, do you have a minute? 25 -Keep up the good work! 17 +May I have a word 13 +Excuse me, do you have a minute 25 +Keep up the good work 17 That was a nice try. 15 -That's a real improvement. 21 -You're on the right track. 20 -You've almost got it. 16 -You're doing great. 15 -Don't give up! 10 -You can do it! 10 +Thats a real improvement. 21 +Youre on the right track. 20 +Youve almost got it. 16 +Youre doing great. 15 +Dont give up 10 +You can do it 10 Give it your best shot. 18 -Nice job! 7 -Hang in there! 11 -You did great! 11 -I'll always remember. 17 +Nice job 7 +Hang in there 11 +You did great 11 +Ill always remember. 17 If I remember correctly. 20 I have a vague recollection of. 25 -It's on the tip of my tongue. 21 +Its on the tip of my tongue. 21 My mind went blank. 15 -It doesn't ring a bell. 17 +It doesnt ring a bell. 17 Please remember to. 16 -I'd like to remind you about it. 24 -You haven't forgotten about groceries, have you? 40 -It completely slipped my mind! 25 -I'll never forget. 14 +Id like to remind you about it. 24 +You havent forgotten about groceries, have you 40 +It completely slipped my mind 25 +Ill never forget. 14 As far as I can recall. 17 -Please don't forget to. 18 +Please dont forget to. 18 Yeah, right. 10 -You're kidding. 12 -You're pulling my leg. 17 -That's a bit of an exaggeration. 25 -He's stretching the truth. 21 -He's not telling the whole truth. 26 -She's being economical with the truth. 31 +Youre kidding. 12 +Youre pulling my leg. 17 +Thats a bit of an exaggeration. 25 +Hes stretching the truth. 21 +Hes not telling the whole truth. 26 +Shes being economical with the truth. 31 His story is fishy. 15 -That's an outright lie. 18 -That's a pack of lies. 16 +Thats an outright lie. 18 +Thats a pack of lies. 16 Thanks a lot. 10 Thank you so much. 14 -Thanks a million! 14 +Thanks a million 14 Thanks for your help. 17 -That's so kind of you. 16 -I can't thank you enough. 19 +Thats so kind of you. 16 +I cant thank you enough. 19 I owe you one. 10 -You're welcome. 12 +Youre welcome. 12 No problem. 9 No worries. 9 -Don't mention it. 13 +Dont mention it. 13 Glad to help. 10 -I'm sorry that I could not come. 24 -It's my fault. 10 +Im sorry that I could not come. 24 +Its my fault. 10 Oops, sorry. 10 I should have called you. 20 I apologize for the delay. 21 -That's ok. 7 +Thats ok. 7 It happens. 9 -Don't worry about it. 16 +Dont worry about it. 16 I forgive you. 11 -I just wanted to introduce myself. I'm Shraa. 35 -I don't think we've met before. My name's Shraa. 35 +I just wanted to introduce myself. Im Shraa. 35 +I dont think weve met before. My names Shraa. 35 This is Shraa. 11 -I'd like you to meet Shraa. 20 -Have you met Shraa? 15 -I'd like to introduce you to shraa. 27 +Id like you to meet Shraa. 20 +Have you met Shraa 15 +Id like to introduce you to shraa. 27 Nice to meet you. 13 -It's a pleasure to meet you. 21 +Its a pleasure to meet you. 21 And you. 6 I have no idea. 11 -I can't help you there. 17 -I've been wondering that too. 23 +I cant help you there. 17 +Ive been wondering that too. 23 I have no clue. 11 -What do you think about this? 23 -How do you feel about it? 19 -What's your opinion on this? 22 -What are your views on this? 22 +What do you think about this 23 +How do you feel about it 19 +Whats your opinion on this 22 +What are your views on this 22 In my opinion. 11 -I'd say. 5 +Id say. 5 Personally, I believe. 19 If you ask me. 10 The way I see it. 12 From my point of view. 17 Personally, I think. 17 -I've never given it much thought. 26 -I don't have strong feelings either way. 32 -It doesn't make any difference to me. 29 +Ive never given it much thought. 26 +I dont have strong feelings either way. 32 +It doesnt make any difference to me. 29 I have no opinion on the matter. 25 -That's so true. 11 -That's for sure. 12 -I agree 100%. 9 -I couldn't agree with you more. 24 -That's exactly what I think. 22 -I'll say! 6 +Thats so true. 11 +Thats for sure. 12 +I agree 100. 9 +I couldnt agree with you more. 24 +Thats exactly what I think. 22 +Ill say 6 I suppose so. 10 -That's exactly how I feel. 20 -I don't think so. 12 +Thats exactly how I feel. 20 +I dont think so. 12 I beg to differ. 12 -I'm afraid I don't agree. 18 -I'm not so sure about that. 20 -That's not how I see it. 17 +Im afraid I dont agree. 18 +Im not so sure about that. 20 +Thats not how I see it. 17 Not necessarily. 14 Yes, but. 7 On the contrary. 13 No way. 5 I totally disagree. 16 -That's great! 10 -How wonderful! 12 -I'm going to. 9 -I'm planning to. 12 +Thats great 10 +How wonderful 12 +Im going to. 9 +Im planning to. 12 I hope to. 7 -I'd like to. 8 +Id like to. 8 I might. 6 -I'm thinking about it. 17 +Im thinking about it. 17 I love cooking. 12 -I'm really into cricket. 19 +Im really into cricket. 19 I live for cricket. 15 Cricket is my thing. 16 -I'm crazy about cricket. 19 -I'm not a huge fan of cricket. 22 -Cricket isn't my cup of tea. 21 -I don't really care about cricket. 27 -I'm not into cricket. 16 -I can't stand cricket. 17 -Where do you work? 14 -What do you do? 11 +Im crazy about cricket. 19 +Im not a huge fan of cricket. 22 +Cricket isnt my cup of tea. 21 +I dont really care about cricket. 27 +Im not into cricket. 16 +I cant stand cricket. 17 +Where do you work 14 +What do you do 11 I work at a bank. 12 -I'm a teacher. 10 -I'm unemployed. 12 -I'm looking for work. 16 -I'm a stay-at-home mom. 16 +Im a teacher. 10 +Im unemployed. 12 +Im looking for work. 16 +Im a stayathome mom. 16 I run my own business. 17 -I'm a freelance writer. 18 -I'm retired. 9 -What do you do for a living? 21 -I'm between jobs at the moment. 24 -Would you mind repeating that? 25 -What do you mean? 13 -I'm not sure I follow you. 19 -Could you explain this? 19 -Do you understand what I'm saying? 27 -Does that make sense? 17 -Do you know what I mean? 18 -Are you with me so far? 17 -Is that clear? 11 +Im a freelance writer. 18 +Im retired. 9 +What do you do for a living 21 +Im between jobs at the moment. 24 +Would you mind repeating that 25 +What do you mean 13 +Im not sure I follow you. 19 +Could you explain this 19 +Do you understand what Im saying 27 +Does that make sense 17 +Do you know what I mean 18 +Are you with me so far 17 +Is that clear 11 I need a little help. 16 -Could you help me out? 17 -Could you give me a hand? 19 -Could you spare a couple of minutes? 29 -Could you do me a favor? 18 -I'm not happy about this. 19 -I'm sorry, but this is unacceptable. 29 -I'm not very satisfied with this product. 33 -I can't stand it when the internet is slow. 33 -Do you have change? 15 -Where can I find a washroom? 22 -I'm just browsing. 14 -I'm looking for jeans. 17 -How much is this? 13 -Is this on sale? 12 -Can I try it on? 11 -I'll take it! 9 -I'd like to return this. 18 -I'm starving! 10 -Let's grab a bite to eat. 18 -How about eating out tonight? 24 +Could you help me out 17 +Could you give me a hand 19 +Could you spare a couple of minutes 29 +Could you do me a favor 18 +Im not happy about this. 19 +Im sorry, but this is unacceptable. 29 +Im not very satisfied with this product. 33 +I cant stand it when the internet is slow. 33 +Do you have change 15 +Where can I find a washroom 22 +Im just browsing. 14 +Im looking for jeans. 17 +How much is this 13 +Is this on sale 12 +Can I try it on 11 +Ill take it 9 +Id like to return this. 18 +Im starving 10 +Lets grab a bite to eat. 18 +How about eating out tonight 24 I brought some snacks. 18 -This soup is delicious! 19 -Could I have another helping of potatoes? 34 -I'll have it. 9 -Could we get the check, please? 25 -I'm full. 6 -I'm stuffed. 9 -Where's the remote? 15 -Is there anything good on? 21 -Can I change the channel? 20 -I've already seen this episode. 25 +This soup is delicious 19 +Could I have another helping of potatoes 34 +Ill have it. 9 +Could we get the check, please 25 +Im full. 6 +Im stuffed. 9 +Wheres the remote 15 +Is there anything good on 21 +Can I change the channel 20 +Ive already seen this episode. 25 This is a rerun. 12 -I love this show! 13 +I love this show 13 There are too many commercials. 26 Stop channel surfing. 18 Check the tv guide. 15 -It's the season finale! 18 +Its the season finale 18 It cost a fortune. 14 It cost an arm and a leg. 18 -That's a rip off. 12 -I can't afford it. 13 -That's a bit pricey. 15 -That's quite reasonable. 20 -But what a price to pay! 18 -That's a good deal. 14 +Thats a rip off. 12 +I cant afford it. 13 +Thats a bit pricey. 15 +Thats quite reasonable. 20 +But what a price to pay 18 +Thats a good deal. 14 It was a real bargain. 17 It was dirt cheap. 14 -Would you like a drink? 18 -Do you want some water? 18 -Can I get you something to eat? 24 -That'd be great, thanks. 19 -No,thanks. i'm ok. 13 -Would you mind opening the window? 28 -Could you please turn off the lights? 30 -Can you pass me the chicken? 22 +Would you like a drink 18 +Do you want some water 18 +Can I get you something to eat 24 +Thatd be great, thanks. 19 +No,thanks. im ok. 13 +Would you mind opening the window 28 +Could you please turn off the lights 30 +Can you pass me the chicken 22 Please send me the information. 26 -I'd appreciate it if you could wash the fruits. 37 -It's a piece of cake. 15 -It's a cinch. 9 -It's a breeze. 10 +Id appreciate it if you could wash the fruits. 37 +Its a piece of cake. 15 +Its a cinch. 9 +Its a breeze. 10 Anyone can do it. 13 -There's nothing to it. 17 -It's hard. 7 -It's a bit tricky. 13 -It's really tough. 14 -It's not a walk in the park. 20 -It's very demanding. 16 -She's in her early twenties. 22 -He's in his late thirties. 20 +Theres nothing to it. 17 +Its hard. 7 +Its a bit tricky. 13 +Its really tough. 14 +Its not a walk in the park. 20 +Its very demanding. 16 +Shes in her early twenties. 22 +Hes in his late thirties. 20 She just turned six. 16 -Act your age! 10 -I'm not as young as I used to be. 23 -I'm not over the hill yet! 19 -He's no spring chicken. 18 -She's wise beyond her years. 22 -I'm having a senior moment. 21 +Act your age 10 +Im not as young as I used to be. 23 +Im not over the hill yet 19 +Hes no spring chicken. 18 +Shes wise beyond her years. 22 +Im having a senior moment. 21 He lived to a ripe old age. 20 No comment. 9 -I'm not at liberty to say. 19 +Im not at liberty to say. 19 Wait and see. 10 Let me get back to you. 17 -I'm sorry, that's confidential. 25 -I'm sorry, that's personal. 21 -I'd rather not talk about it. 22 -It's none of your business. 21 +Im sorry, thats confidential. 25 +Im sorry, thats personal. 21 +Id rather not talk about it. 22 +Its none of your business. 21 Mind your own business. 19 -Why do you want to know? 18 -Could you give me a minute? 21 +Why do you want to know 18 +Could you give me a minute 21 Let me see. 8 -I'll be right with you. 17 +Ill be right with you. 17 Bear with me. 10 -That'll have to wait. 16 +Thatll have to wait. 16 Be patient. 9 -Not so fast! 9 -Hold your horses! 14 +Not so fast 9 +Hold your horses 14 Just a sec. 8 Let me think. 10 -What's the matter? 14 -What's wrong? 10 -Are you all right? 14 +Whats the matter 14 +Whats wrong 10 +Are you all right 14 You look a bit down. 15 -Is there anything I can do to help? 27 -Cheer up! 7 -It's not so bad. 11 +Is there anything I can do to help 27 +Cheer up 7 +Its not so bad. 11 Everything will be ok. 18 Look on the bright side. 19 -It's not the end of the world. 22 -Chin up! 6 -It's on me. 7 -I'd like to make a toast. 18 -Here's to. 7 +Its not the end of the world. 22 +Chin up 6 +Its on me. 7 +Id like to make a toast. 18 +Heres to. 7 Another round of drinks, please. 27 Put it on my tab. 12 -He's a bit tipsy. 12 -He's completely wasted. 19 -She's trying to drown her sorrows. 27 -I'm the designated driver. 21 +Hes a bit tipsy. 12 +Hes completely wasted. 19 +Shes trying to drown her sorrows. 27 +Im the designated driver. 21 I had a hangover. 13 -He's completely sloshed. 20 -He's completely plastered. 22 +Hes completely sloshed. 20 +Hes completely plastered. 22 I was hungover. 12 -If I had to take a guess, I'd say. 24 -It's difficult to say, but I think. 27 -Off the top of my head, I'd say. 23 -It's about a kilogram. 17 -It's around kilometers. 19 -I wouldn't be surprised if. 21 -There's a good chance. 17 +If I had to take a guess, Id say. 24 +Its difficult to say, but I think. 27 +Off the top of my head, Id say. 23 +Its about a kilogram. 17 +Its around kilometers. 19 +I wouldnt be surprised if. 21 +Theres a good chance. 17 I have a feeling. 13 -I'm single. 8 +Im single. 8 I have a boyfriend. 15 -We're engaged. 11 -We're getting married in June. 24 -I'm married. 9 -I've been married for  years. 22 -I'm divorced. 10 -I'm not looking for anything serious. 30 -I'm not quite over my ex. 18 -He's short on cash. 14 -He's broke. 8 +Were engaged. 11 +Were getting married in June. 24 +Im married. 9 +Ive been married for years. 22 +Im divorced. 10 +Im not looking for anything serious. 30 +Im not quite over my ex. 18 +Hes short on cash. 14 +Hes broke. 8 His bank account is overdrawn. 25 -He's just scraping by. 17 +Hes just scraping by. 17 He makes minimum wage. 18 -He's scrimping and saving. 21 -She's very wealthy. 15 -She's quite well-off. 16 -She's loaded. 10 -She's filthy rich. 14 +Hes scrimping and saving. 21 +Shes very wealthy. 15 +Shes quite welloff. 16 +Shes loaded. 10 +Shes filthy rich. 14 She inherited a fortune. 20 -She's making a killing. 18 -She's raking in the cash. 19 -She's rolling in dough. 18 -That's a rip-off. 12 -That's right. 10 -That's spot on. 11 -You've hit the nail on the head. 24 -You've nailed it. 13 -I'm afraid you're right. 18 -He's really sharp. 14 -She's brilliant. 13 -He's very bright. 13 -She's a genius. 11 -He's a smart cookie. 15 -Good luck! 8 +Shes making a killing. 18 +Shes raking in the cash. 19 +Shes rolling in dough. 18 +Thats a ripoff. 12 +Thats right. 10 +Thats spot on. 11 +Youve hit the nail on the head. 24 +Youve nailed it. 13 +Im afraid youre right. 18 +Hes really sharp. 14 +Shes brilliant. 13 +Hes very bright. 13 +Shes a genius. 11 +Hes a smart cookie. 15 +Good luck 8 Better luck next time. 18 -Just my luck! 10 -Lucky you! 8 +Just my luck 10 +Lucky you 8 That was a stroke of luck. 20 Some people have all the luck. 24 As luck would have it. 17 -He's down on his luck. 16 +Hes down on his luck. 16 No such luck. 10 -What rotten luck! 14 -I'm absolutely sure. 16 -I'm positive that. 14 +What rotten luck 14 +Im absolutely sure. 16 +Im positive that. 14 I have no doubt that. 16 -I'm a hundred percent certain. 24 -I'm convinced that. 15 +Im a hundred percent certain. 24 +Im convinced that. 15 Chances are that. 14 Odds are that. 11 I seriously doubt it. 17 Probably not. 11 -It's not very likely. 16 -There's not much chance of that. 25 -I'd be very surprised if that happened. 31 -I wouldn't bet on it. 15 -That'll never happen. 17 +Its not very likely. 16 +Theres not much chance of that. 25 +Id be very surprised if that happened. 31 +I wouldnt bet on it. 15 +Thatll never happen. 17 She was born to sing. 16 -He's a natural. 11 +Hes a natural. 11 She could do it in her sleep. 22 He knows it inside out. 18 She knows Pune like the back of her hand. 32 -She's a walking encyclopedia of geography. 35 -He's in a class of his own. 19 -He's the best in the business. 23 -She's very gifted. 14 -He's a math whiz. 12 -I'm debating between. 17 -I can't make up my mind. 17 -I'm on the fence. 12 -I'll take that into consideration. 28 +Shes a walking encyclopedia of geography. 35 +Hes in a class of his own. 19 +Hes the best in the business. 23 +Shes very gifted. 14 +Hes a math whiz. 12 +Im debating between. 17 +I cant make up my mind. 17 +Im on the fence. 12 +Ill take that into consideration. 28 On the other hand. 14 -I'm having second thoughts. 22 +Im having second thoughts. 22 I changed my mind. 14 He convinced me to buy it. 20 Looking back, I know it was the right decision. 38 -It's up to you. 10 -I'm scared of that. 14 -I can't help thinking that. 21 -It's been keeping me up at night. 25 -Thank goodness! 13 -What a relief! 11 +Its up to you. 10 +Im scared of that. 14 +I cant help thinking that. 21 +Its been keeping me up at night. 25 +Thank goodness 13 +What a relief 11 You had me worried for a moment. 25 You have no idea what a relief it is. 28 -That's a huge load off my mind. 23 +Thats a huge load off my mind. 23 You look nice. 11 -You look amazing! 14 -What a beautiful dress! 19 +You look amazing 14 +What a beautiful dress 19 I like your shirt. 14 The lasagna is delicious. 21 -You're a fantastic cook. 19 -My compliments to the chef! 22 -What a nice apartment! 18 +Youre a fantastic cook. 19 +My compliments to the chef 22 +What a nice apartment 18 You have a beautiful home. 21 -She's so cute! 10 +Shes so cute 10 Your kids are a lot of fun. 20 They got off on the wrong foot. 24 -He got on the teacher's bad side. 25 +He got on the teachers bad side. 25 She took offense at his comment. 26 He has a chip on his shoulder. 23 She got bent out of shape. 20 @@ -1357,45 +1357,45 @@ She got her panties in a wad. 22 He has a short fuse. 15 She dissed my mother. 17 He got his nose out of joint. 22 -It's as light as a feather. 20 -It's as dry as a bone. 15 -It's as flat as a pancake. 19 -He's as mad as a hornet. 17 -It's as old as the hills. 18 -It's as quick as lightning. 21 -She's as sick as a dog. 16 -He's as strong as an ox. 17 -They're as different as night and day. 30 -She's as stubborn as a mule. 21 -He's as proud as a peacock. 20 -She's as white as a sheet. 19 -It's as solid as a rock. 17 -It's as good as new. 14 -It's as clear as mud. 15 -How about trying something new? 26 -Why don't you talk to your boss? 24 +Its as light as a feather. 20 +Its as dry as a bone. 15 +Its as flat as a pancake. 19 +Hes as mad as a hornet. 17 +Its as old as the hills. 18 +Its as quick as lightning. 21 +Shes as sick as a dog. 16 +Hes as strong as an ox. 17 +Theyre as different as night and day. 30 +Shes as stubborn as a mule. 21 +Hes as proud as a peacock. 20 +Shes as white as a sheet. 19 +Its as solid as a rock. 17 +Its as good as new. 14 +Its as clear as mud. 15 +How about trying something new 26 +Why dont you talk to your boss 24 Maybe we should do more research. 27 -I'd recommend going to the doctor. 27 -Have you thought about buying a new mobile? 35 -I'm afraid that's not quite right. 26 -I'm afraid you're mistaken. 21 -No, you've got it wrong. 18 -Oh no, that's not correct. 20 -Actually, I don't think.... 19 -No, that's all wrong. 16 +Id recommend going to the doctor. 27 +Have you thought about buying a new mobile 35 +Im afraid thats not quite right. 26 +Im afraid youre mistaken. 21 +No, youve got it wrong. 18 +Oh no, thats not correct. 20 +Actually, I dont think.... 19 +No, thats all wrong. 16 Oh no. 4 -That's terrible. 13 +Thats terrible. 13 Poor you. 7 -I'm so sorry to hear that. 19 -Do you have any bags to check? 23 -Would you like a window seat or an aisle seat? 36 -Here's your boarding pass. 21 +Im so sorry to hear that. 19 +Do you have any bags to check 23 +Would you like a window seat or an aisle seat 36 +Heres your boarding pass. 21 Your flight leaves from the gate. 27 Your seat number is f. 17 The flight is now boarding. 22 Your flight has been delayed. 24 Your flight has been canceled. 25 -What is the purpose of your trip? 26 +What is the purpose of your trip 26 The crime rate rose. 16 The crime rate went up. 18 There was a sharp increase in crime. 29 @@ -1406,77 +1406,77 @@ The crime rate plateaued. 21 There was a slight decrease in crime. 30 The crime rate dropped. 19 The crime rate plummeted. 21 -It'll happen any day now. 19 -It's right around the corner. 23 +Itll happen any day now. 19 +Its right around the corner. 23 In the near future. 15 -It won't happen in our lifetime. 25 -It's a sign of things to come. 22 -I'm counting down the days until. 26 -I'll get around to it. 16 -I'll do it right away. 16 +It wont happen in our lifetime. 25 +Its a sign of things to come. 22 +Im counting down the days until. 26 +Ill get around to it. 16 +Ill do it right away. 16 Time will tell. 12 -It's bound to happen eventually. 26 -I'll get right on it. 15 +Its bound to happen eventually. 26 +Ill get right on it. 15 My flight was overbooked. 21 My flight was delayed. 18 My luggage was lost. 16 -I was jet-lagged. 13 +I was jetlagged. 13 My hotel was in a seedy area. 22 I was mugged. 10 The weather was miserable. 22 I got the runs. 11 The place was a tourist trap. 23 -I couldn't wait to get back home. 25 +I couldnt wait to get back home. 25 My flight was canceled. 19 -Could you send me the report? 23 -Sorry, I'm a bit busy right now. 24 -Let me know when you're available. 27 +Could you send me the report 23 +Sorry, Im a bit busy right now. 24 +Let me know when youre available. 27 I think you might be mistaken. 24 -I'm afraid I disagree. 17 -I'm not quite satisfied with this work. 31 +Im afraid I disagree. 17 +Im not quite satisfied with this work. 31 It would be great if you could do this today. 35 -Could I borrow your pen? 19 -Can I just say something here, please? 31 +Could I borrow your pen 19 +Can I just say something here, please 31 I wonder if I might use your phone. 27 I was wondering if you could help me. 29 -Would you mind opening the door? 26 -Could you come here? 16 -Do you mind if I take your business card? 32 -Can we talk a little later? 21 +Would you mind opening the door 26 +Could you come here 16 +Do you mind if I take your business card 32 +Can we talk a little later 21 His performance was not very good. 28 -I don't really like it, I'm afraid. 26 -I'd prefer to use different colors in this picture. 41 -I'm not very fond of this song. 23 -Would you lend me a pencil, please? 28 -I'm not so sure that's a good idea. 25 -I'll have a coffee, please. 21 -Do you mind if I open the window? 25 +I dont really like it, Im afraid. 26 +Id prefer to use different colors in this picture. 41 +Im not very fond of this song. 23 +Would you lend me a pencil, please 28 +Im not so sure thats a good idea. 25 +Ill have a coffee, please. 21 +Do you mind if I open the window 25 Sorry, I am a bit busy right now. 25 No, thanks. 9 -I'm afraid not. 11 -Could you send me the picture? 24 -Could you please send me the report? 29 +Im afraid not. 11 +Could you send me the picture 24 +Could you please send me the report 29 Have a seat, please. 16 -I don't think that's such a good idea. 28 -Can you hold, please? 17 -Excuse me, could you tell me the time, please? 37 +I dont think thats such a good idea. 28 +Can you hold, please 17 +Excuse me, could you tell me the time, please 37 You can do it. 10 Well done. 8 I am proud of you. 13 -Bravo! you have done a great job. 25 +Bravo you have done a great job. 25 Keep it up. 8 Dream big and dare to fail. 21 Ambition is the path to success. 26 Believe it can be done. 18 Clarity affords focus. 19 The key to life is accepting challenges. 33 -Self-confidence is the memory of success. 34 +Selfconfidence is the memory of success. 34 Set your goals high. 16 -Let's succeed in your mission. 24 +Lets succeed in your mission. 24 Failure is simply the opportunity to begin again. 41 My stomach is upset. 16 I have pain in the chest. 19 -Jack's fever is down now. 19 +Jacks fever is down now. 19 Sam is suffering from dengue. 24 I have to consult a doctor. 21 I have constipation. 17 @@ -1485,68 +1485,68 @@ Take a dose of medicine. 19 Prevention is better than cure. 26 A morning walk is useful for health. 29 His condition is out of danger now. 28 -The patient's condition is critical. 30 +The patients condition is critical. 30 My eyes are not well. 16 There is beauty in good health. 25 Cancer is a serious disease. 23 -Don't eat too much. 14 +Dont eat too much. 14 I feel like vomiting. 17 I am feeling feverish. 18 -Can you read the thermometer? 24 +Can you read the thermometer 24 A good diet is the best doctor. 24 Milk is a perfect diet. 18 He is physically fit. 17 He is mentally fit. 15 -Don't blame me. 11 +Dont blame me. 11 The case has been postponed. 23 He is a hardcore criminal. 21 Mark is an intelligent lawyer. 25 It was a brutal murder. 18 Crime has been proved. 18 This is a heinous crime. 19 -What is the evidence? 17 +What is the evidence 17 The police have authentic proofs. 28 He has been released from prison. 27 The criminal has absconded. 23 Your act is illegal. 16 These are all forged documents. 26 The criminal has been sentenced to death. 34 -What is the judgment in the case? 26 +What is the judgment in the case 26 John is an eyewitness. 18 Justice delayed is justice denied. 29 -He is a law-abiding man. 18 -When will the tournament begin? 26 -What is the score? 14 +He is a lawabiding man. 18 +When will the tournament begin 26 +What is the score 14 Select the players. 16 He is a very good player. 19 Hit the ball with the bat. 20 He is playing chess. 16 The match has begun. 16 Strike out. 9 -Are we all on? 10 -Can everybody hear me? 18 -Could you speak more slowly, please? 30 -Is that okay with everyone? 22 -I'm back on the line again. 20 +Are we all on 10 +Can everybody hear me 18 +Could you speak more slowly, please 30 +Is that okay with everyone 22 +Im back on the line again. 20 Good morning ladies and gentlemen. 29 Good afternoon ladies and gentlemen. 31 -Can I ask that we all state our names, please? 36 +Can I ask that we all state our names, please 36 Good evening ladies and gentlemen. 29 -I'm going to make this quick for you. 28 +Im going to make this quick for you. 28 Today I would like to outline our plans. 32 Well, that brings me to the end of my presentation. 41 Thanks so much for listening. 24 -Well, that's it from me. thanks a lot. 28 +Well, thats it from me. thanks a lot. 28 Sorry, I interrupted you. 21 Please go on. 10 Sorry, but just to clarify. 22 -That's an excellent point. 21 +Thats an excellent point. 21 I totally agree with you on that. 26 -Yes, I get what you're saying. 23 -I tell you how we see it? 18 -Are you free to talk again next week? 29 -When can we talk about this again? 27 -Let's start meeting. 16 +Yes, I get what youre saying. 23 +I tell you how we see it 18 +Are you free to talk again next week 29 +When can we talk about this again 27 +Lets start meeting. 16 I am not able to join the office today. 30 Please inform him officially. 25 Sure sir will inform him. 20 @@ -1563,7 +1563,7 @@ My favorite sport is cricket. 24 He is a doctor. 11 I am punctual. 11 I know English and Hindi. 20 -May I come in sir? 13 +May I come in sir 13 Good morning to all. 16 I have come for an interview. 23 He is a businessman. 16 @@ -1575,24 +1575,24 @@ I am interested to join the army. 26 I can speak English fluently. 24 I have a brother and a sister. 23 There are three members in my family. 30 -Boss has accepted the mark's resignation. 34 -Did I come late? 12 +Boss has accepted the marks resignation. 34 +Did I come late 12 Boss has warned sam. 16 Please call the manager. 20 Type the letter quickly. 20 -What is lunchtime? 15 -Where is the notice board? 21 -Can I complete this work? 20 +What is lunchtime 15 +Where is the notice board 21 +Can I complete this work 20 It is my first day in the office. 25 There is too much pressure of work. 28 Please dust my table. 17 He will come late to the office today. 30 -At which position are you working? 28 +At which position are you working 28 Ron is on the leave for two days. 25 Please meet the manager. 20 -How many shifts are there? 21 -Where is the lobby? 15 -Is your leave application approved? 30 +How many shifts are there 21 +Where is the lobby 15 +Is your leave application approved 30 I have also applied for this position. 31 Please complete your work on time. 28 I like cake. 9 @@ -2322,7 +2322,7 @@ Shraa will have been teaching. 25 Shraa will have been singing. 24 John is my son. 11 Shraa is not at home. 16 -John doesn't go to school. 20 +John doesnt go to school. 20 Mom scolds me. 11 He plays with passion. 18 He is a good leader. 15 @@ -2353,61 +2353,61 @@ Post exams, students will be getting days holidays. 43 He is a good teacher. 16 Today is a holiday. 15 Today is a school holiday. 21 -Is john not at home? 15 -What does your father do? 20 -Do you know him? 12 -Which color do you like? 19 -How old are you? 12 -Where are you going? 16 -Are you ok? 8 -Can you do me a favor? 16 -Should I text or call? 17 -Are you joining us or not? 20 -Why is the sky blue? 15 -Where is your new bike? 18 -Did you eat lunch yet? 17 -Where do you stay? 14 -Did you see her? 12 -Did you make a plan? 15 -Are you tired? 11 -Would you like coffee? 18 -Is she sick? 9 -Did you fall asleep? 16 -Did I go to the office? 17 -What is your name? 14 -Where do you live? 14 -Which one is your book? 18 -Do you have a pen? 13 -Which is the best route? 19 -What are you eating? 16 -How are things with you? 19 -Are you feeling better today? 24 -Is everybody ready to start? 23 -Who isn't here today? 16 -Who is absent today? 16 -Why were you absent last Friday, Tom? 30 -What's the matter with anna today? 27 -What's wrong with anna today? 23 -We started ten minutes ago. what have you been doing? 42 -Did you oversleep? 15 -Don't let it happen again. 20 -Where have you been? 16 -Did you miss your bus? 17 -Do you get it? 10 -Are you with me? 12 -Do you follow me? 13 -Ok so far? 7 -Do you understand? 15 -What did you say? 13 +Is john not at home 15 +What does your father do 20 +Do you know him 12 +Which color do you like 19 +How old are you 12 +Where are you going 16 +Are you ok 8 +Can you do me a favor 16 +Should I text or call 17 +Are you joining us or not 20 +Why is the sky blue 15 +Where is your new bike 18 +Did you eat lunch yet 17 +Where do you stay 14 +Did you see her 12 +Did you make a plan 15 +Are you tired 11 +Would you like coffee 18 +Is she sick 9 +Did you fall asleep 16 +Did I go to the office 17 +What is your name 14 +Where do you live 14 +Which one is your book 18 +Do you have a pen 13 +Which is the best route 19 +What are you eating 16 +How are things with you 19 +Are you feeling better today 24 +Is everybody ready to start 23 +Who isnt here today 16 +Who is absent today 16 +Why were you absent last Friday, Tom 30 +Whats the matter with anna today 27 +Whats wrong with anna today 23 +We started ten minutes ago. what have you been doing 42 +Did you oversleep 15 +Dont let it happen again. 20 +Where have you been 16 +Did you miss your bus 17 +Do you get it 10 +Are you with me 12 +Do you follow me 13 +Ok so far 7 +Do you understand 15 +What did you say 13 One more time, please. 18 Say it again, please. 17 -Like this? 8 -Is this ok? 8 -So what's the plan? 14 +Like this 8 +Is this ok 8 +So whats the plan 14 Sit there. 8 Let me go. 7 Tell the truth. 12 -Please don't go. 12 +Please dont go. 12 You should study hard. 18 Go left and then turn right. 22 Please leave me alone. 18 @@ -2419,23 +2419,23 @@ Be careful. 9 Please pass the salt. 17 Shut the door. 11 Do not enter. 10 -Let's eat. 7 +Lets eat. 7 Come with me. 10 Be nice. 6 Let me help you. 12 -Let's begin today's lesson. 21 -Let's begin our lesson now. 21 +Lets begin todays lesson. 21 +Lets begin our lesson now. 21 I think we can start now. 19 Now we can get down to work. 21 -It's time to begin, please stop talking. 32 -I'm waiting for you to be quiet. 24 +Its time to begin, please stop talking. 32 +Im waiting for you to be quiet. 24 Settle down now so we can start. 25 -We won't start until everyone is quiet. 31 +We wont start until everyone is quiet. 31 Stop talking and be quiet. 21 Pack your things away. 18 Close your books. 14 Put your books away. 16 -Are you ready? 11 +Are you ready 11 Turn to page number 10. 18 Pay attention, everybody. 22 Repeat after me. 13 @@ -2445,58 +2445,58 @@ Put your hands up. 14 Put your hands down. 16 Show me your pencil. 16 Turn off your mobile. 17 -What a surprise! 13 -I cannot believe it! 16 -God's heaven! 10 -What a horrible day! 16 -Go away! 6 -How fast you ran! 13 -What a happy ending! 16 -Fantastic, let's go! 16 -Wow, I really like you! 18 -I'm so mad right now! 15 -What awful weather! 16 -What lovely flowers! 17 -How ridiculous! 13 -How clever of you! 14 -What a nice evening! 16 -You are amazing! 13 -I did it! 6 -Oh my god! 7 -What a beautiful company! 21 -What a great job! 13 -Ya! we made it! 10 -What a good idea! 13 -I am sorry! 8 -It is enough! 10 -We are with you! 12 -Extremely beautiful! 18 -What a great victory! 17 -How disgusting! 13 -What a beautiful child! 19 -Don't worry! 9 -Yes, it is true! 12 -How he dare! 9 -Very good! 8 -What a terrible accident! 21 -Clean the floor! 13 -Don't run! 7 -Don't move! 8 -Great stuff! 10 -You did a great job! 15 +What a surprise 13 +I cannot believe it 16 +Gods heaven 10 +What a horrible day 16 +Go away 6 +How fast you ran 13 +What a happy ending 16 +Fantastic, lets go 16 +Wow, I really like you 18 +Im so mad right now 15 +What awful weather 16 +What lovely flowers 17 +How ridiculous 13 +How clever of you 14 +What a nice evening 16 +You are amazing 13 +I did it 6 +Oh my god 7 +What a beautiful company 21 +What a great job 13 +Ya we made it 10 +What a good idea 13 +I am sorry 8 +It is enough 10 +We are with you 12 +Extremely beautiful 18 +What a great victory 17 +How disgusting 13 +What a beautiful child 19 +Dont worry 9 +Yes, it is true 12 +How he dare 9 +Very good 8 +What a terrible accident 21 +Clean the floor 13 +Dont run 7 +Dont move 8 +Great stuff 10 +You did a great job 15 Quite right. 10 -Hard lines! 9 -Never mind! 9 +Hard lines 9 +Never mind 9 Count from one to ten. 17 He fell from the tree. 17 Keep away from me. 14 I am calling from Pune. 18 Stay away from us. 14 -Where is this from? 15 -Where are you from? 15 +Where is this from 15 +Where are you from 15 Do not move from here. 17 I heard from Ravi. 14 -Is it far from here? 15 +Is it far from here 15 I am off today. 11 Turn off the tv. 12 Turn off the gas. 13 @@ -2511,7 +2511,7 @@ I have been here since July. 22 He has been trying since Monday. 26 I have been working since morning. 28 Since it rained, I did not go. 23 -Have you been here since? 20 +Have you been here since 20 Since it is important, I will do it. 28 Since it was cold, we made a fire. 26 Since you are tired, you should rest. 30 @@ -2521,7 +2521,7 @@ Pray for me. 9 Wait for us. 9 Cover for me. 10 Do it for me. 9 -Is it for me? 9 +Is it for me 9 Call for help. 11 Hold it for me. 11 Stay for lunch. 12 @@ -2529,16 +2529,16 @@ Be happy for me. 12 Come home before six. 17 Look before you leap. 17 You said that before. 17 -Where were you before? 18 +Where were you before 18 We met before. 11 -Have we met before? 15 +Have we met before 15 I have seen you before. 18 This happened before. 18 I have seen it before. 17 We tried this before. 17 Read after me. 11 He is after me. 11 -Who is after you? 13 +Who is after you 13 You are after me. 13 They are after me. 14 He came after you. 14 @@ -2549,10 +2549,10 @@ Sit by me. 7 I came by bus. 10 Come sit by me. 11 I will go by car. 12 -Let's go by bus. 11 +Lets go by bus. 11 Please stand by. 13 Send it by mail. 12 -Can I pay by card? 13 +Can I pay by card 13 I pay by check. 11 I go by bicycle. 12 Eat with us. 9 @@ -2675,7 +2675,7 @@ He has been busy since he came. 24 I will do it, since it is important. 28 You should rest since you are tired. 29 I have been here since morning. 25 -I haven't seen shraa since morning. 28 +I havent seen shraa since morning. 28 Do as I say. 8 Do as you like. 11 Do as I told you. 12 @@ -2708,118 +2708,118 @@ You come otherwise I will move. 25 You walk otherwise I will run. 24 I know him since childhood. 22 He will play otherwise I have to play. 30 -Let's go now. otherwise, we'll be late. 29 -Oh honey! 7 -Oh dear! 6 -That's it! 7 -Why not! 6 -What a news! 9 -Is it! 4 -Oh no! 4 -How sad! 6 -Terrible mistake! 15 -Touch wood! 9 -Finger crossed! 13 -Look out! 7 -Sit down! 7 -Stop him! 7 -Get out! 6 -What a shame! 10 -Merry christmas! 14 -Happy new year! 12 -God bless you! 11 -By god's grace! 11 -Thank god! 8 -Love you! 7 +Lets go now. otherwise, well be late. 29 +Oh honey 7 +Oh dear 6 +Thats it 7 +Why not 6 +What a news 9 +Is it 4 +Oh no 4 +How sad 6 +Terrible mistake 15 +Touch wood 9 +Finger crossed 13 +Look out 7 +Sit down 7 +Stop him 7 +Get out 6 +What a shame 10 +Merry christmas 14 +Happy new year 12 +God bless you 11 +By gods grace 11 +Thank god 8 +Love you 7 She can draw. 10 Philip can run. 12 -Can you ride? 10 -Can you help? 10 +Can you ride 10 +Can you help 10 They can find. 11 I can eat. 7 You can not go. 11 You can come. 10 We can go. 7 -Can we talk? 9 -Can you make it? 12 +Can we talk 9 +Can you make it 12 I can not do. 9 -Can you please? 12 +Can you please 12 He can save. 9 You can eat. 9 -Could you open? 12 -Could you show me? 14 +Could you open 12 +Could you show me 14 You could ask. 11 I could lend. 10 She could read. 12 We could go. 9 He could not come. 14 -Could we take it? 13 +Could we take it 13 They could fill. 13 She could make. 12 I could run. 9 -Could Rita jump? 13 -Could you please help me? 20 +Could Rita jump 13 +Could you please help me 20 Ram could tell. 12 He could have. 11 -Could you open the door? 19 +Could you open the door 19 I will come with you. 16 -Will I show you? 12 -She will stop? 11 +Will I show you 12 +She will stop 11 I will hold this. 13 -Will you run? 10 -Will I carry it? 12 +Will you run 10 +Will I carry it 12 She will know. 11 He will take it. 12 Gita will make. 12 Sita will help. 12 I will fill it. 11 -How will you do it? 14 -Would you come with me? 18 -Would you like it? 14 -Would he pass? 11 +How will you do it 14 +Would you come with me 18 +Would you like it 14 +Would he pass 11 She would go. 10 He would make. 11 -Would they do? 11 -Would you jump? 12 +Would they do 11 +Would you jump 12 We would show. 11 I would run. 9 -Would you know? 12 +Would you know 12 They would help. 13 -Would you talk? 12 +Would you talk 12 Mona would fill. 13 Rani would tell. 13 -Would she take it? 14 +Would she take it 14 He would like to meet you. 20 -Would you like to join us? 20 -Would you like to be my friend? 24 -Would you like to have coffee with me? 30 +Would you like to join us 20 +Would you like to be my friend 24 +Would you like to have coffee with me 30 I would like to meet him. 19 -What would you like? 16 +What would you like 16 I shall come. 10 You shall meet. 12 -Shall he go? 9 -Shall we know? 11 -Shall I help? 10 +Shall he go 9 +Shall we know 11 +Shall I help 10 We shall read. 11 They shall tell. 13 She shall make. 12 -Shall you speak? 13 +Shall you speak 13 He shall find. 11 -Shall I fill it? 12 +Shall I fill it 12 Jack shall run. 12 -Shall you stop? 12 -Shall we talk? 11 +Shall you stop 12 +Shall we talk 11 I shall save. 10 -Shall I come? 10 +Shall I come 10 You should do it. 13 -Should he come? 12 +Should he come 12 We should go. 10 You should try it. 14 They should help. 14 He should find it. 14 She should stop. 13 I should join. 11 -Should we talk? 12 +Should we talk 12 You should know. 13 He should take. 12 We should run. 11 @@ -2827,7 +2827,7 @@ Vinod should love. 15 They should fill it. 16 Mira should read. 14 We should try it together. 21 -Should I join you guys? 18 +Should I join you guys 18 You should go home. 15 You should go to bed. 16 We ought to do. 11 @@ -2862,9 +2862,9 @@ They must take. 12 She must play. 11 You must study. 12 You must sleep now. 15 -May I see? 7 -May you come? 10 -May we talk? 9 +May I see 7 +May you come 10 +May we talk 9 They may join. 11 She may play. 10 He may read. 9 @@ -2876,8 +2876,8 @@ She may stop. 10 He may save. 9 You may tell. 10 We may know. 9 -May I help you? 11 -May I see your notebook? 19 +May I help you 11 +May I see your notebook 19 She might come. 12 They might join. 13 You might go. 10 @@ -2895,9 +2895,9 @@ Karan might show. 14 I might do this. 12 I might go. 8 I need to go now. 12 -Do you need anything? 17 +Do you need anything 17 I need to find it. 13 -What needs to save? 15 +What needs to save 15 We need to help. 12 They need money. 13 I have to go. 9 @@ -2922,7 +2922,7 @@ I have another plan. 16 Show me another watch. 18 I have another pen. 15 That is enough. 12 -Is that enough? 12 +Is that enough 12 You know enough. 13 I am strong enough. 15 That is good enough. 16 @@ -2960,7 +2960,7 @@ We need more. 10 I have one more. 12 Give me one more. 13 I need more help. 13 -Do you want more? 13 +Do you want more 13 He should talk less. 16 I have less money. 14 You should smoke less. 18 @@ -2987,16 +2987,16 @@ I made several mistakes. 20 He read several books. 18 He worked for several hours. 23 I told you several times. 20 -How many died? 11 +How many died 11 Many fish died. 12 I have many books. 14 I remember many things. 19 -How many do you want? 16 +How many do you want 16 I have so many ideas. 16 We have many members. 17 Many of us are hungry. 17 Many of us were tired. 17 -How many chocolates do you have? 26 +How many chocolates do you have 26 Give me a few. 10 I have a few pens. 13 I made a few calls. 14 @@ -3032,42 +3032,42 @@ I am a little hungry. 16 It is a little cold. 15 Clean up a little. 14 He is a little upset. 16 -He got somebody's back up. 20 -I put somebody's nose out of joint. 27 +He got somebodys back up. 20 +I put somebodys nose out of joint. 27 She reduced somebody to tears. 25 She showed me up. 13 We got in her black books. 20 She took umbrage at my remarks. 25 You should be ashamed. 18 -Are you mad at me? 13 +Are you mad at me 13 You are irresponsible. 19 She made her fool. 14 This makes me want to kill myself. 27 -Who knows? 8 +Who knows 8 Not as far as I know. 15 Let me check on that. 16 -I'm not sure I'm the best person to answer that. 36 +Im not sure Im the best person to answer that. 36 I have the same question. 20 -That's not my area of expertise, I will ask. 34 -I will double-check and get back to you. 31 +Thats not my area of expertise, I will ask. 34 +I will doublecheck and get back to you. 31 I wish I knew. 10 -I am afraid I don't know. 18 -I don't have that information here right now. 36 -I haven't got a clue. 15 -I haven't looked at that yet. 22 -I'll get back to you on that one. 24 -I'm going to investigate that further. 31 -It's a mystery to me. 15 -It's beyond me. 11 -That's exactly what I'm seeking to answer. 33 -That's a good question, but I don't know. 31 -I don't have the foggiest idea. 24 -How should I know? 14 +I am afraid I dont know. 18 +I dont have that information here right now. 36 +I havent got a clue. 15 +I havent looked at that yet. 22 +Ill get back to you on that one. 24 +Im going to investigate that further. 31 +Its a mystery to me. 15 +Its beyond me. 11 +Thats exactly what Im seeking to answer. 33 +Thats a good question, but I dont know. 31 +I dont have the foggiest idea. 24 +How should I know 14 He is a brainy kid. 14 -He's really on the ball. 18 -She doesn't miss a trick. 19 -He's a bright spark. 15 -He's quick off the mark. 18 +Hes really on the ball. 18 +She doesnt miss a trick. 19 +Hes a bright spark. 15 +Hes quick off the mark. 18 Your voice comes through loud and clear in this piece. 44 You are so tenacious. that perseverance is really paying off. 50 My daughter is sharp as a tack, just like her mother. 42 @@ -3079,8 +3079,8 @@ I had to make a detour because of roadworks. 35 Something came up. 15 I have a flat tire. 14 I missed the bus. 13 -I couldn't find my car keys. 21 -It's not an easy place to find. 23 +I couldnt find my car keys. 21 +Its not an easy place to find. 23 I am sorry I am so late to work. 23 My sincerest apology for not making it to the meeting on time. 50 I apologize wholeheartedly for not being on time. 41 @@ -3089,280 +3089,280 @@ Yes, she lied. 11 Chuckled in spite of himself. 24 He had a soft, almost musical voice. 29 You sound as if you are about to cry. 28 -What's new with you? 15 -What is happening? 15 -How are things coming along? 23 -How is life sailing? 16 -Is there anything concerning you? 28 -And yourself? 11 -And how have you been? 17 -How's it going with you? 18 -How are things on your end? 21 -Have you been doing ok? 18 -How's everything? 14 -What's sizzling? 13 -What's cracking? 13 -What's popping? 12 -How's life treating you? 19 +Whats new with you 15 +What is happening 15 +How are things coming along 23 +How is life sailing 16 +Is there anything concerning you 28 +And yourself 11 +And how have you been 17 +Hows it going with you 18 +How are things on your end 21 +Have you been doing ok 18 +Hows everything 14 +Whats sizzling 13 +Whats cracking 13 +Whats popping 12 +Hows life treating you 19 I hope you are in good hands. 22 -How met? 6 -Well, who do we have here? 20 -Don't give me that. 14 +How met 6 +Well, who do we have here 20 +Dont give me that. 14 Tell me another one. 16 -I don't think. 10 +I dont think. 10 I disagree. 9 I guess not. 9 -I don't believe that. 16 +I dont believe that. 16 I cannot accept it. 15 I do not guess. 11 -Doesn't fit. 9 -Doesn't really look like. 20 -It isn't probable. 14 -Do you also think that? 18 -Do you believe that? 16 -Do you have an opinion? 18 -Do you have any opinion about? 24 -In your honest opinion? 19 -Would you agree with that? 21 -Can you give me your thoughts? 24 -Do you have any views? 17 -What a let-down! 12 -What a disaster! 13 +Doesnt fit. 9 +Doesnt really look like. 20 +It isnt probable. 14 +Do you also think that 18 +Do you believe that 16 +Do you have an opinion 18 +Do you have any opinion about 24 +In your honest opinion 19 +Would you agree with that 21 +Can you give me your thoughts 24 +Do you have any views 17 +What a letdown 12 +What a disaster 13 To be honest I was a bit disappointed. 30 I wish I had worked harder. 21 -I've never been so disappointed in my whole life! 39 +Ive never been so disappointed in my whole life 39 Pretty fed up. 11 -What a bummer! 11 +What a bummer 11 I thought you could do better. 24 -I've never been so disappointed in my life. 34 -We experienced immense relief! 26 -No wonder he's always so stressed out! 30 -That's done. I feel better now! 23 +Ive never been so disappointed in my life. 34 +We experienced immense relief 26 +No wonder hes always so stressed out 30 +Thats done. I feel better now 23 Breathe a sigh of relief. 20 -I can't stop thinking about it. 24 -I'm really nervous. 15 -I've got butterflies in my stomach. 28 +I cant stop thinking about it. 24 +Im really nervous. 15 +Ive got butterflies in my stomach. 28 To break out in a cold sweat. 22 -Are you doing anything this weekend? 30 -Are you free tomorrow afternoon? 27 -Would you like to join me for lunch? 28 -Wanna go hiking on Saturday? 23 -I'll have to take a raincheck. 23 -Would you like to play cards? 23 -Do you feel like going for a walk? 26 +Are you doing anything this weekend 30 +Are you free tomorrow afternoon 27 +Would you like to join me for lunch 28 +Wanna go hiking on Saturday 23 +Ill have to take a raincheck. 23 +Would you like to play cards 23 +Do you feel like going for a walk 26 Thank you for your kind invitation. 29 -I'll be glad to do so. 15 -Thanks, I'd like that very much. 25 -That's a great idea. 15 +Ill be glad to do so. 15 +Thanks, Id like that very much. 25 +Thats a great idea. 15 Thanks for inviting me to dinner. 27 -It's very nice of you. 16 -Many thanks for your kind invitation. I'll join you. 41 +Its very nice of you. 16 +Many thanks for your kind invitation. Ill join you. 41 Sure. thank you. 12 -With pleasure! 12 -Have a good day! 12 +With pleasure 12 +Have a good day 12 It was great to see you again. have a good evening. 39 -Catch you later! 13 +Catch you later 13 I gotta run. 9 -Let's catch up at happy hour! 22 +Lets catch up at happy hour 22 Well, I really should get back to work. 31 Anyway, it was nice catching up with you. 33 Anyway, it was great seeing you. 26 Please excuse me, I have to check on the kids before they go to bed. 53 Excuse me, but I have to leave. 24 I will let you know. 15 -Thanks very much for your help. bye! 28 -I'd better go. great to chat! 21 -Hey, guys, I'll but the next round. 27 +Thanks very much for your help. bye 28 +Id better go. great to chat 21 +Hey, guys, Ill but the next round. 27 am is time for the last call. 22 -It's my turn to be the designated driver, so I'll just have a soda. 51 +Its my turn to be the designated driver, so Ill just have a soda. 51 After one or two glasses of wine, I get buzzed. 37 Drink like a fish. 14 Three sheets to the wind. 20 Paint the town red. 15 There is a lot of booze at the party tonight. 35 -I'm not such a big drinker. 20 -He's as drunk as a skunk. 18 -What about going to? 16 -Don't you think it is a good idea? 25 +Im not such a big drinker. 20 +Hes as drunk as a skunk. 18 +What about going to 16 +Dont you think it is a good idea 25 I suggest you. 11 I suggest we should visit Paris. 26 -Why don't we do our homework? 22 -May I suggest? 11 -Why don't you join an English club? 27 +Why dont we do our homework 22 +May I suggest 11 +Why dont you join an English club 27 You should try to practice English. 29 -You'd better wake up early. 21 -If I were you, I'd call her. 20 +Youd better wake up early. 21 +If I were you, Id call her. 20 This may create a slight hurdle for us. 31 -There's been an oversight. 21 +Theres been an oversight. 21 There may have been some confusion. 29 -It seems like we've hit a bump. 23 -Let's recheck the statement together. 31 -Let's look at it again later as it needs a little revision. 46 -Where did you hear that? 19 -I'm alive. 7 +It seems like weve hit a bump. 23 +Lets recheck the statement together. 31 +Lets look at it again later as it needs a little revision. 46 +Where did you hear that 19 +Im alive. 7 Very well, thanks. 15 -I'm doing really well. 17 -I'm pretty standard right now. 24 -I'm hanging in there. 16 -I am blessed! 10 -Sunshine all day long! 18 +Im doing really well. 17 +Im pretty standard right now. 24 +Im hanging in there. 16 +I am blessed 10 +Sunshine all day long 18 Well enough to chat with you if you wish to. 34 -I'm better than I was but not nearly as good as I'm going to be. 47 -Way better than I deserve! 21 +Im better than I was but not nearly as good as Im going to be. 47 +Way better than I deserve 21 Better than some, not as good as others. 32 Much better now that you are with me. 29 I am coming to visit. 16 You are amazing. you are so strong. you will get through this. 48 Hope you feel better. 17 -I'm sorry to hear such terrible news. 29 -If there's anything I can do, just let me know. 36 -I'm very sorry about your loss. 24 +Im sorry to hear such terrible news. 29 +If theres anything I can do, just let me know. 36 +Im very sorry about your loss. 24 Please accept my sincerest sympathies. 33 -If you need anything, I'm here for you. 30 -My heart hurts for you. I'm very sorry. 29 +If you need anything, Im here for you. 30 +My heart hurts for you. Im very sorry. 29 It must have been really hard for you. 30 -Oh no, really? 11 +Oh no, really 11 I hope you can catch another flight. 29 I know how you feel. 15 Everything happens for a reason. 27 -I'm sorry this is happening to you. 27 -What is your sport? 15 -Who is your team? 13 +Im sorry this is happening to you. 27 +What is your sport 15 +Who is your team 13 On the home stretch. 16 The ball is in your court. 20 -Three strikes and you're out. 23 +Three strikes and youre out. 23 I am good at volleyball. 19 -What sports are you good at? 22 -Where is the match being played? 26 +What sports are you good at 22 +Where is the match being played 26 Bark up the wrong tree. 18 -Yes, it's pretty easy to play. 23 -I have been practicing it for  years. 29 +Yes, its pretty easy to play. 23 +I have been practicing it for years. 29 Sports are sources of recreation. 28 -It's interesting I like it. 21 +Its interesting I like it. 21 It looks good. 11 -It's my thing. 10 -This is wicked! 12 +Its my thing. 10 +This is wicked 12 It looks fantastic. 16 -It's dull. 7 -I'm not keen on it. 13 -That's not for me. 13 -It's as interesting as watching paint dry. 34 -I can't say that I find it interesting. 30 +Its dull. 7 +Im not keen on it. 13 +Thats not for me. 13 +Its as interesting as watching paint dry. 34 +I cant say that I find it interesting. 30 You do not need makeup. you are already so naturally beautiful. 51 You are adorable. 14 You look mesmerizing. 18 -You always make me smile! 20 -It's so nice to see a man who can cook. 28 +You always make me smile 20 +Its so nice to see a man who can cook. 28 You look prettier than a picture. 27 You are breathtaking. 18 You are very fit. 13 -I always feel safe when I'm around you. 30 +I always feel safe when Im around you. 30 I love the way you. 14 -Is there anything you can't do? 24 +Is there anything you cant do 24 I am proud to know you. 17 You are so good at fixing things. 26 It is an honor to know you. 20 You are so artistic. 16 -Baby, it's cold outside. 19 +Baby, its cold outside. 19 A blanket of snow. 14 Brace yourself, winter is coming. 28 To leave someone out in the cold. 26 -It's arctic outside! 16 -It's so cold my hands are freezing. 27 -It's been frigid outside for a week. 28 -It's freezing outside. I think we should stay at home. 42 -It's cold and blustery outside. 25 -This is the best weather we've had all. 30 -I promise you that that's the truth. 28 -I swear I won't let you down. 21 +Its arctic outside 16 +Its so cold my hands are freezing. 27 +Its been frigid outside for a week. 28 +Its freezing outside. I think we should stay at home. 42 +Its cold and blustery outside. 25 +This is the best weather weve had all. 30 +I promise you that thats the truth. 28 +I swear I wont let you down. 21 I swear I will never leave you. 24 I assure you that I will be there on time. 32 -Believe me, I won't make you disappointed. 34 +Believe me, I wont make you disappointed. 34 Trust me, I can do it. 16 Cast iron guarantee. 17 My word is my bond. 14 I give you my word. 14 She shows considerable promise. 27 -Is that a promise? 14 +Is that a promise 14 To turn over a new leaf. 18 -The elevator doesn't go to the top floor. 32 -Somewhere there's a village missing its idiot. 38 -Are they brave or just dumb? 22 +The elevator doesnt go to the top floor. 32 +Somewhere theres a village missing its idiot. 38 +Are they brave or just dumb 22 Don,t be silly. 12 Forgot to pay his brain bill. 23 A vacancy on the top floor. 21 Grow up. 6 -If you believe that, you'll believe anything. 37 +If you believe that, youll believe anything. 37 Uses his head to keep the rain out of his neck. 36 -Can I interrupt for a moment? 23 -May I add? 7 +Can I interrupt for a moment 23 +May I add 7 Let me add something. 17 Let me interrupt a second. 21 -Can I stop you there for a moment? 26 -Can I just mention something? 24 -Excuse me, I'd like to say something. 29 -I don't mean to be rude but may I interrupt quickly? 40 -Sorry to interrupt but may I ask a quick question? 40 -I don't mean to be rude but I'd like to ask a question. 40 -Excuse me but may I jump in here? 25 -Can I just butt in for a second? 24 +Can I stop you there for a moment 26 +Can I just mention something 24 +Excuse me, Id like to say something. 29 +I dont mean to be rude but may I interrupt quickly 40 +Sorry to interrupt but may I ask a quick question 40 +I dont mean to be rude but Id like to ask a question. 40 +Excuse me but may I jump in here 25 +Can I just butt in for a second 24 I adore sunbathing. 16 She is fond of chocolate. 20 -She doesn't like cooking very much. 28 -Horse riding isn't really his thing. 29 +She doesnt like cooking very much. 28 +Horse riding isnt really his thing. 29 I dislike wasting time. 19 -He can't stand his boss. 18 +He cant stand his boss. 18 He detests being late. 18 -I'm keen on it. 10 -I adore madonna's music. 19 +Im keen on it. 10 +I adore madonnas music. 19 I abhor drugs. 11 I loathe onions. 13 -What books do you like to read? 24 -I'm fond of sweets. 14 +What books do you like to read 24 +Im fond of sweets. 14 Classical music is not very me. 25 Today it is cloudy and rainy out. 26 -It's going to rain by the looks of it. 28 +Its going to rain by the looks of it. 28 I think it is going to rain later. 26 I hear that showers are coming our way. 31 -It's been trying to rain all morning. 29 +Its been trying to rain all morning. 29 It is a drizzly afternoon. 21 Heavy rainfall will ruin the celebration. 35 A heavy rainstorm hit our farm last night. 34 -Nice weather, huh? 15 -Man, it's really downpouring out there. 32 -Stay dry! 7 -It's spitting. 11 -Take your umbrella. it looks like it's going to rain. 41 -Do you take credit cards? 20 -I'll pay in cash. 12 -Could I have a receipt, please? 25 -How much are these? 15 -Could I have a refund? 17 -Could I speak to the manager? 23 -That's expensive. 14 -Could you tell me where the soap is? 28 -Where can I find the toothpaste? 26 -Does it come with a guarantee? 24 +Nice weather, huh 15 +Man, its really downpouring out there. 32 +Stay dry 7 +Its spitting. 11 +Take your umbrella. it looks like its going to rain. 41 +Do you take credit cards 20 +Ill pay in cash. 12 +Could I have a receipt, please 25 +How much are these 15 +Could I have a refund 17 +Could I speak to the manager 23 +Thats expensive. 14 +Could you tell me where the soap is 28 +Where can I find the toothpaste 26 +Does it come with a guarantee 24 I am looking for a pair of trousers. 28 -Do you have these in a size smaller too? 31 -Have you got any cheese? 19 -Where can I find some vegetables? 27 +Do you have these in a size smaller too 31 +Have you got any cheese 19 +Where can I find some vegetables 27 You are seriously gifted at this. 27 -You could sell your art! 19 -You are really good at this! 22 -You are an expert at this! 20 -If you taught a class on this, I would sign up! 36 -You are so skilled at baking you really know what you are doing! 51 -Beautiful! how did you learn to do that? 31 -Stunning! great job! 16 -You're more helpful than you realize. 30 +You could sell your art 19 +You are really good at this 22 +You are an expert at this 20 +If you taught a class on this, I would sign up 36 +You are so skilled at baking you really know what you are doing 51 +Beautiful how did you learn to do that 31 +Stunning great job 16 +Youre more helpful than you realize. 30 You always know how to find that silver lining. 38 Her eyelids drooped. 17 Her eyes sparkled. 15 He looked heavenward. 18 Her eyes swam with tears. 20 His eyebrows rose. 15 -He gave a half-smile. 16 +He gave a halfsmile. 16 He plastered a smile on his face. 26 Her lower lip trembled. 19 She went white. 12 @@ -3370,24 +3370,24 @@ The color drained out of his face. 27 His expression dulled. 19 Recognition dawned on her face. 26 It was a warm day and the horses sweat. 30 -Well, it's certainly not cold. 24 -It's extremely hot outside. 22 -It's boiling hot! 13 +Well, its certainly not cold. 24 +Its extremely hot outside. 22 +Its boiling hot 13 It was a sweltering August in Poland. 30 -It's very warm outside. 18 -It's a tropical heat. 16 -It's an oppressive heat. 19 -It's pretty hot, isn't it? 19 -It's nice in the sun. 15 -It's positively tropical today. 26 +Its very warm outside. 18 +Its a tropical heat. 16 +Its an oppressive heat. 19 +Its pretty hot, isnt it 19 +Its nice in the sun. 15 +Its positively tropical today. 26 So hot for this time of year. 22 -I heard it's supposed to be sunny tomorrow. that's good, right? 49 -I'm tired of waiting. 16 +I heard its supposed to be sunny tomorrow. thats good, right 49 +Im tired of waiting. 16 I was really tired, so I went back to bed. 32 Now I am very tired and I will rest. 27 Now I am too tired to write more. 25 -It's late, and I'm tired. 18 -I don't know why I'm so tired. 21 +Its late, and Im tired. 18 +I dont know why Im so tired. 21 Still feel a little tired. 21 I am fatigued. 11 I am drained. 10 @@ -3396,20 +3396,20 @@ I am on my last leg. 14 I am wiped out. 11 I cannot keep my eyes open. 21 Hello, maria. nice to hear from you. 28 -Hello, how can I help you? 20 -Just a sec. I'll get him. 17 -Hang on a moment. I'll see if she's in. 27 -One moment please. I'll see if he's available. 35 -Could you speak up a little, please? 29 -Could you please repeat that? 24 -Can you speak a little slower, please? 31 -Could you let me know when she'll be in the office, please? 46 -Can you call again? I think we have a bad connection. 41 +Hello, how can I help you 20 +Just a sec. Ill get him. 17 +Hang on a moment. Ill see if shes in. 27 +One moment please. Ill see if hes available. 35 +Could you speak up a little, please 29 +Could you please repeat that 24 +Can you speak a little slower, please 31 +Could you let me know when shell be in the office, please 46 +Can you call again I think we have a bad connection. 41 Please hold for just a minute. I have another call. 40 -Please don't call this number again. 29 -Would you like to leave a message? 27 -No, that's okay. I'll call him later. 27 -Fine. I'll let him know you called. 26 +Please dont call this number again. 29 +Would you like to leave a message 27 +No, thats okay. Ill call him later. 27 +Fine. Ill let him know you called. 26 As for fit as a fiddle. 17 As exciting as watching paint dry. 28 As different as night and day. 24 @@ -3428,28 +3428,28 @@ As calm as a millpond. 17 As cheap as dirt. 13 As clean as a whistle. 17 As happy as a clam. 14 -Could you find out? 15 -Do you have any idea how to use this machine? 35 -Could you please give me the details? 30 -Could I please get the details? 25 -May I please get the details? 23 -Do you mind if I get the details? 25 +Could you find out 15 +Do you have any idea how to use this machine 35 +Could you please give me the details 30 +Could I please get the details 25 +May I please get the details 23 +Do you mind if I get the details 25 I should be grateful if you would send me the details. 43 -Would it be possible for me to get it? 29 -Could you say it in another way? 25 -Can you clarify that for me? 22 -Could you rephrase that? 20 -Could you be more specific? 22 -Can you give me an example? 21 -Could you elaborate on that? 23 -Come again? 9 -I didn't quite catch that. could you please repeat? 40 -Could you say that again, please? 27 -Could you repeat it, please? 23 -Could you be more explicit? 22 +Would it be possible for me to get it 29 +Could you say it in another way 25 +Can you clarify that for me 22 +Could you rephrase that 20 +Could you be more specific 22 +Can you give me an example 21 +Could you elaborate on that 23 +Come again 9 +I didnt quite catch that. could you please repeat 40 +Could you say that again, please 27 +Could you repeat it, please 23 +Could you be more explicit 22 I wonder if you could say that in a different way. 39 -Could you put it differently, please? 31 -Could you say that slower, please? 28 +Could you put it differently, please 31 +Could you say that slower, please 28 I appreciate your help. 19 I sincerely appreciate it. 22 My sincere gratitude. 18 @@ -3465,15 +3465,15 @@ I appreciate the information and advice you have shared. 47 I sincerely appreciate the assistance. 33 Many thanks for your assistance. 27 Many thanks for the opportunity to meet with you. 40 -Thank you for your kind words! 24 -I am eternally grateful for everything you've taught me. 46 -How can I ever thank you enough? 25 -That's all right! 13 +Thank you for your kind words 24 +I am eternally grateful for everything youve taught me. 46 +How can I ever thank you enough 25 +Thats all right 13 Not at all. 8 Its nothing. 10 -It wasn't a problem at all. 20 +It wasnt a problem at all. 20 The pleasure is all mine. 20 -It's no bother. 11 +Its no bother. 11 Think nothing of it. 16 We apologize for the mistake and the inconvenience. 43 I apologize again for my mistrust. 28 @@ -3481,108 +3481,108 @@ I apologize for the mess. 20 We deeply regret. 14 Please accept our apologies. 24 My bad. 5 -I'm sorry you're upset. 17 -I'm genuinely sorry. 16 +Im sorry youre upset. 17 +Im genuinely sorry. 16 I feel so ashamed. 14 I take full responsibility. 23 -It's fine. 7 -Please don't let it happen again. 26 +Its fine. 7 +Please dont let it happen again. 26 Apology accepted. 15 -It's okay. 7 +Its okay. 7 You should be, but I forgive you. 26 I understand. 11 Apologies accepted. 17 -You couldn't help it. 16 -I'd like to introduce you to betty. 27 +You couldnt help it. 16 +Id like to introduce you to betty. 27 Happy to meet you. 14 You already know shraa. 19 -And you've already met john. 22 +And youve already met john. 22 And lastly, this is kate. 20 -I don't think we've met. may I introduce myself? 36 -I couldn't say. 11 -I don't have any feelings either way. 29 -I really don't know what to say. 24 -I really can't say. 14 -It doesn't affect me either way. 25 +I dont think weve met. may I introduce myself 36 +I couldnt say. 11 +I dont have any feelings either way. 29 +I really dont know what to say. 24 +I really cant say. 14 +It doesnt affect me either way. 25 No doubt about it. 14 You have a point there. 18 I was just going to say that. 22 I tend to agree with you. 19 -I'm with you on that point. 20 -I'll go along with that. 18 +Im with you on that point. 20 +Ill go along with that. 18 I totally agree with that proposal. 29 I hold exactly the same view. 23 I agree with you entirely. 21 -That's great news! 14 -Wow, that sounds exciting! 22 -That sounds like great news! 23 -I'm glad to hear that! 16 -Oh, how wonderful! 15 -I can't believe that! 16 -Really? are you serious? 19 -Wow! that's awesome! 15 -We're planning on buying a house within the next months. 45 -I'm looking forward to starting guitar lessons. 39 +Thats great news 14 +Wow, that sounds exciting 22 +That sounds like great news 23 +Im glad to hear that 16 +Oh, how wonderful 15 +I cant believe that 16 +Really are you serious 19 +Wow thats awesome 15 +Were planning on buying a house within the next months. 45 +Im looking forward to starting guitar lessons. 39 They are going to save up for a new car. 30 -We're thinking of getting a dog. 25 -I'm planning to study abroad next year. 31 -Could you help me for a second? 24 -Can I ask a favor? 13 -I wonder if you could help me with this? 31 -I can't manage. can you help? 21 -Could you spare a moment? 20 +Were thinking of getting a dog. 25 +Im planning to study abroad next year. 31 +Could you help me for a second 24 +Can I ask a favor 13 +I wonder if you could help me with this 31 +I cant manage. can you help 21 +Could you spare a moment 20 I need some help, please. 20 I could use some help. 17 -Would you mind helping me? 21 -If you're not too busy may I ask you a favor? 33 +Would you mind helping me 21 +If youre not too busy may I ask you a favor 33 I would like to bring this notice. 27 I feel worse to make a complaint. 26 I have come here to ask a question. 27 He openly complains about the bad service. 35 -I'm afraid there is a slight problem with the material. 44 -I'm angry about the service. 22 +Im afraid there is a slight problem with the material. 44 +Im angry about the service. 22 That would be very kind of you. 24 -Yes please. I'd like to. 17 +Yes please. Id like to. 17 Yes please. that would be nice lovely. 30 Thank you. that would be great. 24 -It's ok. I can do it myself. 19 -Don't worry, I'll do it myself. 23 +Its ok. I can do it myself. 19 +Dont worry, Ill do it myself. 23 Yes, I would love to thank you, that would be appreciated. 47 -I appreciate that, but it's okay. 26 -If you're sure it's no trouble. 23 -Just what I needed! 15 -No, don't bother, really. 20 -May I have the bill, please? 22 -Mum, can you wake me at seven o'clock? 29 -Can you give me directions to oxford street, please? 43 +I appreciate that, but its okay. 26 +If youre sure its no trouble. 23 +Just what I needed 15 +No, dont bother, really. 20 +May I have the bill, please 22 +Mum, can you wake me at seven oclock 29 +Can you give me directions to oxford street, please 43 We ask that you be patient while we work to address this problem. 52 We ask that you wait here. 20 -We're just friends. 15 +Were just friends. 15 Our relationship is strictly idealistic. 35 I am widowed. 10 I am just separated. 16 He is my brother. 13 -Shraa is my cousin's sister. 22 -You're quite right. 15 -Yes, that's correct. 16 +Shraa is my cousins sister. 22 +Youre quite right. 15 +Yes, thats correct. 16 You could say so. 13 There is nothing to add to that. 25 -Do you have anything to declare? 26 -Did you pack this bag yourself? 25 +Do you have anything to declare 26 +Did you pack this bag yourself 25 The flight has been canceled. 24 -Are you following me? 17 -Any questions? 12 -Do you know what I'm talking about? 27 -Do you get my point? 15 -Have you got it? 12 -With me so far? 11 +Are you following me 17 +Any questions 12 +Do you know what Im talking about 27 +Do you get my point 15 +Have you got it 12 +With me so far 11 Hello, pleased to meet you. 22 Nice meeting you, too. 18 It was a pleasure to meet you. 23 Catch ya late. 11 -Gotta go! 7 -Hey! there she is. 13 -Hello, how are things with you? 25 +Gotta go 7 +Hey there she is. 13 +Hello, how are things with you 25 Yep, pretty good. 14 I like a rose. 10 I love music. 10 @@ -3883,8 +3883,8 @@ At the end of the day. 16 Take it to the next level. 20 The bottom line. 13 It is what it is. 12 -Let's hit the ground running. 23 -Let's take it offline. 17 +Lets hit the ground running. 23 +Lets take it offline. 17 I have a lot on my plate. 18 Drastic times call for drastic measures. 34 Back to the drawing board. 21 @@ -3902,23 +3902,23 @@ Keep something at bay. 18 Kill two birds with one stone. 24 Last straw. 9 The method in the madness. 21 -I'm here. it's sam in Delhi. 19 -I'm afraid I didn't get that. 21 -Sam here. I'm back on the line again. 27 -Today I'm here to talk to you about. 27 +Im here. its sam in Delhi. 19 +Im afraid I didnt get that. 21 +Sam here. Im back on the line again. 27 +Today Im here to talk to you about. 27 Then I will look at it. 17 After you. 8 -I'm sorry, but could you speak up a little? 33 +Im sorry, but could you speak up a little 33 Am I to understand that. 19 -I'd like you to meet mary. 19 +Id like you to meet mary. 19 He was given an award for his courage. 30 Jack is my neighbor. 16 Time is a great teacher. 19 Jenny is my sister. 15 -Joe's father is an engineer. 22 +Joes father is an engineer. 22 We watched a movie yesterday. 24 She invited my husband and me. 24 -Have you got any information? 24 +Have you got any information 24 Birds live on trees. 16 All the sugar has been consumed. 26 He goes to school. 14 @@ -3935,7 +3935,7 @@ Good cutlery is expensive. 22 A lot of milk was drunk. 18 The money has now been spent. 23 A large crowd is expected. 21 -That's his favorite book. 20 +Thats his favorite book. 20 This pair of shoes is good. 21 These gloves were found there. 25 Many people have visited us. 23 @@ -3950,14 +3950,14 @@ A staff of employees. 17 I bought a gold ring. 16 Plastic toys are very colorful. 26 I myself mailed the letter. 22 -Whose pen is this? 14 +Whose pen is this 14 These are my books. 15 This is the book which I like. 23 Those are our bicycles. 19 That is the movie that jane likes. 27 That is his car. 12 John is the person whose bike is stolen. 32 -Whom are you looking for? 20 +Whom are you looking for 20 You are my batchmate. 17 He is my best friend. 16 He killed himself. 15 @@ -3968,7 +3968,7 @@ They cleaned the room themselves. 28 She herself answered the phone. 26 I hurt myself while shaving. 23 Either of you can go. 16 -Have you ever met the woman who lives next door? 38 +Have you ever met the woman who lives next door 38 You must write your letters carefully. 32 They have gone with their parents. 28 These girls are very fond of their dogs. 32 @@ -3977,7 +3977,7 @@ Every student passed his examination. 32 The small child was crying for his mother. 34 You must write your essay more carefully. 34 We offered to help them with their difficulty. 38 -Could you please lend me your book? 28 +Could you please lend me your book 28 A reader likes to choose his book himself. 34 John gave a presentation to his mother. 32 Mike is talking to his mother. 24 @@ -3988,7 +3988,7 @@ The dogs were running behind them. 28 This is our house. 14 This is her dress. 14 I have done the homework myself. 26 -Why do you always blame yourself? 27 +Why do you always blame yourself 27 My mother a kind lady. 17 He is a cunning fellow. 18 I helped the old man. 16 @@ -3998,7 +3998,7 @@ I have a lot of money. 16 Give me some salt. 14 I saw my children in the park. 23 These books are new. 16 -Which bag is yours? 15 +Which bag is yours 15 Your dress is new. 14 Mike is a brave boy. 15 My uncle gave me an expensive gift. 28 @@ -4021,7 +4021,7 @@ The tree is very tall. 17 Never touch a live wire. 19 I have no money. 12 Lucy is an intelligent girl. 23 -I don't like that house. 18 +I dont like that house. 18 I have five books. 14 There is little time left. 21 The boy is hardworking. 19 @@ -4031,7 +4031,7 @@ He has little intelligence. 23 There are no books in this room. 25 There are several boys in the field. 29 I like a fine pen. 13 -It's a tall tree. 12 +Its a tall tree. 12 The ship sustained heavy damage. 27 It is the book that you gave me. 24 I have read every book. 18 @@ -4054,8 +4054,8 @@ Mike will come tomorrow. 20 Donna never tells lies. 19 Joe was very tired. 15 I was nearly exhausted. 19 -When did dia come? 14 -Where did she go? 13 +When did dia come 14 +Where did she go 13 He is a very good student. 20 She plays well. 12 He worked the sum quickly. 21 @@ -4075,17 +4075,17 @@ Sam will come again. 16 John is a very careful driver. 24 John drives carefully. 19 John drives very carefully. 23 -Come here at once! 14 +Come here at once 14 She took the lady inside. 20 Joe speaks English fluently. 24 Lucy was a very beautiful girl. 25 The boys have danced fantastically well. 34 You should not be too careful about your attire. 39 -When will sam be back? 17 -Why were you absent? 16 -How is she going to do this? 21 -How much effort does it require? 26 -How many siblings do you have? 24 +When will sam be back 17 +Why were you absent 16 +How is she going to do this 21 +How much effort does it require 26 +How many siblings do you have 24 Rachel speaks English very well. 27 My sister lives in Thailand. 23 Mechanics fix cars. 16 @@ -4093,17 +4093,17 @@ Water boils at 100 degrees celsius. 29 She understands English. 21 She visits her parents every week. 28 Lucy dislikes crowded cities. 25 -Donna earns a six-figure salary. 26 +Donna earns a sixfigure salary. 26 A stitch in time saves nine. 22 If you work hard, you will pass the test. 32 They are waiting for us. 19 Birds do not fly in the sky. 21 -Does mike love his teacher? 22 +Does mike love his teacher 22 Boys are not doing their homework. 28 -Does my friend speak good English? 28 -Are dogs barking? 14 +Does my friend speak good English 28 +Are dogs barking 14 He is not learning music. 20 -Are we going to Kolkata soon? 23 +Are we going to Kolkata soon 23 Children do not play in the evening. 29 Joe is at home. 11 Her children are at school. 22 @@ -4151,13 +4151,13 @@ He is jumping over the fence. 23 You are taking your books. 21 You are putting the sweets in your mouth. 33 Lucy is putting on her dress. 23 -Look! the sun is rising. 18 -Why are you running so fast? 22 +Look the sun is rising. 18 +Why are you running so fast 22 The children are playing in the park. 30 Mike is reading the novel. 21 Water is flowing from the running tap. 31 -Is raining outside now? 19 -What is your sister doing these days? 30 +Is raining outside now 19 +What is your sister doing these days 30 Rachel is dancing in the hall. 24 Bella is cooking the beans. 22 Lucy is jumping in the garden. 24 @@ -4165,7 +4165,7 @@ She is singing a song. 17 I am returning tonight. 19 She is singing. 12 They are not sleeping. 18 -Is she singing? 12 +Is she singing 12 He is reading a newspaper. 21 I am going to England next week. 25 She is continually watching movies on tv. 34 @@ -4177,9 +4177,9 @@ You have insulted me. 17 She has written this essay. 22 I have completed my work. 20 They have helped me. 16 -We haven't made any mistakes. 23 -Have you packed your all books? 25 -He hasn't played with us. 19 +We havent made any mistakes. 23 +Have you packed your all books 25 +He hasnt played with us. 19 I have met him before. 17 He has been to London. 17 I have already read this novel. 25 @@ -4192,7 +4192,7 @@ She has been teaching for ten years. 29 I have been working in the field. 26 He has been working for the last two hours. 34 He has been watering the plants. 26 -Have you not been going there? 24 +Have you not been going there 24 The farmers are been plowing their fields since morning. 47 She has been working all day. 23 I met him yesterday. 16 @@ -4219,12 +4219,12 @@ We enjoyed our holiday last year. 27 I ate a mango. 10 It rained yesterday. 17 Ana watched tv all night. 20 -They didn't live in Pune. 19 +They didnt live in Pune. 19 I went to the beach. 15 He went to the park. 15 You ate my cake. 12 I saw a movie yesterday. 19 -I didn't travel to Mumbai. 20 +I didnt travel to Mumbai. 20 I played with a ball. 16 I saw a snake. 10 India won the match. 16 @@ -4236,7 +4236,7 @@ The bell had gone before I reached school. 34 Columbus discovered America. 25 I went to her house. 15 She did not sing. 13 -The children didn't play. 20 +The children didnt play. 20 She sang. 7 I did not write a letter. 19 I went to Delhi yesterday. 21 @@ -4266,17 +4266,17 @@ The wind was blowing fiercely. 25 The dogs were barking. 18 We were watching the shop windows when we met joe. 40 When tom arrived, sam was studying. 29 -Were lucy and donna cooking in the kitchen? 35 -Were we going to the market? 22 -Was he playing cricket? 19 +Were lucy and donna cooking in the kitchen 35 +Were we going to the market 22 +Was he playing cricket 19 When he saw John in the library, he was returning his books. 48 Sam was not living in Kolkata in July last year. 38 -At four o'clock yesterday we were not all drinking tea. 44 -Was he doing his homework? 21 -Were they crying there? 19 +At four oclock yesterday we were not all drinking tea. 44 +Was he doing his homework 21 +Were they crying there 19 The baby was weeping in the room. 26 Children were making noise in the class. 33 -Why did you look at her? 18 +Why did you look at her 18 We saw an airplane while it was taking off. 34 My mother was sleeping when I returned home. 36 Joe was dancing at the party. 23 @@ -4317,13 +4317,13 @@ You had been buying. 16 She had been buying. 16 We had been buying. 15 They had been buying. 17 -Will I come in? 11 +Will I come in 11 You are going to cry. 16 He will close the shop. 18 He will help you tomorrow. 21 She will cry. 10 He shall jump. 11 -When will you travel? 17 +When will you travel 17 I will make tea. 12 They will win the game. 18 They will go to school. 18 @@ -4333,11 +4333,11 @@ She has been taking sunbath for a month. 32 I had been driving this car for four years. 34 He had not been seeing for a few days. 29 The players had been running for three hours. 37 -Had he been studying for an examination for four days? 44 -Where had he been living for so many days? 33 +Had he been studying for an examination for four days 44 +Where had he been living for so many days 33 You had not been going to school since Tuesday. 38 He had not been meeting me for a month. 30 -Where had joe been playing since noon? 31 +Where had joe been playing since noon 31 I will be writing articles. 22 I will be going to the library. 24 They will be playing football. 25 @@ -4358,18 +4358,18 @@ We will be living in Delhi. 21 You will be bargaining. 19 He will not be graduating. 21 They will not be eating with us. 25 -Will he be going? 13 -Will you be calling? 16 +Will he be going 13 +Will you be calling 16 We will not be arriving at home. 25 He will have finished. 18 We shall have reached there. 23 -"She will have read ""the tempest""." 25 +She will have read the tempest. 25 He will have known joe. 18 I will have finished this book. 25 She will have cooked dinner. 23 -We won't have met lucy. 17 -Will he have got married? 20 -Will she have graduated? 20 +We wont have met lucy. 17 +Will he have got married 20 +Will she have graduated 20 He will have completed his project. 29 They will have enjoyed the party. 27 I am eating an apple. 16 @@ -4384,23 +4384,23 @@ I am eating the apple. 17 He showed me a box. 14 A boy and a girl. 12 The boy ran after the dog. 20 -Joe's house was down the hills. 24 +Joes house was down the hills. 24 He pointed to the tree. 18 Sam kills a snake. 14 -What color do you like? 18 -What time is it? 12 -Who is he? 7 -Why are you happy? 14 -When do you get up? 14 -Which one do you want? 17 -How do you make coffee? 18 -I like sugar in my tea, but I don't like milk in it. 38 +What color do you like 18 +What time is it 12 +Who is he 7 +Why are you happy 14 +When do you get up 14 +Which one do you want 17 +How do you make coffee 18 +I like sugar in my tea, but I dont like milk in it. 38 Listen to the story and answer the questions in complete sentences. 56 -Is it Thursday or Friday today? 25 -He was late because the bus didn't come. 31 +Is it Thursday or Friday today 25 +He was late because the bus didnt come. 31 We were very tired but happy after our flight to Sydney. 45 They climbed the mountain although it was very windy. 44 -I'll text you after I have arrived in Toronto. 36 +Ill text you after I have arrived in Toronto. 36 Neither my brother nor my sister owns a car. 35 The sun was warm, yet the wind was a bit too cool. 38 As he was not ready, we went without him. 32 @@ -4439,7 +4439,7 @@ Lucy has had her lunch. 18 Joe has never invited me to her home. 29 This is not mine. it must be hers. 25 This is my house. it is smaller than yours. 33 -Where is your coat? 15 +Where is your coat 15 Our parents are visiting us next month. 32 He was arrested for treating his servants badly. 40 You must listen to your parents. 26 @@ -4453,13 +4453,13 @@ As they flew into the tree they were trapped. 36 The children walked on the bridge. 28 The frogs jumped into the well. 25 Put the books on the table. 21 -She is coming to donna's place. 24 +She is coming to donnas place. 24 We met at night. 12 The book is on the table. 19 We stay at home during the holidays. 29 -I will be there at ten o'clock. 23 +I will be there at ten oclock. 23 It has rained for three hours. 24 -We shall meet at 6 o'clock. 20 +We shall meet at 6 oclock. 20 We have a holiday at Diwali. 22 I will come on the night of 10th June. 29 We will meet on Friday afternoon. 27 @@ -4494,23 +4494,23 @@ He looked under the bed. 19 They held an umbrella over her. 25 We walked along the street. 22 A tree fell onto a car. 17 -Why are you throwing stones at the dog? 31 -Who told you this? 14 -Have you completed the homework? 27 -Did you understand why I was upset? 28 -What are you doing next weekend? 26 -In problem? 9 -The sun rises from the east, right? 28 +Why are you throwing stones at the dog 31 +Who told you this 14 +Have you completed the homework 27 +Did you understand why I was upset 28 +What are you doing next weekend 26 +In problem 9 +The sun rises from the east, right 28 Rachel, come here. 15 There are parrots, crows, etc. 25 Yes, I leave tobacco. 17 Twinkle, twinkle all night. 23 Yes, I can meet you tomorrow, if the weather is fine. 42 -Hi, what is your name? 17 -My sister, unlike me, is very well-behaved. 35 +Hi, what is your name 17 +My sister, unlike me, is very wellbehaved. 35 My favorite colors are black, blue, and red. 36 Lucy, wait for me. 14 -Finally, we can go outside! 22 +Finally, we can go outside 22 They are going to Dubai. 19 Donna is a lovely girl. 18 I can speak English very well. 24 @@ -4521,35 +4521,35 @@ Mike lives in Mumbai. 17 Sam studies in class 6. 18 This is a bottle. 13 I reach school at 730 in the morning. 29 -"""Burma is the land of the Buddhists""." 28 -I don't like this one bit, said joe. 27 -Have you met our handsome new financial director? 41 +Burma is the land of the Buddhists. 28 +I dont like this one bit, said joe. 27 +Have you met our handsome new financial director 41 If you are ever in London, come and see you. 34 Mike, in the Ferrari, was cornering superbly. 38 -Looking straight at her, he said, 'i can't help you.'. 40 +Looking straight at her, he said, i cant help you.. 40 It is a fine idea to let us hope that it is going to work. 43 We will be arriving on Monday morning at least, I think so. 47 -A textbook can be a 'wall' between teacher and class. 41 -Pardon me, oh god! 14 -How beautiful the sky is! 20 -Mother! should I stay or leave? 24 -"""where do you want to go?"", asked joe." 27 -Hello, mike!, joe called. 20 -I'm telling you! 12 -Help! I think I am lost! 17 -Are you going to the store? 21 -"""you will be happy here?"", mum asked." 27 +A textbook can be a wall between teacher and class. 41 +Pardon me, oh god 14 +How beautiful the sky is 20 +Mother should I stay or leave 24 +where do you want to go, asked joe. 27 +Hello, mike, joe called. 20 +Im telling you 12 +Help I think I am lost 17 +Are you going to the store 21 +you will be happy here, mum asked. 27 The good are saved the bad are damned. 30 Bright is the day dark is the night. 28 The criminal surrendered he was defeated. 35 -"""go, rangers, go!"", john said." 22 -Ouch! you're standing on my foot! joe said. 32 -I don't believe it! 14 -Who chose this tie? 15 -Today's winner is sam. 17 -Give me all your money! 18 -I didn't know what was happening. 26 -I'm in a lot of pain right now. 22 +go, rangers, go, john said. 22 +Ouch youre standing on my foot joe said. 32 +I dont believe it 14 +Who chose this tie 15 +Todays winner is sam. 17 +Give me all your money 18 +I didnt know what was happening. 26 +Im in a lot of pain right now. 22 The teacher teaches the students. 28 I see a clear sky. 13 Tom caught the burglar. 19 @@ -4563,54 +4563,54 @@ Lucy sings a song. 14 I made a mistake. 13 He has done his work. 16 She sings a sweet song. 18 -Do you not play hockey? 18 -Does he sell lottery tickets? 24 +Do you not play hockey 18 +Does he sell lottery tickets 24 I am bending the branch. 19 -Is she boiling eggs? 16 -Are the servants bringing tea? 25 +Is she boiling eggs 16 +Are the servants bringing tea 25 The hunter killed the tiger. 23 The maid cleans these rooms daily. 28 We make butter from milk. 20 People never invite me to parties. 28 -How do they make butter? 19 +How do they make butter 19 I misplaced my keys yesterday. 25 Somebody stole my car last week. 26 The teacher is not revising the course. 32 He will not write a letter. 21 -Will joe play on the flute? 21 -Has he seen the fair? 16 +Will joe play on the flute 21 +Has he seen the fair 16 Mike has got a prize. 16 Saleem loved noorjahan. 20 Some girls were helping the wounded women. 35 She plucks flowers from the plant. 28 John offers her a flower. 20 -Do they perform fine arts? 21 -What does she ask? 14 -Where does ana search the book? 25 +Do they perform fine arts 21 +What does she ask 14 +Where does ana search the book 25 John is making a loud noise. 22 She is not heeding his instructions. 30 -What is lucy doing? 15 +What is lucy doing 15 Donna has forgotten his name. 24 -Have they won the match? 19 -Where has Rachel studied law? 24 -How many marks have lucy scored? 26 -What were they discussing? 22 -Where was the road leading you? 25 -Why will they allow you to enter? 26 +Have they won the match 19 +Where has Rachel studied law 24 +How many marks have lucy scored 26 +What were they discussing 22 +Where was the road leading you 25 +Why will they allow you to enter 26 I had watched the movie earlier. 26 Please, open the door. 18 Please, stand in a queue. 20 He reads a novel. 13 He does not obey his teachers. 24 He killed a snake. 14 -Why do you waste time? 17 +Why do you waste time 17 I shall help him. 13 I told her a story. 14 -Who will pay the bill? 17 +Who will pay the bill 17 She is waiting for us. 17 -Is he doing his work? 16 +Is he doing his work 16 He may help you. 12 -Do you love him? 12 +Do you love him 12 I know him. 8 Music interests me. 16 The student was taught by the teacher. 31 @@ -4627,63 +4627,63 @@ A song is sung by lucy. 17 A mistake was made by me. 19 His work has been done by him. 23 A sweet song is sung by her. 21 -Is hockey not played by you? 22 -Are lottery tickets sold by him? 26 +Is hockey not played by you 22 +Are lottery tickets sold by him 26 The branch is being bent by me. 24 -Are the eggs being boiled by her? 26 -Is tea being brought by the servants? 30 +Are the eggs being boiled by her 26 +Is tea being brought by the servants 30 The tiger was killed by a hunter. 26 These rooms are cleaned by the maid daily. 34 Butter is made from milk. 20 I am never invited to parties. 24 -How is butter made? 15 +How is butter made 15 My keys were misplaced by me yesterday. 32 My car was stolen last week. 22 The course is not being received by the teacher. 39 The letter will not be written by him. 30 -Will the flute being played by joe? 28 -Has the fair been seen by him? 23 +Will the flute being played by joe 28 +Has the fair been seen by him 23 The prize has been gotten by john. 27 Noorjahan is loved by saleem. 24 The wounded women were being helped by some girls. 41 Flowers are plucked from the plant by her. 34 She is offered a flower by john. 25 -Are fine arts performed by them? 26 -What is asked by her? 16 -Where is the book searched by lucy? 28 +Are fine arts performed by them 26 +What is asked by her 16 +Where is the book searched by lucy 28 A loud noise is being made by john. 27 His instructions are not being heeded by her. 37 -What is being done by sam? 20 +What is being done by sam 20 His name has been forgotten by mike. 29 -Has the match been won by them? 24 -Where has the law been studied by mike? 31 -How many marks have been scored by lucy? 32 -What was being discussed by them? 27 -Where were you being led by the road? 29 -Why will you be allowed to enter by them? 32 +Has the match been won by them 24 +Where has the law been studied by mike 31 +How many marks have been scored by lucy 32 +What was being discussed by them 27 +Where were you being led by the road 29 +Why will you be allowed to enter by them 32 The movie had been watched earlier by me. 33 You are requested to open the door. 28 You are requested to stand in a queue. 30 A novel is read by him. 17 His teachers are not obeyed by him. 28 A snake was killed by him. 20 -Why is time wasted by you? 20 +Why is time wasted by you 20 He will be helped by me. 18 A story was told to her by me. 22 -By whom will the bill be paid? 23 +By whom will the bill be paid 23 We are being waited by her. 21 -Is the work being done by him? 23 +Is the work being done by him 23 You are ordered to shut the door. 26 You are advised to work hard. 23 You may be helped by him. 19 -Is he loved by you? 14 +Is he loved by you 14 He is known to me. 13 I am interested in music. 20 I washed my hands because they were dirty. 34 Somebody has the broken pane. 24 We saw a very good film yesterday. 27 I have never ridden a horse. 22 -Have you finished your work yet? 26 +Have you finished your work yet 26 Boys fly kites. 12 I feel sorry. 10 The ball has been lost. 18 @@ -4712,17 +4712,17 @@ It is a great feeling to win the trophy. 31 Please let me work. 15 The boys make a noise. 17 Stand up. 7 -What a clever girl you are! 21 -What a horrible sight it was! 23 +What a clever girl you are 21 +What a horrible sight it was 23 My father is a bank employee. 23 Children like sweets. 18 -Who is at the door? 14 -Don't make a noise. 14 +Who is at the door 14 +Dont make a noise. 14 You are a true hero. 15 -Mike is a well-behaved man. 21 -What a pity! he is dead. 17 +Mike is a wellbehaved man. 21 +What a pity he is dead. 17 He is on the way. 12 -Oh please! don't say that again. 24 +Oh please dont say that again. 24 Reading a novel is a good habit. 25 Joe is a woman of a gorgeous style. 27 The horse runs at a good speed. 24 @@ -4739,7 +4739,7 @@ I should hate having to punish him. 28 He refuses to write anything. 24 Having dirty thoughts is disgraceful. 32 Thinking good thoughts precedes good actions. 39 -Have you ever tried using butter instead of oil? 39 +Have you ever tried using butter instead of oil 39 Use the space around you. 20 He did what he was told. 18 He has taken his seat. 17 @@ -4764,7 +4764,7 @@ This is a temple. 13 That is a hill. 11 These are buildings. 17 That plane is a toy. 15 -This cat isn't eating. 17 +This cat isnt eating. 17 Those glasses are for reading. 25 These glasses are sunglasses. 25 I like this pen. 12 @@ -4786,29 +4786,29 @@ I read the Times of India daily. 25 The gold of this ring is pure. 23 That house is not mine. 18 I have some more files to complete. 28 -She doesn't like him much. 20 +She doesnt like him much. 20 Rachel answered all the questions wrong. 34 All the girls had to carry their own luggage. 36 I shall not buy these oranges. these are rotten. 38 I have bought a cycle. 17 Most of my answers were correct. so I passed. 35 -Hello! this is Mike. can i speak to Joe? 29 +Hello this is Mike. can i speak to Joe 29 He spends more time on video games. 28 I went there early. 15 She will come tomorrow. 19 I went to the market in the morning. 28 We have lived in this city since 1995. 30 We have yet to hear from the bank. 26 -Where have you been since I last saw you? 32 +Where have you been since I last saw you 32 He has just found a good job. 22 We have already prepared dinner. 27 -Have you called the doctor yet? 25 +Have you called the doctor yet 25 James has not yet arrived. 21 -Will you be on time tomorrow? 23 +Will you be on time tomorrow 23 I have seen him once. 16 I seldom read the newspaper. 23 I occasionally eat junk food. 24 -I sometimes forget my brother's birthday. 34 +I sometimes forget my brothers birthday. 34 He is often late for work. 20 We seldom see john. 15 Jack is never late for work. 22 @@ -4826,16 +4826,16 @@ She read the letter carefully. 25 He calmly explained his point of view. 31 Drive the car slowly. 17 I eagerly await to see his batting. 28 -Hurry! you are getting behind. 24 +Hurry you are getting behind. 24 Mary fell down. 12 We decided to drop in on jake. 23 -Let's get off at the next stop. 23 -Come in! 6 -I'm going back to school. 19 +Lets get off at the next stop. 23 +Come in 6 +Im going back to school. 19 She took the child outside. 22 They built a house nearby. 21 Put it there. 10 -Here comes the bus! 15 +Here comes the bus 15 I have nowhere to go. 16 The water was extremely cold. 24 The movie is quite interesting. 26 @@ -4847,17 +4847,17 @@ You are running fast enough. 23 I got here early enough. 19 The coffee is too hot. 17 It is extremely hot today. 21 -I was sick, thus I didn't go to school. 29 +I was sick, thus I didnt go to school. 29 Because I was late, I jogged a little faster. 36 He was left because he was late. 25 -I was not well, hence didn't go to school. 32 +I was not well, hence didnt go to school. 32 The bell rang so she left the classroom. 32 -Since it is snowing, I'm feeling very cold. 34 +Since it is snowing, Im feeling very cold. 34 I was hungry so I ate pizza. 21 Because I was sick, I stayed home. 27 It is late and thus we must go. 23 He was late so he was punished. 24 -I didn't go for office because it was raining. 36 +I didnt go for office because it was raining. 36 It is dark. 8 You should go. 11 He is intelligent but he is selfish. 29 @@ -4869,22 +4869,22 @@ Put the key where you can find it easily. 32 I am happy that you have liked it. 26 We shall stay with you if it rains. 27 It is a big company. four hundred people are employed there. 48 -Water covers most of the earth's surface. 33 -Most of the earth's surface is covered by water. 38 +Water covers most of the earths surface. 33 +Most of the earths surface is covered by water. 38 The park gates are locked at 7 p.m. daily. 31 The letter was posted a week ago and it arrived yesterday. 47 The boat sank quickly but fortunately, everybody was rescued. 52 -Why was sam sacked from his job? 25 +Why was sam sacked from his job 25 I was born in Mumbai but I grew up in Delhi. 33 While I was on holiday, my camera was stolen from my hotel room. 51 I hope that I shall pass. 19 You can see what we have done. 23 -I can't say whom I shall believe. 25 +I cant say whom I shall believe. 25 Please tell me why he is always late. 29 I can tell you that he is a good boy. 27 If only I were rich. 15 She knows what I want. 17 -I can't tell you when he will come. 26 +I cant tell you when he will come. 26 I asked whether the train will leave on time. 36 The problem is how we can cross the river. 33 I arrived after he had started. 25 @@ -4897,12 +4897,12 @@ As I was leaving the phone rang. 25 While you were playing I was working. 30 I enjoy it a lot while cooking. 24 Do it before you forget. 19 -Don't talk while she is singing. 25 +Dont talk while she is singing. 25 I will wait here until you arrive. 27 Whenever I see him, I feel nervous. 28 We will meet soon. 14 As soon as he heard the news, he called me. 33 -If it rains we'll go indoors. 22 +If it rains well go indoors. 22 If you boil water, it evaporates. 27 If you need a pen, you can take mine. 28 If you request me I shall help you 27 @@ -4913,27 +4913,27 @@ If I like it, I will buy it. 20 If you heat ice, it melts. 20 If it rains, we will stay at home. 26 You may come if you want to. 21 -You won't pass unless you work hard. 28 -Do you know the girl who started in grade 7 last week? 42 -Can I have the pencil that I gave you this morning? 40 +You wont pass unless you work hard. 28 +Do you know the girl who started in grade 7 last week 42 +Can I have the pencil that I gave you this morning 40 A notebook is a computer which can be carried around. 43 -I won't eat in a restaurant whose cooks smoke. 36 +I wont eat in a restaurant whose cooks smoke. 36 I want to live in a place where there is lots to do. 39 -Yesterday was a day when everything went wrong! 39 +Yesterday was a day when everything went wrong 39 I have never met the people who live next door. 37 This is the key that opens the garage. 30 -Those who haven't submitted their tax returns yet should do so immediately. 62 +Those who havent submitted their tax returns yet should do so immediately. 62 He has a daughter who is really beautiful. 34 I have got a book that you might like. 29 The people who live next door hardly ever step out. 41 He has set up a shop where they sell used goods. 37 It is a movie that will interest children of all ages. 43 Here is the magazine which you were looking for. 39 -Do you know that fat guy who just walked in? 34 +Do you know that fat guy who just walked in 34 He is senior to me by five years. 25 Lucy is the most intelligent of all the students in the class. 50 Choose the better of the two. 23 -Uttar-Pradesh is the most populated state of India. 42 +UttarPradesh is the most populated state of India. 42 Make less noise. 13 Joe is the better painter of the two. 29 You are junior to me. 16 @@ -4944,52 +4944,52 @@ You are the widest boy. 18 I saw the longest tree. 18 You are better than him. 19 She is the most beautiful lady in the hall. 34 -Are you feeling better now? 22 +Are you feeling better now 22 May was the hottest month of the year. 30 Mike is wiser than two. 18 You are the most regular boy in the class. 33 -Who is the tallest person in your family? 33 +Who is the tallest person in your family 33 My mum is the best cook in the world. 28 He will go to Chennai next month. 26 You shall not enter the kitchen with muddy shoes. 40 Mike will see you again. 19 You shall go at once. 16 I will write a letter to him tomorrow. 30 -Will you do me a favor? 17 +Will you do me a favor 17 Work hard lest you should fail. 25 You should send a reply tomorrow. 27 -You would please lend me your bicycle? 31 +You would please lend me your bicycle 31 You should do as he says. 19 -You would like another cup of tea? 27 -"They said, ""We shall have won the race""." 30 -"She will say, ""I have sent him a present""." 31 -"He said, ""face is the index of min""." 26 -"The teacher said, ""the earth rotates around its axis""." 43 -"Rachel said, ""death comes sooner or later""." 34 -"He said, ""India became free on 15th august, 1947""." 39 -"She said, ""her father lived in Kerala for ten years""." 41 -"She said, ""I am a top-class singer""." 26 -"We said, ""he is writing a poem""." 23 -"He said, ""it may rain tonight""." 23 -"He said, ""a devil ever remains a devil""." 30 -"Sam says, ""she has brought fame to her family""." 36 -"Sam has said, ""I cannot displease my friend""." 35 -"I shall say, ""I went to Agra on Monday""." 29 -"She said, ""I was American""." 20 -"He said to her, ""do you want to go home?""." 29 -"He said to you, "" where are you going?""." 28 -"I said to him, "" what brings you here?""." 28 -"She said to me, ""who taught you English?""." 31 -"The mother said to the child, "" did you have your breakfast?""." 47 -"He said, "" how is your father?""." 22 -What do you want? he said to her. 24 -"""don't you know the way home?"", I asked." 28 -"""do you really come from china?"", said the prince." 38 -"""sit down boys"", said the teacher." 26 -"""run away, children"", said the mother." 30 -"He says, ""he writes a poem.""." 20 -"You said to us, ""how do you solve this problem?""." 36 -"I said to my friend, ""have you been to England?""." 36 +You would like another cup of tea 27 +They said, We shall have won the race. 30 +She will say, I have sent him a present. 31 +He said, face is the index of min. 26 +The teacher said, the earth rotates around its axis. 43 +Rachel said, death comes sooner or later. 34 +He said, India became free on 15th august, 1947. 39 +She said, her father lived in Kerala for ten years. 41 +She said, I am a topclass singer. 26 +We said, he is writing a poem. 23 +He said, it may rain tonight. 23 +He said, a devil ever remains a devil. 30 +Sam says, she has brought fame to her family. 36 +Sam has said, I cannot displease my friend. 35 +I shall say, I went to Agra on Monday. 29 +She said, I was American. 20 +He said to her, do you want to go home. 29 +He said to you, where are you going. 28 +I said to him, what brings you here. 28 +She said to me, who taught you English. 31 +The mother said to the child, did you have your breakfast. 47 +He said, how is your father. 22 +What do you want he said to her. 24 +dont you know the way home, I asked. 28 +do you really come from china, said the prince. 38 +sit down boys, said the teacher. 26 +run away, children, said the mother. 30 +He says, he writes a poem.. 20 +You said to us, how do you solve this problem. 36 +I said to my friend, have you been to England. 36 They said that they would have won the race. 35 She will say that she has sent him a present. 35 He said that face is the index of mine. 30 @@ -4997,7 +4997,7 @@ The teacher said that the earth rotates around its axis. 46 Rachel said that death comes sooner or later. 37 He said that India became free on 15th August, 1947. 42 She said that her father lived in Kerala for ten years. He said to her, 56 -She said that she was a top-class singer. 32 +She said that she was a topclass singer. 32 We said that he was writing a poem. 27 He said that it might rain tonight. 28 He said that a devil ever remains a devil. 33 @@ -5019,12 +5019,12 @@ The mother asked the children to run away. 34 He says that he writes the poem. 25 You asked us how we solved that problem. 32 I asked my friend if he had been to England. 34 -Do you have to obey his orders? 24 +Do you have to obey his orders 24 I said that I should go to school the next day. 36 She had to look after her mother. 26 First, you have to mix the water and sugar. 34 This is the only thing you need to do. 29 -Need to attend the class today? 25 +Need to attend the class today 25 You ought, to tell the truth. 23 We must obey our teachers. 21 The villagers had to use kerosene lamps a few years ago. 45 @@ -5038,7 +5038,7 @@ The chairs which I bought yesterday were very costly. 44 There is none chair in the room. 25 My friend and his father are meeting us tomorrow. 40 Ten thousand rupees is not a small one. 31 -"""The hotel taj"" is five-star hotel." 26 +The hotel taj is fivestar hotel. 26 Mathematics is not an easy subject. 29 The Indian cricket team has won the match. 34 This furniture is very old. 22 @@ -5046,62 +5046,62 @@ As I left my home, I found a purse. 26 Time to hit the books. 17 I need to cram for a final. 20 I have to study. 12 -When is the final? 14 -What grade are you in? 17 +When is the final 14 +What grade are you in 17 I need to prep for a big test. 22 -I've got a big exam tomorrow. 22 -What tests are required? 20 -When is the assignment due? 22 -What's the grading curve? 20 -I've got to study. 13 -How is my daughter doing in class? 27 -What can I do to help her at home? 25 -Do you have a note from home? 22 -Can I talk to you about my grade? 25 -I'd like to talk about my daughter's grade. 33 -She's having a hard time with her homework. 34 -How can I help her with her homework? 29 -Is attendance required in this course? 32 -Do you have a note from your mother? 28 -When is the midterm? 16 -What will the test cover? 20 -How do you like school? 18 -Do you go to school yet? 18 -You're just like your mother. 23 +Ive got a big exam tomorrow. 22 +What tests are required 20 +When is the assignment due 22 +Whats the grading curve 20 +Ive got to study. 13 +How is my daughter doing in class 27 +What can I do to help her at home 25 +Do you have a note from home 22 +Can I talk to you about my grade 25 +Id like to talk about my daughters grade. 33 +Shes having a hard time with her homework. 34 +How can I help her with her homework 29 +Is attendance required in this course 32 +Do you have a note from your mother 28 +When is the midterm 16 +What will the test cover 20 +How do you like school 18 +Do you go to school yet 18 +Youre just like your mother. 23 You take after your father. 22 She favors her mother. 18 Like father, like son. 18 -He's a real mama's boy. 16 +Hes a real mamas boy. 16 She looks just like her mother. 25 -She's the picture of her mother. 25 -He's got his father's features. 24 -She's got her mother's nose. 21 -He's a chip off the old block. 22 -She's a real daddy's girl. 19 -She's daddy's little girl. 20 -We're best friends. 15 -She's my best friend. 16 +Shes the picture of her mother. 25 +Hes got his fathers features. 24 +Shes got her mothers nose. 21 +Hes a chip off the old block. 22 +Shes a real daddys girl. 19 +Shes daddys little girl. 20 +Were best friends. 15 +Shes my best friend. 16 She is one of a kind. 15 -They're two of a kind. 16 -Do you care if I join you? 19 -We're like a brother. 16 -Care if I join you? 14 -Let's play pool. 12 -We're very close. 13 -We're the closest of friends. 23 -She's a dear friend. 15 -May I join you? 11 -Is this stool taken? 16 -Is this seat taken? 15 -Can I buy u a drink? 14 -Could I get you something to drink? 28 -Would you like to play darts? 23 -Do you know who does this song? 24 -She's my closest friend. 19 -She's like a sister to me. 19 -We're pretty tight. 15 -I can't drink milk. 14 -I can't breathe. 12 +Theyre two of a kind. 16 +Do you care if I join you 19 +Were like a brother. 16 +Care if I join you 14 +Lets play pool. 12 +Were very close. 13 +Were the closest of friends. 23 +Shes a dear friend. 15 +May I join you 11 +Is this stool taken 16 +Is this seat taken 15 +Can I buy u a drink 14 +Could I get you something to drink 28 +Would you like to play darts 23 +Do you know who does this song 24 +Shes my closest friend. 19 +Shes like a sister to me. 19 +Were pretty tight. 15 +I cant drink milk. 14 +I cant breathe. 12 My eyes itch. 10 I feel sick. 9 The room is spinning. 17 @@ -5113,16 +5113,16 @@ My allergies are acting up. 22 My eyes are swollen. 16 My skin is breaking out. 19 My skin itches whenever I eat shrimp. 30 -I'm breaking out. 13 +Im breaking out. 13 I feel sick to my stomach. 20 I feel nauseous. 13 -I think I'm going to throw up. 22 -I think I'm going to be sick. 21 +I think Im going to throw up. 22 +I think Im going to be sick. 21 My head hurts. 11 My head is killing me. 17 -We're on our way. 12 -That'll never hold water. 20 -It doesn't stand a chance. 20 +Were on our way. 12 +Thatll never hold water. 20 +It doesnt stand a chance. 20 It makes no difference. 19 Get rid of it. 10 Wipe it off the map. 15 @@ -5130,136 +5130,136 @@ Put it out of its misery. 19 Throw it out. 10 Put it in the circular file. 22 File it. 6 -Well, it's back to square one. 23 -Well, it's back to basics. 20 +Well, its back to square one. 23 +Well, its back to basics. 20 Time to start over from scratch. 26 -It's not worth the trouble. 21 +Its not worth the trouble. 21 The pleasure was mine. 18 -She's beautiful. 13 -Good going! 9 -Many happy returns! 16 -Happy anniversary! 16 -Happy birthday! 13 -Have a good trip! 13 -Have a good time! 13 -How should I dress? 15 -What should I wear? 15 +Shes beautiful. 13 +Good going 9 +Many happy returns 16 +Happy anniversary 16 +Happy birthday 13 +Have a good trip 13 +Have a good time 13 +How should I dress 15 +What should I wear 15 You have many thanks. 17 Thanks ever so much. 16 Thanks a bunch. 12 I owe you big. 10 Thank you very much. 16 Thank you for your help. 19 -I'm deeply grateful. 16 -I'm indebted to you. 15 +Im deeply grateful. 16 +Im indebted to you. 15 Thanks a million. 14 -I'm in your debt. 12 -I owe you big-time. 14 +Im in your debt. 12 +I owe you bigtime. 14 You have much gratitude. 20 -Thank you for all you've done. 23 -I'll be there after dinner. 21 -I couldn't get a taxi. 16 -Am I ever surprised to see you! 24 +Thank you for all youve done. 23 +Ill be there after dinner. 21 +I couldnt get a taxi. 16 +Am I ever surprised to see you 24 Come in and stay awhile. 19 Come in and set a spell. 18 Come in and take a load off your feet. 29 Come in and sit down. 16 Traffic was slow. 14 -I didn't realize it was so far away. 27 -I'll be there in just a moment. 23 +I didnt realize it was so far away. 27 +Ill be there in just a moment. 23 Be there in a minute. 16 -I couldn't get a cab. 15 -May I bring a friend? 16 +I couldnt get a cab. 15 +May I bring a friend 16 This is my friend Mary. 18 Glad to meet you. 13 -How's the family? 13 -How's business? 12 +Hows the family 13 +Hows business 12 John, this is Mary, John. 20 -Mary, do you know john? 18 -Mary, have you met john? 19 -I've been better. 13 +Mary, do you know john 18 +Mary, have you met john 19 +Ive been better. 13 Good to meet you. 13 So we finally meet face to face. 25 -How are you getting along? 21 +How are you getting along 21 Pardon me... 8 -If it's okay with you. 16 +If its okay with you. 16 As you are aware... 13 Come again. 9 -I can't hear you. 12 -That's all right. 13 +I cant hear you. 12 +Thats all right. 13 Forgive and forget. 16 -I'll let u off this time. 18 -Let's bury the hatchet. 18 +Ill let u off this time. 18 +Lets bury the hatchet. 18 Think on it no more. 15 -Don't give it another thought. 24 -I'll let it slide this time. 21 -I'll give you another chance. 23 -I won't hold it against you. 21 -It's twelve noon. 13 -It's three o'clock sharp. 19 -It's three-fifteen. 15 -It's twenty to four. 15 -Could you tell me what time it is? 26 -Could you please tell me the time? 27 -Do you know what time it is? 21 -Do you know the time? 16 -Do you have the correct time? 23 -It's noon. 7 -It's twelve midnight. 17 -It's three o'clock on the dot. 22 -It's three o'clock on the nose. 23 -It's just after three. 17 -It's getting later. 15 -Let's do lunch sometime. 19 -Good-bye for now. 13 +Dont give it another thought. 24 +Ill let it slide this time. 21 +Ill give you another chance. 23 +I wont hold it against you. 21 +Its twelve noon. 13 +Its three oclock sharp. 19 +Its threefifteen. 15 +Its twenty to four. 15 +Could you tell me what time it is 26 +Could you please tell me the time 27 +Do you know what time it is 21 +Do you know the time 16 +Do you have the correct time 23 +Its noon. 7 +Its twelve midnight. 17 +Its three oclock on the dot. 22 +Its three oclock on the nose. 23 +Its just after three. 17 +Its getting later. 15 +Lets do lunch sometime. 19 +Goodbye for now. 13 Exit stage right. 14 -It's been fun talking to you. 22 -It's been nice chatting with you. 26 -It's so good to see you again. 22 +Its been fun talking to you. 22 +Its been nice chatting with you. 26 +Its so good to see you again. 22 Must run. 7 -I'm going to have to run. 18 -I'm all out of time. I'll have to say goodbye now. 36 +Im going to have to run. 18 +Im all out of time. Ill have to say goodbye now. 36 Look at the time. I really must go. 26 -Let's call it a day. 14 -Let's get out of here. 16 -Let's get going. 12 +Lets call it a day. 14 +Lets get out of here. 16 +Lets get going. 12 We should be on our way. 18 -Let's say our goodbyes. 18 -You're most welcome. 16 +Lets say our goodbyes. 18 +Youre most welcome. 16 The pleasure was all mine. 21 It was nothing. 12 -You're entirely welcome. 20 -Need someone to talk to? 19 +Youre entirely welcome. 20 +Need someone to talk to 19 It will work out. 13 -Are you feeling ok? 15 -Are you all alright? 16 -Do you feel all right? 17 -Did life get you down? 17 -Have you no conscience? 19 -How is everything? 15 -What's happening? 14 -Where did you go? 13 +Are you feeling ok 15 +Are you all alright 16 +Do you feel all right 17 +Did life get you down 17 +Have you no conscience 19 +How is everything 15 +Whats happening 14 +Where did you go 13 We missed you. 11 -I haven't seen you in years! 21 -Welcome back, stranger! 20 +I havent seen you in years 21 +Welcome back, stranger 20 Fancy meeting you here. 19 -Haven't we met before? 17 -How are you this bright morning? 26 -Long time no see! 13 -I've been meaning to call you. 23 -Do you have pictures? 17 -I'm tone-deaf. 10 -I'm tone deaf. 10 -What a racket! 11 -Prick up your ears! 15 +Havent we met before 17 +How are you this bright morning 26 +Long time no see 13 +Ive been meaning to call you. 23 +Do you have pictures 17 +Im tonedeaf. 10 +Im tone deaf. 10 +What a racket 11 +Prick up your ears 15 Tastes great. 11 That noise is deafening. 20 That noise assaults the ear. 23 That noise is setting my teeth on edge. 31 My ears are ringing. 16 -I'm sorry, I'm hard of hearing. 23 -I'm so sorry. 9 -I'm so sorry for your loss. 20 +Im sorry, Im hard of hearing. 23 +Im so sorry. 9 +Im so sorry for your loss. 20 You have my deepest sympathy. 24 Please accept my sympathy. 22 I share your pain. 14 @@ -5268,103 +5268,103 @@ My heart goes out to you. 19 I share your sorrow. 16 If you need anything, please let us know. 33 Our thoughts are with you. 21 -Do you mean to tell me? 17 -I didn't get that. 13 -I don't follow you. 14 +Do you mean to tell me 17 +I didnt get that. 13 +I dont follow you. 14 Open your ears. 12 -You've got it wrong. 15 -What's the point? 13 -I didn't hear from you 17 -How so? 5 -What's the bottom line? 18 -I don't get it. 10 -That's not what I meant. 18 -That's not what I said. 17 +Youve got it wrong. 15 +Whats the point 13 +I didnt hear from you 17 +How so 5 +Whats the bottom line 18 +I dont get it. 10 +Thats not what I meant. 18 +Thats not what I said. 17 I said no such thing. 16 -I didn't mean to imply that. 21 +I didnt mean to imply that. 21 Please speak more slowly. 21 -When do you open? 13 -Are you open on Saturday? 20 -Are you open on weekends? 20 -What are your hours? 16 -How late are you open today? 22 -Can I help you with something? 24 +When do you open 13 +Are you open on Saturday 20 +Are you open on weekends 20 +What are your hours 16 +How late are you open today 22 +Can I help you with something 24 I need gloves. 11 -Do you have our store card? 21 -Can I show you something? 20 -What size do you need? 17 +Do you have our store card 21 +Can I show you something 20 +What size do you need 17 I have just the thing. 17 -It's a gift. 8 +Its a gift. 8 I am famished. 11 -I'm dying of hunger. 15 -Dinner's ready. 12 +Im dying of hunger. 15 +Dinners ready. 12 How about a bite. 13 Please pass me the salt. 19 -When do we eat? 11 -When's dinner? 11 -When's supper? 11 -When will supper be ready? 21 -What's to eat? 10 -What are we having? 15 -It's almost ready. 14 +When do we eat 11 +Whens dinner 11 +Whens supper 11 +When will supper be ready 21 +Whats to eat 10 +What are we having 15 +Its almost ready. 14 Time to eat. 9 That tastes like chicken. 21 -That's unfit for human consumption. 29 +Thats unfit for human consumption. 29 Like mother, like daughter. 23 We are a family. 12 -It's almost done. 13 -I'm so furious. 11 +Its almost done. 13 +Im so furious. 11 I was scared. 10 I was terrified. 13 You frightened me. 15 You scared me to death. 18 -I'm going nuts. 11 -I'm going crazy. 12 -I'm losing my mind. 14 +Im going nuts. 11 +Im going crazy. 12 +Im losing my mind. 14 I need a break. 11 I need some sleep. 14 My head is going to explode. 22 -I can't take it anymore. 18 -I can't deal with this anymore. 24 +I cant take it anymore. 18 +I cant deal with this anymore. 24 I have got butterflies in my stomach. 30 -I've never been so mad in my life. 25 +Ive never been so mad in my life. 25 Safety first. 11 Take your time. 12 Play it cool. 10 -Be careful! 9 -Don't forget to call. 16 +Be careful 9 +Dont forget to call. 16 Call when you get there. 19 Text me. 6 The exit stage left. 16 Hello, Smith residence. 20 Hello, this is John speaking. 24 -Smith, how may I direct your call? 27 -City hall. what department, please? 29 +Smith, how may I direct your call 27 +City hall. what department, please 29 I need to take this call. 19 -Can you hold it? 12 +Can you hold it 12 Hang on a moment. 13 I really have to go now. 18 -I'll just be a minute. 16 -Are you being helped? 17 -Could I have someone call you? 24 +Ill just be a minute. 16 +Are you being helped 17 +Could I have someone call you 24 I am standing behind you. 20 I am a hundred percent behind you. 27 I am with you. 10 You have got my support. 19 You can count on me. 15 -You've got my vote. 14 +Youve got my vote. 14 You can lean on me. 14 You can trust me. 13 You can put your trust in me. 22 If you need me, call. 16 -I'll always be there for you. 22 +Ill always be there for you. 22 I have faith in utmost in you. 23 I trust you completely. 19 I have confidence in you. 20 -I'm cool. 6 +Im cool. 6 Keeping cool. 11 Fine and dandy. 12 -Couldn't be better. 15 +Couldnt be better. 15 Happy as a clam. 12 Getting by. 9 Been getting by. 13 @@ -5378,26 +5378,26 @@ Right you are. 11 Sure thing. 9 You bet. 6 By all means. 10 -That's true. 9 -That's not true. 12 -You've got that wrong. 17 +Thats true. 9 +Thats not true. 12 +Youve got that wrong. 17 You missed the boat. 16 -You're wrong. 10 +Youre wrong. 10 Listen here. 10 Get a load of this. 14 Hear me out. 9 I am talking to you. 15 -You got a minute? 13 -Did you get a minute? 16 +You got a minute 13 +Did you get a minute 16 I need to talk. 11 -Can I talk to you? 13 -Let's talk. 8 -Let's chew the fact. 15 -Do you have the time? 16 +Can I talk to you 13 +Lets talk. 8 +Lets chew the fact. 15 +Do you have the time 16 Coming through. 13 You first. 8 Catch you later. 13 -No, I don't think so. 15 +No, I dont think so. 15 Blaze of sunshine. 15 We were trundling through the countryside at night. 43 The eyes are the organs of sight. 26 @@ -5408,7 +5408,7 @@ The contest should be very keenly fought. 34 The wind is moderate today. 22 Folk songs are part of our common heritage. 35 A forensic team was hunting for clues. 31 -What a big honeycomb it is! 21 +What a big honeycomb it is 21 I could elicit no response from him. 29 Choral singing becomes a national pride. 34 There was no spontaneity to her. 26 @@ -5423,7 +5423,7 @@ We fixed up the attic as a study. 25 The driven part should be geared up. 29 I had loftily denied the assertion. 29 He tucked his wallet into a pocket. 28 -There's no town just a cluster of shops. 31 +Theres no town just a cluster of shops. 31 The film had an exciting plot. 24 The first prize was a car. 20 People got lost in the hampton court maze. 34 @@ -5432,7 +5432,7 @@ The floor is littered with scraps of paper. 35 Her husband looked at her sternly. 28 Levers are blanked out of strip steel. 31 A ground sweat cures all disorders. 29 -It's tempting to believe her story. 28 +Its tempting to believe her story. 28 The president was disguised as a peasant. 34 Birds of a feather flock together. 28 I prefer coffee. 13 @@ -5447,7 +5447,7 @@ The sailors are bending to the oars. 29 Lucy is much to be pitied. 20 One particular incident sticks in my mind. 35 The reward of suffering is experience. 32 -Repent and ask god's forgiveness. 27 +Repent and ask gods forgiveness. 27 John awoke from a fitful sleep. 25 They are skilled debaters. 22 The committee has decided to dismiss him. 34 @@ -5462,7 +5462,7 @@ Officers are entitled to travel first class. 37 The best grades of tea are expensive. 30 We won by a lopsided score. 21 I have been banished to a distant corridor. 35 -I'm not awfully keen on fish. 22 +Im not awfully keen on fish. 22 She flung him a scornful look. 24 I am sorrowfully shouting loudly. 28 He walked nonchalantly to the door. 29 @@ -5474,7 +5474,7 @@ The deer fell prey to the lion. 24 I recognized your jeep. 19 I was guarding you while you dozed. 28 Farmers feed hay to the cows. 23 -Brinjal is my sister's favorite. 26 +Brinjal is my sisters favorite. 26 The birds live mainly on nectar. 26 A snake slithered across the grass. 29 Spices are widely used in Indian cooking. 34 @@ -5495,7 +5495,7 @@ Diffusion clarifies the difference. 31 The drought damaged all the crops there. 33 She was prey to irrational fears. 27 The faintest suspicion of a tinge is cleared. 37 -She recognized Pierre's voice. 25 +She recognized Pierres voice. 25 Jaggery is used as sugar. 20 She is bleeding due to mosquitoes. 28 He is sniffing out his next project. 29 @@ -5532,10 +5532,10 @@ Birch trees have white bark. 23 She professed a belief in god. 24 The whole holiday was a catalog of disasters. 37 The city was devastated by floods. 28 -The scribe, what was his fate? 24 +The scribe, what was his fate 24 The coastal route had been mined. 27 The Japanese empire was quickly dismantled. 37 -I'm a foreigner. 12 +Im a foreigner. 12 A Persian rug covered the polished floor. 34 The viceroy did not respond to this letter. 35 It is precisely the case. 20 @@ -5552,13 +5552,13 @@ The tributary is debauched into the big river. 38 They kept a record of earthquake disasters. 36 He is conquering his fear. 21 He saw the caravan people. 21 -She's very religious. 17 +Shes very religious. 17 They lived in a town close to the frontier. 34 The archive is a goldmine for historians. 34 The dynasty he founded ruled for 700 years. 35 No record of this letter exists in the archives. 39 Libraries are stores of factual information. 38 -I'm just one of his many conquests. 27 +Im just one of his many conquests. 27 There is an emergency. 18 He became the patron of foresters. 28 Extremely few historians support this. 33 @@ -5570,11 +5570,11 @@ She is having good personalities. 28 He gave us the chronology of each item. 31 Who loses liberty loses all. 23 She was given freedom. 18 -They are fighting for women's equality. 32 +They are fighting for womens equality. 32 The country still has a strong monarchy. 33 Your head is full of silly notions. 28 Rethought is think again about. 26 -Only a few of the nation's peasants are literate. 39 +Only a few of the nations peasants are literate. 39 The soviet union is no more. 22 Massacres like the picture too are terrorists. 39 Love is a sweet tyranny. 19 @@ -5584,15 +5584,15 @@ The clergy prey on bereaved families. 31 Sant wrote many treatises. 22 Do business, but be not a slave to it. 29 Earth is a planet. 14 -It'll soon be sunset. 16 +Itll soon be sunset. 16 Stars are celestial bodies. 23 -Does life exist on other planets? 27 +Does life exist on other planets 27 You can grow dwarf conifers in pots. 29 Someplace emphasis on biotic. 25 The system is relatively easy to use. 30 Custom is second nature. 20 Exhaust fumes are bad for your health. 31 -Bicycling doesn't pollute the air. 28 +Bicycling doesnt pollute the air. 28 The terrain is very flat. 20 He again climbs in altitude. 23 Oil is extracted from olives. 24 @@ -5602,7 +5602,7 @@ A tropic heatwave is expected to hit the city. 37 She lit the gas with a taper. 22 A king in ancient times had many slaves. 32 A meridian is an imaginary circle. 28 -She's an expert on maritime law. 25 +Shes an expert on maritime law. 25 The two conspired to rob a bank. 25 The aridity of soil prevents a permanent settlement. 44 A theft desire is unlimited. 23 @@ -5610,15 +5610,15 @@ She was heard to emit a cry of horror. 29 The satellite orbits the earth every 48 hours. 38 Our ultimate aim is to realize communism. 34 You can grow dwarf conifers in pots on the patio. 39 -"The earth is called the ""blue planet""." 29 +The earth is called the blue planet. 29 Hydrogen and oxygen combine to form water. 35 -Don't confuse comets and asteroids. 29 +Dont confuse comets and asteroids. 29 Each galaxy contains myriads of stars. 32 In the photo, her face was slightly elongated. 38 Plant cells responded to biotic stresses. 35 Established practices are difficult to modify. 40 His ideas on this subject are a bit foggy. 33 -The rainforest is a self-supporting ecosystem. 39 +The rainforest is a selfsupporting ecosystem. 39 I had to barter with the locals for food. 32 The pet remedies is a feature. 24 The renewable energy age is here. 27 @@ -5644,7 +5644,7 @@ She sets a high value on autonomy. 27 The new democracies face tough challenges. 36 Dictators rarely go down without a fight. 34 Corruption was rife before the election. 34 -I voted 'no' in the referendum. 23 +I voted no in the referendum. 23 They were absolute monarchies. 26 They are accused of medical malpractice. 34 Catering in the schools is run on a franchise basis. 42 @@ -5656,13 +5656,13 @@ He praised her role in the struggle against apartheid. 45 The matrimonial causes huge losses. 30 There was a dignity about. 21 Provisions of new york statute. 26 -In the heat of midday! 17 +In the heat of midday 17 Screw Walt and his stupid prejudices. 31 -They don't relish the idea of abolishing. 33 +They dont relish the idea of abolishing. 33 Them elaborates on the theme. 24 I hate to see her misusing her time. 28 The vast majority of cash. 21 -No matter how sick or unhealthy they are! 33 +No matter how sick or unhealthy they are 33 The start of real tyranny in us. 25 There is a fear of adverse legal action. 32 This includes during colonial times. 31 @@ -5692,7 +5692,7 @@ The threshers came and threshed the oats. 34 The farmers are out harvesting. 26 The forest gets down depletion in condition. 37 The child was rolling a hoop. 23 -I expect he'll pass the examination. 29 +I expect hell pass the examination. 29 The conductor beat time with a baton. 30 A flock of wild geese flew overhead. 29 One must howl with the wolves. 24 @@ -5711,23 +5711,23 @@ I reeled round in a daze. 19 They redeployed the troops along the seashore. 39 He was deflated by the news. 22 He sprang up from the sofa. 21 -Don't jostle against me! 19 +Dont jostle against me 19 The picture was at a slight angle. 27 I went to a violin recital today. 26 Our tryst is a litter of green. 24 -She's getting very old and frail. 26 -Don't get into a fuss about anything. 29 +Shes getting very old and frail. 26 +Dont get into a fuss about anything. 29 She muttered a threat. 18 A winding path leads to the cave. 26 The sail flapped in the wind. 23 -Don't pretend you don't know. 22 +Dont pretend you dont know. 22 We sat in the leafy shade of an oak tree. 31 The champion was in sparkling form. 29 The baby gurgled happily. 21 The thunder panicked the horses. 27 The dove is a symbol of peace. 23 Freedom of expression is a human right. 32 -A servant is known for his master's absence. 35 +A servant is known for his masters absence. 35 Joe sniffed miserably and nodded. 28 A note of hysteria crept into her voice. 32 He faithfully lived up to his promise. 31 @@ -5747,24 +5747,24 @@ Joe is an eyewitness of murder. 25 Sam was shocked by seeing carcasses. 30 Life went back to a semblance of normalcy. 34 The town grew in a haphazard way. 26 -The ship's route is clearly delineated. 32 +The ships route is clearly delineated. 32 She has worshipped her ancestor. 27 Solitude had always been her friend. 30 The maestro was nursing a secret passion. 34 I bought a few trifles as souvenirs. 29 -King's works seem to lack something on celluloid. 40 +Kings works seem to lack something on celluloid. 40 Venture a small fish to catch a great one. 33 Joe leaned over and conferred with his attorneys. 41 He won the prize they all coveted. 27 There is peace among the tribes. 26 We are on an island. 15 Dolphins smiled out at her. 22 -It was more like a tsunami! 21 +It was more like a tsunami 21 The child of sloth and liberty. 25 Whether by sharp teeth, claws, tusks, or. 34 She could smell the musk. 20 Proteins and DNA are polymers. 25 -He's a scurvy wretch. 16 +Hes a scurvy wretch. 16 You eat too much starch. 19 All the fibers are natural. 22 Jaggery is sweet in the taste. 24 @@ -5776,7 +5776,7 @@ The cow is a ruminant. 17 A vaccine is being tested. 21 The virus was already here. 22 I added some more yeast. 19 -Anne, there's been a case of polio. 27 +Anne, theres been a case of polio. 27 He was the god of fertility and crops. 30 Brass is an alloy of copper and zinc. 29 Copper pipe is sold in lengths. 25 @@ -5788,7 +5788,7 @@ Bev said they are dolphins. 22 Camel dung, musk, and lumps of rock. 29 The poachers have a quick. 21 A poisonous dart had wounded him. 27 -A tasty aniseed-flavored herb for salads. 34 +A tasty aniseedflavored herb for salads. 34 I only use vegetable fats in cooking. 30 Fish is rich in vitamins and minerals. 31 Plants absorb nutrients from the soil. 32 @@ -5811,7 +5811,7 @@ The amount of lactobacillus added to the milk. 38 Salt was the cure to the common preservation dilemma. 44 The operation of filtration is very important. 39 The solubility is equal. 20 -What do you infer from her refusal? 28 +What do you infer from her refusal 28 The trees formed a leafy canopy above heads. 36 Centrifugation uses a centrifuge that can spin. 40 The impurity is decreased as the chemical was clear. 43 @@ -5827,24 +5827,24 @@ He is a valuable acquisition for our firm. 34 A lot of my grant goes on the book. 26 The first comer was the sultan himself. 32 Some late microliths have also boon found. 35 -We can't overbuild a natural environment area. 38 +We cant overbuild a natural environment area. 38 Pollution led to a shrinkage of grasslands. 36 The summer sunshine ripened the melons. 33 -It's hard to tame a tiger. 19 +Its hard to tame a tiger. 19 A demarcated area of the earth. 25 They are waging warfare with drought. 31 The tripartite definition has obvious attractions. 44 The staff is doing a splendid job. 27 The plastic arts include sculpture. 30 -The inscriptions are fresh and deep-grooved. 37 +The inscriptions are fresh and deepgrooved. 37 The face was ancient. 17 They were pretty loud and medieval. 29 Abby was reluctant at first. 23 -I refuse your charter point-blank. 28 +I refuse your charter pointblank. 28 This venture was to be based. 23 Once was an old mercantile was there. 30 Granting them whatever powers are. 29 -Could I have three cinnamon donuts? 29 +Could I have three cinnamon donuts 29 Stir in vanilla and cinnamon. 24 David put it on with a flourish. 25 Our aim is to reduce road casualties. 30 @@ -5872,7 +5872,7 @@ The tropic sun glared down on us all day. 32 The wheel is revolving around its axis. 32 The family resides in southern India. 31 Bake until the crust is golden. 25 -One's mantle falls on somebody. 25 +Ones mantle falls on somebody. 25 The ocean splashed against the pier. 30 Diamonds are the hardest known mineral. 33 The interior of the church was dark. 29 @@ -5885,7 +5885,7 @@ The rainbow formed a beautiful arc in the sky. 37 Arid areas have minimal rain. 24 The valley was carved out by glaciers. 31 Streams can carry sediment or alluvium. 33 -You can't build buildings on swampy land. 33 +You cant build buildings on swampy land. 33 It is freezing outside. 19 Only skeletons of buildings remained. 32 Rhythm is the vitality of the music. 29 @@ -5897,7 +5897,7 @@ The park is in the northern part of the city. 35 The ball ran to the boundary. 23 Concentric spheres are parallel. 28 Two thoughts were uppermost in my mind. 32 -It wasn't squared for hopscotch. 26 +It wasnt squared for hopscotch. 26 The molten metal is poured into the mold. 33 The blazing magma was surging by us. 29 The discovery had begun to put humankind in. 36 @@ -5907,7 +5907,7 @@ The topography of the tales is absolutely correct. 42 There is not a habitable structure left on the planet. 44 The place looked uninhabited and untouched. 37 The pop group is now touring the provinces. 35 -Most people's faces are asymmetrical. 31 +Most peoples faces are asymmetrical. 31 It is excavated in soft calcareous stone. 34 Her singing voice has a pure, crystalline quality. 42 It is not its cure. 14 @@ -5928,10 +5928,10 @@ They are fighting for the equality of women. 36 He spoke without preamble. 22 That is a fundamentally undemocratic argument. 40 I admired him for his determination. 30 -He was overwhelmingly re-elected as party leader. 41 +He was overwhelmingly reelected as party leader. 41 The representatives ruled against the motion. 39 Deasy had gone home with tuberculosis. 32 -God's prescribed time in history. 27 +Gods prescribed time in history. 27 He examined me using the ultrasound. 30 May I and other practitioners. 25 He wasted no time with amenities. 27 @@ -5940,12 +5940,12 @@ She had resisted his domination. 27 Fate had to intervene. 18 The full inheritance of his love. 27 The legislature ignored their pleas. 31 -The camera's shutter mechanism is broken. 34 +The cameras shutter mechanism is broken. 34 His new job seemed to rejuvenate him. 30 The state legislature exists in many cases. 36 The parliamentary session is due to end. 33 He is a professor of moral philosophy at oxford. 39 -It's such a valuable magazine. 24 +Its such a valuable magazine. 24 We have to strive for what we want. 27 He was in thralldom. 16 We give our patronage to local shops. 30 @@ -5954,7 +5954,7 @@ The disloyal thought was instantly suppressed. 40 Hard household chores roughed her hands. 34 The little hooks for hanging utensils. 32 The flat had been meticulously cleaned. 33 -Don't admit liability for the accident. 32 +Dont admit liability for the accident. 32 The striking miners will soon return to work. 37 Mosquitoes breed in stagnant pools of water. 37 All seats have been inhabited by students. 35 @@ -5981,7 +5981,7 @@ Events took a comical turn. 22 The airplane cracked up in landing. 29 I was curious. 11 Poverty is no shame, laziness is. 27 -Self-trust is the essence of heroism. 30 +Selftrust is the essence of heroism. 30 We were massacred in the final. 25 A smile suddenly animated her face. 29 He denied the depravity of man. 25 @@ -6006,13 +6006,13 @@ The children eyed the cakes greedily. 31 The bullet missed its intended target. 32 A child can drown in only a few inches of water. 37 The knitting should be 120 stitches wide. 34 -A guilty conscience is a self-accuser. 31 +A guilty conscience is a selfaccuser. 31 This cheating is disgraceful. 25 It is a mystical experience for him. 29 I heard the floorboards creak. 25 -After a moment's hesitation, he nodded. 32 +After a moments hesitation, he nodded. 32 The regulation allows for no variation. 33 -May many fortunes find their way to you! 32 +May many fortunes find their way to you 32 The army put down the rebellion. 26 Discontent is the first step in progress. 34 The two sisters correspond every week. 32 @@ -6024,7 +6024,7 @@ The man began to scream horribly. 27 She snuggled up to him on the sofa. 27 Seagulls hover over the surging waves. 32 A mood of melancholy descended on us. 30 -What are the symptoms of shingles? 28 +What are the symptoms of shingles 28 She started to chew her tail. 23 Career judgment is good now. 23 Glucose was dripping into the patient. 32 @@ -6033,9 +6033,9 @@ My stomach churns. 15 It made me half dizzy. 17 Peaches are a good source of fiber. 28 She stopped to have a yarn with me. 27 -It's a synthetic diamond. 20 -In the digestive tract, they are! 27 -You'll bake in that fleece jacket! 27 +Its a synthetic diamond. 20 +In the digestive tract, they are 27 +Youll bake in that fleece jacket 27 She is weaving on her loom. 21 The farmer is shearing his sheep. 27 The silkworm spins a cocoon. 23 @@ -6060,7 +6060,7 @@ They drove old cars with bad mufflers. 31 Her silk dress rustled as she moved. 29 A candle had set the curtains on fire. 30 Mother used to spin her yarn. 23 -Stretch fabric is quick-drying and wicks moisture. 42 +Stretch fabric is quickdrying and wicks moisture. 42 The straw mattresses are airing there. 32 Quilts were neatly folded inside a closet. 35 There are cotton presses and ginning factories. 40 @@ -6071,7 +6071,7 @@ A caterpillar transforms into a butterfly. 36 Mum made mulberry pies the first year. 31 Polluted water sources are a hazard to wildlife. 40 He was dressed in his usual polyester shirt and pants. 44 -It's a very light durable polymer that i created. 39 +Its a very light durable polymer that i created. 39 There was a polythene bag in the cabin. 31 It was made of scrap materials. 25 Take a look at an atom. 17 @@ -6115,11 +6115,11 @@ I hate excessive subservience. 26 The sandalwood aroma had faded. 26 Park and the museum of the confederacy. 32 Several bore repeating muskets present. 34 -I didn't like the way the film glorified war. 35 +I didnt like the way the film glorified war. 35 He left in a rage of humiliation. 26 She was crippled in a car accident. 28 The rich peasants answered mockingly. 32 -He seems never deplete of them! 25 +He seems never deplete of them 25 He said that this is my reparation. 28 There are cartloads of junk in the garage. 34 This ritualize battle is to death. 28 @@ -6130,7 +6130,7 @@ Her reputation is sullied by crimes. 30 A crowd of onlookers formed around the fight. 37 She felt too apathetic even to move. 29 A selfless man has an indomitable spirit. 34 -What is the orbital speed of mercury? 30 +What is the orbital speed of mercury 30 Crop rotation helps prevent soil erosion. 35 More about the energies of the march equinox. 37 An astronomer can determine the brightness of each star. 47 @@ -6168,21 +6168,21 @@ Time is not an accumulation. 23 Good luck in weathering this storm. 29 Marble is a metamorphic rock. 24 The drainage system needs construction. 34 -It's the confluence of three rivers. 29 +Its the confluence of three rivers. 29 We came to a picturesque cottage. 27 Mars has almost no atmospheric pressure. 34 Provide plenty of compost and mulching. 33 When the oceans were streams. 24 The united states legislative branch. 32 Morning assembly is held in the school. 32 -Covid-19 is a dangerous epidemic. 27 +Covid19 is a dangerous epidemic. 27 That was up for debate. 18 The preceding trend is important. 28 She was a natural artist. 20 The young initiate was shaking. 26 The coalition would never allow it. 29 I speculated on religious factionalism. 34 -I think that's a very sensible idea. 28 +I think thats a very sensible idea. 28 Many students are not on the electoral register. 40 He will create incentives anyhow. 28 The estate is holding an auction to raise money. 39 @@ -6201,7 +6201,7 @@ It had suffered immense damage. 26 Dating factory nominated at the I date awards. 38 The center of the opposition it is. 28 Progressive house music once a week. 30 -I'm not trying to draft legislation. 29 +Im not trying to draft legislation. 29 The wall has been defaced with slogans. 32 He will not confirm or deny the allegations. 36 It would be unfair not to let you have a choice. 37 @@ -6212,7 +6212,7 @@ It was incumbent on them to attend. 28 Two police officers were barring her exit. 35 We got the drop on the criminal. 25 This is in direct violation of our memorandum. 38 -She's decided to shack up with her boyfriend. 36 +Shes decided to shack up with her boyfriend. 36 It was sheer luxury to step into a hot bath. 34 They were toiling at their experiment. 32 He could feel his strength ebbing. 28 @@ -6224,7 +6224,7 @@ One of the missing paintings resurfaced. 34 Her hobbies are music, reading, and handicraft. 40 Surveys are offered at reasonable rates. 34 He did research on group dynamics styles. 34 -He was a hand-loom weaver then, a real craftsman. 39 +He was a handloom weaver then, a real craftsman. 39 His widowed mother brought him up. 28 Feed by measure and defy physician. 29 The hostages wept for joy on their release. 35 @@ -6235,10 +6235,10 @@ She turns pale at the sight of blood. 29 The crew is thirty in all. 20 Jack has gone aboard the plane. 25 The space shuttle is now in orbit. 27 -My son's dream is to be an astronaut. 28 +My sons dream is to be an astronaut. 28 The plant naturalizes well in grass. 30 Love thy neighbor as thyself. 24 -I'd assess your chances as low. 24 +Id assess your chances as low. 24 The detective scanned every bit of evidence. 37 Confidence is a plant of slow growth. 30 The dogs next door are a real nuisance. 31 @@ -6251,8 +6251,8 @@ I was nearly stifled by the smoke. 27 The women wore black veils. 22 The ground soaked up the rain. 24 The shower tailed off into a drizzle. 30 -He stroked the baby's head. 21 -You're joking, aren't you? 20 +He stroked the babys head. 21 +Youre joking, arent you 20 A dolphin leaped out of the water. 27 A hint of sarcasm crept into his voice. 31 He is affectionate to me. 20 @@ -6266,7 +6266,7 @@ He was buried with his wife. 22 She coaxed a smile from the baby. 26 I feel like a maggot in a carcass. 26 The air was sweet with incense. 25 -A home isn't just bricks and mortar. 28 +A home isnt just bricks and mortar. 28 The entire nation mourned her death. 30 Cloud to buy a cold chisel. 21 The mills of God grind slowly. 24 @@ -6282,7 +6282,7 @@ Lucy is snuggling up to me. 21 He defeated the philistines. 24 His courage never faltered. 23 I never doubted my interpretation. 29 -The policeman's badge deflected the bullet. 36 +The policemans badge deflected the bullet. 36 Fission power is a worse idea. 24 The book caused an uproar in France. 29 His family is agitating to get him home. 32 @@ -6292,7 +6292,7 @@ She is also a spoilt brat. 20 Got kind of a fungus on it. 20 Fold in coriander, onion, and chilies. 32 Half of the apples are unripe. 24 -Sorry, wild, I'm out of pickles. 25 +Sorry, wild, Im out of pickles. 25 They were woven from vines. 22 Separate the skins and the pulp. 26 Sand is insoluble in water. 22 @@ -6314,25 +6314,25 @@ Yet another uses fluorine as the reactant. 35 I have spoilt your life. 19 Garnish with fresh coriander to serve. 32 Her head was a bloody pulp. 21 -I'm afraid of earthquakes. 21 +Im afraid of earthquakes. 21 One day a storm came up. 18 His behavior was very odd. 21 The shell had a beautiful pearly luster. 33 Aluminum is a metal. 16 The rough cloth pricked my skin. 26 -The way he works isn't very systematic. 31 +The way he works isnt very systematic. 31 We possess ten acres of the plow. 26 -Are the temperatures given in celsius or Fahrenheit? 44 +Are the temperatures given in celsius or Fahrenheit 44 Conduction transfers heat via molecular collision. 44 Wood is a poor conductor of heat. 26 Warm air rises by the process of convection. 36 She was exposed to high levels of radiation. 36 Clinical trials of the new drug may take five years. 42 The overly familiar train conductor. 31 -It's a rabid displacement of all things. 32 +Its a rabid displacement of all things. 32 Some elements are too simple. 24 This is the hardness of heart. 24 -A metal's malleability is a measure. 29 +A metals malleability is a measure. 29 The first section discusses precious metals. 38 He gave the shovel a kick. 20 Aluminum is a kind of metal. 22 @@ -6381,7 +6381,7 @@ The crowd shrank back from it. 24 Let the lady have her dignity. 24 They fear for their own livelihoods if it is closed. 42 Wrap in cellophane or plastic wrap. 29 -Are they always among the first colonizers? 36 +Are they always among the first colonizers 36 He demarcated a piece of property. 28 Alaska is the last great wilderness. 30 They are heavy sleepers. 20 @@ -6396,7 +6396,7 @@ He is the captain of the mercantile boat. 33 The man could have his own little ecosystem. 36 Passenger services can best be described as skeletal. 45 The cookies will flatten slightly while cooking. 41 -Do you see this point on the map? 25 +Do you see this point on the map 25 The city stands on a rocky plateau. 28 The shape of the ocean is almost triangular. 36 Soon afterward he entered political life. 35 @@ -6419,8 +6419,8 @@ I should have stayed in the biosphere. 31 All the living organisms are linked to biosphere. 41 Friends agree best at a distance. 27 This is a matter of cardinal significance. 35 -Do these symbols have a particular significance? 41 -Protecting the environment is every man's duty. 39 +Do these symbols have a particular significance 41 +Protecting the environment is every mans duty. 39 The surrounding land is marshy. 26 The train is a safe means of transportation. 36 The aquarium has many tanks of fish. 29 @@ -6431,7 +6431,7 @@ Pollination is effected by the aid of insects. 38 The fungus is a decomposer organism. 30 The cleanser is almost a certain remedy and cure. 40 The temperature suddenly dropped to zero. 35 -I don't like the humidity of this climate. 33 +I dont like the humidity of this climate. 33 There is heavy precipitation in some parts. 36 The road straightened and on a plateau. 32 She meditated on the uncertainties of the future. 41 @@ -6473,7 +6473,7 @@ Congress is empowered to levy taxes. 30 This bridge over the river has a steel framework. 40 The two parties have united to form a coalition. 39 He is arrayed in ceremonial robes. 28 -The message was well-received by commissioners. 40 +The message was wellreceived by commissioners. 40 The best ambassadors for the sport are the players. 42 The supreme court judged him guilty. 30 It could fetter the independence of the judiciary. 42 @@ -6494,11 +6494,11 @@ It is a classic case of malnutrition. 30 It seemed like a good argument for eliminating me. 41 We measured the dimensions of the kitchen. 35 He decided to shirk his duty. 23 -The dog's tongue lolled out. 22 +The dogs tongue lolled out. 22 Tom lives in a log cabin. 19 I prefer coffee in the morning. 25 Never poke a boat from the bow. 24 -He's an emotional cripple. 21 +Hes an emotional cripple. 21 He is so lame. 10 The family lived in misery for several years. 37 I feel awful about forgetting her birthday. 36 @@ -6517,13 +6517,13 @@ He busked to supplement his meager wages. 34 It has a dormer roof joining both gables ends. 37 He slithered helplessly down the slope. 33 Floral arrangements were at a reedy minimum. 37 -He preens under his right-wing, then on top. 35 -We mustn't shirk our cleaning job. 27 +He preens under his rightwing, then on top. 35 +We mustnt shirk our cleaning job. 27 He was lolling in an armchair. 24 The captain always keeps a log. 25 Time does not bow to you, you must bow to time. 36 The sled coasted down the mountain slope. 34 -He shouted that he couldn't swim. 26 +He shouted that he couldnt swim. 26 The dog made a leap over the fence. 27 He was an old man with grey, grizzled hair. 34 The nurse was a cheerful plump woman. 30 @@ -6534,7 +6534,7 @@ A hero is known in a time of misfortune. 31 The little boy was chambered in a narrow cave. 37 Flowery carpets became the vogue. 28 The company advertised goods for sale. 32 -Wealth is the test of a man's character. 31 +Wealth is the test of a mans character. 31 Parents were left anxious. 22 A miasma rose from the marsh. 23 Their provisions were practically gone. 34 @@ -6549,7 +6549,7 @@ I closed my eyes in reverence. 24 Everyone ought to rarefy his spiritual life. 37 She made a decision and resolutely stuck to it. 38 The British were formerly dominant in India. 37 -The town wasn't electrified until 1990. 32 +The town wasnt electrified until 1990. 32 Donna like a xylophone, they said. 28 He is a young percussionist. 23 Every seed is a potential plant. 26 @@ -6600,10 +6600,10 @@ The girl is winnowing the chaff from the corn. 37 No words can be the disguise of base intentions. 39 Price alone is not a reliable indicator of quality. 42 Neutralization is not necessary for all. 34 -It's monotonous work, like most factory jobs. 37 +Its monotonous work, like most factory jobs. 37 The petroleum industry reached the island. 36 Dad is working at the refinery. 25 -The fool machine hit a tar pit!. 24 +The fool machine hit a tar pit. 24 A man screamed on the other side of the reservoir. 40 It is a natural acid trip. 20 The crowd gave a spontaneous cheer. 29 @@ -6611,14 +6611,14 @@ The skin of amphibians is permeable to water. 37 This pair of scales is not in equilibrium. 34 Eukaryotic cells contain a nucleus and organelles. 43 Chromosomes also determine the sex of animals. 39 -The crowd chanted their hero's name. 29 +The crowd chanted their heros name. 29 The victorious army returned in triumph. 34 The price includes tax. 19 The priests were robbed in black. 27 She objects to the ritual of organized religion. 40 The local limestone is very porous. 29 He made a keystone of his story. 25 -It is not exactly an auspicious start! 31 +It is not exactly an auspicious start 31 Our earth is a tomb. 15 The next day he hired a laborer. 25 Their acquaintance had not ripened into friendship. 44 @@ -6633,12 +6633,12 @@ This sugar cane is quite sweet and juicy. 33 You can stay at the monastery. 24 He was not a bigot. 14 The jumper has a geometrical pattern on it. 35 -It's just another of joe's grandiose schemes. 36 +Its just another of joes grandiose schemes. 36 Great limestone mansions were rising. 32 The post of mayor is largely ceremonial. 33 The anthropologist thinks about this. 32 The light was later supplemented with a foghorn. 40 -Descendants of the tribe re-emerged. 30 +Descendants of the tribe reemerged. 30 The consequences could be awful. 27 The folks spoke of open rebellion. 28 The land was too rocky to cultivate. 29 @@ -6678,7 +6678,7 @@ The oceanic lithosphere is much less. 31 I find the atmosphere there rather impersonal. 39 The hydrosphere consists of water. 29 It is the first whole of the biosphere laboratory. 41 -What of the role played by microbes? 29 +What of the role played by microbes 29 David looked across to the terrarium. 31 Water evaporates into steam. 24 You should test the salinity of the water. 34 @@ -6698,9 +6698,9 @@ We dispute its first axioms. 23 We think it is partial. 18 Life is the supreme guru. 20 She poured out his tea. 18 -Is the claim capable of proof? 24 +Is the claim capable of proof 24 The money was given to us by deed of covenant. 36 -Which spouse should enter into the covenant? 37 +Which spouse should enter into the covenant 37 They call it ethnic cleansing. 25 She managed to summon up a smile. 26 A writ was filed in the high court. 27 @@ -6716,7 +6716,7 @@ Yet he had been murdered. 20 She was up and protesting. 21 Awareness of the need for. 21 The suspect instead claimed solidarity with the oppressed. 50 -It doesn't need the apex. 19 +It doesnt need the apex. 19 The city of the pyramid. 19 The presidency of Ronald Reagan is here. 33 The appellate judge brought a bible over. 34 @@ -6725,7 +6725,7 @@ The high court acquitted him. 24 The federation has offered you. 26 He was obviously a subordinate. 26 Gambling debt is not legally enforceable. 35 -Who sanctioned bombing the town? 27 +Who sanctioned bombing the town 27 Minorities must still battle against discrimination. 46 The minority is subordinate to the majority. 37 He that marries for wealth, sells his liberty. 38 @@ -6735,7 +6735,7 @@ When you have finished an exercise, rule off. 37 The first priority was to mobilize his force. 37 Migrant workers are vulnerable to exploitation. 41 The sheets were aired on the line. 27 -It's impolite to stare at a girl. 25 +Its impolite to stare at a girl. 25 I will have fun with little blind girls. 32 The sculptor figured the girl in clay. 31 Sam became the navigator. 21 @@ -6773,7 +6773,7 @@ He accompanied his words with actions. 32 A downpour of rain put out the bonfire. 31 I wrote him an answer immediately. 28 A galled horse will not endure the comb. 32 -The horse's hooves bit deep into the soft earth. 38 +The horses hooves bit deep into the soft earth. 38 I felt obliged to ask them to dinner. 29 A buzzard soared high overhead. 26 The child was quivering in her arms. 29 @@ -6786,7 +6786,7 @@ That man is of undistinguished appearance. 36 Such a move is rare, but not unprecedented. 35 Her job is to superintend the production process. 41 The birds nest in huge colonies. 26 -How deep is the lake? 16 +How deep is the lake 16 The one decorated by ian smith. 25 In the storm drains in the park. 25 You are precious to me. 18 @@ -6825,7 +6825,7 @@ Cry up wine and sell vinegar. 23 This is an adaptation of a novel for the scenario. 40 The various elements of the novel fail to cohere. 40 We are hoping for good weather on Sunday. 33 -There's a fire extinguisher on the wall. 32 +Theres a fire extinguisher on the wall. 32 This can build your skill and efficiency. 34 The temperature was fairly low. 26 Highly inflammable ideas on board. 29 @@ -6834,7 +6834,7 @@ That was before the spontaneous concert. 34 This camphor represents your identified state. 40 This was an intercalary year. 24 In many annual plants, no cambium is found. 35 -How is cervical parenchyma strain treated? 36 +How is cervical parenchyma strain treated 36 Sclerenchyma is the supporting tissue in plants. 41 Stick the pieces on with tile cement. 30 The area is surrounded by alveoli. 28 @@ -6875,7 +6875,7 @@ We marched across the foothills. 27 The city has a warm climate. 22 Fish are plentiful in the lake. 25 The umbrella dripped moisture. 26 -I don't like the taste of olives. 25 +I dont like the taste of olives. 25 Mary is weaving a carpet. 20 The Colour is fixed in dyeing. 24 The order was given to evacuate. 26 @@ -6900,7 +6900,7 @@ Not so with paid media. 18 Most owners do not watch soap operas. 30 It is the trial of my faith. 21 No one has arrested me. 18 -Why do I feel guilty? 16 +Why do I feel guilty 16 They frantically waved at me. 24 Grace is an innocent child. 22 Energy moves by the channels. 24 @@ -6933,7 +6933,7 @@ We have just hit the inflection point. 31 Most trees lose their foliage in winter. 33 Jack was grinning all over his chops. 30 The shop assistant is very zealous. 29 -Don't make a nuisance of yourself. 27 +Dont make a nuisance of yourself. 27 Conceit is the quicksand of success. 30 He enjoys rough and tumbles play. 27 She was a very gracious lady. 23 @@ -6942,7 +6942,7 @@ Novelty is the great parent of pleasure. 33 The practice is the key to the treasure. 32 My son jumbled up all my papers. 25 They managed to blank the giants for five innings. 41 -An ill marriage is a spring of ill-fortune. 34 +An ill marriage is a spring of illfortune. 34 One of the crew fell overboard and drowned. 35 Aquatic sports include swimming and rowing. 37 He pleaded innocent to the charges. 29 @@ -6950,7 +6950,7 @@ I nominate john as the club president. 31 I would like to propose a vote of thanks to our host. 41 The men claim they did not receive a fair trial. 38 The examination results will be announced. 36 -An enemy's mouth seldom speaks well. 29 +An enemys mouth seldom speaks well. 29 The house was in a wretched state. 27 You must abide by what you have said. 29 The ship sank with great loss of life. 30 @@ -6963,18 +6963,18 @@ My fear has turned into exhilaration. 31 Johnson gleefully took up the challenge. 34 The palace is closed for restoration. 31 The radiance of power hangs around him. 32 -I'm afraid it's a fathomless mystery. 29 +Im afraid its a fathomless mystery. 29 The ship ran aground on a submerged reef. 33 Perspiration dampened her face and neck. 34 I trod on his foot by accident. 24 -What an extraordinary thing to say! 29 +What an extraordinary thing to say 29 A mysterious illness is affecting all animals. 39 The boy tried to squirm free. 23 I knew that in Europe. 17 A muffled pop and puff of smoke. 25 I have plenty of dough. 18 He was floating in time. 19 -The two matchstick lights in the boy's affrighted eyes blew out. 52 +The two matchstick lights in the boys affrighted eyes blew out. 52 She sank upon the snow. 18 Sunday was the day for collecting aluminum cans. 40 Hasty climbers have sudden falls. 28 @@ -6990,20 +6990,20 @@ Nobody clued us to this mystery. 26 Polio was then endemic among children my age. 37 It creates a new species. 20 The ancient races are extinct. 25 -It was a strange reserve! 20 +It was a strange reserve 20 He stumbled into the sanctuary. 26 Aves would turn the ship over. 24 Ulva is sea lettuce. 16 The embryo consists of two large fleshy cotyledons. 43 The coelomic fluid is a milky white liquid. 35 -A jaw-like appendage of an arthropod. 30 +A jawlike appendage of an arthropod. 30 Bent to puff at his cigarette. 24 There was no dough day. 18 Her hat sank at once. 16 Let the matchstick drop into the wet grass. 35 Aluminum will not break but stretch. 30 To graze his white cabbage. 22 -Would you pass the peas? 19 +Would you pass the peas 19 Jack went for a coffee. 18 A broken petal falls in the wind, has no laws in. 38 The petiole is much shorter than the blade. 35 @@ -7021,10 +7021,10 @@ I saw the whole of our polluted, endangered earth. 41 Christianity is a migratory religion. 32 Fraudulent investment schemes in reforestation projects. 50 Extinction of species with loss of habitat. 36 -I'll try to be as inconspicuous as possible. 35 +Ill try to be as inconspicuous as possible. 35 They are bilaterally symmetrical with a triploblastic body plan. 55 A worm is not considered vertebrates 31 -They're kind of like hagfish but different. 35 +Theyre kind of like hagfish but different. 35 Blood pressure and respiration are also recorded. 42 The roman empire existed for several centuries. 40 The capital of India is the new Delhi. 30 @@ -7055,7 +7055,7 @@ Rowdy has taken all this upheaval very well. 36 I could barely suppress a laugh. 26 He went back to his regiment. 23 The mag hisses and the cartridge ejects. 33 -He has proclaimed himself asking!. 28 +He has proclaimed himself asking. 28 Chains of polyps dangle from a float filled with gas. 43 Young actresses dwell in a quandary. 30 Forestry is a state protected industry. 33 @@ -7067,7 +7067,7 @@ Japan is not rich in corals and sponges. 32 Chains of polyps dangle from afloat. 30 The rising sun casts a golden glow. 28 There was a flicker of hope in his eyes. 31 -I'm going on holiday for a fortnight. 29 +Im going on holiday for a fortnight. 29 Deciduous forests are not so dense. 29 Few plants grow in tundra regions. 28 A peaceable settlement has been reached. 34 @@ -7083,27 +7083,27 @@ I eventually figured it out. 23 The inhabitants might be hostile. 28 The temporal battle was tribal. 26 Mining is a hazardous job. 21 -Yet the expenditure couldn't be directed. 34 +Yet the expenditure couldnt be directed. 34 The more expensive ones are. 23 Smith did not recognize him. 23 He was scheduled for an. 19 You have crossed some boundary. 26 The ancestral dust reveres. 23 The root has substantial. 21 -When it hits the mainstream, it's over. 31 +When it hits the mainstream, its over. 31 He invariably found them there. 26 She is so exotic. 13 The tragedy of the child migrants. 28 John felt replaced and displaced. 28 It was the survival of the sanctuaries. 32 -I don't have a pen. can you lend me one? 28 +I dont have a pen. can you lend me one 28 She used to tease me about my hair. 27 Pinch me and I will react. 20 The fish had a queer taste. 21 She tried to claw at his face. 23 An occasion lost cannot be redeemed. 30 I was obliged to abandon that idea. 28 -Don't trifle away your time. 22 +Dont trifle away your time. 22 I have no sympathy for beggars. 25 Someone patted me on the back. 24 He is a habitual criminal. 21 @@ -7119,7 +7119,7 @@ She stood poised for a moment. 24 Formula one is the pinnacle of motor racing. 36 The last part of the ascent is very steep. 33 The aggressors were fiercely fought back. 35 -Can you lend me your car this evening? 30 +Can you lend me your car this evening 30 The moving van is a monster of a truck. 30 Newcastle managed to claw a goal back. 31 Turn the jar upside down and shake it. 30 @@ -7127,7 +7127,7 @@ Suddenly he grabs her pincers with his. 32 A crab nipped my toe while I was paddling. 33 She yelled at her mischievous child. 30 The local tradesmen have objected to the plans. 39 -The six-month delay will be costly for the company. 41 +The sixmonth delay will be costly for the company. 41 Critics scored him for his foolishness. 33 The state of Nevada is largely desert. 31 This summer is scorching. 21 @@ -7154,12 +7154,12 @@ The bolt came away with a tacky wrenching sensation. 43 She steadfastly refused to speak. 28 The scandal ended his meteoric political career. 41 Hemoglobin is the red pigment found in the blood. 40 -I don't believe in medicine. 22 -It's not a disease. 14 +I dont believe in medicine. 22 +Its not a disease. 14 Malaria was a normal disease to me. 28 -What are the symptoms of anemia? 26 -Beware! lest I should fall. 21 -He's torn cartilage. 16 +What are the symptoms of anemia 26 +Beware lest I should fall. 21 +Hes torn cartilage. 16 He pulled a muscle in his groin. 25 She watched the snake slither away. 29 Learn to creep before you leap. 25 @@ -7188,21 +7188,21 @@ The bouillon should have a nutty brownish color. 40 She stood with her backbone rigid. 28 My toothbrush is losing its bristles. 31 The gold was hidden in a secret cavity. 31 -The cold-pressed into his rib cage. 28 +The coldpressed into his rib cage. 28 The police unearthed a skeleton in his garden. 38 The production process is to be streamlined. 37 -Middle-latitude cyclones originate at the polar front. 46 +Middlelatitude cyclones originate at the polar front. 46 Vandals had smashed all the windows. 30 I advised him on technical matters. 29 The thumb is opposable to the forefinger. 34 Let me check your blood pressure. 27 -The south-west monsoon sets in during April. 36 +The southwest monsoon sets in during April. 36 The anus is a mucous membrane. 24 Transport to the chloroplast involves a similar process. 48 Prokaryotes lack mitochondria. 27 Pseudopodia are characteristic of many dipterous larvae. 49 The thallus may be unicellular or multicellular. 41 -Prokaryotic cells lack membrane-bound organelles. 43 +Prokaryotic cells lack membranebound organelles. 43 The voice of ultrasonic waves is high. 31 Earthquakes are extremely difficult to predict. 41 There is a stagnant pool at the bottom. 31 @@ -7211,7 +7211,7 @@ They can also relieve diarrhea. 26 I iron my clothes almost every day. 28 The river flows cranking into the village. 35 Corps under sickles. 17 -Don't take his help for granted. 25 +Dont take his help for granted. 25 Wealth makes worship. 18 She advocated higher salaries for teachers. 37 This is not to say that athletes are mystics. 36 @@ -7236,8 +7236,8 @@ And then the exquisite twist happened. 32 Egypt has a long history of amazing craftsmanship. 42 Racism was acutely flourishing. 27 The good seaman is known in bad weather. 32 -Tomorrow's weather will be cloudy. 28 -I wear blue-tinted glasses on sunny days. 33 +Tomorrows weather will be cloudy. 28 +I wear bluetinted glasses on sunny days. 33 It is interesting to contrast the two writers. 38 The monsoon rains were beating down. 30 The area has an abundance of wildlife. 31 @@ -7278,7 +7278,7 @@ The explorers discovered an inward passage. 37 The troop trotted the hills and valleys. 33 He shaved his beard with a new trend. 29 The beach is pebbly. 16 -We saw a real live rattlesnake! 25 +We saw a real live rattlesnake 25 Illiteracy was widespread at that time. 33 The lion is known by his claws. 24 The boy was twiddling his pen. 24 @@ -7290,31 +7290,31 @@ All these events had been revealed by prophecy. 39 The expenses came to an enormous sum. 30 Such a small mistake is pardonable. 29 The Japanese are an industrious people. 33 -My sympathies go out to the boy's mother. 32 +My sympathies go out to the boys mother. 32 Sloth is the key to poverty. 22 Wild notions inhabit his mind. 25 You should muzzle your dog. 22 The refugees were a pitiful sight. 28 She scooted down the road after them. 30 -I don't ride the subway late at night. 29 +I dont ride the subway late at night. 29 The device exploded underneath a van. 31 She jabbed at the elevator buttons. 29 -She's very grumpy when her toothaches. 31 +Shes very grumpy when her toothaches. 31 I got lost in the London underground. 30 A word to the wise is enough. 22 The dogs tracked the wolf to its lair. 30 The vibrations of the vehicles rattled the windows. 43 The lion stalks its prey through the long grass. 39 -The snake's venom induces instant paralysis. 37 +The snakes venom induces instant paralysis. 37 Young birds are very vulnerable to predators. 38 The food conversion rate on roughage is good. 37 -I think they're starting to get suspicious. 35 +I think theyre starting to get suspicious. 35 All over the tropics stand termite hills. 34 The bill of rights nourishes our freedom. 34 She was a remnant from my predecessor. 31 -Was she being sarcastic? 20 +Was she being sarcastic 20 I tried to dissuade her from leaving. 30 -The man's a raving lunatic. 21 +The mans a raving lunatic. 21 The rope tightened around his body. 29 The rope holding the boat loosened. 29 The gates were made of wrought iron. 29 @@ -7336,16 +7336,16 @@ This is an activated form of the vitamin. 33 Icy of soul and heart. 17 His left arm was in a sling. 21 The kidneys are organs of excretion. 30 -This creature's habitat is the jungle. 31 +This creatures habitat is the jungle. 31 Dying is as natural as living. 24 Her respiration was slow and difficult. 33 Strawberries grow well in a loamy soil. 32 Enclose the pot in a clear polythene bag. 33 The organic gardener avoids the use of pesticides. 42 Dump the topsoil here. 18 -Travel broadens one's horizons. 26 +Travel broadens ones horizons. 26 Embryo research is an emotive issue. 30 -Happiness doesn't depend on any external conditions. 44 +Happiness doesnt depend on any external conditions. 44 Embryos are developed by in vitro fertilization methods. 48 The fertilized egg implants and becomes a fetus. 40 We were rowing against the current. 29 @@ -7368,7 +7368,7 @@ The retention of data in a storage device. 34 Sandy is a very busy teenager. 24 The two brothers are almost inseparable. 34 A butterfly is produced by metamorphosis from a caterpillar. 51 -It is the one-celled embryo known as the zygote. 38 +It is the onecelled embryo known as the zygote. 38 He grew from adolescence to young manhood. 35 The calorific values of these have been given in the text. 47 An explosion shook the boat. 23 @@ -7378,14 +7378,14 @@ It was just as I had conjectured. 26 The centripetal force is provided by gravity. 38 It is gravitation that causes the apple to fall. 39 Credit is everything to a trader. 27 -Which is the best route to take? 25 +Which is the best route to take 25 She piped the skirt with blue silk. 28 Billy pilgrim again led the parade. 29 He studies greek and roman mythology. 31 She comes from a very artistic family. 31 A day is a miniature of eternity. 26 I shall take literature this spring. 30 -I can't understand classical literature. 34 +I cant understand classical literature. 34 English is a west germanic dialect. 29 All this was almost coarse. 22 The tall imposing man added. 23 @@ -7395,14 +7395,14 @@ It meant the smell of old furnaces, heavy. 34 The children polished off the cake. 29 He put some pepper on his steak. 25 The British men arrived on the American coasts. 39 -I'm sorry you had a wasted journey. 27 +Im sorry you had a wasted journey. 27 The coastline can now be monitored by radar. 36 Beer has a very distinctive smell. 28 He extended the pattern to apply to the deity. 37 -I've never had any political aspirations. 34 +Ive never had any political aspirations. 34 One of the minstrels strummed his banjo. 33 The local war escalated into a major conflict. 38 -Devour all on your deadly pyre! 25 +Devour all on your deadly pyre 25 Rescuers made heroic efforts to save the crew. 38 We heard laughter in the adjoining room. 33 The room was filled with an assortment of clothes. 41 @@ -7461,19 +7461,19 @@ The scepter is an attribute of kingly power. 36 A solitary viola plucks a lonely, soft f sharp. 38 Children have the qualities of their parents. 38 The expert in anything was once a beginner. 35 -The spear pierced the lion's heart. 28 +The spear pierced the lions heart. 28 Breathe in through your nose as you stretch up. 38 He looks like a restless man. 23 Edward renounced his claim to the French throne. 40 In the time of peace prepare for war. 29 -The contest was too one-sided to be exciting. 36 +The contest was too onesided to be exciting. 36 I failed in my attempt to persuade her. 31 The grass glistened in the early morning dew. 37 We heard him thudding up the stairs. 29 The hound whipped out at the whistle. 30 -A full-frontal assault right in the snout. 34 +A fullfrontal assault right in the snout. 34 The birds fluttered excitedly in the trees. 36 -The slaves writhed under the master's whip. 35 +The slaves writhed under the masters whip. 35 The company is appealing against the ruling. 37 She was regarded as an oddity. 24 The first edition was published in 1998. 33 @@ -7482,7 +7482,7 @@ He fermented prejudiced crowds to riot. 33 The laws on intellectual property are murky. 37 The smile broadened to a grin. 24 Love sought is good, but given unsought is better. 41 -It's customary for the women to sit apart. 33 +Its customary for the women to sit apart. 33 The preacher was circuiting about the state. 37 The light diffused into the room. 27 I can see the family resemblance. 27 @@ -7515,7 +7515,7 @@ It is important to have a balanced, healthy diet. 40 The glands in the neck may enlarge. 28 Estrogen is a primarily female hormone. 33 She set up her telescope on the balcony. 32 -I'm specializing in differential and integral calculus. 47 +Im specializing in differential and integral calculus. 47 Copernicus was an astronomer. 25 She lapsed into inertia and lay there as if asleep. 41 He was a man of remarkable buoyancy. 29 @@ -7542,30 +7542,30 @@ Chromosomes are made up of DNA. 25 Thyroxine is produced by the thyroid gland. 36 Cooking vegetables reduces their nutritional value. 45 The biosphere keeps a low profile. 28 -For them, the imperial sun shines on undiminished! 42 +For them, the imperial sun shines on undiminished 42 A upthrusted rock is carved as an altar. 32 Cork is a very buoyant material. 26 He immersed himself totally in his work. 33 This is bulging, tuber formation, elongation. 39 Archimedes stroked his beard and retired to cogitate. 45 -Eureka a job at last! 16 +Eureka a job at last 16 She is wearing a green robe. 22 She is praised by martial. 21 The court found him guilty. 22 He mimed brushing away tears. 24 It is time for the harvests. 22 -The nation's coffers are empty. 25 +The nations coffers are empty. 25 He found life in the provinces. 25 He is seizing her by the arm. 22 Enslaved by it to do its bidding. 26 He has an inferiority complex. 25 It is almost like something crippled it. 33 -The curriculum isn't easy. 21 +The curriculum isnt easy. 21 I had many strange notions at the time. 31 -Let's visit some temples tomorrow. 28 +Lets visit some temples tomorrow. 28 Painting helps fill a spiritual need for beauty. 40 This is an epic novel. 17 -That's a whale of a story. 19 +Thats a whale of a story. 19 It was just a small ramp. 19 He taught courses in engineering and metallurgy. 41 The excavations are open to the public. 32 @@ -7621,7 +7621,7 @@ Her body has already rejected two kidneys. 35 The platelets are decreases in her body. 33 The doctor felt her pulse on her wrist. 31 The stethoscope is a medical instrument. 34 -Don't sweat the small stuff. 22 +Dont sweat the small stuff. 22 A blue vein throbbed in his forehead. 30 Xylem carries water from the root of the plant. 38 This software is used for modeling atmospheric dynamics. 48 @@ -7634,12 +7634,12 @@ The epidermis is composed of four layers. 34 All bacteria are larger than viruses. 31 The shrine was an object of pilgrimage. 32 Listen to them honk. 16 -What a treasure she is! 18 +What a treasure she is 18 He told us to lift kerosene. 22 Well, Mr smelly start boasting. 26 Grease a large roasting pan. 23 He is panting and coughing. 22 -Its life-cycle starts with a spore. 28 +Its lifecycle starts with a spore. 28 Parsley seed goes nine times to the devil. 34 A period of vegetative propagation follows. 37 Nuclear fusion is the holy grail of energy production. 45 @@ -7653,7 +7653,7 @@ I find him very congenial. 21 He braked just in time. 18 Listen to them honk and. 19 Coughing, off to the left. 21 -Dad's working at the refinery. 24 +Dads working at the refinery. 24 The room was stuffy and smelly. 25 Grease ran down his chin. 20 It was the magical line. 19 @@ -7669,7 +7669,7 @@ The walls of the palace are marble with silver inlay. 43 The seeds of this food are true husbandry. 34 It is a pure death crop. 18 Her oscillations of mood frustrated him. 34 -The drug has no undesirable side-effects. 34 +The drug has no undesirable sideeffects. 34 Sally was a noisy car. 17 A nylon bag flew towards. 20 He paid me with trunks full of. 24 @@ -7702,7 +7702,7 @@ The uniform was trimmed with gold braid. 33 The odometer shows now 140 miles per hour. 34 My waist measurement is 32 inches. 28 Sound waves are measured by their amplitude. 37 -The frequency of lucy's phone calls increased rapidly. 45 +The frequency of lucys phone calls increased rapidly. 45 When the string is short, the oscillation is always fast. 47 Vibration displaced part of the mechanism. 36 I found his manner extremely unpleasant. 34 @@ -7747,9 +7747,9 @@ Lifting electromagnet is a kind of lifting gear. 40 The data is stored on magnetic tape. 29 This shop sells fluorescent paint. 29 The sun beat down with fierce intensity. 33 -It's full of nutrients and makes a great fertilizer. 42 -They've finished harvesting. 24 -Let's go to the irrigation channel. 28 +Its full of nutrients and makes a great fertilizer. 42 +Theyve finished harvesting. 24 +Lets go to the irrigation channel. 28 Manure was well dug into the soil. 27 He breezes through life, never worrying about anything. 47 I demonstrate throughout this book. 30 @@ -7811,7 +7811,7 @@ The drill takes about three hours to recharge. 38 The elephant population is dwindling. 32 The scarcity of food forced prices up. 31 The perch is a freshwater fish. 25 -It bears cones as large as a man's head. 30 +It bears cones as large as a mans head. 30 The heartbeat was feeble and irregular. 33 The wall is weak and requires lateral support. 38 His age impaired his chances of finding a new job. 40 @@ -7828,7 +7828,7 @@ The faucet has developed a drip. 26 The rivers merge just north of a vital irrigation system. 47 Groundwater is recharged from the surface. 36 The police tried to prevent infiltration. 35 -There's still a high incidence of malaria in the area. 43 +Theres still a high incidence of malaria in the area. 43 She was looking at her reflection in the mirror. 39 Printing presses have diffused out information. 41 Utensils are at the end of the line. 28 @@ -7843,7 +7843,7 @@ A crown is no cure for the headache. 28 His basketball lay in the ruins. 26 Water was dripping. 16 I wish i could see Cassiopeia. 24 -Did you ever see a comet? 19 +Did you ever see a comet 19 The moon has celestial bodies. 25 A meteorite streaked across the sky. 30 He looks about him, sensing danger. 29 @@ -7851,7 +7851,7 @@ We met in a basketball game. 22 I insisted he take it. 17 He was a curious mute. 17 My boss is very lenient. 19 -I don't want to quarrel. 18 +I dont want to quarrel. 18 It can block real cooperation. 25 The trees formed a leafy canopy above their heads. 41 Deforestation is destroying large areas of rainforest. 47 @@ -7894,14 +7894,14 @@ Our town has a modern sewerage system. 31 All dumping of sludge will be banned by 1998. 36 The huge outlet debauched the wastewater. 35 The water must be heavily chlorinated. 32 -We can't have any contamination. 26 +We cant have any contamination. 26 It was scorching hot inside the greenhouse. 36 New regulations will reduce hazardous air pollutants. 46 They recycle empty tins so as to use the metal. 37 They graze on the algae that grow on the coral. 37 Three compartments divided the coffer. 33 She eyed the compartments of clutter. 31 -She's on the moving clay. 19 +Shes on the moving clay. 19 She spun round to me. 16 You find cereals, hot, and cold. 26 With pulses that beat double. 24 @@ -7936,7 +7936,7 @@ The monk smiled. 13 My oldest son is adopted. 20 One of the monks sneezed. 20 I think I was adopted. 17 -To the monk of the '90s. 17 +To the monk of the 90s. 17 How far to the monastery. 20 As we saw in our observations. 24 The scientists have come to. 23 @@ -7952,7 +7952,7 @@ Sticking to the speed limit. 23 I was a bit amazed. 14 What a treasure she is. 18 I live in Australia. 16 -Why does Nietzsche call this work a genealogy? 38 +Why does Nietzsche call this work a genealogy 38 The national assembly has discussed the crisis. 40 The whole city solemnly assembled on the square. 40 Men with mustaches all look the same to me. 34 @@ -7962,20 +7962,20 @@ War and revolution have torn families apart. 37 She writes the stories in her vernacular. 34 That would only provoke the animal. 29 This seemed to enrage her too. 24 -I'll run the interference on that. 27 +Ill run the interference on that. 27 Rachel says it is time to modernize the house. 37 I had smiled. 10 -It's a little pricey. 16 -It's too expensive. 15 -Got anything cheaper? 18 -You'll never guess what I heard. 25 -You'll never guess what I read online. 30 +Its a little pricey. 16 +Its too expensive. 15 +Got anything cheaper 18 +Youll never guess what I heard. 25 +Youll never guess what I read online. 30 Guess what I just found out. 22 -Guess what? 9 +Guess what 9 She abjured all worldly pleasures. 29 The rioters set the bus ablaze in the village. 37 We do ablutions before entering a temple. 34 -Gautam buddha's ablutions took everyone aback. 39 +Gautam buddhas ablutions took everyone aback. 39 It is said that he was abetted to commit suicide. 39 An eyewash. 9 Play you ace. 10 @@ -7988,7 +7988,7 @@ All is well that end is well. 22 It was much ado about nothing. 24 Go there. 7 I will stay there. 14 -It's over there. 12 +Its over there. 12 I am going to Mumbai and I will stay there. 33 Please stand there. 16 There is a teacher in the classroom. 29 @@ -7996,25 +7996,25 @@ There is a teacher in classroom. 26 There were many peoples at the party. 30 There was a problem with the system. 29 There is a restaurant around the corner. 33 -Hello, there! 11 -You there! come here! 16 -There you are! I have been looking for you everywhere! 43 +Hello, there 11 +You there come here 16 +There you are I have been looking for you everywhere 43 There goes the last bus. 19 There he goes. 11 -Are you familiar with this? 22 -Can you tell from looking at this? 27 -Do you recall this question? 23 -Do you recognize that exhibit? 25 +Are you familiar with this 22 +Can you tell from looking at this 27 +Do you recall this question 23 +Do you recognize that exhibit 25 Solemnly swear. 13 -Do you swear that this is a true and accurate statement? 45 -Do you swear to tell the truth? 24 -Do you swear to well and truly interpret these proceedings? 49 -How do you plead? 13 -What happened next? 16 -What are your current duties? 24 -How do you recognize that exhibit? 28 -May the record reflect? 19 -May I have it? 10 +Do you swear that this is a true and accurate statement 45 +Do you swear to tell the truth 24 +Do you swear to well and truly interpret these proceedings 49 +How do you plead 13 +What happened next 16 +What are your current duties 24 +How do you recognize that exhibit 28 +May the record reflect 19 +May I have it 10 Members of the jury. 16 Bail should be continued. 21 Call your next witness. 19 @@ -8030,70 +8030,70 @@ State your full name for the record. 29 The following prospective jurors are excused. 39 The witness will resume the stand. 28 Use your common sense. 18 -Directing your attention to people's exhibit. 38 -Do you recall making this statement? 30 +Directing your attention to peoples exhibit. 38 +Do you recall making this statement 30 Please proceed. 13 Will the defendant please rise. 26 -Will the prospective jurors please stand? 35 -Will the people in the well of the courtroom please stand? 47 -Will the record reflect that the witness has identified the defendant? 59 -Will you call the first case? 23 -Would you raise your right hand? 26 -Would you indicate? 16 -Would you describe it? 18 -Would you point out? 16 -Would you look at it? 16 +Will the prospective jurors please stand 35 +Will the people in the well of the courtroom please stand 47 +Will the record reflect that the witness has identified the defendant 59 +Will you call the first case 23 +Would you raise your right hand 26 +Would you indicate 16 +Would you describe it 18 +Would you point out 16 +Would you look at it 16 As jurors, you are not to be swayed by sympathy. 38 Counsel lay a foundation. 21 The defendant will be remanded. 26 -Don't belabor the point counselor. 28 -Don't discuss the case. 18 -Don't volunteer explanations of your answers. 38 +Dont belabor the point counselor. 28 +Dont discuss the case. 18 +Dont volunteer explanations of your answers. 38 I direct the jury to disregard the statement. 37 Jurors may be excused. 18 Keep your voice up. 15 -Keep your own counsel, don't talk about the case. 39 -Let's have a charge conference. 25 +Keep your own counsel, dont talk about the case. 39 +Lets have a charge conference. 25 I call your attention to the incident. 31 Each count carries a 25 dollars fine. 30 Exhibit one is received in evidence. 30 Exhibit one is marked as evidence. 28 -Have you had any involvement with? 28 -Have you had occasion to be involved with? 34 -Have you ever been involved in? 25 -Have you formed an opinion as to? 26 -Have you reached a verdict? 22 -Have you read the pre-sentence report? 31 +Have you had any involvement with 28 +Have you had occasion to be involved with 34 +Have you ever been involved in 25 +Have you formed an opinion as to 26 +Have you reached a verdict 22 +Have you read the presentence report 31 I would like to advise the court that the defendant is not present. 54 -I would ask that the court instruct the witness to answer yes' or no'. 54 -Did you notice anything about it? 27 -Did you post bail for release? 24 -Did you advise of his rights? 23 -Did there come a time when you? 24 -Have you filed a notice? 19 -Could I have a brief voir dire? 24 +I would ask that the court instruct the witness to answer yes or no. 54 +Did you notice anything about it 27 +Did you post bail for release 24 +Did you advise of his rights 23 +Did there come a time when you 24 +Have you filed a notice 19 +Could I have a brief voir dire 24 I move to strike the answer. 22 If it pleases the court. 19 Let me call your attention to that evening. 35 -Do you want the jury polled? 22 -Do you wish to say anything before sentence is imposed? 45 -Does reasonably and accurately depict? 33 -Does that refresh your recollection? 31 -Did you discuss it? 15 -Did you go to trial or did you plead guilty? 34 -Can you tell the jury? 17 -Could you briefly describe it? 25 -Could you describe the appearance of? 31 -I'll enter a not guilty plea on your behalf. 34 -I don't have any objections. 22 +Do you want the jury polled 22 +Do you wish to say anything before sentence is imposed 45 +Does reasonably and accurately depict 33 +Does that refresh your recollection 31 +Did you discuss it 15 +Did you go to trial or did you plead guilty 34 +Can you tell the jury 17 +Could you briefly describe it 25 +Could you describe the appearance of 31 +Ill enter a not guilty plea on your behalf. 34 +I dont have any objections. 22 I am showing you a cassette tape. 26 I deny your motion. 15 I find that the government has sustained its burden aided by the presumption. 64 I have a procedural matter. 22 -Can the witness testify? 20 +Can the witness testify 20 It shall be proved in the court of law. 30 I believe the trial will last long. 28 -My lordship may i proceed? 21 +My lordship may i proceed 21 The court proceedings will start at noon. 34 May i call your attention to the incident. 34 Let me direct your attention to the picture in front of you. 48 @@ -8101,7 +8101,7 @@ I would ask most respectfully, your honor, for a ruling. 46 At this time the defense rests. 25 At this time the government rests. 28 Criminal cause for pleading, u.s. 27 -I'll show you what has already been received in evidence. 46 +Ill show you what has already been received in evidence. 46 I am showing you a tape. 18 Received in evidence. 18 Received subject to connection. 27 @@ -8129,44 +8129,44 @@ The government objects as to the relevance of this document. 50 The objection is overruled. 23 The objection is sustained. 23 The only thing I have redacted. 25 -The outburst was non-responsive. 27 -The witness's answer was not responsive to the question. 46 -We'll take a break for lunch. 22 -We're awaiting the execution of the documents. 38 +The outburst was nonresponsive. 27 +The witnesss answer was not responsive to the question. 46 +Well take a break for lunch. 22 +Were awaiting the execution of the documents. 38 You are entitled to have a lawyer. 27 You have been placed on probation. 28 You testified earlier. 19 You testified on direct. 20 You are under oath. 15 -Isn't that correct? 15 -Isn't that right? 13 -The juror is that your verdict? 25 -Have you been threatened or coerced into pleading guilty? 48 -How are you employed? 17 -How much schooling have you had? 26 -How do you plead to the charge contained? 33 -How do you recognize that? 21 -How can you tell? 13 -What, if anything, did you do? 24 -What, if anything, did you say? 25 -What is people's exhibit number or identification? 42 -What is the government's recommendation? 34 -What is your current assignment? 27 -What is your immigration status? 27 -What were the lighting conditions? 29 -What were the weather conditions? 28 -Where was in relation to the driveway? 31 +Isnt that correct 15 +Isnt that right 13 +The juror is that your verdict 25 +Have you been threatened or coerced into pleading guilty 48 +How are you employed 17 +How much schooling have you had 26 +How do you plead to the charge contained 33 +How do you recognize that 21 +How can you tell 13 +What, if anything, did you do 24 +What, if anything, did you say 25 +What is peoples exhibit number or identification 42 +What is the governments recommendation 34 +What is your current assignment 27 +What is your immigration status 27 +What were the lighting conditions 29 +What were the weather conditions 28 +Where was in relation to the driveway 31 The defendant is innocent until proven guilty. 39 The defense has no objection as to foundation. 38 At this time I would like to read. 26 -Could we have a sidebar? 19 +Could we have a sidebar 19 I move to strike. 13 I would like to advise the court. 26 I would ask that the court instruct the witness. 39 You have the right to consult your lawyer and ensure his 46 -If you want a lawyer and can't afford one, one will be appointed to you. 56 +If you want a lawyer and cant afford one, one will be appointed to you. 56 Anything you say may be held against you in a court of law. 46 -I don't have any objection. 21 +I dont have any objection. 21 I have no further questions. 23 I have to reserve an application. 27 I move for a directed verdict. 24 @@ -8175,32 +8175,32 @@ The defendant acted knowingly and intentionally. 42 I beg your pardon. 14 Let me call your attention. 22 Let me direct your attention. 24 -May I approach the bench? 20 -May I beg the court's indulgence for a moment? 36 -May I call my first witness? 22 -May I have the witness approach the blackboard? 39 -May I inquire? 11 -May I publish these to the jury? 25 -May it please the court? 19 -May we approach? 13 -May we get a ruling? 15 -May we have a short recess? 21 -May we see you at the sidebar, your honor? 33 -Move to strike, there's no question before the witness. 45 -Your honor, may the jury be instructed to disregard? 43 +May I approach the bench 20 +May I beg the courts indulgence for a moment 36 +May I call my first witness 22 +May I have the witness approach the blackboard 39 +May I inquire 11 +May I publish these to the jury 25 +May it please the court 19 +May we approach 13 +May we get a ruling 15 +May we have a short recess 21 +May we see you at the sidebar, your honor 33 +Move to strike, theres no question before the witness. 45 +Your honor, may the jury be instructed to disregard 43 I object on the grounds that the answer was not responsive. 48 I object to that no predicate has been laid. 35 -I object to these self-serving statements. I offer the government exhibit number 1 into evidence. 80 +I object to these selfserving statements. I offer the government exhibit number 1 into evidence. 80 I remind you that you are still under oath. 34 -I'll rephrase the question. 22 -I'll show you what has been marked for identification as exhibit 1. 54 -Do you recognize that? 18 -I'm going to move to strike that answer as non-responsive. 46 -I said, freeze! 12 +Ill rephrase the question. 22 +Ill show you what has been marked for identification as exhibit 1. 54 +Do you recognize that 18 +Im going to move to strike that answer as nonresponsive. 46 +I said, freeze 12 I take it that you were together. 26 -I'll address any application to the district court. 42 +Ill address any application to the district court. 42 I use the struck jury method of picking a jury. 37 -I would submit that they're conditions to ensure mr. sam's return to court. 59 +I would submit that theyre conditions to ensure mr. sams return to court. 59 It is received. 12 Lawyers may exercise challenges. 28 Marked as evidence. 16 @@ -8209,14 +8209,14 @@ No objection. 11 Not that i recall. 14 Objection to the form, your honor. 28 Objection, your honor, leading. 27 -What was your state of mind regarding the reliability of the informant? 59 -Would that refresh your recollection? 32 -Would it be fair to say prior to that time? 33 -Would you like the jury polled? 25 -Would you like to be heard? 21 -Would you like to say anything on your own behalf? 40 +What was your state of mind regarding the reliability of the informant 59 +Would that refresh your recollection 32 +Would it be fair to say prior to that time 33 +Would you like the jury polled 25 +Would you like to be heard 21 +Would you like to say anything on your own behalf 40 You and each of you, do solemnly swear. 31 -Do you have the right to remain silent? 31 +Do you have the right to remain silent 31 I play football. 13 He plays football. 15 She plays football. 16 @@ -8231,13 +8231,13 @@ You love to travel. 15 They love to travel. 16 We love to travel. 14 Sarah loves to travel. 18 -I don't like to quarrel. 18 -He doesn't like to quarrel. 21 -She doesn't like to quarrel. 22 -They don't like to quarrel. 21 -You don't like to quarrel. 20 -We don't like to quarrel. 19 -Sarah doesn't like to quarrel. 24 +I dont like to quarrel. 18 +He doesnt like to quarrel. 21 +She doesnt like to quarrel. 22 +They dont like to quarrel. 21 +You dont like to quarrel. 20 +We dont like to quarrel. 19 +Sarah doesnt like to quarrel. 24 I prefer coffee to tea. 18 He prefers coffee to tea. 20 She prefers coffee to tea. 21 @@ -8797,12 +8797,12 @@ She has been reading. 17 They have been reading. 19 We have been reading. 17 Sarah has been reading. 19 -I haven't been studying. 19 -You haven't been studying. 21 -He hasn't been studying. 19 -She hasn't been studying. 20 -They haven't been studying. 22 -We haven't been studying. 20 +I havent been studying. 19 +You havent been studying. 21 +He hasnt been studying. 19 +She hasnt been studying. 20 +They havent been studying. 22 +We havent been studying. 20 I had been arriving. 16 You had been arriving. 18 He had been arriving. 17 @@ -8830,13 +8830,13 @@ He had been singing. 16 She had been singing. 17 They had been singing. 18 We had been singing. 16 -I won't have been living. 19 -You won't have been living. 21 -He won't have been living. 20 -She won't have been living. 21 -They won't have been living. 22 -We won't have been living. 20 -Sarah won't have been living. 23 +I wont have been living. 19 +You wont have been living. 21 +He wont have been living. 20 +She wont have been living. 21 +They wont have been living. 22 +We wont have been living. 20 +Sarah wont have been living. 23 I will have been shopping. 21 You will have been shopping. 23 He will have been shopping. 22 @@ -8856,148 +8856,148 @@ Enjoy your meal. 13 There you go. 10 Careful, the plate is hot. 21 I hope that everything is satisfactory. 33 -Is everything all right? 20 -Is everything ok? 14 -Are you enjoying your meal? 22 -How's your steak? 13 -How's that steak? 13 -Is there anything else? 19 -s there anything else I can get for you this evening? 42 -Anything else I can do for you? 24 -Is there anything I can get for you? 28 -Would you care for dessert? 22 -Would you like to try one of our desserts? 33 -Would you like to see the dessert menu? 31 -Would you like to see the menu again? 29 +Is everything all right 20 +Is everything ok 14 +Are you enjoying your meal 22 +Hows your steak 13 +Hows that steak 13 +Is there anything else 19 +s there anything else I can get for you this evening 42 +Anything else I can do for you 24 +Is there anything I can get for you 28 +Would you care for dessert 22 +Would you like to try one of our desserts 33 +Would you like to see the dessert menu 31 +Would you like to see the menu again 29 Let me show you the dessert tray. 26 -Is this all on one bill? 18 -Separate checks? 14 +Is this all on one bill 18 +Separate checks 14 You can pay at the register. 22 You can pay for me. 14 -I'll take it when you're ready. 23 -What's yours? 10 -What'll you have? 13 -It's out of service. 15 -It's out of kilter. 14 -It's dead. 7 +Ill take it when youre ready. 23 +Whats yours 10 +Whatll you have 13 +Its out of service. 15 +Its out of kilter. 14 +Its dead. 7 It up and died on me. 15 It died on me. 10 -It's in the shop. 12 -It's out of commission. 18 -Could you wrap this, please? 23 -Could we have a doggie bag? 21 -I'd like to take the rest. 19 +Its in the shop. 12 +Its out of commission. 18 +Could you wrap this, please 23 +Could we have a doggie bag 21 +Id like to take the rest. 19 I would like to take the rest home. 27 -Could I have the bill? 17 +Could I have the bill 17 We would like the bill, please. 25 -Do I pay you or the cashier? 21 -Do you take credit card? 19 -May I have a receipt, please? 23 +Do I pay you or the cashier 21 +Do you take credit card 19 +May I have a receipt, please 23 Check, please. 12 -Could i have the check? 18 -Can I have a receipt, please? 23 +Could i have the check 18 +Can I have a receipt, please 23 We are ready to leave now. 20 All together. 11 There seems to be a mistake. 22 We did not order this item. 21 -Does this include the tip? 21 -Does this include the gratuity? 26 -Is a gratuity include? 18 +Does this include the tip 21 +Does this include the gratuity 26 +Is a gratuity include 18 Keep the change. 13 -Don't put your elbows on the table. 27 -Don't talk with your mouth full. 25 +Dont put your elbows on the table. 27 +Dont talk with your mouth full. 25 No tv during dinner. 16 No texting at the table. 19 Turn that cell phone off. 20 Wipe your mouth. 13 Please pass the pepper. 19 Please pass the butter. 19 -Don't you mind if I leave the table? 27 -I'll have to excuse myself. 21 -Don't put elbows on the table. 23 -Don't read at the table. 18 -Do you mind if i leave the table? 25 -Would you excuse me? 16 -Would you like salt and pepper? 25 -Would you care for butter? 21 -Would you care for some butter? 25 -Could you pour me some more milk? 26 -What's for dessert? 15 -Could you pass the rolls around? 26 -Could I have some gravy? 19 -Could you start the rolls around? 27 -Is there any more of this? 20 +Dont you mind if I leave the table 27 +Ill have to excuse myself. 21 +Dont put elbows on the table. 23 +Dont read at the table. 18 +Do you mind if i leave the table 25 +Would you excuse me 16 +Would you like salt and pepper 25 +Would you care for butter 21 +Would you care for some butter 25 +Could you pour me some more milk 26 +Whats for dessert 15 +Could you pass the rolls around 26 +Could I have some gravy 19 +Could you start the rolls around 27 +Is there any more of this 20 Be quiet and eat your dinner. 23 Be quiet and eat your food. 21 You have to clean up your plate. 25 There are starving children in Africa. 32 Fold your hands. 13 -More milk, please! 15 +More milk, please 15 A drop more wine, please. 20 -Could I have seconds, please? 24 -May I have seconds, please? 22 -Is someone waiting for you? 22 -Is there anything I can help you with? 30 -Is there anything I can help you with today? 35 -Is there anything I can help you find today? 35 +Could I have seconds, please 24 +May I have seconds, please 22 +Is someone waiting for you 22 +Is there anything I can help you with 30 +Is there anything I can help you with today 35 +Is there anything I can help you find today 35 The changing rooms are over there. 28 Only five items in the dressing room at a rime. 37 Only six allowed in the dressing roome. 32 -If you need me, i'll be right here. 26 -If you need any help, i'll be right here. 31 +If you need me, ill be right here. 26 +If you need any help, ill be right here. 31 If you need me, my name is Maria. 25 If you need any help, my name is Maria. 30 -If i can help you find anything, i'll be right over here. 44 -What are you interested in? 22 -Are you looking for something in particular? 37 -Do you have something specific in mind? 32 -Do you know what size you are? 23 -Do you have anything in mind? 23 -Do you know what you want? 20 -I've got just your size. 18 -I've got just what you're looking for. 29 -I've got exactly what you need. 24 -Have i got something for you! 23 -That's on sale this week. 19 -We don't have that in your size. 24 -We don't have it in that color. 23 -We're out of that item. 17 +If i can help you find anything, ill be right over here. 44 +What are you interested in 22 +Are you looking for something in particular 37 +Do you have something specific in mind 32 +Do you know what size you are 23 +Do you have anything in mind 23 +Do you know what you want 20 +Ive got just your size. 18 +Ive got just what youre looking for. 29 +Ive got exactly what you need. 24 +Have i got something for you 23 +Thats on sale this week. 19 +We dont have that in your size. 24 +We dont have it in that color. 23 +Were out of that item. 17 I can back order that for you. 23 I can issue you a rain check. 22 -We can notify you by phone or e-mail. 28 +We can notify you by phone or email. 28 You can order it from our website. 27 -Can i try these on? 14 -I'd like to try this on. 17 -Where is the fitting room? 21 -How many items can i take in the dressing room? 37 +Can i try these on 14 +Id like to try this on. 17 +Where is the fitting room 21 +How many items can i take in the dressing room 37 That looks nice on you. 18 Thar really flatters your figure. 28 That flatters you. 15 That looks great on you. 19 -That's your color. 14 -This is you! 9 -It's you! 6 -It's too tight. 11 -It's too loose. 11 -I don't like the color. 17 -I'll have to keep looking for what i want. 32 -Is it on sale? 10 -Will it be on sale soon? 18 -Is is going on sale soon? 19 -Can you hold it for me? 17 -Will you hold it for me? 18 -Where is the men's shop? 18 -Where is ladies' wear? 17 -What floor is furniture on? 22 -Where can I find children's clothes? 29 -Do you sell appliances here? 23 +Thats your color. 14 +This is you 9 +Its you 6 +Its too tight. 11 +Its too loose. 11 +I dont like the color. 17 +Ill have to keep looking for what i want. 32 +Is it on sale 10 +Will it be on sale soon 18 +Is is going on sale soon 19 +Can you hold it for me 17 +Will you hold it for me 18 +Where is the mens shop 18 +Where is ladies wear 17 +What floor is furniture on 22 +Where can I find childrens clothes 29 +Do you sell appliances here 23 Is there a public restroom here. 26 -Where is the credit department? 26 -Where is the children's cloth? 24 -Where is the shoe department? 24 -I'm looking for something for my wife. 30 -I'm looking for something for my husband. 33 -I don't know my size. 15 +Where is the credit department 26 +Where is the childrens cloth 24 +Where is the shoe department 24 +Im looking for something for my wife. 30 +Im looking for something for my husband. 33 +I dont know my size. 15 I need a belt. 10 I need some jeans. 14 I need a pair of pants. 17 @@ -9005,78 +9005,78 @@ I need socks. 10 I need a pair of gloves. 18 I need a swimsuit. 14 Just looking. 11 -Thank you, I'm just looking. 22 -I just can't make up my mind. 21 -I'm not sure which I like. 19 -Which do you prefer? 16 -Do you have this in blue? 19 -Do you have this in suede? 20 -Do you have this in wool? 19 -Do you have this in a larger size? 26 -Do you have this in a smaller size? 27 -Do you have something a bit less expensive? 35 -Do you have this in stock? 20 -Do you have any more of these? 23 -Do you have a shirt to match this? 26 -How would you like to pay for this? 27 -How do you want to pay for this? 24 -Will that be cash or credit? 22 -Will that be cash or charge? 22 -What method of payment will you use? 29 -Would you like to sign up for our store card? 35 -Do you take credit? 15 -Can I apply for a credit card? 23 -What financing options do you have? 29 -Can i get this gift wrapped? 22 -Would you please gift wrap that? 26 -May I get it to gift wrapped? 22 -Where is the gift-wrap counter? 25 -Is there a charge for gift wrapping? 29 +Thank you, Im just looking. 22 +I just cant make up my mind. 21 +Im not sure which I like. 19 +Which do you prefer 16 +Do you have this in blue 19 +Do you have this in suede 20 +Do you have this in wool 19 +Do you have this in a larger size 26 +Do you have this in a smaller size 27 +Do you have something a bit less expensive 35 +Do you have this in stock 20 +Do you have any more of these 23 +Do you have a shirt to match this 26 +How would you like to pay for this 27 +How do you want to pay for this 24 +Will that be cash or credit 22 +Will that be cash or charge 22 +What method of payment will you use 29 +Would you like to sign up for our store card 35 +Do you take credit 15 +Can I apply for a credit card 23 +What financing options do you have 29 +Can i get this gift wrapped 22 +Would you please gift wrap that 26 +May I get it to gift wrapped 22 +Where is the giftwrap counter 25 +Is there a charge for gift wrapping 29 This is my phone. 13 -Sorry, do you mind if I take this? 26 +Sorry, do you mind if I take this 26 I just need to send a reply. 21 -Do you mind if I take this call? 24 -It's my ringtone. 13 -I'm being texted. 13 -She is away from her desk. can I take a message? 36 -Could I take a message? 18 -May I take a message? 16 -Is there anyone else who could help you? 32 -Would you care to talk to her secretary? 32 -Could I help you? 13 +Do you mind if I take this call 24 +Its my ringtone. 13 +Im being texted. 13 +She is away from her desk. can I take a message 36 +Could I take a message 18 +May I take a message 16 +Is there anyone else who could help you 32 +Would you care to talk to her secretary 32 +Could I help you 13 I have to get back to work before the boss sees me. 39 -There's someone on the other line. I must say goodbye now. 45 -Can I call you back? something has come up. 33 -The doorbell is ringing. I'll call you back. 34 -Who do you want to talk to? 20 -Who do you want to speak with? 23 -Whom do you wish to speak to? 22 -With whom do you wish to speak? 24 -Who do you wish to speak to? 21 -Do you know her extension? 21 -May I sell her who's calling? 22 -Who may I say is calling? 19 -Who shall I say is calling? 21 +Theres someone on the other line. I must say goodbye now. 45 +Can I call you back something has come up. 33 +The doorbell is ringing. Ill call you back. 34 +Who do you want to talk to 20 +Who do you want to speak with 23 +Whom do you wish to speak to 22 +With whom do you wish to speak 24 +Who do you wish to speak to 21 +Do you know her extension 21 +May I sell her whos calling 22 +Who may I say is calling 19 +Who shall I say is calling 21 Whom shall I say is calling 22 -Is she expecting your call? 22 -May I ask who is calling? 19 -Who's calling? 11 -Do you wish me to page Mrs. Smith? 25 -I will see if she is in the building? 28 +Is she expecting your call 22 +May I ask who is calling 19 +Whos calling 11 +Do you wish me to page Mrs. Smith 25 +I will see if she is in the building 28 Let me page her. 12 Let me connect you with that department. 33 -He is on another line. will you hold? 28 +He is on another line. will you hold 28 Hold, please. 11 Hold the line. 11 Just a moment, please. 18 -Would you like to hold it? 20 -Would you care to hold? 18 +Would you like to hold it 20 +Would you care to hold 18 Just a moment I have another call. 27 Hang on a second. 13 -For whom are you holding? 20 -Who are you holding for? 19 -Who's on the line? 13 -I'm fine. 6 +For whom are you holding 20 +Who are you holding for 19 +Whos on the line 13 +Im fine. 6 I have nothing to complain about. 27 Keeping busy. 11 Keeping myself busy. 17 @@ -9084,13 +9084,13 @@ Been up to no good. 14 Been keeping my nose clean. 22 Just muddling through. 19 Plugging along. 13 -I'm busy. 6 -I don't have time to think. 20 -There aren't enough hours in the day. 29 +Im busy. 6 +I dont have time to think. 20 +There arent enough hours in the day. 29 Not a moment to spare. 17 -I've been running around with my head cut off. 36 -I've been running around like a chicken with its head cut off. 49 -I'm snowed under. 13 +Ive been running around with my head cut off. 36 +Ive been running around like a chicken with its head cut off. 49 +Im snowed under. 13 Not good. 7 Not so good. 9 Not well. 7 @@ -9100,27 +9100,27 @@ Not so hot. 8 None too hot. 10 None too great. 12 Kind of crummy. 12 -I've seen better days. 17 -I've had better days. 16 -I haven't seen you in an age! 21 -Welcome back! 11 -Where were you? 12 +Ive seen better days. 17 +Ive had better days. 16 +I havent seen you in an age 21 +Welcome back 11 +Where were you 12 Goodbye until later. 17 Goodbye for now. 13 -I'll try to catch you later. 21 -I'll catch you later. 16 +Ill try to catch you later. 21 +Ill catch you later. 16 Likewise, I m sure. 15 See you in the morning. 18 -Oh, look at the time! 16 -Well. David, it's really good to see you, but I really must go. 48 +Oh, look at the time 16 +Well. David, its really good to see you, but I really must go. 48 Sorry, but I have to leave now. 24 -Let's continue this another time. I really must go 40 -Let's call it a night. 16 -Good-bye, until next time. 21 -I'll talk to you soon. 16 -Let's get together soon. 19 -I'll be seeing you. 14 -I'll see you real soon. 17 +Lets continue this another time. I really must go 40 +Lets call it a night. 16 +Goodbye, until next time. 21 +Ill talk to you soon. 16 +Lets get together soon. 19 +Ill be seeing you. 14 +Ill see you real soon. 17 See you in a little while. 20 See you next year. 14 See you then. 10 @@ -9130,116 +9130,116 @@ Nice talking to you. 16 It was good to see you. 17 It was nice to see you. 17 It was a pleasure meeting you. 24 -Are we ready to leave? 17 -Are you about finished? 19 -Are you ready to go? 15 -Ready to go? 9 -Ready to roll? 11 -Are we away? 9 -Let's blow. 8 -Let's go out of this taco stand. 24 -Let's blow this joint. 17 -Let's get while the getting's good. 27 -Let's head out. 11 -Let's make tracks. 14 -Let's heat the road. 15 +Are we ready to leave 17 +Are you about finished 19 +Are you ready to go 15 +Ready to go 9 +Ready to roll 11 +Are we away 9 +Lets blow. 8 +Lets go out of this taco stand. 24 +Lets blow this joint. 17 +Lets get while the gettings good. 27 +Lets head out. 11 +Lets make tracks. 14 +Lets heat the road. 15 Have a safe trip. 13 Have a safe journey. 16 Drive carefully. 14 Take care of yourself. 18 -We'll miss you. 11 +Well miss you. 11 I will call you when I get home. 24 -You've got my e-mail address? 22 -I'm on Facebook. 12 -I'll be in touch. 12 -Let's keep in touch. 15 -I think it's fine. 13 -It's good enough. 13 -It's satisfactory. 15 -I'll do it. 7 -I'll serve the purpose. 18 +Youve got my email address 22 +Im on Facebook. 12 +Ill be in touch. 12 +Lets keep in touch. 15 +I think its fine. 13 +Its good enough. 13 +Its satisfactory. 15 +Ill do it. 7 +Ill serve the purpose. 18 I like it. 7 -I think it's great. 14 +I think its great. 14 I like the color. 13 I like the texture. 15 I like the flavor. 14 -It's got a good rhythm. 17 -It's wonderful. 12 -It's fabulous. 11 -It's ideal. 8 -It's a masterpiece. 15 -It's perfect. 10 +Its got a good rhythm. 17 +Its wonderful. 12 +Its fabulous. 11 +Its ideal. 8 +Its a masterpiece. 15 +Its perfect. 10 This is second to none. 18 This is perfect. 13 This is far and away from the best. 27 This is the ultimate. 17 -It couldn't be better. 17 +It couldnt be better. 17 Never been better. 15 -There's none better. 16 -It doesn't get any better than this. 28 -I've never seen anything like it. 26 +Theres none better. 16 +It doesnt get any better than this. 28 +Ive never seen anything like it. 26 This is the cream of the crop. 23 This is the pick of the litter. 24 -That's the ticket. 14 -That's just what the doctor ordered. 29 -That's just what I needed. 20 +Thats the ticket. 14 +Thats just what the doctor ordered. 29 +Thats just what I needed. 20 That hits the spot. 15 -That's it. 7 -It's in a league of its own. 20 +Thats it. 7 +Its in a league of its own. 20 I give it four stars. 16 It gets two thumbs up. 17 -I've hit the jackpot. 16 -Bonus score! 10 +Ive hit the jackpot. 16 +Bonus score 10 I hear from you. 12 I hear you, man. 12 -I see what you're saying. 19 -I can see what you're saying. 22 +I see what youre saying. 19 +I can see what youre saying. 22 I can see that. 11 I see what you mean. 15 -I see where you're coming from. 24 +I see where youre coming from. 24 I know what you mean. 16 Point well taken. 14 -I know what you're talking about. 26 -I understand what you're saying. 26 +I know what youre talking about. 26 +I understand what youre saying. 26 I dig it. 6 I can dig it. 9 I got you. 7 I got it. 6 I follow you. 10 -I'm with you. 9 -I'm there with you. 14 -I've been there. 12 +Im with you. 9 +Im there with you. 14 +Ive been there. 12 Read you loud and clear. 19 -You're without a clue. 17 -She doesn't know anything. 21 -You don't know bean. 15 -You don't know up from down. 21 -You don't know which end is up. 23 -You don't know quality from a hole in the ground. 38 -Don't you know anything? 19 -How can you be so stupid? 19 +Youre without a clue. 17 +She doesnt know anything. 21 +You dont know bean. 15 +You dont know up from down. 21 +You dont know which end is up. 23 +You dont know quality from a hole in the ground. 38 +Dont you know anything 19 +How can you be so stupid 19 Get your head out of the sand. 23 -The ain't the way I heard it. 21 -That's not what I heard. 18 +The aint the way I heard it. 21 +Thats not what I heard. 18 Let me set you straight. 19 -You're clueless. 13 -For real? 7 -No kidding? 9 -No fooling? 9 -No lie? 5 -No way! 5 -Are you serious? 13 -Are you for real? 13 -You're not making this up, are you? 27 -You're making this up, aren't you? 26 -You're not trying to pull one over on me, are you? 38 +Youre clueless. 13 +For real 7 +No kidding 9 +No fooling 9 +No lie 5 +No way 5 +Are you serious 13 +Are you for real 13 +Youre not making this up, are you 27 +Youre making this up, arent you 26 +Youre not trying to pull one over on me, are you 38 No way, smith. 11 No, sir. 6 -You're out of luck. 14 +Youre out of luck. 14 When hell freezes over. 19 Not a chance. 10 Not likely. 9 -Absolutely not! 13 +Absolutely not 13 Only in your dreams. 16 Dream on. 7 Save your breath. 14 @@ -9251,24 +9251,24 @@ Not for a million dollars. 21 Not in your wildest dreams. 22 You wish. 7 Like hell. 8 -I'll see you in hell first. 20 -What are you talking about? 22 -You don't know what you're thinking about. 33 -You don't have a leg to stand on. 24 -You don't know the first thing about it. 31 +Ill see you in hell first. 20 +What are you talking about 22 +You dont know what youre thinking about. 33 +You dont have a leg to stand on. 24 +You dont know the first thing about it. 31 You were really stretching the truth. 31 You can ley that notion to rest. 25 -You've got it all wrong. 18 -You've got the facts wrong. 21 -You haven't got the facts. 20 -You haven't got the facts right. 25 -I don't think you have got your facts straight. 37 -Don't speak until you have got your fact straight. 40 +Youve got it all wrong. 18 +Youve got the facts wrong. 21 +You havent got the facts. 20 +You havent got the facts right. 25 +I dont think you have got your facts straight. 37 +Dont speak until you have got your fact straight. 40 Next time get the facts straight. 27 Next time get the facts first. 24 -Don't jump to conclusions. 21 -Get a life! 8 -Get real! 7 +Dont jump to conclusions. 21 +Get a life 8 +Get real 7 Get with the program. 17 Come back to earth. 15 It cuts both ways. 14 @@ -9276,66 +9276,66 @@ An eye for an eye a tooth for a tooth. 28 The chicken has come home to roost. 28 Two can play at that game. 20 Serves you right. 14 -Now hear this! 11 -Are you ready for this? 18 -Are you paying attention? 21 -Do you hear me? 11 -Am I making myself heard? 20 +Now hear this 11 +Are you ready for this 18 +Are you paying attention 21 +Do you hear me 11 +Am I making myself heard 20 Look at this. 10 Take a look at this. 15 Take a gander at me. 15 Feast your eyes on this. 19 Look what we have here. 18 Look here. 8 -Can you eyeball this for a minute? 27 -Can you believe your eyes? 21 -I don't believe my eyes. 18 -Do my eyes deceive me? 17 -That's a sight for sore eyes. 22 +Can you eyeball this for a minute 27 +Can you believe your eyes 21 +I dont believe my eyes. 18 +Do my eyes deceive me 17 +Thats a sight for sore eyes. 22 I heard from you. 13 I am still here. 12 I am all ears. 10 -Did you get a problem? 17 -What do you mean by that? 19 -Were you talking to me? 18 -Are you trying to start something? 28 -Just exactly what are you getting at? 30 -Just exactly what are you trying to say? 32 -What a surprise to meet you here! 26 -Imagine meeting you here! 21 -Never thought I'd see you here! 24 -What are you doing in this part of town? 31 -What are you doing out of the office? 29 -Where've you been hiding? 20 -What have you been up to? 19 -Shouldn't you be in school? 21 -Shouldn't you be at work? 19 -Had you been keeping busy? 21 -You been keeping busy? 18 -Been keeping busy? 15 +Did you get a problem 17 +What do you mean by that 19 +Were you talking to me 18 +Are you trying to start something 28 +Just exactly what are you getting at 30 +Just exactly what are you trying to say 32 +What a surprise to meet you here 26 +Imagine meeting you here 21 +Never thought Id see you here 24 +What are you doing in this part of town 31 +What are you doing out of the office 29 +Whereve you been hiding 20 +What have you been up to 19 +Shouldnt you be in school 21 +Shouldnt you be at work 19 +Had you been keeping busy 21 +You been keeping busy 18 +Been keeping busy 15 We seem to keep running into each other. 32 We have to stop meeting like this. 27 -Didn't we meet at that party last week? 30 -I'm sorry I've forgotten your name. 27 -How was it? 8 -How did it go? 10 -Did everything go ok? 17 -Did you have fun? 13 -You'll have to tell us all about it. 27 -Were the locals friendly? 21 +Didnt we meet at that party last week 30 +Im sorry Ive forgotten your name. 27 +How was it 8 +How did it go 10 +Did everything go ok 17 +Did you have fun 13 +Youll have to tell us all about it. 27 +Were the locals friendly 21 We missed you around here. 21 -Did you take any pictures? 21 -Were the natives friendly? 22 -Did you bring me anything? 21 -We've missed you around here. 23 -It just wasn't the same without you. 28 -Did you have pictures? 18 -I'll stand by you. 13 +Did you take any pictures 21 +Were the natives friendly 22 +Did you bring me anything 21 +Weve missed you around here. 23 +It just wasnt the same without you. 28 +Did you have pictures 18 +Ill stand by you. 13 I am on your side. 13 I have got your back. 16 You have got my backing. 19 You can put your faith in me. 22 -Go on you can do it! 14 +Go on you can do it 14 Just one more. 11 Just a little harder. 17 Stick with it. 11 @@ -9352,10 +9352,10 @@ Take a stab at it. 13 Take a crack at it. 14 Have a crack at it. 14 Come on. 6 -I won't hurt you to try it. 19 +I wont hurt you to try it. 19 Everybody is doing it. 18 Everyone else is doing it. 21 -It's all the rage. 13 +Its all the rage. 13 Try your luck. 11 See what you can do. 15 Nothing ventured, nothing gained. 29 @@ -9367,29 +9367,29 @@ Get a move on. 10 Get cracking. 11 Get on the stick. 13 Get the lead out. 13 -Let's see some action. 17 -It's now or never. 13 +Lets see some action. 17 +Its now or never. 13 Take no prisoners. 15 Knock yourself out. 16 Go for broke. 10 I expect to see some results soon. 27 -Are you just going to sit there? 25 -Aren't going to do anything. 22 -Good job! 7 -Good work! 8 -Nice work! 8 -Keep it up! 8 +Are you just going to sit there 25 +Arent going to do anything. 22 +Good job 7 +Good work 8 +Nice work 8 +Keep it up 8 Show a little resolve. 18 Show me courage. 13 Show some spine. 13 -Don't be so spineless. 17 -Don't be such a lily-liver. 20 +Dont be so spineless. 17 +Dont be such a lilyliver. 20 Take things as they come. 20 Take it as it comes. 15 Take it one day at a time. 19 Take things one day at a time. 23 Take one day at a time. 17 -Rome wasn't built in a day. 20 +Rome wasnt built in a day. 20 Good things come to him who waits. 27 Patience is a virtue. 17 In good time. 10 @@ -9401,210 +9401,210 @@ Everything will fall together. 26 Everything will fall into place. 27 In the long run, everything will be ok. 31 Everything will work itself out. 27 -It ain't over till it's over. 21 +It aint over till its over. 21 Just between you and me... 19 This is between you, me, and the bedpost. 33 This is between you, me, and the four walls. 35 -I'm telling you this in confidence. 28 -I'm telling you this in strict confidence. 34 -I'm telling you this in the strictest confidence. 40 -Can you keep a secret? 17 -Could you keep a secret? 19 +Im telling you this in confidence. 28 +Im telling you this in strict confidence. 34 +Im telling you this in the strictest confidence. 40 +Can you keep a secret 17 +Could you keep a secret 19 Better keep quiet about it. 22 Better keep still about it. 22 Keep it to yourself. 16 -Don't breathe a word of this to anyone. 30 -Don't breathe a word 16 -Don't let it out of this room. 22 -Don't let this go any further. 23 -Don't tell a soul. 13 -It's on the quiet. 13 +Dont breathe a word of this to anyone. 30 +Dont breathe a word 16 +Dont let it out of this room. 22 +Dont let this go any further. 23 +Dont tell a soul. 13 +Its on the quiet. 13 Play dumb. 8 This is a top secret. 16 This is for your eyes only. 21 This is for your ears only. 21 -Don't say I told you. 15 -Don't say who told you. 17 +Dont say I told you. 15 +Dont say who told you. 17 This is off the record. 18 This is not for the record. 21 This is not to be quoted. 19 This is not for public knowledge. 27 This is not a publication. 21 -I won't tell a soul. 14 +I wont tell a soul. 14 My lips are sealed. 15 -It won't leave this room. 19 +It wont leave this room. 19 I will take it to my grave. 20 -Have you heard the latest? 21 -Have you heard? 12 -Did you hear what happened? 22 -Did you hear the news? 17 -Did you get the scoop? 17 -You won't believe this. 18 -You won't believe what bill just told me. 32 +Have you heard the latest 21 +Have you heard 12 +Did you hear what happened 22 +Did you hear the news 17 +Did you get the scoop 17 +You wont believe this. 18 +You wont believe what bill just told me. 32 Get this. 7 -May I have word with you? 19 -Let's shoot the breeze. 18 -This food is good, isn't it? 21 -How's work? 8 +May I have word with you 19 +Lets shoot the breeze. 18 +This food is good, isnt it 21 +Hows work 8 Looks like you just got a haircut. 27 I like your hair. 13 I like your outfit. 15 That dress is lovely. 17 That dress looks nice on you. 23 -Can I take a look at your paper? 24 -What are you listening to? 21 -What book are you reading? 21 -Read any good books lately? 22 -Did you see that show last night? 26 +Can I take a look at your paper 24 +What are you listening to 21 +What book are you reading 21 +Read any good books lately 22 +Did you see that show last night 26 Do you have a breath Mint. 20 -Seen any good movies recently? 25 -Do you want to step outside? 22 -Would you like to step outside? 25 -Want to make something of it? 23 -Care to make something of it? 23 -May I be frank? 11 +Seen any good movies recently 25 +Do you want to step outside 22 +Would you like to step outside 25 +Want to make something of it 23 +Care to make something of it 23 +May I be frank 11 Let me be perfectly clear. 21 Make no bones about it. 18 Read my lips. 10 To make a long story short. 21 Let me spell it out for you. 21 -Here's the bottom line. 18 -What's your point? 14 -What's the upshot? 14 -What are you trying to say? 21 -What are you trying to tell me? 24 +Heres the bottom line. 18 +Whats your point 14 +Whats the upshot 14 +What are you trying to say 21 +What are you trying to tell me 24 Get to the point. 13 Get to the heart of the matter. 24 -That's beside the point. 19 -That's beside the question. 22 -That's not an issue. 15 -That's not the issue. 16 -That's irrelevant. 15 +Thats beside the point. 19 +Thats beside the question. 22 +Thats not an issue. 15 +Thats not the issue. 16 +Thats irrelevant. 15 That has nothing to do with it. 24 -That's another story. 17 -That's a different ball of wax. 24 -That's a horse of different color. 27 -You're off on a tangent. 18 -You're getting off the subject. 25 +Thats another story. 17 +Thats a different ball of wax. 24 +Thats a horse of different color. 27 +Youre off on a tangent. 18 +Youre getting off the subject. 25 As you were saying... 15 Getting back to the point... 21 But I digress. 11 -What are you thinking? 18 -What's your deal? 13 -What's your problem? 16 -What kind of drugs are you on? 23 -Where are your head? 16 -What's with you? 12 -What are you trying to get at? 23 -So what's the upshot? 16 -What are you saying? 16 -What are you getting at? 19 -I don't see what you're getting at. 26 -I don't follow. 11 -I'm not sure I follow. 16 -I'm not sure I get your point. 22 -I'm not sure I know what you mean. 25 -I didn't mean that. 14 -I didn't say that. 13 -I didn't mean to give you that impression. 33 -I don't understand you. 18 -I can't understand you. 18 -Could you please speak slower? 25 -Could you please speak louder? 25 -Could you write it down, please? 26 +What are you thinking 18 +Whats your deal 13 +Whats your problem 16 +What kind of drugs are you on 23 +Where are your head 16 +Whats with you 12 +What are you trying to get at 23 +So whats the upshot 16 +What are you saying 16 +What are you getting at 19 +I dont see what youre getting at. 26 +I dont follow. 11 +Im not sure I follow. 16 +Im not sure I get your point. 22 +Im not sure I know what you mean. 25 +I didnt mean that. 14 +I didnt say that. 13 +I didnt mean to give you that impression. 33 +I dont understand you. 18 +I cant understand you. 18 +Could you please speak slower 25 +Could you please speak louder 25 +Could you write it down, please 26 Please write it out. 16 -Could you spell that? 17 +Could you spell that 17 Get the wax out of your ears. 22 -You're not listening to what I'm saying. 31 -You're only hearing what you want to hear. 33 -You're missing the point. 20 -That's not my point. 15 -That's not the point I'm trying to make. 30 -You've got me wrong. 15 -You've twisted my words. 19 -You're putting words in my mouth. 26 -You're taking it out of context. 25 -You're blowing it out of proportion. 29 -You're blowing this all out of proportion. 34 -You're quoting me out of context. 26 +Youre not listening to what Im saying. 31 +Youre only hearing what you want to hear. 33 +Youre missing the point. 20 +Thats not my point. 15 +Thats not the point Im trying to make. 30 +Youve got me wrong. 15 +Youve twisted my words. 19 +Youre putting words in my mouth. 26 +Youre taking it out of context. 25 +Youre blowing it out of proportion. 29 +Youre blowing this all out of proportion. 34 +Youre quoting me out of context. 26 Let me rephrase that. 17 Let me clarify that. 16 Allow me to clarify. 16 Let me make myself clear. 20 Let me make myself perfectly clear. 29 -That's the truth. 13 -That's the honest truth. 19 -That's the honest-to-goodness truth. 29 -That's the truth, the whole truth, and nothing but the truth. 49 +Thats the truth. 13 +Thats the honest truth. 19 +Thats the honesttogoodness truth. 29 +Thats the truth, the whole truth, and nothing but the truth. 49 Cross my heart and hope to die. 24 -Would I lie? 9 -Would I lie to you? 14 -Why would I lie? 12 +Would I lie 9 +Would I lie to you 14 +Why would I lie 12 I swear. 6 I swear to you. 11 I swear on a stack of bibles. 22 -I swear on my mother's grave. 22 +I swear on my mothers grave. 22 I swear to god. 11 May God strike me down if I am not telling you the truth. 44 -That's the gospel truth. 19 +Thats the gospel truth. 19 Take my word for it. 15 You have my word. 13 You have my word on this. 19 I give you my word of honor. 21 On my honor. 9 -Scout's honor. 11 +Scouts honor. 11 You can count on it. 15 You can bank on it. 14 You can take it to the bank. 21 You better believe it. 18 You had better believe it. 21 Believe me. 9 -Don't be such a doubting Thomas. 25 -I don't know and I don't care. 21 -I don't have a clue. 14 -I haven't a clue. 12 -I'm clueless. 10 -I don't have the faintest idea. 24 -I haven't the faintest idea. 22 -I haven't the vaguest notion. 23 -I don't have the foggiest notion. 26 -Haven't the foggiest. 17 +Dont be such a doubting Thomas. 25 +I dont know and I dont care. 21 +I dont have a clue. 14 +I havent a clue. 12 +Im clueless. 10 +I dont have the faintest idea. 24 +I havent the faintest idea. 22 +I havent the vaguest notion. 23 +I dont have the foggiest notion. 26 +Havent the foggiest. 17 Beats the heck out of me. 19 Beats the hell out of me. 19 Got me beat. 9 You got me. 8 Got me stumped. 12 Got me. 5 -How would I know? 13 -How the hell should I know? 21 +How would I know 13 +How the hell should I know 21 Like I would know. 14 I give up. 7 Search me. 8 Lord knows. 9 God only knows. 12 -I don't care. 9 -I couldn't care less. 16 +I dont care. 9 +I couldnt care less. 16 I could care less. 14 -I don't give a damn. 14 +I dont give a damn. 14 Like I give a damn. 14 -It doesn't matter to me. 18 -Really doesn't matter to me. 22 +It doesnt matter to me. 18 +Really doesnt matter to me. 22 Makes no difference to me. 21 Makes me no difference. 19 Makes me no nevermind. 18 Makes no nevermind to me. 20 Either way. 9 Whatever you prefer. 17 -It's not important. 15 +Its not important. 15 I guess so. 8 I guess. 6 -Do you want me to go? 15 -Do you want me to leave? 18 -Would you like me to leave? 21 +Do you want me to go 15 +Do you want me to leave 18 +Would you like me to leave 21 If you want me to leave, just ask. 26 -If you want me to leave, why don't you just say so? 38 +If you want me to leave, why dont you just say so 38 Afraid not. 9 -I'm afraid so. 10 +Im afraid so. 10 Afraid so. 8 If I must. 7 Well, if I have to. 14 @@ -9612,52 +9612,52 @@ Well, if you insist. 16 Well, if you really think so. 23 Well, if you really want me to. 24 I guess I have no choice in the matter. 30 -It doesn't sound like I have a choice. 29 -We've got no choice. 15 +It doesnt sound like I have a choice. 29 +Weve got no choice. 15 We have no alternative. 19 -There's no alternative. 19 -I'd rather not. 11 -I'd rather die. 11 -I'd sooner die. 11 +Theres no alternative. 19 +Id rather not. 11 +Id rather die. 11 +Id sooner die. 11 Never in a thousand years. 21 Not in a million years. 18 -That's life. 9 -That's the way life is. 17 -That's how it goes. 14 -That's the way it goes. 17 -That's the way the ball bounces. 25 -That's the way the cookie crumbles. 28 +Thats life. 9 +Thats the way life is. 17 +Thats how it goes. 14 +Thats the way it goes. 17 +Thats the way the ball bounces. 25 +Thats the way the cookie crumbles. 28 Things could be worse. 18 -It's not as bad as all that. 20 +Its not as bad as all that. 20 Look on the brighter side. 21 Make the best of it. 15 Haifa loaf is better than none. 25 -It's always darkest before dawn. 26 +Its always darkest before dawn. 26 When life hands you lemons, make lemonade. 35 -It's the best we can do under the circumstances. 38 +Its the best we can do under the circumstances. 38 I wish we could do more. 18 You did the best you could. 21 You did the best that could be expected. 32 You get an a for effort. 18 The important thing is that you tried. 31 -Winning isn't everything. 21 -You can't win them all. 17 +Winning isnt everything. 21 +You cant win them all. 17 You made a noble effort. 19 Truth is stranger than fiction. 26 It was just one of those things. 25 -Don't ask why it just is. 18 -Why ask why? 9 -Who am I no question? 16 -It's for the best. 13 -It's all for the best. 16 -Don't let it get you down. 19 -Keep your chin up! 14 +Dont ask why it just is. 18 +Why ask why 9 +Who am I no question 16 +Its for the best. 13 +Its all for the best. 16 +Dont let it get you down. 19 +Keep your chin up 14 Grin and bear it. 13 Grit your teeth. 13 Take it in stride. 14 Roll with the punches. 18 Accept your fate. 14 -The third time's the charm. 21 +The third times the charm. 21 Things are never as bad as they seem. 29 Things will get better. 19 Tomorrow is another day. 20 @@ -9665,215 +9665,215 @@ It will always darkest before dawn. 29 Chin up. 6 It was destiny. 12 It was destined to happen. 21 -It's your fate. 11 +Its your fate. 11 It was fated to happen. 18 -It's fate. 7 -It's in the cards. 13 -It's in the stars. 13 -It's the cruel hand of fate. 21 -That's karma. 10 -It's god's will. 11 -It's all in god's plan. 16 +Its fate. 7 +Its in the cards. 13 +Its in the stars. 13 +Its the cruel hand of fate. 21 +Thats karma. 10 +Its gods will. 11 +Its all in gods plan. 16 It was meant to be. 14 What will be, will be. 17 Whatever will be, will be. 21 -There's nothing you can do about it. 28 +Theres nothing you can do about it. 28 You have to play the hand life deals you. 32 -You've got to play the hand you're dealt. 31 -You can't fight it. 14 -Do you happen to have the time? 24 -Could I bother you for the time? 25 -Could you give me the time? 21 -It's midnight. 11 -It's three. 8 -It's three o'clock. 14 -It's exactly three o'clock. 21 -It's almost three. 14 -It's not quite three. 16 -It's ten after three. 16 -It's ten minutes after three. 23 -It's ten past three. 15 -It's ten after. 11 -It's ten past. 10 -It's a quarter past three. 20 -It is three-thirty. 15 -It's half-past three. 16 -It's at half past. 13 -It's three forty. 13 -It's twenty four. 13 -It's twenty minutes until four. 25 -It's three forty-five. 17 -It's a quarter of four. 17 -It's quarter to. 12 -It's a quarter of. 13 -It's quarter till. 14 -It's quarter till four. 18 -It's ten minutes to four. 19 -It's ten to four. 12 -It's ten to. 8 -It's ten. 6 -It's ten till. 10 -Is this clock right? 16 +Youve got to play the hand youre dealt. 31 +You cant fight it. 14 +Do you happen to have the time 24 +Could I bother you for the time 25 +Could you give me the time 21 +Its midnight. 11 +Its three. 8 +Its three oclock. 14 +Its exactly three oclock. 21 +Its almost three. 14 +Its not quite three. 16 +Its ten after three. 16 +Its ten minutes after three. 23 +Its ten past three. 15 +Its ten after. 11 +Its ten past. 10 +Its a quarter past three. 20 +It is threethirty. 15 +Its halfpast three. 16 +Its at half past. 13 +Its three forty. 13 +Its twenty four. 13 +Its twenty minutes until four. 25 +Its three fortyfive. 17 +Its a quarter of four. 17 +Its quarter to. 12 +Its a quarter of. 13 +Its quarter till. 14 +Its quarter till four. 18 +Its ten minutes to four. 19 +Its ten to four. 12 +Its ten to. 8 +Its ten. 6 +Its ten till. 10 +Is this clock right 16 I think my watch needs a new battery. 29 This clock is fast. 15 This clock is slow. 15 My watch is running fast. 20 My watch has been running slow. 25 -Oh isn't he cute! 12 -Isn't she the sweetest thing! 23 -Oh, isn't she darling! 17 -What an adorable baby! 18 -His eyes are just like his father's. 28 -Her nose looks just like her mother's. 30 -She has her father's eyes. 20 -He's got his mother's nose. 20 -How much does he weigh? 18 -Was he early? 10 -Was she late? 10 -What's his name? 12 -Who is she named after? 18 -Has he been sleeping well? 21 -Is she sleeping through the night? 28 -Does he sleep through the night yet? 29 -Can I hold her? 11 -May I hold her? 11 -Are you free later today? 20 -Could I come over later today? 24 -Can I come over? 12 -Do you mind if I stop by later today? 28 -Would you mind if I stopped by later? 29 -Are you busy or can I come over? 24 -Would it be all right if I dropped by for a few minutes? 43 -When is a good time for you? 21 -I'll be there by seven. 17 -Do I need to bring anything? 22 -Would you like me to bring anything? 29 -Can I bring something? 18 -Can I bring anything? 17 -Should I bring anything? 20 -What should I bring? 16 +Oh isnt he cute 12 +Isnt she the sweetest thing 23 +Oh, isnt she darling 17 +What an adorable baby 18 +His eyes are just like his fathers. 28 +Her nose looks just like her mothers. 30 +She has her fathers eyes. 20 +Hes got his mothers nose. 20 +How much does he weigh 18 +Was he early 10 +Was she late 10 +Whats his name 12 +Who is she named after 18 +Has he been sleeping well 21 +Is she sleeping through the night 28 +Does he sleep through the night yet 29 +Can I hold her 11 +May I hold her 11 +Are you free later today 20 +Could I come over later today 24 +Can I come over 12 +Do you mind if I stop by later today 28 +Would you mind if I stopped by later 29 +Are you busy or can I come over 24 +Would it be all right if I dropped by for a few minutes 43 +When is a good time for you 21 +Ill be there by seven. 17 +Do I need to bring anything 22 +Would you like me to bring anything 29 +Can I bring something 18 +Can I bring anything 17 +Should I bring anything 20 +What should I bring 16 Let me bring dessert. 17 -What time should I be there? 22 -What do you have planned? 20 -Is it casual or formal? 18 -I'm planning to drive. how's the parking? 31 -Can I bring my kids? 15 -Can you stay for dinner? 19 -Can you have dinner with us? 22 -Can you stay and have dinner with us? 29 -Would you care to stay for dinner? 27 -Would you like to freshen up a bit? 27 -Would you like something to drink? 28 -Can I get you something to drink? 26 -Look who's here! 12 -Well, look who's here! 17 -Am I surprised to see you! 20 -Look at what the cat dragged in! 25 +What time should I be there 22 +What do you have planned 20 +Is it casual or formal 18 +Im planning to drive. hows the parking 31 +Can I bring my kids 15 +Can you stay for dinner 19 +Can you have dinner with us 22 +Can you stay and have dinner with us 29 +Would you care to stay for dinner 27 +Would you like to freshen up a bit 27 +Would you like something to drink 28 +Can I get you something to drink 26 +Look whos here 12 +Well, look whos here 17 +Am I surprised to see you 20 +Look at what the cat dragged in 25 Come right on in. 13 Come right in. 11 Do come in. 8 Come in and relax for a few minutes. 28 Come in and make yourself at home. 27 Come in and take a load off. 21 -To what do I owe the pleasure of this unexpected visit? 44 -To what do I owe this visit? 21 -What brings you to this neck of the woods? 33 -Why this delightful surprise? 25 -It's nice to see you. 15 -What are you doing here? 19 -What brings you here? 17 -What a delightful surprise! 23 -What a nice surprise! 17 -It's a pleasure to see you again. 25 -It's good to see you after all this time. 31 +To what do I owe the pleasure of this unexpected visit 44 +To what do I owe this visit 21 +What brings you to this neck of the woods 33 +Why this delightful surprise 25 +Its nice to see you. 15 +What are you doing here 19 +What brings you here 17 +What a delightful surprise 23 +What a nice surprise 17 +Its a pleasure to see you again. 25 +Its good to see you after all this time. 31 Good to see you again. 17 -I'm delighted to have you visit. 25 -I'm delighted to have you. 20 +Im delighted to have you visit. 25 +Im delighted to have you. 20 Delighted to have you here. 22 -I'm so happy you looked me up. 22 -I'm so glad you looked me up. 21 -I'm so glad you took the trouble to look me up. 35 -I'm so glad you could come. 20 -I'm so glad you could come by. 22 -I'm so glad you could make it. 22 -I'm so glad you could drop by. 22 -I'm so glad you could stop by. 22 -We've wanted to have you over before this. 33 -We've wanted to invite you over before this. 35 -We've been meaning to have you over. 28 +Im so happy you looked me up. 22 +Im so glad you looked me up. 21 +Im so glad you took the trouble to look me up. 35 +Im so glad you could come. 20 +Im so glad you could come by. 22 +Im so glad you could make it. 22 +Im so glad you could drop by. 22 +Im so glad you could stop by. 22 +Weve wanted to have you over before this. 33 +Weve wanted to invite you over before this. 35 +Weve been meaning to have you over. 28 Please sit down. 13 Have a seat. 9 -Would you like to sit over here? 25 +Would you like to sit over here 25 Please come to the living room. 25 Come on in the living room. 21 Right, this way. 13 -Would you like to join us in the living room? 35 +Would you like to join us in the living room 35 Everyone is in the living room. 25 Everyone seems to be in the kitchen. 29 The other guests are in the library. 29 Make yourself right at home. 23 -Would you like to take off your coat? 29 +Would you like to take off your coat 29 Here, let me take your coat. 22 -Can I take your coat and hat? 22 -Can I help you off with your things? 28 +Can I take your coat and hat 22 +Can I help you off with your things 28 Let me help you off with your things. 29 Put your things anywhere and sit down for a minute. 41 Just drop your coat here. 20 Take your coat off and stay awhile. 28 -Why don't you take off your coat and make yourself comfortable? 51 +Why dont you take off your coat and make yourself comfortable 51 Make yourself comfy. 17 -Try this chair. it's more comfortable. 30 -Would you prefer a more comfortable chair? 35 +Try this chair. its more comfortable. 30 +Would you prefer a more comfortable chair 35 Please make yourself at home. 24 Our house is your house. 19 My house is your house. 18 -If there's anything I can do for you, just ask. 36 -If there's anything you need, don't hesitate to ask. 41 +If theres anything I can do for you, just ask. 36 +If theres anything you need, dont hesitate to ask. 41 Please do exactly as you please. 26 -Would you like to talk about it? 25 -If you need someone to talk to, I'm always available. 42 -I'm here if you talk about it. 22 -Nice weather we're having. 21 +Would you like to talk about it 25 +If you need someone to talk to, Im always available. 42 +Im here if you talk about it. 22 +Nice weather were having. 21 The sun is shining. 15 -Horrible weather we're having. 25 -It's not the heat it's the humidity. 27 -It's raining again. 15 -What a storm! 10 -What a downpour! 13 -What a snowstorm! 14 -What blizzard! 12 +Horrible weather were having. 25 +Its not the heat its the humidity. 27 +Its raining again. 15 +What a storm 10 +What a downpour 13 +What a snowstorm 14 +What blizzard 12 Hot enough for you. 15 -Cold enough for you? 16 -It's raining. 10 -It's hot. 6 -It's humid. 8 -It's snowing. 10 -It's cold. 7 -It's soggy. 8 -It's muggy. 8 -It's windy. 8 -Lousy weather, isn't it? 19 +Cold enough for you 16 +Its raining. 10 +Its hot. 6 +Its humid. 8 +Its snowing. 10 +Its cold. 7 +Its soggy. 8 +Its muggy. 8 +Its windy. 8 +Lousy weather, isnt it 19 Thanks for having me over. 21 Thank you for the lovely evening. 27 Thank you for your lovely timing. 27 Thank you for having us. 19 Thank you for inviting us. 21 -Do you want a cup of coffee before you go? 32 -Are you sober enough to drive? 24 -Can I call you a taxi? 16 -Can you find your way home? 21 -Will you get home all right? 22 -Will you get home okay? 18 -Do you have everything? 19 -It's been a delightful visit. 23 -It's been delightful. 17 -It's been our pleasure. 18 +Do you want a cup of coffee before you go 32 +Are you sober enough to drive 24 +Can I call you a taxi 16 +Can you find your way home 21 +Will you get home all right 22 +Will you get home okay 18 +Do you have everything 19 +Its been a delightful visit. 23 +Its been delightful. 17 +Its been our pleasure. 18 So good to see you. 14 Thank you for coming. 17 Thanks for dropping in. 19 Thanks for dropping by. 19 Thanks for stopping over. 21 -I'm so glad you stopped by. 20 +Im so glad you stopped by. 20 Glad you could come. 16 Glad you could drop by. 18 Glad you could stop by. 18 @@ -9881,50 +9881,50 @@ Come back soon. 12 Come back anytime. 15 Come back when you can stay longer. 28 Do come back soon. 14 -Let's do this again soon. 19 +Lets do this again soon. 19 Mr. Smith to see Dr. jones. 19 -I'm here to see Mrs. Smith. 19 -Could you please tell Mr. Smith I'm here? 31 +Im here to see Mrs. Smith. 19 +Could you please tell Mr. Smith Im here 31 I have an appointment with Mrs. Jones. 30 -Do we have everything? 18 -Have we forgotten anything? 23 -Did we forget anything? 19 -Do you have your keys? 17 -Did you leave a light on? 19 -I can't find my keys. 15 +Do we have everything 18 +Have we forgotten anything 23 +Did we forget anything 19 +Do you have your keys 17 +Did you leave a light on 19 +I cant find my keys. 15 Wait, I forgot my wallet. 20 -Did you bring the map? 17 -Did you have the directions? 23 -Are the kids ready? 15 -Is the answering machine on? 23 -Did you go to the bathroom? 21 -Did you unplug the iron? 19 -Did you turn off the tv? 18 -Did you turn down the heating? 24 -Did you turn off the gas? 19 -I'll be gone just a few minutes. 24 +Did you bring the map 17 +Did you have the directions 23 +Are the kids ready 15 +Is the answering machine on 23 +Did you go to the bathroom 21 +Did you unplug the iron 19 +Did you turn off the tv 18 +Did you turn down the heating 24 +Did you turn off the gas 19 +Ill be gone just a few minutes. 24 See you in an hour. 14 -I won't be late. 11 -I'll be back by ten. 14 -I'll be home late. 13 -Don't wait up for me. 15 -Is it that late already? 19 -Is it that time already? 19 -Looks like it's that time. 20 +I wont be late. 11 +Ill be back by ten. 14 +Ill be home late. 13 +Dont wait up for me. 15 +Is it that late already 19 +Is it that time already 19 +Looks like its that time. 20 The time has come. 14 I hate to eat and run. 16 -I don't want to wear out my welcome. 27 +I dont want to wear out my welcome. 27 We have to get up early tomorrow. 26 We have a big day tomorrow. 21 I need to run. 10 -I'm afraid I must run. 16 -I'm afraid I must be going. 20 -I've got to be running. 17 -I'm afraid I have to be going. 22 -I've got to be going. 15 -I'd better be off. 13 -I'd best be off. 11 -I'd better leave now. 16 +Im afraid I must run. 16 +Im afraid I must be going. 20 +Ive got to be running. 17 +Im afraid I have to be going. 22 +Ive got to be going. 15 +Id better be off. 13 +Id best be off. 11 +Id better leave now. 16 I better get moving. 16 I better hit the road. 17 I must be off. 10 @@ -9935,98 +9935,98 @@ Time to go. 8 Time to run. 9 Time to hit the road. 16 Time to move along. 15 -Time flies when you're having fun. 27 +Time flies when youre having fun. 27 Gotta go. 7 Got to get running. 15 Have to go now. 11 Have to move along. 15 -Could I be excused? 15 -May I be excused? 13 -Might I be excused? 15 -Be prepared! 10 +Could I be excused 15 +May I be excused 13 +Might I be excused 15 +Be prepared 10 Leave nothing to chance. 20 Play it safe. 10 -Don't blow your cover. 17 +Dont blow your cover. 17 Let the buyer beware. 17 -We're not out of the woods yet. 23 -We're skating on thin ice. 20 -Hit the pavement! 14 -Hit the deck! 10 +Were not out of the woods yet. 23 +Were skating on thin ice. 20 +Hit the pavement 14 +Hit the deck 10 Proceed with caution. 18 -Man overboard! 12 +Man overboard 12 Stop, look, and listen. 19 Look both ways before you cross the street. 35 -Watch out! 8 -Watch it! 7 -Look sharp! 9 -Watch your step! 13 -Heads up! 7 -Behind you! 9 -To your right! 11 -On your left! 10 -Coming through! 13 -Make way! 7 -Where do we begin? 14 -How should we go about doing this? 27 -What's the first step? 17 -We're off and running. 17 -We're headed in the right direction. 29 -We're off on the right foot. 21 -We've made a good dent in it. 21 -It's a start. 9 -You've got to begin somewhere. 24 -I'd like to lay down a few ground rules. 30 -What's first on the agenda? 21 -Let's organize a task force. 22 -Who will be in charge? 17 -We're off to a good start. 19 -We've hit the ground running. 23 -We've laid a good foundation. 23 -We're just getting our feet wet. 25 -We've only just begun. 17 +Watch out 8 +Watch it 7 +Look sharp 9 +Watch your step 13 +Heads up 7 +Behind you 9 +To your right 11 +On your left 10 +Coming through 13 +Make way 7 +Where do we begin 14 +How should we go about doing this 27 +Whats the first step 17 +Were off and running. 17 +Were headed in the right direction. 29 +Were off on the right foot. 21 +Weve made a good dent in it. 21 +Its a start. 9 +Youve got to begin somewhere. 24 +Id like to lay down a few ground rules. 30 +Whats first on the agenda 21 +Lets organize a task force. 22 +Who will be in charge 17 +Were off to a good start. 19 +Weve hit the ground running. 23 +Weve laid a good foundation. 23 +Were just getting our feet wet. 25 +Weve only just begun. 17 This is your big night. 18 This could be your lucky day. 23 This is it. 8 -This is the moment you've been waiting for. 34 +This is the moment youve been waiting for. 34 This is a big moment. 16 Make us proud of you. 16 Make us proud. 11 -I'm sure you will make us proud of you. 29 -It's not as easy as it seems. 21 -There's more to it than meets the eye. 29 -It's surprisingly difficult. 24 -It's like looking for a needle in a haystack. 35 -It's a real challenge. 17 -It's not as easy as it looks. 21 -It's harder than it looks. 20 -It's harder than you think. 21 +Im sure you will make us proud of you. 29 +Its not as easy as it seems. 21 +Theres more to it than meets the eye. 29 +Its surprisingly difficult. 24 +Its like looking for a needle in a haystack. 35 +Its a real challenge. 17 +Its not as easy as it looks. 21 +Its harder than it looks. 20 +Its harder than you think. 21 Easier said than done. 18 -That won't work. 12 +That wont work. 12 Never happen. 11 No can do. 7 -There's no way. 11 -You're wasting your time. 20 -You're wasting your energy. 22 -You're wasting your effort. 22 -It doesn't stand a chance in hell. 26 -It doesn't stand a snowball's chance in hell. 35 -You're spinning your wheels. 23 -It isn't worth beating your brains out. 31 -It's headed for the junk heap. 23 -There's not a chance in hell. 22 -You're running around in circles. 27 -You're beating a dead horse. 22 +Theres no way. 11 +Youre wasting your time. 20 +Youre wasting your energy. 22 +Youre wasting your effort. 22 +It doesnt stand a chance in hell. 26 +It doesnt stand a snowballs chance in hell. 35 +Youre spinning your wheels. 23 +It isnt worth beating your brains out. 31 +Its headed for the junk heap. 23 +Theres not a chance in hell. 22 +Youre running around in circles. 27 +Youre beating a dead horse. 22 Trying to activate or motivate something. 35 Its like looking for a needle in a haystack. 35 -It's fit for the junkyard. 20 -Doesn't matter. 12 +Its fit for the junkyard. 20 +Doesnt matter. 12 It makes no nevermind. 18 -It doesn't make any nevermind. 24 -It's not worthwhile. 16 -It's not worth your while. 20 -It's not worth a hill of beans. 23 -It's not worth mentioning. 21 -It's not worth it. 13 +It doesnt make any nevermind. 24 +Its not worthwhile. 16 +Its not worth your while. 20 +Its not worth a hill of beans. 23 +Its not worth mentioning. 21 +Its not worth it. 13 Do it in. 6 Finish it off. 11 Kill it. 6 @@ -10041,23 +10041,23 @@ Trash it. 7 Nip it in the bud. 13 Throw it away. 11 Put the skids on it. 15 -It's back to the drawing board. 24 -Well it's back to square one. 22 -I'm allergic to cats. 16 -I'm allergic to chocolates. 22 -I'm allergic to nuts. 16 -I'm allergic to shrimp. 18 -I'm allergic to strawberries. 24 -I can't have chocolates. 19 -I can't eat strawberries. 20 -I'm lactose intolerant. 19 +Its back to the drawing board. 24 +Well its back to square one. 22 +Im allergic to cats. 16 +Im allergic to chocolates. 22 +Im allergic to nuts. 16 +Im allergic to shrimp. 18 +Im allergic to strawberries. 24 +I cant have chocolates. 19 +I cant eat strawberries. 20 +Im lactose intolerant. 19 I have hay fever. 13 I have an environmental illness. 27 -I'm allergic to penicillin. 22 -I'm allergic to dust. 16 -I'm allergic to bees. 16 -I'm allergic to bees stings. 22 -I'm on a gluten-free diet. 19 +Im allergic to penicillin. 22 +Im allergic to dust. 16 +Im allergic to bees. 16 +Im allergic to bees stings. 22 +Im on a glutenfree diet. 19 Dairy products make me break out in a rash. 34 My sinuses are acting up. 20 My sinuses ache. 13 @@ -10066,9 +10066,9 @@ Bless you. 8 God bless you. 11 My eyes are puffy. 14 My eyes are itchy. 14 -I'm breaking out in hives. 20 +Im breaking out in hives. 20 I break out when I eat chocolate. 26 -I'm sick. 6 +Im sick. 6 I feel funny. 10 I feel awful. 10 I feel downright awful. 19 @@ -10076,100 +10076,100 @@ I feel terrible. 13 I feel lousy. 10 I feel rotten. 11 I feel like hell. 13 -I don't feel well. 13 -I don't feel so well. 15 -I don't feel quite right. 19 +I dont feel well. 13 +I dont feel so well. 15 +I dont feel quite right. 19 I feel ill. 8 -I'm not feeling myself. 18 -I'm a little under the weather. 24 -I'm little under the weather. 23 -I'm feeling a little down in the mouth. 30 -I'm sick to my stomach. 17 +Im not feeling myself. 18 +Im a little under the weather. 24 +Im little under the weather. 23 +Im feeling a little down in the mouth. 30 +Im sick to my stomach. 17 I feel like throwing up. 19 -I think I'm going to vomit. 20 -I'm going to barf. 13 +I think Im going to vomit. 20 +Im going to barf. 13 I have a headache. 14 -I've got a splitting headache. 24 +Ive got a splitting headache. 24 My head is throbbing. 17 My head is pounding. 16 -There's hammering inside my head. 27 +Theres hammering inside my head. 27 I have a migraine. 14 I have an excruciating headache. 27 -I'm dizzy. 7 -I'm so dizzy I can't stand up. 21 -I'm so dizzy I have to sit down. 23 +Im dizzy. 7 +Im so dizzy I cant stand up. 21 +Im so dizzy I have to sit down. 23 I need some rest. 13 I need a nap. 9 I need a take a day off. 17 I need a day off. 12 I need a vacation. 14 -My get-up-and-go has got up and left. 27 -You're as cold as ice. 16 -You're cold fish. 13 -You're cold-blooded. 16 +My getupandgo has got up and left. 27 +Youre as cold as ice. 16 +Youre cold fish. 13 +Youre coldblooded. 16 You have got a heart of stone. 23 -You've got no heart. 15 -You're heartless. 14 -You're thick-skinned. 17 -Have you no qualms? 15 -Have you no scruples? 17 -Have you no thought of anyone but yourself? 35 +Youve got no heart. 15 +Youre heartless. 14 +Youre thickskinned. 17 +Have you no qualms 15 +Have you no scruples 17 +Have you no thought of anyone but yourself 35 Think before you speak. 19 Think before you act. 17 Try putting yourself in my shoes. 27 -Are things getting you down? 23 +Are things getting you down 23 You look like you lost your best friend. 32 You look like the wind has been taken out of your sails. 44 -I'm in trouble. 11 -I'm in big trouble. 14 -I'm in deep trouble. 15 -I'm in deep. 8 -I'm in over my head. 14 -I'm in way over my head. 17 +Im in trouble. 11 +Im in big trouble. 14 +Im in deep trouble. 15 +Im in deep. 8 +Im in over my head. 14 +Im in way over my head. 17 My neck is on the line. 17 My job is on the line. 16 My reputation is on the line. 23 My reputation is at stake. 21 -You've really screwed up. 20 -You've done it now. 14 -Now you've done it. 14 -You've really done it at this time. 27 -You're in for it. 12 -You're gonna get it. 15 -How could you do something so stupid? 30 -What kind of mess did you get yourself into? 35 -How dumb do you think I am? 20 -Do you think I was born yesterday? 27 -Who do you think you're kidding? 25 -Who do you think you're talking to? 27 +Youve really screwed up. 20 +Youve done it now. 14 +Now youve done it. 14 +Youve really done it at this time. 27 +Youre in for it. 12 +Youre gonna get it. 15 +How could you do something so stupid 30 +What kind of mess did you get yourself into 35 +How dumb do you think I am 20 +Do you think I was born yesterday 27 +Who do you think youre kidding 25 +Who do you think youre talking to 27 Stop stirring things up. 20 -You like to make trouble, don't you? 28 -Don't you have anything better to do? 29 -You've got too much time on your hands. 30 -Can't you leave well enough alone? 27 +You like to make trouble, dont you 28 +Dont you have anything better to do 29 +Youve got too much time on your hands. 30 +Cant you leave well enough alone 27 I am losing my marbles. 18 I am mad at the world. 16 -I'm going to explode. 16 +Im going to explode. 16 Everything is getting on my nerves. 29 -I can't another problem. 19 -I'm on pins and needles. 18 +I cant another problem. 19 +Im on pins and needles. 18 I am a bundle of nerves. 18 I am coming apart and the seams. 25 -I'm falling apart at seams. 21 +Im falling apart at seams. 21 I was in the wrong place at the wrong time. 33 I feel like a fish out of water. 24 -I'm out of my element. 16 +Im out of my element. 16 When in Rome, do as the Romans do. 26 I am so mad I could scream. 20 I was chewing my nails. 18 Simmer down. 10 Control yourself. 15 -Don't go into hysterics. 19 -Don't be such a worrywart. 20 -Don't worry yourself sick. 21 -Don't lose sleep over it. 19 -Don't let it go to you. 16 -Don't trouble yourself. 19 +Dont go into hysterics. 19 +Dont be such a worrywart. 20 +Dont worry yourself sick. 21 +Dont lose sleep over it. 19 +Dont let it go to you. 16 +Dont trouble yourself. 19 You will send yourself to an early grave. 33 I was frightened. 14 I was scared silly. 15 @@ -10199,132 +10199,132 @@ It made my flesh crawl. 18 It gave me goose pimples. 20 A shiver ran down my spine. 21 It curled my hair. 14 -What's the smell? 13 -What smells? 10 -Do you smell something? 19 -What's that fragrance? 18 -What's that aroma? 14 -What's that scent? 14 -What's the odor? 12 -What's that stench? 15 -What stinks? 10 -Do you smell gas? 13 -Get a whiff of this! 15 +Whats the smell 13 +What smells 10 +Do you smell something 19 +Whats that fragrance 18 +Whats that aroma 14 +Whats that scent 14 +Whats the odor 12 +Whats that stench 15 +What stinks 10 +Do you smell gas 13 +Get a whiff of this 15 Take a whiff of this. 16 Sniff this. 9 That reeks. 9 That smells. 10 -That smells to high heaven! 22 -That stinks to high heaven! 22 +That smells to high heaven 22 +That stinks to high heaven 22 It stinks on ice. 13 -They're bosom buddies. 18 -He's like the brother I never had. 26 +Theyre bosom buddies. 18 +Hes like the brother I never had. 26 He is one of a kind. 14 -What a character! 14 -They don't make them like him anymore. 30 +What a character 14 +They dont make them like him anymore. 30 After they made him, they broke the mold. 33 -We're two of a kind. 14 -We're cut from the same cloth. 23 -We're made from the same mold. 23 -We're birds of a feather. 19 -Do you mind if I join you? 19 -Mind if I join you? 14 -Care to join us? 12 -What are you drinking? 18 -Where was I? 9 -What was I saying? 14 -What were we talking about? 22 -I don't remember. 13 +Were two of a kind. 14 +Were cut from the same cloth. 23 +Were made from the same mold. 23 +Were birds of a feather. 19 +Do you mind if I join you 19 +Mind if I join you 14 +Care to join us 12 +What are you drinking 18 +Where was I 9 +What was I saying 14 +What were we talking about 22 +I dont remember. 13 I have a mind like a sieve. 20 I am a little absent minded. 22 -I would lose my head if it weren't attached. 34 -I've lost my train of thought. 23 -It's at the tip of my tongue. 21 -It's slipped my mind. 16 +I would lose my head if it werent attached. 34 +Ive lost my train of thought. 23 +Its at the tip of my tongue. 21 +Its slipped my mind. 16 The thought escapes me. 19 -It's left my head. 13 -What was your name again? 20 -What did you just say? 17 +Its left my head. 13 +What was your name again 20 +What did you just say 17 It went in one ear and out in another. 29 -Are we supposed to be someplace right now? 34 -I'm sorry, I'm hearing-impaired. 25 +Are we supposed to be someplace right now 34 +Im sorry, Im hearingimpaired. 25 He suffered a hearing loss. 22 -She's deaf as a post. 15 -I don't have an ear for music. 22 -He's got an ear for the piano. 22 +Shes deaf as a post. 15 +I dont have an ear for music. 22 +Hes got an ear for the piano. 22 She plays piano by ear. 18 -I can't hear them they're out of earshot. 31 +I cant hear them theyre out of earshot. 31 It was so quiet you could hear a pin drop. 32 -Are you trying to wake the deaf? 25 +Are you trying to wake the deaf 25 My plea fell on deaf ears. 20 They turned a deaf ear to our plea. 27 -There's none so deaf as those who will not hear. 37 +Theres none so deaf as those who will not hear. 37 In one ear and out the other. 22 To hear tell, the whole situation was awful. 36 -Boy, did I get an earful? 19 +Boy, did I get an earful 19 Keep your ears open. 16 Hear no evil. 10 That tastes great. 15 -That's as sweet as honey. 19 -That's as sweet as sugar. 19 +Thats as sweet as honey. 19 +Thats as sweet as sugar. 19 That tastes terrible. 18 That turns my stomach. 18 -Would you like a taste? 18 +Would you like a taste 18 Here.Try some. 11 -Would you like a sip? 16 -I'm hungry. 8 -I'm famished. 10 -I'm starved. 9 -I'm ravenous. 10 +Would you like a sip 16 +Im hungry. 8 +Im famished. 10 +Im starved. 9 +Im ravenous. 10 My mouth is watering. 17 -Who wants to say grace? 18 -Shall we grace? 12 -Shall we pray? 11 +Who wants to say grace 18 +Shall we grace 12 +Shall we pray 11 Let us pray. 9 -Let's pray. 8 -What's for supper? 14 -Dinner's almost ready. 18 +Lets pray. 8 +Whats for supper 14 +Dinners almost ready. 18 It will be on the table in a minute. 27 -Soup's on. 7 +Soups on. 7 You look tired. 12 You look like you need some sleep. 27 You look dreadful. 15 You look terrible. 15 You look like hell. 15 You look a sight. 13 -You're a sight. 11 +Youre a sight. 11 Look what the cat dragged in. 23 You look like something the cat dragged in. 35 -You look like you've been to hell and back. 33 -You look like you've been through a war. 31 -You look like you've gone through the wringer. 37 +You look like youve been to hell and back. 33 +You look like youve been through a war. 31 +You look like youve gone through the wringer. 37 You could stop a truck. 18 You could stop a clock. 18 That face could stop a clock. 23 -Are you having a bad hair day? 23 -You're as ugly as sin. 16 -You don't look well. 15 -You don't look too good. 18 -You don't look so good. 17 +Are you having a bad hair day 23 +Youre as ugly as sin. 16 +You dont look well. 15 +You dont look too good. 18 +You dont look so good. 17 You look like death. 16 You look like death warmed over. 26 You look green around the grill. 26 You look a little peaked. 20 You look pale. 11 -You're pale. 9 -You're white as a ghost. 18 -Why is your face so long? 19 -Did something get you down? 22 -What's got you down? 15 -Who rained on your parade? 21 -Why are you so blue? 15 -Did someone rain on your parade? 26 +Youre pale. 9 +Youre white as a ghost. 18 +Why is your face so long 19 +Did something get you down 22 +Whats got you down 15 +Who rained on your parade 21 +Why are you so blue 15 +Did someone rain on your parade 26 I am hungry. 9 I am starved. 10 That stew is mouthwatering. 23 -I'm so hungry I could eat a horse. 25 +Im so hungry I could eat a horse. 25 I could eat a horse. 15 -I'm not interested. 15 +Im not interested. 15 I am seeing someone else. 20 I have other plans. 15 I have got something going on. 24 @@ -10333,64 +10333,64 @@ I have to wash my hair. 17 My calendar is full. 16 You are not my type. 15 You must be joking. 15 -I don't feel up to it. 15 -Was I talking to you? 16 -Who asked you? 11 -I wasn't speaking to you. 19 +I dont feel up to it. 15 +Was I talking to you 16 +Who asked you 11 +I wasnt speaking to you. 19 When I want your opinion, I will ask it. 31 -When I want your opinion, I'll beat it out of you. 38 +When I want your opinion, Ill beat it out of you. 38 Thank you for sharing. 18 -I'll thank you to keep your opinion to yourself. 38 -I'll thank you to mind your own business. 32 +Ill thank you to keep your opinion to yourself. 38 +Ill thank you to mind your own business. 32 Keep your nose out of my business. 27 Keep your opinion to your self. 25 -You're not doing your share. 22 -You're not carrying your weight. 26 -You're not doing fair your share. 26 -You're not pulling your weight. 25 -You're not living up to your end of the bargain. 37 -You're not holding up your end of the bargain. 36 -You're not reaching your potential. 29 -You're slacking off. 16 -I'm broke. 7 -I'm dead broke. 11 -I'm flat broke. 11 -I'm flatter than a pancake. 21 -I don't have a dollar to my name. 24 -I don't have a penny to my name. 23 -I don't have a cent to my name. 22 -I don't have a red cent. 17 -I'm busted. 8 +Youre not doing your share. 22 +Youre not carrying your weight. 26 +Youre not doing fair your share. 26 +Youre not pulling your weight. 25 +Youre not living up to your end of the bargain. 37 +Youre not holding up your end of the bargain. 36 +Youre not reaching your potential. 29 +Youre slacking off. 16 +Im broke. 7 +Im dead broke. 11 +Im flat broke. 11 +Im flatter than a pancake. 21 +I dont have a dollar to my name. 24 +I dont have a penny to my name. 23 +I dont have a cent to my name. 22 +I dont have a red cent. 17 +Im busted. 8 I am as poor as church mouse. 22 My pockets are empty. 17 I have empty pockets. 17 All I have is my good name. 20 -I don't know where my next meal is coming from. 36 +I dont know where my next meal is coming from. 36 My savings are wiped out. 20 -I've lost everything. 17 -Are you crazy? 11 -Are you out of your mind? 19 -Are you out of your head? 19 -Are you psychotic, or what? 22 -Are you out of your ground? 21 -Are you out of your skull? 20 -Are you out of your tree? 19 -Are you out of it? 13 -Have you gone crazy? 16 -Have you gone insane? 17 -Have you gone mad? 14 -Have you gone loco? 15 -Have you lost your mind? 19 -Have you lost your senses? 21 -Have you lost your marble? 21 -Have you wigged out? 16 -Have you completely flipped out? 27 -Have you flipped your lid? 21 -Have you completely lost it? 23 -Have you taken leave of your senses? 29 -Do you have a screw loose? 20 -What planet are you from? 20 -Do you have rocks in your head? 24 +Ive lost everything. 17 +Are you crazy 11 +Are you out of your mind 19 +Are you out of your head 19 +Are you psychotic, or what 22 +Are you out of your ground 21 +Are you out of your skull 20 +Are you out of your tree 19 +Are you out of it 13 +Have you gone crazy 16 +Have you gone insane 17 +Have you gone mad 14 +Have you gone loco 15 +Have you lost your mind 19 +Have you lost your senses 21 +Have you lost your marble 21 +Have you wigged out 16 +Have you completely flipped out 27 +Have you flipped your lid 21 +Have you completely lost it 23 +Have you taken leave of your senses 29 +Do you have a screw loose 20 +What planet are you from 20 +Do you have rocks in your head 24 There is a time and place for everything. 33 A place for everything and everything in its place. 42 Everything has its session. 23 @@ -10400,103 +10400,103 @@ First come, first served. 21 The first shall be last and last, shall be first. 39 Rules are made to be broken. 22 Rules are meant to follow, not to be broken. 35 -Don't put the cart before the horse. 28 -Let's cross the bridge when we come to it. 32 +Dont put the cart before the horse. 28 +Lets cross the bridge when we come to it. 32 Do what you are told. 16 I just do what I am told. 18 I just do as I am told. 16 I just work here. 13 -I'm just the help. 13 +Im just the help. 13 Follow the rules. 14 -That's how we do it here. 18 +Thats how we do it here. 18 Go by the book. 11 You must go through proper channels. 30 This place is a mess. 16 This place is a pigsty. 18 What a pit. 8 What a dump. 9 -How can you find anything in here? 27 -How do you expect to find anything in this mess? 38 -Were you raised in a barn? 20 +How can you find anything in here 27 +How do you expect to find anything in this mess 38 +Were you raised in a barn 20 How about cleaning up a little around here. 35 -If you would put things where they belong, they wouldn't get lost. 53 +If you would put things where they belong, they wouldnt get lost. 53 This place is a disgrace. 20 What a mess. 9 This place looks like a tornado hit it. 31 This place looks like a national disaster. 35 This place looks like a disaster area. 31 -This place looks like it's been through a war. 36 +This place looks like its been through a war. 36 I have a hunch. 11 I have a gut feeling. 16 I just have this feeling. 20 -I get the feelings somthing's going to happen. 37 +I get the feelings somthings going to happen. 37 I feel it in my bones. 16 I can feel it. 10 I can sense it. 11 My sixth sense tell me that... 22 My guts tells me that... 17 -It's women intuition. 17 +Its women intuition. 17 A storm is brewing. 15 -The handwriting's on the wall. 24 -It's an omen. 9 -It's sign of things to come. 21 -It's portent of things to come. 24 -It's a good sign. 12 -It's a bad sign. 11 -It's a good omen. 12 -It's a bad omen. 11 -You're as busy as beaver. 19 +The handwritings on the wall. 24 +Its an omen. 9 +Its sign of things to come. 21 +Its portent of things to come. 24 +Its a good sign. 12 +Its a bad sign. 11 +Its a good omen. 12 +Its a bad omen. 11 +Youre as busy as beaver. 19 I was hoping for more. 17 I was counting on more. 18 I was gunning for more. 18 -It's not what i had in mind. 20 -It's not what i pictured. 19 -It's not what i hoped for. 19 -It's not what i expected. 19 -It's not what i anticipated. 22 +Its not what i had in mind. 20 +Its not what i pictured. 19 +Its not what i hoped for. 19 +Its not what i expected. 19 +Its not what i anticipated. 22 I expected something more. 22 -It's a far cry from what i expected. 27 +Its a far cry from what i expected. 27 It leaves a lot to be desired. 23 They got the best of me. 18 -I've been cheated. 14 -I didn't gain what i bargained for. 27 +Ive been cheated. 14 +I didnt gain what i bargained for. 27 I was taken advantage of. 20 I got short end of the stick. 22 I got robbed. 10 I got taken. 9 I got a raw deal. 12 I got screwed. 11 -You can't please everybody. 22 -You can't be all things to all people. 29 +You cant please everybody. 22 +You cant be all things to all people. 29 You have got your fingers in too many pies. 34 You have got your irons in too many fires. 33 -You're burning the candle. 21 -You're taking too many things on. 26 -You're taking on too much. 20 -You're doing too much. 17 -You're trying to do too much. 22 -You're overcommitted. 18 -You're overdoing it. 16 -You're carrying world on your shoulders. 33 +Youre burning the candle. 21 +Youre taking too many things on. 26 +Youre taking on too much. 20 +Youre doing too much. 17 +Youre trying to do too much. 22 +Youre overcommitted. 18 +Youre overdoing it. 16 +Youre carrying world on your shoulders. 33 You need to set your priorities. 26 -You're as busy as a bee. 17 +Youre as busy as a bee. 17 Many hands make light work. 22 A little work never hurt anyone. 26 -It's all in day's work. 16 -A woman's work is never done. 22 +Its all in days work. 16 +A womans work is never done. 22 God helps those who help themselves. 30 -Don't get excited. 14 -Don't get all excited. 17 -Don't get all worked up. 18 -Don't blow your stack. 17 -Don't lose your cool. 16 -Don't blow your cool. 16 -Don't go into hysterics on me. 23 -Don't fly off the handle. 19 +Dont get excited. 14 +Dont get all excited. 17 +Dont get all worked up. 18 +Dont blow your stack. 17 +Dont lose your cool. 16 +Dont blow your cool. 16 +Dont go into hysterics on me. 23 +Dont fly off the handle. 19 Restrain yourself. 16 -Would you restrain yourself? 24 +Would you restrain yourself 24 Get a grip on yourself. 18 -Would you get a grip? 16 +Would you get a grip 16 Mellow out. 9 Chill out. 8 Keep cool. 8 @@ -10507,202 +10507,202 @@ Be calm. 6 Calm yourself. 12 Take it easy. 10 Take it slow. 10 -This is a non-smoking area. 21 -This is a non-smoking building. 25 -You'll have to step outside. 22 -Please observe the no-smoking sign. 29 -Can you put out? 12 +This is a nonsmoking area. 21 +This is a nonsmoking building. 25 +Youll have to step outside. 22 +Please observe the nosmoking sign. 29 +Can you put out 12 Please put that out. 16 -I'm sorry, you'll have to put that out. 29 +Im sorry, youll have to put that out. 29 I am sorry, the smoke is bothering. 28 -Have you ever thought of quitting? 28 +Have you ever thought of quitting 28 You smoke like chimney. 19 -And how are you today? 17 -And what is your name? 17 -You've gotten so big! 16 -You're growing so tall. 18 -You're turning into a little lady. 27 -You're turning into little gentlemen. 31 -What a big girl! 12 -How many years till you're in school? 29 -What's your favorite subject in school? 32 -Have you been a good boy? 19 -Are you being a good girl? 20 -How many brothers and sisters do you have? 34 -That's very good. 13 -You're a good little boy. 19 -You're a good little girl. 20 -I'm so proud of you. 14 -Mommy's proud of you. 16 +And how are you today 17 +And what is your name 17 +Youve gotten so big 16 +Youre growing so tall. 18 +Youre turning into a little lady. 27 +Youre turning into little gentlemen. 31 +What a big girl 12 +How many years till youre in school 29 +Whats your favorite subject in school 32 +Have you been a good boy 19 +Are you being a good girl 20 +How many brothers and sisters do you have 34 +Thats very good. 13 +Youre a good little boy. 19 +Youre a good little girl. 20 +Im so proud of you. 14 +Mommys proud of you. 16 We are very proud of you. 19 Behave yourself. 14 Be good. 6 Be a good girl. 11 Be a good boy. 10 -That's enough of that! 17 +Thats enough of that 17 Sit down. 7 Be quiet. 7 -Let's be quiet. 11 +Lets be quiet. 11 Not another word. 14 -I don't want to hear a peep out of you. 28 +I dont want to hear a peep out of you. 28 Stop it. 6 Stop that. 8 Settle down. 10 -Do you have a note from your doctor? 28 -Can I still get into your course? 26 -What is the book list for the course? 29 -Is there a final for this course? 26 -What are the requirements? 22 -When are your office hours? 22 -Where is your office? 17 -Could you explain that again? 24 -I don't get it. please explain. 23 +Do you have a note from your doctor 28 +Can I still get into your course 26 +What is the book list for the course 29 +Is there a final for this course 26 +What are the requirements 22 +When are your office hours 22 +Where is your office 17 +Could you explain that again 24 +I dont get it. please explain. 23 Please go over that part again. 25 -I don't understand. 15 -I still don't understand. 20 +I dont understand. 15 +I still dont understand. 20 I do not understand your English. 27 -I'm having a problem understanding the teaching assistant. 49 -What do you want us to know about the test? 33 -Will there be a review session? 25 -Will the test cover the whole book? 28 -Will the test take the whole period? 29 -What's on the test? 14 -Can you tell me what grade I'm getting? 30 -Would you tell me what grade I'm getting? 32 -Do you grade on a curve? 18 -How many were there? 16 -I worked hard, so don't I deserve a good grade? 36 -I'd like to discuss my daughter's progress. 34 +Im having a problem understanding the teaching assistant. 49 +What do you want us to know about the test 33 +Will there be a review session 25 +Will the test cover the whole book 28 +Will the test take the whole period 29 +Whats on the test 14 +Can you tell me what grade Im getting 30 +Would you tell me what grade Im getting 32 +Do you grade on a curve 18 +How many were there 16 +I worked hard, so dont I deserve a good grade 36 +Id like to discuss my daughters progress. 34 My daughter seems to be having trouble in class. 39 -Can I get you a glass of water? 23 -Do you want a glass of water? 22 -Would you like a glass of water? 25 -Would you like to lie down? 21 -Want to lie down? 13 -Would you like some aspirin? 23 -Want some aspirin? 15 -Should I call the doctor? 20 -Have you seen a doctor? 18 -I still have to go back to the doctor for a follow-up. 41 -I'm still under a doctor's care. 24 -I'm still seeing a doctor. 20 -I'm in therapy. 11 -I'm still seeing a therapist. 23 -I'm well now. 9 -I'm all better. 11 -I'm completely over it. 18 -I'm as good as new. 13 -It's like it never happened. 22 +Can I get you a glass of water 23 +Do you want a glass of water 22 +Would you like a glass of water 25 +Would you like to lie down 21 +Want to lie down 13 +Would you like some aspirin 23 +Want some aspirin 15 +Should I call the doctor 20 +Have you seen a doctor 18 +I still have to go back to the doctor for a followup. 41 +Im still under a doctors care. 24 +Im still seeing a doctor. 20 +Im in therapy. 11 +Im still seeing a therapist. 23 +Im well now. 9 +Im all better. 11 +Im completely over it. 18 +Im as good as new. 13 +Its like it never happened. 22 I feel like a new person. 19 -I've got a new lease on life. 21 -I'm on cloud nine. 13 -I'm in seventh heaven. 17 -I'm on top of the world. 17 -I'm sitting on top of the world. 24 +Ive got a new lease on life. 21 +Im on cloud nine. 13 +Im in seventh heaven. 17 +Im on top of the world. 17 +Im sitting on top of the world. 24 I am happy as can be. 15 I am high on life. 13 -I'm feeling fine. 13 -I'm as merry as the day is long. 23 -I'm as happy as a clam. 16 -I'm pleased as punch. 16 -I'm beside myself with joy. 21 -I couldn't be happier. 17 -I'm walking on air. 14 +Im feeling fine. 13 +Im as merry as the day is long. 23 +Im as happy as a clam. 16 +Im pleased as punch. 16 +Im beside myself with joy. 21 +I couldnt be happier. 17 +Im walking on air. 14 You look like you just won the jackpot. 31 You look like you died and went to heaven. 33 -You're looking on top of the world. 27 -What are you smiling about? 22 -Things couldn't be better. 21 -Everything's coming up roses. 24 -What a great day! 13 -It feels good just to be alive! 24 -Life's been good to me. 17 -It's great to be alive! 17 -My mind's at ease. 13 +Youre looking on top of the world. 27 +What are you smiling about 22 +Things couldnt be better. 21 +Everythings coming up roses. 24 +What a great day 13 +It feels good just to be alive 24 +Lifes been good to me. 17 +Its great to be alive 17 +My minds at ease. 13 I am content. 10 -We're satisfied. 13 -I'm just going with the flow. 22 -I'm at peace. 9 -I don't have a care in the world. 24 +Were satisfied. 13 +Im just going with the flow. 22 +Im at peace. 9 +I dont have a care in the world. 24 Tom is without a care in the world. 27 -I haven't a care. 12 +I havent a care. 12 I accept myself for what I am. 23 -I've come to grips with reality. 25 -I've come to terms with myself. 24 -I've learned to face the music. 24 +Ive come to grips with reality. 25 +Ive come to terms with myself. 24 +Ive learned to face the music. 24 Leave well enough alone. 20 Let well enough alone. 18 -I've come to terms with reality. 25 +Ive come to terms with reality. 25 Let sleeping dogs lie. 18 -She's the life of the party. 21 -He's such a card. 12 +Shes the life of the party. 21 +Hes such a card. 12 He is a kill. 9 -I'm feeling low. 12 -I'm feeling blue. 13 -I'm feeling down. 13 -I'm out of sorts. 12 -I'm in the doldrums. 15 -I'm a little down in the mouth. 23 -I'm down in the dumps. 16 -I've been down in the dumps lately. 27 -I can't put my finger on what's wrong. 28 +Im feeling low. 12 +Im feeling blue. 13 +Im feeling down. 13 +Im out of sorts. 12 +Im in the doldrums. 15 +Im a little down in the mouth. 23 +Im down in the dumps. 16 +Ive been down in the dumps lately. 27 +I cant put my finger on whats wrong. 28 My heart is heavy. 14 My heart is broken. 15 -I'm downhearted. 13 -I'm broken-hearted. 15 -I'm heartbroken. 13 +Im downhearted. 13 +Im brokenhearted. 15 +Im heartbroken. 13 That leaves a lot to be desired. 25 -That doesn't quite suit me. 21 -That's not what I had in mind. 22 -That didn't fit the bill. 19 -That is not what it's cracked up to be. 29 -It's not up to snuff. 15 +That doesnt quite suit me. 21 +Thats not what I had in mind. 22 +That didnt fit the bill. 19 +That is not what its cracked up to be. 29 +Its not up to snuff. 15 Please go around and introduce yourself to everyone. 44 -I hope you don't mind introducing yourself around. 41 -Could you just introduce yourself to the other guests? 45 +I hope you dont mind introducing yourself around. 41 +Could you just introduce yourself to the other guests 45 Just go in and meet everyone. 23 -Don't stand on ceremony. make yourself known. 36 +Dont stand on ceremony. make yourself known. 36 Get yourself a drink and something to eat. 34 Please feel free to mingle with the other guests. 40 -I hope you don't mind getting yourself a drink. 37 +I hope you dont mind getting yourself a drink. 37 Please help yourself. 18 -Mind if I join? 11 +Mind if I join 11 Hello, my name isJjane. 19 -Hello, I'm jane. 12 +Hello, Im jane. 12 I work with Lee. 12 -I'm friends with Maria. 18 -I'm a friend of maria. 16 -Have you tried the dip? 18 -Where can I put my coat? 18 -Where is the bathroom? 18 +Im friends with Maria. 18 +Im a friend of maria. 16 +Have you tried the dip 18 +Where can I put my coat 18 +Where is the bathroom 18 The table looks beautiful. 22 I love what you have done with the living room. 37 You have a wonderful place. 22 You have wonderful taste. 21 Do as I say, not as I do. 17 Do as I tell you. 12 -Do as you're told. 13 -Have I made myself clear? 20 -Do I make myself clear? 18 -Do I make myself perfectly clear? 27 -Did you hear me? 12 +Do as youre told. 13 +Have I made myself clear 20 +Do I make myself clear 18 +Do I make myself perfectly clear 27 +Did you hear me 12 Mind your manners. 15 I expect you to be on your best behavior. 32 Act like a gentleman. 17 -"Say ""excuse me""." 11 -"Say ""thank you""." 11 -"Say ""you're welcome""." 15 -"Say ""please""." 9 -What's the magic word? 17 -What do you say? 12 -Yes, what? 8 +Say excuse me. 11 +Say thank you. 11 +Say youre welcome. 15 +Say please. 9 +Whats the magic word 17 +What do you say 12 +Yes, what 8 Put that down. 11 Look with your eyes, not your hands. 29 Put that away. 11 Leave that alone. 14 -Don't touch that. 13 +Dont touch that. 13 Stop playing with that. 19 -Don't bother your father when he's driving. 34 +Dont bother your father when hes driving. 34 Stop pestering your little brother. 30 Keep your hands to yourself. 23 Keep your hand off your little brother. 32 @@ -10713,129 +10713,129 @@ Let him be. 8 Time to crack the books. 19 Gotta cram. 9 I have a lot of studying to do. 23 -I've got a midterm tomorrow. 22 -I've got a final exam tomorrow. 24 -How many pages do we have to read for Monday? 35 -How many pages? 12 -Will we have to turn in our homework? 29 -What's the reading assignment for next time? 36 -Will there be a quiz? 16 -What's the assignment for tomorrow? 29 -I'm going to take a nap. 17 -I'm going to take a catnap. 20 -I'm going to take a snooze. 20 -I'm going to get some shut-eye. 23 -I'm going to catch forty winks. 24 -I'm going to catch some sleep. 23 -I'm going to bed. 12 -It's bedtime. 10 -It's past my bedtime. 16 -I'm going to sleep. 14 -I'm going to hit the sack. 19 -I'm going to hit the hay. 18 -I'm going to crash. 14 -I think I'll retire for the night. 26 -I think I'll say good night now. 24 -Don't sit on the counter. 19 -Don't eat that you'll spoil your dinner. 31 -Don't stand in front of the refrigerator with the door open. 48 -Watch out it's hot! 14 -Don't drink milk out of the carton! 27 -Don't drink milk out of the jug. 24 -Would you set the table? 19 -Go sit down supper's ready. 21 -Go tell your father supper's ready. 28 +Ive got a midterm tomorrow. 22 +Ive got a final exam tomorrow. 24 +How many pages do we have to read for Monday 35 +How many pages 12 +Will we have to turn in our homework 29 +Whats the reading assignment for next time 36 +Will there be a quiz 16 +Whats the assignment for tomorrow 29 +Im going to take a nap. 17 +Im going to take a catnap. 20 +Im going to take a snooze. 20 +Im going to get some shuteye. 23 +Im going to catch forty winks. 24 +Im going to catch some sleep. 23 +Im going to bed. 12 +Its bedtime. 10 +Its past my bedtime. 16 +Im going to sleep. 14 +Im going to hit the sack. 19 +Im going to hit the hay. 18 +Im going to crash. 14 +I think Ill retire for the night. 26 +I think Ill say good night now. 24 +Dont sit on the counter. 19 +Dont eat that youll spoil your dinner. 31 +Dont stand in front of the refrigerator with the door open. 48 +Watch out its hot 14 +Dont drink milk out of the carton 27 +Dont drink milk out of the jug. 24 +Would you set the table 19 +Go sit down suppers ready. 21 +Go tell your father suppers ready. 28 Call the family for dinner. 22 Call everyone to the table. 22 Finish your dinner. 16 You have to eat everything. 22 You have to eat everything that you serve yourself. 42 You have to eat some of everything. 28 -If you don't eat your vegetables, you won't get any dessert. 47 -Don't wear your shoes on the good carpet. 32 -Don't sit on the good furniture. 25 +If you dont eat your vegetables, you wont get any dessert. 47 +Dont wear your shoes on the good carpet. 32 +Dont sit on the good furniture. 25 Keep your feet off the furniture. 27 Keep your feet off the furniture.. 27 Take care of it. 12 Take good care of it. 16 -I'm trusting you to take good care of it. 31 +Im trusting you to take good care of it. 31 Keep an eye on it. 13 Guard it with your life. 19 -Don't let it out of your sight. 23 +Dont let it out of your sight. 23 I want this back. 13 I want it back in one piece. 21 -You're always on the computer. 24 -Are you on Facebook? 16 -I need to check my e-mail. 19 +Youre always on the computer. 24 +Are you on Facebook 16 +I need to check my email. 19 Look it up online. 14 I looked it up on google. 19 I googled it. 10 -Did you see that funny video online? 29 -It's up on youtube. 14 -I'll send you the link. 17 -What's your log on? 14 -What's the password? 16 -I've forgotten the password. 23 +Did you see that funny video online 29 +Its up on youtube. 14 +Ill send you the link. 17 +Whats your log on 14 +Whats the password 16 +Ive forgotten the password. 23 Remember to log off. 16 My files are on my laptop. 20 I put all my photos up online. 23 -I've uploaded all my videos. 22 +Ive uploaded all my videos. 22 Back up your files. 15 -Do you have a flash drive? 20 -Have they figured out what's wrong? 28 -What's the prognosis? 17 -How long you will be here? 20 -When do you get to go home? 20 -When are you going home? 19 -When are you being released? 23 -Is there anything you need? 22 -Is there anything I can do? 21 -Can I get you anything? 18 -Should I call for the nurse? 22 -Is the food as bad as they say? 23 -How's the food? 11 -How's your doctor? 14 -Is it catching? 12 -Are you contagious? 16 -Don't give it to me. 14 -I don't want to catch it. 18 +Do you have a flash drive 20 +Have they figured out whats wrong 28 +Whats the prognosis 17 +How long you will be here 20 +When do you get to go home 20 +When are you going home 19 +When are you being released 23 +Is there anything you need 22 +Is there anything I can do 21 +Can I get you anything 18 +Should I call for the nurse 22 +Is the food as bad as they say 23 +Hows the food 11 +Hows your doctor 14 +Is it catching 12 +Are you contagious 16 +Dont give it to me. 14 +I dont want to catch it. 18 You need to relax. 14 -You've been running around too much. 29 +Youve been running around too much. 29 Your resistance is down. 20 -It's been going around. 18 -Be quite! 7 -Keep quiet! 9 -Keep still! 9 -Be still! 7 -Shut up! 6 -Shut your mouth! 13 -Shut your trap! 12 -Hold your tongue! 14 -Hush your mouth! 13 -Not another word! 14 -Button your lip! 13 -Button in! 8 -Clam up! 6 -Dry up! 5 +Its been going around. 18 +Be quite 7 +Keep quiet 9 +Keep still 9 +Be still 7 +Shut up 6 +Shut your mouth 13 +Shut your trap 12 +Hold your tongue 14 +Hush your mouth 13 +Not another word 14 +Button your lip 13 +Button in 8 +Clam up 6 +Dry up 5 Go blow. 6 Go fry an egg. 10 Go take a long walk off a short pier. 28 Make yourself scarce. 18 -Go climb a tree! 12 -Go fly a kite! 10 -Go jump in the lake! 15 -Go play in traffic! 15 -Buzz off! 7 -Bug off! 6 -Take a hike! 9 -Get out of here! 12 -Get out of my face! 14 -Who asked your opinion? 19 +Go climb a tree 12 +Go fly a kite 10 +Go jump in the lake 15 +Go play in traffic 15 +Buzz off 7 +Bug off 6 +Take a hike 9 +Get out of here 12 +Get out of my face 14 +Who asked your opinion 19 When I want your opinion, I will ask for it. 34 -Who invited you? 13 -You're not invited. 15 -You're not welcome here. 19 -We don't want your kind around here. 28 +Who invited you 13 +Youre not invited. 15 +Youre not welcome here. 19 +We dont want your kind around here. 28 Keep out. 7 No trespassing. 13 Members only. 11 @@ -10843,57 +10843,57 @@ Employees only. 13 No admittance. 12 No admittance without proper identification. 39 These premises are for the use of members and guests only. 47 -Would you stop that? 16 -Could you please stop doing that? 27 +Would you stop that 16 +Could you please stop doing that 27 You are really trying my patience. 28 -That's really annoying. 19 -That's really irritating. 21 -That's driving me nuts! 18 -That's making me crazy! 18 -That's really bothersome. 21 -That's really bothering me. 22 -That's really bugging me. 20 -That's going on my nerves. 20 -That's grating on my nerves. 22 +Thats really annoying. 19 +Thats really irritating. 21 +Thats driving me nuts 18 +Thats making me crazy 18 +Thats really bothersome. 21 +Thats really bothering me. 22 +Thats really bugging me. 20 +Thats going on my nerves. 20 +Thats grating on my nerves. 22 Let me be. 7 Let me alone. 10 Leave me be. 9 Please go away. 12 -I'm asking you to leave me alone. 25 +Im asking you to leave me alone. 25 I just want to be left alone. 22 -You're a pain in the neck. 19 -You're a royal pain. 15 +Youre a pain in the neck. 19 +Youre a royal pain. 15 He grates on me. 12 He grates on my nerves. 18 He gets on my nerves. 16 He rubs me the wrong way. 19 He gets my dander up. 16 -The nerve of you! 13 -What nerve you have! 16 -You have a lot of nerve! 18 -The nerve! 8 -You have a lot of gall! 17 -What gall! 8 -The very idea! 11 -How dare you! 10 -Why I never! 9 -How could you say such a thing? 24 -How could you do such a thing? 23 -Don't get smart with me! 18 -Don't get sassy with me. 18 -Don't sassy me. 11 -Don't talk back to me. 16 -Don't give me any of your lip. 22 -Don't get uppity with me. 19 -Don't get uppity on me. 17 -Don't get your nose out of joint. 25 -Don't overstep your bounds. 22 +The nerve of you 13 +What nerve you have 16 +You have a lot of nerve 18 +The nerve 8 +You have a lot of gall 17 +What gall 8 +The very idea 11 +How dare you 10 +Why I never 9 +How could you say such a thing 24 +How could you do such a thing 23 +Dont get smart with me 18 +Dont get sassy with me. 18 +Dont sassy me. 11 +Dont talk back to me. 16 +Dont give me any of your lip. 22 +Dont get uppity with me. 19 +Dont get uppity on me. 17 +Dont get your nose out of joint. 25 +Dont overstep your bounds. 22 Watch yourself. 13 Watch it. 7 Watch out. 8 -Don't contradict me. 16 -It's as clean as whistle. 19 -It's so clean you could eat off the floor. 32 +Dont contradict me. 16 +Its as clean as whistle. 19 +Its so clean you could eat off the floor. 32 Clean your room. 13 Pick up your clothes. 17 I want you to pick up your room. 24 @@ -10903,169 +10903,169 @@ Cleanliness is next to godliness. 28 Andrew, please clear the table. 26 Please put your dishes in the sink. 28 Please carry your own dishes to the kitchen. 36 -It's your turn to do dishes. 21 -It's your turn to clear the table. 26 -I'll scrap and you load. 18 -Whose turn is it to do the dishes? 26 -I'll wash and you dry. 16 +Its your turn to do dishes. 21 +Its your turn to clear the table. 26 +Ill scrap and you load. 18 +Whose turn is it to do the dishes 26 +Ill wash and you dry. 16 I apologize for any inconvenience caused. 35 -I assure you I'll do everything possible to help you. 42 +I assure you Ill do everything possible to help you. 42 I appreciate your patience. 23 What I can do right now is. 20 -I'll do everything to resolve this issue as soon as possible. 49 +Ill do everything to resolve this issue as soon as possible. 49 I see how frustrating it must be. 26 -Let's see how we can work this out. 26 +Lets see how we can work this out. 26 If I were in your position, I feel the same. 34 Yes, I would be feeling the same way. 29 You are right. 11 Your business means a lot to us. 25 I understand sir. 14 -All you need to do you've to send your all documents for verification. 56 -I'm sending an update. 17 +All you need to do youve to send your all documents for verification. 56 +Im sending an update. 17 Let me check. 10 Visit our help center instead. 25 -I'm sending the confirmation. 24 -Did you know about our additional service? 35 +Im sending the confirmation. 24 +Did you know about our additional service 35 I appreciate your feedback. 23 Please check that format. 21 Be sure to check your information. 28 -Let me confirm if I've got this right. 29 -It's important to make sure your loyalty. 33 +Let me confirm if Ive got this right. 29 +Its important to make sure your loyalty. 33 A simple way to do that is to dispatch your credentials with us. 51 -So you're saying that there are some issues. 35 -If I'm getting the story right then I'll sort it out today. 45 -I'll make things right. 18 -I'll get this sorted out. 19 -I'll fix the issue for you. 20 -While that isn't possible right now but'll. 34 -Currently, that's a limitation. what I can do is? 38 -Is there anything else I can do for you today? 36 +So youre saying that there are some issues. 35 +If Im getting the story right then Ill sort it out today. 45 +Ill make things right. 18 +Ill get this sorted out. 19 +Ill fix the issue for you. 20 +While that isnt possible right now butll. 34 +Currently, thats a limitation. what I can do is 38 +Is there anything else I can do for you today 36 Please let me know if you have any questions. 36 I want to make sure I understood everything correctly. 45 -Did you mean to tell me? 18 -If I can understand you correctly then it will be great for you! 51 -That's a great question. 19 +Did you mean to tell me 18 +If I can understand you correctly then it will be great for you 51 +Thats a great question. 19 I would be more than happy when you tell me your problem. 45 I would be happy to help you. 22 -That's a good choice. 16 +Thats a good choice. 16 A lot of people prefer. 18 So many people prefer this product. 29 We appreciate your patience. 24 Thank you for remaining so positive. 30 Personally, I would recommend you for your benefit. 43 -I think you'll find it's much easier if you do this process. 46 +I think youll find its much easier if you do this process. 46 You might find this service helpful. 30 -If I'm understanding you correctly which you've to say to me. 48 -Because you're a valued customer. 27 +If Im understanding you correctly which youve to say to me. 48 +Because youre a valued customer. 27 I realize that this situation is difficult, sir. 40 -I assured we'll find a solution for you. 31 +I assured well find a solution for you. 31 I would feel the same if this happened to me. 35 -We'll sort this out. 15 -I'm sorry to hear you're having this problem. 35 +Well sort this out. 15 +Im sorry to hear youre having this problem. 35 I know how frustrating it can be, sir. 30 -Let's see how we can help you. 22 -We'll get this resolve as quickly as possible. 37 +Lets see how we can help you. 22 +Well get this resolve as quickly as possible. 37 Absolutely right, sir. 19 Great, sir. 9 -I would feel the same in your situation, ma'am. 37 +I would feel the same in your situation, maam. 37 Sure, we will sort this out. 22 -I'm sorry you are having this problem. 30 -Let's see if there is anything we can do to help the situation. 49 -I think I'd feel just as you do, ma'am. 28 -Now that I am aware of the situation, but I'll help. 40 +Im sorry you are having this problem. 30 +Lets see if there is anything we can do to help the situation. 49 +I think Id feel just as you do, maam. 28 +Now that I am aware of the situation, but Ill help. 40 I will definitely try my best to fix it for you, sir. 41 -That sounds frustrating, let's see what we can do. 40 +That sounds frustrating, lets see what we can do. 40 So that I can resolve this problem. 28 It would be marvelous if you could act. 31 -You're right! can you tell me more? 26 -Yes, that's good. what else do you know about that? 39 -You're correct. how did you know about that? 34 -Can you also tell me why this is important? 34 -es, I like the way said that, but it's not our company's policy sir. 52 -I'd like to go back to what you said now. 30 -Do you think that? 14 +Youre right can you tell me more 26 +Yes, thats good. what else do you know about that 39 +Youre correct. how did you know about that 34 +Can you also tell me why this is important 34 +es, I like the way said that, but its not our companys policy sir. 52 +Id like to go back to what you said now. 30 +Do you think that 14 I noticed that. 12 -Good thinking! 12 +Good thinking 12 From what I understand the issue, will sort it out. 41 It would be excellent if you could act. 31 -Definitely, I'll make retain that this gets resolved quickly for you. 57 +Definitely, Ill make retain that this gets resolved quickly for you. 57 Thank you. we can certainly help you with this. 37 Thanks for alerting us to this, we really appreciate your feedback. 56 -Can you explain what you mean? 24 -Could you please repeat it? 22 -What does that mean? 16 -That's okay. 9 +Can you explain what you mean 24 +Could you please repeat it 22 +What does that mean 16 +Thats okay. 9 Everything will be fine. 20 -We'll take it easy. 14 -It's going to be easy. 16 +Well take it easy. 14 +Its going to be easy. 16 It will be my pleasure. 18 -I'll make sure we are thorough. 24 -I'll get this resolved to your satisfaction. 36 +Ill make sure we are thorough. 24 +Ill get this resolved to your satisfaction. 36 Please tell me more about what you need. 32 -Don't worry. 9 -Don't worry about that problem, we'll sort it out. 39 -I'll be happy to assist you. 21 -Let's look at how we can fix these things. 32 -Here's what you can do to sir. 22 -Thank you! I hope you enjoy the rest of your weekend. 41 +Dont worry. 9 +Dont worry about that problem, well sort it out. 39 +Ill be happy to assist you. 21 +Lets look at how we can fix these things. 32 +Heres what you can do to sir. 22 +Thank you I hope you enjoy the rest of your weekend. 41 I want to give you the best solution. 29 Please, give me a second and let me see what can I do. 41 We absolutely understand and want to help. 35 -We're glad to reached out! 20 -Would you like to transfer directly to our manager? 42 -May I suggest reaching out to our support agent directly? 47 -I'm transferring you right now, please bear with us for one moment! 54 +Were glad to reached out 20 +Would you like to transfer directly to our manager 42 +May I suggest reaching out to our support agent directly 47 +Im transferring you right now, please bear with us for one moment 54 Yes, jack is available to chat if you prefer to speak with him. 50 If you can do this, that will fix your issue. 35 We recommend that you need to contact our manager. 41 Do you prefer to be called Mr. Smith. 28 -What I will do for you now? 20 -We'll investigate this issue immediately Mr. smith. 42 +What I will do for you now 20 +Well investigate this issue immediately Mr. smith. 42 And get straight back to you, sir. 27 This will be fixed for you, sir. 25 -We'll look into this for you right away, sir. 35 +Well look into this for you right away, sir. 35 I can see where the problem is, sir. 28 -Let's see what we can do to fix this solution, sir. 39 -What I'm doing for you right now? 25 -That's now been done, sir. 20 +Lets see what we can do to fix this solution, sir. 39 +What Im doing for you right now 25 +Thats now been done, sir. 20 This will be fixed by the end of the weekend, sir. 39 -We'll give you a call as soon as when we've had an update on your complaint. 58 -I'll sort that for you immediately. 28 -What's the weather like where you are today? 35 -I'm sorry to hear that you feel this way Mr. smith. 38 -I'd like to call you back to give an update. 33 -Can you tell me, when would be the best time to reach you? 45 +Well give you a call as soon as when weve had an update on your complaint. 58 +Ill sort that for you immediately. 28 +Whats the weather like where you are today 35 +Im sorry to hear that you feel this way Mr. smith. 38 +Id like to call you back to give an update. 33 +Can you tell me, when would be the best time to reach you 45 I completely understand how you feel Mr. smith. 38 I fully appreciate the inconvenience this has caused you. 48 Thank you for your understand Mr. smith. 32 -Mr. smith we're doing everything. 26 +Mr. smith were doing everything. 26 We can resolve your problem quickly. 30 Thanks for calling Mr. smith, your feedback is extremely valuable. 55 -Please, don't hesitate to call us again. 32 -I'm very please that we've been able to help you today Mr. smith. 49 -If you have any questions, don't hesitate. 34 +Please, dont hesitate to call us again. 32 +Im very please that weve been able to help you today Mr. smith. 49 +If you have any questions, dont hesitate. 34 Please, call again if you need help. 29 -It's great that we've answered your questions today. 42 +Its great that weve answered your questions today. 42 Thanks for calling. have a wonderful day. 33 We thought you might be interested to hear our company. 45 -That's true, sir. 13 -I can assure you that we haven't unriddled this problem. 45 -I'm throwing in a discount, just for you. 32 +Thats true, sir. 13 +I can assure you that we havent unriddled this problem. 45 +Im throwing in a discount, just for you. 32 We can certainly do that for you, sir. 30 -I'm sorry to bother you, sir. 22 +Im sorry to bother you, sir. 22 I thought you would be interested to know that it. 40 -When would be a suitable start date, Mrs. joe? 36 -Let's move forward and discuss your problem. 36 -Let's see if we can put together a package that's perfect for you. 51 +When would be a suitable start date, Mrs. joe 36 +Lets move forward and discuss your problem. 36 +Lets see if we can put together a package thats perfect for you. 51 My name is Joe. 11 -This won't take long. 16 -Great, great! 11 +This wont take long. 16 +Great, great 11 Just for a moment, sir. 18 They are in your area. 17 You need to. 9 Guaranteed, sir. 14 Maybe, later, sir. 15 -I'll share your feedback with our department. 37 +Ill share your feedback with our department. 37 For questions about your problem, so contact us. 40 We regret any inconvenience this may have caused. 41 Our records show something different. 32 @@ -11075,394 +11075,394 @@ How this problem must have been frustrating for you. 43 Let me direct you to the page on the website. 35 That site gives you the information. 30 Let me ping your link information. 28 -I'm sorry that you've had contact with us. 32 -I'll raise the issue with the team. 27 -To ensure that this doesn't happen again in the future. 44 -Can you tell me a little more about it, please? 37 +Im sorry that youve had contact with us. 32 +Ill raise the issue with the team. 27 +To ensure that this doesnt happen again in the future. 44 +Can you tell me a little more about it, please 37 Please contact us if you have any questions. 36 -Your policy doesn't cover that scale. 30 +Your policy doesnt cover that scale. 30 I can check if we can offer that to you. 30 -The item is out of stock. would you like me to pre-order? 43 -I'm sorry it's not arrived yet. let me check with the courier. 47 -I'm sorry that I can't offer you a refund. 31 -Would you like to try our new product? 30 +The item is out of stock. would you like me to preorder 43 +Im sorry its not arrived yet. let me check with the courier. 47 +Im sorry that I cant offer you a refund. 31 +Would you like to try our new product 30 You can consider as good it be. 24 -I think you'll find it's much easier if you do this service. 46 -I don't know, but let me find out. 25 +I think youll find its much easier if you do this service. 46 +I dont know, but let me find out. 25 Thank you for bringing this to our attention. 37 I certainly can check that for you. 28 -I'm really sorry for the inconvenience. 32 -I'm appealing for the inconvenience. 30 +Im really sorry for the inconvenience. 32 +Im appealing for the inconvenience. 30 I apologize for the inconvenience. 29 -I'll update you by tomorrow. 22 +Ill update you by tomorrow. 22 Happy to help. 11 As much as I would love to help you. 27 -Can you please provide me with your order number? 40 -Can you please check the status of your package? 39 +Can you please provide me with your order number 40 +Can you please check the status of your package 39 Just to clarify, you have already ordered your package. 46 -Just to clarify, you have to waiting to receive it, is that correct? 55 -So what I'm hearing is that there is a problem with shipping. 48 -Are you saying that we failed to deliver on time? 39 -I'm sorry, I don't understand. 23 -Can you please rephrase the question? 31 +Just to clarify, you have to waiting to receive it, is that correct 55 +So what Im hearing is that there is a problem with shipping. 48 +Are you saying that we failed to deliver on time 39 +Im sorry, I dont understand. 23 +Can you please rephrase the question 31 I completely understand how you feeling sir. 37 I can definitely help with that problem. 33 I assure you, we most certainly will sort it out in this situation. 54 -Fantastic! I'm so glad to be of help to you. 32 +Fantastic Im so glad to be of help to you. 32 As soon as you receive your email, today. 33 -Great to meet you, how can I assist you today? 36 +Great to meet you, how can I assist you today 36 Please clarify your request. 24 You can pick up your product next week. 31 Please recheck the enclosed statement. 33 -You'll receive your order as soon as we receive the shipment. 49 +Youll receive your order as soon as we receive the shipment. 49 Although, I do normally handle that. 30 -While I'm unable to represent it. what I can do is going to have a consult with my senior. 69 -What we can do is to solve this situation? 33 -Would you mind? can I ask you your name? 30 +While Im unable to represent it. what I can do is going to have a consult with my senior. 69 +What we can do is to solve this situation 33 +Would you mind can I ask you your name 30 Let me find out for you. 18 -That may be challenging, but let's discuss some options. 46 +That may be challenging, but lets discuss some options. 46 That sucks so badly. 16 -You don't deserve that. 18 -That is terrible! 14 -We are sorry for giving you a bad service! 33 +You dont deserve that. 18 +That is terrible 14 +We are sorry for giving you a bad service 33 It must be awful to be you right now. 28 -I'm going to take care of this for you. 29 -I assure you, ma'am. 15 -I understand where you're coming from. 31 +Im going to take care of this for you. 29 +I assure you, maam. 15 +I understand where youre coming from. 31 Let me find that out for you. 22 Let me forward you to our specialist. 30 -What can I do to make your experience with us better? 42 -What would be the best-case scenario for you? 36 -Is there anything else, that I can help you with today? 44 -How do you feel about our service? 27 -Are your needs being met with our service? 34 -If I'm understanding you correctly then you should follow our policy. 57 -Did you mean to tell me that? 22 -Let me know if I'm getting the story right. 33 -What you are saying is that you do not deal with us? 40 +What can I do to make your experience with us better 42 +What would be the bestcase scenario for you 36 +Is there anything else, that I can help you with today 44 +How do you feel about our service 27 +Are your needs being met with our service 34 +If Im understanding you correctly then you should follow our policy. 57 +Did you mean to tell me that 22 +Let me know if Im getting the story right. 33 +What you are saying is that you do not deal with us 40 Thanks for waiting this out. 23 -I'd love to help you with that. 23 +Id love to help you with that. 23 Give me just a minute while I figure this out for you. 42 -That's awesome. 12 +Thats awesome. 12 I can fix that. 11 -Could I please take your telephone number? 35 -That's would be fantastic, thanks! 28 -Is there anything I can do for you today? 32 -You're absolutely correct sir. 25 +Could I please take your telephone number 35 +Thats would be fantastic, thanks 28 +Is there anything I can do for you today 32 +Youre absolutely correct sir. 25 I want to make sure that. 19 -I really have an understanding of what you're telling me. 46 -I'm hearing that you're sad. 21 -What can I currently do to help you? 28 -I'll make sure. 11 +I really have an understanding of what youre telling me. 46 +Im hearing that youre sad. 21 +What can I currently do to help you 28 +Ill make sure. 11 Get this sorted for you. 19 -I'm so sorry that happened to you. 26 -I'm sorry to hear that. I can imagine that must be frustrating. 49 -That's terrible! 13 +Im so sorry that happened to you. 26 +Im sorry to hear that. I can imagine that must be frustrating. 49 +Thats terrible 13 I can understand the times are very difficult. 38 -Let's see what we can do for you. 24 -With your refundable problem, right? 31 +Lets see what we can do for you. 24 +With your refundable problem, right 31 I can understand how you feel. 24 -We'll work for you. 14 -I'll do my best to fix this situation. 29 +Well work for you. 14 +Ill do my best to fix this situation. 29 You must be feeling pretty frustrated, sir. 36 I definitely know that could be frustrating. 37 I can understand that must make you feel upset. 38 I apologize that this happened. 26 -I'd like to help you if I can. 21 -It sounds like you're having a hard time. 32 -I can't tell you how sorry I'm that this happened to you. 43 +Id like to help you if I can. 21 +It sounds like youre having a hard time. 32 +I cant tell you how sorry Im that this happened to you. 43 This must be difficult time. 23 -I'm sure it's not that bad! 19 -I'll do that right away. 18 -I do understand, I'll do that now. 26 -I'll contact you as soon as we have had an update. 38 -It's a good day today at the bank of wealth, how can I help you? 48 -I'll be glad to help you. 18 -May I please get your account number and the name? 40 +Im sure its not that bad 19 +Ill do that right away. 18 +I do understand, Ill do that now. 26 +Ill contact you as soon as we have had an update. 38 +Its a good day today at the bank of wealth, how can I help you 48 +Ill be glad to help you. 18 +May I please get your account number and the name 40 Thank you, let me just check on it. 27 -Okay, can you please verify the last number of your security id? 52 -Is there anything else that I could assist you with? 42 +Okay, can you please verify the last number of your security id 52 +Is there anything else that I could assist you with 42 If we do the transaction online, our team will still contact you. 53 -You're very much welcome. 20 -You have a great day! 16 -Thank you for calling the bank of wealth, goodbye! 41 -This is mike of the loco, what would you like to order? 43 -Thank you, so, that is regular supreme food, right? 42 -Is that right? 11 -Got it. would you like to add extra orders? 33 -Alright, it's gonna be right in front of your door, within 30 min. 52 -Thanks for calling, mike of the loco! 30 -Have a great night! 15 +Youre very much welcome. 20 +You have a great day 16 +Thank you for calling the bank of wealth, goodbye 41 +This is mike of the loco, what would you like to order 43 +Thank you, so, that is regular supreme food, right 42 +Is that right 11 +Got it. would you like to add extra orders 33 +Alright, its gonna be right in front of your door, within 30 min. 52 +Thanks for calling, mike of the loco 30 +Have a great night 15 Sorry for the inconvenience sir. 27 -May I have your account number, please? 32 -For verification purposes, can I get your name? 39 -For verification purpose, can I get your birth date? 43 +May I have your account number, please 32 +For verification purposes, can I get your name 39 +For verification purpose, can I get your birth date 43 Thank you for that information sir. 29 Delays in the bill caused by delays in our courier services. 49 For more updates, you can visit our website. 36 -Will, there is anything else that you need sir? 38 -Thanks for calling. we're glad to assist you. 35 +Will, there is anything else that you need sir 38 +Thanks for calling. were glad to assist you. 35 Am i speaking with mr. smith. 22 Good afternoon sir. 16 Good morning sir. 14 Hello, our company launched a very attractive card. 43 -Can I just take 5 minutes of your precious time to explain it to you? 54 -Yes, sir, I'm 100% sure. 17 +Can I just take 5 minutes of your precious time to explain it to you 54 +Yes, sir, Im 100 sure. 17 Sir, you just have to give a copy of your documents. 41 Thanks, sir. our agent will come to your place tomorrow. 45 -May I know the convenient time when you would be available? 48 +May I know the convenient time when you would be available 48 Ok, sir. thank you very much. have a nice day. 34 Good afternoon. tata network solutions. 33 Okay. let me gather some information and see if we can help. 47 -What is your first name? 19 -Would you spell it for me, please? 27 -Okay. and your company name? 22 -Okay and your call back number? 25 -Okay. and what seems to be a problem today? 33 -Okay, and what type of system do you have? 33 -Are you able to log on to the system? 28 +What is your first name 19 +Would you spell it for me, please 27 +Okay. and your company name 22 +Okay and your call back number 25 +Okay. and what seems to be a problem today 33 +Okay, and what type of system do you have 33 +Are you able to log on to the system 28 Okay, great. in the meantime, see if you can reach out to the system. 54 Let them know your issue. 20 And randy should be calling you back shortly. 37 -You're welcome. thank you. take care. goodbye. 35 +Youre welcome. thank you. take care. goodbye. 35 If I were in your position, I would feel the same. 39 That would be frustrate me, too. 26 I would be asking the same questions as you are. 38 -You're totally right. 17 +Youre totally right. 17 I would come to the same conclusion. 29 I can see why you feel that way. 24 That must be very upsetting. 23 I understanding how frustrating this must be. 38 -I'm sorry about this. 16 +Im sorry about this. 16 I want to thank you for taking the time with me today. 42 -What about this is the hardest for you to talk about? 42 +What about this is the hardest for you to talk about 42 I see you have a lot of feelings about what might happen. 45 -I want to do my best to make sure I'm following your goals. 45 +I want to do my best to make sure Im following your goals. 45 I appreciate how hard this is for you. tell me about it. 43 I can see how important this is to you. 30 I understand this can be frustrating. 31 I know this process can be confusing. 30 -I'm sorry to see that you're in this situation. 36 -Let's see if we can solve this together. 31 +Im sorry to see that youre in this situation. 36 +Lets see if we can solve this together. 31 It sounds like you are having a hard time. 33 -I'm really sorry to hear that. 23 -I can tell you how sorry I'm, that this happened with you. 45 +Im really sorry to hear that. 23 +I can tell you how sorry Im, that this happened with you. 45 This must be a difficult time. 24 I definitely will make sure that it gets sorted out. 42 -You're welcome, and thanks for calling. 32 -Do you mind if I place you on a brief hold? 32 +Youre welcome, and thanks for calling. 32 +Do you mind if I place you on a brief hold 32 And wait for their response before putting the call on hold. 49 I will find out the answer for you. 27 -Can I email you where that is located on our website? 42 +Can I email you where that is located on our website 42 I wish I could. 11 -We will need to sort out this situation, quickly! 40 +We will need to sort out this situation, quickly 40 One moment please while I check on that for you. 38 I would be happy to assist you. 24 -I'm happy to take a look at your perfect information. 42 +Im happy to take a look at your perfect information. 42 While my computer is loading, let me tell you your issues. 47 Please allow me to connect you to the correct person. 43 You would want to. 14 You could. 8 -You've reached our department. I would happy to connect with you. 52 -She is not available at the moment, can I take a message? 45 +Youve reached our department. I would happy to connect with you. 52 +She is not available at the moment, can I take a message 45 She will call you back as soon as possible. 34 -Let's see what we can do. 18 -It's my pleasure. 13 -I'd be happy to recommend it. 22 +Lets see what we can do. 18 +Its my pleasure. 13 +Id be happy to recommend it. 22 Thanks for choosing us. 19 -I'll find a solution. 16 -What is more convenient for you? 26 +Ill find a solution. 16 +What is more convenient for you 26 You made my day. 12 -How can we make this right? 21 +How can we make this right 21 I completely agree with you. 23 -I'm on it! 6 -We'll figure this out. 17 -Would you please excuse me for a moment? 32 -I'll be happy to help you shortly. 26 -That's a great suggestion. 21 +Im on it 6 +Well figure this out. 17 +Would you please excuse me for a moment 32 +Ill be happy to help you shortly. 26 +Thats a great suggestion. 21 Let me see how I can meet your need. 27 I understand your request. 22 Let me contact Karan, who can better help you with that. 45 -I'm going to find out the answer to your question. 39 -I'm happy to help you with that. 24 -I'll finish helping with your problem within the weekend. 47 -Here's how I can help you right now? 27 -Thanks for emailing, I'm sorry that you're having trouble. 47 +Im going to find out the answer to your question. 39 +Im happy to help you with that. 24 +Ill finish helping with your problem within the weekend. 47 +Heres how I can help you right now 27 +Thanks for emailing, Im sorry that youre having trouble. 47 Thanks for writing back. that makes a lot of sense. 40 Thanks for sharing those insights. 29 Thanks again for your patience here. 30 -I totally hear you that what you're saying. 34 -It's one of my least favorite things about shopping! 42 +I totally hear you that what youre saying. 34 +Its one of my least favorite things about shopping 42 I know that can be a total bummer. 26 I can definitely see how that would be frustrating. 42 I know it can be tricky. 18 Please reach out if anything else comes up. 35 Let us know if you run into any other trouble. 36 -I'm glad that helped! if you have any concerns. 36 +Im glad that helped if you have any concerns. 36 Thank you for calling sir. 21 Ok, Sir you are in the right place. 27 Yes, Sir I can help you with that. 26 Ok sir, please hold for a moment. 26 Have a great rest of the day sir. 25 Hello, good morning. 17 -How can I assist you? 16 -I'm afraid I didn't hear what you said. 29 -Could you speak a little louder, please? 33 -Will there be anything else? 23 -I can help you with today? 20 +How can I assist you 16 +Im afraid I didnt hear what you said. 29 +Could you speak a little louder, please 33 +Will there be anything else 23 +I can help you with today 20 Have a nice day. 12 -May I have your email, please? 24 -How many boxes would you like? 24 -How would you like to pay? 20 -How will you be paying today? 23 +May I have your email, please 24 +How many boxes would you like 24 +How would you like to pay 20 +How will you be paying today 23 I can help you out. 14 -But first, I'll ask you for some personal information. 44 -It's for your security purpose, sir. 29 -Can I ask for your personal info, sir? 30 -Can I please have your first and last name? 34 -May I please have your account number? 31 +But first, Ill ask you for some personal information. 44 +Its for your security purpose, sir. 29 +Can I ask for your personal info, sir 30 +Can I please have your first and last name 34 +May I please have your account number 31 Your account would be needed for refund purposes. 41 -Could I please have your date of birth? 31 +Could I please have your date of birth 31 Last question sir. 15 Sir, could you please provide the last 4 digits of your SSN. 48 Ok, sir I will activate your account. 30 -I'll provide the needed information, sir. 34 +Ill provide the needed information, sir. 34 Your account has been activated, sir. 31 -Is there anything else I can do for you, sir? 35 -Sure, what do you need? 18 -Could you please your registered phone number? 39 +Is there anything else I can do for you, sir 35 +Sure, what do you need 18 +Could you please your registered phone number 39 Just bear with me for a moment. 24 It seems to me that you have a billing error. 35 -I'm pulling up your bill, sir. 23 +Im pulling up your bill, sir. 23 Hello, agent jack speaking here. 27 Just hold on for a second. 20 Just bear with me for a second. 24 -Please stay on the line while I'm checking. 34 -Please stay on the line while I'm transferring you to the manager. 53 -I'll put you through to the accounting section. 38 -Just stay online, please! 21 -Would you like to leave a message for that person? 40 -I'm sorry for keeping you waiting. 27 -Would you like to speak with the manager? 33 -Is there anything else I can help you with? 34 -I'm sorry that you feel this way, sir. 29 -May I suggest that? 15 +Please stay on the line while Im checking. 34 +Please stay on the line while Im transferring you to the manager. 53 +Ill put you through to the accounting section. 38 +Just stay online, please 21 +Would you like to leave a message for that person 40 +Im sorry for keeping you waiting. 27 +Would you like to speak with the manager 33 +Is there anything else I can help you with 34 +Im sorry that you feel this way, sir. 29 +May I suggest that 15 We really do appreciate this feedback, sir. 36 -May I arrange for an update call? 26 -What time most convenient for you sir? 31 +May I arrange for an update call 26 +What time most convenient for you sir 31 Tell me exactly what happened. 25 I would feel the same way. 20 -I'm sorry this happened. 19 -So, if I'm understanding you correctly, your system has been going down. 59 -I'll do everything I can. 19 +Im sorry this happened. 19 +So, if Im understanding you correctly, your system has been going down. 59 +Ill do everything I can. 19 First, I need you to talk calmly. 26 Thank you so much for letting us know about this, sir. 43 -I'm sorry to hear about this, Mrs. brown. 31 +Im sorry to hear about this, Mrs. brown. 31 I can completely understand how you feel, sir. 38 Thank you so much for your patience, sir. 33 Thank you so much for your understanding, sir. 38 I will action this for you right away sir. 33 I truly understand your concern, sir. 31 -But we can't tolerate this language you're using right now. 47 +But we cant tolerate this language youre using right now. 47 I totally understand you, sir. 25 -I'm going to do my very best to help you, sir. 34 +Im going to do my very best to help you, sir. 34 You seem very upset sir. 19 -Would you prefer to continue this conversation? 40 -Would you like to continue this conversation through the mail? 52 -Would you like us to call you back when you feel calmer? 44 -But if you continue to use this language, I'll cut the call. 47 -Make sure, sir, I'll be forced to end this call. 37 -Would you prefer to continue or not? 29 -But we can't bear your language. 25 -I do understand the inconvenience you've faced, sir. 43 +Would you prefer to continue this conversation 40 +Would you like to continue this conversation through the mail 52 +Would you like us to call you back when you feel calmer 44 +But if you continue to use this language, Ill cut the call. 47 +Make sure, sir, Ill be forced to end this call. 37 +Would you prefer to continue or not 29 +But we cant bear your language. 25 +I do understand the inconvenience youve faced, sir. 43 Let me see how I can fix this, sir. 26 I recommend that you, sir. 21 I am more than happy to help you, sir. 29 For the quickest resolution, I would request you to. 43 So that I can take further action without delay. 39 -I'm sorry for this trouble. 21 +Im sorry for this trouble. 21 Please tell me more about your problem. 32 -I can understand why you'd be upset. 28 -This is important - to both you and me. 29 +I can understand why youd be upset. 28 +This is important to both you and me. 29 Let me see if I have this right. 24 -Let's work together to find a solution. 31 -Here's what I'm going to do for you. 26 -What can we do to resolve this now? 27 +Lets work together to find a solution. 31 +Heres what Im going to do for you. 26 +What can we do to resolve this now 27 I want to take care of this for you. 27 I want to take care of this for you immediately. 38 -Do you think this solution would work for you? 37 -What I'll do right now is to solve your problem. 37 -As an immediate solution, I'd like to suggest... 37 -You've come to the right place to get this resolved. 41 -What would you consider a fair? 25 -What would you consider a reasonable solution? 39 -Ok, let's get you in better shape. 26 -I'm more than happy to help you with this. 32 -If I can't take care of this, I know who can. 33 -I hear what you're saying, and I know how to help. 38 +Do you think this solution would work for you 37 +What Ill do right now is to solve your problem. 37 +As an immediate solution, Id like to suggest... 37 +Youve come to the right place to get this resolved. 41 +What would you consider a fair 25 +What would you consider a reasonable solution 39 +Ok, lets get you in better shape. 26 +Im more than happy to help you with this. 32 +If I cant take care of this, I know who can. 33 +I hear what youre saying, and I know how to help. 38 You have a right to be upset. 22 -Sometimes we fail, and this time I'm here. 33 -Sometimes we fail, and now I'm ready to help. 35 -If I were in your shoes, I'd feel the same way. 35 -You're right, and we need to do something immediately. 44 +Sometimes we fail, and this time Im here. 33 +Sometimes we fail, and now Im ready to help. 35 +If I were in your shoes, Id feel the same way. 35 +Youre right, and we need to do something immediately. 44 Thank you for bringing this to my attention. 36 Thank you for being straight with me. 30 Thank you for your patience with us. 29 Thank you for your loyalty to us. 26 Thank you for your trust in us even when things go wrong. 45 -I assure you I'll try my best. 22 -If I can't take care of this, I'll find out who can. 38 +I assure you Ill try my best. 22 +If I cant take care of this, Ill find out who can. 38 Thank you so much for bearing with me. 30 Thanks for being straight with me. 28 Sometimes we fail. 15 You have the right to be angry. 24 -You're right. 10 +Youre right. 10 That must have been frustrating. 27 -Would you mind if I write this down? 28 -I'm going to do my best to help you. 26 -Have I done something personally to upset you? 38 -What could you have done better? 26 +Would you mind if I write this down 28 +Im going to do my best to help you. 26 +Have I done something personally to upset you 38 +What could you have done better 26 I understand your trouble. 22 -I'll certainly try my best to set things right. 37 -If I can't resolve your concerns, I'll surely find someone who can. 53 -Here's what has worked in situations like yours. 39 +Ill certainly try my best to set things right. 37 +If I cant resolve your concerns, Ill surely find someone who can. 53 +Heres what has worked in situations like yours. 39 For a speedy resolution, I would request you to... 39 This is what I can do to help you. 25 -I'm grateful for your patience. 25 +Im grateful for your patience. 25 Thank you for giving me a chance to fix this. 35 Thank you for getting in touch. 25 I would feel frustrated by that too. 29 -Have I done something to offend you? 29 -I completely understand where you're coming from? 41 -Why you would want that? 19 -However, we can't accommodate this at this time. 39 -As much as I'd love to help. 20 -As much as I'd like to help, but what we're able to do right now? 48 -I'd like to help, that's beyond what to do now? 35 -I recognize this isn't exactly the outcome you were looking for. 52 -I'll take your feedback to my team. 27 -I've recorded your feedback for my team. 32 -We'll follow up with you if a solution becomes available. 46 -I'm confident this is the solution you're looking for. 43 +Have I done something to offend you 29 +I completely understand where youre coming from 41 +Why you would want that 19 +However, we cant accommodate this at this time. 39 +As much as Id love to help. 20 +As much as Id like to help, but what were able to do right now 48 +Id like to help, thats beyond what to do now 35 +I recognize this isnt exactly the outcome you were looking for. 52 +Ill take your feedback to my team. 27 +Ive recorded your feedback for my team. 32 +Well follow up with you if a solution becomes available. 46 +Im confident this is the solution youre looking for. 43 Let me just put you on a brief hold. 27 Let me just put you on a hold to confirm with a colleague. 45 This seems to be some unusual behavior from this product. 47 -Mind, if I put you on a quick hold? 26 +Mind, if I put you on a quick hold 26 Let me put you on a quick hold to dive into this. 37 I have a solution for this issue. 26 -It's going to take me a little time to set things up. 40 -Mind if I put you on hold for a moment? 29 -I'm sorry to keep you waiting. 23 -How may I help you? 14 -Will you mind it? 13 -I'll do this. 9 -Can you tell me about the difficulty? 30 -Will you do this procedure? 22 -What have you considered? 21 +Its going to take me a little time to set things up. 40 +Mind if I put you on hold for a moment 29 +Im sorry to keep you waiting. 23 +How may I help you 14 +Will you mind it 13 +Ill do this. 9 +Can you tell me about the difficulty 30 +Will you do this procedure 22 +What have you considered 21 It works well. 11 It works well when you use it. 23 -It may not work well if you don't follow it. 33 -You're not listening. let me say it again. 32 +It may not work well if you dont follow it. 33 +Youre not listening. let me say it again. 32 I know that must have been difficult for you. 36 The situation must have seemed perplexing. 36 Yes, there are a lot of words in the bylaws. 34 @@ -11470,342 +11470,342 @@ Websites can be difficult to navigate. 32 I can see how you were confused. 25 The industry language can be confusing. 33 Start from the beginning and tell me what happened. 42 -When exactly did this happen? 24 -Can I see the notice? 16 +When exactly did this happen 24 +Can I see the notice 16 The specific wording will help me understand the situation. 50 -What did you say afterward? 22 -Do you have any papers that record this information? 43 -I see you've been with us for 4 years. that's a long time! 42 +What did you say afterward 22 +Do you have any papers that record this information 43 +I see youve been with us for 4 years. thats a long time 42 I want to thank you for taking the time to speak with me. 44 That would frustrate me, too. 24 I would be asking the same question you are. 35 -You are totally right! 18 -I'll find out the answer for you. 25 -I'll check and be right back. 22 +You are totally right 18 +Ill find out the answer for you. 25 +Ill check and be right back. 22 I completely understand your concerns. 33 -I'm sorry for such a big inconvenience sir. 34 -Yeah...I'm sorry. could you spell out your name? 35 +Im sorry for such a big inconvenience sir. 34 +Yeah...Im sorry. could you spell out your name 35 Thank you for that information, sir. 30 -Will there be anything else that you need sir? 37 +Will there be anything else that you need sir 37 Sounds fair enough. 16 Yes, this is customer support. 25 -Oh? I am sorry to hear that. 20 -Could you tell me your order number, please? 36 +Oh I am sorry to hear that. 20 +Could you tell me your order number, please 36 Just let me verify this order number. 30 Thank you for waiting, sir. 22 -Now, could you tell me what the problem is? 34 +Now, could you tell me what the problem is 34 Ok, sir. just to rule out this possibility. 34 -May I ask you if other devices are working properly? 42 +May I ask you if other devices are working properly 42 I understand your situation. 24 -Let me tell you what I could do for you? 30 +Let me tell you what I could do for you 30 Please, calm down and stop yelling at me. 33 Ohh, sorry, sir. my mistake. 22 -I'll discuss your feedback with my supervisor. 38 -We're so glad to hear your valuable feedback sir. 39 -What's your emergency, sir? 22 +Ill discuss your feedback with my supervisor. 38 +Were so glad to hear your valuable feedback sir. 39 +Whats your emergency, sir 22 Sir, please, calm down, ok. 22 -Sir, if you scream, I won't able to understand. 37 -I won't able to understand what you are saying, sir. 41 +Sir, if you scream, I wont able to understand. 37 +I wont able to understand what you are saying, sir. 41 This is very important, sir. 23 So we can alert the authorities right away. 35 -You're doing a great job! 19 -Ok, don't worry, sir. 16 -I'm reporting as we speak sir. 23 -And, what is your name? 18 +Youre doing a great job 19 +Ok, dont worry, sir. 16 +Im reporting as we speak sir. 23 +And, what is your name 18 Ok, we can have it in our records. 26 Ok. I got it. thank you, sir. 20 -Stay with me on the phone sir, ok? 26 +Stay with me on the phone sir, ok 26 I already alerted the authorities. 29 -And they are now on their way! 23 -At what time did it happen? 21 -Don't worry, sir. 13 +And they are now on their way 23 +At what time did it happen 21 +Dont worry, sir. 13 They will take care of that alright. 29 -Gnarly, ok? 9 +Gnarly, ok 9 Sir, unfortunately, joe is off today. 31 -He's out of the office. 17 +Hes out of the office. 17 So I can take care of this. 20 We appreciate your loyalty to our store. 33 -I'm terribly sorry about that. 24 -I can't believe our warehouse could ship a damaged. 41 +Im terribly sorry about that. 24 +I cant believe our warehouse could ship a damaged. 41 I do believe you, sir. 17 -I'm so sorry about this situation. 27 -I didn't mean that you were not telling me the truth. 41 +Im so sorry about this situation. 27 +I didnt mean that you were not telling me the truth. 41 I was surprised that we did that. 26 -Do you have your sales receipt by any chance? 36 -Yes, sir. we'll take care of it for you. 29 -I'm sure we can fix the problem. 24 -How could I be of help today? 22 +Do you have your sales receipt by any chance 36 +Yes, sir. well take care of it for you. 29 +Im sure we can fix the problem. 24 +How could I be of help today 22 Well, first and foremost thanks for the info. 37 -I'll try my best to help you out. 24 +Ill try my best to help you out. 24 So please let me know. 17 -What can I do for you? 16 -Once again I'll try my best to get this matter. 36 -I'll try my best to get this straightened out. 36 -I'm pretty sure. 12 -We'll be able to resolve this matter once. 33 +What can I do for you 16 +Once again Ill try my best to get this matter. 36 +Ill try my best to get this straightened out. 36 +Im pretty sure. 12 +Well be able to resolve this matter once. 33 Star hotel reservations, this is Jack speaking. 40 -How may I assist you at this time? 26 -Pardon me, sir, what was that? 24 -Well, I'm not grasping anything. 26 -What are you asking for? 19 -Well, sir, our company's main mission is to serve all customers. 52 -However, I'm unable to comprehend. 28 -I'm here to try to get this matter straightened out. 41 +How may I assist you at this time 26 +Pardon me, sir, what was that 24 +Well, Im not grasping anything. 26 +What are you asking for 19 +Well, sir, our companys main mission is to serve all customers. 52 +However, Im unable to comprehend. 28 +Im here to try to get this matter straightened out. 41 We are going to need your personal data. 32 So that we can sift your info in our database. 36 And see what happened. 18 -I'm sorry indeed sir. 16 -Could you spell that out for me? 25 +Im sorry indeed sir. 16 +Could you spell that out for me 25 Okay, I got it now. 14 -Ok, sir. I'm gonna put you on hold. 25 +Ok, sir. Im gonna put you on hold. 25 So please stay on the line. 21 -We'll be back in a jiffy. 18 +Well be back in a jiffy. 18 So it looks your name is not registered in the database. 45 -I'll let you know about it though. 26 +Ill let you know about it though. 26 I apologize for the long delay. 25 I just queried your name on our database. 33 Also pinpointed your issues. 24 -For which days do you need the reservation? 35 +For which days do you need the reservation 35 Perhaps we can reserve a room for you. 30 Well, sir, our room rates have recently gone up. 39 However, we can offer you a special discount. 37 Ohh, ok. Just give me one moment. 25 Hey, Jack I need your help with a Portuguese speaker. 43 -Because as you already know I don't know any other language. 48 +Because as you already know I dont know any other language. 48 So perhaps you can help me out jack. 28 -I don't wanna burden with my stuff. 27 +I dont wanna burden with my stuff. 27 But I do really need your help. 24 -Ok. I'm gonna add you to the call. 24 +Ok. Im gonna add you to the call. 24 Just give me a second. 17 Okay, you can speak. 16 Ok, I got it. 9 But this has nothing to do with our software. 36 Thank you so much for your help. 25 Alright, goodbye. 15 -I'll update you in the next two hours. 29 -It's my pleasure, sir. 17 +Ill update you in the next two hours. 29 +Its my pleasure, sir. 17 I would be delighted to help. 23 We will have to do some tests. 23 -I'd like to keep you here overnight for observation. 42 -We haven't made a diagnosis yet. 25 -Does it hurt when I press here? 24 +Id like to keep you here overnight for observation. 42 +We havent made a diagnosis yet. 25 +Does it hurt when I press here 24 I am going to prescribe you some antibiotics. 37 Show me your tongue. 16 -What's the problem? 15 -What are your symptoms? 19 +Whats the problem 15 +What are your symptoms 19 I want you to see a specialist. 24 I have a rash on my arm, and it is very itchy. 34 -That's a relief! 12 -I'd like to get a second opinion. 25 -Am I going to need surgery? 21 -What are my options for treatment? 28 +Thats a relief 12 +Id like to get a second opinion. 25 +Am I going to need surgery 21 +What are my options for treatment 28 I feel a sharp pain when I bend my knee. 30 My stomach hurts and I have lost my appetite. 36 I feel sick and painful. I feel hot and cold. 34 -I've been having difficulty sleeping. 31 +Ive been having difficulty sleeping. 31 I need a sick note. 14 -I'd like to see a doctor. 18 +Id like to see a doctor. 18 Please sit. 9 -I'd like to make an appointment to see dr. mike. 36 +Id like to make an appointment to see dr. mike. 36 The doctor will see you in a minute. 28 I think I might be pregnant. 22 I need a doctor. 12 The doctor would be waiting for you at his office. 40 -May I know when is the doctor available? 32 -What is the name of your hotel? 24 -What is your date of birth? 21 -How will you pay? 13 -Do you have a traveler's insurance? 28 -May I see your insurance card? 24 -Do you have an appointment? 22 -Do you have private medical insurance? 32 -Would you like to book an appointment? 31 -Can you please help me? 18 -Is it urgent? 10 +May I know when is the doctor available 32 +What is the name of your hotel 24 +What is your date of birth 21 +How will you pay 13 +Do you have a travelers insurance 28 +May I see your insurance card 24 +Do you have an appointment 22 +Do you have private medical insurance 32 +Would you like to book an appointment 31 +Can you please help me 18 +Is it urgent 10 I need another inhaler. 19 -I'm having difficulty breathing. 27 -I've got very little energy. 22 -I've been feeling very tired. 23 -I've been feeling depressed. 23 -I'm allergic to antibiotics. 23 +Im having difficulty breathing. 27 +Ive got very little energy. 22 +Ive been feeling very tired. 23 +Ive been feeling depressed. 23 +Im allergic to antibiotics. 23 I am epileptic. 12 -I've got a sprained ankle. 20 -I've got a pain in my waist. 20 +Ive got a sprained ankle. 20 +Ive got a pain in my waist. 20 I need another more insulin. 23 -Do you have any allergies? 21 -Can I have a look? 13 -Where does it hurt? 15 -I'm going to take your blood pressure. 30 -Could you roll up your sleeve? 24 +Do you have any allergies 21 +Can I have a look 13 +Where does it hurt 15 +Im going to take your blood pressure. 30 +Could you roll up your sleeve 24 Your blood pressure is quite low. 27 Your temperature is very high. 25 Open your mouth, please. 20 I am going to check your temperature. 30 I am going to check your heart rate. 28 -How have you been feeling generally? 30 -Is there any possibility you might be pregnant? 39 -You're going to need a few stitches. 28 -I'm going to give you an injection. 27 +How have you been feeling generally 30 +Is there any possibility you might be pregnant 39 +Youre going to need a few stitches. 28 +Im going to give you an injection. 27 We need to take a urine sample. 24 You need to have a blood test. 23 -I'm going to prescribe you some antibiotics. 36 +Im going to prescribe you some antibiotics. 36 Take two of these pills three times a day. 33 Take this prescription to the chemist. 32 You should stop smoking. 20 You should cut down on your drinking. 30 You need to try and lose some weight. 29 -I want to send you for an x-ray. 23 -Does it hurt when I touch here? 24 -Do you have any allergies to medication? 33 -How long have you been sick? 22 -How long have you been feeling this way? 32 +I want to send you for an xray. 23 +Does it hurt when I touch here 24 +Do you have any allergies to medication 33 +How long have you been sick 22 +How long have you been feeling this way 32 I am going to prescribe a medication for you. 36 Take this medicine. 16 -We'll check in a follow-up appointment. 31 +Well check in a followup appointment. 31 Hospitals have given medications for patients. 40 -Please come with me-it is an emergency. 31 -Is there a pharmacy nearby? 22 -Can I use your phone? 16 -Call the ambulance! 16 -Leave me alone! 12 +Please come with meit is an emergency. 31 +Is there a pharmacy nearby 22 +Can I use your phone 16 +Call the ambulance 16 +Leave me alone 12 Someone call 911, I am dying. 23 I have got a deep cut I need a doctor urgently. 36 -I need an ambulance, it's an emergency. 31 +I need an ambulance, its an emergency. 31 Describe your location when in an emergency. 37 Keep in touch with the hospital when in an emergency. 43 -My skin is itchy! I can't stop scratching! 32 -I've got a lump. 11 -I'm asthmatic. 11 -My arm is sore! 11 +My skin is itchy I cant stop scratching 32 +Ive got a lump. 11 +Im asthmatic. 11 +My arm is sore 11 I have got very little energy. 24 -I have a rash on my arm, and it's very itchy. 33 -My stomach hurts and I've lost my appetite. 34 -My neck is stiff and sore. I think I've pulled a muscle. 42 +I have a rash on my arm, and its very itchy. 33 +My stomach hurts and Ive lost my appetite. 34 +My neck is stiff and sore. I think Ive pulled a muscle. 42 I need you to fill the form. 21 -Where is my baby, I need to see my baby? 30 +Where is my baby, I need to see my baby 30 The cut is serious and deep. 22 I hope the medicine works. 21 I am sorry, but we have lost the patient. 32 -Hi, how are you? today you feel good? 28 +Hi, how are you today you feel good 28 Hello doctor, I am not feeling good today. 34 -What's wrong with you? 17 +Whats wrong with you 17 I have a fever and a cough. 20 -My throat is dry! 13 -I can't stop coughing! I'm also sneezing. 31 +My throat is dry 13 +I cant stop coughing Im also sneezing. 31 Let me take your temperature. 24 I am feeling giddy. 15 I think you have the flu. 19 Take this medicine twice a day. 25 Get some rest. drink a lot of water. 27 Thank you so much, doctor. 21 -I hope you feel better! 18 +I hope you feel better 18 Stay hydrated, it is summertime. 27 A spoonful of sugar helps the medicine go down. 38 An apple a day keeps the doctor away. 29 Consult your diary. 16 Day surgery. 10 -Do you like hospital food? 21 +Do you like hospital food 21 Just what the doctor ordered. 24 Laughter is the best medicine. 25 Take two aspirin and call me in the morning. 35 Taste of your own medicine. 22 Tell me the worst doctor. 20 -Doctor Livingstone I presume? 25 -Is there a doctor in the house? 24 -What to say at the doctor? 20 +Doctor Livingstone I presume 25 +Is there a doctor in the house 24 +What to say at the doctor 20 I have a doctor in my house. 21 I think you should see a doctor. 25 -You look very pale. shall I call the ambulance? 37 -I'm ill. I don't feel well. 18 -Where do i find the general physician's office? 38 -What are the consulting hours of the ear nose throat specialist? 53 -Do I have to make an appointment? 26 -I need a doctor urgently! 20 +You look very pale. shall I call the ambulance 37 +Im ill. I dont feel well. 18 +Where do i find the general physicians office 38 +What are the consulting hours of the ear nose throat specialist 53 +Do I have to make an appointment 26 +I need a doctor urgently 20 I need to book an appointment. 24 My ears are sore, I need to consult a doctor. 35 -My head hurts! what is wrong with me? 28 +My head hurts what is wrong with me 28 I have a cold for two weeks. 21 I have taken the appointment of 4 in the evening. 39 Let me take your pulse, please. 25 -I'll measure your blood pressure. 27 +Ill measure your blood pressure. 27 Your blood pressure is too low. 25 -Let me sound your back. take a deep breath. I'll check your lungs. 50 -Does it hurt here? breathe out slowly. 30 +Let me sound your back. take a deep breath. Ill check your lungs. 50 +Does it hurt here breathe out slowly. 30 Show me your tongue. poke out your tongue. 33 -Have you got any other symptoms? 26 -What infectious diseases have you had? 32 -Don't worry. there's no serious problem. 31 -I don't think it's too serious. 23 -You've got to be vaccinated against tetanus. 36 +Have you got any other symptoms 26 +What infectious diseases have you had 32 +Dont worry. theres no serious problem. 31 +I dont think its too serious. 23 +Youve got to be vaccinated against tetanus. 36 You must stay in bed. 16 Take this medicine three times a day, after meals. 41 -I'll dress the wound and put a plaster on your arm. 39 +Ill dress the wound and put a plaster on your arm. 39 You must follow a diet. 18 -You need to rest and you shouldn't worry. 32 +You need to rest and you shouldnt worry. 32 The blood test came back negative. 28 Your test results have come in. 25 The biopsy shows a tumor. 20 You should consult a specialist. 27 -We'll know more in a few days. 22 +Well know more in a few days. 22 It would be better if you went to the hospital. 37 -I think you'll have to stay in the hospital for a week. 42 -Hopefully, there won't be any complications. 37 -I don't think you need chemotherapy. 29 -I'll give you a prescription. 23 -You'll soon be well again. 20 -Come back next week if you don't feel better. 35 +I think youll have to stay in the hospital for a week. 42 +Hopefully, there wont be any complications. 37 +I dont think you need chemotherapy. 29 +Ill give you a prescription. 23 +Youll soon be well again. 20 +Come back next week if you dont feel better. 35 Take this medicine three times a day. 30 -Where's the pain? what do you complain of? 32 -Have you taken your temperature? 27 -For how long have you been feeling ill? 31 -Can I have a look? where does it hurt? 28 -What have you eaten? 16 -What have you drunk? 16 -Have you been injured? 18 -Do you have a headache? 18 -Are you on any sort of medication? 27 -How long have you been feeling like this? 33 -I've got a high temperature. 22 -I feel really rough. I'm shattered. 27 -Could you check my blood pressure? 28 -I've got high blood pressure. 23 -There's a sharp pain here. I've got a pain in my limbs. 40 -I feel dizzy. I've got a kidney problem. I've lost weight. 43 -I've got a stomach ache. 18 +Wheres the pain what do you complain of 32 +Have you taken your temperature 27 +For how long have you been feeling ill 31 +Can I have a look where does it hurt 28 +What have you eaten 16 +What have you drunk 16 +Have you been injured 18 +Do you have a headache 18 +Are you on any sort of medication 27 +How long have you been feeling like this 33 +Ive got a high temperature. 22 +I feel really rough. Im shattered. 27 +Could you check my blood pressure 28 +Ive got high blood pressure. 23 +Theres a sharp pain here. Ive got a pain in my limbs. 40 +I feel dizzy. Ive got a kidney problem. Ive lost weight. 43 +Ive got a stomach ache. 18 I always feel bad after meals. 24 -I've lost my appetite. 17 +Ive lost my appetite. 17 I have diarrhea. 13 -I've got circulation problems. 25 -My ears are buzzing. I've got an upset stomach. 36 -I've sprained my wrist. 18 +Ive got circulation problems. 25 +My ears are buzzing. Ive got an upset stomach. 36 +Ive sprained my wrist. 18 My hand is badly swollen. 20 -I think I've pulled a muscle in my leg. 29 -I've had scarlet fever, mumps, the measles. 35 -I've been feeling sick. 18 -I've been having headaches. 22 -I'm very congested. 15 +I think Ive pulled a muscle in my leg. 29 +Ive had scarlet fever, mumps, the measles. 35 +Ive been feeling sick. 18 +Ive been having headaches. 22 +Im very congested. 15 My joints are aching. 17 -I've got diarrhea. 14 -I've got a swollen. 14 -I'm in a lot of pain. 14 -I've got a pain in my back. 19 -Is it something serious? 20 -When will the test results come in? 28 -Are you going to run more tests? 25 -Will I need surgery? 16 -Do I have to be operated on? 21 -How long do I have to stay in the hospital? 33 -I hope there won't be any complications. 32 -Could you prescribe some medicine for me? 34 -How often should I take this medicine? 31 -Shall I come back next week if I don't get better? 38 -Is this a common problem at my age? 27 +Ive got diarrhea. 14 +Ive got a swollen. 14 +Im in a lot of pain. 14 +Ive got a pain in my back. 19 +Is it something serious 20 +When will the test results come in 28 +Are you going to run more tests 25 +Will I need surgery 16 +Do I have to be operated on 21 +How long do I have to stay in the hospital 33 +I hope there wont be any complications. 32 +Could you prescribe some medicine for me 34 +How often should I take this medicine 31 +Shall I come back next week if I dont get better 38 +Is this a common problem at my age 27 Let me check your mouth. 19 -I've got pain in my back teeth and my gum is bleeding. 41 +Ive got pain in my back teeth and my gum is bleeding. 41 My dentures broke. 15 -I've lost a filling. 15 -Can you please replace the filling? 29 -Does the tooth have to be extracted? 29 +Ive lost a filling. 15 +Can you please replace the filling 29 +Does the tooth have to be extracted 29 The gum seems to be dead. 19 We will have to operate you. 22 The root canal is the option we have. 29 @@ -11815,38 +11815,38 @@ There is tooth decay. 17 You need to brush your teeth after every meal. 37 The braces are new to the patient. 27 Anesthesia is given to the patient. 29 -I will suggest you have ice-cream as much as you can. 41 +I will suggest you have icecream as much as you can. 41 Keep the kids away from chocolate. 28 Let the milk teeth break and then come back to me. 39 -Has the toothache been constant or fluctuating? 40 +Has the toothache been constant or fluctuating 40 I have pain in the right side teeth from the end of the jaw. 46 -You've got another set of cavities. 28 +Youve got another set of cavities. 28 Taking good care of teeth is a good habit. 33 -I've been having some gum pain recently. 32 +Ive been having some gum pain recently. 32 Please recline and open your mouth. 29 There is some inflammation of the gums. 32 -We need to take x-rays to identify tooth other decay. 42 -Make sure that there isn't any between the teeth. 39 -I'll just get these two fillings drilled and taken care of. 47 +We need to take xrays to identify tooth other decay. 42 +Make sure that there isnt any between the teeth. 39 +Ill just get these two fillings drilled and taken care of. 47 It looks like you may have a few cavities as well. 39 -Would you make up this prescription for me? 35 +Would you make up this prescription for me 35 Shake well before use. not to be taken orally. 36 -Can I get a packet of vitamin tablets? 30 -I've got a temperature sore throat. 28 -My throat is dry! I can't stop coughing! 30 -My legs feel weak! 14 -I'm diabetic. 10 -I cut my finger! the bleeding won't stop. 31 +Can I get a packet of vitamin tablets 30 +Ive got a temperature sore throat. 28 +My throat is dry I cant stop coughing 30 +My legs feel weak 14 +Im diabetic. 10 +I cut my finger the bleeding wont stop. 31 I hope you have an antiseptic solution. 32 -May I have a first aid kit? 20 +May I have a first aid kit 20 You are the fifth pharmacist that I have asked for it today. 48 -Thank you, and can you tell me how I should use it? 39 -Ten days for this one. it's important that you finish all the packages. 56 +Thank you, and can you tell me how I should use it 39 +Ten days for this one. its important that you finish all the packages. 56 If you forget to take it at night, you need to take two in the morning. 55 No, you can not take aspirin while you are on this, no painkillers allowed. 61 -I see, are there any side effects? 27 +I see, are there any side effects 27 Rare but possible drowsiness, dizziness, blurred vision, upset stomach, nausea. 69 -Okay then. can I pay with my card? 25 +Okay then. can I pay with my card 25 I am an honest employee. 19 I am not only a hard worker, but a smart worker as well. 43 I am a dedicated worker. 19 @@ -11866,7 +11866,7 @@ I am driven to succeed. 18 I work well with others. 19 I can juggle multiple tasks. 23 I develop a positive work environment. 32 -I am self-motivated. 16 +I am selfmotivated. 16 I easily adapt to new situations. 27 I value integrity. 15 I care about the workplace atmosphere. 32 @@ -11886,7 +11886,7 @@ I respect people and my work. 23 I have a strong work ethic. 21 I am disciplined and punctual. 25 I have strong communication skills. 30 -I have problem-solving skills. 25 +I have problemsolving skills. 25 I am consistent and I do not procrastinate. 35 I take my work seriously. 20 I am a responsible and practical person. 33 @@ -11947,8 +11947,8 @@ Thank you for everything. 21 Hello, my name is Mike. 18 I am pleased to meet you. 19 I was so excited when the manager told me this position was open. 52 -I'd like to learn more about the company. 32 -It's nice to meet you. 16 +Id like to learn more about the company. 32 +Its nice to meet you. 16 I have read the job description. 26 I have researched your company. 26 This job sounds interesting. 24 @@ -11966,12 +11966,12 @@ I left for an opportunity to advance my career. 38 I wish to experience a new environment to continue growing. 49 I am highly organized. 18 I have strong interpersonal skills. 30 -I try to think out-of-the-box for creative solutions. 42 +I try to think outofthebox for creative solutions. 42 I am a quick learner. 16 I am inventive in my work process. 27 I have heard so much about you. 24 I have always wanted to meet you. 26 -This is the ideal company I'd love to work with. 37 +This is the ideal company Id love to work with. 37 I feel very lucky and blessed to have got this opportunity. 48 I am really nervous and thrilled at the same time. 40 You have always been a role model for me. 32 @@ -11980,16 +11980,16 @@ I am from Pune. 11 I have been waiting for this moment. 29 I really look up to you. 18 I have always dreamed of working with you. 34 -You're an inspiration to me and many. 29 +Youre an inspiration to me and many. 29 Thank you for taking the time to meet with me today. 41 Thank you for having me. 19 -I'd love to be a part of your company. 28 +Id love to be a part of your company. 28 I have the experience to do the job. 28 I constantly like to learn. 22 -Your company aligns with my long-term goals. 36 +Your company aligns with my longterm goals. 36 I am calm and composed. 18 I am always full of energy. 21 -I take criticism and advice we'll. 27 +I take criticism and advice well. 27 I can be very cooperative. 21 It gives me immense pleasure to meet you. 33 I would be thrilled to work with this organization. 42 @@ -12005,14 +12005,14 @@ I hope to join the team soon. 22 I wish to grow as a professional under your guidance. 43 This position is a great opportunity to advance my skills. 48 My aim is to help the company grow. 27 -I am committed to the company's success. 32 +I am committed to the companys success. 32 I will be an asset to the company. 26 I am open to negotiate salary. 24 My salary expectations are in line with my experience. 45 I am looking forward to being part of the team. 37 I am willing to join as soon as needed. 30 I have a very quick turnover time. 27 -I am goal-oriented. 15 +I am goaloriented. 15 I am not afraid to ask questions. 26 I thrive on a challenge. 19 I am a natural leader. 17 @@ -12027,19 +12027,19 @@ I can be a great contributor to your company. 36 I hope to remain in consideration for this position. 43 I guarantee I can be a boon to this company. 34 I promise to make you proud. 22 -Working under your leadership is all I'll ever want. 42 +Working under your leadership is all Ill ever want. 42 I hope to learn from you. 19 -I'd be lucky to work with you. 22 -It's a privilege to meet you. 22 +Id be lucky to work with you. 22 +Its a privilege to meet you. 22 Awaiting your reply. 17 I want to build a career in your company. 32 -I'd love to work here. 16 +Id love to work here. 16 The position sounds like a great fit for me. 35 Please let me know if you need anything else from me. 42 -I'd be thrilled to work with this organization. 38 -Based on what I've learned, I believe I'm perfect for the job. 48 -I'm excited to get started. 21 -I can't wait to be a part of the company. 30 +Id be thrilled to work with this organization. 38 +Based on what Ive learned, I believe Im perfect for the job. 48 +Im excited to get started. 21 +I cant wait to be a part of the company. 30 Have a great day. 13 I majored in legal studies. 22 I am a professional dancer. 22 @@ -12057,31 +12057,31 @@ I gained practical experience only after completing graduation. 55 I am an engineer by profession. 25 I took up research in the first year of college. 38 My course prepared me for this role. 29 -My extra-curricular activities enhance my personality. 47 +My extracurricular activities enhance my personality. 47 I continue to seek educational opportunities. 39 -I did not pursue a master's degree because of personal issues. 50 +I did not pursue a masters degree because of personal issues. 50 I am a qualified doctor. 19 I always wanted to be a lawyer. 24 -I received my master's degree from the same university. 45 +I received my masters degree from the same university. 45 I was always passionate about computers as a student. 44 I am a trained electrical engineer. 29 I qualify as a teacher. 18 I completed my b.e. in computer engineering. 35 -I obtained my bachelor's degree in nursing. 35 +I obtained my bachelors degree in nursing. 35 I have a degree in criminal justice. 29 -I have a master's degree in finance. 28 +I have a masters degree in finance. 28 I majored in economics. 19 I hold a diploma in pharmacy. 23 I am an architect by profession. 26 I qualify as a doctor. 17 -I have a bachelor's and master's degree in social work. 43 -I completed my post-secondary education in journalism. 46 -I have an associate's degree in fashion. 32 +I have a bachelors and masters degree in social work. 43 +I completed my postsecondary education in journalism. 46 +I have an associates degree in fashion. 32 I qualify as a judge. 16 I am a chartered accountant. 23 I have done a few courses in hospitality. 33 I am a mechanical engineer. 22 -I have a degree in e-commerce and law. 29 +I have a degree in ecommerce and law. 29 I have a diploma as a medical laboratory assistant. 42 I am formally trained in acting. 26 I completed my bachelors in hotel management. 38 @@ -12097,45 +12097,45 @@ I hear that you wish to expand your services. 36 The company has its branches all over India. 36 I like how the company is technologically savvy. 40 Your company values its employees. 29 -The company helps its workers maintain a healthy work-life balance. 56 +The company helps its workers maintain a healthy worklife balance. 56 There is a scope for me to develop in this company. 40 Your team is very hard working. 25 -The company's policies are liberal. 29 -The company has a team-oriented approach. 34 +The companys policies are liberal. 29 +The company has a teamoriented approach. 34 Your company motivates the employees to do their best. 45 -The company's values are what make it the best. 37 +The companys values are what make it the best. 37 I like how a customer is king for the company. 36 The quality of your work is excellent. 31 Your guidance will help me work better. 32 The company also offers its services in London. 39 I know how employees are the real assets of your company. 46 -Your company's work efficiency is commendable. 39 +Your companys work efficiency is commendable. 39 I have always wanted to be a part of your company. 39 I love the way your company functions. 31 -My goals and values line up with the company's background. 47 -I love your company's ideas for future efficiency. 41 -Your company always provides top-quality service. 42 -I've read about your company on Twitter. 32 +My goals and values line up with the companys background. 47 +I love your companys ideas for future efficiency. 41 +Your company always provides topquality service. 42 +Ive read about your company on Twitter. 32 The company is known to achieve top levels of success. 44 -I've read about your company's recent product launch and its results. 56 -It's a dream to be a part of your company. 31 +Ive read about your companys recent product launch and its results. 56 +Its a dream to be a part of your company. 31 I really like how your company constantly evolves. 42 Your company has the perfect work environment. 39 I admire how the company treats its employees. 38 Many things important to this company are equally important to me. 55 The company meets its goals successfully. 35 -The company's work ethic speaks for itself. 35 +The companys work ethic speaks for itself. 35 The company never ceases to amaze me. 30 This is the best company to work with. 30 -Your company's performance is praiseworthy. 37 -I have always admired the customer-service of the company. 48 +Your companys performance is praiseworthy. 37 +I have always admired the customerservice of the company. 48 Your company is always open to new and emerging technologies. 51 I would love to work with your company in the future. 42 Customers are always happy with your company. 38 I like how your company is not afraid to take risks. 41 The company has an extremely healthy and comfortable atmosphere. 55 I first came across your company at this event. 38 -I'm really impressed by your company's position. 39 +Im really impressed by your companys position. 39 Failures helped me get better. 25 It is ok to make mistakes. 20 It is difficult to keep going after facing failures. 43 @@ -12166,9 +12166,9 @@ Success is power. 14 I use failure as an inspiration. 26 Success is how high you bounce when you hit bottom. 41 Failure is a part of success. 23 -Self-belief leads to success. 24 +Selfbelief leads to success. 24 I try to rise above failures. 23 -Self-esteem is the strongest factor in success. 39 +Selfesteem is the strongest factor in success. 39 Success motivates me. 18 I accept failures and learn from them. 31 Success is a strength. 18 @@ -12176,7 +12176,7 @@ The real failure is when you stop trying. 33 I fail until I succeed. 18 I dream of success and work towards it. 31 Success is not final and failure is not fatal. 37 -If you're not ready to fail, you're not ready to succeed. 44 +If youre not ready to fail, youre not ready to succeed. 44 Success is a journey, not a destination. 33 Success and happiness lie in me. 26 I aim to never give up. 17 @@ -12187,11 +12187,11 @@ Perseverance is the secret of success. 32 All my successes are built on my failures. 34 My immediate goal is to get this job. 29 I want to be head of the department. 28 -Setting long-term goals is important for growth. 40 +Setting longterm goals is important for growth. 40 I wish to start my own business one day. 31 I want to become an expert in this field. 32 I want to complete my education. 26 -Short-term goals help me achieve my target easily. 41 +Shortterm goals help me achieve my target easily. 41 My next step will be to get a promotion. 31 I want to assume more responsibilities by next year. 43 I am looking forward to taking on leadership roles. 42 @@ -12199,11 +12199,11 @@ I want to boost my abilities. 23 I want to develop and streamline newer processes. 41 I wish to provide excellent service. 30 One of my goals is to develop my writing skills. 38 -My long-term goal is to be financially independent. 42 +My longterm goal is to be financially independent. 42 I want to become a better worker. 26 I wish to grow with a company where I can continue to learn. 47 I plan on enhancing my skills. 24 -I want to learn the basics in an entry-level role. 39 +I want to learn the basics in an entrylevel role. 39 I shall contribute as much value as possible to the team. 46 I want to be more responsible. 24 I believe that goals give our lives meaning. 36 @@ -12253,27 +12253,27 @@ The working environment was very positive. 36 My last job challenged me to improve my skills. 38 I was able to grow as an individual. 28 There was a real emphasis on providing quality work. 43 -My previous job taught me to maintain a work-life balance. 47 +My previous job taught me to maintain a worklife balance. 47 The experience taught me several transferable skills. 46 I did not like the lack of communication between members. 47 The company made me a smart worker. 28 I could easily adjust to their style of work. 36 Everyone was very supportive and worked as a team. 41 My previous job was slow. 20 -I'll always be grateful for my previous job. 35 +Ill always be grateful for my previous job. 35 The company made me realize my capabilities. 37 I learned a lot from my previous job. 29 I developed many skills in my previous company. 39 I got on well with my colleagues. 26 The company got merged with another. 30 -I wasn't able to showcase my full potential. 35 +I wasnt able to showcase my full potential. 35 There was no opportunity for growth. 30 I learned a lot about different management styles. 42 The company made me work hard. 24 I feel my skill set can be better employed elsewhere. 43 I found myself bored with the work. 28 I enjoyed group projects and admired our cooperation. 45 -I didn't want my unhappiness to affect my job. 36 +I didnt want my unhappiness to affect my job. 36 I was taught different strategies. 29 There was no room for advancement in the company. 40 The people were too terrific to work with at the company. 46 @@ -12284,57 +12284,57 @@ It was difficult for me to adjust to my previous company. 46 The company helped me to become confident. 35 My previous job was prone to crashing. 31 I was not challenged enough at the job. 31 -What can I do to excel in this position? 31 -How is my performance measured in this position? 40 -How do you deal with challenges? 26 -What goals does your company currently have? 37 -What do you know about our company? 28 -Tell me why you chose this particular profession? 41 -What do you find most challenging? 28 -What do you like the most about this profession? 39 -What do you like the least? 21 -Why have you applied for this position? 32 -What are your long-term career goals? 30 -What industries have you worked in? 29 -Describe the ideal job from your perspective? 38 -What is your interpretation of success? 33 -Describe an ideal work environment? 30 -Why should we hire you? 18 -What are my next steps? 18 -What do you think makes a good organization? 36 -Why do you want to leave your current job? 33 -What would you say is your greatest weakness? 37 -If we hire you, when would you be available to start? 42 -If the position required it, would you be willing to travel? 49 +What can I do to excel in this position 31 +How is my performance measured in this position 40 +How do you deal with challenges 26 +What goals does your company currently have 37 +What do you know about our company 28 +Tell me why you chose this particular profession 41 +What do you find most challenging 28 +What do you like the most about this profession 39 +What do you like the least 21 +Why have you applied for this position 32 +What are your longterm career goals 30 +What industries have you worked in 29 +Describe the ideal job from your perspective 38 +What is your interpretation of success 33 +Describe an ideal work environment 30 +Why should we hire you 18 +What are my next steps 18 +What do you think makes a good organization 36 +Why do you want to leave your current job 33 +What would you say is your greatest weakness 37 +If we hire you, when would you be available to start 42 +If the position required it, would you be willing to travel 49 Tell me about your educational background. 36 -What are your salary expectations? 29 -Why did you choose your major? 24 -How does your education relate to your career? 38 -How has your education prepared you for this job? 40 -What is your biggest professional achievement? 40 -Where do you see yourself in 5 years? 29 -What was the toughest decision you had to make? 38 -What do you do when you disagree with someone? 37 -How will other people describe you? 29 -What do you like to do outside of work? 30 -What questions do you have for me? 27 -What are your three top traits? 25 -How can you contribute to the company? 31 -What do you plan to do if you're not selected? 35 -Can you tell me a little about yourself? 32 -What do you know about the company? 28 -Have you faced any conflict at work? 29 -Why were you fired? 15 -What do you like least about yourself? 31 -What's your management style? 24 -How do you deal with stressful situations? 35 -When can you start? 15 -Any other company you're interviewing with? 36 +What are your salary expectations 29 +Why did you choose your major 24 +How does your education relate to your career 38 +How has your education prepared you for this job 40 +What is your biggest professional achievement 40 +Where do you see yourself in 5 years 29 +What was the toughest decision you had to make 38 +What do you do when you disagree with someone 37 +How will other people describe you 29 +What do you like to do outside of work 30 +What questions do you have for me 27 +What are your three top traits 25 +How can you contribute to the company 31 +What do you plan to do if youre not selected 35 +Can you tell me a little about yourself 32 +What do you know about the company 28 +Have you faced any conflict at work 29 +Why were you fired 15 +What do you like least about yourself 31 +Whats your management style 24 +How do you deal with stressful situations 35 +When can you start 15 +Any other company youre interviewing with 36 You must be ready to take risks. 25 It will be measured on the basis of the quality of your work. 48 I look at challenges in a positive way and divide them into smaller pieces. 61 We are focusing on overseas expansion. 32 -I'm great! I'm at an interview for a company I admire. 40 +Im great Im at an interview for a company I admire. 40 I know that your company is one of the best in the market. 45 I chose this career because I enjoy it. 31 Keeping pace with technological change is a challenge for me. 51 @@ -12355,53 +12355,53 @@ I can start as soon as you want me to. 28 Yes, I think it will be a good experience. 33 My salary expectations are in line with my qualifications. 49 I have always been interested in this field. 36 -Several of my classes have tied into real-world examples for my career. 58 +Several of my classes have tied into realworld examples for my career. 58 My school shaped me into a better person, ready to face the world. 53 It has developed my skills and increased my knowledge. 45 Organizing a successful charity event. 33 The future is uncertain but I see myself to be successful. 47 The work environment is not friendly. 31 To leave my previous job. 20 -I voice my opinion and respect the other person's opinion. 47 -I'll be described as a person full of energy. 35 +I voice my opinion and respect the other persons opinion. 47 +Ill be described as a person full of energy. 35 I like to spend time with my family and friends. 38 -I think we've covered most of it. 25 +I think weve covered most of it. 25 Diligence, consistency, and discipline. 35 I am always ready to learn and perform well. 35 -I'll continue to apply to other companies. 34 +Ill continue to apply to other companies. 34 I am hardworking and optimistic. 27 I have researched a lot about your company. 35 -Yes, and I'm open to learning from such experiences. 42 -I couldn't perform well initially. 28 -I tend to be over-sensitive sometimes. 31 +Yes, and Im open to learning from such experiences. 42 +I couldnt perform well initially. 28 +I tend to be oversensitive sometimes. 31 I am strong and flexible. 20 I try to stay calm and focus. 22 Challenges motivate me. 20 I am ready to start immediately. 26 -Who is the ideal client? 19 -Will you find the ways to approach a customer? 37 +Who is the ideal client 19 +Will you find the ways to approach a customer 37 Rachel, do you know which demography he lives in. 40 -Does he have the power to buy? 23 +Does he have the power to buy 23 Donna, make sure the customer is willing to buy. 39 -Sir can the client have questions to ask? 33 -Joe, where the customers are located? 31 -Should we meet the client? 21 +Sir can the client have questions to ask 33 +Joe, where the customers are located 31 +Should we meet the client 21 Anna, listen to all customers are different. 37 -Do you know customers may change? 27 +Do you know customers may change 27 Team, people have different tastes and preferences. 44 Choose your client as per product specifications. 42 -Do you think the product can satisfy their needs? 40 -What does the customer actually want? 31 -Is there a specific requirement? 27 -Where is the client located? 23 -Can the targeting be done demographics? 33 +Do you think the product can satisfy their needs 40 +What does the customer actually want 31 +Is there a specific requirement 27 +Where is the client located 23 +Can the targeting be done demographics 33 Will the customer like our product. 29 -Is there a gender preference? 24 -Is the customer familiar with the industry? 36 -Effective prospecting is identifying good-fit customers. 49 +Is there a gender preference 24 +Is the customer familiar with the industry 36 +Effective prospecting is identifying goodfit customers. 49 It can be done by asking sales qualification questions. 46 Bella, start speaking of leads and prospects. 38 -Mike, it's important to note the differences. 37 +Mike, its important to note the differences. 37 The sales team should be communicating with while prospecting. 53 Please target who has expressed familiarity with your product or service. 62 Try to develop more personalized outreach. 36 @@ -12417,26 +12417,26 @@ Do qualify and begin prioritizing prospects. 38 You have to develop a connection through personalization. 49 You have to develop a connection through rapport building. 49 You can develop a connection through trust development. 47 -Does the prospect fall within my territory? 36 +Does the prospect fall within my territory 36 Prioritize customers based on the size of the opportunity. 49 Prospect can be classified as a potential customer. 43 Leads and prospects differ by definition. 35 Nurture leads and prospects until they buy your product or service. 56 Use social media to explore a relationship with a lead. 45 Sales reps can provide value to prospects on social media. 48 -Hello sir, how are you? 18 +Hello sir, how are you 18 I hope you are doing well. 20 -May I know what you are looking for? 28 +May I know what you are looking for 28 Tell us about your interest. 23 -What is your budget? 16 -Does this product attract you? 25 -I'll show you the different varieties. 31 +What is your budget 16 +Does this product attract you 25 +Ill show you the different varieties. 31 We have a wide range of products. 26 You can choose as per your requirement. 32 -It suits you well! 14 -When can I expect the call? 21 -Does this product excite you? 24 -When are you planning to buy? 23 +It suits you well 14 +When can I expect the call 21 +Does this product excite you 24 +When are you planning to buy 23 Represent your business in a positive light. 37 You have to provide value and establish understanding. 46 Use tactics to encourage a customer. 30 @@ -12450,15 +12450,15 @@ You can take advantage of synergy. 28 Listen to what the customer is saying. 31 Mike, please focus on building human relationships. 44 Eric, always remembers to close the loop. 34 -The team doesn't forget to follow up. 29 +The team doesnt forget to follow up. 29 Daniel, try to target potential new customers. 39 Mike, reach out by sending email newsletters that include discounts. 58 -Can we develop a detailed plan to target potential customers? 51 +Can we develop a detailed plan to target potential customers 51 Everyone should execute the plan in a diligent manner. 45 -Joe, please review your existing customer's persona. 44 +Joe, please review your existing customers persona. 44 Everyone has to find prospective customers who are active on social media. 62 Attract clients through your marketing techniques. 44 -Adopt a customer-focused approach to selling. 38 +Adopt a customerfocused approach to selling. 38 Use words that evoke sensory feelings. 32 Use the same perspective when you respond. 35 Max reach out by sending email newsletters that include promotions. 57 @@ -12466,7 +12466,7 @@ Try to give new clients a chance to sample your product. 45 Please analyze prospects before making an initial approach. 51 You can approach a potential client referred by someone. 47 Encourage existing customers to promote. 35 -Try engaging a customer's subconscious mind. 37 +Try engaging a customers subconscious mind. 37 Building a healthy client list is an overwhelming task. 46 Nurturing relationships helps you create a client base. 47 A marketing plan is the key aspect of appealing to potential clients. 57 @@ -12474,53 +12474,53 @@ There are several approaches. 25 A marketer has to be armed with the necessary tools and knowledge. 54 Word of mouth advertising is often the most effective. 45 Tell me the specifications of the product. 35 -What is the warranty for the product? 30 -Do you have any substitutes? 23 -What is the life of product? 22 -Is the price negotiable? 20 -Will you charge for delivery? 24 -Can we pay in installments? 22 +What is the warranty for the product 30 +Do you have any substitutes 23 +What is the life of product 22 +Is the price negotiable 20 +Will you charge for delivery 24 +Can we pay in installments 22 Till when can we expect the delivery. 30 -Let me read your company's policy. 27 -Are the reviews good of the product? 29 -What is the discount you will offer? 29 +Let me read your companys policy. 27 +Are the reviews good of the product 29 +What is the discount you will offer 29 Tell us about the competitive analysis. 33 -Do you take cash or card? 19 +Do you take cash or card 19 Brief me about the insurance of the product. 36 -Is your company registered? 23 -What about after-sales service? 26 +Is your company registered 23 +What about aftersales service 26 Meeting with a resounding rejection. 31 Misconceptions about the product or service. 38 Lack of budget. 12 We want different features. 23 I had a bad experience with a similar product. 37 -Mike, don't mislead to demonstrate the value. 37 -Is the reward enough to justify the risk? 33 -Is there a lack of trust? 19 -I've never heard of your company. 26 +Mike, dont mislead to demonstrate the value. 37 +Is the reward enough to justify the risk 33 +Is there a lack of trust 19 +Ive never heard of your company. 26 I need to talk to my team. 19 Check whether the objection is feasible to nurture them. 47 -Is there a lack of need? 18 -I don't see how this can help me. 24 +Is there a lack of need 18 +I dont see how this can help me. 24 Find if there is a lack of urgency. 27 -It isn't important for me right now. 28 +It isnt important for me right now. 28 Your services cost too much. 23 -I'm okay with the way things work right now. 34 -Do you think too much can go wrong? 27 +Im okay with the way things work right now. 34 +Do you think too much can go wrong 27 We have fear of change. 18 Cost is a big driver against change. 29 -How do I know you really have the necessary experience? 45 -I'd use my friend's company for my next project. 37 -It's too much for me to take on right now. 31 +How do I know you really have the necessary experience 45 +Id use my friends company for my next project. 37 +Its too much for me to take on right now. 31 Call me again in six months. 22 -I don't like contracts. 18 -I'm already under contract with someone else. 37 +I dont like contracts. 18 +Im already under contract with someone else. 37 Objections based on price come across most frequently. 46 Purchases come with some level of financial risk. 41 People do business with those they like. 33 Aim there to help you. 17 You can ask anything about the product. 32 -I'll brief you about the specifications. 33 +Ill brief you about the specifications. 33 It has a 24 months warranty. 22 We are available 24 hours 365 days. 28 You can count on us. 15 @@ -12529,33 +12529,33 @@ We are in business for a decade. 25 You can trust us blindly. 20 Yes, we accept card and cash as well. 29 We have a service center all over the country. 37 -The product has 5-star rating. 24 +The product has 5star rating. 24 We will give you the best product. 27 This has better performance. 24 We are above all the competitors. 27 -When do you intend to buy it? 22 +When do you intend to buy it 22 We will make the arrangements. 25 -We don't charge for delivery. 23 +We dont charge for delivery. 23 First insurance will be on us. 24 Help your prospect secure budget. 28 Help customers come to a different conclusion. 39 You should first listen to the objection. 34 -First, acknowledge your customer's concern. 37 +First, acknowledge your customers concern. 37 Demonstrate you have been actively listening. 39 -Instead, circle back to the product's value. 36 -Explore the concerns underlying your customer's objection. 50 +Instead, circle back to the products value. 36 +Explore the concerns underlying your customers objection. 50 It is imperative that you understand the exact issue. 44 Note that the final step is to respond. 31 Please offer your response in the form of a recommendation. 49 Please offer your response in the form of an alternative. 47 Please offer your response in the form of a solution. 43 -Address customer's concerns and close the transaction. 46 +Address customers concerns and close the transaction. 46 Joe, objections should be viewed as opportunities. 43 -Do you have any concerns around? 26 -Are there any obstacles that would stop you from buying? 46 +Do you have any concerns around 26 +Are there any obstacles that would stop you from buying 46 You seem a little worried about the offer. 34 -Ask follow-up questions. 20 -Set a specific date and Megan began to follow-up. 39 +Ask followup questions. 20 +Set a specific date and Megan began to followup. 39 Anticipate sales objections. 25 Repeat back what you hear. 21 Practice active listening. 23 @@ -12565,12 +12565,12 @@ Have a set of neutral recommendations ready. 37 Keep track of the objections you receive. 34 Objections are generally around the price, product fit, competitors. 59 A sincere acknowledgement can have a calming effect. 44 -Which triggers the need in his mind? 29 -Mike, fulfill the buyer's or consumer's problem is the goal. 48 +Which triggers the need in his mind 29 +Mike, fulfill the buyers or consumers problem is the goal. 48 Check need or problem recognition. 29 To understand the influences that are operating. 41 Search when the consumer recognizes a problem or need. 45 -Could he be satisfied with a product or service in the market? 50 +Could he be satisfied with a product or service in the market 50 Find if the consumer is aroused to seek more information. 47 Yes, consumers try to find goods for satisfying such needs. 49 Yes, consumers get information about goods from a personal sources. 57 @@ -12590,14 +12590,14 @@ Note the purchase of the subconscious drive. 37 Enable you to align your sales strategy accordingly. 44 Find out what they feel is the best solution. 36 Search internal and external business environments. 45 -Can customers rely on print, visual, online media? 42 +Can customers rely on print, visual, online media 42 Involvement is a factor that influences the evaluation process. 54 Customers will be bound to change their preferences. 44 Purchase is generally of value in monetary terms. 41 Consumers will take Megan to actually assess alternatives. 50 -The decision process is short-circuited. 34 +The decision process is shortcircuited. 34 The buyer has a need to satisfy or a problem that needs solving. 51 -What's out there in terms of choice? 28 +Whats out there in terms of choice 28 Mike, review the matter for deciding. 31 Olivia, reviews can help insulate your reputation. 43 Bella, ask people around us for recommendations remains commonplace. 59 @@ -12606,106 +12606,106 @@ People make instant decisions with their subconscious. 47 The crowd leads the way. 19 Preferences evolve as society evolves. 33 People examined products while standing. 35 -It's your responsibility to be aware. 30 +Its your responsibility to be aware. 30 Email and search advertising are more effective. 41 Social media probably impacts purchases. 35 We make emotional decisions and rational justifications. 49 Emotions rule in all areas. 22 -The customer's buying process is essential for marketing and sales. 56 -The decision is influenced by others' attitudes and situational factors. 61 -I don't like this product. 20 -Can the product be exchanged? 24 -It was a bad experience! 19 -Wow! such an amazing service. 23 -When can you schedule the exchange delivery? 37 +The customers buying process is essential for marketing and sales. 56 +The decision is influenced by others attitudes and situational factors. 61 +I dont like this product. 20 +Can the product be exchanged 24 +It was a bad experience 19 +Wow such an amazing service. 23 +When can you schedule the exchange delivery 37 I want a service next week. 21 -Where is the service station located? 31 -Do you provide pick up and drop facility? 33 -I will give 5-star rating. 20 -I'm not at all satisfied. 19 +Where is the service station located 31 +Do you provide pick up and drop facility 33 +I will give 5star rating. 20 +Im not at all satisfied. 19 I told you this does not suit me. 25 -Do you have other options available? 30 +Do you have other options available 30 Customers regret their decisions made. 33 Occurs due to a large number of alternatives available. 46 -Post-purchase dissonance can be avoided. 34 -What are your return policy? 23 -Can I get the refund back after a return? 32 +Postpurchase dissonance can be avoided. 34 +What are your return policy 23 +Can I get the refund back after a return 32 Connect me to the service representative. 35 -When is the next service scheduled? 29 -Are all the services paid? 21 +When is the next service scheduled 29 +Are all the services paid 21 Customers assess whether they are happy with the purchase. 49 -It's human nature to rave. 20 -Customers feel anxious after they've bought something. 46 -Might wish they'd bought this instead. 31 -Customers can get a full refund if they aren't happy. 42 +Its human nature to rave. 20 +Customers feel anxious after theyve bought something. 46 +Might wish theyd bought this instead. 31 +Customers can get a full refund if they arent happy. 42 The idea of returning a product can seem stressful. 42 -Is the product still under warranty? 30 -Can the insurance be extended? 25 -Can I refer this to my friend? 23 -Do you give discount of reference? 28 +Is the product still under warranty 30 +Can the insurance be extended 25 +Can I refer this to my friend 23 +Do you give discount of reference 28 Explain a returns policy well. 25 -Don't let your customers wind up frustrated. 36 +Dont let your customers wind up frustrated. 36 Show your customers you value their custom. 36 Tempt them with exclusive offers. 28 Tempt them with bonus points on purchases. 35 -Post-purchase is the perfect Megan to get feedback. 42 +Postpurchase is the perfect Megan to get feedback. 42 Make sure you Megan your feedback requests appropriately. 49 We believe in customer satisfaction. 31 Email a discount voucher they can forward to a friend. 44 Mike encourages people to engage with you on relevant channels. 53 Rose, send them a handy replenishment reminder. 40 -Hope that we've made the right decision. 32 +Hope that weve made the right decision. 32 Mia shows your customer that you value their custom. 43 Rose being transparent will build trust. 34 We will reduce the risk of returns from frustrated customers. 51 We are always here to help you. 24 Count on us every time. 18 -Is this the right time to talk to you? 29 +Is this the right time to talk to you 29 I think I have the right product for you. 32 -Are you interested in buying a fortune? 32 +Are you interested in buying a fortune 32 This is the best I can offer. 22 That suits you well. 16 -It's your opening line, your verbal business card. 41 +Its your opening line, your verbal business card. 41 Share a very clear, concise statement of value. 39 -Be action-oriented and outcome-focused. 33 +Be actionoriented and outcomefocused. 33 Provide clear reference examples and list recognizable achievements. 60 Share industry validation and awards. 32 -Keep your sales pitch short, clean, and simple! 39 +Keep your sales pitch short, clean, and simple 39 Tell a story to create a connection. 29 Find the perfect hook. 18 -Hook to capture your buyer's attention. 32 +Hook to capture your buyers attention. 32 Convince the customer to read on. 27 Solve the problem. 15 Focus on how your product can help fix these problems. 44 Back it up with facts. 17 -So what would that be? 17 +So what would that be 17 Ask for the sale. 13 Short and sweet does the trick. 25 -What's the problem you're trying to solve? 33 +Whats the problem youre trying to solve 33 Reference past conversations. 26 I think I can help you prioritize deals. 32 -Can we talk about it next week sometime? 32 -Have you ever noticed it? 20 +Can we talk about it next week sometime 32 +Have you ever noticed it 20 Anchor your pitch in data. 21 -Which is more compelling? 21 +Which is more compelling 21 Tell a story. 10 Keep it conversational, not formal. 30 Ensure your pitch is effective. 26 -The buyer's needs come first. 23 -It'll put off your audience. 22 -It's John from acme company.how are you? 31 +The buyers needs come first. 23 +Itll put off your audience. 22 +Its John from acme company.how are you 31 I noticed you are in need of a car. 26 -Have you got a few minutes to chat? 27 +Have you got a few minutes to chat 27 I have called to follow up. 21 Do you intend to invest. 19 -Are you in need of? 14 +Are you in need of 14 Include social proof and actual numbers. 34 Encourage a conversation by asking a question. 39 -Good morning! how are you? 20 +Good morning how are you 20 I just noticed your needs. 21 -When can we schedule a meeting? 25 -Can I show you the brochure? 22 -Let's discuss what we can offer. 25 +When can we schedule a meeting 25 +Can I show you the brochure 22 +Lets discuss what we can offer. 25 I hope you need this badly. 21 This is the right choice man. 23 I guarantee the return on investment. 31 @@ -12713,7 +12713,7 @@ Subscribe to premium and enjoy for life. 33 You might also love it. 18 Show related items. 16 There are more added features to the golden pack. 40 -Mike, offer products that aren't similar in color. 41 +Mike, offer products that arent similar in color. 41 You can also try this. 17 This item goes with what you have. 27 This product compliments your watch. 31 @@ -12722,14 +12722,14 @@ This can increase your popularity. 29 It shows your inner beauty. 22 Frequently bought together. 24 This will complete your set. 23 -This is a must-have a product to fulfill your need. 40 -That's in line with their casual. 26 +This is a musthave a product to fulfill your need. 40 +Thats in line with their casual. 26 This goes hand in hand with what you have. 33 It looks appealing to your shirt. 27 You have to have this. 17 It resembles your inner beauty. 26 -Please try this it's the best accessory for your shirt. 44 -Encourage customers to purchase add-ons. 34 +Please try this its the best accessory for your shirt. 44 +Encourage customers to purchase addons. 34 It will give an add on advantage. 26 Customize their product using complimentary items or features. 54 You can take this additional feature. 31 @@ -12737,7 +12737,7 @@ I bet this will be the best fit. 24 The platinum pack has it all. 23 Rose strike when the iron is hot. 26 We can provide you discounts. 24 -If you buy more there's a lot to offer. 29 +If you buy more theres a lot to offer. 29 Bulk buying will give you heavy discounts. 35 By one get one free. 15 The more the volume more the discount. 31 @@ -12752,21 +12752,21 @@ The more the investment is the return. 31 Special bonus for you. 18 Switch to premium for more facilities. 32 The price includes premium services. 31 -It's an all in one package. 20 +Its an all in one package. 20 I can customize if you intend to spend more. 35 Listen free or subscribe to premium for download. 41 -Cross-selling allows you to bundle. 29 -Lush makes and sells high-quality products. 36 -Has this happened before? 21 -Have the complaints been recorded? 29 -How often does the same complaint arise? 33 +Crossselling allows you to bundle. 29 +Lush makes and sells highquality products. 36 +Has this happened before 21 +Have the complaints been recorded 29 +How often does the same complaint arise 33 Always listen to your customers. 27 It is important to understand why they are complaining. 46 Maintain quality from all support personnel. 38 Apologize for the mistake. 22 Acknowledge their complaint. 25 Customers are more willing to forgive. 32 -This won't happen again. 19 +This wont happen again. 19 We ensure a speedy recovery for your loss. 34 We take all the responsibility. 26 Keep calm all your problems will be sorted. 35 @@ -12774,8 +12774,8 @@ Give us some Megan to configure. 26 Your satisfaction is of utmost importance to us. 40 Will try to resolve it as soon as possible. 34 Please consider our request. 24 -Can we please discuss the matter? 27 -It's our fault and we accept it. 24 +Can we please discuss the matter 27 +Its our fault and we accept it. 24 Please give us a second chance. 25 We ensure the full recovery of your assets. 35 Things cannot be undone. 20 @@ -12783,14 +12783,14 @@ We understand your feelings. 24 Our sympathy is with you always. 26 Find a solution. 13 Avoid passing your customer onto a series of people. 43 -This issue won't be repeated. 23 +This issue wont be repeated. 23 We will make the necessary changes. 29 We are happy to resolve your issue. 28 We are very sorry for your bad experience. 34 You will be informed once the problem is solved. 39 -Is there anything we can help you with? 31 +Is there anything we can help you with 31 Please let us know. 15 -Are you still facing the issue? 25 +Are you still facing the issue 25 Please keep us informed in the future. 31 We are trying our best to fulfill your needs. 36 Please review so we can help better in the future. 40 @@ -12804,20 +12804,20 @@ Whatever is the issue we will resolve. 31 Your expectations will be met. 25 Just keep the faith. 16 We are trying hard to resolve the issue. 32 -What would you like to buy today? 26 -How are you doing sir? 17 -What are your thoughts about new technologies? 39 -Are you interested in buying new gadgets? 34 -Does social network influence you? 29 -Do you think ai is the new future? 26 -Are you planning to change your vehicle? 33 -What are your thoughts about changing habits? 38 -Wow!! you have the same taste and preferences. 36 -Do you intend to switch your cell phone? 32 +What would you like to buy today 26 +How are you doing sir 17 +What are your thoughts about new technologies 39 +Are you interested in buying new gadgets 34 +Does social network influence you 29 +Do you think ai is the new future 26 +Are you planning to change your vehicle 33 +What are your thoughts about changing habits 38 +Wow you have the same taste and preferences. 36 +Do you intend to switch your cell phone 32 Customers are built on the frame of reliable, friendly engagement. 56 Try building a positive relationship with your brand. 45 Make an emotional bond with a product, service. 39 -They're popular because they make some pretty cool furniture. 51 +Theyre popular because they make some pretty cool furniture. 51 Mike customers want to feel valued and prioritized. 43 Engage with them is a great way to make them feel like VIPs. 47 Do social interactions. 20 @@ -12826,7 +12826,7 @@ Yes, customers have high expectations for speedy responses. 51 Joe keeps waiting in line can hurt your engagement. 42 Initiate that relationship from scratch. 35 The team note that the customer is the king. 35 -Fulfill customer's needs and wants. 29 +Fulfill customers needs and wants. 29 Olivia always is polite while talking. 32 Rose listen, plan, and then react. 28 Smith provides them with the best option available. 43 @@ -12843,7 +12843,7 @@ Include family in the conversations. 31 Talk with their children. 21 Create a personalized user experience. 33 Human nature to respond better to an experience. 40 -Personalizing a customer's experience is your goal. 43 +Personalizing a customers experience is your goal. 43 Always remember their names. 24 Wish them on their birthdays and festivals. 36 Send exciting offers via email. 26 @@ -12866,24 +12866,24 @@ Groups of customers shares traits such as similar needs. 47 Groups of customers shares traits such as similar locations. 51 It is easier for marketers to personalize their marketing campaigns. 58 The team you should target specific audiences. 39 -People can be labeled as brand-neutral. 32 +People can be labeled as brandneutral. 32 People can be labeled as brand loyal. 30 You have to better allocate their attention. 37 You should better allocate their resources. 37 -Do you know niche marketing is a concentrated form of marketing? 53 +Do you know niche marketing is a concentrated form of marketing 53 Note that niche marketing involves targeting very specific. 51 Increase the results of your marketing efforts. 40 As a marketer, we should draft personalized marketing campaigns. 55 Yes, gender is one of the bases of market segmentation. 45 -Try making gender-specific goods. 28 +Try making genderspecific goods. 28 Age is one of the factors for segmentation. 35 We have customized services depending upon age. 40 Age is just a number and we take it seriously. 36 Income decides the purchasing power of a person. 40 We make products that suit your pocket. 32 -Get pocket-friendly deals. 22 +Get pocketfriendly deals. 22 Invest as per your income. 21 -Does the place impact a person's interests? 35 +Does the place impact a persons interests 35 We deliver the package to your doorstep. 33 A doorstep pick up and drop facility is available. 41 Mark that occupation influences purchase decisions. 45 @@ -12898,16 +12898,16 @@ Market segmentation reduces ineffective marketing campaign. 53 Segmentation is to prioritize their target audiences. 46 Segmentation is dividing a group into subgroups. 41 Personality is a combination of characteristics. 42 -Is it capable of satisfying our needs? 31 -What is the value it will bring to me? 29 -Why should I buy this? 17 -Will it enhance the user experience? 30 -I'm sure this product will justify your wants. 37 +Is it capable of satisfying our needs 31 +What is the value it will bring to me 29 +Why should I buy this 17 +Will it enhance the user experience 30 +Im sure this product will justify your wants. 37 It is very much capable of delivering 100 percent satisfaction. 53 -How long the best value we can expect? 30 -Till when the last value updating we can expect? 39 -What is the competitive advantage over their brands? 44 -Will value chains help increase a business's efficiency? 47 +How long the best value we can expect 30 +Till when the last value updating we can expect 39 +What is the competitive advantage over their brands 44 +Will value chains help increase a businesss efficiency 47 Mike, you have to create a competitive advantage. 41 Joe, make our value chain to retain a competitive advantage. 50 Our supply chain focuses on the procurement process of goods. 51 @@ -12916,9 +12916,9 @@ We ensure that inputs are converted to outputs. 39 The profit margin can be less important for us. 38 Illustrate and understand the value chain concept. 43 The company selects its products carefully. 37 -Is the company capable of providing to a larger group? 44 +Is the company capable of providing to a larger group 44 Are the delivery standards as per the industry. 39 -How does your organization create value? 34 +How does your organization create value 34 Greater value than the original cost of creating. 41 The more value an organization creates, the more profitable it is. 55 The goal is to create value for its customers. 37 @@ -12932,30 +12932,30 @@ Sam, are you sure this is value for money. 33 Joe, can we calculate the return on investment. 39 Bella, will you guide me to the values I can expect. 41 Look for opportunities to increase value. 35 -Porter's value chain is a useful strategic management tool. 49 -What's your business's competitive edge? 33 +Porters value chain is a useful strategic management tool. 49 +Whats your businesss competitive edge 33 Our company performs to create a product. 34 We run on a cost leadership strategy that reduces product costs. 53 We provide a unique or highly specialized products or services. 53 -It's best to pick a single competitive advantage. 40 +Its best to pick a single competitive advantage. 40 Mike can you analyze the value and cost of the activities. 47 Jenny, please overview where the business is excelling. 47 Bella begins with minor improvements. 32 -Did you recently acquire or merge with another business? 47 +Did you recently acquire or merge with another business 47 Try eliminating inefficient business activities. 43 Inbound logistics include functions like receiving, warehousing. 57 Operations include procedures for converting raw materials into a finished product. 72 Outbound logistics include activities to distribute a final product. 59 Marketing and sales include strategies to enhance visibility and target. 62 Service includes programs to maintain products and enhance the consumer experience. 72 -How large an audience can we target in the new area? 41 +How large an audience can we target in the new area 41 Sam, can you please create a new geographical area. 42 -What is the new emerging trend? 25 +What is the new emerging trend 25 Follow the ongoing trends. 22 Will the market accept us. 21 -Do our values suffice the new market? 30 -Can we be a sustainable entity there? 30 -What can we expect more? 19 +Do our values suffice the new market 30 +Can we be a sustainable entity there 30 +What can we expect more 19 Joe, markets change over sometime. 29 Yes, technological advancements influence market change. 50 Do emerging concepts have a greater impact. 36 @@ -12970,15 +12970,15 @@ We provide products all over the globe. 32 We deliver to every corner of the world. 32 We have critically acclaimed products from every corner. 48 Joe, what are the parameters to go global. 34 -Does rapid social change leads to change in market? 42 +Does rapid social change leads to change in market 42 Yes, multinational companies go globally. 36 -Is there a growth potential? 23 +Is there a growth potential 23 This growth requires a lot of investment capital. 41 -Our country focuses on an export-driven strategy. 41 +Our country focuses on an exportdriven strategy. 41 Our company has a brisk pace of economic growth. 39 We have huge growth potential. 25 Mike, go with the market trends. 26 -Does industrialization favors rapid economic growth? 46 +Does industrialization favors rapid economic growth 46 Olivia, can we think of entering a global market next year. 48 Rose, think global act local. 24 Bravo, pinpoint their core values. 29 @@ -12986,7 +12986,7 @@ Bella, check for the influential entities. 36 Do emerging market leaders are poised to ride the growth. 47 Daniel, the emerging market brings a lot of opportunities. 49 We should excel in new emerging markets. 33 -When can we take the shot? 20 +When can we take the shot 20 Developing economies to identify the outperformers we do. 49 The rapid rise in productivity correlated with industrialization. 57 An emerging market economy is the economy of a developing nation. 54 @@ -12997,34 +12997,34 @@ Governments of emerging markets tend to implement policies. 51 Rising to the top in the outperforming emerging economies. 49 Contested leadership is a vital sign of a competitive environment. 56 Our company leaders play an instrumental role. 39 -Try being a role model for the organization's beliefs. 44 -Hello, team let's do this together. 28 -Our company's culture will be reflected in its dress code. 47 +Try being a role model for the organizations beliefs. 44 +Hello, team lets do this together. 28 +Our companys culture will be reflected in its dress code. 47 Our corporate culture is influenced by national cultures. 49 -We have an employee-friendly corporate culture. 40 -We create positive cross-culture experiences. 39 +We have an employeefriendly corporate culture. 40 +We create positive crossculture experiences. 39 Mike, interact with management. 27 Your ineffective culture can bring down the organization. 49 Joe, treat your employees like your family. 36 Bella, be helpful to your subordinates. 33 -John, don't talk rudely. 19 -Megan, have a go-getter attitude. 27 +John, dont talk rudely. 19 +Megan, have a gogetter attitude. 27 Our culture has an improved brand identity. 36 It can be shaped intentionally or grown organically. 44 -Try to reach the core of a company's ideology and practice. 47 +Try to reach the core of a companys ideology and practice. 47 Our company implements its values. 29 Our corporate culture refers to the shared values. 42 Our corporate culture refers to the shared attitudes. 45 Our corporate culture refers to the shared standards. 45 Our corporate culture refers to the shared beliefs. 43 We have a corporate culture that helps reach our goals. 45 -Our corporate culture by definition affects a firm's operations. 54 +Our corporate culture by definition affects a firms operations. 54 Emma, culture can be particularly important. 38 The owner takes a great deal of responsibility themselves. 49 A very small company can be detrimental. 33 In our healthy culture, employees view themselves as part of a team. 56 The team is helping the overall company succeed. 40 -The company's prevailing corporate culture begins at the top. 51 +The companys prevailing corporate culture begins at the top. 51 Entrepreneurs need to explain and share their vision. 45 Olivia, let your vision for the company become there. 44 Rose, treat all employees equally. 29 @@ -13032,13 +13032,13 @@ Bravo, business owners can not bestow extra rewards. 44 Yes, many small business owners are nepotism. 38 Our hiring decisions reflect the desired corporate culture. 51 Mike, a good attitude is an essential component. 40 -Having two-way communication is essential. 36 +Having twoway communication is essential. 36 Adopt a participatory and engaging culture. 37 Olivia, a lack of honest communication is bad. 38 -Our company's values are the core of its culture. 39 -Our vision articulates a company's purpose. 36 +Our companys values are the core of its culture. 39 +Our vision articulates a companys purpose. 36 Our values offer a set of guidelines. 30 -Can a company build a coherent culture without people? 45 +Can a company build a coherent culture without people 45 Please possess the willingness and ability to embrace those values. 57 Our strong culture is a common denominator. 36 Corporate culture refers to the beliefs and behaviors. 46 @@ -13047,16 +13047,16 @@ Good corporate culture improves the quality of employees. 49 Mergers and acquisitions are fraught with cultural issues. 50 Mike, always be polite while talking. 31 Joe, be cut to the point. 19 -Bravo, don't hesitate while talking. 30 +Bravo, dont hesitate while talking. 30 Olivia, do not make fake promises. 28 Rachel always delivers the same as you promised. 40 Rose, track your process. 21 -Daniel, match the person's expectation. 33 +Daniel, match the persons expectation. 33 Harry, maintain a healthy relationship. 34 Max, handle promotions and public relations for a company. 49 We follow the thread of organizational conversation. 45 We use words in corporate relations that are intelligible. 49 -"The outside world should instantly affirm, ""yes""." 40 +The outside world should instantly affirm, yes. 40 Our company should never hear bad from a customer or employee. 51 Our values humanize the company. 27 What we value. 11 @@ -13066,37 +13066,37 @@ Note if customers are not addressed appropriately, they will not buy anything. 6 Megan, the right communication turns buyers into loyal customers. 56 Olivia, please contact investors, shareholders. 42 The team greets everyone with a smile on a face. 38 -Bella, don't indulge in any type of conflict. 36 +Bella, dont indulge in any type of conflict. 36 Rose, always have a helpful attitude. 31 Donna, never say never. 19 Emma, be expressive about your thoughts. 34 Olivia, convey the right message to the stakeholders. 45 Emma, be patient for a reply. 23 Bravo, seek proper information. 27 -Have you finished the task which I gave? 32 -Till when is the deadline? 21 -I'm expecting the best content out of your efforts. 41 +Have you finished the task which I gave 32 +Till when is the deadline 21 +Im expecting the best content out of your efforts. 41 Your advice is valuable to us. 24 -Hello sam, is this the right time to talk? 33 -Is there any vacancy in your organization? 35 -Can we work with your organization? 29 +Hello sam, is this the right time to talk 33 +Is there any vacancy in your organization 35 +Can we work with your organization 29 We will be obliged to be partnered with your company. 43 Please give us some Megan to reconsider. 33 -What are your thoughts about the merger joe? 36 +What are your thoughts about the merger joe 36 Eric, are you thinking of a strategic alliance. 39 -Mia, can you please provide the last year's financials. 45 +Mia, can you please provide the last years financials. 45 Communication can be as efficient as possible,. 40 A standard form of expression distinguishes the company,. 49 Investors feel uncomfortable with a casual approach. 45 -We make sure its left-hand knows what its right hand is doing. 49 +We make sure its lefthand knows what its right hand is doing. 49 Communications should be deemed priceless to a company. 47 -Deepen employee's knowledge of the company's big-picture strategy. 55 +Deepen employees knowledge of the companys bigpicture strategy. 55 No longer is branding for customers only. 34 A brand gives people a fixed, memorable understanding. 46 Bravo, work effortlessly. 22 We should talk to resolve the problems. 32 Our corporate is run by people. 25 -Our employee's feelings and emotions need to care. 41 +Our employees feelings and emotions need to care. 41 Listen people are very sensitive about their culture. 45 We are a society of diversity. 24 Talk as per the requirement. 23 @@ -13105,10 +13105,10 @@ John, can you please elaborate. 26 Jack, do not talk about rubbish. 26 Bella, be precise about what you want to convey. 39 Jack, will be more specific, please. 30 -May I beg your pardon, sir? 21 -What is the task for today? 21 -What will be my day to day activities? 30 -Where shall keep the documents? 26 +May I beg your pardon, sir 21 +What is the task for today 21 +What will be my day to day activities 30 +Where shall keep the documents 26 Joe, when can we take the meeting. 27 Make sure the rights of each community need to be well protected. 53 Mind it man is a social animal and wants to share his feeling. 49 @@ -13119,10 +13119,10 @@ Our salary pay should be up to the city standard. 39 Social development societies are funded by us. 39 We preserve the environment and protect employee rights. 48 Our ethical conflicts develop from conflicts between differing interests. 64 -We produce a reasonable profit for the company's shareholders. 52 +We produce a reasonable profit for the companys shareholders. 52 James, please be honest with me. 26 Emma, never lie to your reporting manager. 35 -Joe, will you please do me a favor? 27 +Joe, will you please do me a favor 27 Mike, work with full dedication. 27 Your conversations should have a positive impact. 42 Rose, give respect to your subordinates. 34 @@ -13133,10 +13133,10 @@ Anna, aim to strive for harmony with society. 37 To engage in honest and transparent communications. 44 We contribute to the preservation of the environment. 45 We respect fundamental human rights and individuality. 47 -Mike, take care of everyone's feelings. 32 +Mike, take care of everyones feelings. 32 Bella, keep the working environment clean. 36 Rose, make the working environment peaceful. 38 -Anna, don't be late for the office. 27 +Anna, dont be late for the office. 27 Maintain the decorum of the premises. 31 Ethics, also known as moral philosophy. 33 The philosophy that addresses questions about morality. 48 @@ -13145,7 +13145,7 @@ Megan, no ethical behavior can be promoted without trust. 48 We practice arguably controversial subjects. 39 Bravo, never makes false promises to the customer. 42 Our company delivers the exact specifications stated. 46 -We don't manipulate the prices. 25 +We dont manipulate the prices. 25 We treat every customer equally. 27 John never indulges in malpractice. 30 We do not sell contaminated products. 31 @@ -13161,20 +13161,20 @@ Ensure the public receives fair treatment. 36 Yes, business ethics goes beyond just a moral code of right and wrong. 57 Are these attempts to reconcile what companies must do legally. 53 Emma, report any unethical incidences observed or experienced. 54 -Harry, doesn't have fear of retaliation for reporting misconduct. 55 +Harry, doesnt have fear of retaliation for reporting misconduct. 55 Rose, report unethical behavior in the workplace. 42 -You identify ethical courses of action in difficult grey-area situations. 62 -Why should managers be ethical? 26 +You identify ethical courses of action in difficult greyarea situations. 62 +Why should managers be ethical 26 It is to understand the gap between business ethics. 43 Yes, ethics involves learning what is right or wrong. 44 -Should jack lie to his boss? 22 -Should bob steal from jack? 22 -Our business requires to do trade-offs. 32 +Should jack lie to his boss 22 +Should bob steal from jack 22 +Our business requires to do tradeoffs. 32 Our executives need to demonstrate courage and personal integrity. 57 Mia, pay attention to ethics in the workplace. 38 Megan, manage ethics programs in the workplace. 40 Emma, develop codes of ethics. 25 -Do the code of ethics specifies the ethical rules of operation? 52 +Do the code of ethics specifies the ethical rules of operation 52 Mike, developed codes of conduct. 28 Joe, can you please redefine the standard of the workflow. 48 Every employee has to abide by the rules. 33 @@ -13201,16 +13201,16 @@ Please give your suggestions on the project. 37 We have to make things possible. 26 Joe, and James you have to take responsibility. 39 Daniel, I want you to work like adam. 29 -Max, you are doing a great job man! 27 +Max, you are doing a great job man 27 Bravo, your hard work is paying off. 29 Mike, you will get the reward this time. 32 Who wants to win the competition this time. 35 I will win the employee of the month. 29 -It's the time celebration team. 25 +Its the time celebration team. 25 Please ensure everyone attends the meeting. 37 I want you all to collaborate with me. 30 Everyone has contributed equally. 29 -Let's go to the party team. 20 +Lets go to the party team. 20 Emma, be consistent with what you do. 30 Max, focuses on clarity, accuracy, and thoroughness in communication. 60 Set the goal of working as a team. 26 @@ -13220,35 +13220,35 @@ Yes, a small trophy or even just a vocal recognition will do. 49 Do this in front of the group. 23 Max, be consistent in your rewards. 29 Megan, be the example. 18 -Olivia, don't lose your temper easily. 31 +Olivia, dont lose your temper easily. 31 Olivia, strive to be your ideal of the perfect worker. 44 -Mia, never go with one-size-fits-all. 29 +Mia, never go with onesizefitsall. 29 Your team is comprised of individuals with unique preferences. 53 Mia never uses the same approach to motivate. 37 Rose, focus on individuals and customize your approach. 47 The team remains as transparent as possible. 37 Transparency shows your integrity as a leader. 39 -Don't jeopardize your relationships. 31 +Dont jeopardize your relationships. 31 Encourage all opinions and ideas. 28 Everyone should actively participate in discussions. 46 Mia, make improvements to the organization. 37 Mia, never chastise a team member. 28 -Mike, don't discourage people from sharing their new thoughts. 52 +Mike, dont discourage people from sharing their new thoughts. 52 Boss help people enjoy work. 23 Rose, have casual conversations with your workers. 43 You should listen and ask questions. 30 -How do you feel about that? 21 -John, what are your thoughts about new trends? 38 +How do you feel about that 21 +John, what are your thoughts about new trends 38 Daniel, do you think we can launch a new product. 39 Will our product satisfy the new trend needs. 37 -Joe, please collect the competitor's information. 42 +Joe, please collect the competitors information. 42 Daniel, you have got some innovative ideas. 36 I need all the technological advancements. 36 -Till when can we think of launching it? 31 +Till when can we think of launching it 31 David, are all the resources available for production. 46 We have to set the goals. 19 David, make all the necessary arrangements. 37 -Olivia, carry out the buyer's personal. 32 +Olivia, carry out the buyers personal. 32 Follow as per the industry standards. 31 It will be a collective effect. 25 We need a holistic approach. 23 @@ -13260,7 +13260,7 @@ Bravo, validate your product ideas. 30 Talk about your idea with family and friends. 37 Harry, ask for feedback on forums. 28 Harry, get feedback from a substantial and unbiased audience. 52 -Does niche has the potential to take off? 33 +Does niche has the potential to take off 33 Megan, ask your potential customers what they like or dislike. 52 Bravo, take Megan to plan before you begin. 35 Rose, the sketch should be as detailed as possible. 42 @@ -13268,7 +13268,7 @@ Emma, do the prototyping of the product. 33 Donna, start prototyping usually involves experimenting. 50 John, start gathering the materials and securing the partners. 53 Donna, find multiple suppliers for the different materials. 51 -We safeguard our business for the long-term. 36 +We safeguard our business for the longterm. 36 We do research, planning, prototyping, and sourcing. 45 Mia, determine a retail price and gross margin. 39 We cater to the new tastes of consumers. 32 @@ -13284,56 +13284,56 @@ Bella, take advantage of market fads. 31 The degree of change for customers is sufficient to require the design. 59 The market is always evolving itself. 31 Marketing is about being able to meet consumer needs profitably. 54 -Don't wait for the stroke of genius to reveal the perfect product. 53 +Dont wait for the stroke of genius to reveal the perfect product. 53 New can be creatively fulfilling. 28 -Sir are we in a need of a new employee? 29 -Can you please check the finance department? 37 -Do we have a budget for new employees? 30 +Sir are we in a need of a new employee 29 +Can you please check the finance department 37 +Do we have a budget for new employees 30 Donna, please give me the list of employees. 36 Mia, will you help with the new requirement thing. 41 Harry, please have a word with every department. 40 I need all the reports on my table. 27 -When can I expect the results? 24 -Does the team on that project work well? 32 +When can I expect the results 24 +Does the team on that project work well 32 I think we require some new talent. 28 On what grounds are you thinking like this. 35 Sir, we need to update the skills of our employees. 41 -Ma'am, do you think the older employees are skillful? 43 -Max, do you want any help? 20 -Olivia, when can we discuss the budget? 32 -Is the operations team full? 23 -Yes ma'am we need new talent. 22 +Maam, do you think the older employees are skillful 43 +Max, do you want any help 20 +Olivia, when can we discuss the budget 32 +Is the operations team full 23 +Yes maam we need new talent. 22 We specifically require some technically skilled people. 49 Daniel requires three new members. 29 Harry, also has some requirements in his team. 38 David wants a new accountant. 24 -Let's plan the proceedings then. 26 -Till when we should hire new talent? 29 +Lets plan the proceedings then. 26 +Till when we should hire new talent 29 Please hire only if you are in desperate need. 37 We can also train the older employees. 31 Yes, I will take care of that. 23 -Fine then let's give chance to the young. 32 +Fine then lets give chance to the young. 32 Make things work as fast as possible. 30 Donna, please note all the points. 28 Max, I want you to lead this project. 29 Harry, will be assisting you with this. 32 You can always ask me for help. 24 I can help you with prospecting. 26 -Let's do this people. 16 +Lets do this people. 16 Let me talk to every department. 26 -Mia, will you guide through this? 27 +Mia, will you guide through this 27 I want everyone to be on the toes. 26 We need some smart minds. 20 Forget about lazy people. 21 We need someone enthusiastic. 25 Let me have a word with the management. 31 -I'll keep you informed on this. 24 -Make sure you don't make any mistakes. 30 +Ill keep you informed on this. 24 +Make sure you dont make any mistakes. 30 We will start hiring soon. 21 -Before let's check all the requirements. 33 +Before lets check all the requirements. 33 The right candidate is hard to get. 28 We will make things right this time. 29 -We don't any escalation this time. 27 +We dont any escalation this time. 27 Donna, I know you can do this. 23 I have full faith in you. 19 Rachel, you will do it for operations employees. 40 @@ -13342,51 +13342,51 @@ Emma, you can do for people. 22 Megan, you can guide everyone on how to do this. 38 No excuses will be entertained. 26 Each and everyone should note that. 29 -This time I'm very much curious. 25 +This time Im very much curious. 25 Mike, you have to supervise this takes. 32 You should include every criterion. 30 -Ma'am what will be the age criteria. 28 +Maam what will be the age criteria. 28 You can ask all the departmental heads about that. 41 -Do we require any specific skills? 28 +Do we require any specific skills 28 Yes, we do so ask the technical head of each team. 39 Every point should be understood by a layman. 37 -Don't forget to include our mission statement. 38 +Dont forget to include our mission statement. 38 Start with a greeting statement. 27 -Mention our company's history as well in the job description. 50 -Sir, will it be helpful to mention specifications? 42 +Mention our companys history as well in the job description. 50 +Sir, will it be helpful to mention specifications 42 No, we will include that in other documents. 36 -On what parameters we will judge? 27 +On what parameters we will judge 27 We have thought about it max, please tell everyone. 42 -Yes, ma'am so the team I'll guide on this. 31 +Yes, maam so the team Ill guide on this. 31 We will be taking three rounds. 25 First will be an aptitude test. 25 Followed by a group discussion. 26 Harry, you have to take care of the final interviews. 43 -Bella, will you take the hr round? 27 +Bella, will you take the hr round 27 Sure harry, just give me the final job description. 42 -Yes, I'll do that before proceeding. 29 +Yes, Ill do that before proceeding. 29 So team please prepare a good format of the job description. 49 Include the educational qualifications we are looking for. 50 -Sure ma'am we will take care of that. 28 -Megan, this time don't make a mistake about the age. 41 +Sure maam we will take care of that. 28 +Megan, this time dont make a mistake about the age. 41 We want all the youngsters to apply. 29 Yes sure as we need smart minds. 25 -Bravo, can you share the last job description you prepared? 49 +Bravo, can you share the last job description you prepared 49 Yes, will in a while. 16 David, please give me an idea of the criteria included. 45 -Daniel, be prepared with the finance profile's job description. 53 +Daniel, be prepared with the finance profiles job description. 53 Sure sir we will follow the same pattern. 33 Include technical skills required. 30 Eric, print the soft skills as well. 29 Jack, I want you to print all the job description.s. 41 -Sure sir I'll make a note of that. 25 +Sure sir Ill make a note of that. 25 David, right after the next page frame a job specification. 49 Daniel, ask althea departments for their requirement. 46 Harry, make a format as soon as possible. 33 -Max, do we have the last year's jess format. 34 -No sir we don't have it. 17 +Max, do we have the last years jess format. 34 +No sir we dont have it. 17 Not an issue we will frame a new one. 28 -Eric, what are the necessary points to be included? 42 +Eric, what are the necessary points to be included 42 Include althea rules to followed by an employee. 40 We have to include the office timings. 31 Also, mention the dress code. 24 @@ -13394,13 +13394,13 @@ Mike, make sure we mention the office structure. 40 Jack, please confirm the new telephone numbers. 40 Include all the phone numbers and the office address. 44 Rachel, can you make the left format. 30 -Right away ma'am I'll give you in two hours. 33 -That's so kind of mate. 17 +Right away maam Ill give you in two hours. 33 +Thats so kind of mate. 17 Donna, keep a check on the format,. 28 -Yes sir I'll ensure it to be the right one. 32 +Yes sir Ill ensure it to be the right one. 32 You have to abide by the rules of the company. 36 No coming late to the office. 23 -Politely treat your co-employees. 28 +Politely treat your coemployees. 28 Be formerly dressed in the office. 28 You would have to travel to the field. 30 You are required to have a laptop. 27 @@ -13411,42 +13411,42 @@ Sick leaves will be given only after a genuine document. 46 There will be a loss of pay for more leaves. 34 You are authorized to take fifteen paid leaves. 39 Your medical insurance will be taken care of by us. 41 -Max, have you followed up on yesterday's task? 37 -Yes, ma'am finance department wants a techie guy. 40 +Max, have you followed up on yesterdays task 37 +Yes, maam finance department wants a techie guy. 40 Mention the day to day activities for the profile. 41 Include all the conditions to join the organization. 44 Bella, check on the upcoming profiles. 32 -Ma'am do we need to mention working hours. 33 +Maam do we need to mention working hours. 33 Yes for sure darling mention the working hours. 39 Also, include extra pay will be provided for extra work. 46 -Don't forget to mention the annual appraisal. 37 +Dont forget to mention the annual appraisal. 37 Mia, mention the territorial area to be controlled. 43 You have to target all the counters in the area. 38 -Jack, I hope you'll make it right. 26 +Jack, I hope youll make it right. 26 Yes sir you can count on me. 21 Team the specifications should be cut to the point. 42 The candidate should not confuse about it. 35 -Sure ma'am we are here to take care of that. 33 -From when can we start posting the ads? 31 -How many profiles we have to post? 27 -May I know the exact number of requirements? 36 +Sure maam we are here to take care of that. 33 +From when can we start posting the ads 31 +How many profiles we have to post 27 +May I know the exact number of requirements 36 Donna, please check with all the ad platforms. 38 -Do we have the subscriptions available? 33 -Which platforms we should target to show ads? 37 +Do we have the subscriptions available 33 +Which platforms we should target to show ads 37 Rachel, give me the timeline for posting the ads. 40 Max, you have to take care of the results. 33 -Let's roll out the ads as soon as possible. 33 -Let's hope for a better response. 26 -Do you think social media will help? 29 -I think yes, ma'am we should with it. 28 -So harry, it's your responsibility. 29 -Joe, is the content ready for social media posting? 42 -How much are we expecting from social sites? 36 +Lets roll out the ads as soon as possible. 33 +Lets hope for a better response. 26 +Do you think social media will help 29 +I think yes, maam we should with it. 28 +So harry, its your responsibility. 29 +Joe, is the content ready for social media posting 42 +How much are we expecting from social sites 36 We are open to hiring. 17 Apply for your dream job. 20 Get your career started. 20 -Let's work with the best in the industry. 32 -Do you want to work with us? 21 +Lets work with the best in the industry. 32 +Do you want to work with us 21 Early applying leads to early joining. 32 We have to roll out the forms now. 26 Emma, you can buy the subscriptions needed. 36 @@ -13454,67 +13454,67 @@ Start posting on daily basis. 24 Bella, lookout for a cheap subscription. 34 Rose, you have to take care of monster.com. 34 Tell me if you need anything. 23 -Let's start hunting the candidates. 29 +Lets start hunting the candidates. 29 We have to find the right fit guys. 27 Megan, I want you to handle the incoming response. 41 We shall close the ads by next month. 29 -Rose, I'm expecting the right people this time. 38 -The team doesn't let me down. 22 +Rose, Im expecting the right people this time. 38 +The team doesnt let me down. 22 Best place to shape your career. 26 Give them all the resources needed. 29 -Bravo, will look after the follow-ups. 31 +Bravo, will look after the followups. 31 David, can you speed up the postings. 30 I think social media is very influential. 34 Next time we will buy Naukri first. 28 -Guys don't forget to post on LinkedIn. 30 +Guys dont forget to post on LinkedIn. 30 I want everyone to share this post. 28 Connect with all your prospective candidates. 39 Sam, we need your sources. 21 Lucy, you need to buck up this time. 28 -I'm counting on you Rachel this time. 29 +Im counting on you Rachel this time. 29 Hiring starts next month. 21 Enroll for your dream job. 21 If you are passionate then we are ready to hire. 38 The right place to showcase your skills. 33 -Donna, have we closed taking the applications? 39 +Donna, have we closed taking the applications 39 Yes sir it was closed yesterday evening. 33 Rachel, give me a count on the number of applicants. 42 -Do we have the resume of every candidate? 33 -We had asked them to send the resume right? 34 -Yes ma'am we did and most of them have sent. 33 -Sure then how many applicants do we have? 33 +Do we have the resume of every candidate 33 +We had asked them to send the resume right 34 +Yes maam we did and most of them have sent. 33 +Sure then how many applicants do we have 33 Sir, we have a hundred applicants so far. 33 Megan, start the screening process as soon as possible. 46 I want you all to scan properly. 25 Jack, help them in doing the same. 27 Emma split the candidates as per their applied profile. 46 No one should be left out. 20 -Eric, will you please help Emma? 26 -Yes, sure ma'am I'm always there to help. 31 -Sir on what basis do we need to reject an application? 43 +Eric, will you please help Emma 26 +Yes, sure maam Im always there to help. 31 +Sir on what basis do we need to reject an application 43 Reject if there is a year gap in education. 34 -Cancel if the applicants haven't sent a resume. 38 +Cancel if the applicants havent sent a resume. 38 Do not include the ones with no work experience. 39 We will allow if they have a relevant experience. 40 -How many candidates do we need for the second round? 42 +How many candidates do we need for the second round 42 Let us finish the screening then we can think of it. 41 We will take the utmost 75 people for the next round. 42 David, sort out the technical profiles separately. 43 Max, you do thru same for the finance profile. 37 Mia, your job is to tell me the exact number of rejections. 47 Bravo, you help max with the task. 27 -Sir, can we take fresher's? 21 +Sir, can we take freshers 21 Yes but only if they are from b schools. 31 -Do we need fresher with a 60 percent criteria? 37 +Do we need fresher with a 60 percent criteria 37 Yes, we want the candidates to be first class students. 45 -Megan, when shall I expect the screening done? 38 +Megan, when shall I expect the screening done 38 Sir, we will finish the process by Wednesday evening. 44 Olivia, you have to be specific with the operations profile. 50 -How many applicants we have for the hr profile? 38 -Ma'am only fifteen of them have applied. 32 -Oh! well, that's a good number. 23 +How many applicants we have for the hr profile 38 +Maam only fifteen of them have applied. 32 +Oh well, thats a good number. 23 We always receive less number of applicants for hr. 42 -Still, it's our job to find the right fit. 32 +Still, its our job to find the right fit. 32 Yes, we will find the right person to do the job. 38 Rose, check for the excel skills people. 33 John, I want good people with the best communication skills. 50 @@ -13523,35 +13523,35 @@ David, search for the techie guy. 27 We need the best of the best this time. 30 I hope we all are on the same page. 26 Yes sir we are all with you. 21 -Joe, it's your job to notify me when it's done. 35 -Yes boss I'll make a note of that. 25 +Joe, its your job to notify me when its done. 35 +Yes boss Ill make a note of that. 25 Thanks a lot, team for your efforts. 29 -Megan, what's the count for applicants coming or interview. 49 -Sir, there is a total of twenty-five students scheduled. 46 +Megan, whats the count for applicants coming or interview. 49 +Sir, there is a total of twentyfive students scheduled. 46 Rachel, will you please give the list of candidates. 43 -At what time have we called them for the process? 39 +At what time have we called them for the process 39 We will start the process by 11 am. 27 -Where will it happen? 17 -Are all the candidates informed about timings? 39 +Where will it happen 17 +Are all the candidates informed about timings 39 Yes, we have sent an email regarding the same. 37 Eric, have you checked all the arrangements. 37 -David, I don't want any on time arrangements. 36 +David, I dont want any on time arrangements. 36 Jack, you will asset all the applicants. 33 -Emma, where is the list I'm still waiting. 33 -Rose, are all the lights working in the cabin? 37 +Emma, where is the list Im still waiting. 33 +Rose, are all the lights working in the cabin 37 Let me check sir. 13 Hope you all know your responsibilities. 34 -It is a big day for us, best of luck! everyone. 35 -Bravo, have you checked the systems? 30 +It is a big day for us, best of luck everyone. 35 +Bravo, have you checked the systems 30 All ok sir everything is in position. 30 -So who wants to take a finance profile? 31 +So who wants to take a finance profile 31 Eric, you can handle the finance profile applicants. 44 Bella, you take care of operations people. 35 Olivia will assist me with supervision. 33 -Mia, can you handle hr applicants? 28 -Sure sir I'll be more than happy to do that. 33 +Mia, can you handle hr applicants 28 +Sure sir Ill be more than happy to do that. 33 Max, I want you to thoroughly look for sales guys. 40 -Are all the questions prepared? 26 +Are all the questions prepared 26 I want you guys to ask questions as per the profile. 41 If you need help ask Olivia for that. 29 Olivia is good at framing questions for applicants. 43 @@ -13566,38 +13566,38 @@ We will start the process in a bit. 27 Till then ask everyone if they want anything. 37 Bella, send the candidates one by one. 31 Make sure each applicant goes to the right cabin. 40 -We have allotted a different cabin for each profile, right? 49 -Max, make a note of the student's testimonials. 38 +We have allotted a different cabin for each profile, right 49 +Max, make a note of the students testimonials. 38 Harry, you have to take feedback from everyone. 39 We will try to finish it off as soon as possible. 38 -Let's buck up team we need the right people this time. 42 +Lets buck up team we need the right people this time. 42 Rachel will help us in coordinating together. 38 David will take care of things during the process. 41 Max, last time will you check the system. 33 -Ma'am, you don't worry everything is in line. 35 -Let's go get the best one then. 23 -What's the status of the results team? 30 +Maam, you dont worry everything is in line. 35 +Lets go get the best one then. 23 +Whats the status of the results team 30 Sir, we have shortlisted a total of 12 candidates. 41 There are 3 candidates for each department. 36 Rachel, make a list of all the shortlisted ones. 39 Mia, follow up with everyone and call them to the office. 46 We will announce the results today. 29 Emma, please be ready with the documentation process. 45 -I don't need any one-time escalations. 30 +I dont need any onetime escalations. 30 Be prepared everyone. 18 Donna, make arrangements for the candidates. 38 Hello everyone we will be announcing the results in a bit. 47 Hold on to your breath some of you will be getting their dream job now. 56 Results are a part of the process. 27 -Don't be disheartened if you are not selected. 37 +Dont be disheartened if you are not selected. 37 You have done your best. 19 Bella, please start announcing the names. 35 -David, you'll specify their profiles parallel. 39 +David, youll specify their profiles parallel. 39 Bravo, note down their names accordingly. 35 Applicants total of 12 people is selected among you. 43 I request non selected people to leave. 32 -Don't be upset we know and will give you a call in the future. 47 -Non-selected people can again apply in the future. 41 +Dont be upset we know and will give you a call in the future. 47 +Nonselected people can again apply in the future. 41 It was nice to interview your people. 30 Ok, the selected one please gather in the conference hall. 48 Congratulations everyone for your selection. 39 @@ -13608,10 +13608,10 @@ Hope to see you soon working for us. 28 Max, can you arrange some refreshments for them. 40 Harry, will provide you with your offer letters. 40 Bravo, please arrange their selection gift kit. 40 -Sure sir I'll be on it. 16 +Sure sir Ill be on it. 16 It was a tough process I tell you. 26 You guys have deep potential to be here. 32 -I'm very happy with the results team. 29 +Im very happy with the results team. 29 Kudos to all of us. 14 We have to celebrate this soon. 25 Joe will guide you all the documentation process. 41 @@ -13625,9 +13625,9 @@ Olivia, till then you talk to the candidates. 37 Sam, make them feel comfortable. 27 Mike, please ask the office boy to arrange tea or coffee. 46 Finally, we did guys congratulations to us. 36 -Rahul, what is the date of joining for new employees? 43 +Rahul, what is the date of joining for new employees 43 Sir, it is from the coming Monday that is the first of august. 49 -Ok so have we made all arrangements? 29 +Ok so have we made all arrangements 29 Yes, everything is in line. 22 We are all set to welcome our new workforce. 35 Emma, send all the new joiners a welcome note. 37 @@ -13636,7 +13636,7 @@ Ask everyone to be on time. 21 Donna, make arrangements for a conference meeting. 43 Mia, call each new joined and tell them the joining details. 49 Joe, make a list of line managers for each separately. 44 -Today they are joining the right team? 31 +Today they are joining the right team 31 Yes, sir from today new joiners will start their journey. 47 Welcome everyone on board. 22 We are pleased to have you in our time. 30 @@ -13651,50 +13651,50 @@ Max, will give you through all the technical systems. 44 Megan, take them through the company guidelines. 41 All you must undergo the security scans. 33 We are all equipped with the latest security equipment. 46 -Don't worry all your information is safe with us. 39 +Dont worry all your information is safe with us. 39 Make sure you keep your belongings in the desired area only. 49 Littering in the office will not be tolerated. 38 -You can seek permission from line managers for half-day. 46 +You can seek permission from line managers for halfday. 46 There will be a total of 4 breaks in a day. 32 3 of them will be relaxed breaks. 26 One will be a lunch break. 20 Make sure you finish your lunch within the stipulated time. 49 -Are you all clear about the instructions? 34 +Are you all clear about the instructions 34 If there is any query come directly to me. 33 -Sure ma'am we have understood all the instructions. 42 +Sure maam we have understood all the instructions. 42 Be happy at the workplace and work efficiently. 39 You will be given ample time to learn. 30 -Don't misuse any of the company's assets. 32 -If you don't know anything directly ask your line managers. 48 +Dont misuse any of the companys assets. 32 +If you dont know anything directly ask your line managers. 48 Your subordinates are always there to help you. 39 Olivia will be your mentor for the first ten days. 40 Later on, you all be handed over to respective line managers. 50 -Rose, will be your all-time office help. 32 +Rose, will be your alltime office help. 32 Max, is the mediator between office staff. 35 Once again congratulations and a warm welcome from us. 45 Do well, focus on what you do. 23 -Work as if it's your organization. 27 -Team, we are done with the induction right? 35 +Work as if its your organization. 27 +Team, we are done with the induction right 35 Yes, sir, the onboarding and induction process is done. 46 Ok then now we have to move towards the training part. 43 David, sort out the names as per department. 36 Bravo, you help David with that. 26 Harry, I need you to prepare a rough training format. 43 Max, you will be a helping hand for harry. 33 -Sure, sir, I'm always at your service. 30 +Sure, sir, Im always at your service. 30 Jack, tell all the employees to be prepared for training. 47 Send them the details of the date and time. 34 So the team there will be training for the exact one month. 47 It will include in house as well as on the job training. 44 Each employee has to undergo training. 32 -It's your responsibility to handle them. 33 +Its your responsibility to handle them. 33 Also giving them proper knowledge about the corporate. 46 We will also be arranging corporate lectures. 38 Rachel, please talk to the industry experts. 37 This needs to be a rigorous training session. 37 All the sessions will be monitored by me. 33 -Emma, I'll need your help in monitoring the sessions. 43 -Sure ma'am I also have a bit of experience of doing it. 42 +Emma, Ill need your help in monitoring the sessions. 43 +Sure maam I also have a bit of experience of doing it. 42 That is great then we will handle monitoring. 37 Training sessions will comprise of all profile knowledge. 49 Rose, you handle the finance people separately. 40 @@ -13708,25 +13708,25 @@ We will add one more break if needed. 29 Mia, contact all the trainers. 25 Get their confirmation on dates. 27 And also ask the trainers to bring their content. 40 -Training is the most important part of an employee's journey. 50 +Training is the most important part of an employees journey. 50 So we have to be very careful and intuitive. 35 Start collective all the necessary content for the same. 47 We will also be arranging video lectures. 34 -Joe, do you think we should include activities? 39 +Joe, do you think we should include activities 39 Yes, sir activates help a lot to learn. 31 Ok, then we will arrange some fun activities as well. 43 Jack, start preparing some fun activities. 36 At the end of the training sessions, we will take a small test. 50 And at the end of the training, we will conduct an exam. 44 This exam is just to check the knowledge. 33 -It won't result in any layoffs. 24 -We also need to be prepared fully right? 32 -Yes ma'am I have shared some links in our group check it out. 47 +It wont result in any layoffs. 24 +We also need to be prepared fully right 32 +Yes maam I have shared some links in our group check it out. 47 Sure thanks Megan, for your efforts. 30 -Thank god I have such a lovely team! 28 +Thank god I have such a lovely team 28 Now that the training is done we should take some feedback. 48 I want all of you to take it seriously. 30 -Employee's feedback will help us plan for the future. 43 +Employees feedback will help us plan for the future. 43 Lucy, you will be handling this process. 33 Rachel, you will assist lucy in this. 30 Donna, please make a feedback format. 31 @@ -13734,26 +13734,26 @@ Joe, I want you to send the notifications to everyone. 44 Anna, make separate formats for the head of departments. 47 Bella, make specific issues printed on it. 35 Emma, you can discuss it with line managers. 36 -Sir how to distribute the forms? 26 +Sir how to distribute the forms 26 I think we should do it digitally from now onwards. 41 -It will save us a lot of paper and it's quite easy also. 42 -What do you people think? 20 -Yes sir we need to take step towards environment-friendly ideas. 53 +It will save us a lot of paper and its quite easy also. 42 +What do you people think 20 +Yes sir we need to take step towards environmentfriendly ideas. 53 Ok then is confirmed to distribute the forms online. 43 -We will send the feedback forms to everyone's email id's. 45 +We will send the feedback forms to everyones email ids. 45 Mia, list out all the email ids. 25 -Rose, don't forget to make a separate seer for the head of departments. 57 -Megan, when will you send the emails? 30 -Ma'am, I'll do it by today evening. 26 -That's good I think my team is doing very well these days. 45 -Thanks a lot, ma'am for your appreciation. 34 +Rose, dont forget to make a separate seer for the head of departments. 57 +Megan, when will you send the emails 30 +Maam, Ill do it by today evening. 26 +Thats good I think my team is doing very well these days. 45 +Thanks a lot, maam for your appreciation. 34 Olivia, just remind me to talk to tomorrow. 35 -Yes sir I'll make a reminder in your system. 34 -Thanks a lot that's very nice of you. 28 +Yes sir Ill make a reminder in your system. 34 +Thanks a lot thats very nice of you. 28 Give the employees a stipulated time to fill the forms. 45 Ask them to submit as soon as possible. 31 Also share a spreadsheet so that they can mark on it after submission. 57 -Sam, it's your responsibility to give me that spreadsheet. 48 +Sam, its your responsibility to give me that spreadsheet. 48 John, you will get all the complaints directly from the head of departments. 63 Mike, have a word with the security department. 39 We want feedback from them as well. 28 @@ -13761,27 +13761,27 @@ Joe, make a different format for the security department. 48 Make the format in the Hindi language. 31 Most of the security people speak Hindi. 33 Try to print that format on paper only. 31 -There are only a few people so it won't be any problem. 42 +There are only a few people so it wont be any problem. 42 Bravo, after collecting the feedback sort it department wise. 52 Daniel, you specifically look for the complaints raised. 48 David, if there is anything serious issue tell me directly. 49 Eric, ask Megan to include the rating scale as well. 42 Jack, your job is to separate as per the ratings. 39 -Harry, please tell the people who give a 5-star rating. 44 +Harry, please tell the people who give a 5star rating. 44 Max, you just ask people the reason for low ratings. 42 After all the feedback thing we will schedule a team meeting. 50 This meeting will be for planning to escalate the issues. 47 Also, we will focus on solving similar problems. 40 This will help us to work well. 24 I need everyone to attend the meeting. 31 -How is everybody at work? 20 -Are you people enjoying working with us? 33 -Is there anyone who needs some motivation? 35 -Team, I think it's now time to motivate the employees. 43 +How is everybody at work 20 +Are you people enjoying working with us 33 +Is there anyone who needs some motivation 35 +Team, I think its now time to motivate the employees. 43 We should now plan to engage our employees together. 43 This will help them to know each other properly. 39 -It gives a boost working in the team right? 34 -Do you want me to plan that? 21 +It gives a boost working in the team right 34 +Do you want me to plan that 21 Yes of course sir we think that some new activities should be planned. 57 Ok then call for a meeting in the evening. 33 Sam, prepare the minutes for the meeting. 34 @@ -13792,64 +13792,64 @@ Bravo, you think of what new we can do this time. 38 Daniel, go through old videos and get an idea about it. 44 David, you plan to get the stuff needed. 32 Eric, you come with me we will seek permission from coo. 45 -Jack, can you make a little presentation on that? 40 +Jack, can you make a little presentation on that 40 Sure sir, actually I have already some examples ready. 45 -Good job jack, I'm pretty impressed by you. 34 -Thanks a lot, sir it's all because of your teachings. 42 +Good job jack, Im pretty impressed by you. 34 +Thanks a lot, sir its all because of your teachings. 42 Harry, you have to make a notification message. 39 Max, you will paste the notification on the board. 41 Lucy, will you share this message with everyone. 40 Rachel, make a team for the procurement of materials. 44 Donna, work on humorous activities. 30 -Joe, do we have stuff from the last activity sessions? 44 -Yes ma'am we have some which can be still used. 36 -Ok, then we won't spend much on material stuff. 37 -Anna, will we need to call any artists? 31 -Not necessarily, but we can call some stand-up comedians. 47 +Joe, do we have stuff from the last activity sessions 44 +Yes maam we have some which can be still used. 36 +Ok, then we wont spend much on material stuff. 37 +Anna, will we need to call any artists 31 +Not necessarily, but we can call some standup comedians. 47 Guys this time we will do it in the office only. 37 We are short of budget this time. 26 -Hope you understand people? 23 +Hope you understand people 23 Yes sir we know that this year we have spent a lot. 39 -What kind of activities are you looking forward to executing? 51 -Sir, I think we should include a quiz on our company's history. 50 -That's a great idea, Bella. 21 -I'll keep in mind to include this. 26 +What kind of activities are you looking forward to executing 51 +Sir, I think we should include a quiz on our companys history. 50 +Thats a great idea, Bella. 21 +Ill keep in mind to include this. 26 Emma, do one thing note all the activities. 35 We will sort and choose the best ten of them. 35 In a day we can only do ten activates. 29 -Mia, will you coordinate with the event management team? 47 +Mia, will you coordinate with the event management team 47 Rose, you give a helping hand to mia. 29 Both of you do negotiate with them and tell me. 37 -Sure ma'am we will keep the cost as low as possible. 40 +Sure maam we will keep the cost as low as possible. 40 Megan, take suggestions from all employees. 37 Olivia, look for a better proposal. 29 We need to work hard on this thing. 27 I think we are at the end of the financial year. 37 So we need to plan to reward our star employees. 38 Schedule a meeting for the same. 26 -Does anybody have plans for this? 27 +Does anybody have plans for this 27 Lucy, take the charge this time. 26 I want you guys to handle it on your own. 31 All the planning and execution will be done by you guys. 45 I want to take some rest this time. 27 -Are employees working hard than before? 33 -Yes ma'am some of them are doing exceptionally well. 42 +Are employees working hard than before 33 +Yes maam some of them are doing exceptionally well. 42 Ok then let me know all the details by tomorrow. 38 -Sure sir we will give a follow-up on this. 32 +Sure sir we will give a followup on this. 32 I will take care of the planning. 26 Lucy, find a good vendor for trophies. 31 Rachel, make a list of star employees. 31 -Who do you think will be an employee of the year? 38 -Can we have some nominations? 24 +Who do you think will be an employee of the year 38 +Can we have some nominations 24 Donna, give me the nomination list by evening. 38 We will do voting this time. 22 It will be equal for everyone. 24 The nominations will be based on experience. 37 It will include behavior and achievements as well. 42 -Who is the best contender this time? 29 -Do you have anyone's name in mind? 26 -Ma'am, are we going to have a party after that? 36 -I said before it's all unto you people. 30 +Who is the best contender this time 29 +Do you have anyones name in mind 26 +Maam, are we going to have a party after that 36 +I said before its all unto you people. 30 Yes of course we can arrange after party. 33 The winners will pay for it. 22 Just kidding we have funds for the party. 33 @@ -13861,78 +13861,78 @@ We will be rewarding one member of each team. 36 One will be an employee of the year. 28 The second will be want to be an employee of the year. 42 Separate rewards for the head of departments will be given. 49 -Do you want to include the board of directors? 37 -Ma'am, they don't involve these things. 31 -Yes but still it's our responsibility to include everyone. 48 +Do you want to include the board of directors 37 +Maam, they dont involve these things. 31 +Yes but still its our responsibility to include everyone. 48 Ok, then we will have a separate category for that. 41 -And from our team who is the one? 25 +And from our team who is the one 25 I think everyone in our team does exceptionally well. 44 We will do the voting for our team separately. 37 But remember every year we give rewards. 33 -No matter if you don't get this time. 28 +No matter if you dont get this time. 28 You can always try for next year. 26 I hope people will be happy after the rewards. 37 May the best one will get rewarded. 28 The eligible person will only get rewards. 35 -All the line managers should recognize subordinate's work. 49 +All the line managers should recognize subordinates work. 49 You have done a great job. 20 I must tell you are growing. 22 -I'm pretty much impressed by you. 26 +Im pretty much impressed by you. 26 Keep doing the great work. 21 -I bet there's no one other who can do this. 32 +I bet theres no one other who can do this. 32 I hope you are satisfied. 20 -I think you're the best on my team. 26 +I think youre the best on my team. 26 Great going man keep it up. 21 -Wow! that was an amazing deal you cracked. 33 +Wow that was an amazing deal you cracked. 33 I always wanted an employee like you. 30 You have high standards mate. 24 -That's very impressive to get going. 29 +Thats very impressive to get going. 29 Your hard work is paying off now. 26 I want you to excel in your career. 27 I will recommend you for the reward. 29 I know you are the employee of the year for next year. 42 You must keep doing the good work. 27 -That's a huge accomplishment congratulations mate. 43 +Thats a huge accomplishment congratulations mate. 43 Will always want you to be my finisher. 31 You have the best talent among everyone. 33 I hope to see you at the top. 21 The day is not very far my child. 25 -You'll be the best performer this time. 31 +Youll be the best performer this time. 31 I hope for your better future ahead. 29 -Don't hesitate to take your own decision. 33 -That's amazing what you have done. 27 +Dont hesitate to take your own decision. 33 +Thats amazing what you have done. 27 No one could match your level. 24 You are doing exceptionally well in every aspect. 41 Please be patient and keep the focus on. 32 Do as you used to do it before. 23 I have something great to tell you. 28 -There's a reward for you coming up. 27 +Theres a reward for you coming up. 27 You are the best on my team. 21 I want you to learn from Rachel. 25 Emma, you are such an amazing person. 30 Mia, I knew you are the one. 21 -Bella, I always thought you'd be the next performer. 42 +Bella, I always thought youd be the next performer. 42 Rose, I always looked upon you. 25 You guys have done a great job. 24 You are the best anyone could have asked for. 36 I think we are the best team in the company. 34 You are doing a level next kind of work. 31 I wish you good luck with the task. 27 -I'm very much sure you'll do it. 23 +Im very much sure youll do it. 23 Megan, I knew you are the one who can do it. 33 Olivia, I always had faith in you. 27 -David, you're my team leader. 23 +David, youre my team leader. 23 Bravo, you are such an achiever. 26 Harry, you are the jack of all trades. 30 -Is there some conflict going on between employees? 42 +Is there some conflict going on between employees 42 I think something is wrong between them. 33 -Yes, the ma'am sales team is not working properly. 40 +Yes, the maam sales team is not working properly. 40 There are some differences between them. 34 I think we should encounter some issues. 33 -What do you think team? 18 +What do you think team 18 Yes sir we have to take charge. 24 Or else the conflict may arise into a job termination. 44 -Sam, go check with every team and tell me what's happening. 47 +Sam, go check with every team and tell me whats happening. 47 I want to get to the bottom of the issue. 31 It has been rattling for a long time. 29 This issue should be resolved as quickly as possible. 44 @@ -13941,51 +13941,51 @@ Mike, can you please call the receptionist. 36 Joe, check if the problem is with the head of departments. 47 Bravo, keep an eye on rose, she had some conflict last day. 47 This time, it should be something important. 37 -I don't want people to fight on lame excuses. 35 +I dont want people to fight on lame excuses. 35 All are mature enough still this kind of behavior. 41 -I don't want to see this next time. 26 +I dont want to see this next time. 26 Emma, why do you always disagree. 27 I think salespeople coming late is the problem. 39 No matter what the problem we should solve. 35 Please anyone having a problem tries to resolve. 40 We are employees here not friends. 28 Keep your grudges with yourself. 27 -This is a company we don't need any fights. 33 +This is a company we dont need any fights. 33 This kind of issue will not be tolerated. 33 -I think we are all grown-ups. 22 +I think we are all grownups. 22 Megan, use strict methods to deal with it. 34 We are ready to accept mistakes. 26 But bad behavior will not be accepted. 31 -This will impact an employee's productivity. 37 +This will impact an employees productivity. 37 Olivia, will check and confirm the issue. 34 Sam, will listen to the problems. 27 Later he will give his feedback. 26 Then we will think about what steps should be taken. 42 Joe, I need your help with this. 25 -Bravo, will you talk to the head of departments? 39 +Bravo, will you talk to the head of departments 39 We need a firm decision on these. 26 -If we follow the guidelines then it wouldn't have happened. 48 +If we follow the guidelines then it wouldnt have happened. 48 Negligence is the factor for this issue. 33 -You guys don't need someone to watch all the time right? 44 +You guys dont need someone to watch all the time right 44 So if it is the case then you must make peace. 35 We are a family we have to make peace with each other. 42 -Have your opinions but don't unseen others too. 38 +Have your opinions but dont unseen others too. 38 Having different thought is good. 28 -But don't force to let others have the same thought. 41 -We don't need any conflicts after this. 31 +But dont force to let others have the same thought. 41 +We dont need any conflicts after this. 31 Help each other to get things done. 28 -How is the performance of employees? 30 -Is everybody's working well? 23 +How is the performance of employees 30 +Is everybodys working well 23 Lucy, give me a detailed report on this. 32 Rachel, I need detail of every employee. 33 -Are they achieving their targets? 28 +Are they achieving their targets 28 If not then we have to take some strict actions. 38 -I don't like doing this but it has to be done. 34 -I want everybody's progress report. 29 +I dont like doing this but it has to be done. 34 +I want everybodys progress report. 29 We only want productive employees in our organization. 46 This is not a place for lazy people. 28 We want people to work efficiently. 29 -Donna, give me the list of non-performing employees. 43 +Donna, give me the list of nonperforming employees. 43 We need to talk to them. 18 This is a serious matter. 20 Joe, help donna with that. 21 @@ -13994,114 +13994,114 @@ Check what is bothering them. 24 Mia, confirm the unproductive tasks. 31 Rose, we need this done as soon as possible. 35 Olivia, first try to give them suggestions. 36 -If the employees don't listen then tell me. 34 -Is everybody working well? 22 +If the employees dont listen then tell me. 34 +Is everybody working well 22 Everyone will be treated equally. 28 Rules are the same for everyone. 26 No work means no salary. 19 Sam, first listen to their problem. 29 Think about it and then you tell me. 28 -I'll think of keeping them are not. 27 -Mike, this is the last warning I'm giving you. 36 -Bravo, I hope you won't do this again. 29 -Daniel, what I've told you is the last time I'm doing it. 43 +Ill think of keeping them are not. 27 +Mike, this is the last warning Im giving you. 36 +Bravo, I hope you wont do this again. 29 +Daniel, what Ive told you is the last time Im doing it. 43 I think this cannot be tolerated. 27 You will be suspended for two months. 30 If you are found to be improving then we can think again. 45 Rehiring will be done later on. 25 -There's room for improvement. 24 -If you don't do this right it will be a problem for you. 42 -It's a tough time for us also. 22 -We don't like doing this. 19 +Theres room for improvement. 24 +If you dont do this right it will be a problem for you. 42 +Its a tough time for us also. 22 +We dont like doing this. 19 Eric, I have lost all the patience. 28 I need to resign as soon as possible. 29 The management wants this to happen immediately. 41 Your consistently low performance is the reason. 41 -Don't be disheartened you'll get another opportunity. 44 +Dont be disheartened youll get another opportunity. 44 Try searching somewhere else. 25 It was a pleasure having you on the team. 32 Learn from your mistakes. 21 Never make the same mistakes again. 29 -Don't be unproductive in any organization you join. 42 -Do you mind waiting a few minutes? 27 -I'm calling to clarify. 18 -I'd like to leave him a message. 24 -When is a good time to call? 21 +Dont be unproductive in any organization you join. 42 +Do you mind waiting a few minutes 27 +Im calling to clarify. 18 +Id like to leave him a message. 24 +When is a good time to call 21 Hello, this is mike from the travel agency. 35 -Hi, it's sam from the tata company. 27 -Hello, may I speak to sam? 20 -I'd like to speak to Mr. Joe. 20 -I'm calling to ask about you. 22 +Hi, its sam from the tata company. 27 +Hello, may I speak to sam 20 +Id like to speak to Mr. Joe. 20 +Im calling to ask about you. 22 I just wanted to ask about the article. 31 -Hi, Rachel, how are you? 19 -How are you getting on with? 22 -I am sorry, she's not here today. 25 -I'm afraid she's not available at moment. 32 -Can I take a message? 16 -I'll give her your message. 21 -Could you please take a message? 26 +Hi, Rachel, how are you 19 +How are you getting on with 22 +I am sorry, shes not here today. 25 +Im afraid shes not available at moment. 32 +Can I take a message 16 +Ill give her your message. 21 +Could you please take a message 26 Please tell her that I am here. 24 -I'd like to manage things. 20 -When is a good time to call her? 24 -When is she going to be back? 22 -Could I ask what company you're with? 29 -Could you give me your mobile number, please? 37 -Could you spell that for me, please? 29 -How do you spell that, please? 24 +Id like to manage things. 20 +When is a good time to call her 24 +When is she going to be back 22 +Could I ask what company youre with 29 +Could you give me your mobile number, please 37 +Could you spell that for me, please 29 +How do you spell that, please 24 Let me see if I got that right book. 27 -Would you mind speaking up a bit? 26 -I can't hear you very well. 20 +Would you mind speaking up a bit 26 +I cant hear you very well. 20 How about the following week. 24 -Shall we say January 20? 19 -What would you suggest? 19 -Do you have a time in mind? 20 -I'll send you the report as soon as possible. 35 +Shall we say January 20 19 +What would you suggest 19 +Do you have a time in mind 20 +Ill send you the report as soon as possible. 35 I will pay for this bill. 19 -Not as far as I'm concerned. 21 +Not as far as Im concerned. 21 Not in my book. 11 Okay, it is by me. 13 -See if I care! 10 -Go away and mind your own business! 28 +See if I care 10 +Go away and mind your own business 28 Not according to my views. 21 -That's fine with me. 15 -I don't care if you do it. 18 -Believe me! I am telling you the truth. 30 +Thats fine with me. 15 +I dont care if you do it. 18 +Believe me I am telling you the truth. 30 Pain in the neck. 13 Say a word for word. 15 The way the wind blows. 18 I enjoyed meeting you, mark. 23 -Don't worry, I'll make sure to stay in touch. 34 -Have you seen the way she dresses? 27 -Oh, Ana, don't jump to conclusions! 28 -Are you going to come to Peru? 23 -I'm not sure yet. 12 +Dont worry, Ill make sure to stay in touch. 34 +Have you seen the way she dresses 27 +Oh, Ana, dont jump to conclusions 28 +Are you going to come to Peru 23 +Im not sure yet. 12 I need to sleep on it before giving you. 31 -Well, it's unusual nowadays. 23 -What a small world! 15 -Seriously? that's funny. 19 -Oh no! I forgot toothpaste! 21 +Well, its unusual nowadays. 23 +What a small world 15 +Seriously thats funny. 19 +Oh no I forgot toothpaste 21 Never mind, we will just do it. 24 -Oh, come on! 9 -I don't feel like going out tonight. 28 +Oh, come on 9 +I dont feel like going out tonight. 28 Come on, sheila, the band is great. 28 -Okay. I guess it's done. 17 -I'm sorry, it slipped my mind. 23 +Okay. I guess its done. 17 +Im sorry, it slipped my mind. 23 Sure. no problem. 13 Thanks. I owe you one. 16 -How was your interview today? 24 +How was your interview today 24 I think it went okay. 16 Hand in there, Stella. 18 -What movie do you want to watch? 25 -It's up to you. I don't have a preference. 30 +What movie do you want to watch 25 +Its up to you. I dont have a preference. 30 It is a pleasure to meet you. 22 At your earliest convenience. 25 Concerned about you always. 23 Firstly, let us talk about yesterday. 31 Give my regards to your grandfather. 30 -Have you seen tom? 14 +Have you seen tom 14 I agree with my colleague, Anna, that hard work matters. 46 I would like to remind you that you have left up with the same work. 53 -I appreciate your assistance! 25 +I appreciate your assistance 25 In light of fact that I owe you more always. 34 It is my opinion that once you meet your mom. 35 It is necessary for me to go to school. 30 @@ -14109,10 +14109,10 @@ It is not necessary for you to go out of the house. 39 It is recommended you go to the hospital. 33 Please accept our apologies for not accepting the gift. 46 Furthermore, we need to discuss our future together. 44 -Lastly, I wasn't lying to you anything about last night. 45 +Lastly, I wasnt lying to you anything about last night. 45 She has the ability to speak in English. 32 The plan was implemented. 21 -Our destination is not here, it's in New Zealand. 39 +Our destination is not here, its in New Zealand. 39 I regret to inform you of the accident that happened yesterday night. 57 I was hoping that you could be here for me always. 39 It will cease to a problem that is yet to occur. 37 @@ -14122,9 +14122,9 @@ Your arrival was so late that I could not even wait. 41 Please state your business properly. 31 We note that you have not received your email. 37 I would be grateful if you could reply early as soon. 42 -I'd appreciate it if you could complete the task. 39 +Id appreciate it if you could complete the task. 39 We would like to have the same ice cream. 32 -Would you like me to have the photograph? 33 +Would you like me to have the photograph 33 To consider the same calculation you need to complete the task. 52 This demonstrates that we have completed the task for robot preparation. 61 To distinguish between what is right or wrong is a big question. 52 @@ -14138,14 +14138,14 @@ Please let us know your requirements. 31 People consume a tremendous amount of electricity. 43 Please let me know when you will be available. 37 I hope to hear from you at your earliest convenience. 43 -As per our telephone conversation on today's date. 41 +As per our telephone conversation on todays date. 41 We would be honored if you would attend this event. 41 We can assist in the resolution of this matter. 38 I am afraid your child is experiencing difficulty in listening. 53 I look forward to meeting you next week. 32 I think she is shy. 14 I feel it a too old one. 17 -I guess it's done actually. 21 +I guess its done actually. 21 In my view this room is awesome. 25 In my eyes, you are too pretty always. 30 From my perspective this scene is perfect. 35 @@ -14160,78 +14160,78 @@ I believe that nature always heals the world. 37 I suppose you were present for the function. 36 According to my, the vegetable taste is too awesome. 43 In my opinion, this car is the best one for Rachel. 40 -It seems to me that this is going to be the end of today's night. 49 +It seems to me that this is going to be the end of todays night. 49 From my point of view, this place is wonderful to have our house. 52 -As far as I'm concerned for his health, he needs special care now. 52 -I'd like to point out that this presentation was done by ma'am. 49 +As far as Im concerned for his health, he needs special care now. 52 +Id like to point out that this presentation was done by maam. 49 Well, it is considered that daughter in law takes over the charge of the home. 63 My impression is that she is a great artist. 35 I hold the view that she should wear it and then decide. 44 I agree with your mom nowadays more. 29 Definitely, this is going to be the best gift. 37 Absolutely, we need to think about this surely. 39 -I see your point is right now, last night I didn't feel it. 45 +I see your point is right now, last night I didnt feel it. 45 I have to side with you on this one solution for this recipe. 48 I think so too that we need to draw it again. 34 -That's a good point that may elaborate on maths solutions in detail. 55 -You're right, that's a good point we can discuss it in the presentation. 57 -That's true, you should try it once again. 33 +Thats a good point that may elaborate on maths solutions in detail. 55 +Youre right, thats a good point we can discuss it in the presentation. 57 +Thats true, you should try it once again. 33 You have my full agreement of the rent house. 36 -Ok, that's convincing that you need to go now at home. 42 +Ok, thats convincing that you need to go now at home. 42 You took the words right out of my mouth and she started to cry. 50 I agree that now dad should stay with us all. 35 -I couldn't agree more that he wasn't non-violent. 38 +I couldnt agree more that he wasnt nonviolent. 38 Precisely, he needs to understand the concept in deep. 45 I see what you are getting at nowadays after lockdown. 44 -Sure, that's one way of looking at it, and it's accepted. 44 +Sure, thats one way of looking at it, and its accepted. 44 I suppose that there would be bread and butter in the fridge. 49 I see exactly what you mean by hitting it badly. 38 -I think you're right. 16 +I think youre right. 16 Well, I agree with you here. 22 I second that there would be an animal. 31 I take your word on it as it may give us a good path. 39 I see your point, but... 17 -That's one way of looking at it, however. 32 +Thats one way of looking at it, however. 32 Well, I see things rather differently. 32 -I'm not sure I go along with that view. 29 +Im not sure I go along with that view. 29 I agree up to a point, but... 20 -I wouldn't quite put it that way myself. 31 -I can't go along with that. 20 -You've got to be kidding. 19 -We don't seem to be in complete agreement. 33 +I wouldnt quite put it that way myself. 31 +I cant go along with that. 20 +Youve got to be kidding. 19 +We dont seem to be in complete agreement. 33 I see what you are getting at, but... 27 I completely disagree. 19 -Umm, I'm not sure about that. 22 -I don't really agree with that idea. 28 +Umm, Im not sure about that. 22 +I dont really agree with that idea. 28 I still have my doubts. 18 -That's out of the question. 21 -We don't seem to agree here. 21 -That's not always true. 18 -I'm afraid, I disagree. 18 +Thats out of the question. 21 +We dont seem to agree here. 21 +Thats not always true. 18 +Im afraid, I disagree. 18 Sorry to interrupt, but... 20 -Is it ok if I jump in for a moment? 25 -If I may interrupt? 15 -Do you mind if I add something? 24 +Is it ok if I jump in for a moment 25 +If I may interrupt 15 +Do you mind if I add something 24 Excuse me but in my opinion. 22 Excuse me for a second, but... 22 Let me finish what I have to say first. 30 Excuse me for interrupting, but... 27 Well, that reminds me of that. 24 -I don't mean to intrude, but... 22 +I dont mean to intrude, but... 22 Sorry, but can you let me finish. 26 -Before you go on, I'd like to say something. 34 +Before you go on, Id like to say something. 34 Just a moment, I like to add something here. 35 -Can I add something here? 20 +Can I add something here 20 If I might add something. 20 -Can I throw my two cents in your one? 28 -Umm, well not really but I don't want to talk to you. 40 -Are you telling me that this is going to be my work? 40 -Sorry, but I'm not done yet. 21 -May I say something here? 20 +Can I throw my two cents in your one 28 +Umm, well not really but I dont want to talk to you. 40 +Are you telling me that this is going to be my work 40 +Sorry, but Im not done yet. 21 +May I say something here 20 Sorry to cut you off, but... 20 Well, if that is the case... 20 Wait a minute, let me take my bag too. 29 -The next point I'd like to make is... 26 +The next point Id like to make is... 26 Moving right along from this path. 28 That brings us to the child whom we met before. 37 My first point is. 14 @@ -14242,7 +14242,7 @@ Finally, I am here at my goal point. 28 Now that we have established. 24 Keeping these points in mind. 24 Now that we understand that we need to move. 35 -Let's begin with a further chapter. 28 +Lets begin with a further chapter. 28 My next example is regarding spiders. 31 Likewise, we need to look further into our company. 42 In the same way, we need to print on the same duplicate paper. 49 @@ -14250,12 +14250,12 @@ In a like manner, we always move further in life. 39 In addition to this, we also need one more offer. 39 Contrast that with other colors. 27 At the same time, we also need to look at other responsibilities. 53 -Now let's consider this example again so that we can correlate. 51 +Now lets consider this example again so that we can correlate. 51 However, we also need to go to another site. 35 Nevertheless, we need to go further still. 35 Furthermore, we also find some more evidence. 38 If your actions inspire others to dream more, learn more, you are a leader. 61 -If you think you can do a thing, you're right. 35 +If you think you can do a thing, youre right. 35 The great teacher inspires. 23 Indeed it is the only thing that ever has. 33 You can speak well if your tongue can deliver the message of your heart. 58 @@ -14265,7 +14265,7 @@ Before anything else, preparation is the key to success. 47 There are two types of speakers in the world, the nervous and liars. 55 It takes one hour of preparation for each minute of presentation time. 58 The most precious things in speech are the.. pauses. 41 -Well-timed silence hath more eloquence than speech. 43 +Welltimed silence hath more eloquence than speech. 43 Always give a speech that you would like to hear. 39 Speeches measured by hour die with the hour. 36 Only the prepared speaker deserves to be confident. 43 @@ -14283,42 +14283,42 @@ Knowing the topic of the lecture very well. 35 Being well prepared for the lecture. 30 So she was waiting for the lecture. 28 Silence always led to a lecture. 26 -Do we have to give lectures in twelve hours? 35 +Do we have to give lectures in twelve hours 35 Form for a striking lecture. 23 There is no smarter professor than life and no wiser sage than experience. 61 Comic books in a lecture. 20 First few lectures here. 20 Fiction can show you a different world. 32 Anyone can lecture from the butt. 27 -What's happening is a very stern lecture. 33 +Whats happening is a very stern lecture. 33 The lecture will become a spanking. 29 I notice that, in the lecture. 24 Hold forth. 9 Take the floor. 12 A true dreamer is one who knows how to navigate in the dark. 47 We are going to have another department meeting. 40 -Let's hold a meeting to discuss this. 29 -Did you go to the project team meeting? 31 +Lets hold a meeting to discuss this. 29 +Did you go to the project team meeting 31 Did not attend the development meeting. 33 The meeting minutes. 17 Meetings are held to collaborate. 28 Some meetings use a formal system of voting. 36 Hello, everyone. thank you for coming today. 36 -Since everyone is here, let's get started. 34 -I'd like to take a moment to introduce to our new manager. 45 +Since everyone is here, lets get started. 34 +Id like to take a moment to introduce to our new manager. 45 Please join me in welcoming. 23 -Sheila, would you like to introduce yourself? 38 -As you can see from the agenda, we'll be talking about it. 45 -I've called this meeting too. 23 +Sheila, would you like to introduce yourself 38 +As you can see from the agenda, well be talking about it. 45 +Ive called this meeting too. 23 Our main goal today is to. 20 -What does everyone think about it? 28 -I'd like to get your feedback on the same page of Facebook. 46 -What are your thoughts about this situation? 37 -What are your views on this plan? 26 -What does everyone else think? 25 -Are there any other comments? 24 -Susan, can we get your input? 23 -Would you like to add anything, joe? 29 +What does everyone think about it 28 +Id like to get your feedback on the same page of Facebook. 46 +What are your thoughts about this situation 37 +What are your views on this plan 26 +What does everyone else think 25 +Are there any other comments 24 +Susan, can we get your input 23 +Would you like to add anything, joe 29 I strongly believe that. 20 I have no doubt whatsoever that. 26 I think we have to go this way. 23 @@ -14327,110 +14327,110 @@ I feel that this is the last day of life. 31 From my point of view, this is perfect. 31 In my experience, this is going to be the right way. 41 I find that this is the last solution which I may get now. 45 -I'd say that. 9 +Id say that. 9 If you want my honest opinion, I think that. 35 To be honest with you I want to go now. 29 It seems to me that I am the last one left. 32 -It's possible that we can go further on this. 35 +Its possible that we can go further on this. 35 I tend to think that this is going to be the last tracking. 46 My initial reaction is anger always. 30 I completely agree. 16 -I couldn't agree more. 17 -That's just how I see it. 18 -I'm with Peter on this. 17 +I couldnt agree more. 17 +Thats just how I see it. 18 +Im with Peter on this. 17 Well, it depends totally on your point of view. 38 I agree with you up to a point, but not now. 33 -I agree with you in principle, but I don't want to obey those. 48 -I'm afraid I disagree with this thing. 30 -I'm not so sure that this is going to be right. 35 +I agree with you in principle, but I dont want to obey those. 48 +Im afraid I disagree with this thing. 30 +Im not so sure that this is going to be right. 35 I see it differently nowadays based on situations. 42 Yes, but you need to understand it once. 32 Not necessarily this is going to be the best one for always. 48 -I'm sorry, but I completely disagree. 30 -I'm sorry, but I don't agree with that at all. 34 -We don't seem to be getting anywhere with this. 37 -Let's move on. 10 -I think we're going to have to agree to disagree. 38 +Im sorry, but I completely disagree. 30 +Im sorry, but I dont agree with that at all. 34 +We dont seem to be getting anywhere with this. 37 +Lets move on. 10 +I think were going to have to agree to disagree. 38 We could have completed his last wish. 31 -Why don't you help me? 16 -How about today's evening? 21 -What about your plan? 17 -Why don't we go with them? 19 +Why dont you help me 16 +How about todays evening 21 +What about your plan 17 +Why dont we go with them 19 I suggest she stay here with mom. 26 I recommend using the same paper. 27 We should not go to the hospital. 26 -Let's wait and look at the situation which is best for her. 46 +Lets wait and look at the situation which is best for her. 46 I recommend using the same sheets. 28 We should go to the hospital. 23 -I think we've spent enough time on this topic. moving on. 44 -If nobody has anything else to add, let's move on to the next item. 52 -We're running short on time, so let's move on. 35 -I'd like to skip item 2 and go directly to item 3. 37 -I'd like to hand it over to Brian, who is going to lead the next point. 54 +I think weve spent enough time on this topic. moving on. 44 +If nobody has anything else to add, lets move on to the next item. 52 +Were running short on time, so lets move on. 35 +Id like to skip item 2 and go directly to item 3. 37 +Id like to hand it over to Brian, who is going to lead the next point. 54 Next, Brain is going to tell us about it. 32 -I'm afraid that's outside the scope of this meeting. 41 -I think we're getting a bit off-topic. 29 -We'd better save that for another meeting. 34 -Let's get back on track, ok? 21 +Im afraid thats outside the scope of this meeting. 41 +I think were getting a bit offtopic. 29 +Wed better save that for another meeting. 34 +Lets get back on track, ok 21 Getting back to. 13 -It looks like we've covered the main items on the agenda. 45 +It looks like weve covered the main items on the agenda. 45 That will be all for today. 21 -If no one has anything else add, then I think we'll wrap this up. 50 +If no one has anything else add, then I think well wrap this up. 50 Our next meeting will be on Friday. 28 -Let's get together next month. 24 +Lets get together next month. 24 First, let me introduce myself. 26 Let me start by giving you some background information. 46 -Let's move on to our second slide. 26 +Lets move on to our second slide. 26 Turning our attention now to the results. 34 -I'd like to expand on my point. 23 +Id like to expand on my point. 23 Let me elaborate further. 21 -As I said at the beginning, we'll see an increase in profit. 47 +As I said at the beginning, well see an increase in profit. 47 This relates to what I was saying earlier about increasing production. 59 -This ties in with the way we've been doing business. 41 +This ties in with the way weve been doing business. 41 The significance of this is if we complete the project on the schedule date. 62 This is important because any marketing effort we put in now will help to boost. 65 We have to remember that people are the most important resources. 54 According to our study, working people in the city go directly to the gym. 60 -I'd like to illustrate this point by showing you a chart. 45 +Id like to illustrate this point by showing you a chart. 45 This chart shows a breakdown of the ingredients. 40 In other words, we need to change our design. 36 -To put it simply, we'll need you to work. 31 +To put it simply, well need you to work. 31 What I mean to say is that we need to change the way. 40 In conclusion, let me sum up my main points. 35 Thank you for your attention. 24 Now I am happy to answer any questions you might have. 43 -Can we proceed with conclusions? 27 +Can we proceed with conclusions 27 Please someone among you tries to answer the questions. 46 I have a question for you all about this context. 39 -Can we have some more questions here? 30 -Is the topic completely understood? 30 -Can we expect good results among these projects? 40 +Can we have some more questions here 30 +Is the topic completely understood 30 +Can we expect good results among these projects 40 I think we need to work more with these slides. 37 -Can we come up with a summary? 23 +Can we come up with a summary 23 I want to thank you for considering me. 31 -I'm glad you called me because I want to work for this company. 49 -I'm here because I think I have the profile. 34 +Im glad you called me because I want to work for this company. 49 +Im here because I think I have the profile. 34 I want to congratulate you on making this company capable. 48 -I am sorry, would you please repeat the question? 40 -Excuse me, I didn't even hear you, can you please say it again? 49 -Could you please repeat the same question? 35 +I am sorry, would you please repeat the question 40 +Excuse me, I didnt even hear you, can you please say it again 49 +Could you please repeat the same question 35 Speak a little bit loud. 19 -Sorry, I didn't hear the last part. 27 -I think I'm the right choice for the job. 31 +Sorry, I didnt hear the last part. 27 +I think Im the right choice for the job. 31 My patience will allow me to do this easily. 35 -I'd love to work here because I do love to explore a new world. 48 +Id love to work here because I do love to explore a new world. 48 I can let you know some skills. 24 Please justify the strength which you have. 36 -Can you tell me something about yourself? 34 -How did you come across this course? 29 -What are you expecting from us more? 29 +Can you tell me something about yourself 34 +How did you come across this course 29 +What are you expecting from us more 29 I am very thankful for this. 22 I hope we see each other again. 24 I wanted to thank you before I leave. 29 It was my pleasure to meet you again. 29 I want you to thank you for having me here. 33 -I've been looking for this position for a long time. 41 -I'm glad that I was recommended. 25 +Ive been looking for this position for a long time. 41 +Im glad that I was recommended. 25 Love for all, hatred for none. 24 Change the world by being yourself. 29 Every moment is a fresh beginning. 28 @@ -14443,20 +14443,20 @@ Whatever you do, do it well. 22 What we think, we become. 20 Tough times never last but tough people do. 35 Problems are not stopped signs, they are guidelines. 44 -If I'm gonna tell a real story, I'm gonna start with my name. 46 -If you tell the truth you don't have to remember anything. 46 +If Im gonna tell a real story, Im gonna start with my name. 46 +If you tell the truth you dont have to remember anything. 46 Have enough courage to start and enough heart to finish. 46 Hate comes from intimidation, love comes from appreciation. 51 -I could agree with you but then we'd both be wrong. 39 -Oh, the things you can find, if you don't stay behind. 42 +I could agree with you but then wed both be wrong. 39 +Oh, the things you can find, if you dont stay behind. 42 Determine your priorities and focus on them. 37 -Be so good they can't ignore you. 25 -Dream as if you'll live forever, live as if you'll die today. 47 +Be so good they cant ignore you. 25 +Dream as if youll live forever, live as if youll die today. 47 Yesterday you said tomorrow. just do it. 32 -I don't need it to be easy, I need it to be worth it. 38 +I dont need it to be easy, I need it to be worth it. 38 Never let your emotions overpower your intelligence. 45 Nothing lasts forever but at least we got these memories. 47 -Don't you know your imperfections is a blessing? 39 +Dont you know your imperfections is a blessing 39 Reality is wrong, dreams are for real. 31 To live will be an awfully big adventure. 33 There is no substitute for hard work. 30 @@ -14472,44 +14472,44 @@ White is not always light and black is not always dark. 44 Happiness depends upon ourselves. 29 Turn your wounds into wisdom. 24 It hurt because it mattered. 23 -If the world was blind how many people would you impress? 46 +If the world was blind how many people would you impress 46 I will remember and recover, not forgive and forget. 43 The meaning of life is to give life meaning. 35 To be honest. 10 To tell you the truth. 17 -Believe me! 9 +Believe me 9 Let me be clear. 12 The fact is. 9 So rich as honesty. 15 It takes strength and courage to admit the truth. 40 Honesty never hides the deeds. 25 Honesty tells the truth. 20 -A half-truth is a whole lie. 21 +A halftruth is a whole lie. 21 Be honest with yourself. 20 Honest is more. 12 Do believe, I am honest. 19 She expressed her honesty always. 28 No legacy is rich than honesty. 25 Her honesty helps to build trust. 27 -"See, her honesty looks like""." 23 +See, her honesty looks like. 23 Ohh, she expresses to him her honesty. 31 First honesty, then industry. 25 -The man's honesty is true? 20 -A man's honesty is seen in his eyes, you know about it? 42 -Life's lesson is honesty first. 25 +The mans honesty is true 20 +A mans honesty is seen in his eyes, you know about it 42 +Lifes lesson is honesty first. 25 Her integrity was more to tell her. 28 Be yourself everyone else is already taken. 36 Honesty helps always. 18 -It's discouraging that employees aren't honest. 39 -It's better to offer no excuse than a bad one. 35 -You can't lie to your soul. 20 -Please!! do not lie now. 17 +Its discouraging that employees arent honest. 39 +Its better to offer no excuse than a bad one. 35 +You cant lie to your soul. 20 +Please do not lie now. 17 Honesty changes real things. 24 Honesty says a lot. 15 Still best to be honest and truthful. 30 Honesty is the first chapter. 24 It takes courage and strength to admit. 32 -Honest people don't hide. 20 +Honest people dont hide. 20 Something honest. 15 Honest is more what I mean. 21 Integrity is telling myself the truth. 32 @@ -14523,54 +14523,54 @@ Feel free to delegate some of those responsibilities to me. 49 You can delegate authority. 23 Deciding what not to do is as important as deciding what to do. 50 Delegate your work. 16 -I'm a lousy delegator, but I'm learning. 31 -Don't be a bottleneck, delegate it. 28 +Im a lousy delegator, but Im learning. 31 +Dont be a bottleneck, delegate it. 28 Make a big impact, learn to delegate. 30 Surround yourself with the best people you can find, delegate authority. 61 Delegate work works, provided the delegating works, too. 48 -You've got to learn to delegate. 25 -You almost don't have to delegate them. 31 +Youve got to learn to delegate. 25 +You almost dont have to delegate them. 31 The first rule is to delegate in management. 36 You can never delegate responsibility for delegating a task. 51 Delegating means letting others become experts. 41 Art of delegation. 15 -If you work 160 hours a week, don't delegate. 35 +If you work 160 hours a week, dont delegate. 35 How to decide, what to delegate. 26 Effective delegate. 17 How to select the right person to delegate to. 37 -Don't delegate the wrong. 20 +Dont delegate the wrong. 20 When in doubt, delegate when in charge, ponder. 39 Learn to delegate. 15 Delegating a job. 14 -Don't grow much without delegation. 29 -It's to master the delegation. 24 +Dont grow much without delegation. 29 +Its to master the delegation. 24 He cannot delegate. 16 Delegation is giving others. 24 Need to delegate. 14 Delegation is an issue of respect. 28 -Don't have a problem with delegation. 30 -How are you feeling about...? 21 +Dont have a problem with delegation. 30 +How are you feeling about... 21 I appreciate it when you... 20 It helps me trust you when you... 24 -Yes, I'll do that. 13 -Okay, what is your biggest concern? 29 -So you feel like... is that correct? 26 +Yes, Ill do that. 13 +Okay, what is your biggest concern 29 +So you feel like... is that correct 26 I appreciate all you do. 19 -Let's see if I understood this correctly, what you're saying is... 51 -Let's get some ice cream and talk about this some more. 43 -I'm sorry. I take responsibility for that. 33 +Lets see if I understood this correctly, what youre saying is... 51 +Lets get some ice cream and talk about this some more. 43 +Im sorry. I take responsibility for that. 33 These are some thoughtful ideas of the same. 36 It helps me trust you more when you... 28 -I want to know about this'. 20 +I want to know about this. 20 I love this kind of thinking. 23 How you concluded. 15 Tell me more about that. 19 -What do you think? 14 +What do you think 14 What I hear you saying is. 20 I trust your judgment. 18 -I'm on it. 6 -How can we make this happen? 22 -I've got your back! 14 +Im on it. 6 +How can we make this happen 22 +Ive got your back 14 Be silent, or say something better. 29 The most important thing in communication is hearing. 45 See if possible for him. 19 @@ -14580,32 +14580,32 @@ What we say. 9 Speaking can persuade an individual. 31 Communicate directly with my soul. 29 The quality of your communication determines size. 43 -What a great conference! 20 -"I m ready,"" she said with more confidence than she felt." 44 -He wasn't a tall man, but he walked with confidence. 41 -The big question was, would her confidence last? 40 -"Dr. Bell said ""No!"" with great confidence, and the kite was sent up." 51 -No confidence in me! 16 +What a great conference 20 +I m ready, she said with more confidence than she felt. 44 +He wasnt a tall man, but he walked with confidence. 41 +The big question was, would her confidence last 40 +Dr. Bell said No with great confidence, and the kite was sent up. 51 +No confidence in me 16 To help you believe in yourself. 26 -It's the confidence in our bodies. 27 -It's the confidence minds. 21 -It's confident spirits. 19 -It's the confidence that allows us to keep looking for new adventures. 57 -Self-confidence in one's ability can build a better world. 47 +Its the confidence in our bodies. 27 +Its the confidence minds. 21 +Its confident spirits. 19 +Its the confidence that allows us to keep looking for new adventures. 57 +Selfconfidence in ones ability can build a better world. 47 No one can make you feel inferior. 27 Just believe in yourself. 21 Confidence comes from not fearing wrong. 34 A man cannot be confident unless he is comfortable. 42 Doubt kills more dreams. 20 -They're no better. 14 -Argue for your limitations and be sure they're yours. 43 +Theyre no better. 14 +Argue for your limitations and be sure theyre yours. 43 Confidence is the most beautiful thing. 33 Confidence is worth it. 19 Kindness in words creates confidence. 32 Confidence is the greatest friend. 29 Life is ignorance and confidence is a success. 38 Confidence.. thrives on honesty. 26 -Daring confidence in god's grace. 27 +Daring confidence in gods grace. 27 Confidence of people. 18 The leader must already have considerable confidence. 46 Above all confidence in ourselves. 29 @@ -14617,17 +14617,17 @@ To have that confidence. 20 Powerful thinking with confidence. 30 Tell yourself I am confident. 24 Create what you want. 17 -The key to success is self-confidence. 31 +The key to success is selfconfidence. 31 Commitment is an act, not a word. 26 Decide. commit. succeed. 19 You cannot conquer what you are not committed to. 40 Without commitment, nothing happens. 32 Commitment in face of conflict produces character. 43 -Commitment isn't easy. 18 +Commitment isnt easy. 18 Commitment quotes to keep you focused. 32 Commitment is the ability to stick. 29 Commitment is a decision. 21 -Even it's not easy. 14 +Even its not easy. 14 Excellence to commitment. 22 Proportion to their commitment to excellence. 39 Unless commitment is made, there are only promises. 43 @@ -14635,11 +14635,11 @@ Your imagination and commitment matters. 35 You may have to fight a battle than to win. 33 Powerful promise quotes. 21 Great changes may not happen right away. 33 -There's a difference between interest and commitment. 45 +Theres a difference between interest and commitment. 45 Stay committed to your decision. 27 Commitment unlocks doors of imagination. 35 Keep on going and the chances will stumble on something. 46 -It's always too early to quit. 23 +Its always too early to quit. 23 I am easily satisfied with the best. 29 To have a caring and committed heart. 30 To fall in love and to commit. 23 @@ -14649,7 +14649,7 @@ Freedom is not the absence of commitment. 34 You always have two choices, commitment, and fear. 42 The result of a commitment to excellence. 34 Once you have the commitment, you need discipline. 42 -There's a higher form of happiness in commitment. 40 +Theres a higher form of happiness in commitment. 40 To be 100 percent commitment. 24 Commitment is the foundation. 25 Commitment transforms promise. 27 @@ -14659,7 +14659,7 @@ Think positive, act positive, behave positively. 42 With a positive attitude, the world is your oyster. 42 With a positive attitude that has his goal clearly in sight. 49 A positive attitude can have a huge impact on a career. 44 -Your positive attitude, commitment, and self-discipline. 49 +Your positive attitude, commitment, and selfdiscipline. 49 Positive thinking is the way to success. 33 I can get this job and do it well. 25 Today is a wonderful day. 20 @@ -14690,11 +14690,11 @@ I can finish my work on time. 22 Everything in my life is improving. 29 The creative adult is the child who survived. 37 The desire to create is one of the deepest yearnings of the human soul. 57 -Creativity doesn't wait for perfection. 33 -You can't use up creativity. 22 +Creativity doesnt wait for perfection. 33 +You cant use up creativity. 22 Creativity is intelligence. 24 The secret of creativity knows. 26 -God's best creation is human. 23 +Gods best creation is human. 23 Creativity is contagious. 22 This was created further. 21 Creativity is just connecting things. 32 @@ -14703,7 +14703,7 @@ Products with spirit and creativity. 31 The Comfort zone is a great enemy to creativity. 39 Creativity makes life more fun. 26 Creativity has got to start. 23 -The worst enemy to creativity is self-doubt. 36 +The worst enemy to creativity is selfdoubt. 36 Creativity has got to start with humanity. 35 Creativity requires courage. 25 The essential aspect of creativity is not being afraid. 46 @@ -14728,18 +14728,18 @@ Creativity is what helps to escape a lot. 33 Keep inspiring me. 15 She inspires her with her behavior. 29 Inspires others, dream big. 23 -Success doesn't just find you it inspires you. 37 +Success doesnt just find you it inspires you. 37 Dream bigger, inspire others. 25 Courage to continue. 17 All our dreams can come true. 23 Only the paranoid survive. 22 -It's hard to beat a person who never gives up. 35 +Its hard to beat a person who never gives up. 35 I wake up every morning and think to myself. 35 Write it. shoot it. publish it. 23 Fairy tales are more than true. 25 When one door of happiness closes, another opens. 41 Do one thing every day that scares you. 31 -It's no use going back to yesterday because I was different. 48 +Its no use going back to yesterday because I was different. 48 Smart people learn from everything and everyone. 41 Do what you feel in your heart to be right. 33 Happiness is something that comes from your actions. 44 @@ -14749,23 +14749,23 @@ Magic believes in you. 18 You can either experience the pain of discipline. 41 Impossible is just an opinion. 25 Hold the vision, trust the process. 29 -Don't be afraid to give up. 20 +Dont be afraid to give up. 20 The glass is refillable. 20 One day or day one, you decide. 24 Dip it in glitter and sparkle the day. 30 Things left by those who hustle. 26 Every successful person in the world is a hustler. 41 Invest in your dreams, grind now, shine later. 38 -Look in the mirror that's competition. 31 +Look in the mirror thats competition. 31 Never influence the world by trying. 30 Life changes when we change. 23 Design yourself, design the future. 30 Inspire every day for physicality. 29 Inspire the world to stay in peace. 28 -Man's life is dependent on inspiration. 32 +Mans life is dependent on inspiration. 32 Create your empathy statements. 27 -You're right, she said empathetically. 32 -After having empathetic communication, I've experienced this. 53 +Youre right, she said empathetically. 32 +After having empathetic communication, Ive experienced this. 53 I appreciate you. 14 If I understand correctly. 22 Thank you for remaining positive. 28 @@ -14773,19 +14773,19 @@ I want to thank you for taking the time to speak. 38 Put yourself in their shoes. 23 I would feel just you do if I would be in your shoes. 40 I would recommend it to you. 22 -Would you like to try? 17 +Would you like to try 17 You can consider it. 16 You might find it helpful. 21 -I think you'll find it's much easier if you do. 35 +I think youll find its much easier if you do. 35 If I understand you correctly. 25 -So what you're saying is. 19 -What you're saying is. 17 -I'd love to love to help you with that. 29 +So what youre saying is. 19 +What youre saying is. 17 +Id love to love to help you with that. 29 Give me just a minute. 17 -Can you tell me a little bit more? 26 +Can you tell me a little bit more 26 I gave him and he accepted it. 23 I have got something wrong. 22 -Please can I speak once? 19 +Please can I speak once 19 Let you know soon regarding it. 25 It would be good if you elaborate more. 31 It sounds like you did everything you could. 36 @@ -14804,12 +14804,12 @@ The right thing to do and a hard thing to do usually the same. 48 The opinion requires no accountability. 34 It requires no accountability. 26 We feel mistreated when we fail to set boundaries and hold peoples accountable. 66 -You don't have to worry about burning bridges if you're building your own. 59 -It is wrong and immortal to seek escape from the consequences of one's act. 60 +You dont have to worry about burning bridges if youre building your own. 59 +It is wrong and immortal to seek escape from the consequences of ones act. 60 When it comes to accountability, people always demand former themselves. 62 Never compromise your values. 25 Endure the discordance between imagination and fact. 45 -You don't have to be accountable for anything. 37 +You dont have to be accountable for anything. 37 Accept responsibility for your life. 31 At some point realize that you are the driver and drive accordingly. 56 Each day you are leading by example. 29 @@ -14821,7 +14821,7 @@ The pressure of adversity is the most powerful sustainer of accountability. 64 You hit them with accountability and they mutate. 41 Sense of personal accountability. 29 The position of power is not made to be accountable. 42 -Mutual submission is accountability to be held to god's standard. 54 +Mutual submission is accountability to be held to gods standard. 54 Accountability means to say what you do, do what you say. 46 Accountability for achievement. 28 Accountability is the basis for all meaningful human. 45 @@ -14833,7 +14833,7 @@ Enthusiasm can help you find new doors. 32 You will do foolish things, but do them with enthusiasm. 46 We lose enthusiasm in life because we become ungrateful. 47 Protect your enthusiasm from negativity and fear. 42 -It's faith in something and enthusiasm for something that makes life worth it. 64 +Its faith in something and enthusiasm for something that makes life worth it. 64 Not a visible enthusiasm but a hidden one. 34 Always remember to take your vitamins, vitamin a for action, vitamin b belief, vitamin e enthusiasm. 84 I am, more interested in arousing enthusiasm. 38 @@ -14841,17 +14841,17 @@ Enthusiasm is a supernatural serenity. 33 Spring work is going on with joyful enthusiasm. 39 Enthusiasm is the electricity of life. 32 Enthusiasm spells the difference between mediocrity and accomplishment. 63 -I wept because I was re-experiencing enthusiasm. 40 +I wept because I was reexperiencing enthusiasm. 40 Passion or drive is what moves the vehicle of a fulfilled life. 51 Excuse my enthusiasm or rather a madness, for I am drunk. 46 -Now, what saps the enthusiasm in a man? 31 -When is enthusiasm created? 23 +Now, what saps the enthusiasm in a man 31 +When is enthusiasm created 23 One feels enriched by enthusiasm and inspiration. 42 The ability to be enthusiastic. 26 Who only begin to be enthusiastic about it. 35 The possibility of a dream gives strength. 35 If you want to be enthusiastic, act enthusiastic. 41 -"The worst thing said about him is that he was ""incurious""." 45 +The worst thing said about him is that he was incurious. 45 Let the winds of enthusiasm sweep through you. 38 Without enthusiasm, nothing great can be affected by art. 48 With an enthusiastic team, you can achieve almost anything. 50 @@ -14860,25 +14860,25 @@ Interest and enthusiasm are the wellsprings of a continually evolving community. You feel that you are losing enthusiasm. 33 Choose a teacher with enthusiasm. 28 The enthusiasm that makes one resist. 31 -It's a pleasure to do something. 25 +Its a pleasure to do something. 25 Flying high. 10 -I'm quite excited about it. 21 -I can't believe it! 14 -I'm delighted for you. good luck! 25 -You deserve it! 12 +Im quite excited about it. 21 +I cant believe it 14 +Im delighted for you. good luck 25 +You deserve it 12 We must focus to see the light. 24 My big focus is china now. 20 -You can't focus on the task. 21 +You cant focus on the task. 21 She is being driven by him. 21 Be in the driving seat. 18 -It's only after you've stepped outside your comfort then you begin to change. 62 +Its only after youve stepped outside your comfort then you begin to change. 62 Focus on living fully in the present. 30 Lack of direction, no lack of time is the problem. 40 Focus on your strengths. 20 Focus on your character. 20 Focus on your blessings. 20 Shift the focus on something positive. 32 -Very occasionally, if you pay close attention, life doesn't suck. 54 +Very occasionally, if you pay close attention, life doesnt suck. 54 Whenever you need to achieve something just focus. 42 The only time you fall is when you fall and stay down. 42 Focus on your goals, not on fears. 27 @@ -14890,16 +14890,16 @@ Lighten up. 9 Forgive yourself, others. 22 They are passionate, driven, alive and they are real. 44 She had said he had been driven away from her by a dream. 44 -Without knowing anything else about him, I already he'd be worth the hurt. 60 +Without knowing anything else about him, I already hed be worth the hurt. 60 Sometimes people have no idea what drives you. 38 I have been driven to the greatest inspiration. 39 -Don't follow the money, let the money follow your purpose. 47 +Dont follow the money, let the money follow your purpose. 47 Go beyond motivated, be more, do more, overcome more. 44 -I don't have that has driven this kind of search. 38 +I dont have that has driven this kind of search. 38 Your biggest battles internally happen in boredom. 43 -I'm driven and self-made. 19 +Im driven and selfmade. 19 You have to be firm, persistent, passionate, and driven by an idea. 55 -Man's main task in life is to give birth to himself. 40 +Mans main task in life is to give birth to himself. 40 Focus gives learning. 18 Continually improving develops by focus. 35 Strengths that helps to focus. 25 @@ -14911,14 +14911,14 @@ You must take personal responsibility. 33 You may believe that you are responsible. 34 A hero is someone who understands the responsibility that comes with his freedom. 68 Take responsibility for your own happiness. 37 -You become responsible forever for what you've tamed. 44 -I just don't want that responsibility. 31 +You become responsible forever for what youve tamed. 44 +I just dont want that responsibility. 31 You become responsible, forever. 28 Most people are frightened of responsibility. 39 -I'm not much but I'm all I have. 22 +Im not much but Im all I have. 22 The knowledge that we are responsible for our actions. 45 To say you have no choice is to relieve yourself of responsibility. 55 -You've got a lot of responsibility now. 31 +Youve got a lot of responsibility now. 31 Please take it responsibility for making it so. 39 The willingness to accept responsibility for your own life. 50 Responsibility to yourself means refusing to let others do your thinking. 62 @@ -14935,7 +14935,7 @@ No choice is to release yourself from responsibility. 45 With freedom there comes responsibility. 35 Choice accepts responsibility. 27 You must take over your responsibility. 33 -To have the will to be responsible for one's self. 39 +To have the will to be responsible for ones self. 39 Responsibility in your own hands. 28 Responsibility for doing any personal good. 37 Responsibility when the situation occurs. 36 @@ -14944,56 +14944,56 @@ Refuse responsibility when not sure. 31 Dignity begins by accepting responsibilities. 40 Thanks for your suggestion. 23 Excuse me, can you leave my path. 26 -Could you? could you please? 22 +Could you could you please 22 Let me know. 9 -I don't like it. 11 -I'm not too fond of it. 16 +I dont like it. 11 +Im not too fond of it. 16 Some more phrases. 15 -Why did he lose his job? 18 +Why did he lose his job 18 Excuse me, you have left your keys here. 32 -How did you tear your shirt? 22 +How did you tear your shirt 22 Many innocent people lost their lives in the recent riot. 47 It is dangerous to go there. 22 -Is it possible to prove this? 23 +Is it possible to prove this 23 You should be ashamed of what you did. 30 I felt very well when I heard this news. 31 -That's a beautiful shirt you are wearing. 33 +Thats a beautiful shirt you are wearing. 33 I have got something in my eye. 24 -Have you done with the scissors? 26 +Have you done with the scissors 26 My arm has gone to sleep. 19 Get your foot off the chair. 22 Your tea is getting cold. 20 -Are you getting tired? 18 -What is the point of worrying? 24 -I can't let the lid off this bottle. 27 +Are you getting tired 18 +What is the point of worrying 24 +I cant let the lid off this bottle. 27 I think we should get a taxi now. 25 -Could you lift the chair a bit? 24 +Could you lift the chair a bit 24 I am feeling strange these days. 26 It is getting late. 15 This rope is not strong enough. 25 I had gone there once. 17 They always eat together. 21 I was living in thane then. 21 -Don't go near that wire. 18 -Is there a hotel near here? 21 +Dont go near that wire. 18 +Is there a hotel near here 21 He works as my assistance. 21 I have seen great poverty. 21 My grandma taught me to play. 23 Developing empathy. 17 I respect you as my father. 21 -Please, can I get those cookies? 26 +Please, can I get those cookies 26 Yes, I apologize for the same mistake. 31 Yes, granny, I understood, what you want to say. 39 -Can you please elaborate on it further, please? 39 -Can we talk later, mom? 18 +Can you please elaborate on it further, please 39 +Can we talk later, mom 18 We need to speak too about this. 25 -It's too difficult to deal with the situation currently. 46 +Its too difficult to deal with the situation currently. 46 Hi all, we can have a small talk. 25 -Sorry, I won't do it again. 20 +Sorry, I wont do it again. 20 Mommy, please forgive me. 21 -Can you please lend me the pen? 24 -Jack, I won't do it again. 19 -Can you help me out to clear out this solution? 37 +Can you please lend me the pen 24 +Jack, I wont do it again. 19 +Can you help me out to clear out this solution 37 After every dark night there comes a bright morning. 43 Try to look at the brighter side of life. 32 Every problem has a solution. 24 @@ -15002,7 +15002,7 @@ Personality development also plays important role in strengthening relationships Make your smile cheaper. 20 Genuine kindness is the ultimate strength. 36 Attract everything that is for the highest good. 40 -Self-love is the greatest medicine. 29 +Selflove is the greatest medicine. 29 Show up, expand, and shine. 22 You deserve this good life. 22 Stop waiting for others to appreciate. 32 @@ -15010,8 +15010,8 @@ Become your biggest fan. 20 Love yourself unconditionally. 27 Be disciplined. 13 Change your priorities if necessary. 31 -Remember how far you've come. 23 -Know life's impermanence. 21 +Remember how far youve come. 23 +Know lifes impermanence. 21 Unpleasantness makes you aware of your pleasantness. 45 Your kindness will never go wasted. 29 Choose every day to forgive yourself. 31 @@ -15021,12 +15021,12 @@ Cleanse your space. 16 Cultivate love. 13 Embrace change. 13 Be brave enough to heal yourself. 27 -Don't give up, even when it hurts. 26 +Dont give up, even when it hurts. 26 I have permission to put myself first. 31 My ability to conquer challenges is limitless. 39 Authenticity starts by letting go of fear. 35 Your level up is about improving. 27 -It's always you vs you, not you vs them. 30 +Its always you vs you, not you vs them. 30 Speak your truth. 14 The ego is a control freak. 21 Forgive others and accept to move. 28 @@ -15043,12 +15043,12 @@ Take care of the minutes and the hours will take care of themselves. 55 The greatest gift you can give someone is time. 38 Time block your day. 16 Schedule in the buffer time. 23 -You can't always be productive. 25 -You can't work all day. 17 +You cant always be productive. 25 +You cant work all day. 17 Just get going. 12 Set deadlines. 12 Work in sprints. 13 -Multitasking doesn't work. 22 +Multitasking doesnt work. 22 Break down tasks. 14 Always take notes. 15 Set up and follow your routine. 25 @@ -15059,11 +15059,11 @@ Minimize interruptions. 21 Go to the most beautiful space. 25 Use a calendar. 12 Know your deadlines. 17 -Don't procrastinate. 17 +Dont procrastinate. 17 Prioritize wisely. 16 Focus on strategies and values. 26 Manage crisis and deadlines. 24 -Avoid time-wasters and escapes. 26 +Avoid timewasters and escapes. 26 Recognize the outcome. 19 Serve your true goals. 18 Take some quiet time. 17 @@ -15074,16 +15074,16 @@ Connect with your end vision. 24 Follow the path of the highest enjoyment. 34 Always track your progress. 23 Celebrate what you have done so far. 29 -Don't force it if it's not working. 26 +Dont force it if its not working. 26 Without rain, nothing grows. 24 I prefer loneliness, over a fake company. 34 -Don't let your ego cloud your judgment. 31 +Dont let your ego cloud your judgment. 31 If you want to go far, go together. 27 Finish what you started. 20 Be yourself, the world will adjust. 29 Make your anger expensive. 22 -Don't quit too early. 16 -Stop giving energy to things you don't want. 35 +Dont quit too early. 16 +Stop giving energy to things you dont want. 35 Hate is heavy. let it go. 18 The biggest risk is not taking any. 28 If you can dream it, you can achieve it. 31 @@ -15095,24 +15095,24 @@ Never doubt yourself. 18 Do the right thing. 15 A goal without a plan is just a wish. 28 If you want it, go get it. 19 -I'm working on myself, for myself, by myself. 36 +Im working on myself, for myself, by myself. 36 Patience is key. 13 The best thing I did was to believe in myself. 36 -Success isn't given, it's earned. 26 +Success isnt given, its earned. 26 Pain is temporary, regret is forever. 31 Make more moves and fewer announcements. 34 Work hard and stay humble. 21 -Don't forget to enjoy the little things. 32 -Don't let the internet rush you. 25 -Be so good, they can't ignore you. 26 +Dont forget to enjoy the little things. 32 +Dont let the internet rush you. 25 +Be so good, they cant ignore you. 26 Forget yourself and start to work. 28 Success is doing ordinary things. 28 The key to immortality is first living. 32 The secret to success is consistency. 31 Think outside of the box. 20 -You're going to kill it today. 23 +Youre going to kill it today. 23 Hello, we need to discuss optimizing our company operations. 51 -Let's schedule this meeting for tomorrow early morning. 46 +Lets schedule this meeting for tomorrow early morning. 46 Ok, sure sir we all will be present for the discussion. 44 Lucy, seek permission for the conference hall. 39 Rachel, send a notification to all the line managers. 44 @@ -15130,9 +15130,9 @@ Emma, speak to the director about this. 32 Mia, keep the plant head involved with you. 35 I want the plant head this time to make decisions. 40 Optimizing supply management will be a priority this time. 49 -Do you guys have any suggestions on this? 33 +Do you guys have any suggestions on this 33 Sir, I think we need some technical advancements in the process. 53 -Rose, thanks for your point I'll look after it. 37 +Rose, thanks for your point Ill look after it. 37 Anyone else has a better idea. 24 I have one, can we try the trial and error method. 39 That is a good mate but not advisable at this point. 41 @@ -15140,39 +15140,39 @@ We have to speed up the production process. 35 Megan, you will train every machine operator guy. 41 Olivia, you will help Megan in doing this. 34 Starting from the material intake we will end with the quality check. 57 -Are all the quality control checks done? 33 -Do we regularly order from the same vendor? 35 +Are all the quality control checks done 33 +Do we regularly order from the same vendor 35 Yes, we have a strategic alliance with them. 36 I hope everybody is clear about the agenda. 35 -I don't need on-time approvals. 24 +I dont need ontime approvals. 24 Get the things by this evening itself. 31 Production planning will begin after two weeks. 40 I want the forecast plans for the coming month. 38 Do a regular quality check for optimization. 37 -Sam, can you come over early tomorrow? 31 +Sam, can you come over early tomorrow 31 John, strictly ask the security people to start early. 45 Mike, I think you are spending more on research. 39 -Are we able to optimize that machine? 30 -Joe, can you calibrate the milling machine? 36 +Are we able to optimize that machine 30 +Joe, can you calibrate the milling machine 36 Bravo, keep informed of the material room people. 41 -Daniel, how often we change our tools? 31 +Daniel, how often we change our tools 31 I think tools need to be replaced. 27 -Sure sir I'll order the new ones. 25 +Sure sir Ill order the new ones. 25 David, check the budget and then order. 32 Eric, ask welding people if they need anything. 39 -Max, you'll be the leader of this project. 33 +Max, youll be the leader of this project. 33 The team does you think this strategy is old. 36 We are using the same strategy for a decade. 35 I think we need to develop a new strategy. 33 -Does anyone have an idea about this? 29 +Does anyone have an idea about this 29 We are open to all suggestions. 25 -Ma'am, I think we should go make estimation an essential thing. 51 +Maam, I think we should go make estimation an essential thing. 51 Yes sam, I was also thinking the same way. 33 Estimation the most essential thing to do. 35 From now onwards we will look into this matter. 38 -Anyone ideas do you people have? 26 -John, I'm expecting a valuable insight from you. 39 -Sure ma'am I'll give you my suggestion by evening. 39 +Anyone ideas do you people have 26 +John, Im expecting a valuable insight from you. 39 +Sure maam Ill give you my suggestion by evening. 39 Mike, do you think strengthening quality check will help. 48 Yes sir that is what I was thinking to do for a month. 41 Ok, then team we will be focusing on estimation and quality check. 54 @@ -15182,32 +15182,32 @@ Daniel, you will be assisting bravo in this. 36 David, check all the previous estimation formats. 42 Eric, you talk to the technical chief. 31 Jack, make an inventory table. 25 -Harry, when will you give those files? 31 +Harry, when will you give those files 31 Max, the quality will need your help soon. 34 -Where is the department head of production? 36 +Where is the department head of production 36 Soon we will need to talk with the plant head. 36 Lucy, schedule a meeting with the superiors. 37 This time make sure you guys achieve before time. 40 I want you all to be in front always. 28 Be on your toes till you find success. 30 Rachel, please handle the discussion with max. 39 -Donna, can you the delivery timing of that product? 42 -Do you think we need scientific calculators for estimation? 50 +Donna, can you the delivery timing of that product 42 +Do you think we need scientific calculators for estimation 50 Yes sir we will need those. 21 Joe, will you order at least a hundred of those. 38 Anna, you check the specifications online, and then we can order. 54 Bella, you also do a bit of research on that. 35 -How long it will take to implement this strategy? 40 +How long it will take to implement this strategy 40 Sir, I think we will end this by next week. 33 -Ok, that's enough time then. 22 -I don't want any delay in that. 23 -Has everybody understood the strategy? 33 +Ok, thats enough time then. 22 +I dont want any delay in that. 23 +Has everybody understood the strategy 33 This time we will make things happen best. 34 It will be a new beginning for us. 26 Emma, you do a background check on this subject. 39 Mia, keep focusing on the quality check part. 37 Rose, I want you to train all the operators. 35 -Megan, when will you give me the estimation format? 42 +Megan, when will you give me the estimation format 42 I hope this step will impact well on us. 31 Yes, we also hope for the same impact. 30 Olivia, keep an eye on the machining process. 37 @@ -15222,8 +15222,8 @@ Joe, check for previous human errors. 31 We want to achieve the 99.99 percent accuracy level. 42 For this, we all have to work extremely hard. 36 Yes boss we are ready to spend our sweat and blood. 40 -Good, that's the attitude I want everyone to have. 40 -I'm lucky to have you all on my team. 27 +Good, thats the attitude I want everyone to have. 40 +Im lucky to have you all on my team. 27 Bella, you go with the purchase manager. 33 Check for the necessary requirements. 32 Emma, search for all the technically updated machines. 46 @@ -15232,17 +15232,17 @@ German technology is best for process automation. 42 Mia, I hope you are in touch with that manager. 37 Yes sir we have been in touch since last year. 36 Ok then ask him for the assembly line machines. 38 -Sure sir I'll ask for the quotation for items we need. 42 -Megan, do you need any specific machine? 33 -Ma'am, we badly need a conk machine. 28 -Ok then let's check with the vendors. 29 +Sure sir Ill ask for the quotation for items we need. 42 +Megan, do you need any specific machine 33 +Maam, we badly need a conk machine. 28 +Ok then lets check with the vendors. 29 They might have the best in class products. 35 -Till when do you want this to be installed in the plant? 44 +Till when do you want this to be installed in the plant 44 Sir actually my team wants it by next week. 34 I will ensure you get what you desire within this week. 44 -That's so great of sir, the best operations manager. 42 +Thats so great of sir, the best operations manager. 42 If anyone else has the same issues can come over and talk. 46 -As of now, we don't have any issues. 27 +As of now, we dont have any issues. 27 We will surely let you know sir. 25 Olivia, take a sample of this material. 32 Sam, come with me to the tool room. 27 @@ -15251,14 +15251,14 @@ Yes, we can order it from nearby vendors. 33 Why nearby john, we will order it from Germany only. 42 From now onwards we will use german automated products. 46 Rest all the equipment will be India made only. 38 -Have everyone got what I said? 24 +Have everyone got what I said 24 David, talk with higher management. 30 Daniel, you will negotiate the deal. 30 Harry, you check all the technical specifications. 43 -Max, you have expertise in process automation, right? 45 -Yes, ma'am I actually did a diploma course in that. 40 +Max, you have expertise in process automation, right 45 +Yes, maam I actually did a diploma course in that. 40 Ok, then you must assist me on the project. 34 -Sure ma'am it's my pleasure to work with you. 34 +Sure maam its my pleasure to work with you. 34 We will ensure to do this by end of march. 32 Lucy, get me the list of all the labors in the plant. 41 Rachel, you sort the list as per the departments. 40 @@ -15274,71 +15274,71 @@ We need many men to handle the assembly line. 36 Skilled labor is needed on the line. 29 Joe, get all the skilled labors details. 33 We will sort the laborers as per their skill set. 39 -Emma, do we have the welding people around? 35 +Emma, do we have the welding people around 35 We also want some casting skill manpower. 34 Casting products will be produced from next month 42 We have to hire some new talent. 25 Or else we can train our workforce for specific skills. 45 -Mia, what do you think about the plan? 30 -Yes ma'am you are correct but we have to ask the management. 47 -Don't worry I'll talk to those people. 29 -Ok, then sir I'll search for some skilling agencies. 42 +Mia, what do you think about the plan 30 +Yes maam you are correct but we have to ask the management. 47 +Dont worry Ill talk to those people. 29 +Ok, then sir Ill search for some skilling agencies. 42 We can call these people at our campus to train. 38 The training was much needed for our labors. 36 -But still, we have the best-skilled workforce in our company. 50 +But still, we have the bestskilled workforce in our company. 50 Bella, do one thing call everyone in the auditorium. 43 -Ok, but for what ma'am if I may ask? 26 +Ok, but for what maam if I may ask 26 We will give them the good news about training. 38 This news will motivate them to work more efficiently. 45 -That's a great idea, the need of the hour. 32 +Thats a great idea, the need of the hour. 32 Megan, can you send a notification for that. 36 Olivia, you talk to the finance head. 30 -Do we have to take permission for that? 31 -No not needed sir it's not that important. 33 +Do we have to take permission for that 31 +No not needed sir its not that important. 33 Ok, then we will finish the announcement and start the work. 49 Sam, you can address these people in your native language. 48 -You know how to tackle these people right? 34 -Yes of course ma'am I've been doing this since childhood. 45 -John, will you follow up with Microsoft company? 40 +You know how to tackle these people right 34 +Yes of course maam Ive been doing this since childhood. 45 +John, will you follow up with Microsoft company 40 Yes, I already did they will send the material by next week. 48 Ok, then we will be ready to produce after two weeks. 42 -David, what about your product updating idea? 38 +David, what about your product updating idea 38 Yes, that is in line for next month. 28 Daniel, are you familiar with your department labors. 45 -Not actually sir but I'm trying to socialize now. 39 -It's good then because we have a policy like that. 39 -Harry, are you motivating your workforce daily? 40 +Not actually sir but Im trying to socialize now. 39 +Its good then because we have a policy like that. 39 +Harry, are you motivating your workforce daily 40 Max, you have a pretty good team of skilled laborers. 43 Yes, I chose them myself for the project. 33 -Sam, how much raw material is left at the factory? 40 -Is it enough for the next coming batch to produce? 40 -I don't think sir it will last till the next batch. 39 -Ok then have we planned to order it? 28 +Sam, how much raw material is left at the factory 40 +Is it enough for the next coming batch to produce 40 +I dont think sir it will last till the next batch. 39 +Ok then have we planned to order it 28 Yes sir we have been asking the hods about that. 38 You have to be a quick team. 21 You know that raw material is the key component. 39 -We cannot unseen this issue right? 28 +We cannot unseen this issue right 28 John, get the requirements to form everyone. 37 -Mike, will you carry out all the calculations? 38 -Do we need to talk to the purchasing team? 33 -Yes ma'am can we ask for their help? 27 -Yea! sure why not it is their job to do. 29 +Mike, will you carry out all the calculations 38 +Do we need to talk to the purchasing team 33 +Yes maam can we ask for their help 27 +Yea sure why not it is their job to do. 29 David, talk to the purchase head. 27 Daniel, I need the previous order list. 32 This will help us to tally the rates. 29 -Dine sir I'll get it by the purchasing team. 34 -Harry, can you go to the previous vendor? 33 +Dine sir Ill get it by the purchasing team. 34 +Harry, can you go to the previous vendor 33 I want some specification brochures. 31 Ok, sir I already scheduled a visit to them. 35 Max, we need some samples for testing. 31 -Yes ma'am I'll ask for that soon. 24 +Yes maam Ill ask for that soon. 24 Rachel, will you check with the technician. 36 I want all the samples to be tested before we order. 41 This will refrain us from getting the product spoiled. 45 Last time people had some complaints. 31 I think the raw material was not good enough. 36 This time we will make sure we get the best quality. 41 -Good quality will also increase the machine's life. 42 +Good quality will also increase the machines life. 42 Yes sir we agree with your theory. 27 I also had the same view. 19 Lucy, conduct a survey with the union leaders. 38 @@ -15350,39 +15350,39 @@ Team, I think there will be an audit next week. 37 We need to ensure full capacity production. 36 These audit people are very strict. 29 Emma, I need your help with price negotiation. 38 -Bella, you ordered the material last time right? 40 +Bella, you ordered the material last time right 40 Yes sir I did as I knew the people there. 31 Ok then joe, will do it this time. 26 I want everyone to develop contacts. 30 Megan, have a look at the quotation. 29 -Do you think they have increased the price? 35 -Yes sir they have increased a lot this time? 35 +Do you think they have increased the price 35 +Yes sir they have increased a lot this time 35 Olivia, call them and negotiate on loyalty terms. 41 We have been procuring from them for a decade. 37 We need a discount on our goodwill. 28 -What's the exact stock of the product left? 34 -Are we planning the inventory as per the guideline? 42 +Whats the exact stock of the product left 34 +Are we planning the inventory as per the guideline 42 We were short of stocks last time. 27 -Please all ensure it won't happen this time. 35 +Please all ensure it wont happen this time. 35 Right sir, actually we had a team meeting last night. 43 We have come to a fruitful conclusion. 31 From now onwards we will keep the stocks updated. 40 We will plan it fifteen days before only. 33 -Let's now make a pile in the warehouse. 30 -Yes, we understand that that's why we will sell it fast. 44 +Lets now make a pile in the warehouse. 30 +Yes, we understand that thats why we will sell it fast. 44 Lucy will track the inventory every Monday. 36 Rachel will make the necessary changes. 33 Emma will look after the product b stock. 33 -We won't make a pile of products. 25 +We wont make a pile of products. 25 I have asked the sales team to speed up. 31 This will help in ordering new inventory. 34 Mia, I want a smooth flow of products. 30 -If we don't deliver on time it gives a bad impression. 42 -Yes ma'am we won't let that happen. 26 +If we dont deliver on time it gives a bad impression. 42 +Yes maam we wont let that happen. 26 Joe, get all the documents ready for stock inventory. 44 -Are we keeping the invoice copy for every stock? 39 +Are we keeping the invoice copy for every stock 39 Yes sir it is been stored in the inventory room. 38 -Ok then let's move the products to the final lines. 40 +Ok then lets move the products to the final lines. 40 As soon as the demand rises level up the inventory. 41 More demand needs more inventory to keep. 34 Megan, you talk to the finance head. 29 @@ -15394,164 +15394,164 @@ Olivia, check the latest reports on the demand rise. 43 I think we will need more stock of product c. 35 Sam, check how much we have product c in the inventory. 44 This one is in more demand since last month. 35 -John, I hope you'll plan your requirement as per our discussion. 52 +John, I hope youll plan your requirement as per our discussion. 52 I have already done that my inventory is full. 37 I only need support from the sales team. 32 They have to speed up sales to reduce inventory costs. 44 Sir some products do incur a lot of inventory costs. 42 Actually, these are the products that need regular checks. 49 It costs us more to take care of such stock. 34 -No issue we'll address the problem in the next meeting. 44 -Mike, are you aware of your product's inventory? 39 -Ma'am actually my product sells smoothly. 34 -I don't have any issues in keeping the stocks. 36 +No issue well address the problem in the next meeting. 44 +Mike, are you aware of your products inventory 39 +Maam actually my product sells smoothly. 34 +I dont have any issues in keeping the stocks. 36 My team is handling the inventory very well. 36 -Yes, I know that and I'm proud of it. 27 +Yes, I know that and Im proud of it. 27 We had some problems managing the inventory last week. 45 -Don't worry this time we will do our best. 32 -This warehouse is a decade old, right? 31 +Dont worry this time we will do our best. 32 +This warehouse is a decade old, right 31 We have this since I joined the company. 32 Yes, sir actually it has all the facilities we need. 42 Yes, you are right this is a perfect warehouse for our products. 52 -Lucy, when was the pastime it was painted? 34 -I think ma'am we did it last summer. 27 +Lucy, when was the pastime it was painted 34 +I think maam we did it last summer. 27 Ok, then we should do it again this summer. 34 -Do we have enough fire extinguishers inside? 37 +Do we have enough fire extinguishers inside 37 Sir, we have to increase the fire extinguishers. 40 -The new products are inflammable ma'am. 32 +The new products are inflammable maam. 32 We need at least ten more of those items. 32 Ok then Rachel, order it as fast as possible. 36 -We cannot take a risk with people's life. 32 -Yes ma'am I'll ask for the quotation first. 33 +We cannot take a risk with peoples life. 32 +Yes maam Ill ask for the quotation first. 33 Emma will choose which one should be installed. 39 She is perfect with warehousing. 27 Mia, you check where it can be installed. 33 We already have on the corners. 25 I think the new ones should be installed in the middle. 44 -Bella, can you tell me the exact area of our warehouse? 44 -I'll need the information to discuss with the stock keeper. 48 +Bella, can you tell me the exact area of our warehouse 44 +Ill need the information to discuss with the stock keeper. 48 Megan, you come with to the old warehouse. 34 We have some important files to take out from there. 42 -Is the sanitation process being done on daily basis? 43 -Yes ma'am we are doing it every day. 27 +Is the sanitation process being done on daily basis 43 +Yes maam we are doing it every day. 27 Olivia, please install new lights in the warehouse. 43 You can also keep the good ones. 25 Just try to replace the lights which are too old. 39 I want everybody to see clearly in the warehouse. 40 Sam, ask the cleaning staff to come in the evening as well. 47 We have to take the utmost care to keep the warehouse clean. 48 -Which are stocks we are keeping in this warehouse? 41 -How much capacity does this warehouse have? 36 +Which are stocks we are keeping in this warehouse 41 +How much capacity does this warehouse have 36 Sir actually capacity is not much but the facilities are more. 51 Ok then do one thing transfer all the product c here. 42 These products need more care. 25 -John, you'll manage this warehouse from now. 36 +John, youll manage this warehouse from now. 36 Jack, I need you to prepare the timetable for the warehouse staff. 54 -Ok ma'am do you want anything to add specifically? 40 -David, do we have good ladders in the warehouse? 39 +Ok maam do you want anything to add specifically 40 +David, do we have good ladders in the warehouse 39 Daniel, check on the product a and b stock. 34 If we have space left then we can transfer the product here. 48 -I think that's a good idea. 20 +I think thats a good idea. 20 Harry, I want you to check for space. 29 -Max, do you need some area to keep your products? 39 +Max, do you need some area to keep your products 39 No sir there is enough area in the old warehouse. 39 Fine, then all product C will be in this warehouse. 41 She will take care of sanitization. 29 If you people need anything here do tell me. 35 Sure sir we will let you know if anything is needed. 41 -Can you tell me how many vendors we have for raw material? 46 +Can you tell me how many vendors we have for raw material 46 Lucy, you also give the list of products vendors. 40 -How many vendors we have outsourced as of now? 37 +How many vendors we have outsourced as of now 37 Sir actually 30 percent of vendors are outsourced. 42 Ok fine, then we have to allocate proper incentives to them. 49 -Rachel, how is it going with the vendor from Germany? 43 +Rachel, how is it going with the vendor from Germany 43 Pretty well sir those people are good in conversation. 45 Yes, I also thought when we finalized them as a permanent vendor. 53 -Do we have any issues pending to solve? 31 -Yes ma'am there are issues with vendors from the western zone. 50 +Do we have any issues pending to solve 31 +Yes maam there are issues with vendors from the western zone. 50 Their people from west always has some issue. 37 -The thing there a stronghold of Microsoft company's vendors. 50 +The thing there a stronghold of Microsoft companys vendors. 50 They try to disturb all the marketspace. 33 Mia, hand over me the final documents. 31 Emma, check with the vendor for the order date. 38 We have to build strong relations with these vendors. 44 As these are the people who will supply us with the right material. 54 -You, people, know-how important quality material is to us. 48 +You, people, knowhow important quality material is to us. 48 Yes sir we understand your concern. 29 We are trying to build a good rapport with them. 38 -Ma'am but some vendors are very rude. 29 -They don't pick up calls regularly. 28 +Maam but some vendors are very rude. 29 +They dont pick up calls regularly. 28 Bella, note down the issues with them. 31 He will try to resolve every problem in some days. 40 If you have a strong reason then we can replace that vendor. 48 Megan, you told me last time some issue with b vendor. 43 Yes sir there was something but we resolved it. 38 -That's such a smart move you have taken. 31 -I'm very proud of you people. 22 +Thats such a smart move you have taken. 31 +Im very proud of you people. 22 You all are allowed to take calculative risks. 38 This will help you in being a good future operations leader. 49 Our job is to make things work smoothly. 32 Olivia, send all the vendors this Diwali a gift. 39 We want them to know that we care for them. 33 It will be a token of appreciation from us. 34 -Sure sir I'll directly order online and send directly. 44 -That's what I also wanted. 20 +Sure sir Ill directly order online and send directly. 44 +Thats what I also wanted. 20 Sam, schedule a meeting with product c vendors. 39 They had some issues in delivery timing. 33 John, can you ask mike to talk to me personally. 38 -Jack, when the remaining orders we will get? 36 -I'm in constant conversation with them. 32 +Jack, when the remaining orders we will get 36 +Im in constant conversation with them. 32 Soon we will get the orders. 22 David, ask the vendor to make things work as we want. 42 There have been a lot of complaints from them. 37 -We are here to do business right? 26 -Daniel, ask him if it's possible if not then tell him to leave. 49 -Such mistakes won't be tolerated again. 32 +We are here to do business right 26 +Daniel, ask him if its possible if not then tell him to leave. 49 +Such mistakes wont be tolerated again. 32 Harry, go talk to the security head. 29 -Max, have planned a meet with product b vendors? 39 -How many deliveries have to be scheduled for next week? 45 +Max, have planned a meet with product b vendors 39 +How many deliveries have to be scheduled for next week 45 Lucy, give me the details of these deliveries. 38 This time the freight charges will higher. 35 It is because of the rise in fuel prices. 32 -Rachel, what was the freight charge or last delivery? 44 +Rachel, what was the freight charge or last delivery 44 Sir, we charged five thousand bucks for that freight. 44 -Oh! is it, that's quite expensive. 26 +Oh is it, thats quite expensive. 26 Ok, let it be we will try our best to lower that cost. 41 -Emma, from which are we sending the trucks? 35 -Ma'am those drivers have their defined routes. 38 -Ok, are we giving the new routes to follow? 34 +Emma, from which are we sending the trucks 35 +Maam those drivers have their defined routes. 38 +Ok, are we giving the new routes to follow 34 No, they are reluctant on that part. 29 -See this is the problem truck drivers don't listen only. 45 +See this is the problem truck drivers dont listen only. 45 Mia, ask the fleet owner to call me. 28 -Ok sir I'll fix the con call on Monday. 29 -Sir, I have a doubt why are these drivers so rude? 39 +Ok sir Ill fix the con call on Monday. 29 +Sir, I have a doubt why are these drivers so rude 39 The thing is a single freight takes at least fifteen hours to complete. 58 These drivers get very tired. 24 -That's why some drivers are rude and reluctant to listen. 46 -On what basis we are charging them for a single freight? 45 -Ma'am, it depends on the material weight and distance. 44 +Thats why some drivers are rude and reluctant to listen. 46 +On what basis we are charging them for a single freight 45 +Maam, it depends on the material weight and distance. 44 We charge more if the distance is too long. 34 -Are we giving them a discount on toll taxes? 35 -No ma'am they only said they'll manage. 30 +Are we giving them a discount on toll taxes 35 +No maam they only said theyll manage. 30 Ok fine then this issue is solved. 27 Bella, we want freezer trucks to schedule the next freight. 49 -Ok, sir then I'll find out such type of fleet owners. 41 +Ok, sir then Ill find out such type of fleet owners. 41 Right and also ask them if they have a permit. 36 -Sure sir I'll check all the documents before assigning. 45 -Megan, talk to yesterday's freight drivers. 36 +Sure sir Ill check all the documents before assigning. 45 +Megan, talk to yesterdays freight drivers. 36 I think they have some issues with the material. 39 -Ah! that's why they are calling me since morning. 38 -Yes, they might have you talked with them? 34 -No ma'am actually I was busy with scheduling the next freights. 51 +Ah thats why they are calling me since morning. 38 +Yes, they might have you talked with them 34 +No maam actually I was busy with scheduling the next freights. 51 Olivia, you go with Rachel and talk to them. 35 -Sure ma'am we both will solve the issue. 31 +Sure maam we both will solve the issue. 31 Sam, tell me the status of your freight schedule. 40 Sir, I have already emailed you the schedule of the next freight. 53 -That's amazing I like such kind of attitude. 35 +Thats amazing I like such kind of attitude. 35 John, will you ask the drivers to be quick. 34 Last they delayed the deliveries. 28 Which is why the company owner was pissed. 34 -Mike, will you handle the product's deliveries. 39 +Mike, will you handle the products deliveries. 39 Jack, what about our charge raw material freights. 42 How much they are charging us. 24 David, check the last freight charges. 32 @@ -15560,50 +15560,50 @@ Harry, please be specific on negotiation. 35 Sir, they also charge the same mostly. 31 Sometimes they overcharge us. 25 At what we start the process of back operation. 38 -Sir, we usually start at 4 o'clock in the evening. 39 -Ok, that's good not much time is needed. 31 -What all things are being done in that office? 37 -Ma'am all the documentation and scheduling process is done. 49 +Sir, we usually start at 4 oclock in the evening. 39 +Ok, thats good not much time is needed. 31 +What all things are being done in that office 37 +Maam all the documentation and scheduling process is done. 49 Good then lucy, note down all the process done here. 42 -Sure sir I'll do it and pass the information to you. 40 +Sure sir Ill do it and pass the information to you. 40 Rachel, have you documented the material purchases. 44 I was about to do that today sir. 25 -That's late ok no issue don't be late next time. 36 -Fine sir I won't let this happen again. 30 -Emma, are all the systems working in the office? 39 +Thats late ok no issue dont be late next time. 36 +Fine sir I wont let this happen again. 30 +Emma, are all the systems working in the office 39 I want the systems to be to date. 25 -You, people, know-how important documentation is. 42 +You, people, knowhow important documentation is. 42 Mia, will you handle the escalation process. 37 Bella, I want you to talk to the material department head. 47 This what we can turn things around. 29 From now we will first document the processes. 38 -Megan, are all the meetings scheduled for next week? 43 -It has been done last week only ma'am. 29 +Megan, are all the meetings scheduled for next week 43 +It has been done last week only maam. 29 You are such a smart person. 22 Thanks for handling all my scheduling operations. 42 -I'm glad to that sir. 15 -Olivia, would you please document this deal? 37 +Im glad to that sir. 15 +Olivia, would you please document this deal 37 This is an important deal and it should be documented. 44 Actually, it was done by itself. 26 -Oh! then I'll do it on an immediate basis. 31 +Oh then Ill do it on an immediate basis. 31 Good, I wanted this only from you, Olivia. 34 Sam, you pretty good at handling back end work. 38 I know your documentation skills. 28 -From where have you got these skills? 30 +From where have you got these skills 30 Sir, I did a professional course on the back end process. 46 Fine, it is helping you in your career. 31 Yes, thank you sir for your appreciation. 34 -John, would you mind keeping the files in the cupboard? 45 -No sir we won't mind doing any work for you. 33 +John, would you mind keeping the files in the cupboard 45 +No sir we wont mind doing any work for you. 33 You are like a teacher to us. 22 I want to learn such skills from you. 29 It will help me in being a good operations manager. 41 -Sure mate, I'll teach you everything. 30 +Sure mate, Ill teach you everything. 30 Joe, I hope you also help in doing this. 31 You people are doing great in the back end process. 41 -Mike, where were you for an hour? 26 -I was talking to the purchase head for the next day's order. 47 -Ok fine then, have you confirmed it? 29 +Mike, where were you for an hour 26 +I was talking to the purchase head for the next days order. 47 +Ok fine then, have you confirmed it 29 Jack, I will need your suggestion on this. 34 It will be my pleasure to give my inputs. 32 David, you are late for the meeting. 29 @@ -15611,7 +15611,7 @@ Daniel, plan the next meeting after back end work. 41 Harry, come we need to talk. 22 Lucy schedule a meeting with the purchasing team this evening. 52 I want all to address their issues regarding purchase. 45 -Do we have any leader for this department? 34 +Do we have any leader for this department 34 Sir as of now I was only looking at the department. 40 But I think that we need a dedicated leader to handle this. 47 Ok, then we will find a better fit for the job. 36 @@ -15619,63 +15619,63 @@ Rachel, from now onwards you will be leading the purchasing department. 60 Whatever we need in the plant will be ordered by you. 42 Sure sir thanks a lot for giving me this opportunity. 43 So people tell me your requirements. 30 -Do we have enough stationary till next month in the office? 48 +Do we have enough stationary till next month in the office 48 Everyone can tell me specifically what they want. 41 He was asking about the scientific calculators. 40 -I think we have already ordered that right Rachel? 41 -Yes ma'am we did it last month only. 27 +I think we have already ordered that right Rachel 41 +Yes maam we did it last month only. 27 Emma, do you need anything for the documentation process. 48 I think we will buy a tally subscription for you. 39 -That will be very helpful ma'am thanks in advance. 40 +That will be very helpful maam thanks in advance. 40 Mia, I hope you have enough product B raw material. 41 Not enough sir but will order it next week. 34 Ok, then you tell the team directly your requirement. 44 -Definitely ma'am I'll do that. 23 +Definitely maam Ill do that. 23 Bella, from where are purchasing the stationary. 41 -It's a well-known shop in the market. 28 +Its a wellknown shop in the market. 28 We have been buying from them for a decade. 34 Ok, then no need to alter that. 24 -Joe, what about your technical device? 32 -Do you want any updated one for work? 29 -Ma'am as of now I don't need anything. 28 +Joe, what about your technical device 32 +Do you want any updated one for work 29 +Maam as of now I dont need anything. 28 Megan, you asked me about the records. 31 Yes sir I wanted it badly next week. 28 Ok, then we will order it as soon as possible. 36 -Olivia, do we have enough supply of snacks in the office? 46 +Olivia, do we have enough supply of snacks in the office 46 Yes, we do have, the supply is regular. 31 -That's pretty good no one should feel hungry the whole day. 47 -Sam, when is the product b's delivery scheduled? 39 +Thats pretty good no one should feel hungry the whole day. 47 +Sam, when is the product bs delivery scheduled 39 That one I wanted next week. 22 Sir, I want new writing pads for the supervisor. 39 -Ok, anything else with that you want? 30 -That's it for, I will ask Rachel if I want anything else. 44 -John, what about the tools that are all updated? 39 +Ok, anything else with that you want 30 +Thats it for, I will ask Rachel if I want anything else. 44 +John, what about the tools that are all updated 39 Sir, we need some repairmen to be done on it. 35 Ok then ask mike for that. 20 -Jack, I hope you are full of the material part? 37 -Yes, I have plenty of that material in-store. 36 -David, please tell me directly what you want? 37 -Daniel, are stocks piled up in the store? 33 -Who is handling the store by the way? 29 -Sir, I'm responsible for store operations. 35 -Which are the next batches for production? 35 +Jack, I hope you are full of the material part 37 +Yes, I have plenty of that material instore. 36 +David, please tell me directly what you want 37 +Daniel, are stocks piled up in the store 33 +Who is handling the store by the way 29 +Sir, Im responsible for store operations. 35 +Which are the next batches for production 35 Give me the list of products for the next batch. 38 -Until when shall I expect the start of production? 41 -Lucy, do you any information regarding the same? 40 +Until when shall I expect the start of production 41 +Lucy, do you any information regarding the same 40 I want specific details. 20 -Have we scheduled the production on conk machines? 42 +Have we scheduled the production on conk machines 42 Rachel, do you know about this process. 32 Yes, sir, I know and we are taking forward the decision. 45 I like that keep doing the same work Rachel. 35 Emma, you have to give the process map. 31 -Sure ma'am I'll send you by this evening. 31 +Sure maam Ill send you by this evening. 31 Done I want everybody to speed up the work. 34 Mia, have you assigned the work to laborers. 36 No, not yet boss will do it tomorrow. 29 Most of the laborers are gone home today. 33 We should plan the meeting with laborers in the morning itself. 52 Yes, I also think the same way. 24 -Yes ma'am it will help to have a fruitful discussion. 42 +Yes maam it will help to have a fruitful discussion. 42 Joe then asks all the laborers to come early in the morning. 48 I have done it already boss. 22 Good timing of work you got man. 25 @@ -15686,41 +15686,41 @@ Megan, ask the technicians to be available. 36 How much quantity we are planning to produce. 37 This time we will do it more than required. 34 Last time there was a shortage of product. 34 -I don't want people to suffer from the supply. 36 +I dont want people to suffer from the supply. 36 We produce an essential product. 27 People need it on daily basis. 24 Olivia, next time do a forecast beforehand. 36 Forecasting the production will help us. 34 This will save time for rework. 25 I hope you people are understanding my thoughts. 40 -Very much ma'am we are with you in any decision. 37 +Very much maam we are with you in any decision. 37 Sam, get your tools ready for the process. 34 I will need the best in class tools. 28 We produce the best in a class quality product. 38 John, hand over me the reports of the process. 37 -Mike, what was the last time's estimate? 32 -Do we have any copy of that? 21 -Give me some time I'll find it out. 26 +Mike, what was the last times estimate 32 +Do we have any copy of that 21 +Give me some time Ill find it out. 26 Jack, you be ready with your design. 29 This time we will produce your design. 31 David, where is the operator of the milling machine. 43 I want him to be very keen on this project. 33 -Daniel, it's your responsibility to supervise. 39 +Daniel, its your responsibility to supervise. 39 That I have already taken care of. 27 Max, you be along the whole process. 29 People say our company has the best supply chain management. 50 It is a hundred percent true I think. 29 It is only possible because of you guys. 32 You are the best team members. 24 -Lucy, from where we are sourcing product b's raw material. 47 -Ma'am is has been supplied by the Microsoft company. 42 +Lucy, from where we are sourcing product bs raw material. 47 +Maam is has been supplied by the Microsoft company. 42 We have been in relation to their company for since long. 46 They never delay the deliveries. 27 Their supply has never stopped since we started. 40 See these kinds of people we want in business. 37 Our supply chain is three phases. 27 -Rachel, were you aware of this? 25 -No sir but I'm eager to learn about this. 31 +Rachel, were you aware of this 25 +No sir but Im eager to learn about this. 31 See our supply is based on production. 31 Later we send it to the warehouse. 27 Emma, do you know the next phase. 26 @@ -15729,26 +15729,26 @@ Yes, you are absolutely correct. 27 This is called the primary billing phase. 34 Here the business starts moving forward. 34 Mia, do you know the last in the process. 32 -I'm a bit confused about that can you explain. 36 -Sure I'll let you know today all about the supply chain. 44 +Im a bit confused about that can you explain. 36 +Sure Ill let you know today all about the supply chain. 44 The last transaction is between distributors and retailers. 51 Since he is the last in the phase he sells the product. 43 This is how all the supply chain works. 31 -Bella, you know about the transport right? 35 -Yes sir I'm aware of this thing. 24 -Good, I'm glad you know these things. 29 +Bella, you know about the transport right 35 +Yes sir Im aware of this thing. 24 +Good, Im glad you know these things. 29 Megan has good relations with the suppliers. 37 Olivia, always handles the transport process. 39 We need to talk with the suppliers next week. 36 -Can we schedule a virtual meet with them? 33 -It's not possible to go and meet every supplier. 38 +Can we schedule a virtual meet with them 33 +Its not possible to go and meet every supplier. 38 They live far away from our company. 29 Right sir, I will send a notification to everyone. 41 Sam, I want you to go to old supplier. 29 He is one of the largest suppliers of our company. 40 And also he has an outlet nearby only. 30 We want our relation to strengthening with them. 40 -Ok, then I'll go and meet him personally. 32 +Ok, then Ill go and meet him personally. 32 John, you also go with sam. 21 Mike, just a request can you talk to you jack about the supply break. 55 This time there was a supply break in the chain. 38 @@ -15756,8 +15756,8 @@ That issue has resulted in a bad reputation. 36 David, you are good with conversation. 32 You can handle this situation properly. 33 Daniel, you give him the required information. 39 -We don't want any delay in the supply of product B. 39 -Right sir, I'm personally looking into the matter. 41 +We dont want any delay in the supply of product B. 39 +Right sir, Im personally looking into the matter. 41 We have been in business for two decades. 33 Still, our company produces the best quality product. 45 This is all because of our quality control checks. 41 @@ -15767,12 +15767,12 @@ Lucy, check with the last product reports. 35 Everything is going well sir. 24 The customers are happy with the quality of the product. 46 See I said we are good at maintaining the quality. 40 -Rachel, who is the supervisor for quality control? 42 -Ma'am daniel is looking at the quality control department. 48 +Rachel, who is the supervisor for quality control 42 +Maam daniel is looking at the quality control department. 48 Ok, then we have a smart person for the job. 34 Daniel is well equipped with technical skills. 39 Emma, we can also ask skilled laborers to check. 39 -Ok right sir I'll ask them to check in the assembly line only. 48 +Ok right sir Ill ask them to check in the assembly line only. 48 That will be better than I expected. 29 Mia, get me the list of software operators. 35 These people know very well about quality. 35 @@ -15781,7 +15781,7 @@ Yes, I think it will save most of our time. 33 These processes will help us attain higher accuracy. 44 Bella, you also go and learn from them. 31 Megan, you were aware of their expertise. 34 -Yes, ma'am actually we had a long discussion with them. 44 +Yes, maam actually we had a long discussion with them. 44 That discussion with software people was insightful. 45 Olivia, you also discuss it with Megan. 32 Then you can also help daniel with quality control. 42 @@ -15790,31 +15790,31 @@ The products final quality is tested here. 35 Sam, you also have experience in quality control. 41 Yes, I did the same work in my previous company. 38 So are willing to help them in the task. 31 -Sir, I would have but I'm occupied with some other work. 44 -Ok, then I'll ask John to take care. 27 +Sir, I would have but Im occupied with some other work. 44 +Ok, then Ill ask John to take care. 27 He will be able to learn new things. 28 -What do you say john? 16 +What do you say john 16 Yes, absolutely sir I always wanted to learn quality control. 51 -It's the best opportunity as of now. 28 +Its the best opportunity as of now. 28 Joe, make arrangements for john then. 31 Right away as you said will be done. 28 -Mike, where are you since morning? 28 +Mike, where are you since morning 28 I want you to assist john with the new project. 37 David will check the last quality of the product. 40 Daniel will do the final documentation. 33 I suppose we are done with the discussion. 34 -Anyone has some points to discuss? 28 +Anyone has some points to discuss 28 Not actually sir we have covered all the points. 39 Harry, you will be operating the systems for the project. 47 -Sure I don't have any issue doing that. 30 +Sure I dont have any issue doing that. 30 Max, I want you to be firm with the same design. 37 -I wake up at 7 o'clock in the morning with the ringing of my alarm. 51 +I wake up at 7 oclock in the morning with the ringing of my alarm. 51 I turned off the alarm and get up. 26 Then I had a shower. 15 After having a shower I get dressed. 29 I have my breakfast. 16 -I always go to school at 8 o'clock. 26 -As I am punctual, I can't be late. 25 +I always go to school at 8 oclock. 26 +As I am punctual, I cant be late. 25 I have my lunch at school. 20 I have my lunch at the office. 23 Chicken is my favorite cuisine. 26 @@ -15825,18 +15825,18 @@ Actually, I want to say this. 23 Actually, I was stuck there. 23 Actually, I caught in a traffic jam. 29 Actually, I want to study. 21 -Actually, I don't have money to purchase books. 38 +Actually, I dont have money to purchase books. 38 Actually, I worked hard. 20 -Anyway, what you want to do now? 25 -Anyway, have you learned English? 28 -Anyway, will you meet me? 20 +Anyway, what you want to do now 25 +Anyway, have you learned English 28 +Anyway, will you meet me 20 You know tomorrow is an India Pakistan match. 37 You know the competition is very much nowadays. 39 -You know I like ice-cream very much. 28 -By the way, what is your name? 23 -By the way, what is your school name? 29 -By the way, where did you learned pretty good English? 44 -By the way, where do you play cricket? 30 +You know I like icecream very much. 28 +By the way, what is your name 23 +By the way, what is your school name 29 +By the way, where did you learned pretty good English 44 +By the way, where do you play cricket 30 Let me tell you, I am an English teacher. 32 Let me tell you, I am feeling sick. 27 Let me tell you, I am very fond of English. 33 @@ -15844,16 +15844,16 @@ Let me tell you, I love you very much. 29 Let me tell you, there are many talented people living in late India. 56 Obviously, I do. 13 Obviously, I love it. 17 -You won't believe you will change totally. 34 -You won't believe English is very simple. 33 +You wont believe you will change totally. 34 +You wont believe English is very simple. 33 Why are you so dejected today. 24 I penned a letter. 14 -Where do you put up? 15 +Where do you put up 15 My mother mopped up my room. 22 Railway commuter. 15 You have to enhance your English skills. 33 -Why did you deceive me? 18 -Why didn't you intimate that yesterday was my birthday? 45 +Why did you deceive me 18 +Why didnt you intimate that yesterday was my birthday 45 My father bristled at me. 20 I feel very cozy with you. 20 I have to embellish my house. 23 @@ -15864,16 +15864,16 @@ Why are you so sedate. 17 He is a promising guy. 17 You should drink in the lecture with your teacher. 41 I blatantly say that I can speak English. 33 -Can you look up these words in the dictionary? 37 -Can you look up the location on Google? 31 +Can you look up these words in the dictionary 37 +Can you look up the location on Google 31 I am looking up my keys. 18 She looked up for a new apartment. 27 He was very brave but he gave up. 25 I will never give up. 16 He always makes up some excuses so that he could not be punished. 52 -She made-up a story which is liked by everyone. 37 -You had a fight with him last year so you should make-up with him. 51 -I took-up interest in cricket at sixteen. 33 +She madeup a story which is liked by everyone. 37 +You had a fight with him last year so you should makeup with him. 51 +I tookup interest in cricket at sixteen. 33 She brings up her children. 22 I will bring up this topic at the next meeting. 37 I was not expecting him to be here but he turned up. 40 @@ -15891,39 +15891,39 @@ He is brave. 9 I am fearless. 11 All the students have passed the medical exam. 38 I know little about country music. 28 -I know little about hip-hop dance. 27 +I know little about hiphop dance. 27 He gave me some chocolates. 22 We have enough time for practice. 27 -You don't have much milk. 19 +You dont have much milk. 19 I have only one pen. 15 Rose buy three books. 17 -The third-place goes to Marie! 24 +The thirdplace goes to Marie 24 This book is good. 14 That mango is good. 15 These books are costly. 19 Those apples are sweet. 19 -I can't forget that incident. 23 -This time I won't fail you. 20 -Whose house are you staying in? 25 -Which way shall we go? 17 -Whose book was that? 16 -Which pen do you like more? 21 -What books are you buying today? 26 +I cant forget that incident. 23 +This time I wont fail you. 20 +Whose house are you staying in 25 +Which way shall we go 17 +Whose book was that 16 +Which pen do you like more 21 +What books are you buying today 26 Neither of us was present. 21 Each boy will play football. 23 Every person can sing well. 22 -I don't know either of them. 21 -Is there any milk left? 18 -Can I see that one? 14 +I dont know either of them. 21 +Is there any milk left 18 +Can I see that one 14 They are both good teachers. 23 My shirt is black. 14 This dog is mine. 13 Our school is famous. 17 -Where is your sister? 17 +Where is your sister 17 His wife is very beautiful. 22 -It's her guitar. 12 -We're going in their car. 19 -It's yours. 8 +Its her guitar. 12 +Were going in their car. 19 +Its yours. 8 The chameleon can change its color. 29 He is an American person. 20 He speaks Indian English. 21 @@ -15931,11 +15931,11 @@ Mike is an Australian player. 24 My brother likes Italian cuisine. 28 Japanese cars are wonderful. 24 All African people are not black. 27 -Do you enjoy Spanish food? 21 +Do you enjoy Spanish food 21 German cars are among the finest. 27 Alaskan salmon is nutritious and delicious. 37 A gala day. 8 -At snail's pace. 12 +At snails pace. 12 Apple of discord. 14 Try on. 5 Try out. 6 @@ -15962,25 +15962,25 @@ You are the apple of my eyes. 22 Bad apple. 8 She has a heart of gold. 18 He has a heart of stone. 18 -He has a one-track of mind. 20 +He has a onetrack of mind. 20 He has a big mouth. 14 -My baby has a sweet tooth! 20 +My baby has a sweet tooth 20 You are not paying heed at all. 24 Your ears are tingling. 19 -It's not a big deal. 14 +Its not a big deal. 14 She did it behind my back. 20 Stop building castles in the air. 27 I am dead broke. 12 I am dead died. 11 -You can do it on the run. let's go! 24 -I did it on the fly, it's nothing special. 32 +You can do it on the run. lets go 24 +I did it on the fly, its nothing special. 32 Do or die. 7 He has a good head on his shoulders. 28 I broke out in a cold sweat. 21 The day of his marriage was a gala day for him. 36 -The work is going on at a snail's pace. 29 +The work is going on at a snails pace. 29 The small piece of land is the apple of discord between the brothers. 56 -What a lovely dress! why don't you try it on? 33 +What a lovely dress why dont you try it on 33 You should try out that led t.v. before you finally buy it. 45 He is a heartless fellow, his sympathy for the widow is just an eyewash. 58 The criminal is still at large. 25 @@ -15988,13 +15988,13 @@ He is above board in his dealings. 27 She turned against her best friend. 29 His efficiency is at a low ebb. 24 I cannot wink at his faults any longer. 31 -Why are you adding fuel to the fire? 28 +Why are you adding fuel to the fire 28 He is a good doctor, above all he is a good man. 36 He turned in his answer paper and came out of the examination hall. 54 She is adept at painting. 20 -His boss dismissed him. to add injury, he didn't give him wages for one week. 60 +His boss dismissed him. to add injury, he didnt give him wages for one week. 60 His statement was not based on reality. it was all moonshine. 49 -The dog faithfully watched over his master's sleeping child. 50 +The dog faithfully watched over his masters sleeping child. 50 The matter was all over with his departure. 35 He is good as gold. 14 He worked for 12 hours at a stretch. 28 @@ -16002,34 +16002,34 @@ Due to a shortage of funds, the construction work is at standstill. 55 This color wears off soon. 21 I want to get this at any cost. 23 This fashion was all the rage ten years ago. 35 -Don't open the door. 15 -Don't ask me for money. 17 -Don't be afraid to fail. 18 -Don't be arrogant. 14 -Don't be disappointed. 18 -Don't be jealous. 13 -Don't be late for school. 19 -Don't be nervous. 13 -Don't be overconfident. 19 -Don't be proud of yourself. 21 -Don't be shy to speak English. 23 -Don't be upset with the results. 25 -Don't behave like a child. 20 -Don't bite your nails. 17 -Don't care what other things. 23 -Don't chew gum in class. 18 -Don't come to my house. 17 +Dont open the door. 15 +Dont ask me for money. 17 +Dont be afraid to fail. 18 +Dont be arrogant. 14 +Dont be disappointed. 18 +Dont be jealous. 13 +Dont be late for school. 19 +Dont be nervous. 13 +Dont be overconfident. 19 +Dont be proud of yourself. 21 +Dont be shy to speak English. 23 +Dont be upset with the results. 25 +Dont behave like a child. 20 +Dont bite your nails. 17 +Dont care what other things. 23 +Dont chew gum in class. 18 +Dont come to my house. 17 Mind your language. 16 None of your business. 18 He is coming soon. 14 I not sure. 8 Not recently. 11 -Don't kid. 7 +Dont kid. 7 I am not ready yet. 14 I would like to go for walk. 21 This is very important. 19 I am cleaning my room. 17 -It's longer than 2 kilometers. 24 +Its longer than 2 kilometers. 24 That is right. 11 That is too much. 13 More than that. 12 @@ -16041,59 +16041,59 @@ Come as soon as possible. 20 Eat whatever you want. 18 Get it repaired by monday. 21 Mom make a green tea for us. 21 -One tea without sugar please! 24 -Do you brush your teeth twice a day? 28 -Do you mind if i close the window? 26 -Do you fancy going out for a drink? 27 +One tea without sugar please 24 +Do you brush your teeth twice a day 28 +Do you mind if i close the window 26 +Do you fancy going out for a drink 27 I spend a lot of money on a books. 25 Please observe. 13 -Does anyone want some more rice? 26 -Do you often come to this restaurant? 30 -Will i teach you how to operate it? 27 +Does anyone want some more rice 26 +Do you often come to this restaurant 30 +Will i teach you how to operate it 27 I usually go to walk after dinner. 27 I will be very happy to work with you. 29 -Do you think we need a car? 20 +Do you think we need a car 20 I think you should go to see a doctor. 29 If you are late please inform me. 26 Let us go out for dinner. 19 Get it fix by someone else. 21 Come in. 6 -Don't cry. 7 +Dont cry. 7 Go back. 6 -Don't shout. 9 +Dont shout. 9 Stop there. 9 Turn left. 8 Turn right. 9 Look straight. 12 Look down. 8 Get ready. 8 -Who's speaking. 12 +Whos speaking. 12 Your friend. 10 Of course. 8 Walk slowly. 10 -That's all. 8 -What happened? 12 +Thats all. 8 +What happened 12 Switch on. 8 Switch off. 9 Try again. 8 Repeat again. 11 Give me. 6 Take this. 8 -Don't jump. 8 -Don't hurry. 9 +Dont jump. 8 +Dont hurry. 9 Run fast. 7 Very good. 8 Shut up. 6 Take the risk. 11 Join us. 6 Hold this. 8 -Don't move. 8 +Dont move. 8 Keep quiet. 9 Happy birthday. 13 Please help. 10 Next time. 8 Tell me. 6 -Don't mind. 8 +Dont mind. 8 Take outside. 11 I enjoy teaching English. 21 I enjoyed teaching English. 23 @@ -16105,8 +16105,8 @@ I like dancing. 12 Swimming is my favourite sport. 26 I want to dance. 12 I create videos to teach. 20 -She can't go out. 12 -I couldn't swim. 12 +She cant go out. 12 +I couldnt swim. 12 The man runs to the store. 20 He wanted to find a solution. 23 He is looking for a solution. 23 @@ -16116,28 +16116,28 @@ The outfielder leaped for the baseball. 33 Many people travel to the ocean in the summer. 37 The sailboat glides over the water. 29 The lion is the king of the jungle. 27 -I can't swim yet. 12 +I cant swim yet. 12 I have a suggestion to help you study. 30 To run is often tiresome. 20 You promised me the last ticket. 26 I went for a walk around the park. 26 She was waiting in the room before he came in. 36 -Does your brother know my brother? 28 +Does your brother know my brother 28 We want john to act as club secretary. 30 I like taking photographs of insects. 31 Coming home last night, I saw a deer run across the road. 45 I decided not to go to new york. 24 -I'd rather not eat meat. 18 +Id rather not eat meat. 18 I might not come. 13 He asked me not to be late. 20 -I'd like you not to sing so loudly. 26 +Id like you not to sing so loudly. 26 I sing. 5 We tell stories at night. 20 Maya laughed. 11 The shelter collapsed. 19 I like to get up early at the weekend. 29 Harriet dislikes cleaning the cooker. 32 -I certainly wouldn't want to see him again. 34 +I certainly wouldnt want to see him again. 34 We persuaded them to join us. 23 I like to play with my puppy. 22 She works hard to pass the test. 25 @@ -16156,8 +16156,8 @@ Begin know. 9 Oh snap. 6 Take roadtrip. 12 Take risk. 8 -Don't ask question. 15 -Don't try again. 12 +Dont ask question. 15 +Dont try again. 12 Hello sweet heart. 15 Stop over analyzing. 17 Lets get high. 11 @@ -16178,8 +16178,8 @@ I really appreciate. 17 Yes you can. 9 Oh.. what a fun. 10 Be extra ordinary. 15 -Lets's stay home. 13 -Any thing else? 12 +Letss stay home. 13 +Any thing else 12 Organization of future. 20 Are you free. 10 Just a little. 11 @@ -16190,9 +16190,9 @@ Take it outside. 13 He is alright. 11 This is right. 11 Grab a seat. 9 -Don't be hasty. 11 -Let's not be hasty. 14 -Where to go? 9 +Dont be hasty. 11 +Lets not be hasty. 14 +Where to go 9 Stay a while. 10 Stand in line. 11 Stop avoiding me. 14 @@ -16224,17 +16224,17 @@ Here, drink this. 14 Make it quick. 11 Nobody saw anything. 17 Do something else. 15 -Here comes trouble! 16 +Here comes trouble 16 Keep looking around. 17 Let them fight. 12 Everybody thought so. 18 Knock it off. 10 -Knock yourself out! 16 +Knock yourself out 16 Something felt wrong. 18 Keep on working. 13 Someone dropped this. 18 Bring that home. 13 -Hey, turn around! 14 +Hey, turn around 14 Take that home. 12 Look this way. 11 Everything looks good. 19 @@ -16257,7 +16257,7 @@ The sea was very deep. 17 I want beans and cheese in the sandwich. 32 There were less beans and cheese in the cuisine. 39 I got skin burn due to severe heat. 27 -My car's colour became faint due to severe heat of sun. 43 +My cars colour became faint due to severe heat of sun. 43 Take deep breathe while doing physical activity. 41 One should practice taking deep breathes. 35 Everyone should consume three meals in a day. 37 @@ -16273,8 +16273,8 @@ I like peaches in submerged in the cream. 33 People speak chinese in china. 25 I have a problem when i speak chinese. 30 The employees agreed to meet at eight fifteen. 38 -Don't keep the tv near the heater. 26 -It's extremely easy to cheat when the teacher isn't here. 45 +Dont keep the tv near the heater. 26 +Its extremely easy to cheat when the teacher isnt here. 45 Please speak to peter about the employee meeting. 41 Steve will reread the email before he leaves. 37 Big city. 7 @@ -16292,7 +16292,7 @@ He was an innocent victim. 21 The victim was innocent still she was punished. 39 One should drink milk everyday. 26 Sometimes children hesitate to drink milk. 36 -We watched a children's film yesterday. 32 +We watched a childrens film yesterday. 32 Successful people believe in simple living. 37 Simple living is very hard to achieve. 31 There were chips made of fish. 24 @@ -16301,7 +16301,7 @@ I went on a trip to italy last year. 27 Lets go a trip to italy next year. 26 The spring season is good for picnic. 30 We go for a picnic usually in spring season. 35 -From where this thing came? 22 +From where this thing came 22 This thing has many attributes. 26 In winter wind is very cool. 22 There was less wind in last winter. 28 @@ -16309,7 +16309,7 @@ Kim will visit her big sister linda in virginia. 39 In the beginning it was difficult for jim to quit drinking. 48 The smiths invited him to an informal dinner. 37 This city has an interesting history. 31 -When did bill clinton visit the middle east? 36 +When did bill clinton visit the middle east 36 The same day. 10 Stay away. 8 Escape from jail. 14 @@ -16326,8 +16326,8 @@ Police are advising fans without tickets to stay away. 45 Stay away from the edge of the cliff. 29 The prisoners used the tunnel to escape from jail. 41 In the movie the villain make the hero escape from jail. 45 -We'll take a break now and resume in half an hour. 38 -I see it's approaching lunchtime, so let's take a break. 44 +Well take a break now and resume in half an hour. 38 +I see its approaching lunchtime, so lets take a break. 44 The more things change, the more they stay the same. 42 Half of the people believed economy would stay the same. 46 I tried to explain the situation to my boss. 35 @@ -16337,7 +16337,7 @@ We used to play baseball in the vacant lot. 34 His father is an eighty eight year old man. 34 The policy covers the health upto eighty eight years of age. 49 Bake a cake and do chocolate icing. 28 -Bake a cake for his friend's birthday tomorrow. 38 +Bake a cake for his friends birthday tomorrow. 38 Please donate to this charity to save the whales. 40 There is a protest going on to save the whales. 37 Presidential elections. 21 @@ -16351,13 +16351,13 @@ Elegant dress. 12 Next wednesday. 13 Well read. 8 In america, presidential elections are held every four years. 52 -Presidential elections are due to be held in ten days' time. 48 +Presidential elections are due to be held in ten days time. 48 For the next exercise, please bend your legs. 37 If you want to be flexible, you need to bend your legs. 43 The cylinder moulding drier caused a plenty of energy. 45 We used a tin of powder, a damp cloth and plenty of energy. 46 When you serve at the office remember the pledge you made. 47 -If you remember the pledge, you'll know that it is a lie. 44 +If you remember the pledge, youll know that it is a lie. 44 Yet somehow we stumbled along and became better friends. 47 The cat and dog may kiss, yet are none the better friends. 46 His music is a heady brew of heavy metal and punk. 39 @@ -16372,7 +16372,7 @@ In the months to come we might well read about profiteering. 49 She complained about her weight but ate the cake anyway. 46 Jake hates waiting for trains and planes. 34 It rains and hails in april and may. 28 -I will stay in the game even though it's late. 35 +I will stay in the game even though its late. 35 My neighbour from spain moved away today. 34 Without some extra effort you will never excel. 39 Jenny and her friend had eggs for breakfast. 36 @@ -16394,7 +16394,7 @@ Her loose ways are setting a bad example to her younger siblings. 53 We must always stand while singing our national anthem. 46 The concert began with the national anthem. 36 He was back at the ranch after three weeks. 34 -The cattle's are back at the ranch after years. 37 +The cattles are back at the ranch after years. 37 You have given the accurate answer of the problem. 41 The accurate answer to his question was not found. 41 A bad habit in a child should be nipped in the bud. 39 @@ -16407,7 +16407,7 @@ This is my last chance to pass the boards. 33 The teacher gave her one last chance to prove she could behave. 51 The hero of the movie is a very handsome actor. 37 The tv show is filled with handsome actors. 35 -You've always struck me as being an angry man. 36 +Youve always struck me as being an angry man. 36 The door shut with a bang after the angry man. 36 This is your last chance to give me an accurate answer. 44 Sam sat at the back of the math class. 29 @@ -16423,13 +16423,13 @@ Logical response. 15 Hot topic. 8 Modern hospital. 14 Sloppy job. 9 -It's a common problem but this doesn't make it less disturbing. 50 -There's also the common problem of under-staffing. 41 +Its a common problem but this doesnt make it less disturbing. 50 +Theres also the common problem of understaffing. 41 The body shop expanded rapidly under the franchise system. 49 Body shop issued a warning as its product strategy hit problems. 53 We need to rent the cabins to occupy the office completely. 48 Boss told the new employees to occupy the office. 40 -I don't like to get involved in office politics. 38 +I dont like to get involved in office politics. 38 They cleaned the house from top to bottom. 34 This company needs reorganizing from top to bottom. 43 The logical response is to retreat into your private life for love. 55 @@ -16446,7 +16446,7 @@ Ronald is confident that he got the job. 32 Scott goes to a lot of rock concerts. 29 The doctor operated in the modern hospital. 36 Bob will probably lock the office. 28 -He's got a lot of dollars in his pocket. 30 +Hes got a lot of dollars in his pocket. 30 Pause in the hall. 14 Awful thought. 12 Water the lawn. 12 @@ -16478,43 +16478,43 @@ He caught the ball with great dexterity. 33 I reached out a hand and caught the ball. 32 The audience applauded even though the talk was awful. 45 His small daughter thought that santa claus would come in august. 54 -I saw your mother-in-law in the mall. 28 +I saw your motherinlaw in the mall. 28 He bought an automobile at the auction last fall. 40 -This sauce is awesome, sam! 22 +This sauce is awesome, sam 22 Phone home. 9 Own a home. 8 Almost over. 10 Open road. 8 Drove slowly. 11 -Don't smoke. 9 +Dont smoke. 9 Low profile. 10 Slow motion. 10 Old poem. 7 Golden bowl. 10 -Don't phone home from your hotel. 26 -Maybe when they didn't phone home, the alarm bells rang. 45 +Dont phone home from your hotel. 26 +Maybe when they didnt phone home, the alarm bells rang. 45 Their dream is to own a home in suburbia. 32 I have to own a home before i turn 30. 28 Their relationship is almost over now. 32 My dissertation is almost over so i can go now. 37 Put on a helmet, fire up your engine and head out on the open road. 52 -The car's performance is good, especially going fast on the open road. 57 +The cars performance is good, especially going fast on the open road. 57 We drove slowly through the driving rain. 34 The old car pulled hard as we drove slowly up the hill. 43 -I don't smoke and i drink only moderately. 33 -People who don't smoke are healthier than people who do. 45 +I dont smoke and i drink only moderately. 33 +People who dont smoke are healthier than people who do. 45 I advised her to keep a low profile for the next few days. 45 During the event clinton will keep a low profile. 40 -Let's see that goal again in slow motion. 32 +Lets see that goal again in slow motion. 32 Everything seemed to proceed in slow motion. 37 He dedicated an old poem to his teacher. 32 She explained an old poem to the children. 34 He used to eat food in a golden bowl. 28 -We both hope it's going to snow. 24 -Oh, no! don't open the window! it's cold. 29 -Do you want to go bowling or roller skating? 35 +We both hope its going to snow. 24 +Oh, no dont open the window its cold. 29 +Do you want to go bowling or roller skating 35 I chose a bowl of soup, potatoes, roast beef, and a soda. 45 -I don't know if joan smokes. 21 +I dont know if joan smokes. 21 Young son. 8 Jump up. 6 Fun in the sun. 11 @@ -16537,17 +16537,17 @@ She proved herself to be a wonderful mother for him. 42 He looked hard at the outline of the body under the rug. 44 They key to the room is under the rug. 29 The economy is the number one issue by far. 34 -It's been number one in the charts for six weeks. 38 +Its been number one in the charts for six weeks. 38 She is an undercover agent for 3 years. 31 He worked undercover in germany and northern ireland. 45 -She didn't have enough money for the bus fare. 36 +She didnt have enough money for the bus fare. 36 He has barely enough money to live on. 30 They always put on a mean sunday brunch. 32 They serve delicious sunday brunch on fourth street. 44 -Your younger brother doesn't trust us. 31 -What country does he come from? 25 +Your younger brother doesnt trust us. 31 +What country does he come from 25 I had another fun summer in london. 28 -I don't have much stuff in the trunk of my truck. 37 +I dont have much stuff in the trunk of my truck. 37 I love the sunny summer months. 25 Too few. 6 Fruit juice. 10 @@ -16562,10 +16562,10 @@ Super cool. 9 There were too few people at the meeting. 33 The tax on films is causing too few films to be produced. 45 There was fruit juice in the refrigerator. 35 -Fruit juice drinks do not compete directly with coca-cola. 48 +Fruit juice drinks do not compete directly with cocacola. 48 Smooth the mixture with the back of a soup spoon. 39 His soup spoon dropped onto the ground. 32 -He's gone to be measured for a new suit. 30 +Hes gone to be measured for a new suit. 30 My father bought a new suit on his charge account. 40 The true value of the company was published later. 41 His friendship was the true value of their bond. 39 @@ -16581,7 +16581,7 @@ The new car by toyota has some super cool features. 41 The new roof was installed in june. 28 I drink fruit juice and eat a lot of soup. 32 Your blue shoes are really cool. 26 -I need proof that you're telling the truth. 34 +I need proof that youre telling the truth. 34 The statue on the avenue is truly beautiful. 36 First person. 11 Purple shirt. 11 @@ -16608,7 +16608,7 @@ He was dropping out after his third term. 33 He used firm words to deny his proposal. 32 You have to use firm words to scare them away. 36 It is the early bird that catches the worm. 34 -My dad's been an early bird his whole life. 33 +My dads been an early bird his whole life. 33 She was a very nervous girl in the beginning. 36 The new secretary is a very nervous girl. 33 His company was thirty third in the ranking. 36 @@ -16617,7 +16617,7 @@ I will work during the third term. 27 They served turkey for dinner. 25 Her purple shirt is dirty. 21 She gave birth to a third girl. 24 -It's not worth worrying about another birthday. 39 +Its not worth worrying about another birthday. 39 Lime pies. 8 White white. 10 Fly a kite. 8 @@ -16632,25 +16632,25 @@ His favourite dessert was lime pies. 30 This eatery has the best lime pies in the city. 37 The thought will be similar to the vast white white clouds. 48 The house was too white for my liking. 30 -There isn't enough wind to fly a kite. 29 +There isnt enough wind to fly a kite. 29 My brother was used to fly a kite in the night. 36 -It was a nice try by him, but he couldn't win the match. 42 +It was a nice try by him, but he couldnt win the match. 42 She made a really nice try at convincing the boss. 40 Cats are supposed to have nine lives. 30 The modern belief that a cat has nine lives comes from a tradition. 54 I closed my eyes against the bright light. 34 The bright light made her look away. 29 -We can't fly high because we overweight ourselves. 41 +We cant fly high because we overweight ourselves. 41 For once he allowed the cork to fly high into the air. 42 You have to sign on the line in the form. 31 The agent made me sign on the line of agreement. 38 There is a new fine dining restaurant in the city. 40 I like fine dining over fast food stalls. 33 The batsman got out after making ninety nine runs. 41 -Why is the price so high for that design? 32 +Why is the price so high for that design 32 The wildfire started on friday night. 31 He was tired after hiking for five hours. 33 -It's a nine-hour drive to iowa. 23 +Its a ninehour drive to iowa. 23 We had lime pie and dry white wine. 27 About an hour. 11 Crowded house. 12 @@ -16674,14 +16674,14 @@ The highway winds around the mountain. 32 There is an abandoned wooden cabin around the mountains. 47 He had a brown couch in his living room. 31 We bought a brown couch from the store. 31 -The police hasn't found out who set fire to the storehouse. 47 -We found out he'd been stealing from us for years. 39 -Nobody loves you when you're down and out. 33 +The police hasnt found out who set fire to the storehouse. 47 +We found out hed been stealing from us for years. 39 +Nobody loves you when youre down and out. 33 He has not been completely down and out yet. 35 Please pronounce the vowel correctly. 32 I doubt that the clown will say something profound. 42 There are flowers all around the house. 32 -Is that your spouse in the brown blouse? 32 +Is that your spouse in the brown blouse 32 The clouds behind the mountain will bring showers. 42 The brown cow is near the fountain. 28 Enjoy the toy. 11 @@ -16699,7 +16699,7 @@ The kids in the orphanage used to enjoy the toy a lot. 42 When you were little you used to enjoy the toy a lot. 41 He was a very ill mannered and spoiled boy. 34 He was sent to boarding school because he was a spoiled boy. 48 -She used to have an appointment in detroit for a check-up. 46 +She used to have an appointment in detroit for a checkup. 46 I have an appointment in detroit with my dentist. 40 She ordered broiled oysters with garlic breadcrumbs. 45 My grandmother had a great broiled oyster recipe. 41 @@ -16718,79 +16718,79 @@ It is not possible to avoid the moisture in cities with beach. 50 He destroyed the poison by flushing it down the toilet. 45 Roy had an appointment in detroit. 28 Joyce is annoyed and a little paranoid. 32 -I was disappointed with joy's choice. 30 -Why is floyd avoiding roy? 21 +I was disappointed with joys choice. 30 +Why is floyd avoiding roy 21 You have to submit the assignment on time. 34 Wash your hands before the lunch. 27 I will obey my teaching. 19 -Where do you see yourself 5 years from now? 34 -Sorry, i didn't understand. 22 -Ok. bye, friends! 13 +Where do you see yourself 5 years from now 34 +Sorry, i didnt understand. 22 +Ok. bye, friends 13 Let me give some time to prepare lunch. 31 Let him go for the match. 19 I will be in the office by 230. 23 Welcome, dear. 12 -Let's celebrate. 13 +Lets celebrate. 13 I will come tomorrow. 17 You can go there. 13 Hi, good morning. 14 Hello, good afternoon. 19 I am sure dear. 11 -What is going on? 13 +What is going on 13 Oh, i am fine. 10 -What about you? 12 +What about you 12 You looking great that day. 22 Hello, good evening. 17 Cool, see you there. 16 -That's wonderful! 14 +Thats wonderful 14 Hey, i really like your new dress. 27 -Those glasses really suit you! 25 +Those glasses really suit you 25 Congratulation, dear. 19 Your every desire come true. 23 -It's a party time. 13 -When will you give a party? 21 +Its a party time. 13 +When will you give a party 21 Please call. 10 You are very beautiful. 19 Wish you happiness for your bright future. 35 -Today can i meet you? 16 +Today can i meet you 16 You are welcome. 13 Too good for you. 13 Thanks in advance. 15 I will be there in a minute. 21 You are an angel. 13 I am grateful for your assistance. 28 -I don't have the words to thank you. 27 +I dont have the words to thank you. 27 Keep in touch. 11 -You can't be too careful to make friends. 32 +You cant be too careful to make friends. 32 Have a great future life. 20 Have happy married life. 20 Hope you feel brighter soon. 23 My heartbeats for you. 18 -You are a billion-dollar girl. 24 +You are a billiondollar girl. 24 I am ready. 8 Hope you find. 11 I am good. 7 -Lot's of love. 10 -All are fine? 10 +Lots of love. 10 +All are fine 10 When you come. 11 Say hi to him from me. 16 -Can you call me tomorrow? 20 +Can you call me tomorrow 20 I pray for you. 11 -It's a lovely day. 13 +Its a lovely day. 13 Happy anniversary to both of you. 27 -Are you sure, you will come? 22 -Are you kidding? 13 +Are you sure, you will come 22 +Are you kidding 13 Believe me, i am sure. 17 -How is your sister? 15 -I scare, it's true. 14 -How was your lockdown day? 21 +How is your sister 15 +I scare, its true. 14 +How was your lockdown day 21 Oh, hi lucy. 9 I am doing good. 12 -Do you complete your lunch? 22 -Are you busy? 10 +Do you complete your lunch 22 +Are you busy 10 He will come there in 10 minutes. 26 I will join you at 4 pm. 17 -Where are you going next week? 24 +Where are you going next week 24 Meet me on sunday. 14 I am totally free. 14 Best of luck. 10 @@ -16799,22 +16799,22 @@ Hey, congratulations. 19 I am on the way just coming. 21 Welcome back, dear. 16 Just a second i tell you. 19 -Don't worry, be happy! 17 +Dont worry, be happy 17 Merry christmas dear. 18 Lovely greetings, thank you. 24 -Oh, my god! 8 +Oh, my god 8 You can ask me anything, dear. 24 I hope, your idea helps me. 21 Not a big deal. 11 -Watch out! there's a car coming. 24 -Be careful! the floor is wet. 22 -Look out for that tree! 18 -Don't go there. 11 +Watch out theres a car coming. 24 +Be careful the floor is wet. 22 +Look out for that tree 18 +Dont go there. 11 Smoking prohibited. 17 If you go hiking alone, you will get lost. 33 -Don't check your phone when crossing the street. 39 -I'll be back in an hour. don't answer the door for anyone. 43 -I'm warning you if you do that again, there will be problems. 48 +Dont check your phone when crossing the street. 39 +Ill be back in an hour. dont answer the door for anyone. 43 +Im warning you if you do that again, there will be problems. 48 Keep calm. 8 Only for boys. 11 Go away from the poll. 17 @@ -16824,35 +16824,35 @@ Drink and drive are not allowed. 26 Keep your phone on silent mode. 25 Do not tease animals in the zoo. 25 Do not give any food to animals. 25 -Don't come in without permission. 27 +Dont come in without permission. 27 Do not park vehicles here. 21 -Don't go-ahead. 11 +Dont goahead. 11 Dead end ahead. 12 School ahead. 11 To away zone. 10 Smoking is injurious to health. 26 Keep to the right. 14 Keep please take care of the cleanliness of this place. 45 -Don't spread garbage here. 21 +Dont spread garbage here. 21 Take off your shoes out. 19 -Take care! 8 +Take care 8 Do not take bath here. 17 -Deepwater, don't go in. 18 +Deepwater, dont go in. 18 Only for ladies. 13 Mobile is not allowed. 18 Take a left turn. 13 -The pool is damaged, don't go on. 25 +The pool is damaged, dont go on. 25 Bump ahead, go slow. 16 Fire, stay away from here. 21 -Drinking water, don't waste it. 25 +Drinking water, dont waste it. 25 Take an appointment first. 22 Do not touch it. 12 Keep your children away from here. 28 Wear your mask first. 17 -Don't come in without a mask. 22 +Dont come in without a mask. 22 Do not shout, please. 17 Speak slowly here, please. 22 -Package not child-resistant. 24 +Package not childresistant. 24 Straight prohibited, no entry. 26 Horn prohibited. 14 No parking zone. 13 @@ -16861,8 +16861,8 @@ Do not drive over the speed. 22 Drive slow, student crossing ahead. 30 The narrow road ahead. 18 Emergency exit only. 17 -Don't drink the tap water. 20 -Don't go anywhere. 14 +Dont drink the tap water. 20 +Dont go anywhere. 14 For inhalation only. 17 Medication should be taken with plenty of water. 40 Keep a distance from it. 19 @@ -16881,7 +16881,7 @@ Do not wash your hand here. 21 Do not stand, sit, or climb on a zoo fence. 33 Do not drop your cigarette butts on the ground. 38 Garbage throw in the dustbin. 24 -Please don't feed fingers to the animals. 33 +Please dont feed fingers to the animals. 33 Do not drink water, fish crap in it. 28 Hot surface, do not touch. 21 Dangerous area, keep out. 21 @@ -16893,284 +16893,284 @@ Protective clothing is required in this area. 38 Please wash your hands after petting animals. 38 Touching wires causes instant death. 31 A face mask is required to enter this establishment. 43 -Attention gentlemen, this s a women's restroom. 39 +Attention gentlemen, this s a womens restroom. 39 Do not breathe under the water. 25 Do not step on. 11 Keep away from fire. 16 -Don't do anything stupid! 20 +Dont do anything stupid 20 Please queue at safe distance. 25 Do not look directly at lights. 25 -No swimming if you can't swim. 23 +No swimming if you cant swim. 23 Smoking kills. 12 Smoking can cause a slow and painful death. 35 Keep out quarantine. 17 I am sorry to be late for your reply. 28 I am sorry to fail in the exam. 23 I apologize. 10 -I'm calling about. 14 +Im calling about. 14 Hello maria. nice to hear from you. 27 -She is not available. can i take a message? 33 +She is not available. can i take a message 33 I really have to go now... 18 I got the short end of the stick. 25 Blanket of snow. 13 -It's the arctic outside! 19 +Its the arctic outside 19 Could you find out. 15 -I'd like to remind you about. 22 -You haven't forgotten about grocery, have you? 38 +Id like to remind you about. 22 +You havent forgotten about grocery, have you 38 I cannot accept. 13 -What's your opinion of this? 22 -I couldn't tell you. 15 -Sorry, i'm not able to speak about this. 31 -I don't want to talk on the matter. 26 -I don't have any idea. 16 -I really can't say anything. 22 -You're asking the wrong question to the wrong person. 43 +Whats your opinion of this 22 +I couldnt tell you. 15 +Sorry, im not able to speak about this. 31 +I dont want to talk on the matter. 26 +I dont have any idea. 16 +I really cant say anything. 22 +Youre asking the wrong question to the wrong person. 43 In my opinion, you can ask your dad. 28 -I'd say that it's better to discuss this with jack. 39 +Id say that its better to discuss this with jack. 39 Personally, i think we need to ask this professor. 41 -I believe that this isn't my cup of tea. 30 -I've never given it much importance. 29 -Whatever i won't give any opinion about this. 36 -You always don't give me any opinions. 30 +I believe that this isnt my cup of tea. 30 +Ive never given it much importance. 29 +Whatever i wont give any opinion about this. 36 +You always dont give me any opinions. 30 I cannot express any opinions right now. 33 My opinions never matter in any sense. 31 -I don't want to express my opinions. 28 -My opinions aren't considered here. 29 -Jack my opinions aren't meant to matter. 32 -I'm thinking about. 15 -We're planning on buying a house within the next 12 months. 47 +I dont want to express my opinions. 28 +My opinions arent considered here. 29 +Jack my opinions arent meant to matter. 32 +Im thinking about. 15 +Were planning on buying a house within the next 12 months. 47 We have a lesson next monday. 23 -I forgot to call mom, i'll do it after dinner. 35 +I forgot to call mom, ill do it after dinner. 35 It will be a nice day tomorrow. 24 I hope you will come to my party. 25 I will see you tomorrow. 19 -I'm going to call my mom after dinner. 29 -Be careful, you're going to fall. 26 +Im going to call my mom after dinner. 29 +Be careful, youre going to fall. 26 I would like to go to university next year. 34 I am going to meet. 14 We plan to shift to canada in the near future. 36 It will happen in our lifetime. 25 -I'm counting the days until. 22 -I don't really care for cricket. 25 -I didn't quite catch that. could you please repeat it? 42 -Could you repeat, please? 21 +Im counting the days until. 22 +I dont really care for cricket. 25 +I didnt quite catch that. could you please repeat it 42 +Could you repeat, please 21 Got it. 5 Ok, i get it now. 12 -That's clear, thank you. 19 +Thats clear, thank you. 19 I take your point. 14 That makes sense. 14 -That's totally fair. 16 -I don't blame you. 13 +Thats totally fair. 16 +I dont blame you. 13 I would feel the same. 17 -I'm sorry, but i'd like to make a complaint. 33 -I'm sorry, but there appears to be a problem. 35 -I'm sorry to say this, but... 20 -I'm sorry to bother you. 18 -Can you help me with this? 20 -I understand it's not your fault. 26 -I'm afraid there may be a misunderstanding. 35 +Im sorry, but id like to make a complaint. 33 +Im sorry, but there appears to be a problem. 35 +Im sorry to say this, but... 20 +Im sorry to bother you. 18 +Can you help me with this 20 +I understand its not your fault. 26 +Im afraid there may be a misunderstanding. 35 Excuse me, i understand that. 24 There seems to be a problem. 22 Sorry to bother you. 16 I want to complain about your family. 30 -Would you mind? 12 +Would you mind 12 There must be a misunderstanding. 28 I have to complain about your brother. 31 I hate to tell you this. 18 -How many items can i take to the dressing room? 37 -Is it going on sale soon? 19 -I'll have. 7 -Do you like to eat fast food? 22 -How often do you eat out? 19 -What diet are you on? 16 -Are you personally a good cook? 25 -Could i add a little salt, please? 27 -This is wonderful! 15 -I'm glad you like it! 15 -Would you like a second helping? 26 -Yes please, i'd love some! 20 -It was lovely, but i'm really full thanks! 33 +How many items can i take to the dressing room 37 +Is it going on sale soon 19 +Ill have. 7 +Do you like to eat fast food 22 +How often do you eat out 19 +What diet are you on 16 +Are you personally a good cook 25 +Could i add a little salt, please 27 +This is wonderful 15 +Im glad you like it 15 +Would you like a second helping 26 +Yes please, id love some 20 +It was lovely, but im really full thanks 33 It has a very unusual taste. 22 -Do you mind if i leave the food? 24 -I'm afraid i couldn't manage all this. 29 -Where to eat? 10 +Do you mind if i leave the food 24 +Im afraid i couldnt manage all this. 29 +Where to eat 10 I had cereal for breakfast. 22 I ate chicken for lunch. 19 -I'll have a cup of tea. 16 +Ill have a cup of tea. 16 I always have met for lunch. 22 I love spicy food. 14 This popcorn is very salty. 22 I love crunchy fried chicken. 24 She bought a bunch of ripe bananas. 28 -What do you want to eat? 18 -Do you want to get dessert? 21 -Are you going to get a drink? 22 +What do you want to eat 18 +Do you want to get dessert 21 +Are you going to get a drink 22 Tonight, i will snack on popcorn. 27 Jen polished off her dinner. 23 Take this medicine after your meals. 30 -Is breakfast ready? 16 -Do you want breakfast? 18 +Is breakfast ready 16 +Do you want breakfast 18 I will be late for dinner. 20 I have difficulty while chewing. 27 Turn on the tv. 11 -I'm watching tv. 12 -What's on the tv? 12 -What do you watch on tv? 18 -Don't you like to watch? 18 +Im watching tv. 12 +Whats on the tv 12 +What do you watch on tv 18 +Dont you like to watch 18 I just watch what i like. 19 There is nothing to watch well. 25 My favorite show about to start. 26 -What did you watch on tv yesterday? 28 -What kind of tv programs do you watch? 30 +What did you watch on tv yesterday 28 +What kind of tv programs do you watch 30 I decide what to watch on tv. 22 He watches too much tv. 18 -Don't change the channel. 20 +Dont change the channel. 20 Star plus is showing ads at the moment. 31 -My program is going to be back in 35 seconds! 35 -I don't want to miss a single scene. 27 +My program is going to be back in 35 seconds 35 +I dont want to miss a single scene. 27 Switch to the next channel. 22 Switch to the previous channel. 26 -There is nothing interesting on tv today! 34 -Turn off the tv, i'm trying to sleep! 28 +There is nothing interesting on tv today 34 +Turn off the tv, im trying to sleep 28 Turn up the volume of the tv. 22 Turn down the volume of the tv. 24 Raise the volume. 14 -Now, it's my turn to watch tv. 22 +Now, its my turn to watch tv. 22 I rarely watch tv. 14 Give me the remote. 15 The remote gets missing very often. 29 -What is the channel number of star plus? 32 -That's a bit steep. 14 -It's too cheap to buy. 16 -I'm paying through online transactions. 33 -That's a little outside my budget. 27 +What is the channel number of star plus 32 +Thats a bit steep. 14 +Its too cheap to buy. 16 +Im paying through online transactions. 33 +Thats a little outside my budget. 27 I got two for the price of one. 23 It was bought one, get one free. 25 I got it for a song. 14 -It's a good price. 13 +Its a good price. 13 A good value for the amount of money. 29 -I don't have enough money to buy it. 27 +I dont have enough money to buy it. 27 Extremely inexpensive. 20 -That's so cheap. 12 +Thats so cheap. 12 You pay a lot more in other places. 27 It was quite cheap. 15 -It wasn't very expensive. 20 -I'm happy with the price. 19 -It wasn't that expensive, really. 27 -I thought it'd be more expensive. 26 +It wasnt very expensive. 20 +Im happy with the price. 19 +It wasnt that expensive, really. 27 +I thought itd be more expensive. 26 It was quite reasonable, actually. 29 It was a good value for money. 23 -It didn't cost a fortune. 19 -That's a bit princely. 17 -No, thanks. i'm ok. 13 +It didnt cost a fortune. 19 +Thats a bit princely. 17 +No, thanks. im ok. 13 Yes, please. that would be nice lovely. 31 Please send me the address. 22 -Would you mind answering the phone? 29 -Would you mind calling me later? 26 -Would you mind sharing this video? 28 +Would you mind answering the phone 29 +Would you mind calling me later 26 +Would you mind sharing this video 28 Could you please. 14 -Could you please get me a glass of water? 32 -Can you pass me the book? 19 -Can you help me in this place? 23 +Could you please get me a glass of water 32 +Can you pass me the book 19 +Can you help me in this place 23 Please send me a photo. 18 -I'd appreciate it if you could. 24 -I'd appreciate it if you could wash the dishes. 37 -Can you call me? 12 -Can you pass me the salt? 19 -Can you lend me this book? 20 -Could i have a cup of coffee? 22 -Could you give me it, please? 23 -Do you know if this can help? 22 +Id appreciate it if you could. 24 +Id appreciate it if you could wash the dishes. 37 +Can you call me 12 +Can you pass me the salt 19 +Can you lend me this book 20 +Could i have a cup of coffee 22 +Could you give me it, please 23 +Do you know if this can help 22 Please guide me for the same. 23 -Hello, can you give me a travel card? 29 +Hello, can you give me a travel card 29 Two tickets, please. 17 -Can you give me directions to oxford street? 36 -Would you like to have pizza? 23 -Will that be enough? 16 -Can you pass those t-shirts? 22 -Can we sit for this lecture? 22 -Are we going to get the notes? 23 -Can you come to my place? 19 -Will it be fine if you come here? 25 -Can i take these books to read? 24 -Shall i take your newspaper? 23 -Could you share the recipe? 22 -Shall i go this way? 15 +Can you give me directions to oxford street 36 +Would you like to have pizza 23 +Will that be enough 16 +Can you pass those tshirts 22 +Can we sit for this lecture 22 +Are we going to get the notes 23 +Can you come to my place 19 +Will it be fine if you come here 25 +Can i take these books to read 24 +Shall i take your newspaper 23 +Could you share the recipe 22 +Shall i go this way 15 My sister is 25 years old. 20 -Maria has a 4-year-old kid. 20 +Maria has a 4yearold kid. 20 She is in her early twenties. 23 My friend has a daughter aged 5. 25 I am 28. 5 My friend has two sons aged 5 and 8. 27 -My neighbor has a four-month old baby. 30 +My neighbor has a fourmonth old baby. 30 She must be under 18. 16 She is in her teens. 15 Bare with me. 10 Not so fast. 9 Something will have to wait. 23 -It won't belong. 12 +It wont belong. 12 Excuse me for just a moment. 22 -Gimme a second! 12 +Gimme a second 12 Worse things happen at sea. 22 Every cloud. 10 -Lighten up! 9 +Lighten up 9 Get ready we will roam and come. 25 Cheer on. 7 Cheer to the echo. 14 1.45 am is time for the last call. 25 Guess what i just saw online. 23 -If i had to take a guess, i'd say she has a green dress. 41 -It's difficult to say, but i think anna would reach soon here. 49 +If i had to take a guess, id say she has a green dress. 41 +Its difficult to say, but i think anna would reach soon here. 49 Off the top of my head, i guess sir would reach soon here. 45 -It's about yesterday i guess. 23 +Its about yesterday i guess. 23 I guess mom will be getting some sweets while coming. 43 -There's a good chance to go out now i guess. 33 +Theres a good chance to go out now i guess. 33 I guess jack will be late to reach here. 31 I have a feeling to have some hot food i guess. 36 -Does david guess what i have for you? 29 -Guess what! i have movie tickets. 26 +Does david guess what i have for you 29 +Guess what i have movie tickets. 26 I guess we need to move as soon as possible. 34 -Can you guess what i have got for you? 29 -I've been married for 10 years. 24 -It's 20% off. 8 -I'm paying through the nose. 22 -It's dirt cheap. 12 +Can you guess what i have got for you 29 +Ive been married for 10 years. 24 +Its 20 off. 8 +Im paying through the nose. 22 +Its dirt cheap. 12 You pay a lot more in another place. 28 -It didn't cost that much. 19 +It didnt cost that much. 19 I think i cannot afford it. 21 -Is it negotiable? 14 +Is it negotiable 14 You have paid a lot for this. 22 -That's a good price. 15 -It wasn't very expensive basically. 29 +Thats a good price. 15 +It wasnt very expensive basically. 29 I am on a tight budget. 17 I am looking for the best price. 25 I cannot increase my budget too much. 30 -What's the best price? 17 -What is going to be the last price? 27 -How far can you come down in price to meet me? 35 +Whats the best price 17 +What is going to be the last price 27 +How far can you come down in price to meet me 35 Let me run the numbers and get back to you. 33 -I need to calculate if i can pay you? 28 -What will your cash price be? 23 -How much will you reduce the asking price? 34 -Shall i pay you the money in cash? 26 -What is your final offer? 20 -Let's meet in the middle. 19 -Can i pay the online payment? 23 -What a price to pay! 15 -What's your price range? 19 +I need to calculate if i can pay you 28 +What will your cash price be 23 +How much will you reduce the asking price 34 +Shall i pay you the money in cash 26 +What is your final offer 20 +Lets meet in the middle. 19 +Can i pay the online payment 23 +What a price to pay 15 +Whats your price range 19 He asked the price and paid for it. 27 -You're dead right. 14 -I'm sorry to say so. 14 +Youre dead right. 14 +Im sorry to say so. 14 Spot on. 6 You are quite right. 16 -Yes, that's right. 14 -Yes, that's very correct. 20 -I guess so it's right. 16 +Yes, thats right. 14 +Yes, thats very correct. 20 +I guess so its right. 16 I had the same idea. 15 -I'd go along with that. 17 -That's just what i was thinking. 25 -Of course, it's correct. 19 -Yup, it's perfectly correct. 23 +Id go along with that. 17 +Thats just what i was thinking. 25 +Of course, its correct. 19 +Yup, its perfectly correct. 23 We are of one mind. 14 You got it, dude. 13 Our thoughts are parallel. 22 @@ -17180,20 +17180,20 @@ I agree with you. 13 You are so right. 13 I think you are totally right. 24 You took the words right out of my mouth. 32 -We're in accord. 12 -You're absolutely right. 20 +Were in accord. 12 +Youre absolutely right. 20 You got it. 8 -You're in luck! 11 +Youre in luck 11 Down on your luck. 14 -Knocked dead! 11 -Blow them away! 12 -Strike gold, fella! 16 -You're going to ace it. 17 -Luck out! 7 +Knocked dead 11 +Blow them away 12 +Strike gold, fella 16 +Youre going to ace it. 17 +Luck out 7 May the force be with you. 20 -May it falls into your lap! 21 -Make hay while the sun shines! 24 -Knock on the wood! 14 +May it falls into your lap 21 +Make hay while the sun shines 24 +Knock on the wood 14 He convinced me to buy. 18 I had a change of heart. 18 On reflection. 12 @@ -17201,13 +17201,13 @@ Upon reflection. 14 I did a 180. 8 Hang on a minute. 13 He persuaded me to. 15 -I'm debating between... 17 -I'm not sure what i was thinking. 25 +Im debating between... 17 +Im not sure what i was thinking. 25 After further consideration. 25 -I'm scared that. 12 -Don't you think it is a good idea to? 27 +Im scared that. 12 +Dont you think it is a good idea to 27 I suggest to you. 13 -Actually, i don't think... 19 +Actually, i dont think... 19 Your flight leaves from gate 15. 26 Your seat number is 8f. 18 Flight 800 is now boarding. 22 @@ -17223,9 +17223,9 @@ The crime rate has dropped. 22 Suicide rates are increasing day by day. 33 I have shown the death rate by a graph. 30 The charts are given below in this research paper. 41 -Can we discuss the cutting rate grocery? 33 -How much there is an increase in gold? 30 -Is there an increase in silver coin rates? 34 +Can we discuss the cutting rate grocery 33 +How much there is an increase in gold 30 +Is there an increase in silver coin rates 34 There is a small amount of decrease in the amount of the peanut. 51 There was a slight rise in the cost of fuel. 34 In october the number of tourists was a plummet. 39 @@ -17240,130 +17240,130 @@ Recover from jet lag. 17 I was mugged in broad daylight. 25 We forgot to bring bug spray and got bitten all over. 42 I ended up with huge blisters while walking. 36 -I had to catch the red-eye to get back to work. 35 +I had to catch the redeye to get back to work. 35 I was hungover on the last day of my trip. 32 My train was delayed. 17 -I couldn't wait to back home. 22 +I couldnt wait to back home. 22 I have been practicing it for 5 years. 30 My office is in model town. 21 -Boss has accepted mark's resignation. 31 -He's got his father's features.. 24 +Boss has accepted marks resignation. 31 +Hes got his fathers features.. 24 Children were brought up to be polite by parents. 40 -Your children are growing up fast! 28 +Your children are growing up fast 28 I think he takes after his father. 27 Who looks after your children during the holidays. 42 -We're looking for someone to care for my mother. 38 -Is there anyone you look up to in your family? 36 +Were looking for someone to care for my mother. 38 +Is there anyone you look up to in your family 36 Her daughter is having friends to stay for this weekend. 46 His father passed away suddenly. 27 When my kids are tired, they begin to paint. 35 He has run from home to get the pets. 28 Her grandmother lives with them. 27 We usually visit our farms for a break. 31 -He's always standing up for his brother at school. 40 +Hes always standing up for his brother at school. 40 We learned to stick together as children. 34 He turned to his brother when he lost his job. 36 His parents split up when he was a child. 32 -She's finally settled down with jack. 30 +Shes finally settled down with jack. 30 I come from big family background. 28 There are 5 people in my family. 25 I look similar to my dad. 19 -I'm feeling under the weather. 24 -Are you alright? 13 -Whom shall i say is calling? 22 -What do i say? 10 -What if i say the wrong thing? 23 -How many uncles and aunts do you have? 30 -What's the right thing to say? 23 -Excuse me, do you have the time? 25 -Hi, is this seat taken? 18 -Do you mind if i sit here? 19 +Im feeling under the weather. 24 +Are you alright 13 +Whom shall i say is calling 22 +What do i say 10 +What if i say the wrong thing 23 +How many uncles and aunts do you have 30 +Whats the right thing to say 23 +Excuse me, do you have the time 25 +Hi, is this seat taken 18 +Do you mind if i sit here 19 That is really nice. 16 -Can i ask where you got it? 20 +Can i ask where you got it 20 I really like your dress. 20 -Did you get them near here? 21 -That's a cool t-shirt, can i have it, mom? 31 -Is that store near here? 19 -Was it good value? 14 -How much did it cost? 16 -Do they have other colors available? 30 +Did you get them near here 21 +Thats a cool tshirt, can i have it, mom 31 +Is that store near here 19 +Was it good value 14 +How much did it cost 16 +Do they have other colors available 30 Thanks for the suggestion. 22 I appreciate the information. 25 Thank you, that was really helpful. 29 -Are you fro in this area? 19 -So, what do you do for a living? 24 -What brings you here today? 22 -Do you come here a lot? 17 -Really? i'm a vegetarian too. 22 -Did you hear that voice? 19 +Are you fro in this area 19 +So, what do you do for a living 24 +What brings you here today 22 +Do you come here a lot 17 +Really im a vegetarian too. 22 +Did you hear that voice 19 It was really nice meeting you. 25 I really enjoyed your company, thanks so much. 38 I had a great time talking with you. 28 Hope to see you again soon. 21 Have a good meal. 13 -Can you recommend a good restaurant around? 36 +Can you recommend a good restaurant around 36 Think about it no more. 18 -It doesn't matter. 14 -Please don't mention it. 19 +It doesnt matter. 14 +Please dont mention it. 19 Leave the topic. 13 We shall discuss it later. 21 -Let's learn a lesson. 16 +Lets learn a lesson. 16 We need to leave this right now. 25 Please learn from it. 17 -Do i want to forgive? 16 -Do you wish to forgive? 18 +Do i want to forgive 16 +Do you wish to forgive 18 I am will forgive. 14 Please forgive this moment. 23 -It's accepted by my side. 19 -Can we leave this topic? 19 -Can we forgive our son? 18 +Its accepted by my side. 19 +Can we leave this topic 19 +Can we forgive our son 18 Please leave the topic and move on. 28 Take a lesson from the situation. 27 -It's twenty till four. 17 -You're very welcome. 16 +Its twenty till four. 17 +Youre very welcome. 16 The pleasure is mine. 17 -I know you'd do the same for me! 23 -That's alright! 12 -Sure, no problem! 14 -Much obliged! 11 -I'm very much obliged to you! 22 +I know youd do the same for me 23 +Thats alright 12 +Sure, no problem 14 +Much obliged 11 +Im very much obliged to you 22 We appreciate your custom. 22 -I'm happy to help. 13 +Im happy to help. 13 We all have a personal life. 22 He was on a personal quest. 21 -Surely this wasn't a personal file. 28 +Surely this wasnt a personal file. 28 Joe, consider it a personal favor. 28 I was merely expressing a personal opinion. 36 -It's not personal, she replied. 25 +Its not personal, she replied. 25 He stopped in her personal zone, too close. 35 -It wasn't simply a personal matter to anna. 34 +It wasnt simply a personal matter to anna. 34 I have no experience in such matters. 30 I will be always alert in my personal matters. 37 To him, it is a chess game, not personal combat. 38 -Do we not do the same in our personal lives? 34 -Will you answer something personal, david? 36 +Do we not do the same in our personal lives 34 +Will you answer something personal, david 36 I have no more personal weaknesses. 29 -It's more of personal debt. 21 -Anna, did you get this card for cheering me up? 37 -Can somebody please tell david to cheer up? 35 -Cheer up! it cant be as bad as all that. 29 -Cheer up! it's not that bad! 20 +Its more of personal debt. 21 +Anna, did you get this card for cheering me up 37 +Can somebody please tell david to cheer up 35 +Cheer up it cant be as bad as all that. 29 +Cheer up its not that bad 20 Bright curtains can cheer up a dull room. 33 Flowers always cheer up a room. 25 -Cheer up! the news isn't too bad. 24 -Cheer up! the worst is over. 21 -Cheer up, it's not quite hopeless yet. 30 -Cheer up! victory is just around the corner. 35 -He's stone deaf. 12 +Cheer up the news isnt too bad. 24 +Cheer up the worst is over. 21 +Cheer up, its not quite hopeless yet. 30 +Cheer up victory is just around the corner. 35 +Hes stone deaf. 12 A thumping headache. 17 -Doe, it ever happens to you? 22 -You should work, but you can't. 24 +Doe, it ever happens to you 22 +You should work, but you cant. 24 You find your walking boots and get out. 32 -Can you picture the scene? 21 +Can you picture the scene 21 The smell of rain lingers in the air. 29 A gentle breeze soothes your aching head. 34 He also had a sense of responsibility for it. 36 -I can sense it and i'm never wrong. 26 +I can sense it and im never wrong. 26 She shivered and shrugged the sense way. 33 I had the sense to keep my mouth shut. 29 I have no sense whatever of dramatic action. 36 @@ -17373,132 +17373,132 @@ I can sense the smell of delicious food. 32 Her sense of smell is wonderful. 26 The sense that joe was in the house. 28 She lost her sense of smell and taste. 30 -We're so sorry for your loss. 22 -I'm going to miss her, too. 20 +Were so sorry for your loss. 22 +Im going to miss her, too. 20 I hope you feel surrounded by much love. 32 -I'm sorry to hear that. 17 +Im sorry to hear that. 17 I hope things get better soon. 24 I hope you feel better soon. 22 Please accept my condolences. 25 -I'm sorry about your hearing loss. 27 +Im sorry about your hearing loss. 27 Get well soon. 11 She will be sadly missed. 20 -I'm saddened to hear of your sudden loss. 32 -Words can't express my sorrow for your loss. 35 +Im saddened to hear of your sudden loss. 32 +Words cant express my sorrow for your loss. 35 Wish you a quick recovery. 21 Hope you perk up soon. 17 -I didn't hear from you. 17 -John, may i help you? 16 +I didnt hear from you. 17 +John, may i help you 16 I have to go now. 12 I have faith in the utmost in you. 26 -You two should meet each other! 25 -Oh. i've got to go. see you! 18 +You two should meet each other 25 +Oh. ive got to go. see you 18 Ok, well, first of all. 18 -Anna is not a good friend! 20 -So how to save this situation? 24 -The food's here, isn't it? 19 +Anna is not a good friend 20 +So how to save this situation 24 +The foods here, isnt it 19 It was good to talk to you. 20 -That's a nice hairstyle. 19 +Thats a nice hairstyle. 19 It could be the best painting. 24 -That's a nice painting. 18 -That's a nice giraffe. 17 -Ok, so max who has put you in the situation? 34 -So how did you meet david? 20 -How to find out what that interesting thing is? 38 +Thats a nice painting. 18 +Thats a nice giraffe. 17 +Ok, so max who has put you in the situation 34 +So how did you meet david 20 +How to find out what that interesting thing is 38 Just ask questions. 16 -What's your job? 12 -What do you do at the weekend? 23 -Have you traveled much? 19 -What's your dream job? 17 -Excuse me! shall i get it back again? 28 -No way! we shall go home. 18 -Seriously? we have to wait for it. 26 -I don't believe you! really? 21 -Did he come to meet me? 17 -Was it really important to meet her? 29 +Whats your job 12 +What do you do at the weekend 23 +Have you traveled much 19 +Whats your dream job 17 +Excuse me shall i get it back again 28 +No way we shall go home. 18 +Seriously we have to wait for it. 26 +I dont believe you really 21 +Did he come to meet me 17 +Was it really important to meet her 29 And then he fell into the pool with his pet. 34 That reminds me of the time we met. 27 -By the way, how's joe? 16 -A bit off-topic, but i shall leave now. 30 -Got a minute? 10 -Hi. is this seat taken? 17 +By the way, hows joe 16 +A bit offtopic, but i shall leave now. 30 +Got a minute 10 +Hi. is this seat taken 17 That is a really nice hat. 20 I really like your shoes. 20 -That's a cool looking phone. 22 +Thats a cool looking phone. 22 It smells so good from the food. 25 -The salmon looks delicious! 23 +The salmon looks delicious 23 This place looks great since the renovation. 37 I love the coffee smell. 19 -Did you hear about it? 17 -It's a beautiful day, isn't it? 23 -It looks like it's going rain. 23 +Did you hear about it 17 +Its a beautiful day, isnt it 23 +It looks like its going rain. 23 Your dog is so cute. 15 -That's an interesting painting. 26 +Thats an interesting painting. 26 This is a great song. 16 -I love latin music. how about you? 26 -What did you study? 15 +I love latin music. how about you 26 +What did you study 15 I want to talk to you. 16 -Is there anything else i can get for you this evening? 43 +Is there anything else i can get for you this evening 43 Only six allowed in the dressing room. 31 I can backorder that for you. 23 You are not alone, i am here to guide you. 32 We have a plan. 11 -Can we have a conversation for 2 minutes? 33 -Shall we start the discussion? 25 -Are you comfortable with english conversation? 40 +Can we have a conversation for 2 minutes 33 +Shall we start the discussion 25 +Are you comfortable with english conversation 40 Please let me know your occupation. 29 -Are you able to connect comfortably? 30 +Are you able to connect comfortably 30 Imagine. for one year of this offer. 28 -It's possible to save your savings every month. 38 -Hello, you've reached! 18 -Let me transfer you to manager's extension. 35 -Can you hold the call for the next 5 minutes? 35 -Can i call you back in the next 10 minutes? 33 -I'll need to find out if we can do that. 29 +Its possible to save your savings every month. 38 +Hello, youve reached 18 +Let me transfer you to managers extension. 35 +Can you hold the call for the next 5 minutes 35 +Can i call you back in the next 10 minutes 33 +Ill need to find out if we can do that. 29 Let me call you back. 16 -I'm not sure if we can do that, but let me check. 36 -Can you please hold? 16 -Could you please hold on? 20 +Im not sure if we can do that, but let me check. 36 +Can you please hold 16 +Could you please hold on 20 Thank you for holding. 18 -I'm calling to follow up on offers in the next 3 days. 41 +Im calling to follow up on offers in the next 3 days. 41 The plan payment should be on its way to you now. 38 We shipped out the headphones last week. 33 The items should have arrived already. 32 -I'm sorry, i can't hear you. 20 -Can i call you right back? 20 -I'm sorry, there's nobody here by that name. 34 -Could you please clarify what you mean? 32 +Im sorry, i cant hear you. 20 +Can i call you right back 20 +Im sorry, theres nobody here by that name. 34 +Could you please clarify what you mean 32 I will follow up with the requested information soon. 44 I will keep you updated on our progress. 32 Thank you, have a nice day. 21 We have the best offer plan for you. 28 -Can i get it to gift wrapped? 22 -Let's continue this another time. i really must go. 40 +Can i get it to gift wrapped 22 +Lets continue this another time. i really must go. 40 Pardon me, but this right. 21 -You're wrong! 10 -Your presentation was terrible! 27 +Youre wrong 10 +Your presentation was terrible 27 I would not appreciate your hard work. 31 -Next time this mistake shouldn't happen. 33 +Next time this mistake shouldnt happen. 33 I criticize by creation. 20 -Please don't criticize what you can't understand. 40 -John, can i have a quick word? 23 -How do you think it could be improved? 30 +Please dont criticize what you cant understand. 40 +John, can i have a quick word 23 +How do you think it could be improved 30 Just have a look at this paragraph. 28 Just be more careful in the future. 28 -If you're unsure in the future, just ask me. 34 +If youre unsure in the future, just ask me. 34 We have received a complaint about you. 32 -Can you think why that is? 20 -How do you account for the complaint? 30 +Can you think why that is 20 +How do you account for the complaint 30 I am afraid i have to disagree. 24 -Have you been keeping busy? 22 -Have you booked the tickets? 23 -What is the route of our journey? 26 +Have you been keeping busy 22 +Have you booked the tickets 23 +What is the route of our journey 26 I have taken some fruit for our journey. 32 -Shall we travel by plane? 20 +Shall we travel by plane 20 I want to enjoy the sky ride. 22 -Mom, how's the journey of snow road? 28 +Mom, hows the journey of snow road 28 I love to travel max. 16 -What's the driving speed of every vehicle? 34 +Whats the driving speed of every vehicle 34 Success is a life long journey. 25 I wish you a prosperous journey. 26 I wish you a safe journey to you. 25 @@ -17506,214 +17506,214 @@ The portion of a journey that ends at home. 34 To set out on a journey for studies. 28 Our journey towards a place is destined. 33 Have a good and safe journey. 23 -Can i accompany you on this journey to mumbai? 37 +Can i accompany you on this journey to mumbai 37 I shall join you with your journey tomorrow morning. 43 Take care of yourself while traveling. 32 -I am with you! 10 +I am with you 10 Things will be fine soon. 20 -Go on! i am there. 12 -Give it a try! 10 -Just do it! 8 -Give it your best! 14 -Give it a shot! 11 -Give it your best shot! 18 +Go on i am there. 12 +Give it a try 10 +Just do it 8 +Give it your best 14 +Give it a shot 11 +Give it your best shot 18 Take a deep breath. 15 -It's just a bad day! 14 -Don't stop now. 11 -Just remember how far you've come. 27 -It's just a setback, not a reason to give up. 34 -You've got what it takes. 19 -That's a good effort. 16 -You're on right track. 17 -You're bound to succeed. 19 -You're getting better all the time! 28 -I'll stand with you to the end. 23 -I'll back you up. 12 -I'm on your side. 12 -I'll support you no matter what. 25 -I've got your back. 14 +Its just a bad day 14 +Dont stop now. 11 +Just remember how far youve come. 27 +Its just a setback, not a reason to give up. 34 +Youve got what it takes. 19 +Thats a good effort. 16 +Youre on right track. 17 +Youre bound to succeed. 19 +Youre getting better all the time 28 +Ill stand with you to the end. 23 +Ill back you up. 12 +Im on your side. 12 +Ill support you no matter what. 25 +Ive got your back. 14 I gotcha. 7 I support you. 11 I understand you. 14 -I'll cover the cost. 15 -Don't breathe a word. 16 -This is top-secret. 15 -Do you have a breath mint? 20 -Where are you head? 15 +Ill cover the cost. 15 +Dont breathe a word. 16 +This is topsecret. 15 +Do you have a breath mint 20 +Where are you head 15 Believe you me. 12 -It's three-thirty. 14 -It's at half-past. 13 -It's twenty of four. 15 -It's twenty minutes to four. 22 -How much does he weight? 19 -You've really done at this time. 25 -That stinks to hugh heaven! 22 +Its threethirty. 14 +Its at halfpast. 13 +Its twenty of four. 15 +Its twenty minutes to four. 22 +How much does he weight 19 +Youve really done at this time. 25 +That stinks to hugh heaven 22 I had to take a guess. 16 I have seen her painting, those are so unique. 37 Some humans are born with uniqueness. 31 -It wasn't so unique to be traceable jack. 32 -It's a unique chance to show your dedication. 36 +It wasnt so unique to be traceable jack. 32 +Its a unique chance to show your dedication. 36 He told them, he had a unique father. 29 It was something unique about him. 28 -Is it unique or might others perform likewise? 38 -Dad's perspective is always in a unique way. 35 +Is it unique or might others perform likewise 38 +Dads perspective is always in a unique way. 35 The wall painting at your home is unique. 33 There is a marked similarity to them. 30 The similarity in the language of the story is different. 47 There is a remarkable similarity among them. 37 Both weddings are similar to accept the rituals in them. 46 -You're not pulling your own weight. 28 -I get the feeling something's going to happen. 37 +Youre not pulling your own weight. 28 +I get the feeling somethings going to happen. 37 My sixth sense tells me that... 23 My guts tell me that... 16 -It's women's intuition. 18 -It's a portent of things to come. 25 -You're carrying the world on your shoulders. 36 +Its womens intuition. 18 +Its a portent of things to come. 25 +Youre carrying the world on your shoulders. 36 This is a nonsmoking area. 21 This is a nonsmoking building. 25 Excuse me, sir, can you face towards the left side. 41 -I'm sorry, but i am unable to bear the smell. 34 +Im sorry, but i am unable to bear the smell. 34 Please face your face towards the air. 31 -There's no smoke without fire. 24 +Theres no smoke without fire. 24 Put that in your pipe and smoke it. 27 -I want to change my grandpa's smoking habit. 35 +I want to change my grandpas smoking habit. 35 Joe got afraid when he pulled a smoke pole. 34 He is just closing smoke. 20 My plan to ask mary to dance went up in smoke. 35 -Can we use smoke spray for wall painting? 33 -Are you aware of smoke wall painting? 30 -Can we have a smoking ice-cream tomorrow? 33 +Can we use smoke spray for wall painting 33 +Are you aware of smoke wall painting 30 +Can we have a smoking icecream tomorrow 33 Wow, she is a real smoke show. 23 They need to sit down and smoke the peace. 33 He told us to watch his smoke as he went out and started. 44 He is still throwing smoke after that many years. 40 All the smoke signals point to an agreement. 36 -You're turning into a little gentleman. 32 -How many as were there? 18 -Should I call a doctor? 18 -Don't put your feet on the furniture. 29 +Youre turning into a little gentleman. 32 +How many as were there 18 +Should I call a doctor 18 +Dont put your feet on the furniture. 29 You are trying my patience. 22 -Why, i never! 10 +Why, i never 10 The college does not have experienced professors. 42 -Post exams, students will be getting 10 days' holiday. 44 -So what do you do? 13 -Who is the best shortstop? 21 -Whose socks are these? 18 -How did you do that? 15 -Who left their shoes in the middle of the hallway? 40 -Am i too early? 11 -Are you ready to leave? 18 -Did you read it? 12 -Do you want a candy cane or a chocolate bar? 34 -Would you like this book or that book? 30 -Should i get coffee, tea, or water? 28 -Do you know who she is? 17 -And for how much longer? 19 -So how can i help you? 16 -How long have you been here? 22 +Post exams, students will be getting 10 days holiday. 44 +So what do you do 13 +Who is the best shortstop 21 +Whose socks are these 18 +How did you do that 15 +Who left their shoes in the middle of the hallway 40 +Am i too early 11 +Are you ready to leave 18 +Did you read it 12 +Do you want a candy cane or a chocolate bar 34 +Would you like this book or that book 30 +Should i get coffee, tea, or water 28 +Do you know who she is 17 +And for how much longer 19 +So how can i help you 16 +How long have you been here 22 Somehow the steady beat. 20 I told her just how fond. 19 -Why haven't you completed your homework? 33 -Don't you know who she is? 19 -Do you want to go there? 18 -Have you watched the movie? 22 -How often do you go there? 20 -Have you been there before? 22 -Can you help me get rid of this dog? 27 -Can i borrow your grammar book for a day? 32 -Could you please help me with these bags? 33 -How did you make that water-mark? 26 -How often you go to a bar? 19 -How many times do you smoke? 22 -Does he know that i am here? 21 -Does she love you the way you do? 25 -Does he care about us? 17 -Why did he leave us then? 19 -Who is that man seating in the corner? 30 -How on earth did you think about me in that way? 37 -Will you please open the door for me? 29 -Would you like a beer? 17 -Can't we be friends again? 20 -Where do you want to go today? 23 -Who did you give the last cookie to? 28 -Why was she so grumpy yesterday? 26 -Where did i leave my car keys? 23 -Why did rose leave so late? 21 -Would you like cookies or a banana for dessert? 38 -Is she mad or just tired? 19 -Do you think i should go home or stay a little longer? 42 -Is the dog okay, or should we go to the vet? 33 -Will you be home soon? 17 -Do you want to go to the movies? 24 -Dude, where's my car? 16 -Have you brushed your teeth? 23 -Can they come downstairs? 21 -How can i ask better questions? 25 -How did it get so late so soon? 23 -Is it cold outside? 15 -Are you feeling better? 19 -Was the film good? 14 -Did you like it? 12 -Does it taste good? 15 -Where is the toilet, please? 23 -Where shall we go? 14 -How do you open this? 16 -Is she awake? 10 -What are you wearing? 17 -Where are my keys? 14 -Would you like some tea? 19 -Did bella buy a present for the party? 30 -What is the right way to iron a shirt? 29 -When are the best days to go to the mall? 31 -Where is your new cat? 17 -What was the universe like before it was expanding? 42 -When did she sleep? 15 -When will you go to school? 21 -Where is she going? 15 -Where is the house? 15 -How many sheets do you have? 22 -How much money do you invest in that scheme? 35 -How much time do we have to finish the test? 34 -How many days are there in january? 28 -How many people work at your company? 30 -How many cousins do you have? 23 -How many books did you buy? 21 -How many countries are there in the world? 34 -How many students are in the class right now? 36 -How many chairs are there in this room? 31 -How many pieces of chocolate would you like? 36 -How much is that painting? 21 -How much are those shoes? 20 -How much did your jacket cost? 24 -How much is the dress on display in the window? 37 -How much will it cost me? 19 -How much does it cost? 17 -How many stars are there in the sky? 28 -How many people live on islands? 26 -How many birds are there? 20 -How much water is in the ocean? 24 -How much money is in a bank? 21 -How much bread is eaten per day? 25 -How many bones are there in the human body? 34 -How much sand is in the deserts? 25 -How much information is on the internet? 33 -How many books are there? 20 -But when will that be? 17 -When you put it that way? 19 -When was his last meal? 18 -When did it become trapped? 22 -When you aren't even gifted? 22 -Wow, i like you! 12 +Why havent you completed your homework 33 +Dont you know who she is 19 +Do you want to go there 18 +Have you watched the movie 22 +How often do you go there 20 +Have you been there before 22 +Can you help me get rid of this dog 27 +Can i borrow your grammar book for a day 32 +Could you please help me with these bags 33 +How did you make that watermark 26 +How often you go to a bar 19 +How many times do you smoke 22 +Does he know that i am here 21 +Does she love you the way you do 25 +Does he care about us 17 +Why did he leave us then 19 +Who is that man seating in the corner 30 +How on earth did you think about me in that way 37 +Will you please open the door for me 29 +Would you like a beer 17 +Cant we be friends again 20 +Where do you want to go today 23 +Who did you give the last cookie to 28 +Why was she so grumpy yesterday 26 +Where did i leave my car keys 23 +Why did rose leave so late 21 +Would you like cookies or a banana for dessert 38 +Is she mad or just tired 19 +Do you think i should go home or stay a little longer 42 +Is the dog okay, or should we go to the vet 33 +Will you be home soon 17 +Do you want to go to the movies 24 +Dude, wheres my car 16 +Have you brushed your teeth 23 +Can they come downstairs 21 +How can i ask better questions 25 +How did it get so late so soon 23 +Is it cold outside 15 +Are you feeling better 19 +Was the film good 14 +Did you like it 12 +Does it taste good 15 +Where is the toilet, please 23 +Where shall we go 14 +How do you open this 16 +Is she awake 10 +What are you wearing 17 +Where are my keys 14 +Would you like some tea 19 +Did bella buy a present for the party 30 +What is the right way to iron a shirt 29 +When are the best days to go to the mall 31 +Where is your new cat 17 +What was the universe like before it was expanding 42 +When did she sleep 15 +When will you go to school 21 +Where is she going 15 +Where is the house 15 +How many sheets do you have 22 +How much money do you invest in that scheme 35 +How much time do we have to finish the test 34 +How many days are there in january 28 +How many people work at your company 30 +How many cousins do you have 23 +How many books did you buy 21 +How many countries are there in the world 34 +How many students are in the class right now 36 +How many chairs are there in this room 31 +How many pieces of chocolate would you like 36 +How much is that painting 21 +How much are those shoes 20 +How much did your jacket cost 24 +How much is the dress on display in the window 37 +How much will it cost me 19 +How much does it cost 17 +How many stars are there in the sky 28 +How many people live on islands 26 +How many birds are there 20 +How much water is in the ocean 24 +How much money is in a bank 21 +How much bread is eaten per day 25 +How many bones are there in the human body 34 +How much sand is in the deserts 25 +How much information is on the internet 33 +How many books are there 20 +But when will that be 17 +When you put it that way 19 +When was his last meal 18 +When did it become trapped 22 +When you arent even gifted 22 +Wow, i like you 12 Water is passing through a pipe. 26 I can see through hole. 18 The secret between you and me. 24 I first met john in 1987. 19 -It's always cold in january. 22 +Its always cold in january. 22 The girls play in the garden. 23 Her efforts were in vain. 20 It is without precedent in history. 29 -It sounds fine in theory, but will it work? 34 -I've always believed in living life to the full. 38 +It sounds fine in theory, but will it work 34 +Ive always believed in living life to the full. 38 I was born in 1982. 14 We eat breakfast in the morning. 26 They play football in the morning and cricket in the afternoon. 52 @@ -17721,8 +17721,8 @@ There is some milk in the fridge. 26 We are running in the gym today. 25 I prefer to read in the library. 25 Easter falls in spring each year. 27 -We're anti complaining in this house. 30 -I'll be there in five minutes. 23 +Were anti complaining in this house. 30 +Ill be there in five minutes. 23 In case of an emergency, you can always call me. 38 Put the paper inside the file. 24 In addition to your brains, you also have beauty. 40 @@ -17737,25 +17737,25 @@ He swam at the lake. 15 The bird sat at top of the oak tree. 27 Aside from singing, she also plays the piano at the bar. 45 He was frustrated at the situation. 29 -He'll be waiting for you at the front door. 33 +Hell be waiting for you at the front door. 33 She looks just like her grandmother at that age. 39 The cat is on the table. 18 The images are on the page. 21 -Could you put your ideas down on paper? 31 -What are your plans for sunday? 25 +Could you put your ideas down on paper 31 +What are your plans for sunday 25 He tried to jump back on board. 24 -He's on trial for his life. 20 -Don't sit on that chair. 18 +Hes on trial for his life. 20 +Dont sit on that chair. 18 He sat on the chair. 15 The food was placed on the table. 26 -Let's go sit on that stone wall. 24 +Lets go sit on that stone wall. 24 After two trial runs we did it for real. 31 -Let's meet the day after tomorrow. 27 -Let's go out for dinner after the show. 30 -By the time i got there he'd gone. 25 -By the way, how is john? 18 +Lets meet the day after tomorrow. 27 +Lets go out for dinner after the show. 30 +By the time i got there hed gone. 25 +By the way, how is john 18 He was by nature a philosophical person. 33 -I've paid this bill twice by mistake. 29 +Ive paid this bill twice by mistake. 29 Perhaps they are already there by now. 31 We came by car. 11 Fireworks were invented by the chinese. 33 @@ -17771,14 +17771,14 @@ She put the flowers by the window. 27 The coffee mugs are by the water glasses. 33 By the beach or on the hill. 21 He took the purse from her by force. 28 -Where do you come from? 18 +Where do you come from 18 This letter is from my wife. 22 I bought this car from harry. 23 They prevented me from entering. 27 My car is different from yours. 25 We worked from monday to wednesday. 29 Paper is made from wood. 19 -It can cost anything from $5 to $15. 26 +It can cost anything from 5 to 15. 26 The police took my driving license from me. 35 Everyone from school is present here. 31 Rachel was absent from the meeting of the small council. 46 @@ -17788,29 +17788,29 @@ The loud noise came from within the stadium. 36 She sat across from marie. 21 He picked up the penny from beneath the couch. 37 I felt out of place among foreigners. 30 -I'm afraid we're temporarily out of stock. 33 +Im afraid were temporarily out of stock. 33 Never tell tales out of school. 25 I was unable to get out of the appointment. 34 He drove over the bridge. 20 My brothers were fighting over the car. 32 I am in debt to the bank for my car loan. 30 I am writing about concerning your recent order. 40 -He's going to the store. 18 +Hes going to the store. 18 That chair belongs to the boss. 25 Come to the office and have a cup of tea. 31 -Please don't sit next to me. 21 +Please dont sit next to me. 21 I tried to hit the nail but hit my thumb instead. 38 I ask for her hard with all respect. 28 I believe marriage is for life. 25 -I haven't seen you for ages. 21 +I havent seen you for ages. 21 This is for you. 12 -Do you want to go for a walk? 21 +Do you want to go for a walk 21 You use a corkscrew for opening bottles. 33 Cigarettes are bad for you. 22 -I'm saving for a new car. 18 -Is this the road to rome? 19 +Im saving for a new car. 18 +Is this the road to rome 19 They passed me over for john. 23 -Is this the train for cambridge? 26 +Is this the train for cambridge 26 We worked for three hours. 21 Keep walking for two kilometers. 27 A room was booked for me by the name of david. 35 @@ -17818,7 +17818,7 @@ I am still waiting for her. 21 It is a container for butter. 23 We located the key for the lock. 25 I bought a new bag for my upcoming trip. 31 -I'd like a bike for commuting to work. 29 +Id like a bike for commuting to work. 29 Please sit down for a while. 22 The post office is down the road. 26 They ran down the hill. 18 @@ -17828,15 +17828,15 @@ I walked down the street. 20 Go down the stairs and through the door. 32 What goes up must come down. 22 We climbed aboard the boat. 22 -Is there a doctor aboard the plane? 28 -You can't climb aboard without a preposition. 37 -What do you think about max? 22 +Is there a doctor aboard the plane 28 +You cant climb aboard without a preposition. 37 +What do you think about max 22 The lion was pacing about its cage. 28 -Let's talk about something different. 31 -I've just read a book about president putin. 35 +Lets talk about something different. 31 +Ive just read a book about president putin. 35 The book about the wizard. 21 We are flying above the clouds. 25 -Who came above you in the test results? 31 +Who came above you in the test results 31 The sun is above the clouds. 22 We drove across the desert. 22 The dog ran across the road. 22 @@ -17861,15 +17861,15 @@ The book behind the wizard. 22 Falling behind on your schoolwork would be bad. 39 The river runs beside our house. 26 John was sitting beside miriam. 26 -What shall we have besides coffee? 28 +What shall we have besides coffee 28 Give me the watch beside the book. 27 We had lunch before the meeting. 26 We met the day before yesterday. 26 She was before me in the queue. 24 I would rather die before doing that. 30 Rose was sitting between rachel and anna. 34 -Between you and me, i think she's crazy. 31 -Much of holland is below sea-level. 28 +Between you and me, i think shes crazy. 31 +Much of holland is below sealevel. 28 There is a family in the flat below us. 30 I came below in the test. 19 The mouse ran below the basement door. 31 @@ -17883,30 +17883,30 @@ I am not only a brother but also a friend. 32 You either give me money or a loan. 27 I will either go to pune or delhi. 26 Go there otherwise, he will jail. 27 -Although he's very famous he is still nice. 34 +Although hes very famous he is still nice. 34 I like tea and coffee. 17 As i came she was leaving. 20 -As you couldn't see the film, we'll tell you something about it. 50 +As you couldnt see the film, well tell you something about it. 50 She goes to the tennis club because she likes to play tennis. 49 -He reads magazines, but he doesn't like to read books. 43 -I'm sorry, mike is ill and i can't come either. 35 -Don't drink any alcohol even if you drive carefully. 42 -This book is very popular even though, i don't like it. 43 -Do you know how to ride a snowboard? 28 -However, we've lost the match. 24 +He reads magazines, but he doesnt like to read books. 43 +Im sorry, mike is ill and i cant come either. 35 +Dont drink any alcohol even if you drive carefully. 42 +This book is very popular even though, i dont like it. 43 +Do you know how to ride a snowboard 28 +However, weve lost the match. 24 They worked hard for the test, however, they failed. 43 If they were older, they could go to the party. 37 Take your mobile with you in case you miss the bus. 40 He looks very fit despite his age. 27 -They didn't go to the person, and neither did i. 37 +They didnt go to the person, and neither did i. 37 Neither drinks nor food is allowed in this room. 39 -Do you like tea or coffee? 20 -Look at the map, please. otherwise, you'll get lost. 41 -Since he's lost his money, he couldn't go to the restaurant. 47 +Do you like tea or coffee 20 +Look at the map, please. otherwise, youll get lost. 41 +Since hes lost his money, he couldnt go to the restaurant. 47 Her baby cannot fall asleep unless she stays in the room. 46 -I don't know what to say. 18 -When you're in london, write an e-mail to me. 34 -I'm going home whether you like it or not. 32 +I dont know what to say. 18 +When youre in london, write an email to me. 34 +Im going home whether you like it or not. 32 I have two goldfish and a cat. 23 You can have peach ice cream or a brownie sundae. 39 I try very hard in school yet i am not receiving good grades. 48 @@ -17931,16 +17931,16 @@ I will go to the cinema to provide the others to go to. 42 I go to the theatre weekly rather than monthly. 38 Since i was ill for two months, i lost my job. 35 She was too late so that she could not apply for the job. 44 -Supposing you had a dog, what would you do with it? 40 +Supposing you had a dog, what would you do with it 40 She runs faster than me. 19 Life has not been the same since i fell for you. 37 -I'm sure of getting good grades because i study every day. 46 +Im sure of getting good grades because i study every day. 46 You can either have the cheesecake or the frozen hot chocolate. 52 She said she neither wanted the yogurt nor the ice cream. 46 I am in the mood for not ice cream but some waffles. 40 Dogs and cats make perfect pets. 26 I read poems and short stories. 25 -Do you want pancakes or waffles? 26 +Do you want pancakes or waffles 26 My dog is neither mean nor aggressive. 31 I am going to europe for a vacation, or i am going to africa. 47 Rose likes ice cream, but eating dairy makes her sick. 44 @@ -17949,45 +17949,45 @@ I like to read history books and storybooks. 36 She often goes running or hiking. 27 Because of him, i learned how to start my own business. 44 Everything will fall into place if you start at the beginning,. 52 -Until you try, you'll never know. 26 +Until you try, youll never know. 26 As i write this letter, i know i must say goodbye. 39 -Life's been so happy since i moved to chile. 34 +Lifes been so happy since i moved to chile. 34 I want either a pink sofa or a purple one. 32 -I'll study both english literature and art history. 42 -I didn't know whether you'd want milk or cream, so i grabbed both. 51 -Why do you want to visit neither ireland nor scotland? 44 +Ill study both english literature and art history. 42 +I didnt know whether youd want milk or cream, so i grabbed both. 51 +Why do you want to visit neither ireland nor scotland 44 I took not only the pink sofa but also the tiffany lamp. 44 Not the cheeseburger for me, but the fries. 35 Please stay at home till the afternoon. 32 I will go to the supermarket unless it is very crowded. 44 -I waited up for her until eleven o'clock. 32 +I waited up for her until eleven oclock. 32 I was watching tv when she came in. 27 You can come whenever you want. 25 She was eating in the kitchen, where there was a table. 44 She is very funny whereas he is boring. 31 We can meet you wherever you want. 27 -I worry about whether she'll be a good person. 36 +I worry about whether shell be a good person. 36 I found a very important article. 27 While i was playing with the children, he came to the park. 47 I visited alice who was ill. 22 Whoever says so is a liar. 20 She asked him why he was playing football. 34 Though it is raining, they swam in the pool. 35 -Oh, honey! 8 +Oh, honey 8 They can find it. 13 I can not do it. 11 -Could you open it? 14 +Could you open it 14 Would you like to be my friend. 24 Would you like to have coffee with me. 30 Shraa plays football. 18 Shraa loves to travel. 18 -I don't like a quarrel. 17 -He doesn't like a quarrel. 20 -She doesn't like a quarrel. 21 -They don't like a quarrel. 20 -You don't like a quarrel. 19 -We don't like a quarrel. 18 -Shraa doesn't like a quarrel. 23 +I dont like a quarrel. 17 +He doesnt like a quarrel. 20 +She doesnt like a quarrel. 21 +They dont like a quarrel. 20 +You dont like a quarrel. 19 +We dont like a quarrel. 18 +Shraa doesnt like a quarrel. 23 We prefer coffee to tea. 19 I love this place. 14 You love this place. 16 @@ -18111,13 +18111,13 @@ They are feeling bore. 18 He is feeling bore. 15 She is feeling bore. 16 Shraa is feeling bore. 18 -I am at lucy's home. 14 -You are at lucy's home. 17 -We are at lucy's home. 16 -They are at lucy's home. 18 -He is at lucy's home. 15 -She is at lucy's home. 16 -Shraa is at lucy's home. 18 +I am at lucys home. 14 +You are at lucys home. 17 +We are at lucys home. 16 +They are at lucys home. 18 +He is at lucys home. 15 +She is at lucys home. 16 +Shraa is at lucys home. 18 I hope for her. 11 You hope for her. 13 We hope for her. 12 @@ -18546,19 +18546,19 @@ We are helping him to do the task. 26 They are helping him to do the task. 28 You are helping him to do the task. 27 Shraa is helping him to do the task. 28 -I am watching cricket on television? 30 -He is watching cricket on television? 31 -She is watching cricket on television? 32 -We are watching cricket on television? 32 -You are watching cricket on television? 33 -They are watching cricket on television? 34 -Shraa is watching cricket on television? 34 -I am listening to realistic songs? 28 -She is listening to realistic songs? 30 -He is listening to realistic songs? 29 -You are listening to realistic songs? 31 -We are listening to realistic songs? 30 -Shraa is listening to realistic songs? 32 +I am watching cricket on television 30 +He is watching cricket on television 31 +She is watching cricket on television 32 +We are watching cricket on television 32 +You are watching cricket on television 33 +They are watching cricket on television 34 +Shraa is watching cricket on television 34 +I am listening to realistic songs 28 +She is listening to realistic songs 30 +He is listening to realistic songs 29 +You are listening to realistic songs 31 +We are listening to realistic songs 30 +Shraa is listening to realistic songs 32 Shraa was eating. 14 Shraa was dreaming. 16 I was connecting. 14 @@ -18705,27 +18705,27 @@ We will be taking a test. 19 They will be taking a test. 21 You will be taking a test. 20 Shraa will be taking a test. 22 -I won't be buying dinner for us. 24 -He won't be buying dinner for us. 25 -She won't be buying dinner for us. 26 -We won't be buying dinner for us. 25 -You won't be buying dinner for us. 26 -They won't be buying dinner for us. 27 -Shraa won't be buying dinner for us. 28 -I won't be studying. 15 -He won't be studying. 16 -She won't be studying. 17 -We won't be studying. 16 -They won't be studying. 18 -You won't be studying. 17 -Shraa won't be studying. 19 -I won't be flying to australia. 24 -He won't be flying to australia. 25 -She won't be flying to australia. 26 -We won't be flying to australia. 25 -You won't be flying to australia. 26 -They won't be flying to australia. 27 -Shraa won't be flying to australia. 28 +I wont be buying dinner for us. 24 +He wont be buying dinner for us. 25 +She wont be buying dinner for us. 26 +We wont be buying dinner for us. 25 +You wont be buying dinner for us. 26 +They wont be buying dinner for us. 27 +Shraa wont be buying dinner for us. 28 +I wont be studying. 15 +He wont be studying. 16 +She wont be studying. 17 +We wont be studying. 16 +They wont be studying. 18 +You wont be studying. 17 +Shraa wont be studying. 19 +I wont be flying to australia. 24 +He wont be flying to australia. 25 +She wont be flying to australia. 26 +We wont be flying to australia. 25 +You wont be flying to australia. 26 +They wont be flying to australia. 27 +Shraa wont be flying to australia. 28 Shraa will be writing. 18 I will be praying. 14 You will be praying. 16 @@ -18755,27 +18755,27 @@ You will be creating a website. 25 We will be creating a website. 24 They will be creating a website. 26 Shraa will be creating a website. 27 -I won't be competing. 16 -She won't be competing. 18 -He won't be competing. 17 -We won't be competing. 17 -You won't be competing. 18 -They won't be competing. 19 -Shraa won't be competing. 20 -I won't be traveling tomorrow. 24 -He won't be traveling tomorrow. 25 -She won't be traveling tomorrow. 26 -We won't be traveling tomorrow. 25 -You won't be traveling tomorrow. 26 -They won't be traveling tomorrow. 27 -Shraa won't be traveling tomorrow. 28 -I won't be coming tonight. 20 -He won't be coming tonight. 21 -She won't be coming tonight. 22 -We won't be coming tonight. 21 -You won't be coming tonight. 22 -They won't be coming tonight. 23 -Shraa won't be coming tonight. 24 +I wont be competing. 16 +She wont be competing. 18 +He wont be competing. 17 +We wont be competing. 17 +You wont be competing. 18 +They wont be competing. 19 +Shraa wont be competing. 20 +I wont be traveling tomorrow. 24 +He wont be traveling tomorrow. 25 +She wont be traveling tomorrow. 26 +We wont be traveling tomorrow. 25 +You wont be traveling tomorrow. 26 +They wont be traveling tomorrow. 27 +Shraa wont be traveling tomorrow. 28 +I wont be coming tonight. 20 +He wont be coming tonight. 21 +She wont be coming tonight. 22 +We wont be coming tonight. 21 +You wont be coming tonight. 22 +They wont be coming tonight. 23 +Shraa wont be coming tonight. 24 You have accepted it. 17 I have discussed my topic. 21 You have discussed your topic. 25 @@ -18986,13 +18986,13 @@ You will have fallen asleep by 10 p.m. 29 We will have fallen asleep by 10 p.m. 28 They will have fallen asleep by 10 p.m. 30 Shraa will have fallen asleep by 10 p.m. 31 -I will have taken a walk by seven o'clock. 32 -He will have taken a walk by seven o'clock. 33 -She will have taken a walk by seven o'clock. 34 -We will have taken a walk at seven o'clock. 33 -You will have taken a walk by seven o'clock. 34 -They will have taken a walk by seven o'clock. 35 -Shraa will have taken a walk by seven o'clock. 36 +I will have taken a walk by seven oclock. 32 +He will have taken a walk by seven oclock. 33 +She will have taken a walk by seven oclock. 34 +We will have taken a walk at seven oclock. 33 +You will have taken a walk by seven oclock. 34 +They will have taken a walk by seven oclock. 35 +Shraa will have taken a walk by seven oclock. 36 I will have completed the work before sunset. 37 He will have completed the work before the sunset. 41 She will have completed the work before sunset. 39 @@ -19131,13 +19131,13 @@ You shall have been studying since friday. 35 We shall have been studying since friday. 34 They shall have been studying since friday. 36 Shraa shall have been studying since friday. 37 -I won't be watching the news at eight. 29 -She won't be watching the news at eight. 31 -He won't be watching the news at eight. 30 -We won't be watching the news at eight. 30 -You won't be watching the news at eight. 31 -They won't be watching the news at eight. 32 -Shraa won't be watching the news at eight. 33 +I wont be watching the news at eight. 29 +She wont be watching the news at eight. 31 +He wont be watching the news at eight. 30 +We wont be watching the news at eight. 30 +You wont be watching the news at eight. 31 +They wont be watching the news at eight. 32 +Shraa wont be watching the news at eight. 33 I will be studying at the library tonight. 34 He will be studying at the library tonight. 35 She will be studying at the library tonight. 36 @@ -19145,7 +19145,7 @@ We will be studying at the library tonight. 35 You will be studying at the library tonight. 36 They will be studying at the library tonight. 37 Shraa will be studying at the library tonight. 38 -Shraa won't have been living. 23 +Shraa wont have been living. 23 Shraa will have been shopping. 25 I will have been coming. 19 You will have been coming. 21 @@ -19186,7 +19186,7 @@ I read the book. 12 I caught a train to london. 21 Joe was talking to a man. 19 Megan gave him a present. 20 -A girl is on the see-saw. 18 +A girl is on the seesaw. 18 He is a good sportsman. 18 Akbar is a great king. 17 Gold is a precious metal. 20 @@ -19197,7 +19197,7 @@ I have a black dog. 14 Eric bought a new car. 17 Donna has a new bat. 15 Santa is on a reindeer. 18 -Can you give me a pen? 16 +Can you give me a pen 16 There is a hotel nearby. 19 Emma is a clever girl. 17 Clara is a doctor. 14 @@ -19214,25 +19214,25 @@ Joe has a car. 10 She is a dancer. 12 I am a singer. 10 A man on the street stepped on my foot. 30 -Well, i've seen a better movie since! 29 +Well, ive seen a better movie since 29 I have a problem. 13 This is a table. 12 Bella is a designer. 16 Max is a nice guy. 13 -I've built a strong ship. 19 +Ive built a strong ship. 19 I was playing with a boy. 19 We had a subscription to the new york times. 35 -Do you live in a house? 17 -Do you have a cat? 13 -She's a gardener. 13 +Do you live in a house 17 +Do you have a cat 13 +Shes a gardener. 13 A cricket match is being played. 26 A cow gives milk. 13 I hope this is not a waste of time. 26 That would make a good present. 25 -Who thought this was a good idea? 26 -In a little while, we'll be doing something else. 39 -Where's a spoon when you need one? 26 -Did anyone hear a doorbell? 22 +Who thought this was a good idea 26 +In a little while, well be doing something else. 39 +Wheres a spoon when you need one 26 +Did anyone hear a doorbell 22 A new prime minister was appointed today. 34 She is Austrian. 13 An ostrich can have parents Austrian. 31 @@ -19249,16 +19249,16 @@ Joe is an heir to that property. 25 An aeroplane is on the runway. 24 Rachel is an engineer. 18 Joe has an old guitar. 17 -Don't eat on an uncovered plate. 25 +Dont eat on an uncovered plate. 25 An owl is awake during nights. 24 Harry is an ark bearer. 18 An ounce of poison kills a man. 24 I am an indian. 11 Daniel wanted an umbrella. 22 No, i live in an apartment. 21 -Would you like an apple? 19 +Would you like an apple 19 That was an excellent meal. 22 -He's an ambulance driver. 20 +Hes an ambulance driver. 20 I ate an apple for lunch. 19 The cook is wearing an apron. 23 Brutus is an honorable man. 22 @@ -19274,7 +19274,7 @@ Orange is also orange. 18 Sam has an oxbridge accent. 22 Mike has an italian accent. 22 They are an ethiopian team. 22 -Have you ever been to an afghan restaurant? 35 +Have you ever been to an afghan restaurant 35 The prayers were led by an imam. 25 My brother can be an idiot sometimes. 30 The train was late. 15 @@ -19285,7 +19285,7 @@ The students have formed a union. 27 Jack was the first man to arrive. 26 The darkest cloud has a silver lining. 31 The man is on the platform. 21 -Where are the children? 19 +Where are the children 19 Dog watches the house faithfully. 28 The moon shines bright during the night. 33 John got the best present. 21 @@ -19314,7 +19314,7 @@ The shelves are made of wood. 23 The sofa cover is in velvet. 22 The mosquitoes are harmful. 23 The roads are filled with potholes. 29 -The drainage has over-flowed. 24 +The drainage has overflowed. 24 The walls are in bad shape. 21 The logs are lying waste. 20 The balcony is to dry clothes. 24 @@ -19335,10 +19335,10 @@ Get the most out of your education. 28 The end is very near. 16 The bank is closed by evening. 24 The tree dropped a leaf, an orange one. 31 -Do you remember the movie we watched together? 38 +Do you remember the movie we watched together 38 The doctor said i should get more rest. 31 The feeling i got was very strange. 28 -I passed the test! 14 +I passed the test 14 Look at the sun. 12 I was playing with the boy. 21 I am looking for a boy. 17 @@ -19354,10 +19354,10 @@ We are members of the chess club. 26 We slept at the holiday inn. 22 I love fishing in the summer. 23 I go to school in the spring. 22 -Would you like to try the apple pie? 28 -Have you seen the cat? 17 -Here's the book you were looking for. 29 -Is this the card you were thinking of? 30 +Would you like to try the apple pie 28 +Have you seen the cat 17 +Heres the book you were looking for. 29 +Is this the card you were thinking of 30 It should be the third house on the right. 33 It should be the third rock from the sun. 32 I spent all day in front of the tv. 26 @@ -19436,13 +19436,13 @@ Roses are beautiful. 17 Jasmine gives a sweet fragrance. 27 Harry is a short guy. 16 Rachael is a true human being. 24 -The t-shirt is in blue. 17 +The tshirt is in blue. 17 The napkins are in the case. 22 Mia always carries a shawl. 22 Rachel wore blue shoes. 19 The doctor is on the train. 21 The bus is on the road. 17 -Mcdonald's has a farm. 17 +Mcdonalds has a farm. 17 Mike plays the piano. 17 The river flows gently. 19 The road is full of mud. 18 @@ -19474,7 +19474,7 @@ Max is down with fever. 18 The muffin man has a cart. 20 Chubby has curly hair. 18 Mary has a white pony. 17 -Straw hat's highlighted the fair. 27 +Straw hats highlighted the fair. 27 John is climbing the ladder. 23 The name of this monkey is boo. 24 The pacific ocean is very vast. 25 @@ -19482,132 +19482,132 @@ Albert einstein was born in germany. 30 I visited the taj mahal in india. 26 Every sunday i visits my friends. 27 I love watching my cat play with the pink yarn. 37 -How much time do you spend on your studies? 34 -How many brothers do you have? 24 -How many balls are there? 20 -How much money do you have? 21 -How many pens do you have? 20 -How many thyme do i have to tell you? 28 -How much i care about you? 20 -How much is left in the fridge? 24 -How much do you want? 16 -How much do you like me? 18 -How much is the time? 16 -How much can he take? 16 -How much do you charge? 18 -How much more do you want? 20 -How much do you miss me? 18 -How much of antarctica is covered in ice? 33 -How much of stress of you feel? 24 -How many bikes do you have? 21 -How much is the ticket? 18 -How much can you drink? 18 -How many houses are in your colony? 28 -How much far is your house? 21 -How much money can you afford? 24 -How many students are in your class? 29 -How many days is the journey? 23 -How many shoes do you have? 21 -How much longer can you drive? 24 -How much fast can you write? 22 -How much far is the hotel? 20 -How much water is in the tank? 23 -How many states are in india? 23 -How many plants are in your house? 27 -How many fishes are in the fish tank? 29 -How many goats do you have? 21 -How many pets do you have? 20 -How much far is the zoo? 18 -How many days does it take to climb everest? 35 -How many people live in your village? 30 -How many players are on the court? 27 -How many are in the prison? 21 -How many convicts are presented in the court? 37 -How much longer is the police station? 31 -How much longer will i drive the car? 29 -How much fast can you run? 20 -How many ears do you have? 20 -How much money do you spend? 22 -How many benches are there in that classroom? 37 -How many times does it ring? 22 -How much cotton is used for the pillow? 31 -How much oil is there in that tin? 26 -How many languages can she speak? 27 -How many students are there? 23 -How many books are there in the library? 32 -How many are working on the project? 29 -How much effort have kept? 21 -How much does it last? 17 -How many chains do you have? 22 -How much gold do you have? 20 -How many people can accommodate in that suite? 38 -How much money did you borrow? 24 -How many times does it blink? 23 -How many times do you bathe? 22 -How many times do i have to boil the chicken? 35 -How much time should i waste in convincing you? 38 -How many bows do you have? 20 -How much more does it bloom? 22 -How many times have you climbed the mountains? 38 -How many glasses did you arrange on the table? 37 -How many calls did you receive? 25 -How many buildings are demolished? 29 -How many employees are working at your company? 39 -How many people have entered through this gate? 39 -How many faces will you show up? 25 -How many times did you fail? 22 -How much information have you gathered? 33 -How much does he earn in gambling? 27 -How much do you heat? 16 -How much did he gain in cheating others? 32 -How much do you hate her? 19 -How many people did you interrogate? 30 -How many people did you invite? 25 -How many have joined that course? 27 -How many tissues do you use daily? 27 -How many sets of crockery do you have? 30 -How many blocks are there in that box? 30 -How many chairs are there in that room? 31 -How many ideas? 12 -How much money did you spend? 23 -How much sugar would you like in your coffee? 36 -How much paper will i need? 21 -How much milk is in the fridge? 24 -How much traffic was there on the way to work? 36 -How much did you pay for it? 21 +How much time do you spend on your studies 34 +How many brothers do you have 24 +How many balls are there 20 +How much money do you have 21 +How many pens do you have 20 +How many thyme do i have to tell you 28 +How much i care about you 20 +How much is left in the fridge 24 +How much do you want 16 +How much do you like me 18 +How much is the time 16 +How much can he take 16 +How much do you charge 18 +How much more do you want 20 +How much do you miss me 18 +How much of antarctica is covered in ice 33 +How much of stress of you feel 24 +How many bikes do you have 21 +How much is the ticket 18 +How much can you drink 18 +How many houses are in your colony 28 +How much far is your house 21 +How much money can you afford 24 +How many students are in your class 29 +How many days is the journey 23 +How many shoes do you have 21 +How much longer can you drive 24 +How much fast can you write 22 +How much far is the hotel 20 +How much water is in the tank 23 +How many states are in india 23 +How many plants are in your house 27 +How many fishes are in the fish tank 29 +How many goats do you have 21 +How many pets do you have 20 +How much far is the zoo 18 +How many days does it take to climb everest 35 +How many people live in your village 30 +How many players are on the court 27 +How many are in the prison 21 +How many convicts are presented in the court 37 +How much longer is the police station 31 +How much longer will i drive the car 29 +How much fast can you run 20 +How many ears do you have 20 +How much money do you spend 22 +How many benches are there in that classroom 37 +How many times does it ring 22 +How much cotton is used for the pillow 31 +How much oil is there in that tin 26 +How many languages can she speak 27 +How many students are there 23 +How many books are there in the library 32 +How many are working on the project 29 +How much effort have kept 21 +How much does it last 17 +How many chains do you have 22 +How much gold do you have 20 +How many people can accommodate in that suite 38 +How much money did you borrow 24 +How many times does it blink 23 +How many times do you bathe 22 +How many times do i have to boil the chicken 35 +How much time should i waste in convincing you 38 +How many bows do you have 20 +How much more does it bloom 22 +How many times have you climbed the mountains 38 +How many glasses did you arrange on the table 37 +How many calls did you receive 25 +How many buildings are demolished 29 +How many employees are working at your company 39 +How many people have entered through this gate 39 +How many faces will you show up 25 +How many times did you fail 22 +How much information have you gathered 33 +How much does he earn in gambling 27 +How much do you heat 16 +How much did he gain in cheating others 32 +How much do you hate her 19 +How many people did you interrogate 30 +How many people did you invite 25 +How many have joined that course 27 +How many tissues do you use daily 27 +How many sets of crockery do you have 30 +How many blocks are there in that box 30 +How many chairs are there in that room 31 +How many ideas 12 +How much money did you spend 23 +How much sugar would you like in your coffee 36 +How much paper will i need 21 +How much milk is in the fridge 24 +How much traffic was there on the way to work 36 +How much did you pay for it 21 They play basketball together. 26 I have more money than he. 20 Eric sang the song to me. 19 Count yourselves. 15 I prefer this. 11 -Did you see that? 13 +Did you see that 13 I am young. 8 I have a class today. 16 We are on board. 12 You are beautiful. 15 That book is mine. 14 -Do you have my book? 15 -Don't think about me. 16 +Do you have my book 15 +Dont think about me. 16 Those books are yours. 18 This car is ours. 13 The discussion is about us. 22 You have a good sense of humor. 24 You are my inspiration. 19 Just grab your chance. 18 -Is he your brother? 15 +Is he your brother 15 I owe you a lot. 11 -Is this pen yours? 14 +Is this pen yours 14 This child is mine. 15 It is raining. 11 John is my friend. 14 -David's friend is a doctor. 21 +Davids friend is a doctor. 21 Max is an engineer. 15 This book belongs to him. 20 We are going to the park. 19 We have three children. 19 Ours is a big house. 15 They care about us. 15 -Let's surprise her. 15 +Lets surprise her. 15 Here is your book. 14 He loves his dog. 13 He loves to dance. 14 @@ -19623,7 +19623,7 @@ She is my guardian. 15 That book is hers. 14 That idea of yours is excellent. 26 It is a sunny day. 13 -It is ten o'clock. 13 +It is ten oclock. 13 I hurt myself. 11 This is my turn. 12 It was i who first protested. 23 @@ -19640,9 +19640,9 @@ You and i have done our duty. 22 My uncle lives in hyderabad. 23 Radha has hurt herself. 19 That pen is yours. 14 -The laundry isn't going to do itself. 29 +The laundry isnt going to do itself. 29 I was sitting by myself. 19 -Who is your friend? 15 +Who is your friend 15 The honest man is trusted. 21 My sister who is a nurse went to somalia. 32 The presents were received by each of them. 35 @@ -19655,7 +19655,7 @@ The town itself is not very large. 27 The task itself is very difficult. 28 Do it yourself. 12 I was standing alone by myself. 25 -Let's do it ourselves. 17 +Lets do it ourselves. 17 They enjoyed themselves. 21 Daniel hurt himself. 17 Acquit yourselves like a man. 24 @@ -19666,11 +19666,11 @@ The two men care about each other. 27 They quarreled with each other. 26 Nobody was there to rescue the child. 30 Do good to others. 14 -Did you ask anybody to come? 22 +Did you ask anybody to come 22 Daniel is a man of few words. 22 Some milk was spilled. 18 -Whom do you like? 13 -To whom does this book belong? 24 +Whom do you like 13 +To whom does this book belong 24 This is the boy about whom i told you. 29 Jack is always against me. 21 This is the boy whose work is appreciated. 34 @@ -19678,16 +19678,16 @@ This is the girl who is going to dance now. 33 My son who is a doctor works in a care hospital. 37 Max is that his content is rich. 25 He who hesitates is lost. 20 -Whom do you want? 13 -Which one is yours? 15 -Which book are you reading? 22 +Whom do you want 13 +Which one is yours 15 +Which book are you reading 22 Tell me what you have done. 21 -Whoever told you so? 16 +Whoever told you so 16 Whoever has done this is guilty. 26 -Whatever do you say i am going? 24 +Whatever do you say i am going 24 What still here i thought you had gone. 31 -What you don't know rama? 19 -What how silly are you? 18 +What you dont know rama 19 +What how silly are you 18 I heard him telling them about the movie. 33 Bravo agreed to look after the baby. 29 The headmistress likes her a lot. 27 @@ -19697,7 +19697,7 @@ It is an endangered species now. 26 They were planning to hide it. 24 John himself went to check the gate. 29 David himself is responsible for those low grades. 42 -Jane looks into the nitty-gritty of running the house. 44 +Jane looks into the nittygritty of running the house. 44 They admitted to their mistakes. 27 The book itself tells you all about pronouns. 37 I am a slow walker. 14 @@ -19708,22 +19708,22 @@ Ruskin bond himself is a great author. 31 This is the lady who helped me. 24 This is the book that my mother wrote. 30 There is the man whose horse won the race. 33 -This is the house that belongs to my great-grandfather. 45 +This is the house that belongs to my greatgrandfather. 45 This is the person whom we met at the party. 34 This is the letterbox that i was talking about. 38 A chair is a piece of furniture which we use for sitting. 45 I found the ring that i thought i had lost. 33 Jack is a boy whose sister is a famous tennis player. 42 This is the boy who scored the highest marks. 36 -Who is there at the door? 19 -Which is your book? 15 -What are you doing? 15 -Who is making noise? 16 -Whom were you speaking to? 21 -Whichever came first? 18 -Whose is this dress? 16 -Whoever came to the shop? 20 -Whoever should tom invite? 22 +Who is there at the door 19 +Which is your book 15 +What are you doing 15 +Who is making noise 16 +Whom were you speaking to 21 +Whichever came first 18 +Whose is this dress 16 +Whoever came to the shop 20 +Whoever should tom invite 22 Harry stared at himself in the mirror. 31 Something is wrong there. 21 Everyone was smiling. 18 @@ -19733,7 +19733,7 @@ Many of them were injured. 21 Both have paid homage to their great ancestors. 39 All of the players we count on are out of form. 36 Almost all the money in my bank account has been spent. 44 -Those are my neighbor's dogs. 23 +Those are my neighbors dogs. 23 This is my bicycle. 15 These are cakes and those are burgers. 31 That is my bag. 11 @@ -19741,7 +19741,7 @@ In those days, we were young and innocent. 34 This is a present from my uncle. 25 Those keen to attend the magic show may come along. 41 That is the sound of a factory siren. 29 -Are those your classmates? 22 +Are those your classmates 22 That is not the best thing to do. 25 This dress is mine. 15 This is my dress. 13 @@ -19767,11 +19767,11 @@ The cooks themselves eat after all the guests have finished. 50 Both were candidates. 18 No one is home. 11 Several of the workers went homesick. 31 -I don't much care for these. 21 -Who's that? 8 +I dont much care for these. 21 +Whos that 8 Such are the fortunes of war. 23 -Who left? 7 -Which of these is yours? 19 +Who left 7 +Which of these is yours 19 Do whatever you please. 19 The car that has a flat tire needs to be towed. 36 The visitor who came yesterday left his phone number. 44 @@ -19786,16 +19786,16 @@ I will do it myself. 15 We made this pie ourselves. 22 A nation speaks for itself through elections. 38 We are going on vacation. 20 -Don't tell me that you can't go with us. 29 +Dont tell me that you cant go with us. 29 These are steep stairs. 19 We ran into each other at the mall. 27 This car is better than that. 23 These animals are wilder than those. 30 The blue hat is mine. yours is on the upper shelf. 38 -Who will come to the party? 21 -What do you need? 13 -Whose clothes are on the floor? 25 -Whom did you tell? 14 +Who will come to the party 21 +What do you need 13 +Whose clothes are on the floor 25 +Whom did you tell 14 It is one of the nicest italian restaurants in town. 42 I have green eyes. 14 They are coming to my house. 22 @@ -19818,13 +19818,13 @@ They are here used for asking questions. 33 They sell radios here. 18 We shall stop here a few days. 23 Stand here. 9 -Do you want to stay here? 19 +Do you want to stay here 19 He called her a few minutes ago. 25 He comes here daily. 16 He is here. 8 He seldom comes here. 17 Here are further. 14 -Could you come here for a minute? 26 +Could you come here for a minute 26 Here are your shoes. 16 Here comes the bus. 15 Here is a house to let. 17 @@ -19841,7 +19841,7 @@ We have lived here for ten years. 26 He lives far from here. 18 He will come here. 14 Here is the watch that you asked for. 29 -How far is it from here? 18 +How far is it from here 18 I remember the house where i was born. 30 Bring your glass here and i will give you some juice. 42 He says put it here. 15 @@ -19859,33 +19859,33 @@ And all is lost here. 16 We are here to serve. 16 Not here, mister whitlow. 21 Here, in her own words. 18 -Todd, i can't stay here. 18 -What is going on here? 17 +Todd, i cant stay here. 18 +What is going on here 17 I will be fine over here. 19 I then said here i am. 16 -I'm here to see that. 15 +Im here to see that. 15 That is the topic here. 18 Here as always, my lord. 19 -And, well, here i am! 16 +And, well, here i am 16 Ok, back here in 2 hours. 19 -As ever i'm here too. 15 +As ever im here too. 15 We will be here early. 17 He owns them down here. 18 -He's been here with you. 18 +Hes been here with you. 18 Came here in the winter. 19 They were all over here. 19 So hesper still was here. 20 Only that you were here. 19 We can stop right here if you want, carmen. 34 -She didn't come here to talk to me. 26 -Are you here again? 15 +She didnt come here to talk to me. 26 +Are you here again 15 Pause here to take a breath. 22 -She'll have to stay here tonight. 26 +Shell have to stay here tonight. 26 Strange, it had never seemed lonely here before. 40 He has been here for about an hour. 27 I believe they are all here, said one. 30 Megan should be here any minute. 26 -What makes you think i came here to see you? 34 +What makes you think i came here to see you 34 Our press that button there. 23 Put it over there. 14 There it is, on the sink. 19 @@ -19913,19 +19913,19 @@ There is little hope of his recovery. 30 There lived a giant. 16 There were doors all round the hall. 29 Wait there. 9 -What is there that i do not know? 25 -Is there a bank around here? 22 -Who goes there? 12 +What is there that i do not know 25 +Is there a bank around here 22 +Who goes there 12 Yet there is the method in it. 23 You see him there. 14 Bid him go there. 13 He is not there. 12 He was there. 10 -I have to be there at five o'clock. 26 +I have to be there at five oclock. 26 I used to live there when i was a boy. 28 I was there,. 10 There are several ways. 19 -There aren't any left for you. 23 +There arent any left for you. 23 Therefor five years. 17 There is a growing tendency. 23 There is a screw loose somewhere. 27 @@ -19950,18 +19950,18 @@ There is no exception. 18 There is no meaning in what you say. 28 There is still no cure. 18 There were three other boys present. 30 -There weren't many people at the meeting. 33 +There werent many people at the meeting. 33 We should go there tomorrow evening. 30 There is no other way. 17 It was hot out there. 16 -It's there, so use it. 16 +Its there, so use it. 16 I was there for him. 15 There was a blue flash. 18 There was more to it. 16 There is no life in. 15 There is a time and. 15 There is no life too. 16 -There was a knock-on. 16 +There was a knockon. 16 There is a paradox here. 19 So there we are, right. 18 In others, there it is. 18 @@ -19989,7 +19989,7 @@ No one has. 8 I will be there in five. 18 There is a wonder in most. 20 There was a small table. 19 -It's not there anymore. 18 +Its not there anymore. 18 There were only two beds. 20 This is mine. 10 I like this, he said, zipping it up. 28 @@ -19998,32 +19998,32 @@ This might be the most difficult discussion. 37 And stop this making before the kids come in. 36 Many changed in these seventy years of life. 36 This was a decision she had already made. 33 -This isn't a good time. 17 -At least at this point, don't go. 25 +This isnt a good time. 17 +At least at this point, dont go. 25 Waiting this long might have been an advantage. 39 I want this baby as much as you do, alex. 31 -This time he didn't simply indicate what he felt. 39 -This isn't easy for you, is it? 23 -How else would you explain things like this? 36 -Don't open this door. 16 +This time he didnt simply indicate what he felt. 39 +This isnt easy for you, is it 23 +How else would you explain things like this 36 +Dont open this door. 16 Lucy had come this far for vegetables. 31 Cade had been busy this morning. 26 Bandages are not for things like this, anyway. 38 -I'm old and weak and this is what you wanted? 34 +Im old and weak and this is what you wanted 34 I agreed to this because of the baby. 29 -It's none of my business how you run this outfit. 38 -What's this? she said, frowning. 25 +Its none of my business how you run this outfit. 38 +Whats this she said, frowning. 25 I should get rid of this and buy something else. 38 Maybe this was his expression of resistance. 37 Megan should discuss all this with alex. 33 He had hidden it from her all this time. 31 -Don't blame her for the lack of attention this time. 41 -I'm the one who dragged you into this. 29 -Why did you do all this? 18 +Dont blame her for the lack of attention this time. 41 +Im the one who dragged you into this. 29 +Why did you do all this 18 Daniel gave this picture to me. 25 And this must be mr. 15 This is his woman now. 17 -How do i know this? 14 +How do i know this 14 This was going to be. 16 I just made this up. 15 Ants are good at this. 17 @@ -20034,11 +20034,11 @@ This was not good news. 18 By the way, this is. 15 I think this is a test. 17 This is how the name. 16 -How did i know this? 15 +How did i know this 15 As he did this, son. 15 But i do know this. 14 While this is true, we. 18 -So let's dive into this. 18 +So lets dive into this. 18 He had no time for this. 18 This happens in a day. 17 This is the power of god. 19 @@ -20046,11 +20046,11 @@ This is not a love song. 18 You can stop this, baby. 19 This is the end of me. 16 This is at our disposal. 19 -Why not keep this up? 16 +Why not keep this up 16 If this spirit is not. 17 God teaches us this way. 19 -You have to do this!!!. 15 -What the hell is this? 17 +You have to do this. 15 +What the hell is this 17 I was surprised by this. 19 Share this with your friends. 24 This is as it should be. 18 @@ -20058,56 +20058,56 @@ They camped on this site. 20 Say this prayer with me. 19 Of course, this took time. 21 This is what we need, mr. 19 -I don't understand this. 19 +I dont understand this. 19 This is your truth, mac. 19 This truth sets us free. 19 I have heard of this wonderful magic. 30 -This is our planting-ground. 23 +This is our plantingground. 23 About this time i found out the use of a key. 34 -I'm too warm in this one. 18 -But this wasn't just any trip. 23 +Im too warm in this one. 18 +But this wasnt just any trip. 23 This is the usa. 12 -This wasn't the alex she knew. 23 +This wasnt the alex she knew. 23 This dog helped him watch the sheep. 29 Now eat with this. 14 -This is a fine meal, do you think? 26 -You've paid a dear price for this thing. 31 +This is a fine meal, do you think 26 +Youve paid a dear price for this thing. 31 This is our home. 13 -This does not bother you? 20 +This does not bother you 20 This was the final step. 19 -Let's talk about this. 17 -We need some fresh air in this stuffy room! 34 +Lets talk about this. 17 +We need some fresh air in this stuffy room 34 I should have anticipated this. 26 -Is it this house? 13 -But this wasn't about intimacy-was it? 30 -I'm old and weak and this is what you wanted. 34 -Could all this be happening to her? 28 +Is it this house 13 +But this wasnt about intimacywas it 30 +Im old and weak and this is what you wanted. 34 +Could all this be happening to her 28 The pear trees are blossoming out early this year. 41 -What had she been thinking of all this time? 35 +What had she been thinking of all this time 35 This train conveys passengers to london. 34 -This is a nice scrape you've got me into, isn't it? 38 +This is a nice scrape youve got me into, isnt it 38 We are all vegetable, in this country. 31 But this was not true. 17 -In the first place, he didn't consider this home. 39 +In the first place, he didnt consider this home. 39 Someone else carries this baby for you. 32 This world belongs to the energetic. 30 -Is it always like this? 18 -And he loves you this much? 21 -It always comes down to this, doesn't it? 32 -This is not enough for alex to support? 31 +Is it always like this 18 +And he loves you this much 21 +It always comes down to this, doesnt it 32 +This is not enough for alex to support 31 Rose, this is bravo, felipe introduced her. 36 This time it will be a long one. 24 -Do you know the meaning of this word? 29 +Do you know the meaning of this word 29 No, only in this county. 19 She should discuss all this with alex. 31 -Do you have much room for this new baby? 31 +Do you have much room for this new baby 31 Since you arrived, she is not sure this is the way. 40 I do not want all this. 17 -Will this be your last baby? 22 -Who was paying for this? 19 +Will this be your last baby 22 +Who was paying for this 19 This came in by currier a few minutes ago, sir. 37 No, this one is ours. 16 -May i have this dance? 17 +May i have this dance 17 This will take us most of the way. 26 That dog is hers. 13 Clean that table. 14 @@ -20119,43 +20119,43 @@ That was when mary decided to relieve her mind. 38 Harry spoke so well that everybody was pleased. 39 It was the first time she thought of mary that way. 40 Stop bugging her about that thing. 28 -Jack stopped and picked up a bird's nest that had fallen. 45 +Jack stopped and picked up a birds nest that had fallen. 45 That i am not prepared to say. 23 I am greater than that sorcerer. 26 -Did i ever tell you that you're the most handsome man? 42 +Did i ever tell you that youre the most handsome man 42 After that other people brought water from a brook. 42 That is if jim has had enough of the pink grass. 37 It is with a kind of fear that i begin to write the history. 46 -What do you mean by that? asked the little wizard. 39 -That was a no-brainer. 17 +What do you mean by that asked the little wizard. 39 +That was a nobrainer. 17 But i noticed that many queer things have happened. 42 I wonder why it is that we can walk so easily in the air. 43 No one could deny that alex was a devoted husband. 40 -That didn't sound very nice. 22 +That didnt sound very nice. 22 But even that did not satisfy the princess. 35 Baby birds were there, that had not fallen out. 38 I know better than that. 19 -Let's just leave it at that. 21 -I was so excited that i couldn't sleep. 30 -Do you know that? 13 -That's what you get for waiting so long. 31 -That's easy for you to say. 20 +Lets just leave it at that. 21 +I was so excited that i couldnt sleep. 30 +Do you know that 13 +Thats what you get for waiting so long. 31 +Thats easy for you to say. 20 I guess that will do. 16 That would change when they got home. 30 -Rose was so exhausted that he couldn't pick up bill. 41 +Rose was so exhausted that he couldnt pick up bill. 41 That sounds like her fever finally broke. 34 Crackling is much better than that faint wheezing. 42 Anna came home that evening very tired. 32 Yet one has just occurred that was even worse. 37 There was an object that looked like a balloon. 38 -Did alex think of her that way? 24 +Did alex think of her that way 24 Later, he said that with a grin. 25 -Don't hide from me that i haven't already seen? 36 -Now that's splitting hairs. 22 -I've waited at that station for five hours. 34 +Dont hide from me that i havent already seen 36 +Now thats splitting hairs. 22 +Ive waited at that station for five hours. 34 David thought that was all to say. 27 -How can we do that? asked the girl. 26 -Do i look that bad? 14 +How can we do that asked the girl. 26 +Do i look that bad 14 That seemed unlikely, though. 25 We can call it that. 15 That was our deb year. 17 @@ -20168,8 +20168,8 @@ So far today that was. 17 That is why in that. 15 And that is the point. 17 She went to work on that. 19 -Look at that, will you? 18 -I'm tired of that game. 17 +Look at that, will you 18 +Im tired of that game. 17 It is my prayer. 12 Anna would not do that. 18 That throws me a little. 19 @@ -20180,9 +20180,9 @@ So jack did just that. 17 And that is a process. 17 Consider that in the u. 18 I have to laugh at that. 18 -Even i don't know that. 17 -But you don't know that. 18 -I don't see it that way. 17 +Even i dont know that. 17 +But you dont know that. 18 +I dont see it that way. 17 I preferred it that way. 19 Oh, give up on that one. 18 They do not think that. 18 @@ -20190,8 +20190,8 @@ That time is ticking by. 19 If that makes any sense. 19 Me and my mom, that is. 17 It was as simple as that. 19 -Can't say that i have. 16 -And what would that be? 18 +Cant say that i have. 16 +And what would that be 18 All told, that was that. 19 I cling to that thought. 19 I get that in that club. 18 @@ -20199,32 +20199,32 @@ A horse stumbles that has four legs. 29 He that will thrive must rise at five. 30 He that regards not a penny, will lavish a pound. 39 He that fears death lives not. 24 -Can i have one of these? 18 +Can i have one of these 18 You can use any one of these. 22 These are my other two daughters, joe and anna. 38 -Quick harry, help me pull off these wooden wings! 40 +Quick harry, help me pull off these wooden wings 40 They carry these at the store. 24 These were temptations of the devil. 30 -Do you treat these calls differently? 31 +Do you treat these calls differently 31 King was very intrigued by all these oracles. 37 -I'm quite worn out by these callers. 28 +Im quite worn out by these callers. 28 Max knew that these were the eyes of the wolf. 36 I guess not but please take down all these details. 41 I took the liberty of confirming some of these cases. 43 But she drove these thoughts away with disgust. 39 It comforted him to hear these arguments. 34 -These silly jobs didn't make her a living. 33 -These could be hallucinations, couldn't they? 38 -These belonged to aunt annie too? 27 -Do you know what these are going to be yet? 33 +These silly jobs didnt make her a living. 33 +These could be hallucinations, couldnt they 38 +These belonged to aunt annie too 27 +Do you know what these are going to be yet 33 I have all these visions in my head. 28 You have magic in these hands. 24 After all these years, he still held regrets. 37 -Now, where do i put these? 20 -I'm going to get out of these wet clothes. 32 -Are these women's clothes? 21 +Now, where do i put these 20 +Im going to get out of these wet clothes. 32 +Are these womens clothes 21 These are from anna. 16 -These men aren't wearing western uniforms. 35 +These men arent wearing western uniforms. 35 These doctors will take care of the injured. 36 I will go out and see some of these things. 33 For these live by faith. 19 @@ -20235,7 +20235,7 @@ These are not old times. 19 All these gifts begin to. 20 I put these into the sack. 20 These things were not me. 20 -Loves me more than these? 20 +Loves me more than these 20 At least these could be. 19 All of these ports were. 19 These went to the stream. 20 @@ -20244,37 +20244,37 @@ Withal of these, every. 19 Dead these many years now. 21 I have waited these hours. 21 I have witnessed these wars. 23 -Even in all these letters? 21 +Even in all these letters 21 Many of these warriors had. 22 These he stuffed into the. 21 But these are modern times. 22 All these humans were the. 21 Pay attention to these two. 22 -All these things i loathe!. 21 +All these things i loathe. 21 I hate these fucking doors. 22 We will debate these issues. 23 These words are only used. 21 -Where did you get these? 19 +Where did you get these 19 Mack, these are just great. 22 These weapons of your life. 22 Note these in your journal. 22 Average of these four years. 23 Yes, these shall be gathered. 24 These are wounds at that time. 24 -Women don't do these things. 22 +Women dont do these things. 22 But what had these animals. 22 These cones are so full of. 21 These events were not normal. 24 As you have told us, these. 21 Now, many people have these. 23 -Are these bears here? 17 +Are these bears here 17 The worst misfortunes are these that never happen. 42 -How's your mother doing these days? 28 -How long would these mind games go on? 30 -I'm talking about the safety of these people. 36 -You'll have to show me these beautiful flowers. 38 +Hows your mother doing these days 28 +How long would these mind games go on 30 +Im talking about the safety of these people. 36 +Youll have to show me these beautiful flowers. 38 These are my other two daughters, daniel and anna. 41 -Who built these lovely bridges? asked the little girl. 44 +Who built these lovely bridges asked the little girl. 44 So you must be careful not to spend these foolishly. 42 If they could talk, what tales these hills could tell. 44 Nobody could answer these questions. 31 @@ -20282,78 +20282,78 @@ These ships were loaded with corn. 28 These steps lead to the land of the gargoyles. 37 One of these days is none of these days. 31 These are friends, not enemies. 26 -Can it be proved that he did commit these offenses? 41 -Why hadn't she anticipated these questions? 36 -How will we see these discontinuities coming? 38 +Can it be proved that he did commit these offenses 41 +Why hadnt she anticipated these questions 36 +How will we see these discontinuities coming 38 These are friends and will do you no harm. 33 -Quick bravo, help me pull off these wooden wings! 40 +Quick bravo, help me pull off these wooden wings 40 They carry these at the store where we always shop. 41 -Are these ingredients in other foods as well? 37 -Are you prepared to repeat these allegations in court? 45 -It's impossible to be accurate about these things. 41 -I'm all for putting these guys down. 28 +Are these ingredients in other foods as well 37 +Are you prepared to repeat these allegations in court 45 +Its impossible to be accurate about these things. 41 +Im all for putting these guys down. 28 But these doubts only lasted a moment. 31 These treaties are good. 20 These ideas have now been completely discarded. 40 These bloody lessons would sober most people down. 42 She has built these scraps of metal into a sculpture. 43 He knew that these were the eyes of the wolf. 35 -Are you sure these documents belong together? 38 -So how do these things get made? 25 -Where did you get all these questions? 31 +Are you sure these documents belong together 38 +So how do these things get made 25 +Where did you get all these questions 31 These cakes are very quick and easy to make. 35 Tell me about these bones. 21 -Do you ever ride one of these? 23 +Do you ever ride one of these 23 I need to paint those windows. 24 -What color are those? 17 +What color are those 17 Those films are being made now. 25 Besides, those are my animals. 25 Those eyes would be mocking her. 26 -Do those two things even compare? 27 +Do those two things even compare 27 Those jeans make your legs look so long. 32 Those hospital corridors are long. 29 My parents used to listen to those old songs. 36 Those words stayed in her mind all afternoon. 37 -Joe couldn't have forgotten those eyes. 32 +Joe couldnt have forgotten those eyes. 32 Daniel, we all agreed on those rules. 30 In those days, people are kind to each other. 36 -I'll take care of those details. 25 -See those clouds how they hang! 25 +Ill take care of those details. 25 +See those clouds how they hang 25 A touch of humor flashed in those blue pools. 36 I think i shall never revisit those scenes. 35 -What if a snake had been in those bushes? 32 +What if a snake had been in those bushes 32 To me, those stories feel a bit desperate. 34 -I take it you don't want to fix those snakes. 34 -It's awful with those sausage eaters! 30 +I take it you dont want to fix those snakes. 34 +Its awful with those sausage eaters 30 He saw the kind faces of those whom he loved. 35 The answers to those questions are in this book. 39 Those are the things to be seen. 25 Those ideas were stolen from me. 26 Those people are very insane. 24 -It was one of those break-through moments. 34 +It was one of those breakthrough moments. 34 Those are the plain and simple facts. 30 Then more in one year than those five. 30 -Are those our men there? 19 -Ah, those are the french! 20 +Are those our men there 19 +Ah, those are the french 20 Eric could have gone to get those troops. 33 See what you can do with those. 24 -Fourteen left-two of those wounded. 29 +Fourteen lefttwo of those wounded. 29 I tossed you about those rabbits. 27 I guess those are all excuses. 24 I suppose he missed those. 21 -I'd outgrown those feelings, hadn't i? 30 +Id outgrown those feelings, hadnt i 30 Those were the last words spoken by him. 32 This causes them to be drawn to those flowers. 37 -What about those we were accusing? 28 +What about those we were accusing 28 Those that do not will. 18 Like those porn flicks we. 21 When we fight as those. 18 -What's up with those two. 19 +Whats up with those two. 19 Some of those may have. 18 For those who would delude. 22 I need those magic hands. 20 Those that are should not. 21 -Oh! the idiocy of those. 18 +Oh the idiocy of those. 18 Those carbs that are from. 21 For those who act in the. 19 One of those pensive ones. 21 @@ -20369,7 +20369,7 @@ I was not one of those girls. 22 Those prey to them wishes to. 23 Those who want to seem more. 22 Today was one of those days. 22 -Why are those men here? 18 +Why are those men here 18 Those who have great cal. 20 I can eat without those. 19 Those who are in the bible. 21 @@ -20377,27 +20377,27 @@ Each of those people would. 22 What those anglos did to us. 22 Those men with whom you were. 23 Those that were healed began. 24 -It's neither of those things. 23 +Its neither of those things. 23 He seemed to be one of those. 22 We just have to cross those. 22 -You can't have grown those. 21 +You cant have grown those. 21 Those, on the contrary, for. 23 But those are merely words. 22 Those were years of transition. 26 Good things come to those who wait. 28 None are so deaf as those who will not hear. 34 Miracles are to those who believe in them. 34 -None so blind as those who won't see. 28 -There's none so blind as those who will not see. 37 -None so deaf as those that won't hear. 29 -Am i looking pretty? 16 +None so blind as those who wont see. 28 +Theres none so blind as those who will not see. 37 +None so deaf as those that wont hear. 29 +Am i looking pretty 16 I am alone. 8 -Who am i? 6 -Am i your friend? 13 -Am i your servant? 14 -Am i your sport? 12 +Who am i 6 +Am i your friend 13 +Am i your servant 14 +Am i your sport 12 As long as i am a king. 16 -Why i am brighter? 14 +Why i am brighter 14 I am a magic carpet. 15 I am going to the cinema tonight. 26 I am hoping to get a holiday soon. 26 @@ -20409,7 +20409,7 @@ I am late. 7 I am a boy. 7 I am at a loss. 10 I mean, i am a. 10 -So what? so am i. 11 +So what so am i. 11 I am not as they. 12 I am that i am. 10 Here am i, my son. 13 @@ -20427,7 +20427,7 @@ I am afraid of him. 14 I am born in the u. 13 I am chosen to show. 15 Yes, i am that good. 15 -Then what am i? 11 +Then what am i 11 Feel that i am. 11 I am sure you will. 14 Of which i am made. 14 @@ -20440,12 +20440,12 @@ I am not worth that. 15 It was now seven am. 15 For one thing, i am. 15 Wait until i am done. 16 -What am i afraid of? 15 +What am i afraid of 15 I am a teacher. 11 I am working on my computer. 22 -Am i late? 7 +Am i late 7 Emma is my best friend. 18 -Who is your favorite? 17 +Who is your favorite 17 Daniel is my friend. 16 My uncle is going abroad. 20 Harry is my best friend. 19 @@ -20471,7 +20471,7 @@ Your gold is with the princess. 25 Your treasure is mine. 18 A herd of cattle is passing. 22 He is on the committee. 18 -How cold the night is! 17 +How cold the night is 17 Islamabad is the capital of pakistan. 31 John is absent because he is ill. 26 Measles is infectious. 19 @@ -20501,7 +20501,7 @@ He is dominated by. 15 There is no wasted. 15 In a song in harmony. 16 It is disbelief. 13 -Is that a problem? 14 +Is that a problem 14 Hell is a real place. 16 Neither is complete. 17 In a yes love is born. 16 @@ -20511,13 +20511,13 @@ He too is crying now. 16 My kiss is not death. 16 Only love is natural. 17 God is always ready. 16 -How crazy is that? 14 +How crazy is that 14 It is strong and big. 16 It is not real. 11 The paint is peeling. 17 He is always with us. 16 -Where is she? 10 -What is addiction? 15 +Where is she 10 +What is addiction 15 Fear is a primal thing. 18 It is unique. 10 Rosita is still there. 18 @@ -20527,21 +20527,21 @@ My sister is a nurse. 16 John is a clever boy. 16 The kettle is boiling. 18 The baby is sleeping. 17 -What is he doing there? 18 -Where is my pen? 12 -What is this? 10 +What is he doing there 18 +Where is my pen 12 +What is this 10 Maya is my best friend. 18 The teacher is standing in front of the desk. 36 The dog is barking. 15 -Is he happy? 9 -Is she hungry? 11 -Is it cold? 8 +Is he happy 9 +Is she hungry 11 +Is it cold 8 She is my best friend. 17 He is writing a letter. 18 Mother is cooking dinner. 21 Father is working in the garage. 26 It is a dog. 8 -Where are your children? 20 +Where are your children 20 We are taught arithmetic. 21 They are singing. 14 They are my friends. 16 @@ -20557,13 +20557,13 @@ Order is in the wrong words. 22 Here are some flowers. 18 My treasures are missing. 21 You are the brightest planet. 24 -The japanese are a hard-working people. 32 +The japanese are a hardworking people. 32 These poultry are mine. 19 I am watching you very carefully. 27 People who pay their debts are trusted. 32 Rama and hari are cousins. 21 Sweet are the uses of adversity. 26 -The after-effects of the drug are bad. 30 +The aftereffects of the drug are bad. 30 The book is where you left them. 25 We are preparing for the test. 24 We are waiting for them. 19 @@ -20571,9 +20571,9 @@ When i am aware, i. 14 You are one of us. 13 My lady, you are correct. 20 If you are to lead. 14 -Are we the new israel? 17 +Are we the new israel 17 If you are a match. 14 -We are not sax-cult. 15 +We are not saxcult. 15 You are a good crew. 15 You are all my family. 17 You are then full. 14 @@ -20595,29 +20595,29 @@ You are repelled by this. 20 They are still breathing. 21 Aye, where mine is also. 19 We are baptized in jesus. 20 -Are you still on duty? 17 +Are you still on duty 17 Although, we are in the. 19 The questions are these. 20 I like that you are a path. 20 We are playing in a bank. 19 -May i ask who you are? 16 +May i ask who you are 16 The victims here are men. 20 Boys are playing in the garden. 25 The students are learning their lessons. 34 Birds are flying in the sky. 22 The girls are singing devotional songs. 33 -Are you coming with me? 18 -Are they ready yet? 15 -Where are the books? 16 -What are these tiny objects? 23 +Are you coming with me 18 +Are they ready yet 15 +Where are the books 16 +What are these tiny objects 23 Max and megan are pretty girls. 25 We are late. 9 You are sleepy. 12 They are great. 12 -Are you clever? 12 -Are we late? 9 -Are you sleepy? 12 -Are they great? 12 +Are you clever 12 +Are we late 9 +Are you sleepy 12 +Are they great 12 You are wonderful. 15 She was crying. 12 Joe was knitting. 14 @@ -20661,24 +20661,24 @@ It was a frugal meal. 16 Fucking stupid, it was. 19 Nothing great was ever achieved without enthusiasm. 44 A man is not a horse because he was born in a stable. 40 -That was the best ice-cream soda i ever tasted. 37 +That was the best icecream soda i ever tasted. 37 Rome was not built in a day. 21 He who never was sick dies the first. 29 He who was never sick dies the first fit. 32 When i lent i had a friend when i asked he was unkind. 41 -Why do you weep? did you think i was immortal? 35 +Why do you weep did you think i was immortal 35 Nothing comes out of the sackbut what was in it. 38 I wept when i was born, and every day shows why. 37 Avoid the ford on which your friend was drowned. 39 He was fallible like everyone else. 29 Senior medina was the first boy in his family. 37 You said eric was your cousin. 24 -The return address was the doctor's office in chicago. 44 +The return address was the doctors office in chicago. 44 That idea was troublesome to carmen as well. 36 At ten years old, jonathan was almost as tall as she was. 45 He was getting to be quite a handsome young man. 38 -What was he disappointed about-the new baby? 36 -He wouldn't have approved-of that she was certain. 40 +What was he disappointed aboutthe new baby 36 +He wouldnt have approvedof that she was certain. 40 Then there was the money he left for carmen. 35 The religion we call false was once true. 33 He was born with a silver spoon in his mouth. 35 @@ -20686,7 +20686,7 @@ They were playing. 15 We were waiting for them. 20 The boy was startled and his eyes were big. 34 You were very greedy, said the girl. 29 -I don't know where they were planning to sit. 35 +I dont know where they were planning to sit. 35 There were sparks between them from the start. 38 My parents were deeply grieved and perplexed. 38 They were faithful straight liners. 30 @@ -20696,7 +20696,7 @@ But the foes were too many to be repulsed for long. 40 We were on our way back. 18 The orders were not to let them in. 27 Eric opened his eyes as they were closing. 34 -Right now she didn't care where they were. 33 +Right now she didnt care where they were. 33 The home was any place they were together. 34 At least they were talking. 22 His shrug and tone were nonchalant. 29 @@ -20707,26 +20707,26 @@ There were no openings. 19 So they were going to question her. 28 You were a lot harder to read. 23 We were all together. 17 -What were you thinking? 19 -You weren't exactly friendly. 24 +What were you thinking 19 +You werent exactly friendly. 24 After all, her plans were going so well. 32 They were wrong, and she intended to prove it. 37 Maybe that was why they were so happy. 30 All eyes were on him, but he appeared not to notice. 41 -I didn't know you were awake. 22 +I didnt know you were awake. 22 People passing between them were a blur. 33 The lady you were talking to. 23 Even as tired as she was, his arms were a welcome haven. 44 -They were expecting-as surely as if they were in her womb. 46 +They were expectingas surely as if they were in her womb. 46 Her pupils were large, making her eyes look dark. 40 Love, he said, as if the one word were a full explanation. 46 Again it struck her how much they were alike. 36 John was so angry that tears were rolling down her face. 45 It was a good thing they were going home tomorrow. 40 -Anna, why were you with mia all evening? 32 +Anna, why were you with mia all evening 32 They were home but still playing love tag at night. 41 -I guess i'd wonder too if i were in your shoes. 35 -They weren't exactly best of friends. 30 +I guess id wonder too if i were in your shoes. 35 +They werent exactly best of friends. 30 Tears were streaming down her cheeks. 31 Most of them were in. 16 Said you were doing a. 17 @@ -20777,31 +20777,31 @@ His eyes were full of fire. 21 We have a meeting at 12. 18 Nurses have a difficult job. 23 You have done well said his grandfather. 33 -You'll all have to walk. 18 -Where in the world have you been, my lad? 32 +Youll all have to walk. 18 +Where in the world have you been, my lad 32 It is a little speech that i have written for him. 39 Why have you not written. 20 I have something here for little harry. 32 -If it isn't i'll have to stand it, that's all. 33 +If it isnt ill have to stand it, thats all. 33 Harry, you have done very well. 25 -Have you them here with you? 22 +Have you them here with you 22 In persia, we do not have such feasts. 30 -Have you a room here for me?. 21 +Have you a room here for me. 21 I have come to ask your pardon. 24 I think you have been asleep, said the king. 35 -We're going to have a baby, not a sin. 28 +Were going to have a baby, not a sin. 28 Have mercy on me. 13 I have some pennies, said benjamin. 29 -Have you been sick? 15 +Have you been sick 15 But come, children, let us have our supper. 35 You may have them. 14 -And what have they promised? 23 +And what have they promised 23 I deceived only the birds, but you have deceived me. 42 -What have you come for? 18 +What have you come for 18 You have your children in your home. 29 Many boys and girls have read his story. 32 -That is the one thing i have faith in! 29 -Wherever have you been, emma? 24 +That is the one thing i have faith in 29 +Wherever have you been, emma 24 I may have to eat them, after all. 26 I do not need to breathe, returned the other. 36 It is the cross i have to bear. 23 @@ -20809,19 +20809,19 @@ You have a good family. 18 We might have done something to help you. 33 Ours must have got the best of it. 26 Kittens have no conscience. 23 -Well, have you heard the great news? 29 -I have known him for a long time! 25 -A fine idea to have a blind general! 28 -How many do you have? 16 +Well, have you heard the great news 29 +I have known him for a long time 25 +A fine idea to have a blind general 28 +How many do you have 16 Yes, we have many horses. 20 -I can't have one. 12 +I cant have one. 12 They have some very nice animals. 27 -That way you don't have to taste it. 27 +That way you dont have to taste it. 27 I have no experience. 17 They would like to have such a life. 28 She could have been a model. 22 I must have missed them. 19 -You need to have it x-rayed. 21 +You need to have it xrayed. 21 I did not have any. 14 We have to have it. 14 All we have is now. 14 @@ -20841,14 +20841,14 @@ I may have been too good. 19 He did have to stop there. 20 They would have a hose. 18 You have done well john. 19 -He didn't have to. 13 -Have you looked at him? 18 +He didnt have to. 13 +Have you looked at him 18 You must have liked him. 19 -We don't have to wait. 16 -Why don't you have a? 15 +We dont have to wait. 16 +Why dont you have a 15 He need not have worried. 20 They all just have the. 18 -You'd have to drive them. 19 +Youd have to drive them. 19 It would have been good. 19 We have a sitting tenant. 20 Because i have made them. 20 @@ -20857,34 +20857,34 @@ It could have been worse. 20 Yes, he has a very good eye. 21 We have three hours to go. 20 He has given you the air in which to move and have homes. 44 -Do you have plans for this afternoon? 30 +Do you have plans for this afternoon 30 He seems to have vanished without a trace. 34 -Will i have to have an operation? 26 +Will i have to have an operation 26 I have a bit of a fever. 17 I have a lot of free time today. 24 -What kind of snacks should we have? 28 -Have you hugged your child today? 27 -She didn't have any maternal instincts. 32 -She didn't even have the strength to stand up. 36 +What kind of snacks should we have 28 +Have you hugged your child today 27 +She didnt have any maternal instincts. 32 +She didnt even have the strength to stand up. 36 I have the hots for tom. 18 I have a hunch that jane likes me. 26 -I shouldn't have drunk this much. 26 -Would you like to have a drink after work? 33 -I'm going to have a baby. 18 -Do you have any tickets for the concert? 32 +I shouldnt have drunk this much. 26 +Would you like to have a drink after work 33 +Im going to have a baby. 18 +Do you have any tickets for the concert 32 I have strong feelings for tom. 25 -I never said that! you must have misheard me. 35 +I never said that you must have misheard me. 35 I have a lot of money on me now. 23 I think i have a fever. 17 -I'm happy to have been a part of our life. 31 -Let's forget about work and have some fun. 33 +Im happy to have been a part of our life. 31 +Lets forget about work and have some fun. 33 Several border crossings have now reopened. 37 -Do you have a high temperature? 25 +Do you have a high temperature 25 I have a great english teacher. 25 He has a new haircut. 16 The machine leaks it. 17 It has a hole near the door. 21 -He hasn't had much luck yet. 21 +He hasnt had much luck yet. 21 It looks like he has other plans. 26 It has a lot of character. 20 Just listen to what he has to say. 26 @@ -20893,36 +20893,36 @@ If max has time, maybe he could help me. 31 It has gps navigation. 18 He has been received by the emperor. 29 Or when he has a wife to point the way. 29 -If one of us has to leave, i'll go. 25 -You're the first girl who has ever accepted me. 37 +If one of us has to leave, ill go. 25 +Youre the first girl who has ever accepted me. 37 We could say he has excellent taste. 29 God has given you the air. 20 -It's the same old wolf that has been skulking. 36 +Its the same old wolf that has been skulking. 36 The end of the world has come. 23 -Do you know that she has lost her father? 32 -You know it has cost money! 21 +Do you know that she has lost her father 32 +You know it has cost money 21 He has you and now he forgets me. 25 More like dulce has been talking to me. 31 It has living quarters at the back. 28 A lot has changed. 14 -Has he spoken to you about going away? she asked. 38 -Has it always been on the farm? 24 +Has he spoken to you about going away she asked. 38 +Has it always been on the farm 24 This has been hard for you, as well. 28 The emperor has designed to summon us. 31 But she has servants to attend to me. 29 -Has mia tried to get custody of him? 28 +Has mia tried to get custody of him 28 David tells me that the war has ruined you. 34 Nothing has been the same. 21 No one else has one like you. 22 He has no other choice. 18 He has to learn now. 15 -My opinion hasn't changed. 21 +My opinion hasnt changed. 21 She has a great understanding of us. 29 -How long has it been snowing? 23 -I can't figure out who has the money? 28 -Who has done this? he cried. 21 +How long has it been snowing 23 +I cant figure out who has the money 28 +Who has done this he cried. 21 He has seen me in my blindness. 24 -It hasn't been easy for either of us. 28 +It hasnt been easy for either of us. 28 The lord has given me. 17 One of us has got to. 15 He has all the power. 16 @@ -20936,7 +20936,7 @@ God has so much more. 16 He has an errand to run. 18 I dare say she has. 14 Has when they are little. 20 -I've heard he has a. 14 +Ive heard he has a. 14 Now, there has been a. 17 It has to be bad. 12 But my brother has no. 17 @@ -20964,11 +20964,11 @@ He has to find an answer. 19 He has tied me to a line. 18 She has never gone more. 19 If mike has time, maybe he could help me. 32 -Has anybody ever told you that you're beautiful? 39 -If he has custody, she couldn't get the money. 36 +Has anybody ever told you that youre beautiful 39 +If he has custody, she couldnt get the money. 36 Maybe she has someone more suitable in mind. 36 Some medical attention has to beat none. 33 -Do you know he has over four million in savings? 38 +Do you know he has over four million in savings 38 A growing youth has a wolf in his belly. 31 He has transmitted the report to us. 29 No motive for the killing has yet been established. 42 @@ -20987,7 +20987,7 @@ Mia has a collection of expensive russian dolls. 40 In the winter you must wear heavy woolen clothes. 40 I love that really big old green antique car. 36 John is the most handsome man on campus. 32 -Daniella is a part-time worker. 25 +Daniella is a parttime worker. 25 Mike lost his dark brown briefcase. 29 Rose wore a beautiful hat. 21 Furry dogs may overheat in the summertime. 35 @@ -20996,8 +20996,8 @@ The scariest villain of all time is darth vader. 39 That cow sure is happy. 18 It smells gross in the locker room. 28 Driving is faster than walking. 26 -I'm looking for a small, good-tempered dog. 34 -My new dog is small and good-tempered. 30 +Im looking for a small, goodtempered dog. 34 +My new dog is small and goodtempered. 30 A cool guy. 8 A messy desk. 10 A mischievous cat. 15 @@ -21017,7 +21017,7 @@ They live in a beautiful house. 25 This soup is not edible. 19 This glass is breakable. 20 She wore a beautiful dress. 22 -Emma's hair is gorgeous. 19 +Emmas hair is gorgeous. 19 He writes meaningless letters. 26 Ben is an adorable baby. 19 This shop is much nicer. 19 @@ -21038,23 +21038,23 @@ This is the prettiest dress in the window. 34 He is more intelligent than this boy. 30 I lost my most comfortable shoes. 27 My job is worse than yours. 21 -This is a four-foot table. 20 +This is a fourfoot table. 20 This flower is more beautiful than that. 33 -Daniel is a part-time worker. 23 +Daniel is a parttime worker. 23 This house is bigger than that one. 28 -This is an all-too-common error. 25 +This is an alltoocommon error. 25 My sister is fond of animals. 23 -Beware of the green-eyed monster. 27 +Beware of the greeneyed monster. 27 I am happy to meet you. 17 -He is a cold-blooded man. 19 +He is a coldblooded man. 19 The kids are ready to go. 19 -We saw a man-eating shark! 20 -Don't be afraid of the dark. 21 -Max's dog is well-behaved. 20 +We saw a maneating shark 20 +Dont be afraid of the dark. 21 +Maxs dog is wellbehaved. 20 Sam lost his dark brown briefcase. 28 -You have to be open-minded about things. 32 +You have to be openminded about things. 32 Megan is clever. 13 -He's an extraordinary-looking man. 28 +Hes an extraordinarylooking man. 28 The doctor is very late. 19 The colorful balloon floated over the treetop. 39 The big dog chased the car. 21 @@ -21068,7 +21068,7 @@ He banged his head against the glass door. 34 Swiss chocolates are famous all over the world. 39 Hydrogen gas is the lightest gas and element. 37 Just a little juice is left in the jug. 30 -Did you have enough food? 20 +Did you have enough food 20 John does not need much money. 24 Bring all the notebooks from the classroom. 36 Jenny takes great care of her pets. 28 @@ -21080,9 +21080,9 @@ Please purchase one dozen eggs for me. 31 Bring me two books from the shelf. 27 A week has seven days. 17 December is the twelfth month of the year. 34 -Which road shall we take? 20 -What time would the match begin? 26 -Whose car is this? 14 +Which road shall we take 20 +What time would the match begin 26 +Whose car is this 14 This pen is very expensive. 22 Look at that billboard. 19 These mangoes are ripe. 19 @@ -21117,8 +21117,8 @@ The green tree is in my backyard. 26 Skinny dogs are not necessarily healthy. 34 Giant monsters are hiding under the bed. 33 Hairless cats look like rats. 24 -That child sure is joyful! 21 -It was so disgusting in my son's bedroom. 32 +That child sure is joyful 21 +It was so disgusting in my sons bedroom. 32 She is the smartest in the class. 26 There are twenty chairs set up for the meeting. 38 She has four children. 18 @@ -21134,7 +21134,7 @@ The presentation was not entirely boring. 35 The incredibly tired bear was lying down. 34 The overly angry onlookers started a riot. 35 The waves are way too high. 21 -Have you received the latest news about the match? 41 +Have you received the latest news about the match 41 There is a damp feeling in the air due to heavy rain. 41 He lost the few friends he had. 24 My shirt is better than yours. 24 @@ -21172,11 +21172,11 @@ Come out in the wash. 16 Dance with the devil. 17 Dead of winter. 12 Deliver the goods. 15 -Doesn't amount to a hill of beans. 26 +Doesnt amount to a hill of beans. 26 Down the road. 11 Draw a line in the sand. 18 Drive someone up the wall. 21 -Eat someone's lunch. 16 +Eat someones lunch. 16 Elephant in the room. 17 Every man for himself. 18 Fall in love with somebody. 22 @@ -21252,8 +21252,8 @@ Walk the plank. 12 Water under the bridge. 19 Wet behind the ears. 16 What goes around comes around. 25 -You can't judge a book by its cover. 27 -You can't make an omelette. 21 +You cant judge a book by its cover. 27 +You cant make an omelette. 21 You know the drill. 15 Young at heart. 12 Your number is up. 14 @@ -21261,7 +21261,7 @@ Zero in on. 8 A blessing in disguise. 19 Cut somebody some slack. 20 Let someone off the hook. 20 -We'll cross that bridge when we come to it. 33 +Well cross that bridge when we come to it. 33 Wrap your head around something. 27 A bird in the hand is worth two in the bush. 33 A penny saved is a penny earned. 25 @@ -21272,23 +21272,23 @@ Comparing apples to oranges. 24 Costs an arm and a leg. 17 Do something at the drop of a hat. 26 Do unto others as you would have them do unto you. 39 -Don't count your chickens before they hatch. 36 -Don't cry over spilt milk. 20 -Don't give up your day job. 20 -Don't put all your eggs in one basket. 29 +Dont count your chickens before they hatch. 36 +Dont cry over spilt milk. 20 +Dont give up your day job. 20 +Dont put all your eggs in one basket. 29 Get a taste of your own medicine. 26 Give someone the cold shoulder. 26 Go on a wild goose chase. 19 He has bigger fish to fry. 20 Hit the nail on the head. 19 Ignorance is bliss. 16 -It isn't over till the fat lady sings. 29 +It isnt over till the fat lady sings. 29 It takes one to know one. 19 Live and learn. 12 On thin ice. 9 -Play devil's advocate. 18 +Play devils advocate. 18 Put something on ice. 17 -Rain on someone's parade. 20 +Rain on someones parade. 20 Saving for a rainy day. 18 Slow and steady wins the race. 24 Take a rain check. 14 @@ -21299,18 +21299,18 @@ The early bird gets the worm. 23 The elephant in the room. 20 The whole nine yards. 17 There are other fish in the sea. 25 -There's a method to his madness. 25 -There's no such thing as a free lunch. 29 +Theres a method to his madness. 25 +Theres no such thing as a free lunch. 29 Throw caution to the wind. 21 -You can't have your cake and eat it too. 30 +You cant have your cake and eat it too. 30 A little learning is a dangerous thing. 32 A snowball effect. 15 -A snowball's chance in hell. 22 +A snowballs chance in hell. 22 A storm in a teacup. 15 As right as rain. 13 Bolt from the blue. 15 Burn bridges. 11 -Don't beat a dead horse. 18 +Dont beat a dead horse. 18 Every dog has his day. 17 Familiarity breeds contempt. 25 Fit as a fiddle. 12 @@ -21319,9 +21319,9 @@ Get a second wind. 14 Haste makes waste. 15 Have your head in the clouds. 23 He who laughs last laughs loudest. 28 -He's not playing with a full deck. 26 -He's off his rocker. 15 -He's sitting on the fence. 20 +Hes not playing with a full deck. 26 +Hes off his rocker. 15 +Hes sitting on the fence. 20 It is a poor workman who blames his tools. 33 It is always darkest before the dawn. 30 It takes two to tango. 17 @@ -21347,12 +21347,12 @@ Bent out of shape. 14 Bite off more than one can chew. 25 Bite the dust. 11 Blessing in disguise. 18 -Blow one's top. 11 +Blow ones top. 11 Bottom line. 10 -Break one's heart. 14 +Break ones heart. 14 Buck stops here. 13 Burn the midnight oil. 18 -By the skin of one's teeth. 20 +By the skin of ones teeth. 20 Catch some sleep. 14 Caught my eye. 11 Chomp on the bit. 13 @@ -21360,21 +21360,21 @@ He told me he was going to call alan. 28 Rachel said that she was very busy now. 31 I bought a car. 11 My parents are very well. 20 -I'm living in texas now. 18 +Im living in texas now. 18 I am living in paris. 16 -My mother isn't very well. 20 +My mother isnt very well. 20 I need help with my work. 19 I was walking along the street. 25 -I haven't seen george recently. 25 +I havent seen george recently. 25 I can speak perfect spanish. 23 -I haven't seen mary. 15 -What is your name? she asked me. 24 +I havent seen mary. 15 +What is your name she asked me. 24 I was sleeping when mary called. 26 -Please help me! 12 +Please help me 12 It is too late. 11 I had taken spanish lessons before. 29 -Did you do your homework? 20 -Please help me carry this! 21 +Did you do your homework 20 +Please help me carry this 21 I like ice cream. 13 I could swim when i was four. 22 I should call my mother. 19 @@ -21455,9 +21455,9 @@ Alex said that his parents were very well. 34 He asked them not to be late. 22 Her father said that he was living in london now. 39 He said that he was living in paris. 28 -She said that her mother wasn't very well. 33 +She said that her mother wasnt very well. 33 He said he could speak perfect spanish. 32 -He said he hadn't seen mary. 21 +He said he hadnt seen mary. 21 She asked me what my name was. 23 He said that he had been sleeping when mary called. 41 He asked me to help him. 18 @@ -21566,25 +21566,25 @@ The cashier counted the money. 25 The dog chased the squirrel. 23 Mia was painting a wall. 19 Mike was repairing the car. 22 -Were you reciting the poem? 22 +Were you reciting the poem 22 She was baking the cake. 19 She was watching me. 16 Mia had cleaned the floor. 21 She had not gotten the parcel. 24 Jack had solved the doubt. 21 -Had they caught the thief? 21 +Had they caught the thief 21 I had paid fifty thousand. 21 Sameer wrote a letter. 18 She writes a letter. 16 -Has she completed the work? 22 +Has she completed the work 22 They had won the match. 18 She will write a poem. 17 He will have received the letter. 27 Help me. 6 Open the door. 11 -Are you writing a letter? 20 -Why did you break the box? 20 -Who broke the window? 17 +Are you writing a letter 20 +Why did you break the box 20 +Who broke the window 17 I want to shoot the tiger. 20 I remember my father taking me to the theatre. 37 She brought me a cup of coffee. 24 @@ -21594,24 +21594,24 @@ One finds mosquitoes everywhere. 28 They sell books. 13 You are disturbing me. 18 She has written two books. 21 -Did he buy a car? 12 +Did he buy a car 12 The boys were singing songs. 23 He had collected stamps. 20 They will arrange for the party. 26 She cleaned the table with a feather duster. 36 Sing a song. 9 -Where can you hide this box? 22 +Where can you hide this box 22 He does not cook food. 17 -Do they purchase books? 19 +Do they purchase books 19 They grow plants. 14 She teaches me. 12 Mia is singing a song. 17 Mia is not chopping vegetables. 26 -Is rachel buying vegetables? 24 +Is rachel buying vegetables 24 She is disturbing daniel. 21 Mia has challenged. 16 David has not written the article. 28 -Have they left the apartment? 24 +Have they left the apartment 24 She has created this masterpiece. 28 I have read the newspaper. 21 Rachel cleaned the floor. 21 @@ -21620,22 +21620,22 @@ Mia called my friends. 18 Mia paid the bills. 15 Eric will sew the bag. 17 David will not arrange the things. 28 -Will you mop the floor? 18 +Will you mop the floor 18 They will post the letter. 21 They will have brought the toy. 25 Will she have written the notes. 26 They will have won the match. 23 Vijay will have washed a shirt. 25 -How does one pronounce his name? 26 +How does one pronounce his name 26 The kid has served dinner. 21 The police have been watching that house for weeks. 42 -They didn't fix my phone yesterday. 28 +They didnt fix my phone yesterday. 28 They were interrogating him when i called. 35 -I wondered why they hadn't invited me. 30 -She wasn't sure how long they'd been following her. 40 +I wondered why they hadnt invited me. 30 +She wasnt sure how long theyd been following her. 40 They will hang him at dawn. 21 -They won't be questioning him when you get there. 39 -I don't want anyone to disturb me. 26 +They wont be questioning him when you get there. 39 +I dont want anyone to disturb me. 26 She does not cook food. 18 Peter gave me flowers on my birthday. 30 You are waiting for your friend. 26 @@ -21643,7 +21643,7 @@ The children have broken the window pane. 34 I shall have my car sold. 19 The boy laughed at the beggar. 24 Stella will invite rita. 20 -People drink champagne on new year's eve. 33 +People drink champagne on new years eve. 33 They renovated the restaurant in 2004. 32 I ate the strawberry pie. 20 I bought a honda car. 16 @@ -21652,7 +21652,7 @@ They seem to have taken it. 21 I saw the cat eating it. 18 Having finished my work, i went home. 30 I insisted on them paying me. 23 -Is he going to sing thriller at the party? 33 +Is he going to sing thriller at the party 33 Rachel used to take care of everything. 32 They can question him for six hours. 29 It could have badly hurt you. 23 @@ -21716,17 +21716,17 @@ The baby was carried by the kangaroo in her pouch. 40 Bananas are adored by monkeys. 25 The money was counted by the cashier. 30 The squirrel was chased by the dog. 28 -Was the poem being recited? 22 +Was the poem being recited 22 The cake was being baked by her. 25 I was being watched by her. 21 The floor had been cleaned by mishap. 30 The doubt had been solved. 21 -Had the thief been caught by them? 27 +Had the thief been caught by them 27 Fifty thousand had been paid by me. 28 A letter was written by sameer. 25 A letter is written by her. 21 Oranges are being eaten by them. 26 -Has the work been completed by her? 28 +Has the work been completed by her 28 A book was not bought by him. 22 A shirt was being washed by her. 25 The match had been won by them. 24 @@ -21734,9 +21734,9 @@ A poem will be written by her. 23 The letter will have been received by him. 34 Let me be helped. 13 Let the door be opened. 18 -Is a letter being written by you? 26 -Why was the box broken by you? 23 -By whom was the window broken? 24 +Is a letter being written by you 26 +Why was the box broken by you 23 +By whom was the window broken 24 I want the tiger to be shot. 21 I remember being taken to the theatre by my father. 41 I was brought a cup of coffee by her. 28 @@ -21746,36 +21746,36 @@ Mosquitoes are found everywhere. 28 Books are sold by them. 18 I am being disturbed by you. 22 Two books have been written by her. 28 -Was a car bought by him? 18 +Was a car bought by him 18 Songs were being sung by boys. 24 Stamps had been collected by him. 27 The party will be arranged by them. 28 The table was cleaned with a feather duster by her. 41 Let a song be sung. 14 -Where can this box be hidden by you? 28 +Where can this box be hidden by you 28 A novel is read. 12 Food is not cooked by him. 20 -Are books purchased by him? 22 +Are books purchased by him 22 Plants are grown by them. 20 I am taught by her. 14 -Has the apartment been left by them? 29 +Has the apartment been left by them 29 This masterpiece has been created by her. 34 The newspaper has been read by me. 27 -Will the floor be mopped by you? 25 +Will the floor be mopped by you 25 The letter will be posted. 21 The toy will have been brought by them. 31 -Will the notes have been written by her? 32 +Will the notes have been written by her 32 The match will have been won by them. 29 A shirt will have been washed by vijay. 31 -How is his name pronounced? 22 +How is his name pronounced 22 Dinner has been served. 19 That house has been being watched for weeks. 36 -My phone wasn't fixed yesterday. 26 +My phone wasnt fixed yesterday. 26 He was being interrogated when i called. 33 -I wondered why i hadn't been invited. 29 +I wondered why i hadnt been invited. 29 He will be hanged at dawn. 20 -He won't be being questioned when you get there. 38 -I don't want to be disturbed. 22 +He wont be being questioned when you get there. 38 +I dont want to be disturbed. 22 The food is not cooked by her. 23 I was given flowers by peter on my birthday. 35 Your friend is being waited for by you. 31 @@ -21820,7 +21820,7 @@ No other ocean in the world is so deep as the pacific. 42 Pacific is deeper than any other ocean in the world. 42 Pacific is the deepest ocean in the world. 34 Peter is smarter than john. 22 -Which of the two sisters is the prettier? 33 +Which of the two sisters is the prettier 33 Apples are dearer than oranges. 26 Peter is the smartest boy in the class. 31 Iron is the most useful of all metals. 30 @@ -21834,7 +21834,7 @@ Your house is as large as mine. 24 Your house is not quite so large as mine. 32 Jack is greater than any other king in india. 36 Very few nations are as materialistic as the usa. 40 -Alexander's neighborhood is more peaceful than ours. 44 +Alexanders neighborhood is more peaceful than ours. 44 A lion is as dangerous as a tiger. 26 Einstein is as famous as darwin. 26 A cow is more useful than any other animal. 34 @@ -21849,13 +21849,13 @@ I have more books than you. 21 In a similar situation, jane would be angrier than john was. 49 Jackson is gentler than brian. 25 Jane is naturally happier than his brother. 36 -John's car is fast. 14 -John's car is faster than kyle's. 25 +Johns car is fast. 14 +Johns car is faster than kyles. 25 Lola is thin, but susan is thinner. 28 Mango is sweeter than lime. 22 Mariana trench is the deepest point in the ocean. 40 My pencil is the shortest of the three pencils on the table. 48 -Of the three cars, walker's is the fastest. 34 +Of the three cars, walkers is the fastest. 34 Of the three friends in the clique, andy is the wisest. 44 Rachel is a tallboy. 16 He is the nicest boy in the class. 26 @@ -21867,8 +21867,8 @@ The pen is mightier than the sword. 28 This book is better. 16 This theatre is the tallest building in the city. 40 His eldest son is 15 years old. 24 -Today happens to be the busiest day i've had in two weeks. 45 -Your answer was worse than yesterday's. 32 +Today happens to be the busiest day ive had in two weeks. 45 +Your answer was worse than yesterdays. 32 Delhi is cleaner than any city in bangladesh. 37 He is more wise than shrewd. 22 My sister is elder to me. 19 @@ -21877,40 +21877,40 @@ The speed of this car is greater than that of the old one. 45 These shoes are preferable to those. 30 This idea is universal and the other is not. 35 John is superior to jane in mathematical skills. 40 -John is tom's elder brother. 22 +John is toms elder brother. 22 John is older than jane. 19 There were a few surprises for me. 27 -Is your coffee hot enough? 21 -This box isn't big enough. 20 -He didn't work hard enough. 21 -He didn't work hard enough to pass the exam. 34 -Is your coffee hot enough to drink? 28 -She's not old enough to get married. 28 +Is your coffee hot enough 21 +This box isnt big enough. 20 +He didnt work hard enough. 21 +He didnt work hard enough to pass the exam. 34 +Is your coffee hot enough to drink 28 +Shes not old enough to get married. 28 I got here early enough to sign up. 27 The dress was big enough for me. 25 -She's not experienced enough for this job. 34 -Is the coffee hot enough for you? 26 -He didn't work hard enough for a promotion. 34 +Shes not experienced enough for this job. 34 +Is the coffee hot enough for you 26 +He didnt work hard enough for a promotion. 34 We have enough bread. 17 You have enough children. 21 -They don't have enough food. 22 -I don't have enough apples. 21 +They dont have enough food. 22 +I dont have enough apples. 21 I would like to go swimming too if you will let me come. 43 -Can i go to the zoo too? 17 -Is this gift for me too? 18 -I'm not going to clean your room too! 28 +Can i go to the zoo too 17 +Is this gift for me too 18 +Im not going to clean your room too 28 This coffee is too hot. 18 He works too hard. 14 -Isn't she too young? 15 -I am not too short! 14 +Isnt she too young 15 +I am not too short 14 The coffee was too hot to drink. 25 -You're too young to have grandchildren! 32 +Youre too young to have grandchildren 32 I am not too tired to go out tonight. 28 -Don't you work too hard to have any free time? 35 +Dont you work too hard to have any free time 35 The coffee was too hot for me. 23 The dress was too small for her. 25 -He's not too old for this job. 22 -Sally's not too slow for our team. 26 +Hes not too old for this job. 22 +Sallys not too slow for our team. 26 This is the biggest house in this street. 33 This house is bigger than any other house on this street. 46 No other house in this street is as big as this one. 40 @@ -21950,7 +21950,7 @@ A rose is more beautiful than a daisy. 30 The earth is larger than the moon. 27 A pint is less than a quart. 21 Learning japanese is more difficult than learning italian. 50 -I can't find my most comfortable jeans. 31 +I cant find my most comfortable jeans. 31 Jupiter is the biggest planet in our solar system. 41 She is the smartest girl in our class. 30 This is the most interesting book i have ever read. 41 @@ -21973,7 +21973,7 @@ A bad penny always turns up. 22 A barking dog never bites. 21 A cat may look at a king. 18 A change is as good as a rest. 22 -A dog is a man's best friend. 21 +A dog is a mans best friend. 21 A golden key can open any door. 24 A good man is hard to find. 20 A fool and his money are soon parted. 29 @@ -21998,7 +21998,7 @@ A rolling stone gathers no moss. 26 A thing of beauty is a joy forever. 27 A trouble shared is a trouble halved. 30 A volunteer is worth twenty pressed men. 33 -A woman's place is in the home. 23 +A womans place is in the home. 23 Absolute power corrupts absolutely. 31 Adversity makes strange bedfellows. 31 After a storm comes a calm. 21 @@ -22010,9 +22010,9 @@ All things come to those that wait. 28 All things must pass. 17 All work and no play makes jack a dull boy. 33 All you need is love. 16 -All's fair in love and war. 20 -All's for the best in the best of all possible worlds. 42 -All's well that ends well. 20 +Alls fair in love and war. 20 +Alls for the best in the best of all possible worlds. 42 +Alls well that ends well. 20 An army marches on its stomach. 25 An eye for an eye, a tooth for a tooth. 29 An ounce of prevention is worth a pound of cure. 38 @@ -22024,16 +22024,16 @@ As thick as thieves. 16 As you make your bed, so you must lie upon it. 35 As you sow so shall you reap. 22 Ashes to ashes dust to dust. 22 -Ask a silly question and you'll get a silly answer. 40 +Ask a silly question and youll get a silly answer. 40 The attack is the best form of defense. 31 Bad money drives out good. 21 Bad news travels fast. 18 Be careful what you wish for. 23 Beat swords into plowshares. 24 Beauty is only skin deep. 20 -Behind every great man, there's a great woman. 37 +Behind every great man, theres a great woman. 37 Better safe than sorry. 19 -Better the devil you know than the devil you don't. 40 +Better the devil you know than the devil you dont. 40 Between two stools one falls to the ground. 35 Beware of greeks bearing gifts. 26 Big fish eat little fish. 20 @@ -22043,7 +22043,7 @@ Blue are the hills that are far away. 29 Boys will be boys. 14 Brevity is the soul of wit. 21 Business before pleasure. 22 -Caesar's wife must be above suspicion. 31 +Caesars wife must be above suspicion. 31 Charity begins at home. 19 Charity covers a multitude of sins. 29 Cheaters never win and winners never cheat. 36 @@ -22055,15 +22055,15 @@ Clothes market the man. 19 Comparisons are odious. 20 Cold hands, warm heart. 19 Count your blessings. 18 -Crime doesn't pay. 14 +Crime doesnt pay. 14 Cut your coat to suit your cloth. 26 Dead men tell no tales. 18 Different strokes for different folks. 33 Discretion is the better part of valor. 32 Distance lends enchantment to the view. 33 Do as you would be done by. 20 -Don't burn your bridges behind you. 28 -Don't cast your pearls before swine. 29 +Dont burn your bridges behind you. 28 +Dont cast your pearls before swine. 29 Failing to plan is planning to fail. 29 Faint heart never won fair lady. 26 Fair exchange is no robbery. 23 @@ -22075,7 +22075,7 @@ Judge not of men and things at first sight. 34 He jests at scars that never felt a wound. 33 He knows best what good is that has endured evil. 39 Curses like chickens come home to roost. 33 -Everybody's business is nobody's business. 35 +Everybodys business is nobodys business. 35 You reap what you sow. 17 You cannot serve two masters. 24 Everything comes to him who waits. 28 @@ -22094,7 +22094,7 @@ Of two evils choose the least. 24 Old birds are not caught with chaff. 29 Old friends and old wine are best. 27 Out of sight, out of mind. 20 -Out of the frying-pan into the fire. 28 +Out of the fryingpan into the fire. 28 Packed like herrings. 18 Learn to say before you sing. 23 Least said, soonest mended. 23 @@ -22102,7 +22102,7 @@ Leaves without figs. 17 Let bygones be bygones. 19 Many words hurt more than words. 26 Many words will not fill a bushel. 27 -Self-done is soon done. 18 +Selfdone is soon done. 18 The best fish smell when they are three days old. 39 The best fish swim near the bottom. 28 The best is oftentimes the enemy of the good. 36 @@ -22119,7 +22119,7 @@ There is no rule without an exception. 31 There is no smoke without fire. 25 Idleness is the mother of all evil. 28 Idleness rusts the mind. 20 -If a hole bray at you, don't bray at him. 30 +If a hole bray at you, dont bray at him. 30 If the sky falls, we shall catch larks. 31 Men may meet but mountains never. 27 Might goes before right. 20 @@ -22147,8 +22147,8 @@ Gifts from enemies are dangerous. 28 Give every man thy ear, but few thy voice. 33 Creditors have better memories than debtors. 38 Cross the stream where it is shallowest. 33 -Crows do not pick crow's eyes. 23 -Two wrongs don't make a right. 23 +Crows do not pick crows eyes. 23 +Two wrongs dont make a right. 23 When in rome, do as the romans. 24 The squeaky wheel gets the grease. 28 When the going gets tough, the tough get going. 38 @@ -22157,224 +22157,224 @@ Fortune favors the bold. 20 Hope for the best, but prepare for the worst. 36 Keep your friends close and your enemies closer. 40 A picture is worth a thousand words. 29 -There's no place like home. 21 +Theres no place like home. 21 Discretion is the greater part of valor. 33 The early bird catches the worm. 26 Never look a gift horse in the mouth. 29 -You can't always get what you want. 27 +You cant always get what you want. 27 A watched pot never boils. 21 -If it isn't broke, don't fix it. 23 +If it isnt broke, dont fix it. 23 Practice makes perfect. 20 Too many cooks spoil the broth. 25 Come easy go. 10 -Don't bite the hand that feeds you. 27 +Dont bite the hand that feeds you. 27 All good things must come to an end. 28 -One man's trash is another man's treasure. 33 +One mans trash is another mans treasure. 33 Beauty is in the eye of the beholder. 29 -There's no time like the present. 26 +Theres no time like the present. 26 Necessity is the mother of invention. 31 Two heads are better than one. 24 A chain is only as strong as its weakest link. 36 Absence makes the heart grow fonder. 30 -Aren't you eric's friend? 19 -I wouldn't go in there if i were you. 27 -They haven't decorated for the party yet. 33 -We'd talked about it for hours but decided nothing. 41 -I'm ready for a vacation. 19 -He's going to florida for the holiday. 30 -We're staying in town. 17 -They're undecided at the moment. 26 -He isn't home today. 15 -Those aren't my mittens. 19 -They're all my friends. 18 -I'll help you with your work. 22 -I couldn't find the kids. 19 -I wouldn't mind the words what you said to me. 35 -Aren't you getting hungry? 21 -And don't tell me you aren't playing house with him. 40 -Why aren't you serving in the army? 27 -Tell me the truth now, aren't you enjoying the ride? 41 -He is often doesn't come to school. 27 -Thanks to the insurance, there aren't any. 34 -They'll find our tracks, won't they? 28 -I won't talk about it anymore, she said cheerfully. 41 -You won't have any relief. 20 -Donna doesn't know where mia lives. 28 -I won't let anything hurt her. 23 -Sorry i haven't answered yet. 23 -Cade, i haven't finished the dishes. 29 -According to her, he isn't coming. 27 -We've taken you for granted, haven't we? 31 -Go over that way, they're there. 25 -I suppose they're both a little artificial. 35 -I guess they're not as tame as they look. 31 -Do you think they're in there? 23 -She doesn't want to talk about it. 26 -They've been watching you. 21 -They've done everything they can. 27 -They've got their minds set on something else. 37 -They've spotted the van! 19 -She'd get over him. 14 -I just can't believe this. 20 -Jim isn't a lawyer, but a doctor. 25 -You can't imagine how i've missed the country. 36 -We can't make her understand. 23 -You don't speak russian. 19 -John doesn't speak french. 21 -We don't have time for a quick drink. 28 -It doesn't rain much in summer. 24 -They don't want to come with us. 24 -She doesn't like meat. 17 -I guess we could say he hasn't been around much. 37 -He hasn't returned my call. 21 -I'm the only one who hasn't lied to you. 29 -He hasn't floated in, has he?. 22 -He hasn't seen us in years. 20 -I think i'll join anna right now. 25 -This data isn't accurate at all. 25 -Now go away or i'll call the police. 27 -Go and wake and i'll come in a moment. 28 -However, i'll look up our list. 24 -If you won't answer, i'll tell you. 26 -This sentence doesn't make sense. 27 -We weren't told anything. 20 -I guess it doesn't matter anymore. 27 -She doesn't understand me, either. 28 -Why weren't you with them? 20 -He'll be back later. 15 -It may take a few minutes, but he'll catch on. 35 -He'll be stuck to that tv for hours. 27 -He'll be back next weekend, she said. 29 -He'll follow us, won't he? 19 -Hey, you'll never guess what happened tonight. 38 -I'm sure you'll fit into his plans. 26 -You're a clever girl and you'll know how to manage. 39 -I know you'll take care of it. 22 -There isn't anybody else. 20 -This clock isn't working. 20 -This question isn't easy. 20 -This isn't what i ordered. 20 -Tom isn't watching tv now. 20 -Giving up isn't the answer. 21 -He isn't able to buy a car. 19 -Isn't that skirt too short? 21 -She isn't afraid of snakes. 21 -The baby doesn't walk yet. 20 -He doesn't watch tv at all. 20 -Pork doesn't agree with me. 21 -Tom doesn't have a bicycle. 21 -He doesn't always come late. 22 -He doesn't have any friends. 22 -Ann doesn't have any sisters. 23 -He doesn't eat this, does he? 22 -He doesn't speak our language. 24 -She's really smart, isn't she? 23 -This book isn't worth reading. 24 -This place is large, isn't it? 23 -There isn't anyone in the room. 24 -As far as i know, he isn't lazy. 23 -She doesn't speak japanese at home. 28 -She doesn't know how to drive a car. 27 -She doesn't want him to go to boston. 28 -The world doesn't revolve around you. 30 -Class doesn't begin until eight-thirty. 32 -He doesn't know how to play the guitar. 30 -I've decided to go to the party after all. 32 -He's not coming with us. 18 -It's his birthday and he has other plans. 32 -They've thought about going to the movies. 34 -It looked as if she'd already made up her mind. 36 -They'd better get here on time or they'll miss dinner. 42 -Isn't there a coffee house down the street? 34 +Arent you erics friend 19 +I wouldnt go in there if i were you. 27 +They havent decorated for the party yet. 33 +Wed talked about it for hours but decided nothing. 41 +Im ready for a vacation. 19 +Hes going to florida for the holiday. 30 +Were staying in town. 17 +Theyre undecided at the moment. 26 +He isnt home today. 15 +Those arent my mittens. 19 +Theyre all my friends. 18 +Ill help you with your work. 22 +I couldnt find the kids. 19 +I wouldnt mind the words what you said to me. 35 +Arent you getting hungry 21 +And dont tell me you arent playing house with him. 40 +Why arent you serving in the army 27 +Tell me the truth now, arent you enjoying the ride 41 +He is often doesnt come to school. 27 +Thanks to the insurance, there arent any. 34 +Theyll find our tracks, wont they 28 +I wont talk about it anymore, she said cheerfully. 41 +You wont have any relief. 20 +Donna doesnt know where mia lives. 28 +I wont let anything hurt her. 23 +Sorry i havent answered yet. 23 +Cade, i havent finished the dishes. 29 +According to her, he isnt coming. 27 +Weve taken you for granted, havent we 31 +Go over that way, theyre there. 25 +I suppose theyre both a little artificial. 35 +I guess theyre not as tame as they look. 31 +Do you think theyre in there 23 +She doesnt want to talk about it. 26 +Theyve been watching you. 21 +Theyve done everything they can. 27 +Theyve got their minds set on something else. 37 +Theyve spotted the van 19 +Shed get over him. 14 +I just cant believe this. 20 +Jim isnt a lawyer, but a doctor. 25 +You cant imagine how ive missed the country. 36 +We cant make her understand. 23 +You dont speak russian. 19 +John doesnt speak french. 21 +We dont have time for a quick drink. 28 +It doesnt rain much in summer. 24 +They dont want to come with us. 24 +She doesnt like meat. 17 +I guess we could say he hasnt been around much. 37 +He hasnt returned my call. 21 +Im the only one who hasnt lied to you. 29 +He hasnt floated in, has he. 22 +He hasnt seen us in years. 20 +I think ill join anna right now. 25 +This data isnt accurate at all. 25 +Now go away or ill call the police. 27 +Go and wake and ill come in a moment. 28 +However, ill look up our list. 24 +If you wont answer, ill tell you. 26 +This sentence doesnt make sense. 27 +We werent told anything. 20 +I guess it doesnt matter anymore. 27 +She doesnt understand me, either. 28 +Why werent you with them 20 +Hell be back later. 15 +It may take a few minutes, but hell catch on. 35 +Hell be stuck to that tv for hours. 27 +Hell be back next weekend, she said. 29 +Hell follow us, wont he 19 +Hey, youll never guess what happened tonight. 38 +Im sure youll fit into his plans. 26 +Youre a clever girl and youll know how to manage. 39 +I know youll take care of it. 22 +There isnt anybody else. 20 +This clock isnt working. 20 +This question isnt easy. 20 +This isnt what i ordered. 20 +Tom isnt watching tv now. 20 +Giving up isnt the answer. 21 +He isnt able to buy a car. 19 +Isnt that skirt too short 21 +She isnt afraid of snakes. 21 +The baby doesnt walk yet. 20 +He doesnt watch tv at all. 20 +Pork doesnt agree with me. 21 +Tom doesnt have a bicycle. 21 +He doesnt always come late. 22 +He doesnt have any friends. 22 +Ann doesnt have any sisters. 23 +He doesnt eat this, does he 22 +He doesnt speak our language. 24 +Shes really smart, isnt she 23 +This book isnt worth reading. 24 +This place is large, isnt it 23 +There isnt anyone in the room. 24 +As far as i know, he isnt lazy. 23 +She doesnt speak japanese at home. 28 +She doesnt know how to drive a car. 27 +She doesnt want him to go to boston. 28 +The world doesnt revolve around you. 30 +Class doesnt begin until eightthirty. 32 +He doesnt know how to play the guitar. 30 +Ive decided to go to the party after all. 32 +Hes not coming with us. 18 +Its his birthday and he has other plans. 32 +Theyve thought about going to the movies. 34 +It looked as if shed already made up her mind. 36 +Theyd better get here on time or theyll miss dinner. 42 +Isnt there a coffee house down the street 34 There are green beans on my plate, but i asked for broccoli. 48 -Do you think he'll pass his driving test? 32 -I'll see you next week. 17 -I'm going for a walk. 15 -It's freezing outside! 18 -Why aren't you answering your phone? 29 -I can't find my glasses anywhere. 26 -They didn't tell me the meeting was canceled. 36 -He hasn't been in touch for over a month. 31 -You mustn't be late for work. 22 -I shouldn't have eaten so much! 24 -I think we're lost. 14 -You've contacted jan, haven't you? 27 +Do you think hell pass his driving test 32 +Ill see you next week. 17 +Im going for a walk. 15 +Its freezing outside 18 +Why arent you answering your phone 29 +I cant find my glasses anywhere. 26 +They didnt tell me the meeting was canceled. 36 +He hasnt been in touch for over a month. 31 +You mustnt be late for work. 22 +I shouldnt have eaten so much 24 +I think were lost. 14 +Youve contacted jan, havent you 27 Yes, i think we are. 15 -He's so handsome. 13 -She's very beautiful. 17 -They're such cute puppies! 21 -Here's the car i was telling you about. 30 -It's against the law! 16 +Hes so handsome. 13 +Shes very beautiful. 17 +Theyre such cute puppies 21 +Heres the car i was telling you about. 30 +Its against the law 16 I will finish that project later. 27 -You'll regret that! 15 -He should put on a coat or he'll get sick. 31 -You should come to the party! it'll be fun! 32 -She'll love her birthday present. 27 -We'll arrive there around 3 p.m. 24 -I've been to his house before. 23 -You've been trying to contact her for days. 34 -He's been looking for a job since he got fired. 36 -She's already told you once before! 28 -We've been wanting to visit for a long time. 34 -They've just arrived. 17 -She could've done it if she tried. 26 -I'd love to visit but the flights are too expensive. 41 -If you'd stop panicking you could do your job. 36 -She'd like to get a pet dog. 20 -We'd hate to upset you. 17 -They'd enjoy this if they could come. 29 -He'd be better off in a different city. 30 -You can't do that! 13 -They aren't coming to the party tonight. 32 -You shouldn't eat too much junk food. 29 -It isn't healthy to eat a lot of fast food either. 38 -He doesn't understand what you said. 29 -Mom, i didn't do it! 14 -The mail still hasn't come today. 26 -I won't be able to make it to the meeting. 31 -This wasn't a good idea. 18 -Luckily, we weren't hurt in the car accident. 36 +Youll regret that 15 +He should put on a coat or hell get sick. 31 +You should come to the party itll be fun 32 +Shell love her birthday present. 27 +Well arrive there around 3 p.m. 24 +Ive been to his house before. 23 +Youve been trying to contact her for days. 34 +Hes been looking for a job since he got fired. 36 +Shes already told you once before 28 +Weve been wanting to visit for a long time. 34 +Theyve just arrived. 17 +She couldve done it if she tried. 26 +Id love to visit but the flights are too expensive. 41 +If youd stop panicking you could do your job. 36 +Shed like to get a pet dog. 20 +Wed hate to upset you. 17 +Theyd enjoy this if they could come. 29 +Hed be better off in a different city. 30 +You cant do that 13 +They arent coming to the party tonight. 32 +You shouldnt eat too much junk food. 29 +It isnt healthy to eat a lot of fast food either. 38 +He doesnt understand what you said. 29 +Mom, i didnt do it 14 +The mail still hasnt come today. 26 +I wont be able to make it to the meeting. 31 +This wasnt a good idea. 18 +Luckily, we werent hurt in the car accident. 36 I am not interested in that kind of thing. 33 -Let's go to the mall. 15 -I'll better pay attention to it. 25 +Lets go to the mall. 15 +Ill better pay attention to it. 25 The doctor said it is. 17 -It's gets confused with its. 22 -You're getting confused with yours. 29 -They're getting confused with there and there. 38 -Aren't you caroline's friend? 23 -He'd walked twenty miles before he finally made it. 41 -I think it's going to snow on monday. 28 -It's been a long time since i last saw ben. 32 -It's a small world after all. 22 +Its gets confused with its. 22 +Youre getting confused with yours. 29 +Theyre getting confused with there and there. 38 +Arent you carolines friend 23 +Hed walked twenty miles before he finally made it. 41 +I think its going to snow on monday. 28 +Its been a long time since i last saw ben. 32 +Its a small world after all. 22 Nothing can take its place. 22 The bear carried its cub in its mouth. 30 The cat licked with its tongue. 25 -They're happy to see me. 18 -In my opinion, they're a fine group of athletes. 38 -I think they're very nice boys. 24 +Theyre happy to see me. 18 +In my opinion, theyre a fine group of athletes. 38 +I think theyre very nice boys. 24 Their address is 517 west maple. 26 -What is their phone number? 22 +What is their phone number 22 Their new home is in san diego. 24 There is a present on the table. 25 Look over there to see the ocean. 26 -I don't understand what you mean. 26 -She'll come over tomorrow. 21 -I could've gone to the football game. 29 -You shouldn't talk with your mouth full. 32 -Haven't you seen the movie yet? 24 -I'll be going on a plane. 18 -Sorry, i can't answer the phone right. 30 -I won't be home until thursday. 24 -She's gone to the bank already. 24 -They weren't in the kitchen. 22 -Billy wasn't eating any of the cake. 28 -I've already cleaned the dishes. 26 -We'd better not make too much noise. 28 -It's been a gloomy day. 17 -It'll be a sunny day tomorrow. 23 -She's playing games. 16 -He's waiting for the bus. 19 -They're eating mangoes. 19 +I dont understand what you mean. 26 +Shell come over tomorrow. 21 +I couldve gone to the football game. 29 +You shouldnt talk with your mouth full. 32 +Havent you seen the movie yet 24 +Ill be going on a plane. 18 +Sorry, i cant answer the phone right. 30 +I wont be home until thursday. 24 +Shes gone to the bank already. 24 +They werent in the kitchen. 22 +Billy wasnt eating any of the cake. 28 +Ive already cleaned the dishes. 26 +Wed better not make too much noise. 28 +Its been a gloomy day. 17 +Itll be a sunny day tomorrow. 23 +Shes playing games. 16 +Hes waiting for the bus. 19 +Theyre eating mangoes. 19 We will be joining you in springfield. 31 It is too cold to go swimming this morning. 34 She is quitting her job. 19 @@ -22393,7 +22393,7 @@ I am stuck at home. 14 Anna boat did not run badly. 22 Tom is very tall. 13 The race finished too quickly. 25 -Fortunately, anna saw eric's win. 27 +Fortunately, anna saw erics win. 27 The woman is quite pretty. 21 We will be slightly late for the meeting. 33 He smiled warmly. 14 @@ -22440,19 +22440,19 @@ I normally spend the summer holidays in canada. 39 His pay is high enough for him. 24 It is very hot today. 16 She reached above for one of the dishes. 32 -Let's travel abroad together. 24 +Lets travel abroad together. 24 He abruptly left the workshop. 25 She accidentally tore her shirt. 27 We will visit nairobi annually. 26 We can get lost anywhere together. 28 -Don't automatically rule out boston as a place to live. 44 -Let's wait a while before calling. 27 +Dont automatically rule out boston as a place to live. 44 +Lets wait a while before calling. 27 I badly wanted to learn these new concepts. 35 She barely knew him before she married him. 35 They wrote beautifully in calligraphy. 33 -Let's meet beforehand to discuss our strategy. 38 -I'd like to belatedly wish you a happy birthday. 38 -Don't fall below the class average. 28 +Lets meet beforehand to discuss our strategy. 38 +Id like to belatedly wish you a happy birthday. 38 +Dont fall below the class average. 28 He will act beneficially for both parties. 35 She spoke blandly about their trip to peru. 35 They fought bravely through the war. 30 @@ -22493,8 +22493,8 @@ Intellectually, she understood the conundrum. 40 Mitchell explained the tall tale interestingly. 41 I could not intuitively discern his meaning. 37 She irrevocably turned her back on him. 32 -Peter's payment is partially complete. 32 -He passionately preached this sunday's message. 40 +Peters payment is partially complete. 32 +He passionately preached this sundays message. 40 Priscilla has moved permanently to argentina. 39 The peonies pleasantly swayed in the breeze. 37 Ever since that day, his demeanor has profoundly changed. 48 @@ -22507,11 +22507,11 @@ She drove recklessly to the hospital to get to her father. 47 The detective relentlessly pursued the villain. 41 She subsequently received a parking ticket. 37 We remove the i and replace it with an apostrophe. 40 -If you don't get dressed soon we're going to be late! 40 +If you dont get dressed soon were going to be late 40 He brought her safely back to shore. 29 He was significantly older than she was. 33 They simultaneously pulled the desk and chair into the bedroom. 53 -I'm somewhat curious as to her motives. 31 +Im somewhat curious as to her motives. 31 The soldiers fought bravely. 24 She sat down. 10 This essay is well written. 22 @@ -22533,41 +22533,41 @@ I have almost finished. 19 Therefore they decided to boycott the meeting. 39 He was rather busy. 15 He is hence unable to refute the charge. 32 -Is he any good? 11 -When will you go to new york? 22 +Is he any good 11 +When will you go to new york 22 You are partly right. 17 -How long will you stay here? 22 +How long will you stay here 22 You are entirely wrong. 19 -How often does the committee meet? 28 -How did he behave? 14 +How often does the committee meet 28 +How did he behave 14 The children are playing in the garden. 32 -How far did he go? 13 -Don't throw things out of the window. 29 -Why did you resign? 15 +How far did he go 13 +Dont throw things out of the window. 29 +Why did you resign 15 The old man sat in the corner. 23 There was a very tall tree at the end of the garden. 40 The evening was bitterly cold. 25 -I couldn't help but laugh. 20 +I couldnt help but laugh. 20 I have never seen a more exciting cricket match. 39 This movie is very. 15 I am too annoyed to hear this. 23 He was so tired that he could barely stand. 34 -You must not waste your hard-earned money. 34 -Can you be there at 5 o'clock sharp? 27 +You must not waste your hardearned money. 34 +Can you be there at 5 oclock sharp 27 No one can write as neatly as he does. 29 -Don't speak to her so sharply. 23 +Dont speak to her so sharply. 23 I cannot by any means allow you to go. 29 It serves you right. 16 The fish tasted awful. 18 That arrangement suits me fine. 26 The problem looked difficult. 25 She was fatally injured in the accident. 33 -Which part of the movie did you like most? 33 +Which part of the movie did you like most 33 The ball hit me right on the nose. 26 The baby is sleeping soundly. 24 I hate arriving late. 17 I wrongly believed that you loved me. 30 -I usually go to bed at 10 o'clock. 25 +I usually go to bed at 10 oclock. 25 My friends are mostly vegetarians. 29 I have never been to the usa. 22 I watch english films occasionally. 30 @@ -22575,10 +22575,10 @@ I have been to australia just once. 28 They rarely go out. 15 I sometimes go for a walk in the park. 29 I was very impressed with her performance. 35 -My friends are mostly non-smokers. 28 +My friends are mostly nonsmokers. 28 I always take a bath before i go to bed. 30 He ran quickly. 12 -Will you wait here until i am ready? 28 +Will you wait here until i am ready 28 He is very clever. 14 I was not at home when he came to see me. 30 There is something wrong. 21 @@ -22587,7 +22587,7 @@ I sometimes think i should take a long break. 36 Perhaps her train is late. 21 You can see lots of flowers there. 27 He is seldom late for work. 21 -Have you ever wanted to run away? 26 +Have you ever wanted to run away 26 She is certainly the right person for the job. 37 The situation is very serious. 25 Otherwise can also be used as an ordinary adverb. 40 @@ -22613,9 +22613,9 @@ The town grew quickly after 1997. 27 He waited patiently for his mother to arrive. 37 He swam well despite being tired. 27 The rain fell hard during the storm. 29 -She quickly agreed to re-type the letter. 33 -She agreed quickly to re-type the letter. 33 -She agreed to re-type the letter quickly. 33 +She quickly agreed to retype the letter. 33 +She agreed quickly to retype the letter. 33 +She agreed to retype the letter quickly. 33 He quietly asked me to leave the house. 31 He asked me quietly to leave the house. 31 He asked me to leave the house quietly. 31 @@ -22625,14 +22625,14 @@ Slowly she picked up the knife. 25 Roughly he grabbed her arm. 22 I thought the movie ended abruptly. 29 Her outfit showcased her delightfully quirky personality. 50 -She truthfully answered the police officer's questions. 47 +She truthfully answered the police officers questions. 47 At the end of a long day, she wearily headed to bed. 40 April cheerfully greeted mark each morning. 37 The public library often holds meetings downstairs. 44 Jack looked everywhere for his missing keys. 37 She will plant her garden here. 25 We stayed in to watch a movie instead of attending the party. 49 -When it's hot and humid, anna likes to read inside. 40 +When its hot and humid, anna likes to read inside. 40 The children love to play outside. 28 I want to go fishing somewhere warm and sunny. 37 The gopher began burrowing underground. 34 @@ -22641,16 +22641,16 @@ She arrived early for the meeting. 28 When i bake, i make cookies first. 27 Before we leave on our road trip, we have to check the map. 46 I will meet after he finishes studying. 32 -Until anna buys bread, we can't make lunch. 34 +Until anna buys bread, we cant make lunch. 34 Everybody cursed her nevertheless, she did not come round. 49 When i was dating emma, i had an accident. 33 Colin will meet you after he finishes studying. 39 Although i generally prefer cats, i also like dogs. 42 Daniel is driving into town, and regina is taking the train. 49 -Until yolanda buys more bread, we can't make lunch. 41 +Until yolanda buys more bread, we cant make lunch. 41 Whoever wants to go fishing should come with us. 39 In class, we learned how bats use sonar to locate objects. 47 -Sam's biggest fear is that she will trip onstage. 39 +Sams biggest fear is that she will trip onstage. 39 I was wondering about what time we should leave. 39 He will give whoever wins the contest a special prize. 44 The real challenge is how we are going to satisfy our clients. 50 @@ -22661,7 +22661,7 @@ If sams to come along, she can meet us at the theatre. 42 The movie was better than i expected it to be. 36 There is no truth in what she says. 27 I am surprised at what step she has taken. 33 -Don't crave for what you cannot achieve. 32 +Dont crave for what you cannot achieve. 32 You must stick to what you have promised. 33 I want to know what help you expect to front me. 37 I want to ascertain whether you would accompany me. 42 @@ -22688,7 +22688,7 @@ She behaved as though she were annoyed. 32 I did according as i was directed. 27 I cannot say how far i am correct. 26 There were water and water as far as i could see. 38 -Can you tell me how long you will accompany me? 37 +Can you tell me how long you will accompany me 37 Since you recommend him, i am appointing him. 37 I regret that i could not see you on the appointed day. 43 Now that the sun has set, we should return home. 38 @@ -22696,7 +22696,7 @@ We cannot get first division unless we bum midnight oil. 46 He found that his cash was missing. 28 He is miserly though he is rich. 25 We must go although it is raining. 27 -Whatever you may say, i don't believe a word of it. 39 +Whatever you may say, i dont believe a word of it. 39 Even if she apologizes, i shall not visit her house. 42 She works hard, so that she may get a scholarship. 40 You eat that you may live. 20 @@ -22704,13 +22704,13 @@ We like the music that you brought. 28 Although she knew that it was dangerous. 33 Whoever gets the highest score goes first. 35 She cried because her seashell was broken. 35 -Whoever ate the last piece of pie owes me! 33 +Whoever ate the last piece of pie owes me 33 I took my lunch packet and boarded the bus. 34 Either you or your sister are haughty. 31 Neither a borrower nor a lender is. 28 Obey your teachers or you will repent. 31 Walk fast else you will not catch the bus. 33 -She is intelligent but slow-working. 30 +She is intelligent but slowworking. 30 She ran fast, yet she missed the train. 31 I am weak however, i shall carry your box. 33 She knows where you live. 20 @@ -22743,7 +22743,7 @@ Beth visits her grandfather whenever she is in town. 43 I graduated last year. 18 He is a wise man. 12 I like him. 8 -Can you do it? 10 +Can you do it 10 Do it please. 10 I read the whole story. 18 I want to buy a phone,. 17 @@ -22752,20 +22752,20 @@ I know the man who stole the watch. 27 He bought a car which was too expensive. 32 I know that he cannot do it. 21 He does not know where he was born. 27 -If you don't eat, i won't go. 20 +If you dont eat, i wont go. 20 He is a very talented player though he is out of form. 42 I want some cereal. 15 Rachel loves cats. 15 Joseph is a good soccer player. 25 When the president arrives. 23 -Because i can't wait for the bus. 25 +Because i cant wait for the bus. 25 As if he knew what was going to happen. 30 Then his sister can. 16 If you can work on sundays. 21 Until the sun sets. 15 While flowers continue to bloom. 27 Whenever you come to visit. 22 -Since i don't have enough money. 25 +Since i dont have enough money. 25 Although i had never considered it. 29 Unless you have the right size. 25 As the lights were dimming. 22 @@ -22786,7 +22786,7 @@ Who live by the ocean. 17 Why she said that. 14 Whomever you like. 15 How they would get there. 20 -Who let the cat out of the bag? 23 +Who let the cat out of the bag 23 What she anticipated. 18 Whatever makes you happy. 21 That you are listening. 19 @@ -22796,9 +22796,9 @@ Whoever shows up on time. 20 What the girl did was not very helpful. 31 The trophy goes to whoever wins the race. 33 While i was asleep, the cat knocked over the plant. 41 -Where is the ice cream that was in the freezer? 37 +Where is the ice cream that was in the freezer 37 The town where i was born is on the east coast. 36 -I can't figure out why she said that. 28 +I cant figure out why she said that. 28 We will do whatever is necessary. 27 Nero fiddled while rome burned. 26 You may play outside until the street lights come on. 43 @@ -22819,13 +22819,13 @@ He laughs best who laughs last. 25 I went to see what had happened. 25 He met a girl whose eyes were blue. 27 I shall remain where i am. 20 -I've eaten. 8 +Ive eaten. 8 The sale starts at 9 am. 18 -I didn't sleep well last night. 24 -Are you listening to the radio? 25 -What are those flowers? 19 +I didnt sleep well last night. 24 +Are you listening to the radio 25 +What are those flowers 19 No, business studies. 18 -Which ones? 9 +Which ones 9 The pink ones over there. 20 I see you. 7 He ran away. 9 @@ -22837,13 +22837,13 @@ The dog ate popcorn. 16 He ate popcorn. 12 The dog ate. 9 He ate at the fair. 14 -What did he do after? 16 -Since he ate popcorn, what? 22 -Then what? 8 +What did he do after 16 +Since he ate popcorn, what 22 +Then what 8 Jack has a large coffee stain on his shirt. 34 John is messy. 11 -Dad has been working hard all-day. 27 -Did mia bring coffee? 17 +Dad has been working hard allday. 27 +Did mia bring coffee 17 I am watching t.v this week. 21 Michael studied hard this year. 26 Every child liked an ice cream. 25 @@ -22877,7 +22877,7 @@ The police will find some clues. 26 The child will have been hungry. 26 I will have learned spanish this summer. 33 He will draw beautiful pictures. 27 -Why will she be crying? 18 +Why will she be crying 18 Paul will have answered the question correctly. 40 I had been marveling at your visit. 28 My father often had been reading me stories. 36 @@ -22915,26 +22915,26 @@ We began selling computers. 23 She took her children to school. 26 A nurse brought a little girl baby to the park. 37 A large trunk came around the corner. 30 -Did you play football last day? 25 +Did you play football last day 25 My brother drank a glass of milk 2 hours ago. 35 Amelia chose to stay with her father. 30 -She doesn't study german on monday. 28 -Does she live in london? 19 +She doesnt study german on monday. 28 +Does she live in london 19 She plays basketball. 18 We generally sing songs altogether. 30 We go to the gym club together. 24 -Do they talk a lot? 14 -Does she drink coffee? 18 +Do they talk a lot 14 +Does she drink coffee 18 We drink coffee every morning. 25 -She doesn't teach chemistry. 23 +She doesnt teach chemistry. 23 My sister works at the theatre. 25 -How often do you see george? 22 -They don't have any money. 20 +How often do you see george 22 +They dont have any money. 20 I am going to cook tonight. 21 -I will be twenty-seven in april. 25 +I will be twentyseven in april. 25 I will read the newspaper when i go to the bus station. 43 I will see you tomorrow, please wait for me. 35 -It won't be very cold next week. 24 +It wont be very cold next week. 24 She will meet with her best friends. 29 She will see her friend at the weekend. 31 They are going to dance. 19 @@ -22962,30 +22962,30 @@ I was given a free meal. 18 He was seen by fans at the airport. 27 This song has been sung by all nations. 31 I do not know the truth. 18 -She doesn't agree with me. 20 -They didn't arrive here yet. 22 -Do you want to have another one? 25 -Did he finish his homework? 22 -Do we need to keep going straight? 27 +She doesnt agree with me. 20 +They didnt arrive here yet. 22 +Do you want to have another one 25 +Did he finish his homework 22 +Do we need to keep going straight 27 I have been following you for a mile. 29 We have done a lot so far. 19 She had been the queen of the town. 27 -Did you have a conflict with that time? 31 +Did you have a conflict with that time 31 I must ask that you explain the reason. 31 -Does sam write all his reports? 25 -Terry is writing an e-mail to a client at the moment. 41 -The secretaries haven't written all the letters yet. 43 +Does sam write all his reports 25 +Terry is writing an email to a client at the moment. 41 +The secretaries havent written all the letters yet. 43 John has a large coffee stain on his shirt. 34 Jack always spilling things. 24 -Jack should have been more careful! 29 +Jack should have been more careful 29 John is taking john to the airport. 28 -Did mia bring the coffee? 20 -If he doesn't arrive on time, he'll have to take a later flight. 49 -Donna doesn't ski or roller skate. 27 +Did mia bring the coffee 20 +If he doesnt arrive on time, hell have to take a later flight. 49 +Donna doesnt ski or roller skate. 27 Unfortunately, our dinner has been eaten by the dog. 43 The bed was made as soon as i got up. 27 Dad has been working hard all day. 27 -We hope you don't have an accident on your way to school. 44 +We hope you dont have an accident on your way to school. 44 She was baking a pie for dessert. 26 Alberto is writing a message to his girlfriend. 39 He is doing it for fixing a date for them. 32 @@ -22997,10 +22997,10 @@ Now he is convincing her to go with him. 31 But she is not listening to his bluffs. 31 I am going to make a trip to south africa. 32 I have planned it just now. 21 -I don't want to waste this plan this time. 32 -Didn't i waste a lot of planned trips? 29 -Has emilia been planning to go on a trip to south africa? 45 -Do you want to go with her or do you want to go alone? 40 +I dont want to waste this plan this time. 32 +Didnt i waste a lot of planned trips 29 +Has emilia been planning to go on a trip to south africa 45 +Do you want to go with her or do you want to go alone 40 I would not go with her even if i had no other options. 42 Moreover, i will not go to south africa if she goes there. 46 I cannot bear her creepy attitude. 28 @@ -23012,9 +23012,9 @@ I could swim. 10 That could help. 13 I dare not attempt it. 17 You did not understand. 19 -Do you like it? 11 +Do you like it 11 They have understood. 18 -May i stay? 8 +May i stay 8 That may take place. 16 We might give it a try. 17 You must not mock me. 16 @@ -23040,7 +23040,7 @@ She had been studying before the incident. 35 She will have been studying for a month at that point. 43 Our dessert was eaten by the dog. 26 The phone will be disconnected tomorrow. 34 -A baby is god's opinion that life should go on. 36 +A baby is gods opinion that life should go on. 36 It is never too late to be what you might have been. 40 Well, either side could win it, or it could be a draw. 42 If you can dream it, you can do it. 26 @@ -23051,22 +23051,22 @@ You do the laundry. 15 We do the washing up. 16 They do yoga. 10 She does the cleaning. 18 -Do i know you? 10 -Do you live here? 13 -Do we have time? 12 -Do they come from vietnam? 21 -Does she drive to work? 18 +Do i know you 10 +Do you live here 13 +Do we have time 12 +Do they come from vietnam 21 +Does she drive to work 18 Are is used for them and us. 21 Was is used for the past tense of am and is. 33 Were is used for the past tense of you, we, and they. 41 You are indian. 12 They are excited. 14 She is cool. 9 -Am i in the right place? 18 -Are you my new boss? 15 -Are we nearly there? 16 -Are they the best players on the team? 30 -Is she old enough to go to bars? 24 +Am i in the right place 18 +Are you my new boss 15 +Are we nearly there 16 +Are they the best players on the team 30 +Is she old enough to go to bars 24 I have a dog. 9 You have something on your shirt. 27 We have seen it before. 18 @@ -23079,20 +23079,20 @@ Mia is in new york now, she may come tomorrow. 36 Emma is not here she might be outside. 30 Anna might go on a vacation this month. 31 Rachel has an exam she might be on the varsity now. 40 -How did he do it? 12 +How did he do it 12 He did most of his. 14 -I'm glad you did that. 16 +Im glad you did that. 16 So she did the same. 15 And since i did not. 15 -Did he know this? no. 15 -How did you put it? 14 +Did he know this no. 15 +How did you put it 14 No, but i did help. 14 He did a lot of good. 15 I did my pivot turn. 15 But he did not hurry. 16 So he did, but not me. 16 Tell me what he did. 15 -How did he do that? 14 +How did he do that 14 He did note that the. 16 As i did i took notes. 16 You know what you did. 17 @@ -23108,54 +23108,54 @@ She did not regret it. 17 He did not turn back. 16 Sam did not believe it. 18 And it does it an. 13 -What does it mean? 14 +What does it mean 14 And yet he does not. 15 I guess it does not. 15 Oh, he does have a. 14 -But does he buy it? 14 +But does he buy it 14 As it does not fit. 14 I wonder what it does. 17 It does not seem so. 15 And it does not miss it. 18 But he does not know. 16 -He does not know-how. 16 +He does not knowhow. 16 It does not have to. 15 -How does it work in? 15 +How does it work in 15 God does not like it. 16 It does not need to. 15 He does have an alibi. 17 -What does it say when? 17 +What does it say when 17 The one that does the. 17 -What harm does it do? 16 +What harm does it do 16 Yoga can and does help. 18 It does not mean that. 17 He does not believe me. 18 -Does he feel the same? 17 +Does he feel the same 17 But it does not teach. 17 A saint does not want. 17 Why me, why does this. 17 -What, if it does not? 16 -It does not move him! 16 +What, if it does not 16 +It does not move him 16 It does that to people. 18 But it does not matter. 18 No matter what he does. 18 -How will we see them? 16 +How will we see them 16 Rigidity does not work. 19 -How are you? what a. 14 +How are you what a. 14 But your mind does move. 19 How he wished that 11. 17 -Does it mean that past? 18 +Does it mean that past 18 See if it does any good. 18 You all by now, how. 15 -What does it say to me? 17 +What does it say to me 17 Well, err, everyone does. 21 You know how it is. 14 -How can i resist that? 17 +How can i resist that 17 No matter how hard he. 17 How one would teach it. 18 -How old is she then? 15 -How much is up to you? 16 -I don't know-how and. 15 +How old is she then 15 +How much is up to you 16 +I dont knowhow and. 15 It teaches us how to. 16 Let me see how it looks. 18 How little the fear of. 18 @@ -23165,25 +23165,25 @@ And i know how much. 15 My, how we have changed. 19 It must do this too. 15 Mike would not do that. 18 -So what can you do? 14 +So what can you do 14 We do more than obey. 16 That would have to do. 17 Because i think i do. 16 I would never do that. 17 -I couldn't do his job. 16 +I couldnt do his job. 16 I wish to do nothing. 16 But when you do have. 16 Do not bend your head. 17 -So what do you do if? 15 -What would you do? 14 +So what do you do if 15 +What would you do 14 Do your dirty work. 15 All he could do was nod. 18 Yes, that should do it. 18 -Do you hear that, love? 18 -What do you feed them? 17 -Or what do you think? 16 +Do you hear that, love 18 +What do you feed them 17 +Or what do you think 16 But i do repeat myself. 18 -He just couldn't do it. 17 +He just couldnt do it. 17 I run faster than david. 19 He does it well. 12 Olivia thinks about poetry. 23 @@ -23198,16 +23198,16 @@ John visited his friend for a while. 29 The dog ran across the yard. 22 Anna left in a hurry. 16 Harry yelled when she hit her toe. 27 -I'll play this song on my guitar. 25 +Ill play this song on my guitar. 25 He hit a home run in the last game. 26 -Will you help me with the laundry? 27 +Will you help me with the laundry 27 He rode his new bike around the block for hours. 38 The horse trotted along the trail. 28 We ate dinner then walked around the park. 34 -Did you fix the mistake in your homework? 33 +Did you fix the mistake in your homework 33 She waited for her friend at the mall. 30 She lay on the couch and slept there all night. 37 -Close the door! 12 +Close the door 12 The bird sings a cheery song every morning. 35 The roof on the house leaks. 22 The lightning struck the tree. 25 @@ -23216,32 +23216,32 @@ Tom accused me of lying. 19 Tom baked some muffins. 19 I bathe every day. 14 I bet you know french. 17 -Do you bind books? 14 +Do you bind books 14 We broke up. 9 Rabbits breed quickly. 19 We need to build a fire. 18 The spy burned the papers. 21 -I don't carry cash anymore. 21 -Let's catch a bite. 14 +I dont carry cash anymore. 21 +Lets catch a bite. 14 The mud clung to his shoes. 21 -I'm coming today. 13 +Im coming today. 13 The baby is crying. 15 John cut his finger. 16 -He didn't dare to speak to her. 23 +He didnt dare to speak to her. 23 I have to deal with it. 17 Mike has decided to live in france. 28 -I doubt if it'll snow. 16 +I doubt if itll snow. 16 Jack explored the amazon jungle. 27 We extended a hearty welcome to them. 30 I fell in the pool. 14 We just fed the baby. 16 -Don't fight with me. 15 +Dont fight with me. 15 I can find them. 12 The waiter gives me the menu. 23 -Let's go to eat. 11 +Lets go to eat. 11 We grind our coffee by hand. 22 Apples grow on trees. 17 -Don't you hang up on me? 17 +Dont you hang up on me 17 You made it happen. 15 I hate getting to the theatre late. 28 I have a car. 9 @@ -23250,7 +23250,7 @@ He ignored her advice. 18 The teacher will illustrate how to do it. 33 I can imagine how you felt. 21 Silence implies consent. 21 -We're not impressed. 16 +Were not impressed. 16 I need to improve my french. 22 Max seems to lack energy. 20 Megan is laughing. 15 @@ -23258,7 +23258,7 @@ Sam leads a quiet life. 18 He leaned on his elbows. 19 Children learn to creep ere they can go. 32 Lie back down. 11 -We've never met. 12 +Weve never met. 12 The snow is melted. 15 Their car overtook ours. 20 Sam owes me money. 14 @@ -23271,20 +23271,20 @@ You punch like a girl. 17 The police pursued the murderer. 27 She quits worrying about the problem. 31 Tom reacted appropriately. 23 -I didn't realize we were late. 23 +I didnt realize we were late. 23 We had to retain a lawyer. 20 I have decided to retire. 20 -You've got to get rid of it. 20 +Youve got to get rid of it. 20 No one says that. 13 Donna asked eric to scrub the toilet. 30 -Do you see that bird? 16 +Do you see that bird 16 I always seem to be unlucky at cards. 29 -I can't sell you that. 16 -They're sending help. 17 -I'm going to set the table. 20 +I cant sell you that. 16 +Theyre sending help. 17 +Im going to set the table. 20 The problem is not settled yet. 25 Emma is sewing baby clothes. 23 -Can you stand up? 13 +Can you stand up 13 Daniel started tipping the pea pods into a pan. 38 My watch was stolen. 16 David stuck to his job. 18 @@ -23296,14 +23296,14 @@ I will teach you how to swim. 22 I tore the picture out of the album. 28 I told him to come. 14 Rose tends to be late for school. 26 -I can't wait to see you. 17 +I cant wait to see you. 17 I have to wake tom up. 16 -Don't try to walk before you can crawl. 30 +Dont try to walk before you can crawl. 30 I want to watch tv. 14 -We've got to warn tom. 16 +Weve got to warn tom. 16 Jack washed his hands. 18 Joe waved her hand to me. 19 -Rachel wept over her child's death. 28 +Rachel wept over her childs death. 28 I accept your apology. 18 Mike accused me of lying. 20 Anna achieved remarkable results. 29 @@ -23317,37 +23317,37 @@ He was embarrassed to admit making a mistake. 37 I liked your idea and adopted it. 26 He adores his grandfather. 22 He advised applying at once. 23 -I can't afford to spend any more money this week. 38 -Why did you agree to meet her in the first place? 38 +I cant afford to spend any more money this week. 38 +Why did you agree to meet her in the first place 38 We aim to increase the speed of delivery. 33 -Swimming isn't allowed here. 23 +Swimming isnt allowed here. 23 She announced her intention to retire. 32 -I didn't anticipate having to do the cooking myself! 42 -You don't have to apologize. 22 +I didnt anticipate having to do the cooking myself 42 +You dont have to apologize. 22 Jack appears to be tired today. 25 Anna applied for a leave of absence. 29 I appreciate having trouble with his supervisor. 41 She approached him with a smile on her face. 35 -I don't think mike would approve. 26 -I don't want to argue with you. 23 -Have you arranged to meet mark this weekend? 36 +I dont think mike would approve. 26 +I dont want to argue with you. 23 +Have you arranged to meet mark this weekend 36 We arrived home late. 17 Historians frequently ask to consult the collection. 45 -I assume bravo didn't show up. 23 +I assume bravo didnt show up. 23 I assure you mike will be perfectly safe. 33 I was astonished by his ignorance. 28 You need to attach your photo to the application form. 44 -Are you going to attempt to pass the exam? 33 +Are you going to attempt to pass the exam 33 She attends school at night. 23 Donna certainly attracted a lot of attention. 38 David awoke at daybreak. 20 Sam baked some muffins. 19 He is immature. 12 -You can't beat me. 13 +You cant beat me. 13 John became very sick. 18 I beg to differ with you. 19 The leaves begin to fall when autumn comes. 35 -I believe you're right. 18 +I believe youre right. 18 This bicycle belongs to me. 22 Lie flat and let your knees bend. 26 I got bitten by mosquitoes. 22 @@ -23361,29 +23361,29 @@ We broadcast news on the hour. 24 John burst into the room. 20 I will buy a lot of candies for you. 27 A computer can calculate very rapidly. 32 -Can you give me a ring at about 10? 26 -Would you care to join us for dinner? 29 -We're celebrating max's birthday. 27 +Can you give me a ring at about 10 26 +Would you care to join us for dinner 29 +Were celebrating maxs birthday. 27 Every day is beautiful if you choose to see it. 37 Max chopped down the tree that was in our front yard. 42 This diet claims to eliminate toxins from the body. 42 John climbed the mountain. 22 -David didn't commit those crimes. 27 -I can't communicate with anna as i used to. 33 +David didnt commit those crimes. 27 +I cant communicate with anna as i used to. 33 They compared the new car with the old one. 34 I competed with him for the first prize. 32 John complained about the weather. 29 He completed drawing his pictures. 29 -I'm concerned for anna's safety. 25 +Im concerned for annas safety. 25 The report has yet to be confirmed. 28 We hope you will consent to act in his stead. 35 A soccer team consists of eleven players. 34 -You'd better consult your doctor. 27 +Youd better consult your doctor. 27 This box contains five apples. 25 -I'm not convinced of that. 20 +Im not convinced of that. 20 The pizza will then take about twenty minutes to cook. 44 -It'll cost about 10,000 yen. 22 -We're counting on you. 17 +Itll cost about 10,000 yen. 22 +Were counting on you. 17 Max crawled into bed just before midnight. 35 I have to create a new website. 24 We crept toward the enemy. 21 @@ -23392,13 +23392,13 @@ He has decided to live in france. 26 She deferred writing my thesis. 26 Big companies often delay paying their bills. 38 Letters are delivered every day. 27 -I demand to know what's going on. 25 +I demand to know whats going on. 25 She denied taking the money. 23 -I can't depend on you anymore. 23 -John can't describe how painful it was. 31 -They didn't deserve to win. 21 +I cant depend on you anymore. 23 +John cant describe how painful it was. 31 +They didnt deserve to win. 21 We all desire success. 18 -John's house was destroyed by a hurricane. 34 +Johns house was destroyed by a hurricane. 34 I am determined to carry out this plan. 31 Swimming develops our muscles. 26 My opinion differs from yours. 25 @@ -23411,30 +23411,30 @@ John learned to dive when he was five. 30 I had to drag him out of bed. 21 I dreamt about you. 15 They intended to drill for oil. 25 -Can i have something to drink? 24 +Can i have something to drink 24 He drives a truck. 14 He earns three times more than me. 27 -You can't eat your cake and have it. 27 +You cant eat your cake and have it. 27 I want to emphasize this point in particular. 37 His wealth enables him to do anything. 31 John encouraged mary to learn how to speak french. 41 We used to be engaged. 17 -Can we enhance the image? 20 +Can we enhance the image 20 I enjoy talking to you. 18 -This medicine will ensure you a good night's sleep. 41 +This medicine will ensure you a good nights sleep. 41 This review procedure entails repeating the test. 42 He entered the room. 16 The school was established in 1650. 29 The doctor examined the patients. 28 -I don't believe such things to exist. 29 +I dont believe such things to exist. 29 The workers are expanding the road. 29 -What time do you expect to arrive home? 31 -They're experimenting with a new car. 30 +What time do you expect to arrive home 31 +Theyre experimenting with a new car. 30 I can explain everything. 21 He explored the amazon jungle. 25 I fail to comprehend their attitude. 30 He finished cleaning the kitchen. 28 -This coat doesn't fit me. 19 +This coat doesnt fit me. 19 Sam wishes he could fly. 19 Mike and mia folded up the flag. 25 We must follow the rules of the game. 29 @@ -23450,8 +23450,8 @@ The cup fell and broke. 18 Emily loved spending time with her aunt nancy in paris. 45 Buick and jeep are two important carmakers. 36 The person threw the rock across the yard. 34 -My dog, oreo, jumped in the air and caught the ball! 41 -Can you smell the soup, john? 23 +My dog, oreo, jumped in the air and caught the ball 41 +Can you smell the soup, john 23 Love and friendship are equally important. 36 Your mind can know a million things. 29 There are five dogs in the street. 27 @@ -23469,8 +23469,8 @@ New york city is one of the grandest cities in the world. 45 The air in the countryside and the city is clean and fresh. 47 All knowledge is a good thing. 24 Florida has mostly warm weather in the winter. 38 -The light's color is red. 19 -The country's flag has blue stripes. 29 +The lights color is red. 19 +The countrys flag has blue stripes. 29 John is nice. 10 Rose is a good dancer. 17 That man is a scoundrel. 19 @@ -23485,7 +23485,7 @@ I read a book yesterday. 19 David is a practicing buddhist. 26 I ate curry for lunch. 17 I do not have a cat. 14 -They're making a lot of noise out there. 31 +Theyre making a lot of noise out there. 31 I need a holiday. 13 An ass can carry heavy loads. 23 I think an animal is in the garage. 27 @@ -23493,9 +23493,9 @@ We are looking for an apartment. 26 An unusual problem. 16 Jack is an irishman. 16 That animal over there is an elephant. 31 -No, it isn't an emu. 14 +No, it isnt an emu. 14 Daniel is an honorable man. 22 -Could you shut the door? 19 +Could you shut the door 19 The police have caught the thief. 27 The maid is on leave. 16 The norwegian blue parrot has beautiful plumage. 41 @@ -23504,71 +23504,71 @@ The boy sitting next to me raised his hand. 34 Thank you for the advice you gave me. 29 The theory of relativity. 21 The gun is in his closet. 19 -It's the postcard that i have in my office. 33 +Its the postcard that i have in my office. 33 The dog is very friendly. 20 She is going to select the furniture that she needs. 42 We are going to see the statue of liberty this weekend. 44 -Have nice day! 11 +Have nice day 11 My office is at model town. 21 My favourite sport is cricket. 25 I am interested to join army. 23 I have brother and sister. 21 Come in and stay a while. 19 Its nice to see you. 15 -It's pleasure to see you again. 24 +Its pleasure to see you again. 24 Good seeing you again. 18 Please come into the living room. 27 Right this way. 12 -I'm friend of Maria. 15 -Can you hold? 10 -City hall. what department please? 28 +Im friend of Maria. 15 +Can you hold 10 +City hall. what department please 28 Shraa is my cousin sister. 21 -Sorry I'm a bit busy right now. 23 +Sorry Im a bit busy right now. 23 You have many gratitude. 20 -You always making me smile! 22 -Should I call doctor? 17 -I've got a new lease in life. 21 -Would you like a glas of water? 24 +You always making me smile 22 +Should I call doctor 17 +Ive got a new lease in life. 21 +Would you like a glas of water 24 I still have to go back to the doctor for a follow up. 41 May i be frank. 11 Get to the heart of matter. 21 -That's not at issue. 15 -That's different ball of wax. 23 -That's a horse of different colour. 28 -Where's you head? 13 -That gall! 8 -Could you repeat please? 20 -That's little outside my budget. 26 +Thats not at issue. 15 +Thats different ball of wax. 23 +Thats a horse of different colour. 28 +Wheres you head 13 +That gall 8 +Could you repeat please 20 +Thats little outside my budget. 26 It was buy one, get one free. 22 I got two the price of one. 20 You pay a lot more in other place. 26 It was a quite cheap. 16 -What is going to be last price? 24 +What is going to be last price 24 Lets meet in the middle. 19 -Can i pay online payment? 20 +Can i pay online payment 20 I am looking for your best price. 26 -What texts are required? 20 -Tell about your background? 23 -What are your weakness? 19 -What are your strong point? 22 -What are your salary expectation? 28 -Where do you see yourself in 5 years from now? 36 +What texts are required 20 +Tell about your background 23 +What are your weakness 19 +What are your strong point 22 +What are your salary expectation 28 +Where do you see yourself in 5 years from now 36 Who is the most inspiring person in your life. 37 Do you have any question for me. 25 I have two year of experience in computers. 35 -What is the difference between confidence and over confidence? 53 -Well that's it from me. thanks a lot. 27 -Not now! 6 +What is the difference between confidence and over confidence 53 +Well thats it from me. thanks a lot. 27 +Not now 6 Begin now. 8 He wanted to get good grades in school. 31 -I'll trade you my cards for yours. 26 -Which cakes shall we bake today? 26 +Ill trade you my cards for yours. 26 +Which cakes shall we bake today 26 The car had to brake hard. 20 The earthquake made the ground shake. 31 Some of the team were late for the game. 31 The flame flickered. 17 The picture frame is made of silver. 29 -Would you like a grape? 18 +Would you like a grape 18 I had to chase my dog through the field. 31 I accidentally dropped the plate. 28 My brother can skate. 17 @@ -23583,7 +23583,7 @@ Max has sap and an axe 17 The man had a nap on a pad. 19 Eye for eye and tooth for tooth. 25 A bad thing never dies. 18 -Lying rides upon debt's back. 23 +Lying rides upon debts back. 23 You cannot lose what you never had. 28 Fire and water have no mercy. 23 This jacket is just my size. 22 @@ -23593,10 +23593,10 @@ His life had reached its natural term. 31 We have a representative sample. 27 Thought is the seed of action. 24 I hate to see animals suffering. 26 -Well, what did she actually say? 26 +Well, what did she actually say 26 She wrote an essay on my family. 25 Perhaps the letter will come today. 29 -It's exactly half past five. 22 +Its exactly half past five. 22 Mathematics is her favorite subject. 31 Please leave a contact address. 26 The program is a cinch to install. 27 @@ -23606,42 +23606,42 @@ No answer is also answer. 20 Truth will stand without a prop. 26 All is not at hand that helps. 23 He is the cleverest boy in the class. 29 -Can i take a bath? 13 -The vet came to the dog's aid just in time. 32 -Tom's aim is to score 10 goals this season. 33 +Can i take a bath 13 +The vet came to the dogs aid just in time. 32 +Toms aim is to score 10 goals this season. 33 He paid the fare for the train journey. 31 -You never fail to amaze me! 21 +You never fail to amaze me 21 The postman delivered the mail. 26 -What time does the ferry set sail? 27 -Dad tripped over the dog's tail. 25 +What time does the ferry set sail 27 +Dad tripped over the dogs tail. 25 The snail left a trail on the path. 27 Call this number to claim your prize. 30 -We don't want to live near the main road. 31 +We dont want to live near the main road. 31 I have a slight pain in my neck. 24 There was a broken link in the chain. 29 The chocolate cake is nicer than the plain cake. 39 His blood made a dark red stain on the carpet. 36 I have been under a lot of strain. 26 -How much longer do we have to wait? 27 +How much longer do we have to wait 27 The sports therapist studied my gait. 31 I like to use different colours when i paint. 36 His voice was very faint. 20 My skirt is tight around my waist. 27 -I bet you haven't slept yet. 21 +I bet you havent slept yet. 21 Get some rest. 11 -When will you be ready? 18 +When will you be ready 18 He spends ten dollars a day. 22 My head is on my neck. 16 The floor is wet again. 18 -He said could you check if you have a pen? 32 -Let's pet the cat. 13 +He said could you check if you have a pen 32 +Lets pet the cat. 13 Ken bet meg ten pens. 16 The red bag fell on the men. 21 The net sack has a wet hem. 20 Deb has a fat vet. 13 Jeff set the hen in a mess on the bed. 28 Tess led meg to the end of the deck. 27 -Jed isn't well yet, Let jed rest. 25 +Jed isnt well yet, Let jed rest. 25 The bad hens quack and peck. 22 Jeff set the net on the end of the deck. 30 A thief will steal these jeeps. 25 @@ -23650,11 +23650,11 @@ The beam is seen by the wet team. 25 Hold the reins lightly. 19 A vein carries blood to the heart. 27 The bride wore a long white veil. 26 -The country prospered under the king's reign. 37 +The country prospered under the kings reign. 37 I heard the horse neigh from the stable. 32 Weigh the ingredients carefully. 28 The sleigh was pulled by reindeer. 28 -I get to work at eight o'clock. 23 +I get to work at eight oclock. 23 The freight was loaded onto the ship. 30 To win the cake you must guess its weight. 33 Their new neighbor was very kind. 27 @@ -23667,13 +23667,13 @@ The dancer twists and turns. 23 She was an excellent rider. 22 Will is the fastest runner in the school. 33 The teacher gave me good advice. 26 -My brother's daughter is my niece. 27 +My brothers daughter is my niece. 27 The arrested man asked for a lawyer. 29 The writer won a prestigious prize. 29 I managed to control my anger. 24 He was reluctant to answer my question. 32 -When will you be able to deliver my order? 33 -There's a tall tree at the center of the park. 35 +When will you be able to deliver my order 33 +Theres a tall tree at the center of the park. 35 This flask holds one liter of juice. 29 We need fiber for a healthy diet. 26 Kim sat in the big rig. 17 @@ -23697,24 +23697,24 @@ That nice dog might bite. 20 The wide mile is right for mike. 25 Mike might rise at nine. 19 A plant grows from a seed. 20 -I'm not sure if this is a weed or a flower. 31 +Im not sure if this is a weed or a flower. 31 She hoped a plaster would stop the bleed. 33 A tear rolled down my cheek. 22 I feel hungry at lunch time. 22 -Have you ever been to Spain ? 22 +Have you ever been to Spain 22 A deep shade of red is often referred to as crimson. 41 The sheep were let loose in the field. 30 -Can you steer the boat? 18 +Can you steer the boat 18 There was a sweet floral scent to the air. 33 My laptop screen has gone blank. 26 -Bob's wedding speech was very funny. 29 +Bobs wedding speech was very funny. 29 You can freeze the video at any time. 29 An alley runs between the houses. 27 I like to sprinkle some chocolate on my coffee. 38 -Do you agree with what i am saying? 27 +Do you agree with what i am saying 27 The first American settlers had pioneer spirit. 40 We called an engineer to fix the computers. 35 -Would you like to volunteer at the library? 35 +Would you like to volunteer at the library 35 A chimpanzee is an intelligent ape. 29 I hope the boat floats. 18 Joan votes in Rome. 15 @@ -23723,9 +23723,9 @@ He can make a bowl with coal and foam. 29 Joe will loan the foal to joan. 24 The foal will moan when it is alone. 28 Go home and soak a load. 18 -Joan will quote Joe's note. 21 +Joan will quote Joes note. 21 I hope Joan will go to rome. 21 -Nope! i won't throw the toad! 21 +Nope i wont throw the toad 21 Hot love is soon cold. 17 I have told you twenty times. 23 I hope you in the roll. 17 @@ -23734,18 +23734,18 @@ This is a mould of pudding. 21 Hold fast when you have it. 21 All that glitters is not gold. 24 He kept pigs and poultry. 20 -Get him on the blower at once! 23 +Get him on the blower at once 23 She is singing in the chorus. 23 The lining of my coat is torn. 23 No man is born wise. 15 The knife has a horn handle. 22 Every rose has its thorn. 20 -Will you boil the kettle for tea? 26 +Will you boil the kettle for tea 26 They wrapped the sandwiches in foil. 30 This garden soil is good quality. 27 -Please don't spoil the game by cheating. 32 +Please dont spoil the game by cheating. 32 He began to toil up the hill. 22 -The coin featured the monarch's profile. 33 +The coin featured the monarchs profile. 33 The musician had to audition to join the band. 37 Loin of lamb is a very tender meat. 27 Your elbow is a hinge joint. 22 @@ -23754,7 +23754,7 @@ He used a hoist to lift the weight. 27 You need a new joist fitted above that door. 35 This chocolate cake is very moist. 28 There is a good choice of food in the canteen. 36 -Did you hear that strange noise? 26 +Did you hear that strange noise 26 Fish is a healthy food. 18 I could see from his smile that he was in a good mood. 41 The mosque has a dome on the roof. 26 @@ -23765,7 +23765,7 @@ The big drum made a loud boom. 23 He peered into the gloom. 20 The spoon was silver. 17 She will arrive soon. 17 -Would you like a scoop of ice cream? 28 +Would you like a scoop of ice cream 28 I heard the hoot of an owl. 20 They had a lovely walk on the moor. 27 The film received poor reviews. 26 @@ -23777,8 +23777,8 @@ He tried not to look into the bright light. 34 We cook in the kitchen. 18 I had to crouch down to pick up the book. 31 A kangaroo keeps its baby in a pouch. 29 -Don't slouch on the chair. 20 -Can you count to ten? 16 +Dont slouch on the chair. 20 +Can you count to ten 16 They set out to climb mount everest. 29 Jim drew us a plan of his new house. 27 The grouse is a bird sometimes shot for food. 36 @@ -23800,14 +23800,14 @@ You have to duck down here. 21 She tied her hair in a bun. 20 The corner pub is quite good. 23 Tall trees catch much wind. 22 -It's almost time for lunch. 21 +Its almost time for lunch. 21 This cell phone sure is hot stuff. 27 -Can you undo this knot? 18 +Can you undo this knot 18 Sometimes gain is to lose. 21 Muck and money go together. 22 Just untie my hands. 16 The last mile is all uphill. 22 -Don't make fun of me. 15 +Dont make fun of me. 15 Love is the mother of love. 21 This is a color television. 22 Vanity is the food of fools. 22 @@ -23815,67 +23815,67 @@ No fool like an old fool. 19 No man cool calls back yesterday. 27 Suit the action to the word. 22 She drove straight into the pool. 27 -Don't shoot the messenger. 21 -What do you think about? 19 -What's your opinion about? 21 -Do you think? 10 -How do you feel about? 17 -May i ask you? 10 -In your opinion? 13 +Dont shoot the messenger. 21 +What do you think about 19 +Whats your opinion about 21 +Do you think 10 +How do you feel about 17 +May i ask you 10 +In your opinion 13 Please tell me your opinion on. 25 -What's your opinion on ? 18 -Do you have an opinion on? 20 -Do you have any opinions on? 22 -In your experience? 16 -What's your view on? 15 -Would you agree that? 17 -Can you give me your thoughts on? 26 -Do you approve of? 14 -Do you agree with the opinion that? 28 -Do you have any views on? 19 -If i asked your opinion about? 24 -If i said? 7 -I'd like your views on. 17 -I'm sure you'd agree that. 19 -What are your feelings about? 24 -What are your views on? 18 -Could you explain to me? 19 -Could someone please tell me? 24 -Just tell me the reason why? 22 -I don't really understand? 21 -I just don't see why. 15 -Are you saying that? 16 -I beg your pardon? 14 -I didn't quite get that. excuse me, did you say that? 40 -Do you have an idea? 15 -Is it right what i've done? 20 -I just don't see why? 15 -Are you aware of? 13 -Would you support the view that? 26 -What's your take on? 15 -When you say, do you mean? 20 +Whats your opinion on 18 +Do you have an opinion on 20 +Do you have any opinions on 22 +In your experience 16 +Whats your view on 15 +Would you agree that 17 +Can you give me your thoughts on 26 +Do you approve of 14 +Do you agree with the opinion that 28 +Do you have any views on 19 +If i asked your opinion about 24 +If i said 7 +Id like your views on. 17 +Im sure youd agree that. 19 +What are your feelings about 24 +What are your views on 18 +Could you explain to me 19 +Could someone please tell me 24 +Just tell me the reason why 22 +I dont really understand 21 +I just dont see why. 15 +Are you saying that 16 +I beg your pardon 14 +I didnt quite get that. excuse me, did you say that 40 +Do you have an idea 15 +Is it right what ive done 20 +I just dont see why 15 +Are you aware of 13 +Would you support the view that 26 +Whats your take on 15 +When you say, do you mean 20 In my view. 8 As far as i can see. 14 -As far as i'm concerned. 18 +As far as im concerned. 18 It seems to me that. 15 -Well, i'd say. 10 +Well, id say. 10 If you want my opinion. 18 You can take it from me that. 22 -First of all i'd like point out. 24 -First to start with i'd like point out. 30 +First of all id like point out. 24 +First to start with id like point out. 30 What we have to decide is. 20 There can be no doubt that. 21 -It's a fact that. 12 +Its a fact that. 12 Nobody will deny that. 18 The way i see it everyone knows. 25 The way as i see it everyone knows. 27 Let me put it this way. 17 Let me put it another way. 20 -Let's get this clear. 16 +Lets get this clear. 16 Sorry to interrupt you, but. 23 -The point i'm trying to make is. 24 +The point im trying to make is. 24 Personally speaking i think. 24 -I'm absolutely convinced that. 25 +Im absolutely convinced that. 25 My view is that. 12 My point of view is that. 19 The way i look at it is this. 21 @@ -23884,10 +23884,10 @@ What i actually meant was. 21 I have seen that. 13 I have noticed that. 16 I have observed that. 17 -I just don't think it's right that. 26 +I just dont think its right that. 26 One argument is favour of. 21 I think have the right to. 20 -Look, it's like this. 16 +Look, its like this. 16 What i mean is. 11 The reason for this is. 18 The main problem is. 16 @@ -23895,120 +23895,120 @@ Just let me explain. 16 Well, the reason is. 16 Well, the thing is. 15 Above all we must keep in mind that. 28 -What's you opinion about? 20 -What do you think about it? 21 -Do you agree with me? 16 +Whats you opinion about 20 +What do you think about it 21 +Do you agree with me 16 The reason for. 12 One possible explanation is that. 28 -What's responsible for this effect is. 31 +Whats responsible for this effect is. 31 Let me explain. 12 -There's no doubt in my mind. 21 +Theres no doubt in my mind. 21 It could well be that. 17 I agree completely. 16 I agree entirely. 14 I entirely agree with you on that. 27 I completely agree with you on that. 29 -You're so right. 12 +Youre so right. 12 I think so, too. 12 -I don't think so either. 18 -That's just my feeling. 18 -That's just my opinion. 18 -That's just how i see it, too. 22 -That's just how i feel about it, too. 28 -That's very good point. 18 -You've got a good point there. 23 +I dont think so either. 18 +Thats just my feeling. 18 +Thats just my opinion. 18 +Thats just how i see it, too. 22 +Thats just how i feel about it, too. 28 +Thats very good point. 18 +Youve got a good point there. 23 Yes, of course. 12 Yes, absolutely marvellous. 24 Yes, definitely. 14 -That's exactly what i mean. 21 -That's exactly what i say. 20 -Yes, that's obvious. 16 -That's exactly how i see it. 21 -That's what i think. 15 +Thats exactly what i mean. 21 +Thats exactly what i say. 20 +Yes, thats obvious. 16 +Thats exactly how i see it. 21 +Thats what i think. 15 How very true. 11 Yes, indeed. 10 -I'm all in favor of what you've been saying. 33 +Im all in favor of what youve been saying. 33 Yes, i agree. 10 I think so too. 11 -That's a good point. 15 +Thats a good point. 15 Neither do i. 10 That is logical. 13 -I can't argue with that. disagree. 26 -I'm not sure about that. 18 +I cant argue with that. disagree. 26 +Im not sure about that. 18 The problem with that is. 20 -But don't you feel that point. 23 +But dont you feel that point. 23 Yes, perhaps, but. 15 Yes, possibly, although. 21 Yes, but on the other hand. 21 Yes, in a way. 10 Maybe, i suppose so. 16 Well, it depends. 14 -I don't think it's as simple as that. 27 -I see what you mean, but i think that's not the whole story. 46 +I dont think its as simple as that. 27 +I see what you mean, but i think thats not the whole story. 46 You may be right there. 18 -Yes, but there's also another aspect to consider. 40 +Yes, but theres also another aspect to consider. 40 There is no doubt about it that. 25 I simply must agree with that. 24 I am of the same opinion. 19 I am of the same opinion as. 21 I completely agree with. 20 There are many reasons for. 22 -I disagree with you, i'm afraid. 25 -No, i really can't agree, i'm afraid. 28 -I don't quite agree there. 20 -I'm not so certain all sure if that's true. 32 -I'm not so sure. 11 -I'm sorry i can't agree. 17 -Do you really think so that? 22 -Do you really believe that? 22 -I'm not convinced that. 18 -Well, that's one way of looking at it, but, i have my doubts that. 51 -You can't really mean that. 21 -You don't really mean that, do you? 27 -I wouldn't say so. 13 -I don't think you're right. 20 -I don't think that's right. 20 -Surely you don't mean that? 21 -I don't want to argue with you, but. 27 -I can't go all the way with you on that point. 34 -Are you seriously suggesting that? 29 -I have my problems with what you're saying. 34 -I can't quite understand how. 23 -I've come to complain about. 22 -I'm disappointed with i'm fed up with. 29 +I disagree with you, im afraid. 25 +No, i really cant agree, im afraid. 28 +I dont quite agree there. 20 +Im not so certain all sure if thats true. 32 +Im not so sure. 11 +Im sorry i cant agree. 17 +Do you really think so that 22 +Do you really believe that 22 +Im not convinced that. 18 +Well, thats one way of looking at it, but, i have my doubts that. 51 +You cant really mean that. 21 +You dont really mean that, do you 27 +I wouldnt say so. 13 +I dont think youre right. 20 +I dont think thats right. 20 +Surely you dont mean that 21 +I dont want to argue with you, but. 27 +I cant go all the way with you on that point. 34 +Are you seriously suggesting that 29 +I have my problems with what youre saying. 34 +I cant quite understand how. 23 +Ive come to complain about. 22 +Im disappointed with im fed up with. 29 It really is terrible that. 22 -I'm sorry i have to say this, but. 25 +Im sorry i have to say this, but. 25 Forgive me for mentioning it, but. 28 -That's what i want to know. 20 -Are you aware that? 15 -I'm disappointed to hear that. 24 -What are you going to do about it? 26 +Thats what i want to know. 20 +Are you aware that 15 +Im disappointed to hear that. 24 +What are you going to do about it 26 Something ought to be done about it. 29 Look, i really must protest about. 28 -Can't something be done to. 21 +Cant something be done to. 21 I really must apologize for this. 27 -Well, there's nothing we can do about that, i'm afraid. 43 -This isn't my fault, you know. 23 -What do you expect me to do? 21 -I'll find out what has happened. 25 -I'm sorry you should take it that way. 29 -I'll see what i can do. 16 +Well, theres nothing we can do about that, im afraid. 43 +This isnt my fault, you know. 23 +What do you expect me to do 21 +Ill find out what has happened. 25 +Im sorry you should take it that way. 29 +Ill see what i can do. 16 You know what i think, i think that. 28 The point is. 10 As i see it. 8 The way i see it is. 14 I sometimes think that. 19 -Wouldn't you say that? 17 -Wouldn't you agree that? 19 -I'd just like to say that. 19 -Well, i've heard that. 17 -Don't you think it's right to say that? 29 -It's my feeling that. 16 +Wouldnt you say that 17 +Wouldnt you agree that 19 +Id just like to say that. 19 +Well, ive heard that. 17 +Dont you think its right to say that 29 +Its my feeling that. 16 I tend to think that. 16 I think that. 10 I am sure that. 11 I believe that. 12 -I don't feel. 9 +I dont feel. 9 In my experience. 14 I would suggest that. 17 I am certain that. 14 @@ -24021,42 +24021,42 @@ According to me. 13 In my eyes. 8 From my perspective. 17 From my view point. 15 -I'd like to point out that. 20 +Id like to point out that. 20 Generally it is thought that. 24 Well, it is considered that. 23 It is generally accepted that. 25 My impression is that. 18 It goes without saying that. 23 I hold the view that. 16 -I'm of the opinion that. 18 -No, that's not what i'm trying to say. 28 -No, that's not what i mean. 20 -All i'm saying is that. 17 +Im of the opinion that. 18 +No, thats not what im trying to say. 28 +No, thats not what i mean. 20 +All im saying is that. 17 I was thinking exactly that myself. 29 -Ok, let's do that. 13 -Yes, let's do that. 14 -That's a good idea. 14 -It's a good idea, but. 16 -But what if? 9 -I'm not sure i understand your point. 29 -I'm sorry, could you repeat that? 26 -What do you mean by? 15 -Could you give me an example? 23 +Ok, lets do that. 13 +Yes, lets do that. 14 +Thats a good idea. 14 +Its a good idea, but. 16 +But what if 9 +Im not sure i understand your point. 29 +Im sorry, could you repeat that 26 +What do you mean by 15 +Could you give me an example 23 Maybe, but it seems to me that. 24 I partly agree, but i still believe that. 33 -I don't agree, in my opinion. 22 +I dont agree, in my opinion. 22 I completely disagree. to me. 23 -I'd say the exact opposite. 21 -That's not always the case. 21 -No, i'm not so sure about that. 23 -That's an interesting point. 23 -I've never really thought about that. 30 +Id say the exact opposite. 21 +Thats not always the case. 21 +No, im not so sure about that. 23 +Thats an interesting point. 23 +Ive never really thought about that. 30 Um, let me think. 13 -It's hard to say. 12 +Its hard to say. 12 Just a minute. 11 Wait, what about. 14 -Can we just pause a second? 21 -Let's see. 7 +Can we just pause a second 21 +Lets see. 7 One quick thing. 13 Just one thing. 12 Just let me say. 12 @@ -24071,7 +24071,7 @@ From my personal perspective. 25 From my personal standpoint. 24 From my prospective. 17 From my standpoint. 16 -From where i'm sitting. 18 +From where im sitting. 18 I am of the opinion that. 19 I conclude that. 13 I feel that. 9 @@ -24079,8 +24079,8 @@ I have observed. 13 I hold the belief that. 18 I maintain that. 13 I would argue that. 15 -I'll state my view. 14 -I'm unconvinced that. 17 +Ill state my view. 14 +Im unconvinced that. 17 If i may opine. 11 If i may outline a response. 22 If you were to ask me. 16 @@ -24097,68 +24097,68 @@ Everybody knows that. 18 According to scientists. 21 The research seems to suggest. 25 Apparently she was wrong. 21 -I've heard that. 12 -I'm afraid i have to disagree. 23 -I'm sorry to disagree with you, but. 28 -That's not entirely true. 20 +Ive heard that. 12 +Im afraid i have to disagree. 23 +Im sorry to disagree with you, but. 28 +Thats not entirely true. 20 With due respect, i believe it would be wrong to. 39 With due respect, i would only partly agree to that. 42 -I feel it wouldn't be right to. 23 +I feel it wouldnt be right to. 23 Though i agree with. it seems to me that. 31 -That's partly true, but. 19 +Thats partly true, but. 19 I see your point, but. 17 Well, you could be right. 20 Yes, ok, but perhaps. 17 To some extent, i agree with you, but. 30 It sounds interesting, but. 23 -That's true, but. 13 +Thats true, but. 13 Me too, but. 9 That seems obvious, but. 20 -I accept what you're saying but. 25 +I accept what youre saying but. 25 It is only partly true that. 22 I can agree with that only with reservations. 37 That is not necessarily so. 22 It is not as simple as it seems. 24 Under certain circumstances. 25 -Let's go on to another point. 22 -Next, let's talk about. 18 -Let's talk about that late. 21 +Lets go on to another point. 22 +Next, lets talk about. 18 +Lets talk about that late. 21 I see your point, but i think. 23 Yes, i understand, but my opinion is that. 34 -That's all very interesting, but the problem is that. 43 -I'm afraid i can't quite agree with your point. 36 -I think i've got your point, now let me respond to it. 41 -I can see what you're saying. here's my reply. 34 -We can see what you're saying. here's my reply. 35 -I'm sorry to interrupt, but you've misunderstood our point. 48 -Excuse me, but that's not quite correct. 32 +Thats all very interesting, but the problem is that. 43 +Im afraid i cant quite agree with your point. 36 +I think ive got your point, now let me respond to it. 41 +I can see what youre saying. heres my reply. 34 +We can see what youre saying. heres my reply. 35 +Im sorry to interrupt, but youve misunderstood our point. 48 +Excuse me, but thats not quite correct. 32 Sorry, i just have to disagree with your point. 38 Let me just respond to that, please. 29 Forgive me for interrupting, but i must respond to that. 46 -Hold on a moment, that's not correct. 29 +Hold on a moment, thats not correct. 29 If you would allow me to add a comment here. 34 We pointed out that. 16 Our opponents have claimed that. 27 The first point i would like to raise is this. 36 Our position is the following. 25 -Here's the main point i want to raise. 29 -I'd like to deal with two points here. the first is. 39 -I'm sorry to interrupt, but. 22 -What do you reckon? 15 -Any thoughts on? 13 -Are people right in thinking? 24 -Are you in agreement with? 21 -Do you have any particular views on? 29 -Do you have any thoughts on? 22 -From your point of view? 19 +Heres the main point i want to raise. 29 +Id like to deal with two points here. the first is. 39 +Im sorry to interrupt, but. 22 +What do you reckon 15 +Any thoughts on 13 +Are people right in thinking 24 +Are you in agreement with 21 +Do you have any particular views on 29 +Do you have any thoughts on 22 +From your point of view 19 I know this is not your specialist subject, but. 39 -I know you haven't had long to think about this. 37 -I know you haven't had much time to think about this, but. 45 -I'd be interested to hear your views on. 31 -What are your thoughts on? 21 -What would be your reaction if i said? 30 -What's your position on? 19 -Would it be right to say? 19 +I know you havent had long to think about this. 37 +I know you havent had much time to think about this, but. 45 +Id be interested to hear your views on. 31 +What are your thoughts on 21 +What would be your reaction if i said 30 +Whats your position on 19 +Would it be right to say 19 My position is the following. 24 Let me just retake my position. 25 Just to be clear, here is what i mean. 29 @@ -24167,27 +24167,27 @@ I think. 6 As far as i know. 12 Well, if you ask me. 15 If you want my honest opinion. 24 -I've never come across the idea that. 29 -To draw to a close i'd like to say that. 29 +Ive never come across the idea that. 29 +To draw to a close id like to say that. 29 To have the final say in the matter. 28 -To crown it all i'd like to say that. 27 -Let's have a final look at. 20 +To crown it all id like to say that. 27 +Lets have a final look at. 20 It only remains for me to say. 23 I would like to sum up the chief points. 31 All things considered, the obvious conclusion to be drawn is that. 55 All in all, it is evident. 20 -To draw to the conclusion i'd like to say that. 36 +To draw to the conclusion id like to say that. 36 But right now our attention turns to. 30 -Now, let's look at the situation in. 28 -And now let's turn to. 16 +Now, lets look at the situation in. 28 +And now lets turn to. 16 I think what we can hope to do now is. 28 What is likely to happen is. 22 -Let's move to another point. 22 +Lets move to another point. 22 Now it is going to be pleasure to explain to you. 38 That reminds me of. 15 Something similar happened to me. 28 I know exactly what you mean. 23 -Where were we? 11 +Where were we 11 Anyway, you were saying. 20 So as i was saying. 14 There is another side to this. 24 @@ -24195,8 +24195,8 @@ There are 2 ways of looking at this. 28 There are different view of. 23 It would be a mistake to think that. 28 It is not a final word on the matter. 28 -It doesn't necessarily mean that. 27 -Well, there's been a debate about this. 31 +It doesnt necessarily mean that. 27 +Well, theres been a debate about this. 31 I take a different view at. 21 Many people oppose the viewpoint that. 32 My honest opinion would be that. 26 @@ -24207,20 +24207,20 @@ Is it okay if i add something here. 27 If i may interrupt, i would like to add that. 35 Excuse me for interrupting, but. 27 Let me jump in. 11 -Do you mind if i jump in here? 22 -Can i jump in here? 14 -Do you mind if i come in here? 22 -I don't mean to intrude, but. 22 -I don't mean to be rude, but. 21 -May i interject? 13 -Would you mind explaining that a little more, please? 44 -Could you explain that more fully? 28 -Could you tell us a bit more about that? 31 -Could you please? 14 -Could you possibly tell me? 22 -I'd really appreciate it if you could. 30 -I'd be very grateful if you could. 26 -If possible, i'd like to know about. 28 +Do you mind if i jump in here 22 +Can i jump in here 14 +Do you mind if i come in here 22 +I dont mean to intrude, but. 22 +I dont mean to be rude, but. 21 +May i interject 13 +Would you mind explaining that a little more, please 44 +Could you explain that more fully 28 +Could you tell us a bit more about that 31 +Could you please 14 +Could you possibly tell me 22 +Id really appreciate it if you could. 30 +Id be very grateful if you could. 26 +If possible, id like to know about. 28 In other words. 12 To put it another way. 17 Let me try that again. 17 @@ -24228,15 +24228,15 @@ Let me start over. 14 Let me explain that again. 21 Let me restate that. 16 Let me start that again. 19 -Well, maybe, but i'm not sure about that. 32 -He maybe correct but i'm not sure. 26 -I can see your point, but i'm not sure i agree. 35 -You don't suppose he wants to escape, do you? 35 -It doesn't appear that the situation will improve. 41 +Well, maybe, but im not sure about that. 32 +He maybe correct but im not sure. 26 +I can see your point, but im not sure i agree. 35 +You dont suppose he wants to escape, do you 35 +It doesnt appear that the situation will improve. 41 As a matter of fact. 15 -Well, i'm not sure that is true because. 31 -I'm afraid you're missing the point. 28 -I don't think that has anything do with the goal of our discussion. 53 +Well, im not sure that is true because. 31 +Im afraid youre missing the point. 28 +I dont think that has anything do with the goal of our discussion. 53 I have doubt whether. 17 This is in complete contradiction to. 31 What is even worse. 15 @@ -24246,18 +24246,18 @@ What i object to is. 15 Unlike i think. 12 There is more to it than that. 23 The problem is that. 16 -Why don't we. 9 +Why dont we. 9 How about. 8 I suggest that we. 14 -Let's revise. 10 -How about going? 13 -Why don't we go? 11 -Couldn't we? 9 -Shall we? 7 -What would you say to? 17 -Does it matter if we? 16 -Would you like to? 14 -Let's go to. 8 +Lets revise. 10 +How about going 13 +Why dont we go 11 +Couldnt we 9 +Shall we 7 +What would you say to 17 +Does it matter if we 16 +Would you like to 14 +Lets go to. 8 Do you fancy. 10 We might as well. 13 Actually, what i meant was. 22 @@ -24269,39 +24269,39 @@ Ok. that makes sense. 16 You are absolutely right. 21 I feel the same. 12 Absolutely correct. 17 -I totally agree! 13 -Tell me about it! 13 -I couldn't agree more! 17 -Me too! 5 +I totally agree 13 +Tell me about it 13 +I couldnt agree more 17 +Me too 5 I was actually trying to suggest that. 31 I was actually trying to say that. 27 I was actually trying to explain that. 31 -Let's see if i can explain myself better. 32 +Lets see if i can explain myself better. 32 Let me try to explain that another way. 31 -I'm sorry but that is out of the question. 32 +Im sorry but that is out of the question. 32 Unfortunately that is not possible. 30 -No, let's not. 10 -Well, i'd rather. 13 -I don't feel like it. 15 +No, lets not. 10 +Well, id rather. 13 +I dont feel like it. 15 I dislike going for a walk. 21 -What an awful idea! 15 -I'm not sure about that idea. 22 -I'd love to but. 11 -I don't think it will work. 20 -I'm not very keen on. 15 -I have a point i'd like to make. 23 -I'd like to add something here. 24 -I'd like to say something about your idea. 33 -Sorry, i'm not quite sure what you mean. 31 -Do you mean that? 13 -I'm sorry, i don't quite follow. 24 -I don't quite understand what you're saying. 35 +What an awful idea 15 +Im not sure about that idea. 22 +Id love to but. 11 +I dont think it will work. 20 +Im not very keen on. 15 +I have a point id like to make. 23 +Id like to add something here. 24 +Id like to say something about your idea. 33 +Sorry, im not quite sure what you mean. 31 +Do you mean that 13 +Im sorry, i dont quite follow. 24 +I dont quite understand what youre saying. 35 In conclusion, the purpose of this discussion. 39 The goal of our discussion is to. 26 We have concluded that. 19 Thank you once more for your help in this matter. 39 I look forward to seeing you soon. 27 -I'm looking forward to your reply. 27 +Im looking forward to your reply. 27 We hope that we may continue to rely on your valued custom. 47 We look forward to a successful working relationship in the future. 56 Please advise as necessary. 23 @@ -24315,13 +24315,13 @@ Should you need any further information, please do not hesitate to contact me. 6 Please contact me if there are any problems. 36 Let me know if you need anything else. 30 Drop me a line if i can do anything else for you. 37 -What's your opinion of? 18 -You're asking the wrong person. 25 -It doesn't affect me. 16 -That's an interesting question. 26 -That's all from me. 14 +Whats your opinion of 18 +Youre asking the wrong person. 25 +It doesnt affect me. 16 +Thats an interesting question. 26 +Thats all from me. 14 I think you get the idea. 19 -I think i've made my point. 20 +I think ive made my point. 20 And so on. 7 Thank you for listening. 20 Thank you for your kind attention. 28 @@ -24330,51 +24330,51 @@ Thanks again for. 14 Thanks for your time. 17 I need to hand over to my colleague. 28 I seem to have run out of time. 23 -I think i've covered everything. 26 -I'm afraid i've already overrun my allotted time, so. 42 -I'm sure you are all ready for lunch, so. 31 -I've already gone on for too long, so. 29 -Let's leave it there. 16 +I think ive covered everything. 26 +Im afraid ive already overrun my allotted time, so. 42 +Im sure you are all ready for lunch, so. 31 +Ive already gone on for too long, so. 29 +Lets leave it there. 16 That brings me to the end of my presentation. 36 That is the end of my presentation. 28 -That's about it. 12 +Thats about it. 12 I got it. thank you. 14 Ah, i see. thanks for clarifying. 26 Now i understand. thanks a lot. 24 -You're the best. 12 -I'm humbled and grateful. 20 -You knocked me off my feet! 21 +Youre the best. 12 +Im humbled and grateful. 20 +You knocked me off my feet 21 My heart is still smiling. 21 Your thoughtfulness is a gift i will always treasure. 44 Sometimes the simplest things mean the most. 37 The banana bread was fabulous. you made my day. 37 -I'm touched beyond words. 20 +Im touched beyond words. 20 Many thanks. 10 -It's very kind of you. 16 -Are you sure? 10 -Are you sure about it? 17 -Are you certain about it? 20 -Do you think it is true? 18 -Do you think so? 12 -How sure are you? 13 +Its very kind of you. 16 +Are you sure 10 +Are you sure about it 17 +Are you certain about it 20 +Do you think it is true 18 +Do you think so 12 +How sure are you 13 Yes, i am certain. 14 I have no doubt about it. 19 -I'm sure about it. 13 -I don't think there can be any doubt about. 33 -I'm positive. 10 -I'm quite sure about it. 18 -I'm no doubt about it. 16 -I'm absolutely certain that. 23 -I'm not sure about it. 16 +Im sure about it. 13 +I dont think there can be any doubt about. 33 +Im positive. 10 +Im quite sure about it. 18 +Im no doubt about it. 16 +Im absolutely certain that. 23 +Im not sure about it. 16 I doubt it. 8 -I'm not really sure about. 20 -I don't know for sure. 16 -It's very unlikely. 15 +Im not really sure about. 20 +I dont know for sure. 16 +Its very unlikely. 15 I have my own doubts. 16 -I don't believe this is true. 22 -There's some doubt in my mind that. 27 -I'm not a hundred percent sure. 24 -I don't know yet. 12 +I dont believe this is true. 22 +Theres some doubt in my mind that. 27 +Im not a hundred percent sure. 24 +I dont know yet. 12 Can i add something here. 20 Is it ok if i jump in for a moment. 25 If i may interrupt. 15 @@ -24387,69 +24387,69 @@ Excuse me for a second, but. 22 May i say something here. 20 Sorry to cut you off, but. 20 Well, that reminds me that. 22 -So, you're telling me. 17 +So, youre telling me. 17 Well, if that is the case. 20 Wait a minute. 11 I see what you are getting at, but. 27 I agree up to a point, but. 20 You could say that, however. 23 -That's out of question. 18 -Well, i don't quite agree with you. 27 +Thats out of question. 18 +Well, i dont quite agree with you. 27 I find that very difficult to accept. 30 There is no way i could agree with that. 31 -No, i'm not sure about that because. 28 +No, im not sure about that because. 28 I am shraa. 8 I come from maharashtra. 20 There are seven people in my family. 29 -I'm 30 now. 7 -I'm a student at college. 19 -Where were you born? 16 -Do you have any siblings? 20 +Im 30 now. 7 +Im a student at college. 19 +Where were you born 16 +Do you have any siblings 20 This is one of the most beautiful places i have been visited. 49 I can relax there. 14 In my free time, i like to watch a movie. 31 I can express myself and communicate in english. 40 I have a husband. 13 -I'm not ready for a serious relationship. 33 -I'm in a relationship. 17 -I'm a happily married man. 20 -I haven't found what i'm looking for. 28 -I'm still looking for one. 20 +Im not ready for a serious relationship. 33 +Im in a relationship. 17 +Im a happily married man. 20 +I havent found what im looking for. 28 +Im still looking for one. 20 My school is famous. 16 I aim to become a doctor. 19 I get up early at 5 a.m. 16 I like to play cricket daily. 23 I have the habit of saving money. 26 I am a vegetarian. 14 -I won't watch t.v. during examinations. 30 +I wont watch t.v. during examinations. 30 Our school is the best in the city. 27 Likewise. 8 Hello, everyone my self shraa. 25 Hey raj, meet shraa he is our team leader. 33 Shraa, raj is a new employee in the office. 34 He is from gujarat. 15 -May i know your good name, please? 27 -What is your good name? 18 +May i know your good name, please 27 +What is your good name 18 This is shraa before you. 20 -What's your first name? 18 -What's your middle name? 19 -What's your last name? 17 +Whats your first name 18 +Whats your middle name 19 +Whats your last name 17 My last name is shraa. 17 I am shraa, i have been working here since 2005. 38 -What's your opinion on? 18 -Oh! after a long time. 16 +Whats your opinion on 18 +Oh after a long time. 16 Glad to see you. 12 What a pleasant surprise. 21 Good to see you here. 16 Good to have you. 13 Nice to see you after a long time. 26 Good to see you after a long time. 26 -It's my pleasure meeting you. 23 +Its my pleasure meeting you. 23 Finally, you are here. 18 -It's amazing meeting you. 20 +Its amazing meeting you. 20 Please have a seat. 15 -How was your journey? 17 -How was your flight? 16 +How was your journey 17 +How was your flight 16 Welcome to my place. 16 Welcome to our place. 17 You can stay as much as you want. 25 @@ -24457,236 +24457,236 @@ I was excited to see you. 19 I was excited to meet you. 20 Quickly come inside. 17 You surprised me. 14 -I'm delighted. 11 +Im delighted. 11 You surprised us. 14 You delighted us. 14 Come soon. 8 -What will you have? 15 -Do you want some tea? 16 -Do you want some coffee? 19 -I'll make a tea. 11 -I'll make a coffee. 14 +What will you have 15 +Do you want some tea 16 +Do you want some coffee 19 +Ill make a tea. 11 +Ill make a coffee. 14 Give me your luggage. 17 Keep that heavy luggage aside. 25 -Wanna take bath? 13 +Wanna take bath 13 Long time no see. 13 You are becoming below the moon. 26 Take your seat. 12 Have your seat. 12 -All well at home? 13 -How things are going on? 19 -How is your life going on? 20 -What are you doing now a day? 22 -What would you like to take? 22 +All well at home 13 +How things are going on 19 +How is your life going on 20 +What are you doing now a day 22 +What would you like to take 22 Anything will do. 14 You will have to take to something. 28 -You haven't taken anything. 22 -I'm sorry for being late. i missed the train. 34 -I'm sorry. i'll check with the kitchen right now. 37 -It's my mistake. 12 +You havent taken anything. 22 +Im sorry for being late. i missed the train. 34 +Im sorry. ill check with the kitchen right now. 37 +Its my mistake. 12 I apologize for disrupting your dinner. 33 I apologize for the delay in sending this. 34 He will never apologize, nor explain. 31 I apologize to my sister. 20 I apologize for the error. 21 You have nothing to apologize for. 28 -You're right! i was wrong about that one. sorry. 36 -It's my fault, dad. 14 -Oh! i'm sorry about that. i'll take care of it. 33 +Youre right i was wrong about that one. sorry. 36 +Its my fault, dad. 14 +Oh im sorry about that. ill take care of it. 33 I apologize for bothering you. 25 I must apologize to dulce. 21 I apologize at the outset for my judgments. 35 -I'm sorry for the inconvenience. how can i help? 37 -Well, i'm sorry you're upset. 22 -I'm sorry about the broken vase. 25 +Im sorry for the inconvenience. how can i help 37 +Well, im sorry youre upset. 22 +Im sorry about the broken vase. 25 Please forgive me, ms. stone. i made a mistake. 36 I apologize if i am being too direct. 29 -I'm sorry i forgot your birthday. can you forgive me? 41 -I'm sorry. 7 -Sorry, jim. can i call you back in a few hours? 35 -I'm so sorry, ned. we have to let you go. 29 -Could i ask who's calling, please? 27 -May i speak to mr. smith? 18 +Im sorry i forgot your birthday. can you forgive me 41 +Im sorry. 7 +Sorry, jim. can i call you back in a few hours 35 +Im so sorry, ned. we have to let you go. 29 +Could i ask whos calling, please 27 +May i speak to mr. smith 18 I just wanted to ask if you need any more articles. 40 -I think he's into me. i'm kind of into him too. 33 +I think hes into me. im kind of into him too. 33 Our relationship is strictly platonic. 33 He asked me out. 12 -We've hooked up. 12 -We're seeing each other. it's nothing serious, though. 43 -We're dating. 10 +Weve hooked up. 12 +Were seeing each other. its nothing serious, though. 43 +Were dating. 10 This is my boyfriend. 17 This is my girlfriend. 18 -Scott and i just got engaged! 23 -I'm happily married, with two kids, a boy, and a girl. 42 -I am through with him! 17 +Scott and i just got engaged 23 +Im happily married, with two kids, a boy, and a girl. 42 +I am through with him 17 My wife and i are separated. 22 -We're getting divorced. 19 +Were getting divorced. 19 He and i are divorced. 17 She is widowed. 12 -Do you understand what i mean? 24 -Are we on the same page? 18 -Am i being clear? 13 -Is this clear? 11 -Get it? 5 -Got it? 5 -I was clear? 9 -Please tell me what you heard? 24 -What message did you hear? 21 -I'll have a hamburger, please. 24 -Sorry, i am a bit busy right now. let me know when you're available. 52 +Do you understand what i mean 24 +Are we on the same page 18 +Am i being clear 13 +Is this clear 11 +Get it 5 +Got it 5 +I was clear 9 +Please tell me what you heard 24 +What message did you hear 21 +Ill have a hamburger, please. 24 +Sorry, i am a bit busy right now. let me know when youre available. 52 I have a few concerns. 17 To be honest, this needs some improvement. 35 -I'd prefer to use different colors in this design. 40 +Id prefer to use different colors in this design. 40 I would like a single room for saturday. 32 -Can you tell me the way to the post office, please? 40 -Excuse me, do you know what platform the london train goes from? 52 -Would you give me a coffee, please? 28 -Could you step out of the room for a moment? 34 -May i borrow your pen for a moment? 27 -Could you send me those documents? 28 -What did you say your name was? 24 +Can you tell me the way to the post office, please 40 +Excuse me, do you know what platform the london train goes from 52 +Would you give me a coffee, please 28 +Could you step out of the room for a moment 34 +May i borrow your pen for a moment 27 +Could you send me those documents 28 +What did you say your name was 24 I wondered if you had time to meet tomorrow. 35 I wanted to ask a question about the agenda. 35 I thought you might like some help with the deadline. 43 -That estimate is a bit high, don't you think? 35 -Shouldn't we consider how the client might respond? 42 +That estimate is a bit high, dont you think 35 +Shouldnt we consider how the client might respond 42 I would love to but i have to work late that night. 39 -Unfortunately, he isn't available. 29 -I'm afraid we can't change the date of the meeting next week. 47 -I'm sorry to say that your proposal has not been approved. 46 +Unfortunately, he isnt available. 29 +Im afraid we cant change the date of the meeting next week. 47 +Im sorry to say that your proposal has not been approved. 46 With respect, i have to disagree with you. 34 -I'm unable to meet you tomorrow. i'm sorry. 32 -Let's talk about that later. 22 -Thanks! you're awesome for thinking of me. 33 -Thanks a bunch! i need an extra dose of caffeine right now! 46 -What a thoughtful gift. i appreciate this! 34 -I don't know what to say. thank you. 26 -That's very kind of you. thank you. 26 -I can't thank you enough. i need a night off. 33 -I'm so thankful for friends like you. 29 +Im unable to meet you tomorrow. im sorry. 32 +Lets talk about that later. 22 +Thanks youre awesome for thinking of me. 33 +Thanks a bunch i need an extra dose of caffeine right now 46 +What a thoughtful gift. i appreciate this 34 +I dont know what to say. thank you. 26 +Thats very kind of you. thank you. 26 +I cant thank you enough. i need a night off. 33 +Im so thankful for friends like you. 29 All i can say is thanks. 18 -I'm so grateful. 12 +Im so grateful. 12 Hats off to you. 12 -I'll pay you back. 13 -I'll get you back. 13 +Ill pay you back. 13 +Ill get you back. 13 Thanks for coming to my party. 24 -I'm grateful for your time. 21 -I'm thankful for your friendship. 27 -I'm truly grateful that you believed in this project. 43 +Im grateful for your time. 21 +Im thankful for your friendship. 27 +Im truly grateful that you believed in this project. 43 I feel blessed to have such great coworkers. 36 -I don't even have the words to thank you. 31 +I dont even have the words to thank you. 31 You have my deepest gratitude. 25 You have my utmost respect. 22 Nearly all the riders were young, good looking and in fantastic shape. 58 The school is considered excellent. 30 -That's remarkable. 15 -Good grades! 10 -That looks awesome! 16 -Kudos on the great work! 19 +Thats remarkable. 15 +Good grades 10 +That looks awesome 16 +Kudos on the great work 19 You look great. 12 You look phenomenal. 17 The dress looks stunning. 21 -What a lovely necklace! 19 -I like your shirt-where did you get it? 30 +What a lovely necklace 19 +I like your shirtwhere did you get it 30 I love your new shoes. 17 You look very good in that suit. 25 This tie looks nice on you. 21 That color looks great on you. 24 You look very handsome. 19 -You're looking very beautiful today. 30 +Youre looking very beautiful today. 30 I like your new haircut. 19 You have a lovely voice. 19 -Wow, you look hot! 14 +Wow, you look hot 14 Cool glasses, totally suit you. 26 I love your haircut. it makes you look like a movie star. 44 -Wow! you're great at delivering a pep talk! 33 -You can argue. that was an amazing debate! 33 -You're an awesome dancer. 20 -It's a mesmerizing performance. keep it up. 34 -You sure can play table tennis. great skills! 36 +Wow youre great at delivering a pep talk 33 +You can argue. that was an amazing debate 33 +Youre an awesome dancer. 20 +Its a mesmerizing performance. keep it up. 34 +You sure can play table tennis. great skills 36 I love the way you play guitar. 24 You have some special talent. 24 -Nice car! is it yours? 16 -Your camera is superb. that's nice! 27 +Nice car is it yours 16 +Your camera is superb. thats nice 27 You have a lovely home, jack. 23 I love what you have done with the place. 32 -Where did you get that lovely table? 29 -I love the decor. did you do it yourself? 31 +Where did you get that lovely table 29 +I love the decor. did you do it yourself 31 The dish is delicious. 18 This soup is very tasty. 19 -Great pasta! it's finger-licking good. 30 -Did you make this from scratch? 25 -You've got to give me the recipe for this chicken dish! 43 +Great pasta its fingerlicking good. 30 +Did you make this from scratch 25 +Youve got to give me the recipe for this chicken dish 43 The cherry pie is out of this world. 28 This is the best sandwich i ever had. 29 -That was delicious. my compliments to the chef! 38 -She's darn cute. 12 +That was delicious. my compliments to the chef 38 +Shes darn cute. 12 What a cute and cuddly baby. 22 -Oh, what an adorable face! 21 -Your children are very well-behaved. 30 +Oh, what an adorable face 21 +Your children are very wellbehaved. 30 Your daughter is a smart cookie. 26 -She's a well-mannered kid. 20 +Shes a wellmannered kid. 20 I happened to hear about your health. 30 -If you want to talk, i'm here to listen. 30 +If you want to talk, im here to listen. 30 I heard about your diagnosis. 24 -I hope i'm not overstepping by mentioning it. 36 -I just wanted to let you know i'm here to help your family with anything at all. 62 -How are you feeling? 16 -If there's anything i can do for you, let me know. i'm here for you. 50 -I'm going to keep bugging you. 23 +I hope im not overstepping by mentioning it. 36 +I just wanted to let you know im here to help your family with anything at all. 62 +How are you feeling 16 +If theres anything i can do for you, let me know. im here for you. 50 +Im going to keep bugging you. 23 Just give me my marching order. 25 You are in my prayer. 16 I wish you a quick recovery. 22 -What's your point. 14 +Whats your point. 14 Explain me. 9 There is no point in the discussion. 29 -Are you getting my point? 20 -Don't make an issue. 15 -I don't know about that. 18 +Are you getting my point 20 +Dont make an issue. 15 +I dont know about that. 18 Let me talk. 9 Let me speak. 10 -It's irrelevant. 13 -Don't go out off the track. 20 +Its irrelevant. 13 +Dont go out off the track. 20 Make yourself clear. 17 My boss and i are not on the same page. 29 You got the wrong end of the stick. 27 -We must have got our wires crossed! 28 -I can't make heads or tails of this. 27 +We must have got our wires crossed 28 +I cant make heads or tails of this. 27 I seem to have lost the thread of what you were saying. 43 It beats me why anyone would shout. 28 -Please don't muddy the waters by telling me. 35 +Please dont muddy the waters by telling me. 35 I have no clue about what to prepare. 29 -I'm not sure he'll win, but anything's possible. 37 +Im not sure hell win, but anythings possible. 37 In all probability, they will lose their jobs. 38 -The chances are we'll have moved house by then. 37 -It's a safe bet that tom will discover our secret. 39 -I'm sure. 6 +The chances are well have moved house by then. 37 +Its a safe bet that tom will discover our secret. 39 +Im sure. 6 I do not doubt that. 15 I hate to interrupt but i wanted to let you know i have to leave the meeting early. 65 -I'm so sorry to interrupt but it's urgent. 32 -I'm so sorry for interrupting but i'd like to make sure i understood you correctly. 66 -May i add something quickly? 23 -I'm sorry to interrupt but i have to be somewhere in an hour. 47 +Im so sorry to interrupt but its urgent. 32 +Im so sorry for interrupting but id like to make sure i understood you correctly. 66 +May i add something quickly 23 +Im sorry to interrupt but i have to be somewhere in an hour. 47 Sorry for interrupting, but i want to make sure i understand. 50 -Sorry to interrupt, but you're needed in the lobby to sign for a package. 58 -Just a moment, i'd like to give you more information. 42 -Before you move on, i'd like to say something. 36 -Sorry, could you explain that a little more? 36 -Could you clarify that? 19 +Sorry to interrupt, but youre needed in the lobby to sign for a package. 58 +Just a moment, id like to give you more information. 42 +Before you move on, id like to say something. 36 +Sorry, could you explain that a little more 36 +Could you clarify that 19 Do you mean that. 13 -Would you tell us a little bit more about that? 37 -Would you mind explaining that a little more? 37 +Would you tell us a little bit more about that 37 +Would you mind explaining that a little more 37 You always have something negative too. 33 You are hurting my feeling. 22 Why are you telling me this. 22 -Do you enjoy being rude? 19 +Do you enjoy being rude 19 I appreciate your perspective. 26 I think we should stop this conversation now. 37 -That's not a very productive comment, is it? 35 -I'm sorry but i'm not sure that i understand. 34 -Sorry, i'm not sure that i know what you mean. 35 -Sorry but i don't quite follow you. 27 -I got it. thank you! 14 +Thats not a very productive comment, is it 35 +Im sorry but im not sure that i understand. 34 +Sorry, im not sure that i know what you mean. 35 +Sorry but i dont quite follow you. 27 +I got it. thank you 14 The family left india with genuine regret. 35 The mood became one of gloom and despondency. 37 I have dissatisfaction with this new dress. 36 @@ -24698,7 +24698,7 @@ I wish i had a better job. 19 I wish i had been hired for that job. 28 If only i understood math. 21 If only i had asked her to marry me. 27 -That's so disappointing! 20 +Thats so disappointing 20 We had high hopes for her. 20 You should have faith in me. 22 You should believe me. 18 @@ -24706,16 +24706,16 @@ Have confidence in me. 18 You gotta trust me. 15 I need you to trust me. 17 You must believe me. 16 -I swear that's the truth. 19 -Don't you believe me? 16 -You know, i don't fake. 17 -You know that i don't lie. 19 -Will i do this to you? 16 -I think you don't know me, isn't it? 26 -You know i'm trustworthy. 20 +I swear thats the truth. 19 +Dont you believe me 16 +You know, i dont fake. 17 +You know that i dont lie. 19 +Will i do this to you 16 +I think you dont know me, isnt it 26 +You know im trustworthy. 20 You should leave that on me. 22 -You know, i don't back off. 20 -You know, i don't give up. 19 +You know, i dont back off. 20 +You know, i dont give up. 19 I will not let you down. 18 I promise to tell the truth. 22 I commit to give work on time. 23 @@ -24742,35 +24742,35 @@ I swear that i telling you the truth. 29 I promise to let go of the things that are holding me back. 46 The minister pledged to make the city clean. 36 I promised god that i would never drink again. 37 -I swear! i didn't tear the notebook. 27 -I'm a foodie. 9 +I swear i didnt tear the notebook. 27 +Im a foodie. 9 I want some cookies. 16 -Do you like pizza? 14 +Do you like pizza 14 Give me a slice of pizza. 19 I love chicken. 12 -I don't like veg. 12 +I dont like veg. 12 Have some rice. 12 Who ate the mangoes. 16 -It's a chocolate cake. 17 +Its a chocolate cake. 17 I like pineapple pastry. 20 -Let's have lunch. 13 -What are you munching? 18 +Lets have lunch. 13 +What are you munching 18 Try a bite. 8 Give me a bite. 11 Have one bite. 11 -Do you like pork? 13 -It's sweet at the taste. 18 -It's sour at the taste. 17 -I don't eat sweets. 14 -Let's have our meal. 15 -What's there for lunch? 18 -What's there for dinner? 19 +Do you like pork 13 +Its sweet at the taste. 18 +Its sour at the taste. 17 +I dont eat sweets. 14 +Lets have our meal. 15 +Whats there for lunch 18 +Whats there for dinner 19 Finish your lunch. 15 -Let's go out for dinner. 18 -Let's meet for dinner. 17 -Let's go out for lunch. 17 +Lets go out for dinner. 18 +Lets meet for dinner. 17 +Lets go out for lunch. 17 Give me some pickle. 16 -I don't eat dairy products. 21 +I dont eat dairy products. 21 I like italian food. 16 I like thai food. 13 I like chinese. 12 @@ -24780,14 +24780,14 @@ It was good value for money. 22 She usually copies answers from her mate. 34 Studying hard can get you to pass with flying colors. 43 When dave is programming, he often gets lost in thought. 46 -I'm in ninth grade! what about you? 26 -What's the homework for today? 24 +Im in ninth grade what about you 26 +Whats the homework for today 24 I come by the school bus. 19 -Is there anyone in class without a textbook? 36 -Stop talking in class and pay attention! 33 -Can someone come to the board and solve this equation? 44 -Do you know these companies? 23 -Do you run or work for a small business or startup? 40 +Is there anyone in class without a textbook 36 +Stop talking in class and pay attention 33 +Can someone come to the board and solve this equation 44 +Do you know these companies 23 +Do you run or work for a small business or startup 40 To get my small business off the ground. 32 I love working with our german suppliers. 34 The net income after all taxes has been deducted. 40 @@ -24796,48 +24796,48 @@ We supply paper products. 21 We are the market leaders in three countries. 37 The sky is everywhere, it begins at your feet. 37 Stop feeling sorry for yourself and you will be happy. 44 -I've got nothing to do today but smile. 30 +Ive got nothing to do today but smile. 30 Laugh now, cry later. 17 Cheer up, my dear. after every storm comes the sun. happiness is waiting for you ahead. 69 -Once they move, they're gone. once you move, life starts over again. 54 -It's better to have loved and lost than never to have loved at all. 52 -What doesn't kill you makes you stronger. 33 -My entire life can be described in one sentence it didn't go as planned, and that's okay. 70 +Once they move, theyre gone. once you move, life starts over again. 54 +Its better to have loved and lost than never to have loved at all. 52 +What doesnt kill you makes you stronger. 33 +My entire life can be described in one sentence it didnt go as planned, and thats okay. 70 No matter how you feel, get up, dress up, show up, and never give up. 54 Life is not a problem to be solved but a gift to be enjoyed. 46 -There's something in you that the world needs. 37 -Be positive. stay happy and don't let the negativity of the world get you down. 62 -Don't deny your feelings. they alone are what guide you through life. 55 -You're braver than you believe and stronger than you seem, and smarter than you think. 70 +Theres something in you that the world needs. 37 +Be positive. stay happy and dont let the negativity of the world get you down. 62 +Dont deny your feelings. they alone are what guide you through life. 55 +Youre braver than you believe and stronger than you seem, and smarter than you think. 70 There will always be hope as long as you believe, as long as you trust that tomorrow is there. 75 -Chin up buttercup, everything's gonna be ok. 36 +Chin up buttercup, everythings gonna be ok. 36 Nothing is permanent in this wicked world, not even our troubles. 54 -Don't look back! you're not going that way. 32 +Dont look back youre not going that way. 32 If you do not hope, you will not find what is beyond your hopes. 50 -Don't be sad because of people. they will all die. 38 -You'll never find a rainbow if you're looking down. 40 +Dont be sad because of people. they will all die. 38 +Youll never find a rainbow if youre looking down. 40 Be of good cheer. the future is as bright as your faith. 43 Go as far as you can see and you will see further. 38 If you are still breathing maybe it is not such a bad day after all. 53 You alone are enough. you have nothing to prove to anybody. 47 Give it a try. 10 -It's worth a shot. 13 -What are you waiting for? 20 -What do you have to lose? 19 +Its worth a shot. 13 +What are you waiting for 20 +What do you have to lose 19 You might as well. 14 Just do it. 8 -There you go! 10 +There you go 10 Keep up the good work. 17 -I'm so proud of you! 14 -Don't give up. 10 +Im so proud of you 14 +Dont give up. 10 Keep pushing. 11 -Keep fighting! 12 -Never say die'. 11 -Come on! you can do it!. 16 -I'll support you either way. 22 -I'm behind you 100%. 14 -It's totally up to you. 17 -It's your call. 11 +Keep fighting 12 +Never say die. 11 +Come on you can do it. 16 +Ill support you either way. 22 +Im behind you 100. 14 +Its totally up to you. 17 +Its your call. 11 Follow your dreams. 16 Reach for the stars. 16 Do the impossible. 15 @@ -24845,16 +24845,16 @@ The sky is the limit. 16 Please excuse me, i must go. 22 Excuse me, i have to go in meeting. 27 I am sorry, but have to make a call. 27 -I am sorry, i can't stay more please. 28 +I am sorry, i cant stay more please. 28 Please excuse me, i must take this call. 32 I am sorry, i have to go, it is urgent. 29 Excuse me, but i have to uttend tosomething. 36 Anyway, it was nice to meet you. 25 -I would love to talk more, when can we meet again? 39 +I would love to talk more, when can we meet again 39 I enjoyed our conversation. 23 It is pleasure to talk to you. 23 It was nice to talking to you. 23 -Let's talk some more in detail next week. 32 +Lets talk some more in detail next week. 32 I am gladwe got to talk. 18 I will catch up with you later, i have to go right now. 42 Excuse me for leaving early. 23 @@ -24865,278 +24865,278 @@ Anyway, i will talk to you more later. 30 I am 25 years old. 13 I am 25. 5 My friend has two sons aged 8 and 10. 28 -My neighbor has a four-month-old baby. 30 -My uncle has a twenty-year-old daughter. 32 +My neighbor has a fourmonthold baby. 30 +My uncle has a twentyyearold daughter. 32 My house is 40 years old. 19 -My twenty-year-old car still runs smoothly. 35 +My twentyyearold car still runs smoothly. 35 Most students in my class are above the age of twenty. 43 Most students in my class are below the age of 16. 39 John is about 50. 13 He must be under 18. 15 -I'm doing my homework this evening. 28 -I'm starting university in september. 31 -Sally is meeting john at seven o'clock this evening. 42 -I'm going to clean them later. 23 +Im doing my homework this evening. 28 +Im starting university in september. 31 +Sally is meeting john at seven oclock this evening. 42 +Im going to clean them later. 23 Am going to play tennis tomorrow. 27 You are going to see your cousin next week. 34 She is going to get married in september. 33 We are going to have a party this weekend. 33 I am not going to leave my job. 23 -You aren't going to visit your cousin this week. 38 -He isn't going to get married. 23 -We aren't going to move house. 23 -They aren't going to study at university. 33 -I'm visiting our new office in london this afternoon. 43 -I think i'll stay in tonight. 22 -I'll buy some bread when i go out. 25 +You arent going to visit your cousin this week. 38 +He isnt going to get married. 23 +We arent going to move house. 23 +They arent going to study at university. 33 +Im visiting our new office in london this afternoon. 43 +I think ill stay in tonight. 22 +Ill buy some bread when i go out. 25 I may take it. 10 -I'd like to buy it. 13 -I'm going to wear my black dress tonight. 32 -We're having a party next saturday. would you like to come? 46 +Id like to buy it. 13 +Im going to wear my black dress tonight. 32 +Were having a party next saturday. would you like to come 46 I was wondering wether yoou would stay for dinner tonight. 48 -I am going to my cousin's wedding party next saturday, would you like to come too? 65 -Come along! 9 +I am going to my cousins wedding party next saturday, would you like to come too 65 +Come along 9 You must pay us a visit. 18 I will give you a call and fix something. 32 We must stay in touch. 17 You must come over. 15 -Why don't you come? 14 -Will you come too? 14 -Are you up for a movie tonight? 24 -Want to join me? 12 -What days are you usually free? want to hangout sometime? 46 +Why dont you come 14 +Will you come too 14 +Are you up for a movie tonight 24 +Want to join me 12 +What days are you usually free want to hangout sometime 46 I would be delighted if you come over my birthday party. 45 -Would you like to grab a coffee next week? 33 -Would you like to come round for a meal? 31 -Do you want to go to the beach? 23 -Do you want to see a movie? 20 -Do you want to go puppy shopping? 26 -Do you want to make a sand castle? 26 -Do you want to get lunch on saturday? 29 -Would you like to dance? 19 -Would you like to have lunch today? 28 -Would you like to come shopping with me next week? 40 -Do you want another cup of coffee? 27 -Do you want to come to the party on sunday? 33 +Would you like to grab a coffee next week 33 +Would you like to come round for a meal 31 +Do you want to go to the beach 23 +Do you want to see a movie 20 +Do you want to go puppy shopping 26 +Do you want to make a sand castle 26 +Do you want to get lunch on saturday 29 +Would you like to dance 19 +Would you like to have lunch today 28 +Would you like to come shopping with me next week 40 +Do you want another cup of coffee 27 +Do you want to come to the party on sunday 33 Come to the restaurant with us tonight. 32 Sit down, have a cake. 17 Come to the museum, bring your friends. 32 -Why don't you come to shimla with us next week? 36 -Why don't you come to the concert with us tonight? 39 -Why don't you join us for a drink after work? 34 +Why dont you come to shimla with us next week 36 +Why dont you come to the concert with us tonight 39 +Why dont you join us for a drink after work 34 You must join us for a drink sometime. 30 You must visit us in london in the new year. 34 -You'll have to have a lunch with us soon. 31 -Will you come with me for a movie? 26 +Youll have to have a lunch with us soon. 31 +Will you come with me for a movie 26 Come, let us dance. 15 -Will you spend all day with me tomorrow? 32 +Will you spend all day with me tomorrow 32 Thanks for your invitation for dinner. 32 -I'm sorry i can't accept your invitation because i'm busy tomorrow. 53 +Im sorry i cant accept your invitation because im busy tomorrow. 53 You are invited to dinner. 21 -Will you please come over here? 25 +Will you please come over here 25 Please have somthing cold. 22 Many thanks for your kind invitation. 31 You are cordially invited. 22 -Come, let's go for coffee. 20 -Would you like to join us for lunch? 28 +Come, lets go for coffee. 20 +Would you like to join us for lunch 28 Come in please. 12 -How about eating pizza? 19 -Have you thought about buying a new computer? 37 -What about opening your present now? 30 -How about starting a book club? 25 -How about some lunch? 17 -Why not take a break in the south-west? 30 -Let's make a curry tonight. 21 -Let's not argue about this. 21 -Let's not spend all night talking about my problems. 42 -Couldn't you use the one in your bedroom? 32 -Couldn't you get up early in the morning to finish it? 42 +How about eating pizza 19 +Have you thought about buying a new computer 37 +What about opening your present now 30 +How about starting a book club 25 +How about some lunch 17 +Why not take a break in the southwest 30 +Lets make a curry tonight. 21 +Lets not argue about this. 21 +Lets not spend all night talking about my problems. 42 +Couldnt you use the one in your bedroom 32 +Couldnt you get up early in the morning to finish it 42 You could wear your red dress and your black shoes. 41 -Can't you finish your homework before going? 36 -Oh, dear. can't he manage with the one you have? 36 +Cant you finish your homework before going 36 +Oh, dear. cant he manage with the one you have 36 We could always use butter. 22 -Shall we go to chez philip? 21 -Can't you go? 9 -Can't rachel do it? 14 -Couldn't you get a part-time weekend job? 32 -What times are you open? 19 -Are you open on? 12 -What time do you close? 18 -What time do you close today? 23 -What time do you open tomorrow? 25 -Are you in the queue? 16 -Next, please! 11 -I'll pay by card. 12 -Would you be able to gift wrap it for me? 31 -Would you like a bag? 16 -Can i help you? 11 -I'm just browsing, thanks. 21 -It doesn't work. 12 -I'd like to change this for a different size. 35 -How much does this cost? 19 -It doesn't fit. 11 -How much is that in the window? 24 -That's cheap. 10 -That's good value. 14 -Have you got the receipt? 20 -Do you have any postcards? 21 -Sorry, we don't sell them. 20 -Sorry, we don't have any left. 23 -I'm looking for shampoo. 19 -Could you tell me where the dish wash bar is? 35 -Do you have this item in stock? 24 -Do you know anywhere else i could try? 30 -I'll take it. 9 +Shall we go to chez philip 21 +Cant you go 9 +Cant rachel do it 14 +Couldnt you get a parttime weekend job 32 +What times are you open 19 +Are you open on 12 +What time do you close 18 +What time do you close today 23 +What time do you open tomorrow 25 +Are you in the queue 16 +Next, please 11 +Ill pay by card. 12 +Would you be able to gift wrap it for me 31 +Would you like a bag 16 +Can i help you 11 +Im just browsing, thanks. 21 +It doesnt work. 12 +Id like to change this for a different size. 35 +How much does this cost 19 +It doesnt fit. 11 +How much is that in the window 24 +Thats cheap. 10 +Thats good value. 14 +Have you got the receipt 20 +Do you have any postcards 21 +Sorry, we dont sell them. 20 +Sorry, we dont have any left. 23 +Im looking for shampoo. 19 +Could you tell me where the dish wash bar is 35 +Do you have this item in stock 24 +Do you know anywhere else i could try 30 +Ill take it. 9 It comes with a one year guarantee. 28 -Do you deliver? 12 -I'll take this. 11 -Would you like anything else? 24 +Do you deliver 12 +Ill take this. 11 +Would you like anything else 24 Enter your pin. 12 Remove your card. 14 Shoplifters will be prosecuted. 27 Buy 1 get 1 half price. 17 -I am sorry, i can't hear you. 21 +I am sorry, i cant hear you. 21 I am sorry, your voice is breaking. 28 -I'm sorry, you are breaking. 22 -I'm sorry, your voice is jarring. 26 +Im sorry, you are breaking. 22 +Im sorry, your voice is jarring. 26 I am sorry, your voice isechoing. 27 I can hear you, but in bits and pieces. 30 I can hear you, on and off. 20 -I can't hear you at all, let me call you back. 34 -Can you hear me loud and clear? 24 -Am i audible to you? 15 -Is my voice audible? 16 -Is my voice too low? 15 -Is my voice clear enough? 20 +I cant hear you at all, let me call you back. 34 +Can you hear me loud and clear 24 +Am i audible to you 15 +Is my voice audible 16 +Is my voice too low 15 +Is my voice clear enough 20 Yes, your voice is audible. 22 Yes, your voice is clear, i can hear you. 32 Sorry, your voice is to low. 22 -Can you be a bit loud? 16 +Can you be a bit loud 16 I am barely managing to hear you. 26 I can hear you in pieces. 19 Hey you have to be quick, my battery is about to die. 41 -Before we stare speaking,i might lose you, as i am on 3% battery. 51 -Can i call you after charging my phone? 31 -My bettery is about to drain, could you text me? 38 +Before we stare speaking,i might lose you, as i am on 3 battery. 51 +Can i call you after charging my phone 31 +My bettery is about to drain, could you text me 38 Let me grab a charger and i will call you back. 36 -I am tied up at the moment, can i call you in hours time? 43 -If it is not urgent, can i buzz you latter? 33 -I am about to start driving i won't be able to long chat. 43 -Can i reach home and call you? 23 -Can i get dhaval with us so that we can save time and have a clear discussion? 61 +I am tied up at the moment, can i call you in hours time 43 +If it is not urgent, can i buzz you latter 33 +I am about to start driving i wont be able to long chat. 43 +Can i reach home and call you 23 +Can i get dhaval with us so that we can save time and have a clear discussion 61 Wait, let me rope in anjali in to this call. 34 I am patching you in.. 16 -Can both of you hear me clearly? 25 -Am i audible to both of you? 21 -Take care let's be in touch. 21 +Can both of you hear me clearly 25 +Am i audible to both of you 21 +Take care lets be in touch. 21 This is renu speeking, good morning. 30 -Can i know who at other side? 22 -Could i speak to aarohi? 19 +Can i know who at other side 22 +Could i speak to aarohi 19 I am trying to contact aarohi. 24 I need some information about project. 32 I am calling on behalf of. 20 -Raj speaking, how may i help you? 26 -May i askwho is calling please? 25 -Could you hold on a moment please? 27 -Could you hold the line please? 25 +Raj speaking, how may i help you 26 +May i askwho is calling please 25 +Could you hold on a moment please 27 +Could you hold the line please 25 I will get backto you in a moment. 26 I am sorry, he is not here at this time. 30 -Have you any massage for him? 23 +Have you any massage for him 23 Could you speak slowly. 19 -I don't get you, could you repeat please? 32 -Could you spell your name for me? 26 +I dont get you, could you repeat please 32 +Could you spell your name for me 26 Well, i guess,i better get going.talk to you soon. 40 Thanks for calling, bye for now. 26 I have another call coming through, i need to hang up. 43 -Great, what about you? 18 +Great, what about you 18 I am good, thanks. 14 Please carry on with plan, i am exhausted. 34 -I am at the end of my game, i can't come to the party. 39 -I am completely pooped out, will you please give me a cup of tea? 51 -I am standing in a que for last two hours, i'm totly flaxed out. 49 -I'm studding for all night i am completely worn out. 41 +I am at the end of my game, i cant come to the party. 39 +I am completely pooped out, will you please give me a cup of tea 51 +I am standing in a que for last two hours, im totly flaxed out. 49 +Im studding for all night i am completely worn out. 41 I can not drink any more, i am beat. 27 I am beat so going to bed. 19 I am going to stay in bed, i am dogtired. 31 I can not go out, i am bone tired. 25 -Can you please call me tomorrow? i am switching off. 41 -Sorry, i can't complete this project i am ready to crash. 45 -I can't see straight, i am ready to crash. 32 -Just dragging! 12 -I can't take a glass of water. i am just dragging. 37 -No one is around! 13 -I can't tell the differnce between tea and coffee. 40 -I won't always be around! 19 +Can you please call me tomorrow i am switching off. 41 +Sorry, i cant complete this project i am ready to crash. 45 +I cant see straight, i am ready to crash. 32 +Just dragging 12 +I cant take a glass of water. i am just dragging. 37 +No one is around 13 +I cant tell the differnce between tea and coffee. 40 +I wont always be around 19 I think i need a vacation, i feel worn out. 33 -You look wiped out! 15 +You look wiped out 15 I can not go out tonight, i am drained. 30 -I am fried from last night, how could we dance for 5 hours straight? 54 -What a day! i am tired i can't feel my legs. 31 +I am fried from last night, how could we dance for 5 hours straight 54 +What a day i am tired i cant feel my legs. 31 I work for whole day, burnt out. 25 I am spent because of whole night work. 31 I was up all night preparing for presentation, i am dead on my feet. 54 -Now ican't do any more work, i am wrecked. 32 -I am knackered! 12 -I can't do anymore, i am whacked! 25 -Beauty is but skin-deep. 19 +Now icant do any more work, i am wrecked. 32 +I am knackered 12 +I cant do anymore, i am whacked 25 +Beauty is but skindeep. 19 He tried hard but failed. 20 It was nothing but a joke. 20 Excuse me, but i feel sick. 21 Wood floats, but iron sinks. 23 -I am a student, but he isn't. 21 -He's rich, but he's not happy. 22 +I am a student, but he isnt. 21 +Hes rich, but hes not happy. 22 The boy laughed cheerfully and jumped out. 35 He laughed at that, and his laugh was merry and frank. 43 He parked the truck in front of the house and headed down the hill. 53 They have two fertilized eggs and they want final consent. 48 She stopped and gazed up at his face. 29 -Is it here yet? 11 -Are we done yet? 12 -Are we safe yet? 12 -Don't start yet. 12 -Has he come yet? 12 -I can't die yet. 11 -Here or to go? 10 +Is it here yet 11 +Are we done yet 12 +Are we safe yet 12 +Dont start yet. 12 +Has he come yet 12 +I cant die yet. 11 +Here or to go 10 Just say yes or no. 14 -Stop or i'll shoot. 14 +Stop or ill shoot. 14 Take her to the or. 14 -Should i stay or go? 15 -Because he's sick, he can't come. 25 -He couldn't come because he was sick. 29 -I couldn't go out because of the rain. 29 -I couldn't go out because of the snow. 29 +Should i stay or go 15 +Because hes sick, he cant come. 25 +He couldnt come because he was sick. 29 +I couldnt go out because of the rain. 29 +I couldnt go out because of the snow. 29 I am hungry because i did not eat lunch. 31 -He can't see nor hear. 16 +He cant see nor hear. 16 I neither drink nor smoke. 21 I neither smoke nor drink. 21 -It's neither good nor bad. 20 +Its neither good nor bad. 20 It is neither good nor bad. 21 -I don't know, nor do i care. 20 +I dont know, nor do i care. 20 He neither smokes nor drinks. 24 -I'll be there, although i may be late. 29 +Ill be there, although i may be late. 29 Although it was raining, i went out. 29 -Although tom is sick, he's swimming. 29 +Although tom is sick, hes swimming. 29 Although he is very old, he is strong. 30 Although the sun was out, it was cold. 30 Although he is rich he works very hard. 31 -I've been up since 230. 17 -I haven't seen tom since. 19 -I've been here since 230. 19 -I've been here since july. 20 -I've been here since monday. 22 -Since it rained, i didn't go. 22 -Don't move unless i tell you. 22 +Ive been up since 230. 17 +I havent seen tom since. 19 +Ive been here since 230. 19 +Ive been here since july. 20 +Ive been here since monday. 22 +Since it rained, i didnt go. 22 +Dont move unless i tell you. 22 He never speaks unless spoken to. 27 -You'll never know unless you try. 26 +Youll never know unless you try. 26 He did not speak unless spoken to. 27 -I won't go unless the rain stops. 25 +I wont go unless the rain stops. 25 Tom never speaks unless spoken to. 28 -Don't speak unless you're spoken to. 28 -I'm going out for a while. 19 +Dont speak unless youre spoken to. 28 +Im going out for a while. 19 I fell asleep while reading. 23 Be quiet while i am speaking. 23 He came back home a while ago. 23 -May i take a rest for a while? 22 +May i take a rest for a while 22 I was told to wait for a while. 23 The car not only is economical but also feels good to drive. 48 I identified with denzel washington not only as an actor but as a person. 59 @@ -25144,12 +25144,12 @@ Not only was it raining all day at the wedding but also the band was late. 58 I like not only cheesecake but also cake. 33 They visited not only germany but also spanish. 39 Not only but also i am a teacher. 25 -He's not only intelligent but also funny. 33 +Hes not only intelligent but also funny. 33 When writing, ann considers not only her topic but also her audience. 57 Everywhere she goes, she brings a camera. 34 Because it was exceptionally cold. 29 Unless you run fast, you will miss the bus. 34 -Since i'll be working late, i'll eat downtown. 36 +Since ill be working late, ill eat downtown. 36 If you pay your bills on time, you can have a good credit score. 50 Once they saw the car coming, the birds flew away from the road. 51 As we bought the tickets, the overture was beginning. 44 @@ -25164,7 +25164,7 @@ Whether you like it or not, you have to go. 33 The boy, although he is very bright, failed math. 40 She enjoyed the party more than he did. 31 Wherever there is music, people will dance. 36 -You can drop by for a visit where we're staying for the summer. 49 +You can drop by for a visit where were staying for the summer. 49 After the chores are done, we will eat some ice cream. 43 When the clock strikes midnight, she has to leave. 41 She passed the course because she worked hard. 38 @@ -25173,45 +25173,45 @@ So that he would not ruin the carpet, he took off his shoes. 47 He ate vegetables so that he could stay healthy. 39 If you save some money, you can buy a new game. 36 Unless you hurry, you will be late for school. 37 -Even though you are 13, you can't go to that movie. 39 +Even though you are 13, you cant go to that movie. 39 Although you gave it your best effort, you did not win the match. 52 I totally agree. 13 He was definitely missing something. 31 Absolutely. precisely. 19 I see your point. 13 I see what you are getting at. 23 -I'd go along with that view to a point. 29 -Sure, that's one way of looking at it. 29 +Id go along with that view to a point. 29 +Sure, thats one way of looking at it. 29 I have to side with you on this one. 27 I see exactly what you mean. 22 -You're right, that's a good point. 26 -Actually, i think you're right. 25 +Youre right, thats a good point. 26 +Actually, i think youre right. 25 You have my full agreement. 22 I second that. 11 -Ok, that's convincing. 18 +Ok, thats convincing. 18 I take your word on it. 17 I wish my dad would let me go to the party. 32 -Joseph's mom made him take out the trash. 32 +Josephs mom made him take out the trash. 32 Mom let my brother drive the car. 26 -Why did you let him swear at you like that? 33 +Why did you let him swear at you like that 33 He made his son clean his room. 24 I had peter fix my car. 17 -We couldn't get her to sign the agreement. 33 -I'll have hudson show you to your room. 30 -We couldn't get him to sign the agreement. 33 -I don't let my kids watch violent movies. 32 -I don't let my toddler play at the dining table. 37 -She doesn't let us go on a trip alone. 28 -They won't let her see john again. 26 +We couldnt get her to sign the agreement. 33 +Ill have hudson show you to your room. 30 +We couldnt get him to sign the agreement. 33 +I dont let my kids watch violent movies. 32 +I dont let my toddler play at the dining table. 37 +She doesnt let us go on a trip alone. 28 +They wont let her see john again. 26 I let all these unfortunate events happen. 35 -Don't let them get to you. 19 +Dont let them get to you. 19 My teacher made me read seven novels in one month. 40 They made him clean the entire house by himself. 39 The leader had his assistant arrange the meetings for his colleagues. 58 -I'll have my business partner send you an email regarding the proposal. 58 -I'm going to have my nails done later. 29 +Ill have my business partner send you an email regarding the proposal. 58 +Im going to have my nails done later. 29 I need to have my clogged sink fixed soon. 33 -I'm going to get my nails done later. 28 +Im going to get my nails done later. 28 I need to get my clogged sink fixed soon. 32 My friends got me to wear a summer dress that is not my style. 48 The couple got a wedding coordinator to take care of all their wedding needs. 63 @@ -25220,22 +25220,22 @@ They helped her to clean her house. 28 Sally helps me do my homework every night. 34 Sally helps me to do my homework every night. 36 If you want. 9 -If you love me, let me go! 19 +If you love me, let me go 19 If i am late for school. 18 -If you don't do your homework. 23 +If you dont do your homework. 23 F you are happy, i am happy. 21 -If i hadn't eaten so much candy. 24 +If i hadnt eaten so much candy. 24 He cleans if i cook. 15 -I wouldn't be here if i had never met you. 31 -You can't be shy if you want to make friends. 34 +I wouldnt be here if i had never met you. 31 +You cant be shy if you want to make friends. 34 If opportunity knocks, open the door. 31 If a certain condition is true, then a particular result happens. 54 I would travel around the world if i won the lottery. 42 When the water reaches 100 degrees, it boils. 37 -If you don't brush your teeth, you get cavities. 38 +If you dont brush your teeth, you get cavities. 38 When people smoke cigarettes, their health suffers. 44 If you rest, you will feel better. 27 -If you set your mind to a goal, you'll eventually achieve it. 48 +If you set your mind to a goal, youll eventually achieve it. 48 If i inherited a billion dollars, i would travel to the moon. 49 If i owned a zoo, i might let people interact with the animals more. 54 If you had told me you needed a ride, i would have left earlier. 50 @@ -25244,147 +25244,147 @@ If aspirin will ease my headache, i will take a couple of tonight. 53 If i were to be sick, i would miss another day of work. 42 If she were to be late again, she would have to have a conference with the manager. 66 If the rent were to have been a penny more, they would not have been able to pay it. 65 -If i'd had time, i would have cleaned the house. 37 -I would have cleaned the house if i'd had time. 36 -What a big dog! 11 -What a concept! 12 -What a thought! 12 -What a pleasant surprise! 21 -What a talented girl! 17 -How cute she is! 12 -How awful it was! 13 -How annoying it is! 15 -How exciting that was! 18 -How touching this is! 17 -Wow! don't you look nice. 18 -Wow! i feel like royalty. 19 -Wow! how far under? 14 -"Wow!"" she finally said, and that was the end of that discussion." 50 -"""wow!"" was all i could muster." 21 -Wow! not what i expected. 19 -Wow! that's wow! 11 -Wow! i like the sound of that. 22 -I need help! 9 -That's nice! 9 -How nice that is! 13 -Wow, very nice! 12 -Cookies are forbidden! 19 -Remember, be quiet! 16 -All this is true! 13 -Everything is perfect! 19 -I'm sure! 6 -Whoa! yes, that was it. 17 +If id had time, i would have cleaned the house. 37 +I would have cleaned the house if id had time. 36 +What a big dog 11 +What a concept 12 +What a thought 12 +What a pleasant surprise 21 +What a talented girl 17 +How cute she is 12 +How awful it was 13 +How annoying it is 15 +How exciting that was 18 +How touching this is 17 +Wow dont you look nice. 18 +Wow i feel like royalty. 19 +Wow how far under 14 +Wow she finally said, and that was the end of that discussion. 50 +wow was all i could muster. 21 +Wow not what i expected. 19 +Wow thats wow 11 +Wow i like the sound of that. 22 +I need help 9 +Thats nice 9 +How nice that is 13 +Wow, very nice 12 +Cookies are forbidden 19 +Remember, be quiet 16 +All this is true 13 +Everything is perfect 19 +Im sure 6 +Whoa yes, that was it. 17 What the whoa there. 16 -I looked down and said, whoa! 23 -Whoa! wait just a second here. 23 -Whoa now! you're not going to. 22 -Whoa! he was sent here to kill me. 25 -Whoa! you can't just walk out of here. 28 -"A whole bunch of tourists went, ""whoa!""." 30 -Hooray for me! anyway. 17 -And hooray! they didn't think about sealing the cooker. 44 -Hooray! no more work 'til monday! 25 -Hooray! it's the last day of school. 27 -Hooray! it's fish and chips! 21 -A desert holiday hooray! 20 -Ouch! you trod on my toe! 18 -Ouch! that was my toe you just trod on. 29 -Ouch! it hurts. 11 -Ouch! i hit my crazy bone! 19 -My head moves sideways too. ouch! 26 -Ouch! you hit my crazy bone. 21 -Bravo! a huge snake. 15 -It's a tremendous deal! 18 -He is tremendously handsome! 24 -Tom did a tremendous job! 20 -That's so tremendous! 17 -That's a tremendous performance! 27 -Bravo, rena! you're right, the students said. 36 -Dare to say you own the lagoon, palma bravo! 35 -It was fantastic! 14 -That's fantastic! 14 -You look fantastic! 16 -You did a fantastic job! 19 -That's so amazing of you! 19 -You danced amazing! 16 -"""i, um, don't know,"" she murmured then shook her head." 41 -"""um, no,"" she turned to make sure he wasn't talking to someone else." 52 +I looked down and said, whoa 23 +Whoa wait just a second here. 23 +Whoa now youre not going to. 22 +Whoa he was sent here to kill me. 25 +Whoa you cant just walk out of here. 28 +A whole bunch of tourists went, whoa. 30 +Hooray for me anyway. 17 +And hooray they didnt think about sealing the cooker. 44 +Hooray no more work til monday 25 +Hooray its the last day of school. 27 +Hooray its fish and chips 21 +A desert holiday hooray 20 +Ouch you trod on my toe 18 +Ouch that was my toe you just trod on. 29 +Ouch it hurts. 11 +Ouch i hit my crazy bone 19 +My head moves sideways too. ouch 26 +Ouch you hit my crazy bone. 21 +Bravo a huge snake. 15 +Its a tremendous deal 18 +He is tremendously handsome 24 +Tom did a tremendous job 20 +Thats so tremendous 17 +Thats a tremendous performance 27 +Bravo, rena youre right, the students said. 36 +Dare to say you own the lagoon, palma bravo 35 +It was fantastic 14 +Thats fantastic 14 +You look fantastic 16 +You did a fantastic job 19 +Thats so amazing of you 19 +You danced amazing 16 +i, um, dont know, she murmured then shook her head. 41 +um, no, she turned to make sure he wasnt talking to someone else. 52 Pretty sure those are both in the um, mortal world, deidre said. 52 -"""um, yes,"" the death-dealer said." 25 -Um, after a while? 14 +um, yes, the deathdealer said. 25 +Um, after a while 14 Toni said he thinks i have some of the um, natural ability. 47 Um, i guess you know how to call me if you need anything. 44 -"""i, um, just came to "" the teen's face lit up." 32 +i, um, just came to the teens face lit up. 32 Maybe because everything was um, mashed together. 42 -"""i, uh, i need to go,"" she said." 22 -And uh, her babies are okay? 22 +i, uh, i need to go, she said. 22 +And uh, her babies are okay 22 He uh, kinda died. 14 Uh, ladies, i think you better take a look at this. 40 -I, uh, kinda need to talk to you, bossman, if you're cool with that. 53 -"""uh oh,"" darian whispered." 20 -I'm not, uh, restricted to either realm, darian said. 43 +I, uh, kinda need to talk to you, bossman, if youre cool with that. 53 +uh oh, darian whispered. 20 +Im not, uh, restricted to either realm, darian said. 43 I er nothing, sorry. 16 The point is, er azure. 18 -I er i wouldn't mind them, but they've. 29 +I er i wouldnt mind them, but theyve. 29 Yes, er we bombed you back to the stone age. 34 Er guess i never noticedforgot to look up. 34 Open your mouth wide and say ah. 25 -Why has the train stopped? ah, now we're off again. 39 -Ah, here comes the bus at last! 24 -Ah! this is a waste of time! 20 -Have you seen my keys anywhere? ah, there they are. 40 +Why has the train stopped ah, now were off again. 39 +Ah, here comes the bus at last 24 +Ah this is a waste of time 20 +Have you seen my keys anywhere ah, there they are. 40 Ah well, better luck next time. 25 It looks like an apple. 18 -We don't like violence. 18 -Would you like to come? 18 -Would you like to wait? 18 -You like it, don't you? 17 +We dont like violence. 18 +Would you like to come 18 +Would you like to wait 18 +You like it, dont you 17 You seem to like fruit. 18 -I'm okay. 6 -Are you okay? 10 +Im okay. 6 +Are you okay 10 Are you okay. 10 -We'll be okay. 10 -I'm doing okay. 11 -Is monday okay? 12 +Well be okay. 10 +Im doing okay. 11 +Is monday okay 12 His mother was right. 17 -I'm tied up right now. 16 +Im tied up right now. 16 I believe tom is right. 18 -I'll be back right away. 18 -I'll let you know if i hear something i think you need to know. 48 -Do you know something i don't? 23 -How did you know where i was working? 29 -Don't you know that? 15 +Ill be back right away. 18 +Ill let you know if i hear something i think you need to know. 48 +Do you know something i dont 23 +How did you know where i was working 29 +Dont you know that 15 Son, you know the rules. 19 He is an excellent horseman, you know. 31 -Do you know what they would want? 26 -I'm off duty, you know. 17 +Do you know what they would want 26 +Im off duty, you know. 17 He had to work even on sunday. 23 I have to go even if it rains. 22 -Tom hasn't met mary even once. 23 -I don't even have time to read. 23 -She wouldn't even speak to him. 24 +Tom hasnt met mary even once. 23 +I dont even have time to read. 23 +She wouldnt even speak to him. 24 I will go there even if it rains. 25 She will come even if she is tired. 27 The storm became even more violent. 29 -He's just arrived. 14 +Hes just arrived. 14 He had just arrived. 16 -I'm just watching tv. 16 -Just don't forget this. 18 +Im just watching tv. 16 +Just dont forget this. 18 Let me say this just once. 20 I was just taking a shower. 21 -It's just your imagination. 22 +Its just your imagination. 22 Tom seems bored. 13 You seem upset. 12 You seem happy. 12 Tom seems to mean. 14 Tom seems calm. 12 Tom seems busy. 12 -He's selfish. 10 +Hes selfish. 10 It was cheap. 10 -That's stupid. 11 -It's really hot there. 17 -Do ghosts exist? 13 -He's really into soccer. 19 +Thats stupid. 11 +Its really hot there. 17 +Do ghosts exist 13 +Hes really into soccer. 19 I felt very happy. 14 She was very busy. 14 Bob was very happy. 15 @@ -25392,8 +25392,8 @@ He is very careful. 15 She is very pretty. 15 He was very patient. 16 His was a life of thieving and cheating. 32 -He's cheating on his wife. 20 -That's cheating in my book. 21 +Hes cheating on his wife. 20 +Thats cheating in my book. 21 He had been cheating the taxman for years. 34 He is moderate in drinking. 22 They had been fighting after a drinking bout. 37 @@ -25401,26 +25401,26 @@ Howard and mick were drinking buddies. 32 They have been drinking away for hours. 32 Drinking lots of water is good for the complexion. 41 Smoking is banned in the building. 28 -She's always fussing at me about my smoking. 35 -We don't tolerate smoking in the library. 33 +Shes always fussing at me about my smoking. 35 +We dont tolerate smoking in the library. 33 He sat swigging beer and smoking. 27 We have been talking up the game. 26 They are talking about elderly pursuits. 34 -Do you know who you're talking to? 26 +Do you know who youre talking to 26 He was walking along the street. 26 I saw her walking into a shop. 23 We went fell walking last weekend. 28 In doing we learn. 14 -What's the reason you're doing this? 28 -What is your purpose in doing that? 28 -Are you doing anything over the weekend? 33 +Whats the reason youre doing this 28 +What is your purpose in doing that 28 +Are you doing anything over the weekend 33 I will. they asked me how u were doing. 29 -'i'm going now,' she said, fastening her coat. 35 +im going now, she said, fastening her coat. 35 Chris is going to work overseas. 26 He stands a fair chance of going abroad. 32 -What are you trying to prove? 23 -He's trying to get a job. 18 -I just couldn't stop crying. 22 +What are you trying to prove 23 +Hes trying to get a job. 18 +I just couldnt stop crying. 22 His jokes amused the crying child. 28 I could not help crying. 19 The eggs were frying in the pan. 25 @@ -25437,8 +25437,8 @@ She sprained her ankle playing squash. 32 The playing field is a large oval. 27 Boys are fond of playing football. 28 He was bathing in the sun. 20 -Is the beach safe for bathing? 24 -Is the washing machine working now? 29 +Is the beach safe for bathing 24 +Is the washing machine working now 29 I do the washing in our house. 23 The washing machine agitates the clothes. 35 He took to dancing like a duck to water. 31 @@ -25447,29 +25447,29 @@ Singing along with recorded music. 29 She is singing in the air. 20 He was singing to the guitar. 23 My hobbies include reading and painting. 34 -A child's vocabulary expands through reading. 38 -Are you any good at map reading? 25 +A childs vocabulary expands through reading. 38 +Are you any good at map reading 25 I can play football. 16 -Can i go out tonight? 16 +Can i go out tonight 16 It may rain tomorrow. 17 -May i go to the bathroom? 19 +May i go to the bathroom 19 You must study today. 17 He must be her brother. 18 You shall pay on saturday. 21 -Shall i help you? 13 +Shall i help you 13 I will give you a gift. 17 I need to talk to her. 16 You must turn in your assignment on time. 33 He might be the love of my life. 24 The doctor can see you now. 21 The doctor ought to see you now. 25 -You do know how to sing! 18 +You do know how to sing 18 Thank you, i do sing. 16 Thank you, i can sing. 17 My keys must be in the car. 20 It might rain tomorrow. 19 -That can't be peter's coat. it's too small. 31 -Can't swim. 8 -May i ask a question? 16 -Could i have some tea, please? 24 -Would you like some help? 20 +That cant be peters coat. its too small. 31 +Cant swim. 8 +May i ask a question 16 +Could i have some tea, please 24 +Would you like some help 20 From 55952e97b856050e4e32c68f7fe23e589dcd77cb Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Mon, 31 May 2021 18:56:10 +0530 Subject: [PATCH 09/10] added the speak button --- frontend/src/App/App.css | 21 +++++++++++++++++++-- frontend/src/App/Record.js | 20 +++++++++++++++----- 2 files changed, 34 insertions(+), 7 deletions(-) diff --git a/frontend/src/App/App.css b/frontend/src/App/App.css index c27890f..741b9b8 100644 --- a/frontend/src/App/App.css +++ b/frontend/src/App/App.css @@ -105,7 +105,7 @@ hr { /* margin-top: 10px; */ } -.top-container { +.top-container { display: flex; justify-content: center; flex-wrap: wrap; @@ -135,7 +135,7 @@ hr { .key-icon { height: 20px; - position: relative; + position: relative; bottom: -5px; } @@ -297,6 +297,23 @@ hr { cursor: pointer; } +.btn-speak { + border-radius: 4px; + / margin: 10px 0; / + padding: 0.75em 1.75em; + font-size: 1em; + / text-decoration: none; / + color: #fff; + font-weight: 500; + font-variant: small-caps; + / height: 2.7em; / + background-color: #19d267; + max-width: 150px; + text-align: center; + margin-left: 10px; + cursor: pointer; +} + .btn-disabled { cursor: initial !important; background-color: #D3D3D3 !important; diff --git a/frontend/src/App/Record.js b/frontend/src/App/Record.js index aa0c7a1..865bb87 100644 --- a/frontend/src/App/Record.js +++ b/frontend/src/App/Record.js @@ -101,11 +101,21 @@ class Record extends Component { Review - - Speak + + { !this.state.shouldRecord + ? "Speak" + : "Stop"} + this.setState({ play: false }); handleKeyDown = event => { + // space bar code // if (event.keyCode === 32) { // if (this.speak === true) { @@ -246,7 +257,6 @@ class Record extends Component { play: false }); // } - // play wav if (event.keyCode === 82) { this.playWav(); @@ -370,4 +380,4 @@ class TopContainer extends Component { }; } -export default Record; +export default Record; \ No newline at end of file From e8edfb5525eb82ec3b0cae6db13547bcbbc90d3e Mon Sep 17 00:00:00 2001 From: amoljagadambe Date: Mon, 16 Aug 2021 15:06:28 +0530 Subject: [PATCH 10/10] change the port to http for frontend --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 43866ca..c36b300 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,6 +17,6 @@ services: build: context: ./frontend/ ports: - - "3000:3000" + - "80:3000" volumes: - ./frontend/:/src