| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684 |
- [
- {
- "word": "abandon",
- "def": "lacking restraint or control; feeling of extreme emotional intensity; unbounded enthusiasm",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abandonment",
- "def": "giving up completely; freedom from constraint",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abbreviation",
- "def": "shortening something by omitting parts of it",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abeyance",
- "def": "suspended action; temporary cessation or suspension",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abide",
- "def": "endure; put up with; bear; tolerate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ability",
- "def": "capacity; skill",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abnormal",
- "def": "unusual; not typical; not normal",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aboard",
- "def": "on a ship, train, plane or other vehicle; in or into a group, organization, or business",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abolish",
- "def": "cancel; put an end to; destroy completely",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abolition",
- "def": "ending; act of abolishing; act of doing away with",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abortion",
- "def": "termination of pregnancy; failure of a plan",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abortive",
- "def": "unsuccessful; failing to accomplish an intended objective; fruitless",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abridge",
- "def": "condense; shorten; reduce length of written text",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abrogate",
- "def": "abolish, do away with, or annul, especially by authority",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abrupt",
- "def": "broken off; very steep; having sudden transitions from one subject to another",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absence",
- "def": "state of being absent; state of being away",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absent",
- "def": "go away or leave ; missing; not present",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absolute",
- "def": "perfect in quality or nature; complete; totally unlimited; certain",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absolutely",
- "def": "utterly; definitely",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absorb",
- "def": "assimilate or incorporate; suck or drink up; occupy full attention",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absorption",
- "def": "process of absorbing nutrients into the body after digestion; state of mental",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abstract",
- "def": "theoretical; not concrete; not applied or practical; difficult to understand",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absurd",
- "def": "preposterous; ridiculously incongruous or unreasonable; foolish",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "absurdity",
- "def": "quality of being absurd or inconsistent with obvious truth, reason, or sound judgment;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abundance",
- "def": "great or plentiful amount; fullness to overflowing",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abundant",
- "def": "plentiful; possessing riches or resources",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "abuse",
- "def": "improper use or handling; misuse",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "academic",
- "def": "related to school; not practical or directly useful; relating to scholarly organization; based",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "academy",
- "def": "school for special instruction; society of scholars, scientists, or artists",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accede",
- "def": "agree; give consent, often at insistence of another; concede",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accelerate",
- "def": "move faster; cause to develop or progress more quickly; occur sooner than expected",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acceleration",
- "def": "faster rate of improvement; rate of change of velocity with respect to time",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "access",
- "def": "approach; entry; entrance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accessible",
- "def": "easily approached or entered; obtainable; easy to talk to or get along with",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accessory",
- "def": "additional object; useful but not essential thing; subordinate or supplementary item",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accident",
- "def": "event that takes place without one's foresight or expectation; sudden, and unexpected",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accidental",
- "def": "unexpected; unforeseen",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accidentally",
- "def": "inadvertently; by chance; casually; fortuitously; not essentially or intrinsically",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accommodate",
- "def": "do a favor or service for; provide for; supply with; make suitable; adapt; allow for",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accommodation",
- "def": "living quarters provided for public convenience",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accompaniment",
- "def": "act of accompanying someone or something",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accompany",
- "def": "travel with; be associated with",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accomplish",
- "def": "succeed in doing; bring to pass; achieve; reach the end of; complete",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accomplishment",
- "def": "achievement; fulfillment",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accord",
- "def": "settlement or compromise of conflicting opinions; written agreement between two states",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "account",
- "def": "narrative or record of events; reason given for a particular action or event",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accountant",
- "def": "one who maintains and audits business accounts",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accounting",
- "def": "system that provides quantitative information about finances",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accrue",
- "def": "increase, accumulate, or come about as a result of growth; accumulate over time",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accumulate",
- "def": "pile up; collect; mount up; increase",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accumulation",
- "def": "increase by natural growth or addition; concentration",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accuracy",
- "def": "quality of nearness to the truth or the true value",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accurate",
- "def": "capable of providing a correct reading or measurement; performing with care and precision",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accusation",
- "def": "indictment; charge of wrongdoing that is made against a person or other party",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "accuse",
- "def": "blame; condemn",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "achieve",
- "def": "gain with effort; accomplish; fulfill",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "achievement",
- "def": "feat; accomplishment; award for completing a particular task or meeting an objective",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acid",
- "def": "sour; water-soluble compounds having a sour taste; quality of being sarcastic, bitter, or scornful",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acknowledge",
- "def": "declare to be true or admit; express obligation, thanks",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acquaint",
- "def": "inform about; cause to come to know personally; make familiar",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acquaintance",
- "def": "personal knowledge or information about someone or something",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acquainted",
- "def": "known by or familiar with another; informed or familiar",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acquire",
- "def": "gain through experience or effort; gain possession of; locate with tracking system",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acquisition",
- "def": "act of contracting or assuming or acquiring possession of something",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "across",
- "def": "from side to side; crosswise, or in a direction opposed to the length",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "activate",
- "def": "make active or more active; stimulate; make radioactive",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "actively",
- "def": "energetically; vigorously; in an active manner; voluntarily, not passively",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "actual",
- "def": "true; real; being, existing, or acting at the present moment; current",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "actually",
- "def": "truly; really; in fact",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "acute",
- "def": "quickly perceptive; keen; having a sharp point or tip; extremely sharp or severe",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adapt",
- "def": "make fit for; change to suit a new purpose",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adaptation",
- "def": "modification; alteration or adjustment in structure or habits",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "additional",
- "def": "further; extra; supplemental or added to",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "additive",
- "def": "addition; supplement",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "address",
- "def": "make a formal speech to; deal with or discuss; direct efforts or attention of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adequate",
- "def": "sufficient; enough to meet a purpose",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adhere",
- "def": "stick fast; stick to firmly; be compatible or in accordance with",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adhesive",
- "def": "glue; paste ; substance that unites or bonds surfaces together",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adjacent",
- "def": "adjoining; neighboring; close to; lying near",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adjoin",
- "def": "be next to; be contiguous to; border on",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adjust",
- "def": "adapt; regulate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adjustment",
- "def": "making or becoming suitable; adjusting to circumstances",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "administer",
- "def": "govern; supervise; give or apply medications",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "administration",
- "def": "management; supervision; people who are in charge for management; activity of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "administrative",
- "def": "of or relating to or responsible for administration",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "admiration",
- "def": "favorable judgment; feeling of pleasure, wonder, and approval",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "admire",
- "def": "regard with wonder or astonishment; view with surprise; marvel at",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "admission",
- "def": "act or practice of admitting; power or permission to enter",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "admit",
- "def": "permit to enter; receive; provide the right or a means of entrance to",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "admittedly",
- "def": "doubtlessly; in an acknowledged manner; confessedly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adolescence",
- "def": "state of growing up from childhood to manhood or womanhood; transitional period",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adolescent",
- "def": "a juvenile between the onset of puberty and maturity;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adopt",
- "def": "accept; take on; raise; take into one's family",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adoption",
- "def": "act of accepting with approval",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adore",
- "def": "worship with profound reverence; pay divine honors to; regard with the utmost esteem and",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adorn",
- "def": "enhance or decorate with or as if with ornaments",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adornment",
- "def": "embellishment; decoration; something that beautifies or adorns; ornament",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adult",
- "def": "one who has attained maturity or legal age; fully grown",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "advance",
- "def": "proceed; move forward; improve; moving forward",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "advanced",
- "def": "improved; highly developed or complex; ahead of the times; progressive",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adventure",
- "def": "something happens without design; chance; hazard; risk; danger",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adventurous",
- "def": "valiant; venturesome; inclined or willing to incur hazard or engage in adventures",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adversary",
- "def": "opponent in contest; someone who offers opposition",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adverse",
- "def": "in opposing direction; harmful or unfavorable; acting or serving to oppose",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "adversity",
- "def": "state of misfortune, hardship, or affliction; misfortune",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "advertise",
- "def": "give notice to; inform or apprise; make known; give public notice of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "advisable",
- "def": "proper to be advised or to be done; expedient; prudent; ready to receive advice",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "advocate",
- "def": "speak, plead, or argue in favour of; plead for; push for something",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aerial",
- "def": "of the air or atmosphere; produced by or found in the air; performed in the air",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affect",
- "def": "have an emotional or cognitive impact upon",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affection",
- "def": "fondness; tender feeling toward another; fondness",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affectionate",
- "def": "having affection or warm regard; loving; fond; kindly inclined; zealous",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affiliate",
- "def": "associate; incorporate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affirm",
- "def": "assert; confirm",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affirmation",
- "def": "positive assertion; confirmation; solemn pledge by one who refuses to take an oath",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affirmative",
- "def": "confirmative; ratifying; giving assent or approval; confirming",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "afford",
- "def": "pay; provide; have the financial means for; bear the cost of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "affordable",
- "def": "able to pay for",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agency",
- "def": "a business that serves other businesses; an administrative unit of government",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agent",
- "def": "one that acts on behalf of other persons or organizations",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aggravate",
- "def": "worsen; make worse or more troublesome",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aggregate",
- "def": "gather into a mass, sum, or whole; amount to",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aggregation",
- "def": "several things grouped together or considered as a whole",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aggressive",
- "def": "making assaults; unjustly attacking; combative; hostile; tending to spread quickly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aggressor",
- "def": "one that engages in aggression; person who first attacks",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agitate",
- "def": "cause to move with violence or sudden force; upset; disturb",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agitation",
- "def": "anxiety; extreme emotional disturbance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agony",
- "def": "extreme pain of mind or body; anguish; last struggle of life; death struggle",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agreeable",
- "def": "ready to consent or submit; acceptable",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agreement",
- "def": "state of agreeing; harmony of opinion, statement, action, or character",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "agriculture",
- "def": "practice of cultivating the land or raising stock",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aid",
- "def": "person or thing that promotes or helps in something done; helper; assistant",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ailment",
- "def": "sickness; illness; affliction",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aim",
- "def": "point or direct towards an object or spot with the intent of hitting it",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "air",
- "def": "be broadcast on television or radio",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aircraft",
- "def": "vehicle that can fly, such as an airplane, helicopter, balloon",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aisle",
- "def": "passageway between rows of seats, as in an auditorium or an airplane; wing of a building",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ajar",
- "def": "half-open; slightly turned or opened",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alarm",
- "def": "any sound or information intended to give notice of approaching danger",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "album",
- "def": "a list of names; a register for visitors; a blank book, in which to insert autographs sketches,",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alert",
- "def": "warning serves; alarm; condition of heightened watchfulness or preparation for action",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alien",
- "def": "dissimilar, inconsistent, or opposed in nature; very different place, society, or person",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alienate",
- "def": "cause to become unfriendly or hostile; transfer property or ownership; isolate or dissociate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alignment",
- "def": "arrangement; association; alliance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alike",
- "def": "similar; in the same manner or to the same degree",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "allergic",
- "def": "excessively sensitive; susceptible; having an allergy",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "allergy",
- "def": "hyper sensitivity reaction; abnormally high sensitivity to certain substances",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alliance",
- "def": "state of being allied; act of allying or uniting; a union or connection of interests between",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "allocate",
- "def": "assign; distribute according to plan",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "allot",
- "def": "parcel out in parts or portions; distribute to each individual concerned; assign as a share or lot",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "allowance",
- "def": "approval; act of allowing, granting, or admitting",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alloy",
- "def": "combine; mix; make less pure; lessen or moderate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ally",
- "def": "confederate; partner; collaborator",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alone",
- "def": "solitary; by oneself",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "along",
- "def": "by the length; in a line with the length; onward; forward; in company; together",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alongside",
- "def": "along or by the side; side by side with",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alter",
- "def": "modify; cause to change; make different; convert",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alternate",
- "def": "happening or following in turns; succeeding each other continuously; substitute",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alternation",
- "def": "successive change from one thing or state to another and back again",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "alternative",
- "def": "one of two or more things, ideas or courses of action that may be used; option; choice",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "altitude",
- "def": "elevation especially above sea level; height",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aluminum",
- "def": "silvery ductile metallic element",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amateur",
- "def": "nonprofessional; lacking the skill of a professional, as in an art",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amaze",
- "def": "astonish; affect with wonder",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amazement",
- "def": "wonder; state of extreme surprise or wonder; astonishment",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ambassador",
- "def": "authorized messenger or representative",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ambiguity",
- "def": "state of being ambiguous; doubtfulness or uncertainty",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ambiguous",
- "def": "unclear or doubtful in meaning",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ambition",
- "def": "aspiration",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ambitious",
- "def": "aspiring; having a strong desire for success or achievement",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ambulance",
- "def": "field hospital organized as to follow an army in its movements; wagon for conveying the",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amend",
- "def": "change for the better; improve; remove faults or errors",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amendment",
- "def": "correction; revision",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amends",
- "def": "compensation for a loss or injury; recompense; reparation",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amiable",
- "def": "good-natured and likable; lovable; warmly friendly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amicable",
- "def": "exhibiting friendliness or goodwill; not quarrelsome",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amid",
- "def": "in the middle of; among; surrounded by",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ammunition",
- "def": "military stores or provisions; articles used in weapons, as powder, balls, shot, shells",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amount",
- "def": "total of two or more quantities; aggregate; sum",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ample",
- "def": "more than enough in size or scope or capacity; fairly large",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amplification",
- "def": "addition of extra material or illustration or clarifying detail",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amplify",
- "def": "broaden or clarify by expanding; intensify; make larger or more powerful; increase",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "amuse",
- "def": "occupy or engage the attention of; lose in deep thought",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "analogy",
- "def": "similarity in some respects; comparison based on similarity",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "analysis",
- "def": "study; investigation; process of breaking down a substance into its constituent parts",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "analytical",
- "def": "of analysis; resolving into elements or parts",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "analyze",
- "def": "diagnose; examine",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ancestor",
- "def": "forefather; forebear; forerunner or predecessor",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anchor",
- "def": "secure or fasten firmly; be fixed in place; narrate or coordinate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anecdote",
- "def": "short account of amusing or interesting event; short narrative; secret story of history or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "angular",
- "def": "sharp-cornered; consisting of an angle or angles; stiff in manner",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "animate",
- "def": "endowed with life; alive; living; animated",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "animation",
- "def": "act of animating, or giving life or spirit; state of being animate or alive.",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ankle",
- "def": "joint which connects the foot with the leg; tarsus",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "annex",
- "def": "append or attach; take possession of; incorporate into an existing political unit",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anniversary",
- "def": "annual; yearly; annual return of the day on which any notable event took place",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "announce",
- "def": "herald; give out; proclaim; make known publicly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "announcement",
- "def": "formal public statement; act of making known publicly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "announcer",
- "def": "one who proclaims a message publicly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "annoy",
- "def": "disturb, especially by minor irritations; irritate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "annual",
- "def": "occurring or payable every year",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "annually",
- "def": "yearly; each year; returning every year; year by year",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "antagonism",
- "def": "active resistance; condition of being an opposing principle, force, or factor",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "antagonist",
- "def": "one who contends with another, especially in combat; an adversary; opponent",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "antarctic",
- "def": "opposite to the northern or arctic pole; relating to the southern pole or to the region near it",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "antibiotic",
- "def": "of or relating to chemical substance that kills microorganisms and cures infections",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anticipate",
- "def": "act in advance of; deal with ahead of time; predict",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anticipation",
- "def": "something expected; pleasurable expectation; wishing with confidence",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "antique",
- "def": "any furniture old and valuable; out of fashion",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "antonym",
- "def": "word of opposite meaning; counter term",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anxiety",
- "def": "concern something in state of painful uneasiness; state of restlessness and agitation",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anxious",
- "def": "eager; keen; worried; uneasy and apprehensive about an uncertain event or matter",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "anyhow",
- "def": "in any way or manner whatever; at any rate; in any event",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apart",
- "def": "separately, in regard to space or company; in a state of separation as to place; aside",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ape",
- "def": "imitate; mimic, as an ape imitates human actions",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apologize",
- "def": "beg pardon",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apology",
- "def": "acknowledgment expressing regret or asking pardon for a fault or offense; explanation or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apparatus",
- "def": "a group of parts that work together to perform given function; appliance or device for",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apparent",
- "def": "capable of being seen, or easily seen; open to view; visible to eye",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appeal",
- "def": "attraction; charm; attract; fascinate; challenge",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appealing",
- "def": "attractive; charming",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appendix",
- "def": "something appended or added",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appetite",
- "def": "instinctive physical desire, especially one for food or drink",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "applaud",
- "def": "acclaim; express approval, especially by clapping the hands",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appliance",
- "def": "durable goods for home or office use; device or instrument for household use",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "applicable",
- "def": "capable of being applied; fit or suitable to be applied; having relevance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "applicant",
- "def": "candidate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "application",
- "def": "close attention; work of applying something; verbal or written request for assistance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apply",
- "def": "exert; put into service; avail oneself to;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appoint",
- "def": "designate; nominate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appointment",
- "def": "act of putting a person into a non-elective position; arrangement",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appreciable",
- "def": "considerable; perceptible",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appreciate",
- "def": "be thankful for; increase in worth; be thoroughly conscious of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appreciation",
- "def": "recognition; taste; judgment or opinion, especially a favorable one",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appreciative",
- "def": "having or showing a just or ready appreciation or perception",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apprentice",
- "def": "works for an expert to learn a trade; beginner; learner",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "approach",
- "def": "access; method",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "appropriate",
- "def": "acquire; take possession of for one's own use; set apart for specific use",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "approval",
- "def": "official approbation; endorsement; act of approving",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "approve",
- "def": "ratify; consider right or good; think or speak favorably of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "approximate",
- "def": "approach; come near",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "approximately",
- "def": "about; roughly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "apt",
- "def": "likely; exactly suitable; appropriate; quick to learn or understand",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aptitude",
- "def": "inherent ability; quickness in learning and understanding",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arbitrary",
- "def": "randomly chosen; determined by chance or impulse, and not by reason or principle",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arbitrator",
- "def": "someone chosen to judge and decide disputed issue; one having ability or power to make",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arc",
- "def": "continuous portion of a circle; something curved in shape",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arch",
- "def": "any part of a curved line",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "archaeology",
- "def": "study of artifacts and relics of early mankind",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "architect",
- "def": "one who designs and supervises the construction of buildings or other large structures",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "architecture",
- "def": "art and science of designing and erecting buildings; buildings and other large structures",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ardent",
- "def": "displaying or by strong enthusiasm or devotion; passionate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arduous",
- "def": "demanding great effort or labor; difficult",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "area",
- "def": "plane surface, as of the floor of a room; open space in a building; the enclosed space; extent;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arena",
- "def": "playing field where sports events take place; large structure for open-air sports or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "argue",
- "def": "invent and offer reasons to support or overthrow a proposition, opinion, or measure; debate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arise",
- "def": "come up from a lower to a higher position; come above the horizon; spring up; come into action",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aristocracy",
- "def": "hereditary nobility; privileged class",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aristocrat",
- "def": "one of the aristocracy or people of rank in a community; one of a ruling class; a noble",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arithmetic",
- "def": "theory of numerical calculations",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "armour",
- "def": "defensive covering, as of metal, wood, or leather, worn to protect the body against weapons",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arms",
- "def": "weapons considered collectively; official symbols of a family",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arouse",
- "def": "excite; stimulate; awaken from or as if from sleep",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arrange",
- "def": "put in proper order; dispose in the manner intended, or best suited for the purpose",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arrangement",
- "def": "composition; order",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "array",
- "def": "set out for display or use; place in orderly arrangement",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arrest",
- "def": "stop or slow down; catch someone's attention; take into custody",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arrogance",
- "def": "overbearing pride; haughtiness; manifest feeling of personal superiority in rank, power, or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "arrogant",
- "def": "arising from feeling or assumption of one's superiority toward others",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "article",
- "def": "essay; editorial; individual thing or element of a class",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "artificial",
- "def": "made by humans; produced rather than natural.",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ascend",
- "def": "climb; mount",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ascertain",
- "def": "find out for certain; discover with certainty; make sure of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ascribe",
- "def": "inscribe or dedicate; attribute to a specified cause, source, or origin; assign as a quality",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ashamed",
- "def": "affected by shame; abashed or confused by guilt",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aside",
- "def": "on, or to, one side; out of a straight line, course, or direction; at a little distance from the rest",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aspect",
- "def": "distinct feature or element in a problem; a way in which something can be viewed by the",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aspirin",
- "def": "white crystalline compound drug to relieve pain and reduce fever and inflammation",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assassination",
- "def": "act of assassinating; killing by treacherous violence; murder of public figure by",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assault",
- "def": "attack; onslaught",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assemble",
- "def": "put together; bring or call together into a group or whole",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assembly",
- "def": "gathering; meeting; a group of persons gathered together for common reason",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assert",
- "def": "declare or state with confidence; put oneself forward boldly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assess",
- "def": "estimate value; judge worth of something",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assessment",
- "def": "act of judging or assessing; amount determined as payable",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assign",
- "def": "appoint; allot; make over; point out authoritatively or exactly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assignment",
- "def": "task given to students; job; distribution; appointment",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assist",
- "def": "give help or support to, especially as a subordinate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assistance",
- "def": "activity of contributing to fulfillment of a need or furtherance of an effort or purpose",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assistant",
- "def": "helper; person who assists or helps someone else",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "associate",
- "def": "connect or join together; combine",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "association",
- "def": "connection, whether of persons of things; union of persons in a company or society for",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assorted",
- "def": "varied; miscellaneous",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assortment",
- "def": "variety; collection containing a variety of sorts of things",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assume",
- "def": "suppose; presume; take on; bear",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assumption",
- "def": "something taken for accepted as true without proof; taking over or taking possession of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assurance",
- "def": "promise or pledge; certainty; self-confidence; freedom from doubt",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assure",
- "def": "solidify; guarantee; convince",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "assured",
- "def": "made sure; exhibiting confidence or authority; indubitable",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "astonish",
- "def": "surprise; shock",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "astound",
- "def": "affect with wonder; surprise; shock",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "astray",
- "def": "away from the correct path or direction, either in a literal or in a figurative sense; wandering",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "astronomer",
- "def": "a physicist who studies astronomy",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "astronomical",
- "def": "enormously large or extensive; relating to astronomy",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "astronomy",
- "def": "branch of physics that studies celestial bodies and universe as a whole",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "athlete",
- "def": "sports man; one who contended for prize in public games",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "atlas",
- "def": "a bound volume of maps, charts, or tables",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "atmosphere",
- "def": "air",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "atom",
- "def": "a tiny piece of anything; the smallest component of an element having the chemical properties",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "atomic",
- "def": "of or relating to or comprising atoms; immeasurably small",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attach",
- "def": "fasten; annex; be in contact with",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attachment",
- "def": "a bond, as of affection or loyalty; fond regard; supplementary part; accessory",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attack",
- "def": "offensive move; expression of strong criticism; hostile comment",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attain",
- "def": "achieve or accomplish; gain",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attempt",
- "def": "action of trying at something",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attend",
- "def": "be present at; go to; take care of; tend",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attendance",
- "def": "act of being present",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attendant",
- "def": "aide; servant; accompanying; person who participates in a meeting",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attention",
- "def": "act or state of attending or heeding; application of the mind to any object of sense,",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attentive",
- "def": "alert and watchful; considerate; thoughtful",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attic",
- "def": "story or room directly below the roof of a building, especially a house;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attitude",
- "def": "posture, action, or disposition of a figure or a statue",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attorney",
- "def": "lawyer; one who is appointed by another to act in his place or stead; proxy",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attract",
- "def": "draw to, or cause to tend to; engage or fix, as the mind, attention; invite or allure",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attraction",
- "def": "appeal; a characteristic that provides pleasure and attracts",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "attribute",
- "def": "essential quality; reputation; honor",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "auction",
- "def": "public sale of property to the highest bidder",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "audience",
- "def": "a group of people within hearing; crowd seeing a stage performance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "auditorium",
- "def": "area of theater or concert hall where audience sits",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "august",
- "def": "impressive; majestic; inspiring awe or admiration",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "author",
- "def": "beginner, former, or first mover of anything; creator; originator; one who composes or writes",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "authority",
- "def": "jurisdiction; power to enforce laws, exact obedience, command, determine, or judge;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "authorization",
- "def": "act of giving authority or legal power; establishment by authority; sanction or warrant",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "authorize",
- "def": "empower; give permission for; sanction",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "autobiography",
- "def": "biography or story written by yourself",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "automate",
- "def": "control or operate by automation; replace or enhance human labor with machines",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "automatic",
- "def": "mechanized; operating with minimal human intervention; independent of external control",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "automation",
- "def": "act or process of converting the controlling of a machine or device to a more automatic",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "automobile",
- "def": "self-propelled vehicle suitable for use on street or roadway",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "autonomous",
- "def": "self-governing; not controlled by others or by outside forces; independent",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "autonomy",
- "def": "independence; self-government or the right of self-government; self-determination",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "auxiliary",
- "def": "helper, additional or subsidiary",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "avail",
- "def": "turn to advantage of; be of service to; profit; promote",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "available",
- "def": "convenient for use or disposal; not busy, free; obtainable; accessible",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "avenge",
- "def": "take vengeance for something, or on behalf of someone",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "avenue",
- "def": "way or opening for entrance or exit place; passage by which a place may be reached; broad",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "average",
- "def": "typical; mean; achieve or reach on average",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aviation",
- "def": "art or science of flying; flight; aeronautics",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "avoid",
- "def": "shield away from; prevent",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "aware",
- "def": "knowing; having knowledge or cognizance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "awe",
- "def": "mixed emotion of reverence, respect, dread, and wonder; fear, as of something evil",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "awful",
- "def": "causing fear, dread, or terror; extremely bad or unpleasant; terrible",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "awkward",
- "def": "difficult to handle or manage",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "awkwardly",
- "def": "in an uncomfortable, nervous or embarrassed way",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "axis",
- "def": "the center around which something rotates; pivot",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "axle",
- "def": "pin or spindle on which a wheel revolves, or which revolves with a wheel; transverse bar or shaft",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "baby-sitter",
- "def": "person engaged to care for children when the parents are not home",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bachelor",
- "def": "unmarried men; the first or lowest academic degree conferred by universities and colleges",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "backbone",
- "def": "support; mainstay; vertebrate spine or spinal column",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "backward",
- "def": "directed to the back or rear; unwilling; averse; reluctant; hesitating; undeveloped",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bacon",
- "def": "back and sides of a pig salted and smoked",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bacterium",
- "def": "single celled organism with no nucleus",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "badge",
- "def": "distinctive mark, token, or sign worn on the person",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "badminton",
- "def": "game played on a court with light long-handled rackets",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "baffle",
- "def": "frustrate as by confusing or perplexing; impede force or movement of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "baggage",
- "def": "trunks, bags, parcels, and suitcases in which one carries one's belongings while traveling;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bait",
- "def": "harass; tease; lure, entice, or entrap",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bake",
- "def": "prepare, as food, by cooking in a dry heat, either in an oven or under coals, or on heated stone",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "balance",
- "def": "being in equilibrium; equilibrium; symmetry; stability",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "balcony",
- "def": "platform projecting from the wall of a building",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bald",
- "def": "hairless; lacking a natural or usual covering",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ballet",
- "def": "a sort of theatrical representation by dancers",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "balloon",
- "def": "large non-rigid bag filled with gas or heated air",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "ballroom",
- "def": "large room used mainly for dancing",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bamboo",
- "def": "plant of family of grasses, growing in tropical countries",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "band",
- "def": "orchestra; team; strip; ribbon; belt; unite; ally",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bandage",
- "def": "strip of woven material, used in dressing and binding up wounds",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bang",
- "def": "a vigorous blow; a conspicuous success",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "banker",
- "def": "person in charge of the bank in a gambling game; one who owns or is an executive in a bank",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bankrupt",
- "def": "penniless, without any money; financially ruined",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "banner",
- "def": "flag; sign; a newspaper headline that runs across the full page",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "banquet",
- "def": "feast; entertainment of eating and drinking",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bar",
- "def": "a counter where you can obtain food or drink; cafe; strip; stick",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barber",
- "def": "haircutter; one whose business is to cut hair and to shave or trim beards",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bare",
- "def": "lacking the usual or appropriate covering or clothing",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barely",
- "def": "just; only; hardly; scarcely",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bargain",
- "def": "agreement between parties concerning the sale of property",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barge",
- "def": "flatboat; long, large boat for transporting freight that is unpowered and towed or pushed by",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bark",
- "def": "sound made by a dog; harsh sound uttered by a dog",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barn",
- "def": "an outlying farm building for storing grain or animal feed and housing farm animals",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barometer",
- "def": "instrument for determining the weight or pressure of the atmosphere",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "baron",
- "def": "title or degree of nobility",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barrel",
- "def": "vessel; large cylindrical container",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barren",
- "def": "desolate; fruitless and unproductive; lacking",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barrier",
- "def": "obstacle; structure built to bar passage; boundary or limit",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "barter",
- "def": "trade goods or services without the exchange of money",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "baseball",
- "def": "game played with a bat and ball by two opposing teams of nine players; ball used in this",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "basement",
- "def": "cellar; storage room",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "basin",
- "def": "bowl-shaped vessel, usually used for holding food or liquids",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bathe",
- "def": "wash by immersion, as in a bath; subject to bath; lave; immerse or cover one's self",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "batter",
- "def": "beat with successive blows; beat repeatedly and with violence",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "battery",
- "def": "beating or pounding; set of guns or heavy artillery; dry cell that produces electric current",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bay",
- "def": "inlet of the sea, usually smaller than a gulf; small body of water set off from the main body",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bazaar",
- "def": "market consisting of a street lined with shops and stalls, especially one in the Middle East",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bead",
- "def": "small piece of material, such as glass, plastic, or wood, that is pierced for stringing",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beak",
- "def": "nib ;horny projecting mouth of a bird",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beam",
- "def": "ray of light; long piece of metal or wood; long piece fixed or movable in structure, machine, or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bean",
- "def": "various edible seeds; small oval or roundish seed, berry, nut, or lump",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bear",
- "def": "support; sustain; carry; have; yield; give birth; hold up or support",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bearing",
- "def": "carrying another part; patient endurance; suffering without complaint; act of producing or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beat",
- "def": "whip; strike; defeat; hit repeatedly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "become",
- "def": "suit or be suitable to; be worthy of, or proper for; cause to appear well; grow or come to be",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beforehand",
- "def": "in state of anticipation; in advance; by way of preparation",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "behalf",
- "def": "represent; advantage, benefit, interest of someone",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "behave",
- "def": "perform; conduct oneself in a proper way",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "behavior",
- "def": "conduct; manner",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "belly",
- "def": "part of human body which extends downward from breast to thighs, and contains bowels;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beloved",
- "def": "greatly loved; dear to the heart",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "below",
- "def": "under, or lower in place; beneath not so high; inferior to in rank; unworthy of",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bend",
- "def": "strain or move out of a straight line; curve; turn toward some certain point",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beneath",
- "def": "lower in place, with something directly over or on; under; underneath; below",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beneficial",
- "def": "helpful; tending to promote physical well-being",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beneficiary",
- "def": "person entitled to benefits or proceeds of an insurance policy or will",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "benefit",
- "def": "advantage; something that aids or promotes well-being ; welfare; gain",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "benevolent",
- "def": "generous in providing aid to others; charitable",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bent",
- "def": "determined to do or have",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "besides",
- "def": "over and above; separate or distinct from; in addition to; other than",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bestow",
- "def": "give as gift; present",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bet",
- "def": "stake or pledge upon the event of a contingent issue; amount or object risked in a wager",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "betray",
- "def": "be unfaithful; reveal unconsciously or unwillingly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "beverage",
- "def": "liquids for drinking, usually excluding water; refreshment",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bewilder",
- "def": "lead into perplexity or confusion; perplex with mazes",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bias",
- "def": "preference or inclination, especially one that inhibits impartial judgment; influence in unfair way",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bid",
- "def": "make an offer of; propose; offer in words; declare, as a wish, a greeting, a threat, or defiance",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bill",
- "def": "invoice; act; proposal; statement or list of particulars, such as a theater program or menu",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "billion",
- "def": "the number that is represented as a one followed by 9 zeros",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bind",
- "def": "tie, or confine with a cord, band, or chain; make fast; contract; cohere or stick together",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "biographer",
- "def": "one who writes a book about somebody's life",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "biography",
- "def": "an account of the series of events making up a person's life; accounts of people's life",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "biologist",
- "def": "scientist who studies living organisms",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bite",
- "def": "pierce skin with teeth; seize with the teeth; sting with a stinger; eat into; have a sharp taste",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bitter",
- "def": "harsh or corrosive in tone; painful; acrid; acrimonious",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bitterness",
- "def": "sharp and bitter manner",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blacksmith",
- "def": "one who forges and shapes iron with a hammer and anvil",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blade",
- "def": "flat part of the leaf, of any plant, especially of gramineous plants; cutting part of an instrument",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blame",
- "def": "condemn; rebuke; find fault with; censure",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blank",
- "def": "of a white or pale color; without color; empty; void",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blanket",
- "def": "heavy, loosely woven fabric, usually of wool, and having a nap, used in bed clothing",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blast",
- "def": "explode; burst; gale; very strong gust of wind or air",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blaze",
- "def": "brilliant burst of fire; destructive fire; flame",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bleach",
- "def": "make white or colorless; blanch",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bleed",
- "def": "emit blood; lose blood; withdraw blood from the body",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blend",
- "def": "combination; mixture; forming uniform mixture",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bless",
- "def": "make or pronounce holy; consecrate; make happy",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blessing",
- "def": "praying for divine protection; formal act of giving approval",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blink",
- "def": "shut eyes briefly; wink",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "block",
- "def": "hinder; obstruct; indicate broadly without great detail; sketch",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bloom",
- "def": "flower; blossom; best time of youth; period of greatest prosperity or productivity",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blossom",
- "def": "reproductive organ of plants, especially one having showy or colorful parts",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blot",
- "def": "spot or stain, as of ink on paper; blur; weak point or failing",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blunder",
- "def": "serious mistake typically caused by ignorance or confusion",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blunt",
- "def": "having a dull edge or end; not sharp; lacking in feeling; insensitive",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "blush",
- "def": "become rosy or reddish; turn red, as if in embarrassment or shame",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "board",
- "def": "a committee having supervisory powers; a flat piece of material designed for a special",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boarding",
- "def": "wooden boards collectively; act of entering a ship; supplying with meals and lodgings for",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boast",
- "def": "show off oneself; speak of with excessive pride",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bodyguard",
- "def": "guard to protect or defend person; lifeguard",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boil",
- "def": "be agitated; pass from a liquid to vapor when heated; be excited with passion; heat in water",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bold",
- "def": "brave; daring; intrepid; impudent",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bolt",
- "def": "dash or dart off; move or jump suddenly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bond",
- "def": "link; connection; uniting force or tie; binding agreement; duty",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bonus",
- "def": "an extra dividend to the shareholders; money paid in addition to a stated compensation",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bookcase",
- "def": "case with shelves for holding books, especially one with glazed doors",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boom",
- "def": "bonanza; prosperity; prosper; expand; flourish",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "booming",
- "def": "deep and resonant; flourishing; thriving",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boost",
- "def": "raise; advance; push or shove upward",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "booth",
- "def": "house or shed built for temporary occupation; covered stall or temporary structure",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "border",
- "def": "outer part or edge of anything, as of a garment, a garden; margin; verge; brink; boundary",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bore",
- "def": "drill; make a hole in or through, with or as if with a drill",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boring",
- "def": "uninteresting and tiresome; dull",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bother",
- "def": "annoy; trouble; make agitated or nervous; fluster",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bounce",
- "def": "jolt; rebound after having struck an object or a surface",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bound",
- "def": "tied; held; committed; limit; constraint; leap; jump",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boundary",
- "def": "dividing line; border; frontier",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bourgeois",
- "def": "middle class; selfishly materialistic; dully conventional",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bow",
- "def": "inclination of head, or bending of body for reverence, respect, civility, or submission; bending or",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bowl",
- "def": "throw or roll a ball; move quickly and smoothly, especially by rolling",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "boycott",
- "def": "refrain from buying or using",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brace",
- "def": "something which holds anything tightly or supports it firmly, as bandage, cord, or rod;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brain",
- "def": "organ or seat of intellect; understanding or imagination",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brake",
- "def": "a piece of mechanism for retarding or stopping motion by friction",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brand",
- "def": "burning piece of wood; mark made by burning with a hot iron; distinctive mark upon in any",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breach",
- "def": "breaking of contract or duty",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breadth",
- "def": "measure or dimension from side to side; width; extent",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "break",
- "def": "opportunity to do something; pause or interval, as from work; sudden change",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breakdown",
- "def": "process of failing to function or continue; sudden collapse in physical or mental health;",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breakthrough",
- "def": "act of overcoming or penetrating an obstacle or restriction",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breath",
- "def": "air that is inhaled and exhaled in respiration",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breathe",
- "def": "respire; inhale and exhale air",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breed",
- "def": "raise; produce offspring; give birth to or hatch; mate",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "breeze",
- "def": "light current of air; gentle wind; progress swiftly and effortlessly",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bribe",
- "def": "something serving to influence or persuade; reward or gift with a view to prevent judgment",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bridle",
- "def": "headgear with which a horse is directed and which carries a bit and reins",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brief",
- "def": "short in time, duration, length, or extent; concise",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brighten",
- "def": "lighten; cheer; encourage; make or become bright or brighter",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brilliance",
- "def": "cleverness; magnificence",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brilliant",
- "def": "full of light; shining; bright; sharp and clear in tone",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brim",
- "def": "brink; edge",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brink",
- "def": "edge, margin, or border of a steep place verge",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brisk",
- "def": "marked by speed, liveliness, and vigor; energetic; swift; keen or sharp in speech or manner",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brittle",
- "def": "easily broken; having little elasticity",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "broadcast",
- "def": "message that is transmitted by radio or television; radio or television show",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "broaden",
- "def": "widen; grow broad or broader",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brochure",
- "def": "pamphlet; small book usually having paper cover",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bronze",
- "def": "an alloy of copper and tin and sometimes other elements",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brood",
- "def": "think long and anxiously; be in a state of gloomy, serious thought",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brook",
- "def": "creek; stream",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brown",
- "def": "of dark color, of various shades between black and red or yellow",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bruise",
- "def": "injure, as by a blow or collision; contuse; fight with the fists",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brutal",
- "def": "like a brute; savage; cruel; inhuman; merciless",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "brute",
- "def": "not having sensation; senseless; inanimate; unconscious; without intelligence",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bubble",
- "def": "foam; dome-shaped covering made of transparent glass or plastic; fantastic or impracticable",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bucket",
- "def": "vessel for drawing up water from a well; vessel for hoisting and conveying coal, ore, grain",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "bud",
- "def": "one that is not yet fully developed; sprout",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "budget",
- "def": "estimate; a sum of money allocated for a particular purpose",
- "pos": "",
- "phonetic": "",
- "zh": ""
- },
- {
- "word": "buffet",
- "def": "table with food set out for people to se",
- "pos": "",
- "phonetic": "",
- "zh": ""
- }
- ]
|