stock-7.0.sql 1.0 MB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627
  1. SET NAMES utf8;
  2. SET time_zone = '+00:00';
  3. SET foreign_key_checks = 0;
  4. SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
  5. CREATE TABLE `{%TABLE_PREFIX%}accounting` (
  6. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7. `name` VARCHAR(255) NOT NULL,
  8. `amount` DECIMAL(16, 2) NOT NULL,
  9. `tax_rate` DECIMAL(16, 2) DEFAULT NULL,
  10. `currency` VARCHAR(20) NOT NULL,
  11. `user_id` INT(11) DEFAULT NULL,
  12. `listing_id` INT(11) DEFAULT NULL,
  13. `sale_id` INT(11) DEFAULT NULL,
  14. `refund_flag` ENUM('none', 'allowed', 'requested', 'refunded', 'declined') NOT NULL DEFAULT 'none',
  15. `created_at` DATETIME NOT NULL,
  16. PRIMARY KEY (`id`),
  17. KEY `user_id` (`user_id`),
  18. KEY `listing_id` (`listing_id`),
  19. KEY `sale_id` (`sale_id`),
  20. CONSTRAINT `{%TABLE_PREFIX%}accounting_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  21. ON DELETE SET NULL,
  22. CONSTRAINT `{%TABLE_PREFIX%}accounting_ibfk_2` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  23. ON DELETE SET NULL,
  24. CONSTRAINT `{%TABLE_PREFIX%}accounting_ibfk_4` FOREIGN KEY (`sale_id`) REFERENCES `{%TABLE_PREFIX%}sales` (`id`)
  25. ON DELETE SET NULL
  26. )
  27. ENGINE =InnoDB
  28. DEFAULT CHARSET =utf8;
  29. CREATE TABLE `{%TABLE_PREFIX%}advertising` (
  30. `id` INT(11) NOT NULL AUTO_INCREMENT,
  31. `section` VARCHAR(255) NOT NULL
  32. COMMENT 'defaults: ''header'', ''footer''',
  33. `name` VARCHAR(255) NOT NULL,
  34. `type` ENUM('image', 'code') NOT NULL,
  35. `content` TEXT NOT NULL
  36. COMMENT 'if image it will hold the name of the file, otherwise it will hold the advert code',
  37. `url` TEXT NOT NULL
  38. COMMENT 'for image advert only',
  39. `nb_views` INT(11) NOT NULL,
  40. `nb_clicks` INT(11) NOT NULL,
  41. `created_at` DATETIME NOT NULL,
  42. `updated_at` DATETIME NOT NULL,
  43. PRIMARY KEY (`id`),
  44. KEY `section` (`section`)
  45. )
  46. ENGINE =InnoDB
  47. DEFAULT CHARSET =utf8;
  48. CREATE TABLE `{%TABLE_PREFIX%}autocomplete_tags` (
  49. `id` INT(11) NOT NULL AUTO_INCREMENT,
  50. `keywords` VARCHAR(255) NOT NULL,
  51. `category_id` INT(11) DEFAULT NULL,
  52. `nb_hits` INT(11) NOT NULL,
  53. `nb_results` INT(11) NOT NULL,
  54. `created_at` DATETIME NOT NULL,
  55. `updated_at` DATETIME DEFAULT NULL,
  56. PRIMARY KEY (`id`),
  57. KEY `keywords` (`keywords`),
  58. KEY `keywords_nb_hits` (`keywords`, `nb_hits`),
  59. KEY `category_id` (`category_id`),
  60. CONSTRAINT `{%TABLE_PREFIX%}autocomplete_tags_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `{%TABLE_PREFIX%}categories` (`id`)
  61. ON DELETE CASCADE
  62. )
  63. ENGINE =InnoDB
  64. DEFAULT CHARSET =utf8;
  65. CREATE TABLE `{%TABLE_PREFIX%}bids` (
  66. `id` INT(11) NOT NULL AUTO_INCREMENT,
  67. `listing_id` INT(11) NOT NULL,
  68. `user_id` INT(11) DEFAULT NULL,
  69. `amount` DECIMAL(16, 2) NOT NULL,
  70. `maximum_bid` DECIMAL(16, 2) NOT NULL,
  71. `outbid` TINYINT(4) NOT NULL,
  72. `created_at` DATETIME NOT NULL,
  73. `updated_at` DATETIME DEFAULT NULL,
  74. PRIMARY KEY (`id`),
  75. KEY `listing_id` (`listing_id`),
  76. KEY `user_id` (`user_id`),
  77. CONSTRAINT `{%TABLE_PREFIX%}bids_ibfk_1` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  78. ON DELETE CASCADE,
  79. CONSTRAINT `{%TABLE_PREFIX%}bids_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  80. ON DELETE SET NULL
  81. )
  82. ENGINE =InnoDB
  83. DEFAULT CHARSET =utf8;
  84. CREATE TABLE `{%TABLE_PREFIX%}bid_increments` (
  85. `id` INT(11) NOT NULL AUTO_INCREMENT,
  86. `amount` DECIMAL(16, 2) NOT NULL,
  87. `tier_from` DECIMAL(16, 2) NOT NULL,
  88. `tier_to` DECIMAL(16, 2) NOT NULL,
  89. PRIMARY KEY (`id`)
  90. )
  91. ENGINE =InnoDB
  92. DEFAULT CHARSET =utf8;
  93. INSERT INTO `{%TABLE_PREFIX%}bid_increments` (`id`, `amount`, `tier_from`, `tier_to`) VALUES
  94. (1, 2.00, 0.01, 10.00),
  95. (2, 5.00, 10.00, 100.00),
  96. (3, 10.00, 100.00, 1000.00),
  97. (4, 50.00, 1000.00, 10000.00),
  98. (5, 100.00, 10000.00, 99999999999.00);
  99. CREATE TABLE `{%TABLE_PREFIX%}categories` (
  100. `id` INT(11) NOT NULL AUTO_INCREMENT,
  101. `name` VARCHAR(255) NOT NULL,
  102. `parent_id` INT(11) DEFAULT NULL,
  103. `order_id` INT(11) NOT NULL,
  104. `user_id` INT(11) DEFAULT NULL,
  105. `slug` VARCHAR(255) NOT NULL,
  106. `full_name` TEXT NOT NULL,
  107. `counter` TEXT NOT NULL
  108. COMMENT 'by listing_type',
  109. `custom_fees` TINYINT(4) NOT NULL,
  110. `enable_auctions` TINYINT(4) NOT NULL DEFAULT '1',
  111. `enable_wanted` TINYINT(4) NOT NULL,
  112. `logo_path` TEXT NOT NULL,
  113. `meta_title` VARCHAR(500) NOT NULL,
  114. `meta_description` TEXT NOT NULL,
  115. PRIMARY KEY (`id`),
  116. KEY `user_id` (`user_id`),
  117. KEY `parent_id_order_id_name` (`parent_id`, `order_id`, `name`),
  118. KEY `enable_auctions` (`enable_auctions`),
  119. KEY `user_id_parent_id` (`user_id`, `parent_id`),
  120. CONSTRAINT `{%TABLE_PREFIX%}categories_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  121. ON DELETE CASCADE,
  122. CONSTRAINT `{%TABLE_PREFIX%}categories_ibfk_3` FOREIGN KEY (`parent_id`) REFERENCES `{%TABLE_PREFIX%}categories` (`id`)
  123. ON DELETE CASCADE
  124. )
  125. ENGINE =InnoDB
  126. DEFAULT CHARSET =utf8;
  127. INSERT INTO `{%TABLE_PREFIX%}categories` (`id`, `name`, `parent_id`, `order_id`, `user_id`, `slug`, `full_name`, `counter`, `custom_fees`, `enable_auctions`, `enable_wanted`, `logo_path`, `meta_title`, `meta_description`)
  128. VALUES
  129. (3677, 'Antiques', NULL, 1, NULL, 'antiques', 'Antiques', '', 0, 1, 0, '', '', ''),
  130. (3678, 'Art', NULL, 2, NULL, 'art', 'Art', '', 0, 1, 0, '', '', ''),
  131. (3679, 'Baby', NULL, 3, NULL, 'baby', 'Baby', '', 0, 1, 0, '', '', ''),
  132. (3680, 'Books, Comics & Magazines', NULL, 4, NULL, 'books-comics-magazines', 'Books, Comics & Magazines', '', 0, 1, 0, '', '', ''),
  133. (3681, 'Business, Office & Industrial', NULL, 5, NULL, 'business-office-industrial', 'Business, Office & Industrial', '', 0, 1, 0, '', '', ''),
  134. (3682, 'Cameras & Photography', NULL, 6, NULL, 'cameras-photography', 'Cameras & Photography', '', 0, 1, 0, '', '', ''),
  135. (3683, 'Cars, Motorcycles & Vehicles', NULL, 7, NULL, 'cars-motorcycles-vehicles', 'Cars, Motorcycles & Vehicles', '', 0, 1, 0, '', '', ''),
  136. (3684, 'Clothes, Shoes & Accessories', NULL, 8, NULL, 'clothes-shoes-accessories', 'Clothes, Shoes & Accessories', '', 0, 1, 0, '', '', ''),
  137. (3685, 'Coins', NULL, 9, NULL, 'coins', 'Coins', '', 0, 1, 0, '', '', ''),
  138. (3686, 'Collectables', NULL, 10, NULL, 'collectables', 'Collectables', '', 0, 1, 0, '', '', ''),
  139. (3687, 'Computers/Tablets & Networking', NULL, 11, NULL, 'computers-tablets-networking', 'Computers/Tablets & Networking', '', 0, 1, 0, '', '', ''),
  140. (3688, 'Crafts', NULL, 12, NULL, 'crafts', 'Crafts', '', 0, 1, 0, '', '', ''),
  141. (3689, 'Dolls & Bears', NULL, 13, NULL, 'dolls-bears', 'Dolls & Bears', '', 0, 1, 0, '', '', ''),
  142. (3690, 'DVDs, Films & TV', NULL, 14, NULL, 'dvds-films-tv', 'DVDs, Films & TV', '', 0, 1, 0, '', '', ''),
  143. (3691, 'Events Tickets', NULL, 15, NULL, 'events-tickets', 'Events Tickets', '', 0, 1, 0, '', '', ''),
  144. (3692, 'Garden & Patio', NULL, 16, NULL, 'garden-patio', 'Garden & Patio', '', 0, 1, 0, '', '', ''),
  145. (3693, 'Health & Beauty', NULL, 17, NULL, 'health-beauty', 'Health & Beauty', '', 0, 1, 0, '', '', ''),
  146. (3694, 'Holidays & Travel', NULL, 18, NULL, 'holidays-travel', 'Holidays & Travel', '', 0, 1, 0, '', '', ''),
  147. (3695, 'Home, Furniture & DIY', NULL, 19, NULL, 'home-furniture-diy', 'Home, Furniture & DIY', '', 0, 1, 0, '', '', ''),
  148. (3696, 'Jewellery & Watches', NULL, 20, NULL, 'jewellery-watches', 'Jewellery & Watches', '', 0, 1, 0, '', '', ''),
  149. (3697, 'Mobile Phones & Communication', NULL, 21, NULL, 'mobile-phones-communication', 'Mobile Phones & Communication', '', 0, 1, 0, '', '', ''),
  150. (3698, 'Music', NULL, 22, NULL, 'music', 'Music', '', 0, 1, 0, '', '', ''),
  151. (3699, 'Musical Instruments', NULL, 23, NULL, 'musical-instruments', 'Musical Instruments', '', 0, 1, 0, '', '', ''),
  152. (3700, 'Pet Supplies', NULL, 24, NULL, 'pet-supplies', 'Pet Supplies', '', 0, 1, 0, '', '', ''),
  153. (3701, 'Pottery, Porcelain & Glass', NULL, 25, NULL, 'pottery-porcelain-glass', 'Pottery, Porcelain & Glass', '', 0, 1, 0, '', '', ''),
  154. (3702, 'Property', NULL, 26, NULL, 'property', 'Property', '', 0, 1, 0, '', '', ''),
  155. (3703, 'Sound & Vision', NULL, 27, NULL, 'sound-vision', 'Sound & Vision', '', 0, 1, 0, '', '', ''),
  156. (3704, 'Sporting Goods', NULL, 28, NULL, 'sporting-goods', 'Sporting Goods', '', 0, 1, 0, '', '', ''),
  157. (3705, 'Sports Memorabilia', NULL, 29, NULL, 'sports-memorabilia', 'Sports Memorabilia', '', 0, 1, 0, '', '', ''),
  158. (3706, 'Stamps', NULL, 30, NULL, 'stamps', 'Stamps', '', 0, 1, 0, '', '', ''),
  159. (3707, 'Toys & Games', NULL, 31, NULL, 'toys-games', 'Toys & Games', '', 0, 1, 0, '', '', ''),
  160. (3708, 'Vehicle Parts & Accessories', NULL, 32, NULL, 'vehicle-parts-accessories', 'Vehicle Parts & Accessories', '', 0, 1, 0, '', '', ''),
  161. (3709, 'Video Games & Consoles', NULL, 33, NULL, 'video-games-consoles', 'Video Games & Consoles', '', 0, 1, 0, '', '', ''),
  162. (3710, 'Wholesale & Job Lots', NULL, 34, NULL, 'wholesale-job-lots', 'Wholesale & Job Lots', '', 0, 1, 0, '', '', ''),
  163. (3711, 'Everything Else', NULL, 35, NULL, 'everything-else', 'Everything Else', '', 0, 1, 0, '', '', ''),
  164. (3712, 'Antique Clocks', 3677, 0, NULL, 'antiques_antique-clocks', 'Antiques :: Antique Clocks', '', 0, 1, 0, '', '', ''),
  165. (3713, 'Bracket Clocks', 3712, 0, NULL, 'antiques_antique-clocks_bracket-clocks', 'Antiques :: Antique Clocks :: Bracket Clocks', '', 0, 1, 0, '', '', ''),
  166. (3714, 'Cuckoo Clocks', 3712, 0, NULL, 'antiques_antique-clocks_cuckoo-clocks', 'Antiques :: Antique Clocks :: Cuckoo Clocks', '', 0, 1, 0, '', '', ''),
  167. (3715, 'Grandfather Clocks', 3712, 0, NULL, 'antiques_antique-clocks_grandfather-clocks', 'Antiques :: Antique Clocks :: Grandfather Clocks', '', 0, 1, 0, '', '', ''),
  168. (3716, 'Mantel/ Carriage Clocks', 3712, 0, NULL, 'antiques_antique-clocks_mantel-carriage-clocks', 'Antiques :: Antique Clocks :: Mantel/ Carriage Clocks', '', 0, 1, 0, '', '', ''),
  169. (3717, 'Wall Clocks', 3712, 0, NULL, 'antiques_antique-clocks_wall-clocks', 'Antiques :: Antique Clocks :: Wall Clocks', '', 0, 1, 0, '', '', ''),
  170. (3718, 'Clock Parts', 3712, 0, NULL, 'antiques_antique-clocks_clock-parts', 'Antiques :: Antique Clocks :: Clock Parts', '', 0, 1, 0, '', '', ''),
  171. (3719, 'Other Antique Clocks', 3712, 0, NULL, 'antiques_antique-clocks_other-antique-clocks', 'Antiques :: Antique Clocks :: Other Antique Clocks', '', 0, 1, 0, '', '', ''),
  172. (3720, 'Antique Furniture', 3677, 0, NULL, 'antiques_antique-furniture', 'Antiques :: Antique Furniture', '', 0, 1, 0, '', '', ''),
  173. (3721, 'Armoires/ Wardrobes', 3720, 0, NULL, 'antiques_antique-furniture_armoires-wardrobes', 'Antiques :: Antique Furniture :: Armoires/ Wardrobes', '', 0, 1, 0, '', '', ''),
  174. (3722, 'Beds', 3720, 0, NULL, 'antiques_antique-furniture_beds', 'Antiques :: Antique Furniture :: Beds', '', 0, 1, 0, '', '', ''),
  175. (3723, 'Benches/ Stools', 3720, 0, NULL, 'antiques_antique-furniture_benches-stools', 'Antiques :: Antique Furniture :: Benches/ Stools', '', 0, 1, 0, '', '', ''),
  176. (3724, 'Bookcases', 3720, 0, NULL, 'antiques_antique-furniture_bookcases', 'Antiques :: Antique Furniture :: Bookcases', '', 0, 1, 0, '', '', ''),
  177. (3725, 'Boxes/ Chests', 3720, 0, NULL, 'antiques_antique-furniture_boxes-chests', 'Antiques :: Antique Furniture :: Boxes/ Chests', '', 0, 1, 0, '', '', ''),
  178. (3726, 'Bureaux', 3720, 0, NULL, 'antiques_antique-furniture_bureaux', 'Antiques :: Antique Furniture :: Bureaux', '', 0, 1, 0, '', '', ''),
  179. (3727, 'Cabinets', 3720, 0, NULL, 'antiques_antique-furniture_cabinets', 'Antiques :: Antique Furniture :: Cabinets', '', 0, 1, 0, '', '', ''),
  180. (3728, 'Chairs', 3720, 0, NULL, 'antiques_antique-furniture_chairs', 'Antiques :: Antique Furniture :: Chairs', '', 0, 1, 0, '', '', ''),
  181. (3729, 'Chests of Drawers', 3720, 0, NULL, 'antiques_antique-furniture_chests-of-drawers', 'Antiques :: Antique Furniture :: Chests of Drawers', '', 0, 1, 0, '', '', ''),
  182. (3730, 'Coffers', 3720, 0, NULL, 'antiques_antique-furniture_coffers', 'Antiques :: Antique Furniture :: Coffers', '', 0, 1, 0, '', '', ''),
  183. (3731, 'Desks', 3720, 0, NULL, 'antiques_antique-furniture_desks', 'Antiques :: Antique Furniture :: Desks', '', 0, 1, 0, '', '', ''),
  184. (3732, 'Dressers', 3720, 0, NULL, 'antiques_antique-furniture_dressers', 'Antiques :: Antique Furniture :: Dressers', '', 0, 1, 0, '', '', ''),
  185. (3733, 'Dressing Tables', 3720, 0, NULL, 'antiques_antique-furniture_dressing-tables', 'Antiques :: Antique Furniture :: Dressing Tables', '', 0, 1, 0, '', '', ''),
  186. (3734, 'Lamps', 3720, 0, NULL, 'antiques_antique-furniture_lamps', 'Antiques :: Antique Furniture :: Lamps', '', 0, 1, 0, '', '', ''),
  187. (3735, 'Mirrors', 3720, 0, NULL, 'antiques_antique-furniture_mirrors', 'Antiques :: Antique Furniture :: Mirrors', '', 0, 1, 0, '', '', ''),
  188. (3736, 'Sideboards', 3720, 0, NULL, 'antiques_antique-furniture_sideboards', 'Antiques :: Antique Furniture :: Sideboards', '', 0, 1, 0, '', '', ''),
  189. (3737, 'Sofas/ Chaises', 3720, 0, NULL, 'antiques_antique-furniture_sofas-chaises', 'Antiques :: Antique Furniture :: Sofas/ Chaises', '', 0, 1, 0, '', '', ''),
  190. (3738, 'Stands', 3720, 0, NULL, 'antiques_antique-furniture_stands', 'Antiques :: Antique Furniture :: Stands', '', 0, 1, 0, '', '', ''),
  191. (3739, 'Tables', 3720, 0, NULL, 'antiques_antique-furniture_tables', 'Antiques :: Antique Furniture :: Tables', '', 0, 1, 0, '', '', ''),
  192. (3740, 'Other Antique Furniture', 3720, 0, NULL, 'antiques_antique-furniture_other-antique-furniture', 'Antiques :: Antique Furniture :: Other Antique Furniture', '', 0, 1, 0, '', '', ''),
  193. (3741, 'Antiquities', 3677, 0, NULL, 'antiques_antiquities', 'Antiques :: Antiquities', '', 0, 1, 0, '', '', ''),
  194. (3742, 'Americas', 3741, 0, NULL, 'antiques_antiquities_americas', 'Antiques :: Antiquities :: Americas', '', 0, 1, 0, '', '', ''),
  195. (3743, 'British', 3741, 0, NULL, 'antiques_antiquities_british', 'Antiques :: Antiquities :: British', '', 0, 1, 0, '', '', ''),
  196. (3744, 'Chinese', 3741, 0, NULL, 'antiques_antiquities_chinese', 'Antiques :: Antiquities :: Chinese', '', 0, 1, 0, '', '', ''),
  197. (3745, 'Egyptian', 3741, 0, NULL, 'antiques_antiquities_egyptian', 'Antiques :: Antiquities :: Egyptian', '', 0, 1, 0, '', '', ''),
  198. (3746, 'European', 3741, 0, NULL, 'antiques_antiquities_european', 'Antiques :: Antiquities :: European', '', 0, 1, 0, '', '', ''),
  199. (3747, 'Greek', 3741, 0, NULL, 'antiques_antiquities_greek', 'Antiques :: Antiquities :: Greek', '', 0, 1, 0, '', '', ''),
  200. (3748, 'Irish', 3741, 0, NULL, 'antiques_antiquities_irish', 'Antiques :: Antiquities :: Irish', '', 0, 1, 0, '', '', ''),
  201. (3749, 'Near Eastern', 3741, 0, NULL, 'antiques_antiquities_near-eastern', 'Antiques :: Antiquities :: Near Eastern', '', 0, 1, 0, '', '', ''),
  202. (3750, 'Prehistoric', 3741, 0, NULL, 'antiques_antiquities_prehistoric', 'Antiques :: Antiquities :: Prehistoric', '', 0, 1, 0, '', '', ''),
  203. (3751, 'Roman', 3741, 0, NULL, 'antiques_antiquities_roman', 'Antiques :: Antiquities :: Roman', '', 0, 1, 0, '', '', ''),
  204. (3752, 'Russian', 3741, 0, NULL, 'antiques_antiquities_russian', 'Antiques :: Antiquities :: Russian', '', 0, 1, 0, '', '', ''),
  205. (3753, 'Scandinavian', 3741, 0, NULL, 'antiques_antiquities_scandinavian', 'Antiques :: Antiquities :: Scandinavian', '', 0, 1, 0, '', '', ''),
  206. (3754, 'Other Antiquities', 3741, 0, NULL, 'antiques_antiquities_other-antiquities', 'Antiques :: Antiquities :: Other Antiquities', '', 0, 1, 0, '', '', ''),
  207. (3755, 'Architectural Antiques', 3677, 0, NULL, 'antiques_architectural-antiques', 'Antiques :: Architectural Antiques', '', 0, 1, 0, '', '', ''),
  208. (3756, 'Chandeliers', 3755, 0, NULL, 'antiques_architectural-antiques_chandeliers', 'Antiques :: Architectural Antiques :: Chandeliers', '', 0, 1, 0, '', '', ''),
  209. (3757, 'Doors', 3755, 0, NULL, 'antiques_architectural-antiques_doors', 'Antiques :: Architectural Antiques :: Doors', '', 0, 1, 0, '', '', ''),
  210. (3758, 'Door Bells/ Knockers', 3755, 0, NULL, 'antiques_architectural-antiques_door-bells-knockers', 'Antiques :: Architectural Antiques :: Door Bells/ Knockers', '', 0, 1, 0, '', '', ''),
  211. (3759, 'Door Knobs/ Handles', 3755, 0, NULL, 'antiques_architectural-antiques_door-knobs-handles', 'Antiques :: Architectural Antiques :: Door Knobs/ Handles', '', 0, 1, 0, '', '', ''),
  212. (3760, 'Fireplaces', 3755, 0, NULL, 'antiques_architectural-antiques_fireplaces', 'Antiques :: Architectural Antiques :: Fireplaces', '', 0, 1, 0, '', '', ''),
  213. (3761, 'Garden', 3755, 0, NULL, 'antiques_architectural-antiques_garden', 'Antiques :: Architectural Antiques :: Garden', '', 0, 1, 0, '', '', ''),
  214. (3762, 'Hardware/ Home', 3755, 0, NULL, 'antiques_architectural-antiques_hardware-home', 'Antiques :: Architectural Antiques :: Hardware/ Home', '', 0, 1, 0, '', '', ''),
  215. (3763, 'Hooks/ Brackets', 3755, 0, NULL, 'antiques_architectural-antiques_hooks-brackets', 'Antiques :: Architectural Antiques :: Hooks/ Brackets', '', 0, 1, 0, '', '', ''),
  216. (3764, 'Light Switches', 3755, 0, NULL, 'antiques_architectural-antiques_light-switches', 'Antiques :: Architectural Antiques :: Light Switches', '', 0, 1, 0, '', '', ''),
  217. (3765, 'Locks/ Keys', 3755, 0, NULL, 'antiques_architectural-antiques_locks-keys', 'Antiques :: Architectural Antiques :: Locks/ Keys', '', 0, 1, 0, '', '', ''),
  218. (3766, 'Plaques', 3755, 0, NULL, 'antiques_architectural-antiques_plaques', 'Antiques :: Architectural Antiques :: Plaques', '', 0, 1, 0, '', '', ''),
  219. (3767, 'Signs', 3755, 0, NULL, 'antiques_architectural-antiques_signs', 'Antiques :: Architectural Antiques :: Signs', '', 0, 1, 0, '', '', ''),
  220. (3768, 'Stained Glass', 3755, 0, NULL, 'antiques_architectural-antiques_stained-glass', 'Antiques :: Architectural Antiques :: Stained Glass', '', 0, 1, 0, '', '', ''),
  221. (3769, 'Stair/ Carpet Rods', 3755, 0, NULL, 'antiques_architectural-antiques_stair-carpet-rods', 'Antiques :: Architectural Antiques :: Stair/ Carpet Rods', '', 0, 1, 0, '', '', ''),
  222. (3770, 'Tiles', 3755, 0, NULL, 'antiques_architectural-antiques_tiles', 'Antiques :: Architectural Antiques :: Tiles', '', 0, 1, 0, '', '', ''),
  223. (3771, 'Weathervanes/ Lightning Rods', 3755, 0, NULL, 'antiques_architectural-antiques_weathervanes-lightning-rods', 'Antiques :: Architectural Antiques :: Weathervanes/ Lightning Rods', '', 0, 1, 0, '', '', ''),
  224. (3772, 'Windows/ Sashes/ Locks', 3755, 0, NULL, 'antiques_architectural-antiques_windows-sashes-locks', 'Antiques :: Architectural Antiques :: Windows/ Sashes/ Locks', '', 0, 1, 0, '', '', ''),
  225. (3773, 'Other Architectural Antiques', 3755, 0, NULL, 'antiques_architectural-antiques_other-architectural-antiques', 'Antiques :: Architectural Antiques :: Other Architectural Antiques', '', 0, 1, 0, '', '', ''),
  226. (3774, 'Asian/ Oriental Antiques', 3677, 0, NULL, 'antiques_asian-oriental-antiques', 'Antiques :: Asian/ Oriental Antiques', '', 0, 1, 0, '', '', ''),
  227. (3775, 'Chinese', 3774, 0, NULL, 'antiques_asian-oriental-antiques_chinese', 'Antiques :: Asian/ Oriental Antiques :: Chinese', '', 0, 1, 0, '', '', ''),
  228. (3776, 'Indian', 3774, 0, NULL, 'antiques_asian-oriental-antiques_indian', 'Antiques :: Asian/ Oriental Antiques :: Indian', '', 0, 1, 0, '', '', ''),
  229. (3777, 'Islamic/ Middle Eastern', 3774, 0, NULL, 'antiques_asian-oriental-antiques_islamic-middle-eastern', 'Antiques :: Asian/ Oriental Antiques :: Islamic/ Middle Eastern', '', 0, 1, 0, '', '', ''),
  230. (3778, 'Japanese', 3774, 0, NULL, 'antiques_asian-oriental-antiques_japanese', 'Antiques :: Asian/ Oriental Antiques :: Japanese', '', 0, 1, 0, '', '', ''),
  231. (3779, 'South-East Asian', 3774, 0, NULL, 'antiques_asian-oriental-antiques_south-east-asian', 'Antiques :: Asian/ Oriental Antiques :: South-East Asian', '', 0, 1, 0, '', '', ''),
  232. (3780, 'Tibetan', 3774, 0, NULL, 'antiques_asian-oriental-antiques_tibetan', 'Antiques :: Asian/ Oriental Antiques :: Tibetan', '', 0, 1, 0, '', '', ''),
  233. (3781, 'Other Asian/ Oriental Antiques', 3774, 0, NULL, 'antiques_asian-oriental-antiques_other-asian-oriental-antiques', 'Antiques :: Asian/ Oriental Antiques :: Other Asian/ Oriental Antiques', '', 0, 1, 0, '', '', ''),
  234. (3782, 'Carpets/ Rugs', 3677, 0, NULL, 'antiques_carpets-rugs', 'Antiques :: Carpets/ Rugs', '', 0, 1, 0, '', '', ''),
  235. (3783, 'Decorative Arts', 3677, 0, NULL, 'antiques_decorative-arts', 'Antiques :: Decorative Arts', '', 0, 1, 0, '', '', ''),
  236. (3784, 'Fans', 3783, 0, NULL, 'antiques_decorative-arts_fans', 'Antiques :: Decorative Arts :: Fans', '', 0, 1, 0, '', '', ''),
  237. (3785, 'Figurines/ Statues', 3783, 0, NULL, 'antiques_decorative-arts_figurines-statues', 'Antiques :: Decorative Arts :: Figurines/ Statues', '', 0, 1, 0, '', '', ''),
  238. (3786, 'Paintings/ Prints', 3783, 0, NULL, 'antiques_decorative-arts_paintings-prints', 'Antiques :: Decorative Arts :: Paintings/ Prints', '', 0, 1, 0, '', '', ''),
  239. (3787, 'Picture Frames', 3783, 0, NULL, 'antiques_decorative-arts_picture-frames', 'Antiques :: Decorative Arts :: Picture Frames', '', 0, 1, 0, '', '', ''),
  240. (3788, 'Vases/ Urns', 3783, 0, NULL, 'antiques_decorative-arts_vases-urns', 'Antiques :: Decorative Arts :: Vases/ Urns', '', 0, 1, 0, '', '', ''),
  241. (3789, 'Ethnographic Antiques', 3677, 0, NULL, 'antiques_ethnographic-antiques', 'Antiques :: Ethnographic Antiques', '', 0, 1, 0, '', '', ''),
  242. (3790, 'African', 3789, 0, NULL, 'antiques_ethnographic-antiques_african', 'Antiques :: Ethnographic Antiques :: African', '', 0, 1, 0, '', '', ''),
  243. (3791, 'Latin American', 3789, 0, NULL, 'antiques_ethnographic-antiques_latin-american', 'Antiques :: Ethnographic Antiques :: Latin American', '', 0, 1, 0, '', '', ''),
  244. (3792, 'Native American', 3789, 0, NULL, 'antiques_ethnographic-antiques_native-american', 'Antiques :: Ethnographic Antiques :: Native American', '', 0, 1, 0, '', '', ''),
  245. (3793, 'Oceanian/ Australasian', 3789, 0, NULL, 'antiques_ethnographic-antiques_oceanian-australasian', 'Antiques :: Ethnographic Antiques :: Oceanian/ Australasian', '', 0, 1, 0, '', '', ''),
  246. (3794, 'Other Ethnographic Antiques', 3789, 0, NULL, 'antiques_ethnographic-antiques_other-ethnographic-antiques', 'Antiques :: Ethnographic Antiques :: Other Ethnographic Antiques', '', 0, 1, 0, '', '', ''),
  247. (3795, 'Fabric/ Textiles', 3677, 0, NULL, 'antiques_fabric-textiles', 'Antiques :: Fabric/ Textiles', '', 0, 1, 0, '', '', ''),
  248. (3796, 'Embroidery', 3795, 0, NULL, 'antiques_fabric-textiles_embroidery', 'Antiques :: Fabric/ Textiles :: Embroidery', '', 0, 1, 0, '', '', ''),
  249. (3797, 'Fabric', 3795, 0, NULL, 'antiques_fabric-textiles_fabric', 'Antiques :: Fabric/ Textiles :: Fabric', '', 0, 1, 0, '', '', ''),
  250. (3798, 'Lace/ Crochet/ Doilies', 3795, 0, NULL, 'antiques_fabric-textiles_lace-crochet-doilies', 'Antiques :: Fabric/ Textiles :: Lace/ Crochet/ Doilies', '', 0, 1, 0, '', '', ''),
  251. (3799, 'Linens', 3795, 0, NULL, 'antiques_fabric-textiles_linens', 'Antiques :: Fabric/ Textiles :: Linens', '', 0, 1, 0, '', '', ''),
  252. (3800, 'Pillows', 3795, 0, NULL, 'antiques_fabric-textiles_pillows', 'Antiques :: Fabric/ Textiles :: Pillows', '', 0, 1, 0, '', '', ''),
  253. (3801, 'Quilts', 3795, 0, NULL, 'antiques_fabric-textiles_quilts', 'Antiques :: Fabric/ Textiles :: Quilts', '', 0, 1, 0, '', '', ''),
  254. (3802, 'Samplers', 3795, 0, NULL, 'antiques_fabric-textiles_samplers', 'Antiques :: Fabric/ Textiles :: Samplers', '', 0, 1, 0, '', '', ''),
  255. (3803, 'Tapestries', 3795, 0, NULL, 'antiques_fabric-textiles_tapestries', 'Antiques :: Fabric/ Textiles :: Tapestries', '', 0, 1, 0, '', '', ''),
  256. (3804, 'Other Fabric/ Textiles', 3795, 0, NULL, 'antiques_fabric-textiles_other-fabric-textiles', 'Antiques :: Fabric/ Textiles :: Other Fabric/ Textiles', '', 0, 1, 0, '', '', ''),
  257. (3805, 'Manuscripts', 3677, 0, NULL, 'antiques_manuscripts', 'Antiques :: Manuscripts', '', 0, 1, 0, '', '', ''),
  258. (3806, 'Maps', 3677, 0, NULL, 'antiques_maps', 'Antiques :: Maps', '', 0, 1, 0, '', '', ''),
  259. (3807, 'Marine/ Maritime', 3677, 0, NULL, 'antiques_marine-maritime', 'Antiques :: Marine/ Maritime', '', 0, 1, 0, '', '', ''),
  260. (3808, 'Badges/ Crests', 3807, 0, NULL, 'antiques_marine-maritime_badges-crests', 'Antiques :: Marine/ Maritime :: Badges/ Crests', '', 0, 1, 0, '', '', ''),
  261. (3809, 'Compasses', 3807, 0, NULL, 'antiques_marine-maritime_compasses', 'Antiques :: Marine/ Maritime :: Compasses', '', 0, 1, 0, '', '', ''),
  262. (3810, 'Models', 3807, 0, NULL, 'antiques_marine-maritime_models', 'Antiques :: Marine/ Maritime :: Models', '', 0, 1, 0, '', '', ''),
  263. (3811, 'Sextants', 3807, 0, NULL, 'antiques_marine-maritime_sextants', 'Antiques :: Marine/ Maritime :: Sextants', '', 0, 1, 0, '', '', ''),
  264. (3812, 'Telescopes', 3807, 0, NULL, 'antiques_marine-maritime_telescopes', 'Antiques :: Marine/ Maritime :: Telescopes', '', 0, 1, 0, '', '', ''),
  265. (3813, 'Metalware', 3677, 0, NULL, 'antiques_metalware', 'Antiques :: Metalware', '', 0, 1, 0, '', '', ''),
  266. (3814, 'Brass', 3813, 0, NULL, 'antiques_metalware_brass', 'Antiques :: Metalware :: Brass', '', 0, 1, 0, '', '', ''),
  267. (3815, 'Bronze', 3813, 0, NULL, 'antiques_metalware_bronze', 'Antiques :: Metalware :: Bronze', '', 0, 1, 0, '', '', ''),
  268. (3816, 'Cast Iron', 3813, 0, NULL, 'antiques_metalware_cast-iron', 'Antiques :: Metalware :: Cast Iron', '', 0, 1, 0, '', '', ''),
  269. (3817, 'Copper', 3813, 0, NULL, 'antiques_metalware_copper', 'Antiques :: Metalware :: Copper', '', 0, 1, 0, '', '', ''),
  270. (3818, 'Gold', 3813, 0, NULL, 'antiques_metalware_gold', 'Antiques :: Metalware :: Gold', '', 0, 1, 0, '', '', ''),
  271. (3819, 'Pewter', 3813, 0, NULL, 'antiques_metalware_pewter', 'Antiques :: Metalware :: Pewter', '', 0, 1, 0, '', '', ''),
  272. (3820, 'Spelter', 3813, 0, NULL, 'antiques_metalware_spelter', 'Antiques :: Metalware :: Spelter', '', 0, 1, 0, '', '', ''),
  273. (3821, 'Tin', 3813, 0, NULL, 'antiques_metalware_tin', 'Antiques :: Metalware :: Tin', '', 0, 1, 0, '', '', ''),
  274. (3822, 'Wrought Iron', 3813, 0, NULL, 'antiques_metalware_wrought-iron', 'Antiques :: Metalware :: Wrought Iron', '', 0, 1, 0, '', '', ''),
  275. (3823, 'Other Metalware', 3813, 0, NULL, 'antiques_metalware_other-metalware', 'Antiques :: Metalware :: Other Metalware', '', 0, 1, 0, '', '', ''),
  276. (3824, 'Science/ Medicine', 3677, 0, NULL, 'antiques_science-medicine', 'Antiques :: Science/ Medicine', '', 0, 1, 0, '', '', ''),
  277. (3825, 'Medical Instruments', 3824, 0, NULL, 'antiques_science-medicine_medical-instruments', 'Antiques :: Science/ Medicine :: Medical Instruments', '', 0, 1, 0, '', '', ''),
  278. (3826, 'Scientific Instruments', 3824, 0, NULL, 'antiques_science-medicine_scientific-instruments', 'Antiques :: Science/ Medicine :: Scientific Instruments', '', 0, 1, 0, '', '', ''),
  279. (3827, 'Other Science/ Medicine', 3824, 0, NULL, 'antiques_science-medicine_other-science-medicine', 'Antiques :: Science/ Medicine :: Other Science/ Medicine', '', 0, 1, 0, '', '', ''),
  280. (3828, 'Silver', 3677, 0, NULL, 'antiques_silver', 'Antiques :: Silver', '', 0, 1, 0, '', '', ''),
  281. (3829, 'Silver Plate', 3828, 0, NULL, 'antiques_silver_silver-plate', 'Antiques :: Silver :: Silver Plate', '', 0, 1, 0, '', '', ''),
  282. (3830, 'Solid Silver', 3828, 0, NULL, 'antiques_silver_solid-silver', 'Antiques :: Silver :: Solid Silver', '', 0, 1, 0, '', '', ''),
  283. (3831, 'Woodenware', 3677, 0, NULL, 'antiques_woodenware', 'Antiques :: Woodenware', '', 0, 1, 0, '', '', ''),
  284. (3832, 'Bowls', 3831, 0, NULL, 'antiques_woodenware_bowls', 'Antiques :: Woodenware :: Bowls', '', 0, 1, 0, '', '', ''),
  285. (3833, 'Boxes', 3831, 0, NULL, 'antiques_woodenware_boxes', 'Antiques :: Woodenware :: Boxes', '', 0, 1, 0, '', '', ''),
  286. (3834, 'Candlesticks', 3831, 0, NULL, 'antiques_woodenware_candlesticks', 'Antiques :: Woodenware :: Candlesticks', '', 0, 1, 0, '', '', ''),
  287. (3835, 'Carved Figures/ Models', 3831, 0, NULL, 'antiques_woodenware_carved-figures-models', 'Antiques :: Woodenware :: Carved Figures/ Models', '', 0, 1, 0, '', '', ''),
  288. (3836, 'Ornaments', 3831, 0, NULL, 'antiques_woodenware_ornaments', 'Antiques :: Woodenware :: Ornaments', '', 0, 1, 0, '', '', ''),
  289. (3837, 'Pots/ Jars', 3831, 0, NULL, 'antiques_woodenware_pots-jars', 'Antiques :: Woodenware :: Pots/ Jars', '', 0, 1, 0, '', '', ''),
  290. (3838, 'Stands', 3831, 0, NULL, 'antiques_woodenware_stands', 'Antiques :: Woodenware :: Stands', '', 0, 1, 0, '', '', ''),
  291. (3839, 'Tea Caddies', 3831, 0, NULL, 'antiques_woodenware_tea-caddies', 'Antiques :: Woodenware :: Tea Caddies', '', 0, 1, 0, '', '', ''),
  292. (3840, 'Trays', 3831, 0, NULL, 'antiques_woodenware_trays', 'Antiques :: Woodenware :: Trays', '', 0, 1, 0, '', '', ''),
  293. (3841, 'Treen', 3831, 0, NULL, 'antiques_woodenware_treen', 'Antiques :: Woodenware :: Treen', '', 0, 1, 0, '', '', ''),
  294. (3842, 'Walking Sticks/ Canes', 3831, 0, NULL, 'antiques_woodenware_walking-sticks-canes', 'Antiques :: Woodenware :: Walking Sticks/ Canes', '', 0, 1, 0, '', '', ''),
  295. (3843, 'Writing Slopes', 3831, 0, NULL, 'antiques_woodenware_writing-slopes', 'Antiques :: Woodenware :: Writing Slopes', '', 0, 1, 0, '', '', ''),
  296. (3844, 'Other Woodenware', 3831, 0, NULL, 'antiques_woodenware_other-woodenware', 'Antiques :: Woodenware :: Other Woodenware', '', 0, 1, 0, '', '', ''),
  297. (3845, 'Periods/Styles', 3677, 0, NULL, 'antiques_periods-styles', 'Antiques :: Periods/Styles', '', 0, 1, 0, '', '', ''),
  298. (3846, 'Aesthetic Movement', 3845, 0, NULL, 'antiques_periods-styles_aesthetic-movement', 'Antiques :: Periods/Styles :: Aesthetic Movement', '', 0, 1, 0, '', '', ''),
  299. (3847, 'Art Deco', 3845, 0, NULL, 'antiques_periods-styles_art-deco', 'Antiques :: Periods/Styles :: Art Deco', '', 0, 1, 0, '', '', ''),
  300. (3848, 'Art Nouveau', 3845, 0, NULL, 'antiques_periods-styles_art-nouveau', 'Antiques :: Periods/Styles :: Art Nouveau', '', 0, 1, 0, '', '', ''),
  301. (3849, 'Arts & Crafts Movement', 3845, 0, NULL, 'antiques_periods-styles_arts-crafts-movement', 'Antiques :: Periods/Styles :: Arts & Crafts Movement', '', 0, 1, 0, '', '', ''),
  302. (3850, 'Modernist', 3845, 0, NULL, 'antiques_periods-styles_modernist', 'Antiques :: Periods/Styles :: Modernist', '', 0, 1, 0, '', '', ''),
  303. (3851, 'Reproduction Antiques', 3677, 0, NULL, 'antiques_reproduction-antiques', 'Antiques :: Reproduction Antiques', '', 0, 1, 0, '', '', ''),
  304. (3852, 'Boxes', 3851, 0, NULL, 'antiques_reproduction-antiques_boxes', 'Antiques :: Reproduction Antiques :: Boxes', '', 0, 1, 0, '', '', ''),
  305. (3853, 'Figurines/ Statues', 3851, 0, NULL, 'antiques_reproduction-antiques_figurines-statues', 'Antiques :: Reproduction Antiques :: Figurines/ Statues', '', 0, 1, 0, '', '', ''),
  306. (3854, 'Irons/ Flat Irons', 3851, 0, NULL, 'antiques_reproduction-antiques_irons-flat-irons', 'Antiques :: Reproduction Antiques :: Irons/ Flat Irons', '', 0, 1, 0, '', '', ''),
  307. (3855, 'Paintings/ Prints', 3851, 0, NULL, 'antiques_reproduction-antiques_paintings-prints', 'Antiques :: Reproduction Antiques :: Paintings/ Prints', '', 0, 1, 0, '', '', ''),
  308. (3856, 'Signs/ Plaques', 3851, 0, NULL, 'antiques_reproduction-antiques_signs-plaques', 'Antiques :: Reproduction Antiques :: Signs/ Plaques', '', 0, 1, 0, '', '', ''),
  309. (3857, 'Other Antiques', 3677, 0, NULL, 'antiques_other-antiques', 'Antiques :: Other Antiques', '', 0, 1, 0, '', '', ''),
  310. (3858, 'Artists (Self-Representing)', 3678, 0, NULL, 'art_artists-self-representing', 'Art :: Artists (Self-Representing)', '', 0, 1, 0, '', '', ''),
  311. (3859, 'Canvas/ Giclee Prints', 3678, 0, NULL, 'art_canvas-giclee-prints', 'Art :: Canvas/ Giclee Prints', '', 0, 1, 0, '', '', ''),
  312. (3860, 'Contemporary Paintings', 3678, 0, NULL, 'art_contemporary-paintings', 'Art :: Contemporary Paintings', '', 0, 1, 0, '', '', ''),
  313. (3861, 'Drawings', 3678, 0, NULL, 'art_drawings', 'Art :: Drawings', '', 0, 1, 0, '', '', ''),
  314. (3862, 'Folk Art', 3678, 0, NULL, 'art_folk-art', 'Art :: Folk Art', '', 0, 1, 0, '', '', ''),
  315. (3863, 'Mixed Media', 3678, 0, NULL, 'art_mixed-media', 'Art :: Mixed Media', '', 0, 1, 0, '', '', ''),
  316. (3864, 'New Media', 3678, 0, NULL, 'art_new-media', 'Art :: New Media', '', 0, 1, 0, '', '', ''),
  317. (3865, 'Paintings', 3678, 0, NULL, 'art_paintings', 'Art :: Paintings', '', 0, 1, 0, '', '', ''),
  318. (3866, 'Photographs', 3678, 0, NULL, 'art_photographs', 'Art :: Photographs', '', 0, 1, 0, '', '', ''),
  319. (3867, 'Posters', 3678, 0, NULL, 'art_posters', 'Art :: Posters', '', 0, 1, 0, '', '', ''),
  320. (3868, 'Prints', 3678, 0, NULL, 'art_prints', 'Art :: Prints', '', 0, 1, 0, '', '', ''),
  321. (3869, 'Sculptures', 3678, 0, NULL, 'art_sculptures', 'Art :: Sculptures', '', 0, 1, 0, '', '', ''),
  322. (3870, 'Other Art', 3678, 0, NULL, 'art_other-art', 'Art :: Other Art', '', 0, 1, 0, '', '', ''),
  323. (3871, 'ACEO Art Cards', 3858, 0, NULL, 'art_artists-self-representing_aceo-art-cards', 'Art :: Artists (Self-Representing) :: ACEO Art Cards', '', 0, 1, 0, '', '', ''),
  324. (3872, 'Drawings', 3858, 0, NULL, 'art_artists-self-representing_drawings', 'Art :: Artists (Self-Representing) :: Drawings', '', 0, 1, 0, '', '', ''),
  325. (3873, 'New Media', 3858, 0, NULL, 'art_artists-self-representing_new-media', 'Art :: Artists (Self-Representing) :: New Media', '', 0, 1, 0, '', '', ''),
  326. (3874, 'Paintings', 3858, 0, NULL, 'art_artists-self-representing_paintings', 'Art :: Artists (Self-Representing) :: Paintings', '', 0, 1, 0, '', '', ''),
  327. (3875, 'Photographs', 3858, 0, NULL, 'art_artists-self-representing_photographs', 'Art :: Artists (Self-Representing) :: Photographs', '', 0, 1, 0, '', '', ''),
  328. (3876, 'Prints', 3858, 0, NULL, 'art_artists-self-representing_prints', 'Art :: Artists (Self-Representing) :: Prints', '', 0, 1, 0, '', '', ''),
  329. (3877, 'Sculptures', 3858, 0, NULL, 'art_artists-self-representing_sculptures', 'Art :: Artists (Self-Representing) :: Sculptures', '', 0, 1, 0, '', '', ''),
  330. (3878, 'Other Media', 3858, 0, NULL, 'art_artists-self-representing_other-media', 'Art :: Artists (Self-Representing) :: Other Media', '', 0, 1, 0, '', '', ''),
  331. (3879, 'Abstract', 3860, 0, NULL, 'art_contemporary-paintings_abstract', 'Art :: Contemporary Paintings :: Abstract', '', 0, 1, 0, '', '', ''),
  332. (3880, 'Experimental/ Alternative', 3860, 0, NULL, 'art_contemporary-paintings_experimental-alternative', 'Art :: Contemporary Paintings :: Experimental/ Alternative', '', 0, 1, 0, '', '', ''),
  333. (3881, 'Pop Art', 3860, 0, NULL, 'art_contemporary-paintings_pop-art', 'Art :: Contemporary Paintings :: Pop Art', '', 0, 1, 0, '', '', ''),
  334. (3882, 'Traditional', 3860, 0, NULL, 'art_contemporary-paintings_traditional', 'Art :: Contemporary Paintings :: Traditional', '', 0, 1, 0, '', '', ''),
  335. (3883, 'Other Contemporary Paintings', 3860, 0, NULL, 'art_contemporary-paintings_other-contemporary-paintings', 'Art :: Contemporary Paintings :: Other Contemporary Paintings', '', 0, 1, 0, '', '', ''),
  336. (3884, 'Contemporary (1980-Now)', 3861, 0, NULL, 'art_drawings_contemporary-1980-now', 'Art :: Drawings :: Contemporary (1980-Now)', '', 0, 1, 0, '', '', ''),
  337. (3885, 'Modern (1900-1979)', 3861, 0, NULL, 'art_drawings_modern-1900-1979', 'Art :: Drawings :: Modern (1900-1979)', '', 0, 1, 0, '', '', ''),
  338. (3886, 'Antique (Pre-1900)', 3861, 0, NULL, 'art_drawings_antique-pre-1900', 'Art :: Drawings :: Antique (Pre-1900)', '', 0, 1, 0, '', '', ''),
  339. (3887, 'Modern (1900-1979)', 3865, 0, NULL, 'art_paintings_modern-1900-1979', 'Art :: Paintings :: Modern (1900-1979)', '', 0, 1, 0, '', '', ''),
  340. (3888, 'Antique (Pre-1900)', 3865, 0, NULL, 'art_paintings_antique-pre-1900', 'Art :: Paintings :: Antique (Pre-1900)', '', 0, 1, 0, '', '', ''),
  341. (3889, 'Contemporary (1991-Now)', 3866, 0, NULL, 'art_photographs_contemporary-1991-now', 'Art :: Photographs :: Contemporary (1991-Now)', '', 0, 1, 0, '', '', ''),
  342. (3890, 'Modern (1940-1990)', 3866, 0, NULL, 'art_photographs_modern-1940-1990', 'Art :: Photographs :: Modern (1940-1990)', '', 0, 1, 0, '', '', ''),
  343. (3891, 'Antique (Pre-1940)', 3866, 0, NULL, 'art_photographs_antique-pre-1940', 'Art :: Photographs :: Antique (Pre-1940)', '', 0, 1, 0, '', '', ''),
  344. (3892, 'Contemporary (1980-Now)', 3867, 0, NULL, 'art_posters_contemporary-1980-now', 'Art :: Posters :: Contemporary (1980-Now)', '', 0, 1, 0, '', '', ''),
  345. (3893, 'Modern (1900-1979)', 3867, 0, NULL, 'art_posters_modern-1900-1979', 'Art :: Posters :: Modern (1900-1979)', '', 0, 1, 0, '', '', ''),
  346. (3894, 'Antique (Pre-1900)', 3867, 0, NULL, 'art_posters_antique-pre-1900', 'Art :: Posters :: Antique (Pre-1900)', '', 0, 1, 0, '', '', ''),
  347. (3895, 'Contemporary (1980-Now)', 3868, 0, NULL, 'art_prints_contemporary-1980-now', 'Art :: Prints :: Contemporary (1980-Now)', '', 0, 1, 0, '', '', ''),
  348. (3896, 'Modern (1900-79)', 3868, 0, NULL, 'art_prints_modern-1900-79', 'Art :: Prints :: Modern (1900-79)', '', 0, 1, 0, '', '', ''),
  349. (3897, 'Antique (Pre-1900)', 3868, 0, NULL, 'art_prints_antique-pre-1900', 'Art :: Prints :: Antique (Pre-1900)', '', 0, 1, 0, '', '', ''),
  350. (3898, 'Contemporary (1980-Now)', 3869, 0, NULL, 'art_sculptures_contemporary-1980-now', 'Art :: Sculptures :: Contemporary (1980-Now)', '', 0, 1, 0, '', '', ''),
  351. (3899, 'Modern (1900-1979)', 3869, 0, NULL, 'art_sculptures_modern-1900-1979', 'Art :: Sculptures :: Modern (1900-1979)', '', 0, 1, 0, '', '', ''),
  352. (3900, 'Antique (Pre-1900)', 3869, 0, NULL, 'art_sculptures_antique-pre-1900', 'Art :: Sculptures :: Antique (Pre-1900)', '', 0, 1, 0, '', '', ''),
  353. (3901, 'Baby Bathing/ Grooming', 3679, 0, NULL, 'baby_baby-bathing-grooming', 'Baby :: Baby Bathing/ Grooming', '', 0, 1, 0, '', '', ''),
  354. (3902, 'Baby Books', 3679, 0, NULL, 'baby_baby-books', 'Baby :: Baby Books', '', 0, 1, 0, '', '', ''),
  355. (3903, 'Baby Carriers/ Backpacks', 3679, 0, NULL, 'baby_baby-carriers-backpacks', 'Baby :: Baby Carriers/ Backpacks', '', 0, 1, 0, '', '', ''),
  356. (3904, 'Baby Changing & Nappies', 3679, 0, NULL, 'baby_baby-changing-nappies', 'Baby :: Baby Changing & Nappies', '', 0, 1, 0, '', '', ''),
  357. (3905, 'Baby Feeding', 3679, 0, NULL, 'baby_baby-feeding', 'Baby :: Baby Feeding', '', 0, 1, 0, '', '', ''),
  358. (3906, 'Car Seats & Accessories', 3679, 0, NULL, 'baby_car-seats-accessories', 'Baby :: Car Seats & Accessories', '', 0, 1, 0, '', '', ''),
  359. (3907, 'Christening & Gifts', 3679, 0, NULL, 'baby_christening-gifts', 'Baby :: Christening & Gifts', '', 0, 1, 0, '', '', ''),
  360. (3908, 'Clothes, Shoes & Accessories', 3679, 0, NULL, 'baby_clothes-shoes-accessories', 'Baby :: Clothes, Shoes & Accessories', '', 0, 1, 0, '', '', ''),
  361. (3909, 'Maternity/ Pregnancy', 3679, 0, NULL, 'baby_maternity-pregnancy', 'Baby :: Maternity/ Pregnancy', '', 0, 1, 0, '', '', ''),
  362. (3910, 'Nursery Bedding', 3679, 0, NULL, 'baby_nursery-bedding', 'Baby :: Nursery Bedding', '', 0, 1, 0, '', '', ''),
  363. (3911, 'Nursery Decoration & Furniture', 3679, 0, NULL, 'baby_nursery-decoration-furniture', 'Baby :: Nursery Decoration & Furniture', '', 0, 1, 0, '', '', ''),
  364. (3912, 'Potty Training', 3679, 0, NULL, 'baby_potty-training', 'Baby :: Potty Training', '', 0, 1, 0, '', '', ''),
  365. (3913, 'Pushchairs & Prams', 3679, 0, NULL, 'baby_pushchairs-prams', 'Baby :: Pushchairs & Prams', '', 0, 1, 0, '', '', ''),
  366. (3914, 'Safety', 3679, 0, NULL, 'baby_safety', 'Baby :: Safety', '', 0, 1, 0, '', '', ''),
  367. (3915, 'Toys & Activities', 3679, 0, NULL, 'baby_toys-activities', 'Baby :: Toys & Activities', '', 0, 1, 0, '', '', ''),
  368. (3916, 'Walkers', 3679, 0, NULL, 'baby_walkers', 'Baby :: Walkers', '', 0, 1, 0, '', '', ''),
  369. (3917, 'Other Baby', 3679, 0, NULL, 'baby_other-baby', 'Baby :: Other Baby', '', 0, 1, 0, '', '', ''),
  370. (3918, 'Baby Baths', 3901, 0, NULL, 'baby_baby-bathing-grooming_baby-baths', 'Baby :: Baby Bathing/ Grooming :: Baby Baths', '', 0, 1, 0, '', '', ''),
  371. (3919, 'Baby Bath Seats & Supports', 3901, 0, NULL, 'baby_baby-bathing-grooming_baby-bath-seats-supports', 'Baby :: Baby Bathing/ Grooming :: Baby Bath Seats & Supports', '', 0, 1, 0, '', '', ''),
  372. (3920, 'Baby Bath Sets', 3901, 0, NULL, 'baby_baby-bathing-grooming_baby-bath-sets', 'Baby :: Baby Bathing/ Grooming :: Baby Bath Sets', '', 0, 1, 0, '', '', ''),
  373. (3921, 'Bath Toys', 3901, 0, NULL, 'baby_baby-bathing-grooming_bath-toys', 'Baby :: Baby Bathing/ Grooming :: Bath Toys', '', 0, 1, 0, '', '', ''),
  374. (3922, 'Brushes, Combs & Scissors', 3901, 0, NULL, 'baby_baby-bathing-grooming_brushes-combs-scissors', 'Baby :: Baby Bathing/ Grooming :: Brushes, Combs & Scissors', '', 0, 1, 0, '', '', ''),
  375. (3923, 'Dressing Gowns', 3901, 0, NULL, 'baby_baby-bathing-grooming_dressing-gowns', 'Baby :: Baby Bathing/ Grooming :: Dressing Gowns', '', 0, 1, 0, '', '', ''),
  376. (3924, 'Skin Care', 3901, 0, NULL, 'baby_baby-bathing-grooming_skin-care', 'Baby :: Baby Bathing/ Grooming :: Skin Care', '', 0, 1, 0, '', '', ''),
  377. (3925, 'Soaps, Shampoos & Washes', 3901, 0, NULL, 'baby_baby-bathing-grooming_soaps-shampoos-washes', 'Baby :: Baby Bathing/ Grooming :: Soaps, Shampoos & Washes', '', 0, 1, 0, '', '', ''),
  378. (3926, 'Sponges', 3901, 0, NULL, 'baby_baby-bathing-grooming_sponges', 'Baby :: Baby Bathing/ Grooming :: Sponges', '', 0, 1, 0, '', '', ''),
  379. (3927, 'Towels/ Flannels', 3901, 0, NULL, 'baby_baby-bathing-grooming_towels-flannels', 'Baby :: Baby Bathing/ Grooming :: Towels/ Flannels', '', 0, 1, 0, '', '', ''),
  380. (3928, 'Other Bathing', 3901, 0, NULL, 'baby_baby-bathing-grooming_other-bathing', 'Baby :: Baby Bathing/ Grooming :: Other Bathing', '', 0, 1, 0, '', '', ''),
  381. (3929, 'Baby Names', 3902, 0, NULL, 'baby_baby-books_baby-names', 'Baby :: Baby Books :: Baby Names', '', 0, 1, 0, '', '', ''),
  382. (3930, 'Baby Record Books', 3902, 0, NULL, 'baby_baby-books_baby-record-books', 'Baby :: Baby Books :: Baby Record Books', '', 0, 1, 0, '', '', ''),
  383. (3931, 'Early Reading', 3902, 0, NULL, 'baby_baby-books_early-reading', 'Baby :: Baby Books :: Early Reading', '', 0, 1, 0, '', '', ''),
  384. (3932, 'Parenting Books', 3902, 0, NULL, 'baby_baby-books_parenting-books', 'Baby :: Baby Books :: Parenting Books', '', 0, 1, 0, '', '', ''),
  385. (3933, 'Pregnancy Books', 3902, 0, NULL, 'baby_baby-books_pregnancy-books', 'Baby :: Baby Books :: Pregnancy Books', '', 0, 1, 0, '', '', ''),
  386. (3934, 'Other Baby Books', 3902, 0, NULL, 'baby_baby-books_other-baby-books', 'Baby :: Baby Books :: Other Baby Books', '', 0, 1, 0, '', '', ''),
  387. (3935, 'Changing Mats', 3904, 0, NULL, 'baby_baby-changing-nappies_changing-mats', 'Baby :: Baby Changing & Nappies :: Changing Mats', '', 0, 1, 0, '', '', ''),
  388. (3936, 'Changing Tables & Units', 3904, 0, NULL, 'baby_baby-changing-nappies_changing-tables-units', 'Baby :: Baby Changing & Nappies :: Changing Tables & Units', '', 0, 1, 0, '', '', ''),
  389. (3937, 'Nappies', 3904, 0, NULL, 'baby_baby-changing-nappies_nappies', 'Baby :: Baby Changing & Nappies :: Nappies', '', 0, 1, 0, '', '', ''),
  390. (3938, 'Nappy Changing Bags', 3904, 0, NULL, 'baby_baby-changing-nappies_nappy-changing-bags', 'Baby :: Baby Changing & Nappies :: Nappy Changing Bags', '', 0, 1, 0, '', '', ''),
  391. (3939, 'Nappy Covers', 3904, 0, NULL, 'baby_baby-changing-nappies_nappy-covers', 'Baby :: Baby Changing & Nappies :: Nappy Covers', '', 0, 1, 0, '', '', ''),
  392. (3940, 'Nappy Sacks & Nappy Bins', 3904, 0, NULL, 'baby_baby-changing-nappies_nappy-sacks-nappy-bins', 'Baby :: Baby Changing & Nappies :: Nappy Sacks & Nappy Bins', '', 0, 1, 0, '', '', ''),
  393. (3941, 'Nappy Stackers', 3904, 0, NULL, 'baby_baby-changing-nappies_nappy-stackers', 'Baby :: Baby Changing & Nappies :: Nappy Stackers', '', 0, 1, 0, '', '', ''),
  394. (3942, 'Wipes, Creams & Cotton Wool', 3904, 0, NULL, 'baby_baby-changing-nappies_wipes-creams-cotton-wool', 'Baby :: Baby Changing & Nappies :: Wipes, Creams & Cotton Wool', '', 0, 1, 0, '', '', ''),
  395. (3943, 'Other Baby Changing', 3904, 0, NULL, 'baby_baby-changing-nappies_other-baby-changing', 'Baby :: Baby Changing & Nappies :: Other Baby Changing', '', 0, 1, 0, '', '', ''),
  396. (3944, 'Bibs & Muslins', 3905, 0, NULL, 'baby_baby-feeding_bibs-muslins', 'Baby :: Baby Feeding :: Bibs & Muslins', '', 0, 1, 0, '', '', ''),
  397. (3945, 'Booster Seats', 3905, 0, NULL, 'baby_baby-feeding_booster-seats', 'Baby :: Baby Feeding :: Booster Seats', '', 0, 1, 0, '', '', ''),
  398. (3946, 'Bottles', 3905, 0, NULL, 'baby_baby-feeding_bottles', 'Baby :: Baby Feeding :: Bottles', '', 0, 1, 0, '', '', ''),
  399. (3947, 'Bottle Sterilising & Cleaning', 3905, 0, NULL, 'baby_baby-feeding_bottle-sterilising-cleaning', 'Baby :: Baby Feeding :: Bottle Sterilising & Cleaning', '', 0, 1, 0, '', '', ''),
  400. (3948, 'Bottle Teats', 3905, 0, NULL, 'baby_baby-feeding_bottle-teats', 'Baby :: Baby Feeding :: Bottle Teats', '', 0, 1, 0, '', '', ''),
  401. (3949, 'Bottle Warmers & Coolers', 3905, 0, NULL, 'baby_baby-feeding_bottle-warmers-coolers', 'Baby :: Baby Feeding :: Bottle Warmers & Coolers', '', 0, 1, 0, '', '', ''),
  402. (3950, 'Breast Pads/ Nipple Protectors', 3905, 0, NULL, 'baby_baby-feeding_breast-pads-nipple-protectors', 'Baby :: Baby Feeding :: Breast Pads/ Nipple Protectors', '', 0, 1, 0, '', '', ''),
  403. (3951, 'Breast Pumps', 3905, 0, NULL, 'baby_baby-feeding_breast-pumps', 'Baby :: Baby Feeding :: Breast Pumps', '', 0, 1, 0, '', '', ''),
  404. (3952, 'Breastshells & Sterilised Bags', 3905, 0, NULL, 'baby_baby-feeding_breastshells-sterilised-bags', 'Baby :: Baby Feeding :: Breastshells & Sterilised Bags', '', 0, 1, 0, '', '', ''),
  405. (3953, 'Cups/ Dishes/ Utensils', 3905, 0, NULL, 'baby_baby-feeding_cups-dishes-utensils', 'Baby :: Baby Feeding :: Cups/ Dishes/ Utensils', '', 0, 1, 0, '', '', ''),
  406. (3954, 'Dummies, Pacifiers & Soothers', 3905, 0, NULL, 'baby_baby-feeding_dummies-pacifiers-soothers', 'Baby :: Baby Feeding :: Dummies, Pacifiers & Soothers', '', 0, 1, 0, '', '', ''),
  407. (3955, 'Feeding Pillows & Supports', 3905, 0, NULL, 'baby_baby-feeding_feeding-pillows-supports', 'Baby :: Baby Feeding :: Feeding Pillows & Supports', '', 0, 1, 0, '', '', ''),
  408. (3956, 'Feeding Sets', 3905, 0, NULL, 'baby_baby-feeding_feeding-sets', 'Baby :: Baby Feeding :: Feeding Sets', '', 0, 1, 0, '', '', ''),
  409. (3957, 'Food', 3905, 0, NULL, 'baby_baby-feeding_food', 'Baby :: Baby Feeding :: Food', '', 0, 1, 0, '', '', ''),
  410. (3958, 'Food Grinders', 3905, 0, NULL, 'baby_baby-feeding_food-grinders', 'Baby :: Baby Feeding :: Food Grinders', '', 0, 1, 0, '', '', ''),
  411. (3959, 'Formula', 3905, 0, NULL, 'baby_baby-feeding_formula', 'Baby :: Baby Feeding :: Formula', '', 0, 1, 0, '', '', ''),
  412. (3960, 'High Chairs', 3905, 0, NULL, 'baby_baby-feeding_high-chairs', 'Baby :: Baby Feeding :: High Chairs', '', 0, 1, 0, '', '', ''),
  413. (3961, 'Teething', 3905, 0, NULL, 'baby_baby-feeding_teething', 'Baby :: Baby Feeding :: Teething', '', 0, 1, 0, '', '', ''),
  414. (3962, 'Other Baby Feeding', 3905, 0, NULL, 'baby_baby-feeding_other-baby-feeding', 'Baby :: Baby Feeding :: Other Baby Feeding', '', 0, 1, 0, '', '', ''),
  415. (3963, 'Car Seat Accessories', 3906, 0, NULL, 'baby_car-seats-accessories_car-seat-accessories', 'Baby :: Car Seats & Accessories :: Car Seat Accessories', '', 0, 1, 0, '', '', ''),
  416. (3964, 'Car Seats', 3906, 0, NULL, 'baby_car-seats-accessories_car-seats', 'Baby :: Car Seats & Accessories :: Car Seats', '', 0, 1, 0, '', '', ''),
  417. (3965, 'Baby Jewellery', 3907, 0, NULL, 'baby_christening-gifts_baby-jewellery', 'Baby :: Christening & Gifts :: Baby Jewellery', '', 0, 1, 0, '', '', ''),
  418. (3966, 'Christening', 3907, 0, NULL, 'baby_christening-gifts_christening', 'Baby :: Christening & Gifts :: Christening', '', 0, 1, 0, '', '', ''),
  419. (3967, 'Gift Baskets', 3907, 0, NULL, 'baby_christening-gifts_gift-baskets', 'Baby :: Christening & Gifts :: Gift Baskets', '', 0, 1, 0, '', '', ''),
  420. (3968, 'Ornaments', 3907, 0, NULL, 'baby_christening-gifts_ornaments', 'Baby :: Christening & Gifts :: Ornaments', '', 0, 1, 0, '', '', ''),
  421. (3969, 'Other Gifts', 3907, 0, NULL, 'baby_christening-gifts_other-gifts', 'Baby :: Christening & Gifts :: Other Gifts', '', 0, 1, 0, '', '', ''),
  422. (3972, 'Accessories', 3908, 0, NULL, 'baby_clothes-shoes-accessories_accessories', 'Baby :: Clothes, Shoes & Accessories :: Accessories', '', 0, 1, 0, '', '', ''),
  423. (3973, 'Christening Clothing', 3908, 0, NULL, 'baby_clothes-shoes-accessories_christening-clothing', 'Baby :: Clothes, Shoes & Accessories :: Christening Clothing', '', 0, 1, 0, '', '', ''),
  424. (3974, 'Boys' Clothing (0-24 Months)', 3908, 0, NULL, 'baby_clothes-shoes-accessories_boys-clothing-0-24-months', 'Baby :: Clothes, Shoes & Accessories :: Boys' Clothing (0-24 Months)', '', 0, 1, 0, '', '', ''),
  425. (3975, 'Girls' Clothing (0-24 Months)', 3908, 0, NULL, 'baby_clothes-shoes-accessories_girls-clothing-0-24-months', 'Baby :: Clothes, Shoes & Accessories :: Girls' Clothing (0-24 Months)', '', 0, 1, 0, '', '', ''),
  426. (3976, 'Shoes', 3908, 0, NULL, 'baby_clothes-shoes-accessories_shoes', 'Baby :: Clothes, Shoes & Accessories :: Shoes', '', 0, 1, 0, '', '', ''),
  427. (3977, 'Other Clothing, Shoes & Accs.', 3908, 0, NULL, 'baby_clothes-shoes-accessories_other-clothing-shoes-accs', 'Baby :: Clothes, Shoes & Accessories :: Other Clothing, Shoes & Accs.', '', 0, 1, 0, '', '', ''),
  428. (3978, 'Baby Showers', 3909, 0, NULL, 'baby_maternity-pregnancy_baby-showers', 'Baby :: Maternity/ Pregnancy :: Baby Showers', '', 0, 1, 0, '', '', ''),
  429. (3979, 'Birthing Balls & Tens Machines', 3909, 0, NULL, 'baby_maternity-pregnancy_birthing-balls-tens-machines', 'Baby :: Maternity/ Pregnancy :: Birthing Balls & Tens Machines', '', 0, 1, 0, '', '', ''),
  430. (3980, 'Maternity Health', 3909, 0, NULL, 'baby_maternity-pregnancy_maternity-health', 'Baby :: Maternity/ Pregnancy :: Maternity Health', '', 0, 1, 0, '', '', ''),
  431. (3981, 'Monitors/ Dopplers', 3909, 0, NULL, 'baby_maternity-pregnancy_monitors-dopplers', 'Baby :: Maternity/ Pregnancy :: Monitors/ Dopplers', '', 0, 1, 0, '', '', ''),
  432. (3982, 'Nursing Bras', 3909, 0, NULL, 'baby_maternity-pregnancy_nursing-bras', 'Baby :: Maternity/ Pregnancy :: Nursing Bras', '', 0, 1, 0, '', '', ''),
  433. (3983, 'Pregnancy Testing Equipment', 3909, 0, NULL, 'baby_maternity-pregnancy_pregnancy-testing-equipment', 'Baby :: Maternity/ Pregnancy :: Pregnancy Testing Equipment', '', 0, 1, 0, '', '', ''),
  434. (3984, 'Support Belts', 3909, 0, NULL, 'baby_maternity-pregnancy_support-belts', 'Baby :: Maternity/ Pregnancy :: Support Belts', '', 0, 1, 0, '', '', ''),
  435. (3985, 'Other Maternity/ Pregnancy', 3909, 0, NULL, 'baby_maternity-pregnancy_other-maternity-pregnancy', 'Baby :: Maternity/ Pregnancy :: Other Maternity/ Pregnancy', '', 0, 1, 0, '', '', ''),
  436. (3986, 'Bedding Sets', 3910, 0, NULL, 'baby_nursery-bedding_bedding-sets', 'Baby :: Nursery Bedding :: Bedding Sets', '', 0, 1, 0, '', '', ''),
  437. (3987, 'Bed Guards', 3910, 0, NULL, 'baby_nursery-bedding_bed-guards', 'Baby :: Nursery Bedding :: Bed Guards', '', 0, 1, 0, '', '', ''),
  438. (3988, 'Blankets', 3910, 0, NULL, 'baby_nursery-bedding_blankets', 'Baby :: Nursery Bedding :: Blankets', '', 0, 1, 0, '', '', ''),
  439. (3989, 'Cot Bumpers', 3910, 0, NULL, 'baby_nursery-bedding_cot-bumpers', 'Baby :: Nursery Bedding :: Cot Bumpers', '', 0, 1, 0, '', '', ''),
  440. (3990, 'Mattresses', 3910, 0, NULL, 'baby_nursery-bedding_mattresses', 'Baby :: Nursery Bedding :: Mattresses', '', 0, 1, 0, '', '', ''),
  441. (3991, 'Pillows & Pillow Covers', 3910, 0, NULL, 'baby_nursery-bedding_pillows-pillow-covers', 'Baby :: Nursery Bedding :: Pillows & Pillow Covers', '', 0, 1, 0, '', '', ''),
  442. (3992, 'Quilts/ Duvets', 3910, 0, NULL, 'baby_nursery-bedding_quilts-duvets', 'Baby :: Nursery Bedding :: Quilts/ Duvets', '', 0, 1, 0, '', '', ''),
  443. (3993, 'Sheets & Waterproof Sheets', 3910, 0, NULL, 'baby_nursery-bedding_sheets-waterproof-sheets', 'Baby :: Nursery Bedding :: Sheets & Waterproof Sheets', '', 0, 1, 0, '', '', ''),
  444. (3994, 'Sleeping Bags', 3910, 0, NULL, 'baby_nursery-bedding_sleeping-bags', 'Baby :: Nursery Bedding :: Sleeping Bags', '', 0, 1, 0, '', '', ''),
  445. (3995, 'Other Nursery Bedding', 3910, 0, NULL, 'baby_nursery-bedding_other-nursery-bedding', 'Baby :: Nursery Bedding :: Other Nursery Bedding', '', 0, 1, 0, '', '', ''),
  446. (3996, 'Chairs for Baby', 3911, 0, NULL, 'baby_nursery-decoration-furniture_chairs-for-baby', 'Baby :: Nursery Decoration & Furniture :: Chairs for Baby', '', 0, 1, 0, '', '', ''),
  447. (3997, 'Chairs for Mum', 3911, 0, NULL, 'baby_nursery-decoration-furniture_chairs-for-mum', 'Baby :: Nursery Decoration & Furniture :: Chairs for Mum', '', 0, 1, 0, '', '', ''),
  448. (3998, 'Cots & Cribs', 3911, 0, NULL, 'baby_nursery-decoration-furniture_cots-cribs', 'Baby :: Nursery Decoration & Furniture :: Cots & Cribs', '', 0, 1, 0, '', '', ''),
  449. (3999, 'Cotbeds', 3911, 0, NULL, 'baby_nursery-decoration-furniture_cotbeds', 'Baby :: Nursery Decoration & Furniture :: Cotbeds', '', 0, 1, 0, '', '', ''),
  450. (4000, 'Inflatable Beds', 3911, 0, NULL, 'baby_nursery-decoration-furniture_inflatable-beds', 'Baby :: Nursery Decoration & Furniture :: Inflatable Beds', '', 0, 1, 0, '', '', ''),
  451. (4001, 'Lamps/ Shades', 3911, 0, NULL, 'baby_nursery-decoration-furniture_lamps-shades', 'Baby :: Nursery Decoration & Furniture :: Lamps/ Shades', '', 0, 1, 0, '', '', ''),
  452. (4002, 'Mats/ Rugs', 3911, 0, NULL, 'baby_nursery-decoration-furniture_mats-rugs', 'Baby :: Nursery Decoration & Furniture :: Mats/ Rugs', '', 0, 1, 0, '', '', ''),
  453. (4003, 'Mobiles', 3911, 0, NULL, 'baby_nursery-decoration-furniture_mobiles', 'Baby :: Nursery Decoration & Furniture :: Mobiles', '', 0, 1, 0, '', '', ''),
  454. (4004, 'Moses Baskets', 3911, 0, NULL, 'baby_nursery-decoration-furniture_moses-baskets', 'Baby :: Nursery Decoration & Furniture :: Moses Baskets', '', 0, 1, 0, '', '', ''),
  455. (4005, 'Picture/ Photo Frames', 3911, 0, NULL, 'baby_nursery-decoration-furniture_picture-photo-frames', 'Baby :: Nursery Decoration & Furniture :: Picture/ Photo Frames', '', 0, 1, 0, '', '', ''),
  456. (4006, 'Play Pens', 3911, 0, NULL, 'baby_nursery-decoration-furniture_play-pens', 'Baby :: Nursery Decoration & Furniture :: Play Pens', '', 0, 1, 0, '', '', ''),
  457. (4007, 'Walls Decoration', 3911, 0, NULL, 'baby_nursery-decoration-furniture_walls-decoration', 'Baby :: Nursery Decoration & Furniture :: Walls Decoration', '', 0, 1, 0, '', '', ''),
  458. (4008, 'Windows Decoration', 3911, 0, NULL, 'baby_nursery-decoration-furniture_windows-decoration', 'Baby :: Nursery Decoration & Furniture :: Windows Decoration', '', 0, 1, 0, '', '', ''),
  459. (4009, 'Other Nursery Decoration', 3911, 0, NULL, 'baby_nursery-decoration-furniture_other-nursery-decoration', 'Baby :: Nursery Decoration & Furniture :: Other Nursery Decoration', '', 0, 1, 0, '', '', ''),
  460. (4010, 'Musical Potty Chair', 3912, 0, NULL, 'baby_potty-training_musical-potty-chair', 'Baby :: Potty Training :: Musical Potty Chair', '', 0, 1, 0, '', '', ''),
  461. (4011, 'Pottys', 3912, 0, NULL, 'baby_potty-training_pottys', 'Baby :: Potty Training :: Pottys', '', 0, 1, 0, '', '', ''),
  462. (4012, 'Steps', 3912, 0, NULL, 'baby_potty-training_steps', 'Baby :: Potty Training :: Steps', '', 0, 1, 0, '', '', ''),
  463. (4013, 'Trainer Toilet Seat', 3912, 0, NULL, 'baby_potty-training_trainer-toilet-seat', 'Baby :: Potty Training :: Trainer Toilet Seat', '', 0, 1, 0, '', '', ''),
  464. (4014, 'Training Chart', 3912, 0, NULL, 'baby_potty-training_training-chart', 'Baby :: Potty Training :: Training Chart', '', 0, 1, 0, '', '', ''),
  465. (4015, 'Pushchairs & Prams', 3913, 0, NULL, 'baby_pushchairs-prams_pushchairs-prams', 'Baby :: Pushchairs & Prams :: Pushchairs & Prams', '', 0, 1, 0, '', '', ''),
  466. (4016, 'Stroller Boards', 3913, 0, NULL, 'baby_pushchairs-prams_stroller-boards', 'Baby :: Pushchairs & Prams :: Stroller Boards', '', 0, 1, 0, '', '', ''),
  467. (4017, 'Footmuffs/ Aprons', 3913, 0, NULL, 'baby_pushchairs-prams_footmuffs-aprons', 'Baby :: Pushchairs & Prams :: Footmuffs/ Aprons', '', 0, 1, 0, '', '', ''),
  468. (4018, 'Parasols/ Sun Canopies', 3913, 0, NULL, 'baby_pushchairs-prams_parasols-sun-canopies', 'Baby :: Pushchairs & Prams :: Parasols/ Sun Canopies', '', 0, 1, 0, '', '', ''),
  469. (4019, 'Rain Covers', 3913, 0, NULL, 'baby_pushchairs-prams_rain-covers', 'Baby :: Pushchairs & Prams :: Rain Covers', '', 0, 1, 0, '', '', ''),
  470. (4020, 'Pushchair & Pram Parts', 3913, 0, NULL, 'baby_pushchairs-prams_pushchair-pram-parts', 'Baby :: Pushchairs & Prams :: Pushchair & Pram Parts', '', 0, 1, 0, '', '', ''),
  471. (4021, 'Other Pushchairs & Prams', 3913, 0, NULL, 'baby_pushchairs-prams_other-pushchairs-prams', 'Baby :: Pushchairs & Prams :: Other Pushchairs & Prams', '', 0, 1, 0, '', '', ''),
  472. (4022, 'Babyproofing', 3914, 0, NULL, 'baby_safety_babyproofing', 'Baby :: Safety :: Babyproofing', '', 0, 1, 0, '', '', ''),
  473. (4023, 'Safety Gates/ Stair Gates', 3914, 0, NULL, 'baby_safety_safety-gates-stair-gates', 'Baby :: Safety :: Safety Gates/ Stair Gates', '', 0, 1, 0, '', '', ''),
  474. (4024, 'Safety Harnesses/ Reins', 3914, 0, NULL, 'baby_safety_safety-harnesses-reins', 'Baby :: Safety :: Safety Harnesses/ Reins', '', 0, 1, 0, '', '', ''),
  475. (4025, 'Monitors', 3914, 0, NULL, 'baby_safety_monitors', 'Baby :: Safety :: Monitors', '', 0, 1, 0, '', '', ''),
  476. (4026, 'Swimming Aids', 3914, 0, NULL, 'baby_safety_swimming-aids', 'Baby :: Safety :: Swimming Aids', '', 0, 1, 0, '', '', ''),
  477. (4027, 'Thermometers', 3914, 0, NULL, 'baby_safety_thermometers', 'Baby :: Safety :: Thermometers', '', 0, 1, 0, '', '', ''),
  478. (4028, 'Other Safety', 3914, 0, NULL, 'baby_safety_other-safety', 'Baby :: Safety :: Other Safety', '', 0, 1, 0, '', '', ''),
  479. (4029, 'Rattles', 3915, 0, NULL, 'baby_toys-activities_rattles', 'Baby :: Toys & Activities :: Rattles', '', 0, 1, 0, '', '', ''),
  480. (4030, 'Playmats', 3915, 0, NULL, 'baby_toys-activities_playmats', 'Baby :: Toys & Activities :: Playmats', '', 0, 1, 0, '', '', ''),
  481. (4031, 'Shape Sorters & Blocks', 3915, 0, NULL, 'baby_toys-activities_shape-sorters-blocks', 'Baby :: Toys & Activities :: Shape Sorters & Blocks', '', 0, 1, 0, '', '', ''),
  482. (4032, 'Soft Toys', 3915, 0, NULL, 'baby_toys-activities_soft-toys', 'Baby :: Toys & Activities :: Soft Toys', '', 0, 1, 0, '', '', ''),
  483. (4033, 'Swings/ Bouncers', 3915, 0, NULL, 'baby_toys-activities_swings-bouncers', 'Baby :: Toys & Activities :: Swings/ Bouncers', '', 0, 1, 0, '', '', ''),
  484. (4034, 'Other Toys & Activities', 3915, 0, NULL, 'baby_toys-activities_other-toys-activities', 'Baby :: Toys & Activities :: Other Toys & Activities', '', 0, 1, 0, '', '', ''),
  485. (4035, 'Accessories', 3680, 0, NULL, 'books-comics-magazines_accessories', 'Books, Comics & Magazines :: Accessories', '', 0, 1, 0, '', '', ''),
  486. (4036, 'Antiquarian & Collectable', 3680, 0, NULL, 'books-comics-magazines_antiquarian-collectable', 'Books, Comics & Magazines :: Antiquarian & Collectable', '', 0, 1, 0, '', '', ''),
  487. (4037, 'Audio Books', 3680, 0, NULL, 'books-comics-magazines_audio-books', 'Books, Comics & Magazines :: Audio Books', '', 0, 1, 0, '', '', ''),
  488. (4038, 'Calendars', 3680, 0, NULL, 'books-comics-magazines_calendars', 'Books, Comics & Magazines :: Calendars', '', 0, 1, 0, '', '', ''),
  489. (4039, 'Children's & Young Adults', 3680, 0, NULL, 'books-comics-magazines_childrens-young-adults', 'Books, Comics & Magazines :: Children's & Young Adults', '', 0, 1, 0, '', '', ''),
  490. (4040, 'Textbooks & Education', 3680, 0, NULL, 'books-comics-magazines_textbooks-education', 'Books, Comics & Magazines :: Textbooks & Education', '', 0, 1, 0, '', '', ''),
  491. (4041, 'Food & Drink', 3680, 0, NULL, 'books-comics-magazines_food-drink', 'Books, Comics & Magazines :: Food & Drink', '', 0, 1, 0, '', '', ''),
  492. (4042, 'Fiction', 3680, 0, NULL, 'books-comics-magazines_fiction', 'Books, Comics & Magazines :: Fiction', '', 0, 1, 0, '', '', ''),
  493. (4043, 'Non-Fiction', 3680, 0, NULL, 'books-comics-magazines_non-fiction', 'Books, Comics & Magazines :: Non-Fiction', '', 0, 1, 0, '', '', ''),
  494. (4044, 'Comics', 3680, 0, NULL, 'books-comics-magazines_comics', 'Books, Comics & Magazines :: Comics', '', 0, 1, 0, '', '', ''),
  495. (4045, 'Magazines', 3680, 0, NULL, 'books-comics-magazines_magazines', 'Books, Comics & Magazines :: Magazines', '', 0, 1, 0, '', '', ''),
  496. (4046, 'Collections & Lots', 3680, 0, NULL, 'books-comics-magazines_collections-lots', 'Books, Comics & Magazines :: Collections & Lots', '', 0, 1, 0, '', '', ''),
  497. (4047, 'Other Books, Comics, Magazines', 3680, 0, NULL, 'books-comics-magazines_other-books-comics-magazines', 'Books, Comics & Magazines :: Other Books, Comics, Magazines', '', 0, 1, 0, '', '', ''),
  498. (4048, 'Book Covers', 4035, 0, NULL, 'books-comics-magazines_accessories_book-covers', 'Books, Comics & Magazines :: Accessories :: Book Covers', '', 0, 1, 0, '', '', ''),
  499. (4049, 'Book Plates', 4035, 0, NULL, 'books-comics-magazines_accessories_book-plates', 'Books, Comics & Magazines :: Accessories :: Book Plates', '', 0, 1, 0, '', '', ''),
  500. (4050, 'Bookmarks', 4035, 0, NULL, 'books-comics-magazines_accessories_bookmarks', 'Books, Comics & Magazines :: Accessories :: Bookmarks', '', 0, 1, 0, '', '', ''),
  501. (4051, 'Reading Lights', 4035, 0, NULL, 'books-comics-magazines_accessories_reading-lights', 'Books, Comics & Magazines :: Accessories :: Reading Lights', '', 0, 1, 0, '', '', ''),
  502. (4052, 'Other Book Accessories', 4035, 0, NULL, 'books-comics-magazines_accessories_other-book-accessories', 'Books, Comics & Magazines :: Accessories :: Other Book Accessories', '', 0, 1, 0, '', '', ''),
  503. (4053, 'Audio CD', 4037, 0, NULL, 'books-comics-magazines_audio-books_audio-cd', 'Books, Comics & Magazines :: Audio Books :: Audio CD', '', 0, 1, 0, '', '', ''),
  504. (4054, 'Cassette', 4037, 0, NULL, 'books-comics-magazines_audio-books_cassette', 'Books, Comics & Magazines :: Audio Books :: Cassette', '', 0, 1, 0, '', '', ''),
  505. (4055, 'LP', 4037, 0, NULL, 'books-comics-magazines_audio-books_lp', 'Books, Comics & Magazines :: Audio Books :: LP', '', 0, 1, 0, '', '', ''),
  506. (4056, 'MP3 CD', 4037, 0, NULL, 'books-comics-magazines_audio-books_mp3-cd', 'Books, Comics & Magazines :: Audio Books :: MP3 CD', '', 0, 1, 0, '', '', ''),
  507. (4057, 'Not specified', 4037, 0, NULL, 'books-comics-magazines_audio-books_not-specified', 'Books, Comics & Magazines :: Audio Books :: Not specified', '', 0, 1, 0, '', '', ''),
  508. (4058, 'Current Year', 4038, 0, NULL, 'books-comics-magazines_calendars_current-year', 'Books, Comics & Magazines :: Calendars :: Current Year', '', 0, 1, 0, '', '', ''),
  509. (4059, 'Other', 4038, 0, NULL, 'books-comics-magazines_calendars_other', 'Books, Comics & Magazines :: Calendars :: Other', '', 0, 1, 0, '', '', ''),
  510. (4060, 'Children's Annuals', 4039, 0, NULL, 'books-comics-magazines_childrens-young-adults_childrens-annuals', 'Books, Comics & Magazines :: Children's & Young Adults :: Children's Annuals', '', 0, 1, 0, '', '', ''),
  511. (4061, 'Fiction', 4039, 0, NULL, 'books-comics-magazines_childrens-young-adults_fiction', 'Books, Comics & Magazines :: Children's & Young Adults :: Fiction', '', 0, 1, 0, '', '', ''),
  512. (4062, 'Non-Fiction', 4039, 0, NULL, 'books-comics-magazines_childrens-young-adults_non-fiction', 'Books, Comics & Magazines :: Children's & Young Adults :: Non-Fiction', '', 0, 1, 0, '', '', ''),
  513. (4063, 'Other Children & Young Adults', 4039, 0, NULL, 'books-comics-magazines_childrens-young-adults_other-children-young-adults', 'Books, Comics & Magazines :: Children's & Young Adults :: Other Children & Young Adults', '', 0, 1, 0, '', '', ''),
  514. (4064, 'Adult Learning & University', 4040, 0, NULL, 'books-comics-magazines_textbooks-education_adult-learning-university', 'Books, Comics & Magazines :: Textbooks & Education :: Adult Learning & University', '', 0, 1, 0, '', '', ''),
  515. (4065, 'Language Courses', 4040, 0, NULL, 'books-comics-magazines_textbooks-education_language-courses', 'Books, Comics & Magazines :: Textbooks & Education :: Language Courses', '', 0, 1, 0, '', '', ''),
  516. (4066, 'School Textbooks, Study Guides', 4040, 0, NULL, 'books-comics-magazines_textbooks-education_school-textbooks-study-guides', 'Books, Comics & Magazines :: Textbooks & Education :: School Textbooks, Study Guides', '', 0, 1, 0, '', '', ''),
  517. (4067, 'Beers & Spirits', 4041, 0, NULL, 'books-comics-magazines_food-drink_beers-spirits', 'Books, Comics & Magazines :: Food & Drink :: Beers & Spirits', '', 0, 1, 0, '', '', ''),
  518. (4068, 'Cookery (General & Reference)', 4041, 0, NULL, 'books-comics-magazines_food-drink_cookery-general-reference', 'Books, Comics & Magazines :: Food & Drink :: Cookery (General & Reference)', '', 0, 1, 0, '', '', ''),
  519. (4069, 'Health, Dieting & Wholefood', 4041, 0, NULL, 'books-comics-magazines_food-drink_health-dieting-wholefood', 'Books, Comics & Magazines :: Food & Drink :: Health, Dieting & Wholefood', '', 0, 1, 0, '', '', ''),
  520. (4070, 'National & Regional Cuisine', 4041, 0, NULL, 'books-comics-magazines_food-drink_national-regional-cuisine', 'Books, Comics & Magazines :: Food & Drink :: National & Regional Cuisine', '', 0, 1, 0, '', '', ''),
  521. (4071, 'Vegetarian & Vegan Cookery', 4041, 0, NULL, 'books-comics-magazines_food-drink_vegetarian-vegan-cookery', 'Books, Comics & Magazines :: Food & Drink :: Vegetarian & Vegan Cookery', '', 0, 1, 0, '', '', ''),
  522. (4072, 'Adult & Erotic', 4042, 0, NULL, 'books-comics-magazines_fiction_adult-erotic', 'Books, Comics & Magazines :: Fiction :: Adult & Erotic', '', 0, 1, 0, '', '', ''),
  523. (4073, 'Crime & Thriller', 4042, 0, NULL, 'books-comics-magazines_fiction_crime-thriller', 'Books, Comics & Magazines :: Fiction :: Crime & Thriller', '', 0, 1, 0, '', '', ''),
  524. (4074, 'Fantasy', 4042, 0, NULL, 'books-comics-magazines_fiction_fantasy', 'Books, Comics & Magazines :: Fiction :: Fantasy', '', 0, 1, 0, '', '', ''),
  525. (4075, 'General & Literary Fiction', 4042, 0, NULL, 'books-comics-magazines_fiction_general-literary-fiction', 'Books, Comics & Magazines :: Fiction :: General & Literary Fiction', '', 0, 1, 0, '', '', ''),
  526. (4076, 'Historical & Mythological', 4042, 0, NULL, 'books-comics-magazines_fiction_historical-mythological', 'Books, Comics & Magazines :: Fiction :: Historical & Mythological', '', 0, 1, 0, '', '', ''),
  527. (4077, 'Horror & Ghost Stories', 4042, 0, NULL, 'books-comics-magazines_fiction_horror-ghost-stories', 'Books, Comics & Magazines :: Fiction :: Horror & Ghost Stories', '', 0, 1, 0, '', '', ''),
  528. (4078, 'Humour', 4042, 0, NULL, 'books-comics-magazines_fiction_humour', 'Books, Comics & Magazines :: Fiction :: Humour', '', 0, 1, 0, '', '', ''),
  529. (4079, 'Poetry, Theatre & Scripts', 4042, 0, NULL, 'books-comics-magazines_fiction_poetry-theatre-scripts', 'Books, Comics & Magazines :: Fiction :: Poetry, Theatre & Scripts', '', 0, 1, 0, '', '', ''),
  530. (4080, 'Romance & Sagas', 4042, 0, NULL, 'books-comics-magazines_fiction_romance-sagas', 'Books, Comics & Magazines :: Fiction :: Romance & Sagas', '', 0, 1, 0, '', '', ''),
  531. (4081, 'Science Fiction', 4042, 0, NULL, 'books-comics-magazines_fiction_science-fiction', 'Books, Comics & Magazines :: Fiction :: Science Fiction', '', 0, 1, 0, '', '', ''),
  532. (4082, 'Short Stories & Anthologies', 4042, 0, NULL, 'books-comics-magazines_fiction_short-stories-anthologies', 'Books, Comics & Magazines :: Fiction :: Short Stories & Anthologies', '', 0, 1, 0, '', '', ''),
  533. (4083, 'War Fiction', 4042, 0, NULL, 'books-comics-magazines_fiction_war-fiction', 'Books, Comics & Magazines :: Fiction :: War Fiction', '', 0, 1, 0, '', '', ''),
  534. (4084, 'Westerns', 4042, 0, NULL, 'books-comics-magazines_fiction_westerns', 'Books, Comics & Magazines :: Fiction :: Westerns', '', 0, 1, 0, '', '', ''),
  535. (4085, 'Other Fiction', 4042, 0, NULL, 'books-comics-magazines_fiction_other-fiction', 'Books, Comics & Magazines :: Fiction :: Other Fiction', '', 0, 1, 0, '', '', ''),
  536. (4086, 'The Arts', 4043, 0, NULL, 'books-comics-magazines_non-fiction_the-arts', 'Books, Comics & Magazines :: Non-Fiction :: The Arts', '', 0, 1, 0, '', '', ''),
  537. (4087, 'Biographies & True Stories', 4043, 0, NULL, 'books-comics-magazines_non-fiction_biographies-true-stories', 'Books, Comics & Magazines :: Non-Fiction :: Biographies & True Stories', '', 0, 1, 0, '', '', ''),
  538. (4088, 'Business, Economics & Industry', 4043, 0, NULL, 'books-comics-magazines_non-fiction_business-economics-industry', 'Books, Comics & Magazines :: Non-Fiction :: Business, Economics & Industry', '', 0, 1, 0, '', '', ''),
  539. (4089, 'Computer & IT', 4043, 0, NULL, 'books-comics-magazines_non-fiction_computer-it', 'Books, Comics & Magazines :: Non-Fiction :: Computer & IT', '', 0, 1, 0, '', '', ''),
  540. (4090, 'Dictionaries & Reference', 4043, 0, NULL, 'books-comics-magazines_non-fiction_dictionaries-reference', 'Books, Comics & Magazines :: Non-Fiction :: Dictionaries & Reference', '', 0, 1, 0, '', '', ''),
  541. (4091, 'Engineering & Technology', 4043, 0, NULL, 'books-comics-magazines_non-fiction_engineering-technology', 'Books, Comics & Magazines :: Non-Fiction :: Engineering & Technology', '', 0, 1, 0, '', '', ''),
  542. (4092, 'Environment, Nature & Earth', 4043, 0, NULL, 'books-comics-magazines_non-fiction_environment-nature-earth', 'Books, Comics & Magazines :: Non-Fiction :: Environment, Nature & Earth', '', 0, 1, 0, '', '', ''),
  543. (4093, 'Family, Parenting & Relations', 4043, 0, NULL, 'books-comics-magazines_non-fiction_family-parenting-relations', 'Books, Comics & Magazines :: Non-Fiction :: Family, Parenting & Relations', '', 0, 1, 0, '', '', ''),
  544. (4094, 'Health, Treatments & Medicine', 4043, 0, NULL, 'books-comics-magazines_non-fiction_health-treatments-medicine', 'Books, Comics & Magazines :: Non-Fiction :: Health, Treatments & Medicine', '', 0, 1, 0, '', '', ''),
  545. (4095, 'History & Military', 4043, 0, NULL, 'books-comics-magazines_non-fiction_history-military', 'Books, Comics & Magazines :: Non-Fiction :: History & Military', '', 0, 1, 0, '', '', ''),
  546. (4096, 'Language', 4043, 0, NULL, 'books-comics-magazines_non-fiction_language', 'Books, Comics & Magazines :: Non-Fiction :: Language', '', 0, 1, 0, '', '', ''),
  547. (4097, 'Law', 4043, 0, NULL, 'books-comics-magazines_non-fiction_law', 'Books, Comics & Magazines :: Non-Fiction :: Law', '', 0, 1, 0, '', '', ''),
  548. (4098, 'Leisure, Hobbies & Lifestyle', 4043, 0, NULL, 'books-comics-magazines_non-fiction_leisure-hobbies-lifestyle', 'Books, Comics & Magazines :: Non-Fiction :: Leisure, Hobbies & Lifestyle', '', 0, 1, 0, '', '', ''),
  549. (4099, 'Literature, Poetry & Criticism', 4043, 0, NULL, 'books-comics-magazines_non-fiction_literature-poetry-criticism', 'Books, Comics & Magazines :: Non-Fiction :: Literature, Poetry & Criticism', '', 0, 1, 0, '', '', ''),
  550. (4100, 'Maps & Atlases', 4043, 0, NULL, 'books-comics-magazines_non-fiction_maps-atlases', 'Books, Comics & Magazines :: Non-Fiction :: Maps & Atlases', '', 0, 1, 0, '', '', ''),
  551. (4101, 'Mathematics & Sciences', 4043, 0, NULL, 'books-comics-magazines_non-fiction_mathematics-sciences', 'Books, Comics & Magazines :: Non-Fiction :: Mathematics & Sciences', '', 0, 1, 0, '', '', ''),
  552. (4102, 'Mind, Body & Spirit', 4043, 0, NULL, 'books-comics-magazines_non-fiction_mind-body-spirit', 'Books, Comics & Magazines :: Non-Fiction :: Mind, Body & Spirit', '', 0, 1, 0, '', '', ''),
  553. (4103, 'Personal Development', 4043, 0, NULL, 'books-comics-magazines_non-fiction_personal-development', 'Books, Comics & Magazines :: Non-Fiction :: Personal Development', '', 0, 1, 0, '', '', ''),
  554. (4104, 'Philosophy', 4043, 0, NULL, 'books-comics-magazines_non-fiction_philosophy', 'Books, Comics & Magazines :: Non-Fiction :: Philosophy', '', 0, 1, 0, '', '', ''),
  555. (4105, 'Politics & Government', 4043, 0, NULL, 'books-comics-magazines_non-fiction_politics-government', 'Books, Comics & Magazines :: Non-Fiction :: Politics & Government', '', 0, 1, 0, '', '', ''),
  556. (4106, 'Psychology & Help', 4043, 0, NULL, 'books-comics-magazines_non-fiction_psychology-help', 'Books, Comics & Magazines :: Non-Fiction :: Psychology & Help', '', 0, 1, 0, '', '', ''),
  557. (4107, 'Puzzles, Trivia & Indoor Games', 4043, 0, NULL, 'books-comics-magazines_non-fiction_puzzles-trivia-indoor-games', 'Books, Comics & Magazines :: Non-Fiction :: Puzzles, Trivia & Indoor Games', '', 0, 1, 0, '', '', ''),
  558. (4108, 'Religion & Beliefs', 4043, 0, NULL, 'books-comics-magazines_non-fiction_religion-beliefs', 'Books, Comics & Magazines :: Non-Fiction :: Religion & Beliefs', '', 0, 1, 0, '', '', ''),
  559. (4109, 'Society & Education', 4043, 0, NULL, 'books-comics-magazines_non-fiction_society-education', 'Books, Comics & Magazines :: Non-Fiction :: Society & Education', '', 0, 1, 0, '', '', ''),
  560. (4110, 'Sports', 4043, 0, NULL, 'books-comics-magazines_non-fiction_sports', 'Books, Comics & Magazines :: Non-Fiction :: Sports', '', 0, 1, 0, '', '', ''),
  561. (4111, 'Transport', 4043, 0, NULL, 'books-comics-magazines_non-fiction_transport', 'Books, Comics & Magazines :: Non-Fiction :: Transport', '', 0, 1, 0, '', '', ''),
  562. (4112, 'Travel Guides & Travel Stories', 4043, 0, NULL, 'books-comics-magazines_non-fiction_travel-guides-travel-stories', 'Books, Comics & Magazines :: Non-Fiction :: Travel Guides & Travel Stories', '', 0, 1, 0, '', '', ''),
  563. (4113, 'Other Non-Fiction', 4043, 0, NULL, 'books-comics-magazines_non-fiction_other-non-fiction', 'Books, Comics & Magazines :: Non-Fiction :: Other Non-Fiction', '', 0, 1, 0, '', '', ''),
  564. (4114, 'UK Comics & Annuals', 4044, 0, NULL, 'books-comics-magazines_comics_uk-comics-annuals', 'Books, Comics & Magazines :: Comics :: UK Comics & Annuals', '', 0, 1, 0, '', '', ''),
  565. (4115, 'US Comics', 4044, 0, NULL, 'books-comics-magazines_comics_us-comics', 'Books, Comics & Magazines :: Comics :: US Comics', '', 0, 1, 0, '', '', ''),
  566. (4116, 'European Comics', 4044, 0, NULL, 'books-comics-magazines_comics_european-comics', 'Books, Comics & Magazines :: Comics :: European Comics', '', 0, 1, 0, '', '', ''),
  567. (4117, 'Graphic Novels', 4044, 0, NULL, 'books-comics-magazines_comics_graphic-novels', 'Books, Comics & Magazines :: Comics :: Graphic Novels', '', 0, 1, 0, '', '', ''),
  568. (4118, 'Manga', 4044, 0, NULL, 'books-comics-magazines_comics_manga', 'Books, Comics & Magazines :: Comics :: Manga', '', 0, 1, 0, '', '', ''),
  569. (4119, 'Newspaper Comics', 4044, 0, NULL, 'books-comics-magazines_comics_newspaper-comics', 'Books, Comics & Magazines :: Comics :: Newspaper Comics', '', 0, 1, 0, '', '', ''),
  570. (4120, 'Original Comic Art', 4044, 0, NULL, 'books-comics-magazines_comics_original-comic-art', 'Books, Comics & Magazines :: Comics :: Original Comic Art', '', 0, 1, 0, '', '', ''),
  571. (4121, 'Other Comics', 4044, 0, NULL, 'books-comics-magazines_comics_other-comics', 'Books, Comics & Magazines :: Comics :: Other Comics', '', 0, 1, 0, '', '', ''),
  572. (4122, 'Antiques & Collectables', 4045, 0, NULL, 'books-comics-magazines_magazines_antiques-collectables', 'Books, Comics & Magazines :: Magazines :: Antiques & Collectables', '', 0, 1, 0, '', '', ''),
  573. (4123, 'Architecture, Art & Design', 4045, 0, NULL, 'books-comics-magazines_magazines_architecture-art-design', 'Books, Comics & Magazines :: Magazines :: Architecture, Art & Design', '', 0, 1, 0, '', '', ''),
  574. (4124, 'Business & Management', 4045, 0, NULL, 'books-comics-magazines_magazines_business-management', 'Books, Comics & Magazines :: Magazines :: Business & Management', '', 0, 1, 0, '', '', ''),
  575. (4125, 'Children's & Young Adults', 4045, 0, NULL, 'books-comics-magazines_magazines_childrens-young-adults', 'Books, Comics & Magazines :: Magazines :: Children's & Young Adults', '', 0, 1, 0, '', '', ''),
  576. (4126, 'Computing, IT & Internet', 4045, 0, NULL, 'books-comics-magazines_magazines_computing-it-internet', 'Books, Comics & Magazines :: Magazines :: Computing, IT & Internet', '', 0, 1, 0, '', '', ''),
  577. (4127, 'Crafts', 4045, 0, NULL, 'books-comics-magazines_magazines_crafts', 'Books, Comics & Magazines :: Magazines :: Crafts', '', 0, 1, 0, '', '', ''),
  578. (4128, 'Film & TV', 4045, 0, NULL, 'books-comics-magazines_magazines_film-tv', 'Books, Comics & Magazines :: Magazines :: Film & TV', '', 0, 1, 0, '', '', ''),
  579. (4129, 'Food & Drink', 4045, 0, NULL, 'books-comics-magazines_magazines_food-drink', 'Books, Comics & Magazines :: Magazines :: Food & Drink', '', 0, 1, 0, '', '', ''),
  580. (4130, 'Games & Puzzles', 4045, 0, NULL, 'books-comics-magazines_magazines_games-puzzles', 'Books, Comics & Magazines :: Magazines :: Games & Puzzles', '', 0, 1, 0, '', '', ''),
  581. (4131, 'Gardening', 4045, 0, NULL, 'books-comics-magazines_magazines_gardening', 'Books, Comics & Magazines :: Magazines :: Gardening', '', 0, 1, 0, '', '', ''),
  582. (4132, 'Health & Fitness', 4045, 0, NULL, 'books-comics-magazines_magazines_health-fitness', 'Books, Comics & Magazines :: Magazines :: Health & Fitness', '', 0, 1, 0, '', '', ''),
  583. (4133, 'History & Politics', 4045, 0, NULL, 'books-comics-magazines_magazines_history-politics', 'Books, Comics & Magazines :: Magazines :: History & Politics', '', 0, 1, 0, '', '', ''),
  584. (4134, 'Home', 4045, 0, NULL, 'books-comics-magazines_magazines_home', 'Books, Comics & Magazines :: Magazines :: Home', '', 0, 1, 0, '', '', ''),
  585. (4135, 'Horror & Monsters', 4045, 0, NULL, 'books-comics-magazines_magazines_horror-monsters', 'Books, Comics & Magazines :: Magazines :: Horror & Monsters', '', 0, 1, 0, '', '', ''),
  586. (4136, 'Humour', 4045, 0, NULL, 'books-comics-magazines_magazines_humour', 'Books, Comics & Magazines :: Magazines :: Humour', '', 0, 1, 0, '', '', ''),
  587. (4137, 'Literary', 4045, 0, NULL, 'books-comics-magazines_magazines_literary', 'Books, Comics & Magazines :: Magazines :: Literary', '', 0, 1, 0, '', '', ''),
  588. (4138, 'Medical & Nursing', 4045, 0, NULL, 'books-comics-magazines_magazines_medical-nursing', 'Books, Comics & Magazines :: Magazines :: Medical & Nursing', '', 0, 1, 0, '', '', ''),
  589. (4139, 'Men's', 4045, 0, NULL, 'books-comics-magazines_magazines_mens', 'Books, Comics & Magazines :: Magazines :: Men's', '', 0, 1, 0, '', '', ''),
  590. (4140, 'Military & War', 4045, 0, NULL, 'books-comics-magazines_magazines_military-war', 'Books, Comics & Magazines :: Magazines :: Military & War', '', 0, 1, 0, '', '', ''),
  591. (4141, 'Music, Dance & Theatre', 4045, 0, NULL, 'books-comics-magazines_magazines_music-dance-theatre', 'Books, Comics & Magazines :: Magazines :: Music, Dance & Theatre', '', 0, 1, 0, '', '', ''),
  592. (4142, 'Nature, Outdoors & Geography', 4045, 0, NULL, 'books-comics-magazines_magazines_nature-outdoors-geography', 'Books, Comics & Magazines :: Magazines :: Nature, Outdoors & Geography', '', 0, 1, 0, '', '', ''),
  593. (4143, 'News & Current Affairs', 4045, 0, NULL, 'books-comics-magazines_magazines_news-current-affairs', 'Books, Comics & Magazines :: Magazines :: News & Current Affairs', '', 0, 1, 0, '', '', ''),
  594. (4144, 'Paranormal & Supernatural', 4045, 0, NULL, 'books-comics-magazines_magazines_paranormal-supernatural', 'Books, Comics & Magazines :: Magazines :: Paranormal & Supernatural', '', 0, 1, 0, '', '', ''),
  595. (4145, 'Pet & Animal Care', 4045, 0, NULL, 'books-comics-magazines_magazines_pet-animal-care', 'Books, Comics & Magazines :: Magazines :: Pet & Animal Care', '', 0, 1, 0, '', '', ''),
  596. (4146, 'Photography', 4045, 0, NULL, 'books-comics-magazines_magazines_photography', 'Books, Comics & Magazines :: Magazines :: Photography', '', 0, 1, 0, '', '', ''),
  597. (4147, 'Pulp', 4045, 0, NULL, 'books-comics-magazines_magazines_pulp', 'Books, Comics & Magazines :: Magazines :: Pulp', '', 0, 1, 0, '', '', ''),
  598. (4148, 'Religion & Spirituality', 4045, 0, NULL, 'books-comics-magazines_magazines_religion-spirituality', 'Books, Comics & Magazines :: Magazines :: Religion & Spirituality', '', 0, 1, 0, '', '', ''),
  599. (4149, 'Science', 4045, 0, NULL, 'books-comics-magazines_magazines_science', 'Books, Comics & Magazines :: Magazines :: Science', '', 0, 1, 0, '', '', ''),
  600. (4150, 'Science Fiction', 4045, 0, NULL, 'books-comics-magazines_magazines_science-fiction', 'Books, Comics & Magazines :: Magazines :: Science Fiction', '', 0, 1, 0, '', '', ''),
  601. (4151, 'Sports', 4045, 0, NULL, 'books-comics-magazines_magazines_sports', 'Books, Comics & Magazines :: Magazines :: Sports', '', 0, 1, 0, '', '', ''),
  602. (4152, 'Transportation', 4045, 0, NULL, 'books-comics-magazines_magazines_transportation', 'Books, Comics & Magazines :: Magazines :: Transportation', '', 0, 1, 0, '', '', ''),
  603. (4153, 'Travel & Exploration', 4045, 0, NULL, 'books-comics-magazines_magazines_travel-exploration', 'Books, Comics & Magazines :: Magazines :: Travel & Exploration', '', 0, 1, 0, '', '', ''),
  604. (4154, 'True Crime', 4045, 0, NULL, 'books-comics-magazines_magazines_true-crime', 'Books, Comics & Magazines :: Magazines :: True Crime', '', 0, 1, 0, '', '', ''),
  605. (4155, 'Urban, Lifestyle & Fashion', 4045, 0, NULL, 'books-comics-magazines_magazines_urban-lifestyle-fashion', 'Books, Comics & Magazines :: Magazines :: Urban, Lifestyle & Fashion', '', 0, 1, 0, '', '', ''),
  606. (4156, 'Women's', 4045, 0, NULL, 'books-comics-magazines_magazines_womens', 'Books, Comics & Magazines :: Magazines :: Women's', '', 0, 1, 0, '', '', ''),
  607. (4157, 'Other Magazines', 4045, 0, NULL, 'books-comics-magazines_magazines_other-magazines', 'Books, Comics & Magazines :: Magazines :: Other Magazines', '', 0, 1, 0, '', '', ''),
  608. (4158, 'Books', 4046, 0, NULL, 'books-comics-magazines_collections-lots_books', 'Books, Comics & Magazines :: Collections & Lots :: Books', '', 0, 1, 0, '', '', ''),
  609. (4159, 'Comics', 4046, 0, NULL, 'books-comics-magazines_collections-lots_comics', 'Books, Comics & Magazines :: Collections & Lots :: Comics', '', 0, 1, 0, '', '', ''),
  610. (4160, 'Magazines', 4046, 0, NULL, 'books-comics-magazines_collections-lots_magazines', 'Books, Comics & Magazines :: Collections & Lots :: Magazines', '', 0, 1, 0, '', '', ''),
  611. (4161, 'Agriculture/ Farming', 3681, 0, NULL, 'business-office-industrial_agriculture-farming', 'Business, Office & Industrial :: Agriculture/ Farming', '', 0, 1, 0, '', '', ''),
  612. (4162, 'Building Materials & Supplies', 3681, 0, NULL, 'business-office-industrial_building-materials-supplies', 'Business, Office & Industrial :: Building Materials & Supplies', '', 0, 1, 0, '', '', ''),
  613. (4163, 'Businesses For Sale', 3681, 0, NULL, 'business-office-industrial_businesses-for-sale', 'Business, Office & Industrial :: Businesses For Sale', '', 0, 1, 0, '', '', ''),
  614. (4164, 'Electrical & Test Equipment', 3681, 0, NULL, 'business-office-industrial_electrical-test-equipment', 'Business, Office & Industrial :: Electrical & Test Equipment', '', 0, 1, 0, '', '', ''),
  615. (4165, 'Containers & Pre-Fab Buildings', 3681, 0, NULL, 'business-office-industrial_containers-pre-fab-buildings', 'Business, Office & Industrial :: Containers & Pre-Fab Buildings', '', 0, 1, 0, '', '', ''),
  616. (4166, 'Hand Tools', 3681, 0, NULL, 'business-office-industrial_hand-tools', 'Business, Office & Industrial :: Hand Tools', '', 0, 1, 0, '', '', ''),
  617. (4167, 'Industrial Supply/ MRO', 3681, 0, NULL, 'business-office-industrial_industrial-supply-mro', 'Business, Office & Industrial :: Industrial Supply/ MRO', '', 0, 1, 0, '', '', ''),
  618. (4168, 'Industrial Tools', 3681, 0, NULL, 'business-office-industrial_industrial-tools', 'Business, Office & Industrial :: Industrial Tools', '', 0, 1, 0, '', '', ''),
  619. (4169, 'Manufacturing & Woodworking', 3681, 0, NULL, 'business-office-industrial_manufacturing-woodworking', 'Business, Office & Industrial :: Manufacturing & Woodworking', '', 0, 1, 0, '', '', ''),
  620. (4170, 'Metalworking/ Milling/ Welding', 3681, 0, NULL, 'business-office-industrial_metalworking-milling-welding', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding', '', 0, 1, 0, '', '', ''),
  621. (4171, 'Medical/ Lab Equipment', 3681, 0, NULL, 'business-office-industrial_medical-lab-equipment', 'Business, Office & Industrial :: Medical/ Lab Equipment', '', 0, 1, 0, '', '', ''),
  622. (4172, 'Office Equipment & Supplies', 3681, 0, NULL, 'business-office-industrial_office-equipment-supplies', 'Business, Office & Industrial :: Office Equipment & Supplies', '', 0, 1, 0, '', '', ''),
  623. (4173, 'Packing & Posting Supplies', 3681, 0, NULL, 'business-office-industrial_packing-posting-supplies', 'Business, Office & Industrial :: Packing & Posting Supplies', '', 0, 1, 0, '', '', ''),
  624. (4174, 'Power Tools', 3681, 0, NULL, 'business-office-industrial_power-tools', 'Business, Office & Industrial :: Power Tools', '', 0, 1, 0, '', '', ''),
  625. (4175, 'Printing & Graphic Arts', 3681, 0, NULL, 'business-office-industrial_printing-graphic-arts', 'Business, Office & Industrial :: Printing & Graphic Arts', '', 0, 1, 0, '', '', ''),
  626. (4176, 'Restaurant & Catering', 3681, 0, NULL, 'business-office-industrial_restaurant-catering', 'Business, Office & Industrial :: Restaurant & Catering', '', 0, 1, 0, '', '', ''),
  627. (4177, 'Retail & Shop Fitting', 3681, 0, NULL, 'business-office-industrial_retail-shop-fitting', 'Business, Office & Industrial :: Retail & Shop Fitting', '', 0, 1, 0, '', '', ''),
  628. (4178, 'Telephone & Answering Systems', 3681, 0, NULL, 'business-office-industrial_telephone-answering-systems', 'Business, Office & Industrial :: Telephone & Answering Systems', '', 0, 1, 0, '', '', ''),
  629. (4179, 'Video Broadcasting & Recording', 3681, 0, NULL, 'business-office-industrial_video-broadcasting-recording', 'Business, Office & Industrial :: Video Broadcasting & Recording', '', 0, 1, 0, '', '', ''),
  630. (4180, 'Web Domains/ Email/ Software', 3681, 0, NULL, 'business-office-industrial_web-domains-email-software', 'Business, Office & Industrial :: Web Domains/ Email/ Software', '', 0, 1, 0, '', '', ''),
  631. (4181, 'Other Business & Industrial', 3681, 0, NULL, 'business-office-industrial_other-business-industrial', 'Business, Office & Industrial :: Other Business & Industrial', '', 0, 1, 0, '', '', ''),
  632. (4182, 'Farm Implements & Equipment', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_farm-implements-equipment', 'Business, Office & Industrial :: Agriculture/ Farming :: Farm Implements & Equipment', '', 0, 1, 0, '', '', ''),
  633. (4183, 'Livestock Supplies', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_livestock-supplies', 'Business, Office & Industrial :: Agriculture/ Farming :: Livestock Supplies', '', 0, 1, 0, '', '', ''),
  634. (4184, 'Stationary Engines', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_stationary-engines', 'Business, Office & Industrial :: Agriculture/ Farming :: Stationary Engines', '', 0, 1, 0, '', '', ''),
  635. (4185, 'Storage Tanks', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_storage-tanks', 'Business, Office & Industrial :: Agriculture/ Farming :: Storage Tanks', '', 0, 1, 0, '', '', ''),
  636. (4186, 'Tractors', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_tractors', 'Business, Office & Industrial :: Agriculture/ Farming :: Tractors', '', 0, 1, 0, '', '', ''),
  637. (4187, 'Tractor Manuals & Publications', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_tractor-manuals-publications', 'Business, Office & Industrial :: Agriculture/ Farming :: Tractor Manuals & Publications', '', 0, 1, 0, '', '', ''),
  638. (4188, 'Tractor Parts', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_tractor-parts', 'Business, Office & Industrial :: Agriculture/ Farming :: Tractor Parts', '', 0, 1, 0, '', '', ''),
  639. (4189, 'Trailers', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_trailers', 'Business, Office & Industrial :: Agriculture/ Farming :: Trailers', '', 0, 1, 0, '', '', ''),
  640. (4190, 'Other Agriculture/ Farming', 4161, 0, NULL, 'business-office-industrial_agriculture-farming_other-agriculture-farming', 'Business, Office & Industrial :: Agriculture/ Farming :: Other Agriculture/ Farming', '', 0, 1, 0, '', '', ''),
  641. (4191, 'Bricks', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_bricks', 'Business, Office & Industrial :: Building Materials & Supplies :: Bricks', '', 0, 1, 0, '', '', ''),
  642. (4192, 'Building Regulations & Courses', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_building-regulations-courses', 'Business, Office & Industrial :: Building Materials & Supplies :: Building Regulations & Courses', '', 0, 1, 0, '', '', ''),
  643. (4193, 'Carpentry & Woodwork', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_carpentry-woodwork', 'Business, Office & Industrial :: Building Materials & Supplies :: Carpentry & Woodwork', '', 0, 1, 0, '', '', ''),
  644. (4194, 'Ceilings', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_ceilings', 'Business, Office & Industrial :: Building Materials & Supplies :: Ceilings', '', 0, 1, 0, '', '', ''),
  645. (4195, 'Doors & Door Fixtures', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_doors-door-fixtures', 'Business, Office & Industrial :: Building Materials & Supplies :: Doors & Door Fixtures', '', 0, 1, 0, '', '', ''),
  646. (4196, 'Electrical', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_electrical', 'Business, Office & Industrial :: Building Materials & Supplies :: Electrical', '', 0, 1, 0, '', '', ''),
  647. (4197, 'Flooring', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_flooring', 'Business, Office & Industrial :: Building Materials & Supplies :: Flooring', '', 0, 1, 0, '', '', ''),
  648. (4198, 'Insulation', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_insulation', 'Business, Office & Industrial :: Building Materials & Supplies :: Insulation', '', 0, 1, 0, '', '', ''),
  649. (4199, 'Lights & Lighting', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_lights-lighting', 'Business, Office & Industrial :: Building Materials & Supplies :: Lights & Lighting', '', 0, 1, 0, '', '', ''),
  650. (4200, 'Locks & Keys', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_locks-keys', 'Business, Office & Industrial :: Building Materials & Supplies :: Locks & Keys', '', 0, 1, 0, '', '', ''),
  651. (4201, 'Nuts/ Bolts/ Nails/ Screws', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_nuts-bolts-nails-screws', 'Business, Office & Industrial :: Building Materials & Supplies :: Nuts/ Bolts/ Nails/ Screws', '', 0, 1, 0, '', '', ''),
  652. (4202, 'Painting', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_painting', 'Business, Office & Industrial :: Building Materials & Supplies :: Painting', '', 0, 1, 0, '', '', ''),
  653. (4203, 'Plastering', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_plastering', 'Business, Office & Industrial :: Building Materials & Supplies :: Plastering', '', 0, 1, 0, '', '', ''),
  654. (4204, 'Plumbing', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_plumbing', 'Business, Office & Industrial :: Building Materials & Supplies :: Plumbing', '', 0, 1, 0, '', '', ''),
  655. (4205, 'Roofing', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_roofing', 'Business, Office & Industrial :: Building Materials & Supplies :: Roofing', '', 0, 1, 0, '', '', ''),
  656. (4206, 'Scaffolding & Ladders', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_scaffolding-ladders', 'Business, Office & Industrial :: Building Materials & Supplies :: Scaffolding & Ladders', '', 0, 1, 0, '', '', ''),
  657. (4207, 'Walls', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_walls', 'Business, Office & Industrial :: Building Materials & Supplies :: Walls', '', 0, 1, 0, '', '', ''),
  658. (4208, 'Windows & Glass', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_windows-glass', 'Business, Office & Industrial :: Building Materials & Supplies :: Windows & Glass', '', 0, 1, 0, '', '', ''),
  659. (4209, 'Other Building Materials', 4162, 0, NULL, 'business-office-industrial_building-materials-supplies_other-building-materials', 'Business, Office & Industrial :: Building Materials & Supplies :: Other Building Materials', '', 0, 1, 0, '', '', ''),
  660. (4210, 'Internet Businesses/ Websites', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_internet-businesses-websites', 'Business, Office & Industrial :: Businesses For Sale :: Internet Businesses/ Websites', '', 0, 1, 0, '', '', ''),
  661. (4211, 'Manufacturing', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_manufacturing', 'Business, Office & Industrial :: Businesses For Sale :: Manufacturing', '', 0, 1, 0, '', '', ''),
  662. (4212, 'Marketing', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_marketing', 'Business, Office & Industrial :: Businesses For Sale :: Marketing', '', 0, 1, 0, '', '', ''),
  663. (4213, 'Retailing', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_retailing', 'Business, Office & Industrial :: Businesses For Sale :: Retailing', '', 0, 1, 0, '', '', ''),
  664. (4214, 'Service Businesses', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_service-businesses', 'Business, Office & Industrial :: Businesses For Sale :: Service Businesses', '', 0, 1, 0, '', '', ''),
  665. (4215, 'Wholesaling', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_wholesaling', 'Business, Office & Industrial :: Businesses For Sale :: Wholesaling', '', 0, 1, 0, '', '', ''),
  666. (4216, 'Other Businesses For Sale', 4163, 0, NULL, 'business-office-industrial_businesses-for-sale_other-businesses-for-sale', 'Business, Office & Industrial :: Businesses For Sale :: Other Businesses For Sale', '', 0, 1, 0, '', '', ''),
  667. (4217, 'Circuit Breakers', 4164, 0, NULL, 'business-office-industrial_electrical-test-equipment_circuit-breakers', 'Business, Office & Industrial :: Electrical & Test Equipment :: Circuit Breakers', '', 0, 1, 0, '', '', ''),
  668. (4218, 'Components & Supplies', 4164, 0, NULL, 'business-office-industrial_electrical-test-equipment_components-supplies', 'Business, Office & Industrial :: Electrical & Test Equipment :: Components & Supplies', '', 0, 1, 0, '', '', ''),
  669. (4219, 'Industrial Automation/ Control', 4164, 0, NULL, 'business-office-industrial_electrical-test-equipment_industrial-automation-control', 'Business, Office & Industrial :: Electrical & Test Equipment :: Industrial Automation/ Control', '', 0, 1, 0, '', '', ''),
  670. (4220, 'Test & Measurement Equipment', 4164, 0, NULL, 'business-office-industrial_electrical-test-equipment_test-measurement-equipment', 'Business, Office & Industrial :: Electrical & Test Equipment :: Test & Measurement Equipment', '', 0, 1, 0, '', '', ''),
  671. (4221, 'Manuals & Publications', 4164, 0, NULL, 'business-office-industrial_electrical-test-equipment_manuals-publications', 'Business, Office & Industrial :: Electrical & Test Equipment :: Manuals & Publications', '', 0, 1, 0, '', '', ''),
  672. (4222, 'Other Electrical/ Test Eqpt', 4164, 0, NULL, 'business-office-industrial_electrical-test-equipment_other-electrical-test-eqpt', 'Business, Office & Industrial :: Electrical & Test Equipment :: Other Electrical/ Test Eqpt', '', 0, 1, 0, '', '', ''),
  673. (4223, 'Pre-Fabricated Buildings', 4165, 0, NULL, 'business-office-industrial_containers-pre-fab-buildings_pre-fabricated-buildings', 'Business, Office & Industrial :: Containers & Pre-Fab Buildings :: Pre-Fabricated Buildings', '', 0, 1, 0, '', '', ''),
  674. (4224, 'Shipping & Storage Containers', 4165, 0, NULL, 'business-office-industrial_containers-pre-fab-buildings_shipping-storage-containers', 'Business, Office & Industrial :: Containers & Pre-Fab Buildings :: Shipping & Storage Containers', '', 0, 1, 0, '', '', ''),
  675. (4225, 'Other Pre-Fab Buildings', 4165, 0, NULL, 'business-office-industrial_containers-pre-fab-buildings_other-pre-fab-buildings', 'Business, Office & Industrial :: Containers & Pre-Fab Buildings :: Other Pre-Fab Buildings', '', 0, 1, 0, '', '', ''),
  676. (4226, 'Bolt Cutters', 4166, 0, NULL, 'business-office-industrial_hand-tools_bolt-cutters', 'Business, Office & Industrial :: Hand Tools :: Bolt Cutters', '', 0, 1, 0, '', '', ''),
  677. (4227, 'Chisels', 4166, 0, NULL, 'business-office-industrial_hand-tools_chisels', 'Business, Office & Industrial :: Hand Tools :: Chisels', '', 0, 1, 0, '', '', ''),
  678. (4228, 'Clamps', 4166, 0, NULL, 'business-office-industrial_hand-tools_clamps', 'Business, Office & Industrial :: Hand Tools :: Clamps', '', 0, 1, 0, '', '', ''),
  679. (4229, 'Crowbars', 4166, 0, NULL, 'business-office-industrial_hand-tools_crowbars', 'Business, Office & Industrial :: Hand Tools :: Crowbars', '', 0, 1, 0, '', '', ''),
  680. (4230, 'Files', 4166, 0, NULL, 'business-office-industrial_hand-tools_files', 'Business, Office & Industrial :: Hand Tools :: Files', '', 0, 1, 0, '', '', ''),
  681. (4231, 'Hammers', 4166, 0, NULL, 'business-office-industrial_hand-tools_hammers', 'Business, Office & Industrial :: Hand Tools :: Hammers', '', 0, 1, 0, '', '', ''),
  682. (4232, 'Hand/ Foot Pumps', 4166, 0, NULL, 'business-office-industrial_hand-tools_hand-foot-pumps', 'Business, Office & Industrial :: Hand Tools :: Hand/ Foot Pumps', '', 0, 1, 0, '', '', ''),
  683. (4233, 'Knife Sharpening', 4166, 0, NULL, 'business-office-industrial_hand-tools_knife-sharpening', 'Business, Office & Industrial :: Hand Tools :: Knife Sharpening', '', 0, 1, 0, '', '', ''),
  684. (4234, 'Measuring Tools', 4166, 0, NULL, 'business-office-industrial_hand-tools_measuring-tools', 'Business, Office & Industrial :: Hand Tools :: Measuring Tools', '', 0, 1, 0, '', '', ''),
  685. (4235, 'Multitools', 4166, 0, NULL, 'business-office-industrial_hand-tools_multitools', 'Business, Office & Industrial :: Hand Tools :: Multitools', '', 0, 1, 0, '', '', ''),
  686. (4236, 'Painting & Decorating Tools', 4166, 0, NULL, 'business-office-industrial_hand-tools_painting-decorating-tools', 'Business, Office & Industrial :: Hand Tools :: Painting & Decorating Tools', '', 0, 1, 0, '', '', ''),
  687. (4237, 'Planes', 4166, 0, NULL, 'business-office-industrial_hand-tools_planes', 'Business, Office & Industrial :: Hand Tools :: Planes', '', 0, 1, 0, '', '', ''),
  688. (4238, 'Pliers', 4166, 0, NULL, 'business-office-industrial_hand-tools_pliers', 'Business, Office & Industrial :: Hand Tools :: Pliers', '', 0, 1, 0, '', '', ''),
  689. (4239, 'Saws', 4166, 0, NULL, 'business-office-industrial_hand-tools_saws', 'Business, Office & Industrial :: Hand Tools :: Saws', '', 0, 1, 0, '', '', ''),
  690. (4240, 'Screwdrivers', 4166, 0, NULL, 'business-office-industrial_hand-tools_screwdrivers', 'Business, Office & Industrial :: Hand Tools :: Screwdrivers', '', 0, 1, 0, '', '', ''),
  691. (4241, 'Spanners', 4166, 0, NULL, 'business-office-industrial_hand-tools_spanners', 'Business, Office & Industrial :: Hand Tools :: Spanners', '', 0, 1, 0, '', '', ''),
  692. (4242, 'Spirit Levels', 4166, 0, NULL, 'business-office-industrial_hand-tools_spirit-levels', 'Business, Office & Industrial :: Hand Tools :: Spirit Levels', '', 0, 1, 0, '', '', ''),
  693. (4243, 'Tin Snips', 4166, 0, NULL, 'business-office-industrial_hand-tools_tin-snips', 'Business, Office & Industrial :: Hand Tools :: Tin Snips', '', 0, 1, 0, '', '', ''),
  694. (4244, 'Tool Belts', 4166, 0, NULL, 'business-office-industrial_hand-tools_tool-belts', 'Business, Office & Industrial :: Hand Tools :: Tool Belts', '', 0, 1, 0, '', '', ''),
  695. (4245, 'Tool Kits & Sets', 4166, 0, NULL, 'business-office-industrial_hand-tools_tool-kits-sets', 'Business, Office & Industrial :: Hand Tools :: Tool Kits & Sets', '', 0, 1, 0, '', '', ''),
  696. (4246, 'Trowels', 4166, 0, NULL, 'business-office-industrial_hand-tools_trowels', 'Business, Office & Industrial :: Hand Tools :: Trowels', '', 0, 1, 0, '', '', ''),
  697. (4247, 'Vices', 4166, 0, NULL, 'business-office-industrial_hand-tools_vices', 'Business, Office & Industrial :: Hand Tools :: Vices', '', 0, 1, 0, '', '', ''),
  698. (4248, 'Wire Strippers & Cutters', 4166, 0, NULL, 'business-office-industrial_hand-tools_wire-strippers-cutters', 'Business, Office & Industrial :: Hand Tools :: Wire Strippers & Cutters', '', 0, 1, 0, '', '', ''),
  699. (4249, 'Other Hand Tools', 4166, 0, NULL, 'business-office-industrial_hand-tools_other-hand-tools', 'Business, Office & Industrial :: Hand Tools :: Other Hand Tools', '', 0, 1, 0, '', '', ''),
  700. (4250, 'Cleaning Equipment & Supplies', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_cleaning-equipment-supplies', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Cleaning Equipment & Supplies', '', 0, 1, 0, '', '', ''),
  701. (4251, 'HVAC', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_hvac', 'Business, Office & Industrial :: Industrial Supply/ MRO :: HVAC', '', 0, 1, 0, '', '', ''),
  702. (4252, 'Hydraulics & Pneumatics', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_hydraulics-pneumatics', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Hydraulics & Pneumatics', '', 0, 1, 0, '', '', ''),
  703. (4253, 'Industrial Fire Protection', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_industrial-fire-protection', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Industrial Fire Protection', '', 0, 1, 0, '', '', ''),
  704. (4254, 'Magnets', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_magnets', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Magnets', '', 0, 1, 0, '', '', ''),
  705. (4255, 'Material Handling', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_material-handling', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Material Handling', '', 0, 1, 0, '', '', ''),
  706. (4256, 'Protective & Safety Gear', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_protective-safety-gear', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Protective & Safety Gear', '', 0, 1, 0, '', '', ''),
  707. (4257, 'Pumps', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_pumps', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Pumps', '', 0, 1, 0, '', '', ''),
  708. (4258, 'Security Equipment', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_security-equipment', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Security Equipment', '', 0, 1, 0, '', '', ''),
  709. (4259, 'Other Industrial Supply', 4167, 0, NULL, 'business-office-industrial_industrial-supply-mro_other-industrial-supply', 'Business, Office & Industrial :: Industrial Supply/ MRO :: Other Industrial Supply', '', 0, 1, 0, '', '', ''),
  710. (4260, 'Compressors', 4168, 0, NULL, 'business-office-industrial_industrial-tools_compressors', 'Business, Office & Industrial :: Industrial Tools :: Compressors', '', 0, 1, 0, '', '', ''),
  711. (4261, 'Construction Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_construction-tools', 'Business, Office & Industrial :: Industrial Tools :: Construction Tools', '', 0, 1, 0, '', '', ''),
  712. (4262, 'Cutting & Sawing Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_cutting-sawing-tools', 'Business, Office & Industrial :: Industrial Tools :: Cutting & Sawing Tools', '', 0, 1, 0, '', '', ''),
  713. (4263, 'Drilling Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_drilling-tools', 'Business, Office & Industrial :: Industrial Tools :: Drilling Tools', '', 0, 1, 0, '', '', ''),
  714. (4264, 'Dust Extractors', 4168, 0, NULL, 'business-office-industrial_industrial-tools_dust-extractors', 'Business, Office & Industrial :: Industrial Tools :: Dust Extractors', '', 0, 1, 0, '', '', ''),
  715. (4265, 'Engineering Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_engineering-tools', 'Business, Office & Industrial :: Industrial Tools :: Engineering Tools', '', 0, 1, 0, '', '', ''),
  716. (4266, 'Generators', 4168, 0, NULL, 'business-office-industrial_industrial-tools_generators', 'Business, Office & Industrial :: Industrial Tools :: Generators', '', 0, 1, 0, '', '', ''),
  717. (4267, 'Lifting Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_lifting-tools', 'Business, Office & Industrial :: Industrial Tools :: Lifting Tools', '', 0, 1, 0, '', '', ''),
  718. (4268, 'Measuring Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_measuring-tools', 'Business, Office & Industrial :: Industrial Tools :: Measuring Tools', '', 0, 1, 0, '', '', ''),
  719. (4269, 'Painting', 4168, 0, NULL, 'business-office-industrial_industrial-tools_painting', 'Business, Office & Industrial :: Industrial Tools :: Painting', '', 0, 1, 0, '', '', ''),
  720. (4270, 'Plumbing Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_plumbing-tools', 'Business, Office & Industrial :: Industrial Tools :: Plumbing Tools', '', 0, 1, 0, '', '', ''),
  721. (4271, 'Pressure Washers', 4168, 0, NULL, 'business-office-industrial_industrial-tools_pressure-washers', 'Business, Office & Industrial :: Industrial Tools :: Pressure Washers', '', 0, 1, 0, '', '', ''),
  722. (4272, 'Surveying Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_surveying-tools', 'Business, Office & Industrial :: Industrial Tools :: Surveying Tools', '', 0, 1, 0, '', '', ''),
  723. (4273, 'Other Industrial Tools', 4168, 0, NULL, 'business-office-industrial_industrial-tools_other-industrial-tools', 'Business, Office & Industrial :: Industrial Tools :: Other Industrial Tools', '', 0, 1, 0, '', '', ''),
  724. (4274, 'Plastics Equipment & Materials', 4169, 0, NULL, 'business-office-industrial_manufacturing-woodworking_plastics-equipment-materials', 'Business, Office & Industrial :: Manufacturing & Woodworking :: Plastics Equipment & Materials', '', 0, 1, 0, '', '', ''),
  725. (4275, 'Process Equipment', 4169, 0, NULL, 'business-office-industrial_manufacturing-woodworking_process-equipment', 'Business, Office & Industrial :: Manufacturing & Woodworking :: Process Equipment', '', 0, 1, 0, '', '', ''),
  726. (4276, 'Textile/ Clothes Manufacturing', 4169, 0, NULL, 'business-office-industrial_manufacturing-woodworking_textile-clothes-manufacturing', 'Business, Office & Industrial :: Manufacturing & Woodworking :: Textile/ Clothes Manufacturing', '', 0, 1, 0, '', '', ''),
  727. (4277, 'Woodworking', 4169, 0, NULL, 'business-office-industrial_manufacturing-woodworking_woodworking', 'Business, Office & Industrial :: Manufacturing & Woodworking :: Woodworking', '', 0, 1, 0, '', '', ''),
  728. (4278, 'Other Manufacturing', 4169, 0, NULL, 'business-office-industrial_manufacturing-woodworking_other-manufacturing', 'Business, Office & Industrial :: Manufacturing & Woodworking :: Other Manufacturing', '', 0, 1, 0, '', '', ''),
  729. (4279, 'Anvils', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_anvils', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Anvils', '', 0, 1, 0, '', '', ''),
  730. (4280, 'Chucks', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_chucks', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Chucks', '', 0, 1, 0, '', '', ''),
  731. (4281, 'Folders', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_folders', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Folders', '', 0, 1, 0, '', '', ''),
  732. (4282, 'Guillotines', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_guillotines', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Guillotines', '', 0, 1, 0, '', '', ''),
  733. (4283, 'Lathes', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_lathes', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Lathes', '', 0, 1, 0, '', '', ''),
  734. (4284, 'Metalworking Supplies', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_metalworking-supplies', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Metalworking Supplies', '', 0, 1, 0, '', '', ''),
  735. (4285, 'Milling', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_milling', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Milling', '', 0, 1, 0, '', '', ''),
  736. (4286, 'Rollers', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_rollers', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Rollers', '', 0, 1, 0, '', '', ''),
  737. (4287, 'Welding', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_welding', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Welding', '', 0, 1, 0, '', '', ''),
  738. (4288, 'Other Metalworking Tools', 4170, 0, NULL, 'business-office-industrial_metalworking-milling-welding_other-metalworking-tools', 'Business, Office & Industrial :: Metalworking/ Milling/ Welding :: Other Metalworking Tools', '', 0, 1, 0, '', '', ''),
  739. (4289, 'Lab Equipment', 4171, 0, NULL, 'business-office-industrial_medical-lab-equipment_lab-equipment', 'Business, Office & Industrial :: Medical/ Lab Equipment :: Lab Equipment', '', 0, 1, 0, '', '', ''),
  740. (4290, 'Lab Supplies', 4171, 0, NULL, 'business-office-industrial_medical-lab-equipment_lab-supplies', 'Business, Office & Industrial :: Medical/ Lab Equipment :: Lab Supplies', '', 0, 1, 0, '', '', ''),
  741. (4291, 'Medical Equipt. & Instruments', 4171, 0, NULL, 'business-office-industrial_medical-lab-equipment_medical-equipt-instruments', 'Business, Office & Industrial :: Medical/ Lab Equipment :: Medical Equipt. & Instruments', '', 0, 1, 0, '', '', ''),
  742. (4292, 'Medical Specialisations', 4171, 0, NULL, 'business-office-industrial_medical-lab-equipment_medical-specialisations', 'Business, Office & Industrial :: Medical/ Lab Equipment :: Medical Specialisations', '', 0, 1, 0, '', '', ''),
  743. (4293, 'Medical Supplies/ Disposables', 4171, 0, NULL, 'business-office-industrial_medical-lab-equipment_medical-supplies-disposables', 'Business, Office & Industrial :: Medical/ Lab Equipment :: Medical Supplies/ Disposables', '', 0, 1, 0, '', '', ''),
  744. (4294, 'Other Medical/ Lab Equipment', 4171, 0, NULL, 'business-office-industrial_medical-lab-equipment_other-medical-lab-equipment', 'Business, Office & Industrial :: Medical/ Lab Equipment :: Other Medical/ Lab Equipment', '', 0, 1, 0, '', '', ''),
  745. (4295, 'Copiers & Copier Supplies', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_copiers-copier-supplies', 'Business, Office & Industrial :: Office Equipment & Supplies :: Copiers & Copier Supplies', '', 0, 1, 0, '', '', ''),
  746. (4296, 'Fax Machines & Supplies', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_fax-machines-supplies', 'Business, Office & Industrial :: Office Equipment & Supplies :: Fax Machines & Supplies', '', 0, 1, 0, '', '', ''),
  747. (4297, 'Microfilm & Microfiche', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_microfilm-microfiche', 'Business, Office & Industrial :: Office Equipment & Supplies :: Microfilm & Microfiche', '', 0, 1, 0, '', '', ''),
  748. (4298, 'Office Equipment', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_office-equipment', 'Business, Office & Industrial :: Office Equipment & Supplies :: Office Equipment', '', 0, 1, 0, '', '', ''),
  749. (4299, 'Office Furniture', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_office-furniture', 'Business, Office & Industrial :: Office Equipment & Supplies :: Office Furniture', '', 0, 1, 0, '', '', ''),
  750. (4300, 'Office Supplies & Stationery', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_office-supplies-stationery', 'Business, Office & Industrial :: Office Equipment & Supplies :: Office Supplies & Stationery', '', 0, 1, 0, '', '', ''),
  751. (4301, 'Presentation/ AV/ Projectors', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_presentation-av-projectors', 'Business, Office & Industrial :: Office Equipment & Supplies :: Presentation/ AV/ Projectors', '', 0, 1, 0, '', '', ''),
  752. (4302, 'Trade Show Displays/ Stands', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_trade-show-displays-stands', 'Business, Office & Industrial :: Office Equipment & Supplies :: Trade Show Displays/ Stands', '', 0, 1, 0, '', '', ''),
  753. (4303, 'Other Office Eqpt & Supplies', 4172, 0, NULL, 'business-office-industrial_office-equipment-supplies_other-office-eqpt-supplies', 'Business, Office & Industrial :: Office Equipment & Supplies :: Other Office Eqpt & Supplies', '', 0, 1, 0, '', '', ''),
  754. (4304, 'Address Labels', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_address-labels', 'Business, Office & Industrial :: Packing & Posting Supplies :: Address Labels', '', 0, 1, 0, '', '', ''),
  755. (4305, 'Boxes', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_boxes', 'Business, Office & Industrial :: Packing & Posting Supplies :: Boxes', '', 0, 1, 0, '', '', ''),
  756. (4306, 'Bubble/ Foam Wrap', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_bubble-foam-wrap', 'Business, Office & Industrial :: Packing & Posting Supplies :: Bubble/ Foam Wrap', '', 0, 1, 0, '', '', ''),
  757. (4307, 'Carrier Bags', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_carrier-bags', 'Business, Office & Industrial :: Packing & Posting Supplies :: Carrier Bags', '', 0, 1, 0, '', '', ''),
  758. (4308, 'Envelopes', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_envelopes', 'Business, Office & Industrial :: Packing & Posting Supplies :: Envelopes', '', 0, 1, 0, '', '', ''),
  759. (4309, 'Franking Machines', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_franking-machines', 'Business, Office & Industrial :: Packing & Posting Supplies :: Franking Machines', '', 0, 1, 0, '', '', ''),
  760. (4310, 'Mailing Bags, Pouches & Sacks', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_mailing-bags-pouches-sacks', 'Business, Office & Industrial :: Packing & Posting Supplies :: Mailing Bags, Pouches & Sacks', '', 0, 1, 0, '', '', ''),
  761. (4311, 'Packing Peanuts', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_packing-peanuts', 'Business, Office & Industrial :: Packing & Posting Supplies :: Packing Peanuts', '', 0, 1, 0, '', '', ''),
  762. (4312, 'Packing Tape', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_packing-tape', 'Business, Office & Industrial :: Packing & Posting Supplies :: Packing Tape', '', 0, 1, 0, '', '', ''),
  763. (4313, 'Paper Bags & Gift Bags', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_paper-bags-gift-bags', 'Business, Office & Industrial :: Packing & Posting Supplies :: Paper Bags & Gift Bags', '', 0, 1, 0, '', '', ''),
  764. (4314, 'Polythene Grip Seal Bags', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_polythene-grip-seal-bags', 'Business, Office & Industrial :: Packing & Posting Supplies :: Polythene Grip Seal Bags', '', 0, 1, 0, '', '', ''),
  765. (4315, 'Postal Scales', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_postal-scales', 'Business, Office & Industrial :: Packing & Posting Supplies :: Postal Scales', '', 0, 1, 0, '', '', ''),
  766. (4316, 'Postal Tubes', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_postal-tubes', 'Business, Office & Industrial :: Packing & Posting Supplies :: Postal Tubes', '', 0, 1, 0, '', '', ''),
  767. (4317, 'Record/ CD/ DVD Mailers', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_record-cd-dvd-mailers', 'Business, Office & Industrial :: Packing & Posting Supplies :: Record/ CD/ DVD Mailers', '', 0, 1, 0, '', '', ''),
  768. (4318, 'Shrink Wrap', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_shrink-wrap', 'Business, Office & Industrial :: Packing & Posting Supplies :: Shrink Wrap', '', 0, 1, 0, '', '', ''),
  769. (4319, 'Tape Guns', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_tape-guns', 'Business, Office & Industrial :: Packing & Posting Supplies :: Tape Guns', '', 0, 1, 0, '', '', ''),
  770. (4320, 'Tissue Paper', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_tissue-paper', 'Business, Office & Industrial :: Packing & Posting Supplies :: Tissue Paper', '', 0, 1, 0, '', '', ''),
  771. (4321, 'Wrapping Paper', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_wrapping-paper', 'Business, Office & Industrial :: Packing & Posting Supplies :: Wrapping Paper', '', 0, 1, 0, '', '', ''),
  772. (4322, 'Other Packing Supplies', 4173, 0, NULL, 'business-office-industrial_packing-posting-supplies_other-packing-supplies', 'Business, Office & Industrial :: Packing & Posting Supplies :: Other Packing Supplies', '', 0, 1, 0, '', '', ''),
  773. (4323, 'Air Tools', 4174, 0, NULL, 'business-office-industrial_power-tools_air-tools', 'Business, Office & Industrial :: Power Tools :: Air Tools', '', 0, 1, 0, '', '', ''),
  774. (4324, 'Batteries/ Chargers', 4174, 0, NULL, 'business-office-industrial_power-tools_batteries-chargers', 'Business, Office & Industrial :: Power Tools :: Batteries/ Chargers', '', 0, 1, 0, '', '', ''),
  775. (4325, 'Combo Kits/ Packs', 4174, 0, NULL, 'business-office-industrial_power-tools_combo-kits-packs', 'Business, Office & Industrial :: Power Tools :: Combo Kits/ Packs', '', 0, 1, 0, '', '', ''),
  776. (4326, 'Drills', 4174, 0, NULL, 'business-office-industrial_power-tools_drills', 'Business, Office & Industrial :: Power Tools :: Drills', '', 0, 1, 0, '', '', ''),
  777. (4327, 'Grinders', 4174, 0, NULL, 'business-office-industrial_power-tools_grinders', 'Business, Office & Industrial :: Power Tools :: Grinders', '', 0, 1, 0, '', '', ''),
  778. (4328, 'Nail Guns', 4174, 0, NULL, 'business-office-industrial_power-tools_nail-guns', 'Business, Office & Industrial :: Power Tools :: Nail Guns', '', 0, 1, 0, '', '', ''),
  779. (4329, 'Planers', 4174, 0, NULL, 'business-office-industrial_power-tools_planers', 'Business, Office & Industrial :: Power Tools :: Planers', '', 0, 1, 0, '', '', ''),
  780. (4330, 'Rotary Tools', 4174, 0, NULL, 'business-office-industrial_power-tools_rotary-tools', 'Business, Office & Industrial :: Power Tools :: Rotary Tools', '', 0, 1, 0, '', '', ''),
  781. (4331, 'Routers', 4174, 0, NULL, 'business-office-industrial_power-tools_routers', 'Business, Office & Industrial :: Power Tools :: Routers', '', 0, 1, 0, '', '', ''),
  782. (4332, 'Sanders', 4174, 0, NULL, 'business-office-industrial_power-tools_sanders', 'Business, Office & Industrial :: Power Tools :: Sanders', '', 0, 1, 0, '', '', ''),
  783. (4333, 'Saws', 4174, 0, NULL, 'business-office-industrial_power-tools_saws', 'Business, Office & Industrial :: Power Tools :: Saws', '', 0, 1, 0, '', '', ''),
  784. (4334, 'Screwdrivers', 4174, 0, NULL, 'business-office-industrial_power-tools_screwdrivers', 'Business, Office & Industrial :: Power Tools :: Screwdrivers', '', 0, 1, 0, '', '', ''),
  785. (4335, 'Soldering Equipment', 4174, 0, NULL, 'business-office-industrial_power-tools_soldering-equipment', 'Business, Office & Industrial :: Power Tools :: Soldering Equipment', '', 0, 1, 0, '', '', ''),
  786. (4336, 'Staple Guns', 4174, 0, NULL, 'business-office-industrial_power-tools_staple-guns', 'Business, Office & Industrial :: Power Tools :: Staple Guns', '', 0, 1, 0, '', '', ''),
  787. (4337, 'Tool Parts & Accessories', 4174, 0, NULL, 'business-office-industrial_power-tools_tool-parts-accessories', 'Business, Office & Industrial :: Power Tools :: Tool Parts & Accessories', '', 0, 1, 0, '', '', ''),
  788. (4338, 'Wall Chasers', 4174, 0, NULL, 'business-office-industrial_power-tools_wall-chasers', 'Business, Office & Industrial :: Power Tools :: Wall Chasers', '', 0, 1, 0, '', '', ''),
  789. (4339, 'Other Power Tools', 4174, 0, NULL, 'business-office-industrial_power-tools_other-power-tools', 'Business, Office & Industrial :: Power Tools :: Other Power Tools', '', 0, 1, 0, '', '', ''),
  790. (4340, 'Binding & Finishing Equipment', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_binding-finishing-equipment', 'Business, Office & Industrial :: Printing & Graphic Arts :: Binding & Finishing Equipment', '', 0, 1, 0, '', '', ''),
  791. (4341, 'Heat Presses', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_heat-presses', 'Business, Office & Industrial :: Printing & Graphic Arts :: Heat Presses', '', 0, 1, 0, '', '', ''),
  792. (4342, 'Hot Foil', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_hot-foil', 'Business, Office & Industrial :: Printing & Graphic Arts :: Hot Foil', '', 0, 1, 0, '', '', ''),
  793. (4343, 'Ink/ Plates/ Film', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_ink-plates-film', 'Business, Office & Industrial :: Printing & Graphic Arts :: Ink/ Plates/ Film', '', 0, 1, 0, '', '', ''),
  794. (4344, 'Letterpresses', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_letterpresses', 'Business, Office & Industrial :: Printing & Graphic Arts :: Letterpresses', '', 0, 1, 0, '', '', ''),
  795. (4345, 'Pre-Press Equipment', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_pre-press-equipment', 'Business, Office & Industrial :: Printing & Graphic Arts :: Pre-Press Equipment', '', 0, 1, 0, '', '', ''),
  796. (4346, 'Printing & Graphic Essentials', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_printing-graphic-essentials', 'Business, Office & Industrial :: Printing & Graphic Arts :: Printing & Graphic Essentials', '', 0, 1, 0, '', '', ''),
  797. (4347, 'Screen/ Speciality Printing', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_screen-speciality-printing', 'Business, Office & Industrial :: Printing & Graphic Arts :: Screen/ Speciality Printing', '', 0, 1, 0, '', '', ''),
  798. (4348, 'Sign-Making', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_sign-making', 'Business, Office & Industrial :: Printing & Graphic Arts :: Sign-Making', '', 0, 1, 0, '', '', ''),
  799. (4349, 'Vinyl Cutters', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_vinyl-cutters', 'Business, Office & Industrial :: Printing & Graphic Arts :: Vinyl Cutters', '', 0, 1, 0, '', '', ''),
  800. (4350, 'Other Printing & Graphic Arts', 4175, 0, NULL, 'business-office-industrial_printing-graphic-arts_other-printing-graphic-arts', 'Business, Office & Industrial :: Printing & Graphic Arts :: Other Printing & Graphic Arts', '', 0, 1, 0, '', '', ''),
  801. (4351, 'Bar/ Drinks Equipment', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_bar-drinks-equipment', 'Business, Office & Industrial :: Restaurant & Catering :: Bar/ Drinks Equipment', '', 0, 1, 0, '', '', ''),
  802. (4352, 'Catering Trailers', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_catering-trailers', 'Business, Office & Industrial :: Restaurant & Catering :: Catering Trailers', '', 0, 1, 0, '', '', ''),
  803. (4353, 'Clothing/ Aprons', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_clothing-aprons', 'Business, Office & Industrial :: Restaurant & Catering :: Clothing/ Aprons', '', 0, 1, 0, '', '', ''),
  804. (4354, 'Cookware/ Cutlery/ Utensils', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_cookware-cutlery-utensils', 'Business, Office & Industrial :: Restaurant & Catering :: Cookware/ Cutlery/ Utensils', '', 0, 1, 0, '', '', ''),
  805. (4355, 'Food Storage', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_food-storage', 'Business, Office & Industrial :: Restaurant & Catering :: Food Storage', '', 0, 1, 0, '', '', ''),
  806. (4356, 'Furniture/ Décor', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_furniture-decor', 'Business, Office & Industrial :: Restaurant & Catering :: Furniture/ Décor', '', 0, 1, 0, '', '', ''),
  807. (4357, 'Ice-Cream Machines', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_ice-cream-machines', 'Business, Office & Industrial :: Restaurant & Catering :: Ice-Cream Machines', '', 0, 1, 0, '', '', ''),
  808. (4358, 'Kitchen Equipment & Units', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_kitchen-equipment-units', 'Business, Office & Industrial :: Restaurant & Catering :: Kitchen Equipment & Units', '', 0, 1, 0, '', '', ''),
  809. (4359, 'Refrigeration', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_refrigeration', 'Business, Office & Industrial :: Restaurant & Catering :: Refrigeration', '', 0, 1, 0, '', '', ''),
  810. (4360, 'Supplies', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_supplies', 'Business, Office & Industrial :: Restaurant & Catering :: Supplies', '', 0, 1, 0, '', '', ''),
  811. (4361, 'Tableware/ Tabletop', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_tableware-tabletop', 'Business, Office & Industrial :: Restaurant & Catering :: Tableware/ Tabletop', '', 0, 1, 0, '', '', ''),
  812. (4362, 'Other Restaurant & Catering', 4176, 0, NULL, 'business-office-industrial_restaurant-catering_other-restaurant-catering', 'Business, Office & Industrial :: Restaurant & Catering :: Other Restaurant & Catering', '', 0, 1, 0, '', '', ''),
  813. (4363, 'Advertising/ Shop Signs', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_advertising-shop-signs', 'Business, Office & Industrial :: Retail & Shop Fitting :: Advertising/ Shop Signs', '', 0, 1, 0, '', '', ''),
  814. (4364, 'Cash Registers & Supplies', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_cash-registers-supplies', 'Business, Office & Industrial :: Retail & Shop Fitting :: Cash Registers & Supplies', '', 0, 1, 0, '', '', ''),
  815. (4365, 'Carpet Tiles', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_carpet-tiles', 'Business, Office & Industrial :: Retail & Shop Fitting :: Carpet Tiles', '', 0, 1, 0, '', '', ''),
  816. (4366, 'Hair/ Beauty Salon Equipment', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_hair-beauty-salon-equipment', 'Business, Office & Industrial :: Retail & Shop Fitting :: Hair/ Beauty Salon Equipment', '', 0, 1, 0, '', '', ''),
  817. (4367, 'Mannequins', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_mannequins', 'Business, Office & Industrial :: Retail & Shop Fitting :: Mannequins', '', 0, 1, 0, '', '', ''),
  818. (4368, 'Market Stalls', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_market-stalls', 'Business, Office & Industrial :: Retail & Shop Fitting :: Market Stalls', '', 0, 1, 0, '', '', ''),
  819. (4369, 'Point of Sale (POS) Equipment', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_point-of-sale-pos-equipment', 'Business, Office & Industrial :: Retail & Shop Fitting :: Point of Sale (POS) Equipment', '', 0, 1, 0, '', '', ''),
  820. (4370, 'Retail Display', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_retail-display', 'Business, Office & Industrial :: Retail & Shop Fitting :: Retail Display', '', 0, 1, 0, '', '', ''),
  821. (4371, 'Security/ Surveillance/ CCTV', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_security-surveillance-cctv', 'Business, Office & Industrial :: Retail & Shop Fitting :: Security/ Surveillance/ CCTV', '', 0, 1, 0, '', '', ''),
  822. (4372, 'Shelving & Racking', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_shelving-racking', 'Business, Office & Industrial :: Retail & Shop Fitting :: Shelving & Racking', '', 0, 1, 0, '', '', ''),
  823. (4373, 'Signs', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_signs', 'Business, Office & Industrial :: Retail & Shop Fitting :: Signs', '', 0, 1, 0, '', '', ''),
  824. (4374, 'Vending Machines/ Dispensers', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_vending-machines-dispensers', 'Business, Office & Industrial :: Retail & Shop Fitting :: Vending Machines/ Dispensers', '', 0, 1, 0, '', '', ''),
  825. (4375, 'Other Retail & Shop Fitting', 4177, 0, NULL, 'business-office-industrial_retail-shop-fitting_other-retail-shop-fitting', 'Business, Office & Industrial :: Retail & Shop Fitting :: Other Retail & Shop Fitting', '', 0, 1, 0, '', '', ''),
  826. (4376, 'Auction Templates', 4180, 0, NULL, 'business-office-industrial_web-domains-email-software_auction-templates', 'Business, Office & Industrial :: Web Domains/ Email/ Software :: Auction Templates', '', 0, 1, 0, '', '', ''),
  827. (4377, 'Domain Names', 4180, 0, NULL, 'business-office-industrial_web-domains-email-software_domain-names', 'Business, Office & Industrial :: Web Domains/ Email/ Software :: Domain Names', '', 0, 1, 0, '', '', ''),
  828. (4378, 'Email Addresses', 4180, 0, NULL, 'business-office-industrial_web-domains-email-software_email-addresses', 'Business, Office & Industrial :: Web Domains/ Email/ Software :: Email Addresses', '', 0, 1, 0, '', '', ''),
  829. (4379, 'Informational', 4180, 0, NULL, 'business-office-industrial_web-domains-email-software_informational', 'Business, Office & Industrial :: Web Domains/ Email/ Software :: Informational', '', 0, 1, 0, '', '', ''),
  830. (4380, 'Other Web Items', 4180, 0, NULL, 'business-office-industrial_web-domains-email-software_other-web-items', 'Business, Office & Industrial :: Web Domains/ Email/ Software :: Other Web Items', '', 0, 1, 0, '', '', ''),
  831. (4381, 'Camcorders', 3682, 0, NULL, 'cameras-photography_camcorders', 'Cameras & Photography :: Camcorders', '', 0, 1, 0, '', '', ''),
  832. (4382, 'Digital Cameras', 3682, 0, NULL, 'cameras-photography_digital-cameras', 'Cameras & Photography :: Digital Cameras', '', 0, 1, 0, '', '', ''),
  833. (4383, 'Camera & Photo Accessories', 3682, 0, NULL, 'cameras-photography_camera-photo-accessories', 'Cameras & Photography :: Camera & Photo Accessories', '', 0, 1, 0, '', '', ''),
  834. (4384, 'Film Photography', 3682, 0, NULL, 'cameras-photography_film-photography', 'Cameras & Photography :: Film Photography', '', 0, 1, 0, '', '', ''),
  835. (4385, 'Flashes & Accessories', 3682, 0, NULL, 'cameras-photography_flashes-accessories', 'Cameras & Photography :: Flashes & Accessories', '', 0, 1, 0, '', '', ''),
  836. (4386, 'Lenses & Filters', 3682, 0, NULL, 'cameras-photography_lenses-filters', 'Cameras & Photography :: Lenses & Filters', '', 0, 1, 0, '', '', ''),
  837. (4387, 'Tripods & Supports', 3682, 0, NULL, 'cameras-photography_tripods-supports', 'Cameras & Photography :: Tripods & Supports', '', 0, 1, 0, '', '', ''),
  838. (4388, 'Lighting & Studio', 3682, 0, NULL, 'cameras-photography_lighting-studio', 'Cameras & Photography :: Lighting & Studio', '', 0, 1, 0, '', '', ''),
  839. (4389, 'Digital Photo Frames', 3682, 0, NULL, 'cameras-photography_digital-photo-frames', 'Cameras & Photography :: Digital Photo Frames', '', 0, 1, 0, '', '', ''),
  840. (4390, 'Manuals & Guides', 3682, 0, NULL, 'cameras-photography_manuals-guides', 'Cameras & Photography :: Manuals & Guides', '', 0, 1, 0, '', '', ''),
  841. (4391, 'Replacement Parts & Tools', 3682, 0, NULL, 'cameras-photography_replacement-parts-tools', 'Cameras & Photography :: Replacement Parts & Tools', '', 0, 1, 0, '', '', ''),
  842. (4392, 'Telescopes & Binoculars', 3682, 0, NULL, 'cameras-photography_telescopes-binoculars', 'Cameras & Photography :: Telescopes & Binoculars', '', 0, 1, 0, '', '', ''),
  843. (4393, 'Vintage Photography', 3682, 0, NULL, 'cameras-photography_vintage-photography', 'Cameras & Photography :: Vintage Photography', '', 0, 1, 0, '', '', ''),
  844. (4394, 'Other Photography', 3682, 0, NULL, 'cameras-photography_other-photography', 'Cameras & Photography :: Other Photography', '', 0, 1, 0, '', '', ''),
  845. (4395, 'Cannon', 4381, 0, NULL, 'cameras-photography_camcorders_cannon', 'Cameras & Photography :: Camcorders :: Cannon', '', 0, 1, 0, '', '', ''),
  846. (4396, 'JVC', 4381, 0, NULL, 'cameras-photography_camcorders_jvc', 'Cameras & Photography :: Camcorders :: JVC', '', 0, 1, 0, '', '', ''),
  847. (4397, 'Panasonic', 4381, 0, NULL, 'cameras-photography_camcorders_panasonic', 'Cameras & Photography :: Camcorders :: Panasonic', '', 0, 1, 0, '', '', ''),
  848. (4398, 'Sony', 4381, 0, NULL, 'cameras-photography_camcorders_sony', 'Cameras & Photography :: Camcorders :: Sony', '', 0, 1, 0, '', '', ''),
  849. (4399, 'Samsung', 4381, 0, NULL, 'cameras-photography_camcorders_samsung', 'Cameras & Photography :: Camcorders :: Samsung', '', 0, 1, 0, '', '', ''),
  850. (4400, 'Other', 4381, 0, NULL, 'cameras-photography_camcorders_other', 'Cameras & Photography :: Camcorders :: Other', '', 0, 1, 0, '', '', ''),
  851. (4401, 'Canon EOS', 4382, 0, NULL, 'cameras-photography_digital-cameras_canon-eos', 'Cameras & Photography :: Digital Cameras :: Canon EOS', '', 0, 1, 0, '', '', ''),
  852. (4402, 'Fujifilm FinePix', 4382, 0, NULL, 'cameras-photography_digital-cameras_fujifilm-finepix', 'Cameras & Photography :: Digital Cameras :: Fujifilm FinePix', '', 0, 1, 0, '', '', ''),
  853. (4403, 'Nikon COOLPIX', 4382, 0, NULL, 'cameras-photography_digital-cameras_nikon-coolpix', 'Cameras & Photography :: Digital Cameras :: Nikon COOLPIX', '', 0, 1, 0, '', '', ''),
  854. (4404, 'Panasonic LUMIX', 4382, 0, NULL, 'cameras-photography_digital-cameras_panasonic-lumix', 'Cameras & Photography :: Digital Cameras :: Panasonic LUMIX', '', 0, 1, 0, '', '', ''),
  855. (4405, 'Sony Cyber-Shot', 4382, 0, NULL, 'cameras-photography_digital-cameras_sony-cyber-shot', 'Cameras & Photography :: Digital Cameras :: Sony Cyber-Shot', '', 0, 1, 0, '', '', ''),
  856. (4406, 'Other', 4382, 0, NULL, 'cameras-photography_digital-cameras_other', 'Cameras & Photography :: Digital Cameras :: Other', '', 0, 1, 0, '', '', ''),
  857. (4407, 'Accessory Bundles', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_accessory-bundles', 'Cameras & Photography :: Camera & Photo Accessories :: Accessory Bundles', '', 0, 1, 0, '', '', ''),
  858. (4408, 'Batteries', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_batteries', 'Cameras & Photography :: Camera & Photo Accessories :: Batteries', '', 0, 1, 0, '', '', ''),
  859. (4409, 'Battery Grips', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_battery-grips', 'Cameras & Photography :: Camera & Photo Accessories :: Battery Grips', '', 0, 1, 0, '', '', ''),
  860. (4410, 'Cables & Adapters', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_cables-adapters', 'Cameras & Photography :: Camera & Photo Accessories :: Cables & Adapters', '', 0, 1, 0, '', '', ''),
  861. (4411, 'Camcorder Tapes & Discs', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_camcorder-tapes-discs', 'Cameras & Photography :: Camera & Photo Accessories :: Camcorder Tapes & Discs', '', 0, 1, 0, '', '', ''),
  862. (4412, 'Camera & Video Lights', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_camera-video-lights', 'Cameras & Photography :: Camera & Photo Accessories :: Camera & Video Lights', '', 0, 1, 0, '', '', ''),
  863. (4413, 'Cases, Bags & Covers', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_cases-bags-covers', 'Cameras & Photography :: Camera & Photo Accessories :: Cases, Bags & Covers', '', 0, 1, 0, '', '', ''),
  864. (4414, 'Chargers & Docks', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_chargers-docks', 'Cameras & Photography :: Camera & Photo Accessories :: Chargers & Docks', '', 0, 1, 0, '', '', ''),
  865. (4415, 'Cleaning Equipment & Kits', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_cleaning-equipment-kits', 'Cameras & Photography :: Camera & Photo Accessories :: Cleaning Equipment & Kits', '', 0, 1, 0, '', '', ''),
  866. (4416, 'LCD Hoods', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_lcd-hoods', 'Cameras & Photography :: Camera & Photo Accessories :: LCD Hoods', '', 0, 1, 0, '', '', ''),
  867. (4417, 'Memory Cards', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_memory-cards', 'Cameras & Photography :: Camera & Photo Accessories :: Memory Cards', '', 0, 1, 0, '', '', ''),
  868. (4418, 'Memory Card Cases', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_memory-card-cases', 'Cameras & Photography :: Camera & Photo Accessories :: Memory Card Cases', '', 0, 1, 0, '', '', ''),
  869. (4419, 'Memory Card Readers & Adapters', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_memory-card-readers-adapters', 'Cameras & Photography :: Camera & Photo Accessories :: Memory Card Readers & Adapters', '', 0, 1, 0, '', '', ''),
  870. (4420, 'Microphones', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_microphones', 'Cameras & Photography :: Camera & Photo Accessories :: Microphones', '', 0, 1, 0, '', '', ''),
  871. (4421, 'Photo Albums & Storage', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_photo-albums-storage', 'Cameras & Photography :: Camera & Photo Accessories :: Photo Albums & Storage', '', 0, 1, 0, '', '', ''),
  872. (4422, 'Remotes & Shutter Releases', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_remotes-shutter-releases', 'Cameras & Photography :: Camera & Photo Accessories :: Remotes & Shutter Releases', '', 0, 1, 0, '', '', ''),
  873. (4423, 'Screen Protectors', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_screen-protectors', 'Cameras & Photography :: Camera & Photo Accessories :: Screen Protectors', '', 0, 1, 0, '', '', ''),
  874. (4424, 'Straps & Hand Grips', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_straps-hand-grips', 'Cameras & Photography :: Camera & Photo Accessories :: Straps & Hand Grips', '', 0, 1, 0, '', '', ''),
  875. (4425, 'Underwater Cases & Housing', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_underwater-cases-housing', 'Cameras & Photography :: Camera & Photo Accessories :: Underwater Cases & Housing', '', 0, 1, 0, '', '', ''),
  876. (4426, 'Viewfinders & Eyecups', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_viewfinders-eyecups', 'Cameras & Photography :: Camera & Photo Accessories :: Viewfinders & Eyecups', '', 0, 1, 0, '', '', ''),
  877. (4427, 'Other Camera Accessories', 4383, 0, NULL, 'cameras-photography_camera-photo-accessories_other-camera-accessories', 'Cameras & Photography :: Camera & Photo Accessories :: Other Camera Accessories', '', 0, 1, 0, '', '', ''),
  878. (4428, 'Film Cameras', 4384, 0, NULL, 'cameras-photography_film-photography_film-cameras', 'Cameras & Photography :: Film Photography :: Film Cameras', '', 0, 1, 0, '', '', ''),
  879. (4429, 'Movie Cameras', 4384, 0, NULL, 'cameras-photography_film-photography_movie-cameras', 'Cameras & Photography :: Film Photography :: Movie Cameras', '', 0, 1, 0, '', '', ''),
  880. (4430, 'Darkroom & Developing', 4384, 0, NULL, 'cameras-photography_film-photography_darkroom-developing', 'Cameras & Photography :: Film Photography :: Darkroom & Developing', '', 0, 1, 0, '', '', ''),
  881. (4431, 'Film', 4384, 0, NULL, 'cameras-photography_film-photography_film', 'Cameras & Photography :: Film Photography :: Film', '', 0, 1, 0, '', '', ''),
  882. (4432, 'Film Backs & Holders', 4384, 0, NULL, 'cameras-photography_film-photography_film-backs-holders', 'Cameras & Photography :: Film Photography :: Film Backs & Holders', '', 0, 1, 0, '', '', ''),
  883. (4433, 'Film Editing Equipment', 4384, 0, NULL, 'cameras-photography_film-photography_film-editing-equipment', 'Cameras & Photography :: Film Photography :: Film Editing Equipment', '', 0, 1, 0, '', '', ''),
  884. (4434, 'Lens Boards', 4384, 0, NULL, 'cameras-photography_film-photography_lens-boards', 'Cameras & Photography :: Film Photography :: Lens Boards', '', 0, 1, 0, '', '', ''),
  885. (4435, 'Motor Drives & Winders', 4384, 0, NULL, 'cameras-photography_film-photography_motor-drives-winders', 'Cameras & Photography :: Film Photography :: Motor Drives & Winders', '', 0, 1, 0, '', '', ''),
  886. (4436, 'Movie Camera Accessories', 4384, 0, NULL, 'cameras-photography_film-photography_movie-camera-accessories', 'Cameras & Photography :: Film Photography :: Movie Camera Accessories', '', 0, 1, 0, '', '', ''),
  887. (4437, 'Rangefinders & Accessories', 4384, 0, NULL, 'cameras-photography_film-photography_rangefinders-accessories', 'Cameras & Photography :: Film Photography :: Rangefinders & Accessories', '', 0, 1, 0, '', '', ''),
  888. (4438, 'Slide & Film Projection', 4384, 0, NULL, 'cameras-photography_film-photography_slide-film-projection', 'Cameras & Photography :: Film Photography :: Slide & Film Projection', '', 0, 1, 0, '', '', ''),
  889. (4439, 'Other Film Photography', 4384, 0, NULL, 'cameras-photography_film-photography_other-film-photography', 'Cameras & Photography :: Film Photography :: Other Film Photography', '', 0, 1, 0, '', '', ''),
  890. (4440, 'Flashes', 4385, 0, NULL, 'cameras-photography_flashes-accessories_flashes', 'Cameras & Photography :: Flashes & Accessories :: Flashes', '', 0, 1, 0, '', '', ''),
  891. (4441, 'Flash Adapters', 4385, 0, NULL, 'cameras-photography_flashes-accessories_flash-adapters', 'Cameras & Photography :: Flashes & Accessories :: Flash Adapters', '', 0, 1, 0, '', '', ''),
  892. (4442, 'Flash Brackets', 4385, 0, NULL, 'cameras-photography_flashes-accessories_flash-brackets', 'Cameras & Photography :: Flashes & Accessories :: Flash Brackets', '', 0, 1, 0, '', '', ''),
  893. (4443, 'Flash Diffusers', 4385, 0, NULL, 'cameras-photography_flashes-accessories_flash-diffusers', 'Cameras & Photography :: Flashes & Accessories :: Flash Diffusers', '', 0, 1, 0, '', '', ''),
  894. (4444, 'Sync Cords', 4385, 0, NULL, 'cameras-photography_flashes-accessories_sync-cords', 'Cameras & Photography :: Flashes & Accessories :: Sync Cords', '', 0, 1, 0, '', '', ''),
  895. (4445, 'Other Flashes & Accessories', 4385, 0, NULL, 'cameras-photography_flashes-accessories_other-flashes-accessories', 'Cameras & Photography :: Flashes & Accessories :: Other Flashes & Accessories', '', 0, 1, 0, '', '', ''),
  896. (4446, 'Lenses', 4386, 0, NULL, 'cameras-photography_lenses-filters_lenses', 'Cameras & Photography :: Lenses & Filters :: Lenses', '', 0, 1, 0, '', '', ''),
  897. (4447, 'Filters', 4386, 0, NULL, 'cameras-photography_lenses-filters_filters', 'Cameras & Photography :: Lenses & Filters :: Filters', '', 0, 1, 0, '', '', ''),
  898. (4448, 'Conversion Lenses', 4386, 0, NULL, 'cameras-photography_lenses-filters_conversion-lenses', 'Cameras & Photography :: Lenses & Filters :: Conversion Lenses', '', 0, 1, 0, '', '', ''),
  899. (4449, 'Filter Rings & Holders', 4386, 0, NULL, 'cameras-photography_lenses-filters_filter-rings-holders', 'Cameras & Photography :: Lenses & Filters :: Filter Rings & Holders', '', 0, 1, 0, '', '', ''),
  900. (4450, 'Lens Caps', 4386, 0, NULL, 'cameras-photography_lenses-filters_lens-caps', 'Cameras & Photography :: Lenses & Filters :: Lens Caps', '', 0, 1, 0, '', '', ''),
  901. (4451, 'Lens Hoods', 4386, 0, NULL, 'cameras-photography_lenses-filters_lens-hoods', 'Cameras & Photography :: Lenses & Filters :: Lens Hoods', '', 0, 1, 0, '', '', ''),
  902. (4452, 'Lens Adapters, Mounts & Tubes', 4386, 0, NULL, 'cameras-photography_lenses-filters_lens-adapters-mounts-tubes', 'Cameras & Photography :: Lenses & Filters :: Lens Adapters, Mounts & Tubes', '', 0, 1, 0, '', '', ''),
  903. (4453, 'Other Lenses & Filters', 4386, 0, NULL, 'cameras-photography_lenses-filters_other-lenses-filters', 'Cameras & Photography :: Lenses & Filters :: Other Lenses & Filters', '', 0, 1, 0, '', '', ''),
  904. (4454, 'Tripods & Monopods', 4387, 0, NULL, 'cameras-photography_tripods-supports_tripods-monopods', 'Cameras & Photography :: Tripods & Supports :: Tripods & Monopods', '', 0, 1, 0, '', '', ''),
  905. (4455, 'Tripod Heads', 4387, 0, NULL, 'cameras-photography_tripods-supports_tripod-heads', 'Cameras & Photography :: Tripods & Supports :: Tripod Heads', '', 0, 1, 0, '', '', ''),
  906. (4456, 'Stabilisers', 4387, 0, NULL, 'cameras-photography_tripods-supports_stabilisers', 'Cameras & Photography :: Tripods & Supports :: Stabilisers', '', 0, 1, 0, '', '', ''),
  907. (4457, 'Other Tripods & Supports', 4387, 0, NULL, 'cameras-photography_tripods-supports_other-tripods-supports', 'Cameras & Photography :: Tripods & Supports :: Other Tripods & Supports', '', 0, 1, 0, '', '', ''),
  908. (4458, 'Backdrops', 4388, 0, NULL, 'cameras-photography_lighting-studio_backdrops', 'Cameras & Photography :: Lighting & Studio :: Backdrops', '', 0, 1, 0, '', '', ''),
  909. (4459, 'Continuous Lighting', 4388, 0, NULL, 'cameras-photography_lighting-studio_continuous-lighting', 'Cameras & Photography :: Lighting & Studio :: Continuous Lighting', '', 0, 1, 0, '', '', ''),
  910. (4460, 'Flash Lighting', 4388, 0, NULL, 'cameras-photography_lighting-studio_flash-lighting', 'Cameras & Photography :: Lighting & Studio :: Flash Lighting', '', 0, 1, 0, '', '', ''),
  911. (4461, 'Light Controls & Modifiers', 4388, 0, NULL, 'cameras-photography_lighting-studio_light-controls-modifiers', 'Cameras & Photography :: Lighting & Studio :: Light Controls & Modifiers', '', 0, 1, 0, '', '', ''),
  912. (4462, 'Light Meters', 4388, 0, NULL, 'cameras-photography_lighting-studio_light-meters', 'Cameras & Photography :: Lighting & Studio :: Light Meters', '', 0, 1, 0, '', '', ''),
  913. (4463, 'Light Stands & Booms', 4388, 0, NULL, 'cameras-photography_lighting-studio_light-stands-booms', 'Cameras & Photography :: Lighting & Studio :: Light Stands & Booms', '', 0, 1, 0, '', '', ''),
  914. (4464, 'Light Stand & Boom Accessories', 4388, 0, NULL, 'cameras-photography_lighting-studio_light-stand-boom-accessories', 'Cameras & Photography :: Lighting & Studio :: Light Stand & Boom Accessories', '', 0, 1, 0, '', '', ''),
  915. (4465, 'Photography Props', 4388, 0, NULL, 'cameras-photography_lighting-studio_photography-props', 'Cameras & Photography :: Lighting & Studio :: Photography Props', '', 0, 1, 0, '', '', ''),
  916. (4466, 'Shooting Tables & Light Tents', 4388, 0, NULL, 'cameras-photography_lighting-studio_shooting-tables-light-tents', 'Cameras & Photography :: Lighting & Studio :: Shooting Tables & Light Tents', '', 0, 1, 0, '', '', ''),
  917. (4467, 'Other Lighting & Studio', 4388, 0, NULL, 'cameras-photography_lighting-studio_other-lighting-studio', 'Cameras & Photography :: Lighting & Studio :: Other Lighting & Studio', '', 0, 1, 0, '', '', ''),
  918. (4468, 'Camcorder Parts', 4391, 0, NULL, 'cameras-photography_replacement-parts-tools_camcorder-parts', 'Cameras & Photography :: Replacement Parts & Tools :: Camcorder Parts', '', 0, 1, 0, '', '', ''),
  919. (4469, 'Digital Camera Parts', 4391, 0, NULL, 'cameras-photography_replacement-parts-tools_digital-camera-parts', 'Cameras & Photography :: Replacement Parts & Tools :: Digital Camera Parts', '', 0, 1, 0, '', '', ''),
  920. (4470, 'Film Camera Parts', 4391, 0, NULL, 'cameras-photography_replacement-parts-tools_film-camera-parts', 'Cameras & Photography :: Replacement Parts & Tools :: Film Camera Parts', '', 0, 1, 0, '', '', ''),
  921. (4471, 'Tools & Repair Kits', 4391, 0, NULL, 'cameras-photography_replacement-parts-tools_tools-repair-kits', 'Cameras & Photography :: Replacement Parts & Tools :: Tools & Repair Kits', '', 0, 1, 0, '', '', ''),
  922. (4472, 'Binoculars & Monoculars', 4392, 0, NULL, 'cameras-photography_telescopes-binoculars_binoculars-monoculars', 'Cameras & Photography :: Telescopes & Binoculars :: Binoculars & Monoculars', '', 0, 1, 0, '', '', ''),
  923. (4473, 'Binocular Accessories', 4392, 0, NULL, 'cameras-photography_telescopes-binoculars_binocular-accessories', 'Cameras & Photography :: Telescopes & Binoculars :: Binocular Accessories', '', 0, 1, 0, '', '', ''),
  924. (4474, 'Telescopes', 4392, 0, NULL, 'cameras-photography_telescopes-binoculars_telescopes', 'Cameras & Photography :: Telescopes & Binoculars :: Telescopes', '', 0, 1, 0, '', '', ''),
  925. (4475, 'Telescope Parts & Accessories', 4392, 0, NULL, 'cameras-photography_telescopes-binoculars_telescope-parts-accessories', 'Cameras & Photography :: Telescopes & Binoculars :: Telescope Parts & Accessories', '', 0, 1, 0, '', '', ''),
  926. (4476, 'Other Telescopes & Binoculars', 4392, 0, NULL, 'cameras-photography_telescopes-binoculars_other-telescopes-binoculars', 'Cameras & Photography :: Telescopes & Binoculars :: Other Telescopes & Binoculars', '', 0, 1, 0, '', '', ''),
  927. (4477, 'Vintage Cameras', 4393, 0, NULL, 'cameras-photography_vintage-photography_vintage-cameras', 'Cameras & Photography :: Vintage Photography :: Vintage Cameras', '', 0, 1, 0, '', '', ''),
  928. (4478, 'Vintage Accessories', 4393, 0, NULL, 'cameras-photography_vintage-photography_vintage-accessories', 'Cameras & Photography :: Vintage Photography :: Vintage Accessories', '', 0, 1, 0, '', '', ''),
  929. (4479, 'Vintage Film', 4393, 0, NULL, 'cameras-photography_vintage-photography_vintage-film', 'Cameras & Photography :: Vintage Photography :: Vintage Film', '', 0, 1, 0, '', '', ''),
  930. (4480, 'Vintage Lenses', 4393, 0, NULL, 'cameras-photography_vintage-photography_vintage-lenses', 'Cameras & Photography :: Vintage Photography :: Vintage Lenses', '', 0, 1, 0, '', '', ''),
  931. (4481, 'Vintage Manuals & Guides', 4393, 0, NULL, 'cameras-photography_vintage-photography_vintage-manuals-guides', 'Cameras & Photography :: Vintage Photography :: Vintage Manuals & Guides', '', 0, 1, 0, '', '', ''),
  932. (4482, 'Vintage Projectors & Screens', 4393, 0, NULL, 'cameras-photography_vintage-photography_vintage-projectors-screens', 'Cameras & Photography :: Vintage Photography :: Vintage Projectors & Screens', '', 0, 1, 0, '', '', ''),
  933. (4483, 'Other Vintage Photography', 4393, 0, NULL, 'cameras-photography_vintage-photography_other-vintage-photography', 'Cameras & Photography :: Vintage Photography :: Other Vintage Photography', '', 0, 1, 0, '', '', ''),
  934. (4484, 'Aircraft & Aviation', 3683, 0, NULL, 'cars-motorcycles-vehicles_aircraft-aviation', 'Cars, Motorcycles & Vehicles :: Aircraft & Aviation', '', 0, 1, 0, '', '', ''),
  935. (4485, 'Boats & Watercraft', 3683, 0, NULL, 'cars-motorcycles-vehicles_boats-watercraft', 'Cars, Motorcycles & Vehicles :: Boats & Watercraft', '', 0, 1, 0, '', '', ''),
  936. (4486, 'Campers, Caravans & Motorhomes', 3683, 0, NULL, 'cars-motorcycles-vehicles_campers-caravans-motorhomes', 'Cars, Motorcycles & Vehicles :: Campers, Caravans & Motorhomes', '', 0, 1, 0, '', '', ''),
  937. (4487, 'Cars', 3683, 0, NULL, 'cars-motorcycles-vehicles_cars', 'Cars, Motorcycles & Vehicles :: Cars', '', 0, 1, 0, '', '', ''),
  938. (4488, 'Classic Cars', 3683, 0, NULL, 'cars-motorcycles-vehicles_classic-cars', 'Cars, Motorcycles & Vehicles :: Classic Cars', '', 0, 1, 0, '', '', ''),
  939. (4489, 'Commercial Vehicles', 3683, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles', '', 0, 1, 0, '', '', ''),
  940. (4490, 'Motorcycles & Scooters', 3683, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters', '', 0, 1, 0, '', '', ''),
  941. (4491, 'Other Vehicles', 3683, 0, NULL, 'cars-motorcycles-vehicles_other-vehicles', 'Cars, Motorcycles & Vehicles :: Other Vehicles', '', 0, 1, 0, '', '', ''),
  942. (4492, 'Jet Skis', 4485, 0, NULL, 'cars-motorcycles-vehicles_boats-watercraft_jet-skis', 'Cars, Motorcycles & Vehicles :: Boats & Watercraft :: Jet Skis', '', 0, 1, 0, '', '', ''),
  943. (4493, 'Narrowboats/ Canalboats', 4485, 0, NULL, 'cars-motorcycles-vehicles_boats-watercraft_narrowboats-canalboats', 'Cars, Motorcycles & Vehicles :: Boats & Watercraft :: Narrowboats/ Canalboats', '', 0, 1, 0, '', '', ''),
  944. (4494, 'Power Boats', 4485, 0, NULL, 'cars-motorcycles-vehicles_boats-watercraft_power-boats', 'Cars, Motorcycles & Vehicles :: Boats & Watercraft :: Power Boats', '', 0, 1, 0, '', '', ''),
  945. (4495, 'Sailing Boats', 4485, 0, NULL, 'cars-motorcycles-vehicles_boats-watercraft_sailing-boats', 'Cars, Motorcycles & Vehicles :: Boats & Watercraft :: Sailing Boats', '', 0, 1, 0, '', '', ''),
  946. (4496, 'Other Watercraft', 4485, 0, NULL, 'cars-motorcycles-vehicles_boats-watercraft_other-watercraft', 'Cars, Motorcycles & Vehicles :: Boats & Watercraft :: Other Watercraft', '', 0, 1, 0, '', '', ''),
  947. (4497, 'Campervans & Motorhomes', 4486, 0, NULL, 'cars-motorcycles-vehicles_campers-caravans-motorhomes_campervans-motorhomes', 'Cars, Motorcycles & Vehicles :: Campers, Caravans & Motorhomes :: Campervans & Motorhomes', '', 0, 1, 0, '', '', ''),
  948. (4498, 'Caravans', 4486, 0, NULL, 'cars-motorcycles-vehicles_campers-caravans-motorhomes_caravans', 'Cars, Motorcycles & Vehicles :: Campers, Caravans & Motorhomes :: Caravans', '', 0, 1, 0, '', '', ''),
  949. (4499, 'Alfa Romeo', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_alfa-romeo', 'Cars, Motorcycles & Vehicles :: Cars :: Alfa Romeo', '', 0, 1, 0, '', '', ''),
  950. (4500, 'Aston Martin', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_aston-martin', 'Cars, Motorcycles & Vehicles :: Cars :: Aston Martin', '', 0, 1, 0, '', '', ''),
  951. (4501, 'Audi', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_audi', 'Cars, Motorcycles & Vehicles :: Cars :: Audi', '', 0, 1, 0, '', '', ''),
  952. (4502, 'BMW', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_bmw', 'Cars, Motorcycles & Vehicles :: Cars :: BMW', '', 0, 1, 0, '', '', ''),
  953. (4503, 'Chrysler', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_chrysler', 'Cars, Motorcycles & Vehicles :: Cars :: Chrysler', '', 0, 1, 0, '', '', ''),
  954. (4504, 'Citroen', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_citroen', 'Cars, Motorcycles & Vehicles :: Cars :: Citroen', '', 0, 1, 0, '', '', ''),
  955. (4505, 'Daewoo', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_daewoo', 'Cars, Motorcycles & Vehicles :: Cars :: Daewoo', '', 0, 1, 0, '', '', ''),
  956. (4506, 'Daihatsu', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_daihatsu', 'Cars, Motorcycles & Vehicles :: Cars :: Daihatsu', '', 0, 1, 0, '', '', ''),
  957. (4507, 'Ferrari', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_ferrari', 'Cars, Motorcycles & Vehicles :: Cars :: Ferrari', '', 0, 1, 0, '', '', ''),
  958. (4508, 'Fiat', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_fiat', 'Cars, Motorcycles & Vehicles :: Cars :: Fiat', '', 0, 1, 0, '', '', ''),
  959. (4509, 'Ford', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_ford', 'Cars, Motorcycles & Vehicles :: Cars :: Ford', '', 0, 1, 0, '', '', ''),
  960. (4510, 'Honda', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_honda', 'Cars, Motorcycles & Vehicles :: Cars :: Honda', '', 0, 1, 0, '', '', ''),
  961. (4511, 'Hummer', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_hummer', 'Cars, Motorcycles & Vehicles :: Cars :: Hummer', '', 0, 1, 0, '', '', ''),
  962. (4512, 'Hyundai', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_hyundai', 'Cars, Motorcycles & Vehicles :: Cars :: Hyundai', '', 0, 1, 0, '', '', ''),
  963. (4513, 'Isuzu', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_isuzu', 'Cars, Motorcycles & Vehicles :: Cars :: Isuzu', '', 0, 1, 0, '', '', ''),
  964. (4514, 'Jaguar', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_jaguar', 'Cars, Motorcycles & Vehicles :: Cars :: Jaguar', '', 0, 1, 0, '', '', ''),
  965. (4515, 'Jeep', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_jeep', 'Cars, Motorcycles & Vehicles :: Cars :: Jeep', '', 0, 1, 0, '', '', ''),
  966. (4516, 'Kia', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_kia', 'Cars, Motorcycles & Vehicles :: Cars :: Kia', '', 0, 1, 0, '', '', ''),
  967. (4517, 'Lada', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_lada', 'Cars, Motorcycles & Vehicles :: Cars :: Lada', '', 0, 1, 0, '', '', ''),
  968. (4518, 'Lamborghini', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_lamborghini', 'Cars, Motorcycles & Vehicles :: Cars :: Lamborghini', '', 0, 1, 0, '', '', ''),
  969. (4519, 'Lancia', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_lancia', 'Cars, Motorcycles & Vehicles :: Cars :: Lancia', '', 0, 1, 0, '', '', ''),
  970. (4520, 'Land Rover/ Range Rover', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_land-rover-range-rover', 'Cars, Motorcycles & Vehicles :: Cars :: Land Rover/ Range Rover', '', 0, 1, 0, '', '', ''),
  971. (4521, 'Lexus', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_lexus', 'Cars, Motorcycles & Vehicles :: Cars :: Lexus', '', 0, 1, 0, '', '', ''),
  972. (4522, 'Lotus', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_lotus', 'Cars, Motorcycles & Vehicles :: Cars :: Lotus', '', 0, 1, 0, '', '', ''),
  973. (4523, 'Maserati', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_maserati', 'Cars, Motorcycles & Vehicles :: Cars :: Maserati', '', 0, 1, 0, '', '', ''),
  974. (4524, 'Mazda', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_mazda', 'Cars, Motorcycles & Vehicles :: Cars :: Mazda', '', 0, 1, 0, '', '', ''),
  975. (4525, 'Mercedes-Benz', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_mercedes-benz', 'Cars, Motorcycles & Vehicles :: Cars :: Mercedes-Benz', '', 0, 1, 0, '', '', ''),
  976. (4526, 'Mini', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_mini', 'Cars, Motorcycles & Vehicles :: Cars :: Mini', '', 0, 1, 0, '', '', ''),
  977. (4527, 'Mitsubishi', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_mitsubishi', 'Cars, Motorcycles & Vehicles :: Cars :: Mitsubishi', '', 0, 1, 0, '', '', ''),
  978. (4528, 'Nissan', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_nissan', 'Cars, Motorcycles & Vehicles :: Cars :: Nissan', '', 0, 1, 0, '', '', ''),
  979. (4529, 'Perodua', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_perodua', 'Cars, Motorcycles & Vehicles :: Cars :: Perodua', '', 0, 1, 0, '', '', ''),
  980. (4530, 'Peugeot', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_peugeot', 'Cars, Motorcycles & Vehicles :: Cars :: Peugeot', '', 0, 1, 0, '', '', ''),
  981. (4531, 'Porsche', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_porsche', 'Cars, Motorcycles & Vehicles :: Cars :: Porsche', '', 0, 1, 0, '', '', ''),
  982. (4532, 'Proton', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_proton', 'Cars, Motorcycles & Vehicles :: Cars :: Proton', '', 0, 1, 0, '', '', ''),
  983. (4533, 'Reliant', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_reliant', 'Cars, Motorcycles & Vehicles :: Cars :: Reliant', '', 0, 1, 0, '', '', ''),
  984. (4534, 'Renault', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_renault', 'Cars, Motorcycles & Vehicles :: Cars :: Renault', '', 0, 1, 0, '', '', ''),
  985. (4535, 'Rolls Royce & Bentley', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_rolls-royce-bentley', 'Cars, Motorcycles & Vehicles :: Cars :: Rolls Royce & Bentley', '', 0, 1, 0, '', '', ''),
  986. (4536, 'Rover/ MG', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_rover-mg', 'Cars, Motorcycles & Vehicles :: Cars :: Rover/ MG', '', 0, 1, 0, '', '', ''),
  987. (4537, 'Seat', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_seat', 'Cars, Motorcycles & Vehicles :: Cars :: Seat', '', 0, 1, 0, '', '', ''),
  988. (4538, 'Skoda', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_skoda', 'Cars, Motorcycles & Vehicles :: Cars :: Skoda', '', 0, 1, 0, '', '', ''),
  989. (4539, 'Smart', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_smart', 'Cars, Motorcycles & Vehicles :: Cars :: Smart', '', 0, 1, 0, '', '', ''),
  990. (4540, 'Ssangyong', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_ssangyong', 'Cars, Motorcycles & Vehicles :: Cars :: Ssangyong', '', 0, 1, 0, '', '', ''),
  991. (4541, 'Subaru', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_subaru', 'Cars, Motorcycles & Vehicles :: Cars :: Subaru', '', 0, 1, 0, '', '', ''),
  992. (4542, 'Suzuki', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_suzuki', 'Cars, Motorcycles & Vehicles :: Cars :: Suzuki', '', 0, 1, 0, '', '', ''),
  993. (4543, 'Toyota', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_toyota', 'Cars, Motorcycles & Vehicles :: Cars :: Toyota', '', 0, 1, 0, '', '', ''),
  994. (4544, 'TVR', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_tvr', 'Cars, Motorcycles & Vehicles :: Cars :: TVR', '', 0, 1, 0, '', '', ''),
  995. (4545, 'Vauxhall & Opel', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_vauxhall-opel', 'Cars, Motorcycles & Vehicles :: Cars :: Vauxhall & Opel', '', 0, 1, 0, '', '', ''),
  996. (4546, 'Volkswagen', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_volkswagen', 'Cars, Motorcycles & Vehicles :: Cars :: Volkswagen', '', 0, 1, 0, '', '', ''),
  997. (4547, 'Volvo', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_volvo', 'Cars, Motorcycles & Vehicles :: Cars :: Volvo', '', 0, 1, 0, '', '', ''),
  998. (4548, 'Kit Cars', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_kit-cars', 'Cars, Motorcycles & Vehicles :: Cars :: Kit Cars', '', 0, 1, 0, '', '', ''),
  999. (4549, 'Other Cars', 4487, 0, NULL, 'cars-motorcycles-vehicles_cars_other-cars', 'Cars, Motorcycles & Vehicles :: Cars :: Other Cars', '', 0, 1, 0, '', '', ''),
  1000. (4550, 'Alfa Romeo', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_alfa-romeo', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Alfa Romeo', '', 0, 1, 0, '', '', ''),
  1001. (4551, 'Alvis', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_alvis', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Alvis', '', 0, 1, 0, '', '', ''),
  1002. (4552, 'American', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_american', 'Cars, Motorcycles & Vehicles :: Classic Cars :: American', '', 0, 1, 0, '', '', ''),
  1003. (4553, 'Aston Martin', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_aston-martin', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Aston Martin', '', 0, 1, 0, '', '', ''),
  1004. (4554, 'Audi', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_audi', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Audi', '', 0, 1, 0, '', '', ''),
  1005. (4555, 'Austin', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_austin', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Austin', '', 0, 1, 0, '', '', ''),
  1006. (4556, 'Bedford', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_bedford', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Bedford', '', 0, 1, 0, '', '', ''),
  1007. (4557, 'BMW', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_bmw', 'Cars, Motorcycles & Vehicles :: Classic Cars :: BMW', '', 0, 1, 0, '', '', ''),
  1008. (4558, 'Chrysler', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_chrysler', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Chrysler', '', 0, 1, 0, '', '', ''),
  1009. (4559, 'Citroen', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_citroen', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Citroen', '', 0, 1, 0, '', '', ''),
  1010. (4560, 'Daimler', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_daimler', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Daimler', '', 0, 1, 0, '', '', ''),
  1011. (4561, 'Datsun', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_datsun', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Datsun', '', 0, 1, 0, '', '', ''),
  1012. (4562, 'Dodge', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_dodge', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Dodge', '', 0, 1, 0, '', '', ''),
  1013. (4563, 'Fiat & Lancia', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_fiat-lancia', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Fiat & Lancia', '', 0, 1, 0, '', '', ''),
  1014. (4564, 'Ford', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_ford', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Ford', '', 0, 1, 0, '', '', ''),
  1015. (4565, 'Hillman', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_hillman', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Hillman', '', 0, 1, 0, '', '', ''),
  1016. (4566, 'Humber', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_humber', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Humber', '', 0, 1, 0, '', '', ''),
  1017. (4567, 'Jaguar', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_jaguar', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Jaguar', '', 0, 1, 0, '', '', ''),
  1018. (4568, 'Jensen', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_jensen', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Jensen', '', 0, 1, 0, '', '', ''),
  1019. (4569, 'Land Rover', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_land-rover', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Land Rover', '', 0, 1, 0, '', '', ''),
  1020. (4570, 'Lotus', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_lotus', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Lotus', '', 0, 1, 0, '', '', ''),
  1021. (4571, 'Marlin', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_marlin', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Marlin', '', 0, 1, 0, '', '', ''),
  1022. (4572, 'Mercedes-Benz', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_mercedes-benz', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Mercedes-Benz', '', 0, 1, 0, '', '', ''),
  1023. (4573, 'MG', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_mg', 'Cars, Motorcycles & Vehicles :: Classic Cars :: MG', '', 0, 1, 0, '', '', ''),
  1024. (4574, 'Mini', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_mini', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Mini', '', 0, 1, 0, '', '', ''),
  1025. (4575, 'Morgan', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_morgan', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Morgan', '', 0, 1, 0, '', '', ''),
  1026. (4576, 'Morris', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_morris', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Morris', '', 0, 1, 0, '', '', ''),
  1027. (4577, 'Porsche', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_porsche', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Porsche', '', 0, 1, 0, '', '', ''),
  1028. (4578, 'Reliant', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_reliant', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Reliant', '', 0, 1, 0, '', '', ''),
  1029. (4579, 'Renault', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_renault', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Renault', '', 0, 1, 0, '', '', ''),
  1030. (4580, 'Riley', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_riley', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Riley', '', 0, 1, 0, '', '', ''),
  1031. (4581, 'Rolls Royce & Bentley', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_rolls-royce-bentley', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Rolls Royce & Bentley', '', 0, 1, 0, '', '', ''),
  1032. (4582, 'Rover', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_rover', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Rover', '', 0, 1, 0, '', '', ''),
  1033. (4583, 'Saab', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_saab', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Saab', '', 0, 1, 0, '', '', ''),
  1034. (4584, 'Sunbeam', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_sunbeam', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Sunbeam', '', 0, 1, 0, '', '', ''),
  1035. (4585, 'Talbot', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_talbot', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Talbot', '', 0, 1, 0, '', '', ''),
  1036. (4586, 'Toyota', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_toyota', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Toyota', '', 0, 1, 0, '', '', ''),
  1037. (4587, 'Triumph', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_triumph', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Triumph', '', 0, 1, 0, '', '', ''),
  1038. (4588, 'Vauxhall/ Opel', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_vauxhall-opel', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Vauxhall/ Opel', '', 0, 1, 0, '', '', ''),
  1039. (4589, 'Volkswagen', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_volkswagen', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Volkswagen', '', 0, 1, 0, '', '', ''),
  1040. (4590, 'Volvo', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_volvo', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Volvo', '', 0, 1, 0, '', '', ''),
  1041. (4591, 'Wolseley', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_wolseley', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Wolseley', '', 0, 1, 0, '', '', ''),
  1042. (4592, 'Other Classic Cars', 4488, 0, NULL, 'cars-motorcycles-vehicles_classic-cars_other-classic-cars', 'Cars, Motorcycles & Vehicles :: Classic Cars :: Other Classic Cars', '', 0, 1, 0, '', '', ''),
  1043. (4593, 'Agricultural Vehicles', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_agricultural-vehicles', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Agricultural Vehicles', '', 0, 1, 0, '', '', ''),
  1044. (4594, 'Lorries/ Trucks', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_lorries-trucks', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Lorries/ Trucks', '', 0, 1, 0, '', '', ''),
  1045. (4595, 'Minibuses/ Buses/ Coaches', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_minibuses-buses-coaches', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Minibuses/ Buses/ Coaches', '', 0, 1, 0, '', '', ''),
  1046. (4596, 'Taxis', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_taxis', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Taxis', '', 0, 1, 0, '', '', ''),
  1047. (4597, 'Trailers/ Transporters', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_trailers-transporters', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Trailers/ Transporters', '', 0, 1, 0, '', '', ''),
  1048. (4598, 'Vans/ Pickups', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_vans-pickups', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Vans/ Pickups', '', 0, 1, 0, '', '', ''),
  1049. (4599, 'Other Commercial Vehicles', 4489, 0, NULL, 'cars-motorcycles-vehicles_commercial-vehicles_other-commercial-vehicles', 'Cars, Motorcycles & Vehicles :: Commercial Vehicles :: Other Commercial Vehicles', '', 0, 1, 0, '', '', ''),
  1050. (4600, 'Aprilia', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_aprilia', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Aprilia', '', 0, 1, 0, '', '', ''),
  1051. (4601, 'Benelli', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_benelli', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Benelli', '', 0, 1, 0, '', '', ''),
  1052. (4602, 'BMW', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_bmw', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: BMW', '', 0, 1, 0, '', '', ''),
  1053. (4603, 'BSA', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_bsa', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: BSA', '', 0, 1, 0, '', '', ''),
  1054. (4604, 'Buell', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_buell', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Buell', '', 0, 1, 0, '', '', ''),
  1055. (4605, 'Bultaco', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_bultaco', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Bultaco', '', 0, 1, 0, '', '', ''),
  1056. (4606, 'Cagiva', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_cagiva', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Cagiva', '', 0, 1, 0, '', '', ''),
  1057. (4607, 'CCM', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_ccm', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: CCM', '', 0, 1, 0, '', '', ''),
  1058. (4608, 'Derbi', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_derbi', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Derbi', '', 0, 1, 0, '', '', ''),
  1059. (4609, 'Ducati', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_ducati', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Ducati', '', 0, 1, 0, '', '', ''),
  1060. (4610, 'Gas Gas', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_gas-gas', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Gas Gas', '', 0, 1, 0, '', '', ''),
  1061. (4611, 'Gilera', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_gilera', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Gilera', '', 0, 1, 0, '', '', ''),
  1062. (4612, 'Harley Davidson', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_harley-davidson', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Harley Davidson', '', 0, 1, 0, '', '', ''),
  1063. (4613, 'Honda', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_honda', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Honda', '', 0, 1, 0, '', '', ''),
  1064. (4614, 'Husaberg', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_husaberg', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Husaberg', '', 0, 1, 0, '', '', ''),
  1065. (4615, 'Husqvarna', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_husqvarna', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Husqvarna', '', 0, 1, 0, '', '', ''),
  1066. (4616, 'Hyosung', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_hyosung', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Hyosung', '', 0, 1, 0, '', '', ''),
  1067. (4617, 'Italjet', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_italjet', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Italjet', '', 0, 1, 0, '', '', ''),
  1068. (4618, 'Kawasaki', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_kawasaki', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Kawasaki', '', 0, 1, 0, '', '', ''),
  1069. (4619, 'KTM', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_ktm', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: KTM', '', 0, 1, 0, '', '', ''),
  1070. (4620, 'Kymco', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_kymco', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Kymco', '', 0, 1, 0, '', '', ''),
  1071. (4621, 'Lambretta', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_lambretta', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Lambretta', '', 0, 1, 0, '', '', ''),
  1072. (4622, 'Laverda', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_laverda', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Laverda', '', 0, 1, 0, '', '', ''),
  1073. (4623, 'Malaguti', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_malaguti', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Malaguti', '', 0, 1, 0, '', '', ''),
  1074. (4624, 'MBK', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_mbk', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: MBK', '', 0, 1, 0, '', '', ''),
  1075. (4625, 'Montesa', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_montesa', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Montesa', '', 0, 1, 0, '', '', ''),
  1076. (4626, 'Moto Guzzi', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_moto-guzzi', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Moto Guzzi', '', 0, 1, 0, '', '', ''),
  1077. (4627, 'Moto Roma', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_moto-roma', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Moto Roma', '', 0, 1, 0, '', '', ''),
  1078. (4628, 'MZ', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_mz', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: MZ', '', 0, 1, 0, '', '', ''),
  1079. (4629, 'Norton', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_norton', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Norton', '', 0, 1, 0, '', '', ''),
  1080. (4630, 'Peugeot', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_peugeot', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Peugeot', '', 0, 1, 0, '', '', ''),
  1081. (4631, 'Piaggio', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_piaggio', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Piaggio', '', 0, 1, 0, '', '', ''),
  1082. (4632, 'Puch', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_puch', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Puch', '', 0, 1, 0, '', '', ''),
  1083. (4633, 'Royal Enfield', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_royal-enfield', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Royal Enfield', '', 0, 1, 0, '', '', ''),
  1084. (4634, 'Sachs', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_sachs', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Sachs', '', 0, 1, 0, '', '', ''),
  1085. (4635, 'Sunbeam', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_sunbeam', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Sunbeam', '', 0, 1, 0, '', '', ''),
  1086. (4636, 'Suzuki', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_suzuki', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Suzuki', '', 0, 1, 0, '', '', ''),
  1087. (4637, 'Sym', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_sym', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Sym', '', 0, 1, 0, '', '', ''),
  1088. (4638, 'Triumph', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_triumph', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Triumph', '', 0, 1, 0, '', '', ''),
  1089. (4639, 'Vespa', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_vespa', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Vespa', '', 0, 1, 0, '', '', ''),
  1090. (4640, 'Yamaha', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_yamaha', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Yamaha', '', 0, 1, 0, '', '', ''),
  1091. (4641, 'Trikes, ATVs & Quads', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_trikes-atvs-quads', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Trikes, ATVs & Quads', '', 0, 1, 0, '', '', ''),
  1092. (4642, 'Other Motorcycles', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_other-motorcycles', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Other Motorcycles', '', 0, 1, 0, '', '', ''),
  1093. (4643, 'Other Scooters', 4490, 0, NULL, 'cars-motorcycles-vehicles_motorcycles-scooters_other-scooters', 'Cars, Motorcycles & Vehicles :: Motorcycles & Scooters :: Other Scooters', '', 0, 1, 0, '', '', ''),
  1094. (4644, 'Disabled Vehicles', 4491, 0, NULL, 'cars-motorcycles-vehicles_other-vehicles_disabled-vehicles', 'Cars, Motorcycles & Vehicles :: Other Vehicles :: Disabled Vehicles', '', 0, 1, 0, '', '', ''),
  1095. (4645, 'Emergency Vehicles', 4491, 0, NULL, 'cars-motorcycles-vehicles_other-vehicles_emergency-vehicles', 'Cars, Motorcycles & Vehicles :: Other Vehicles :: Emergency Vehicles', '', 0, 1, 0, '', '', ''),
  1096. (4646, 'Go-Karts', 4491, 0, NULL, 'cars-motorcycles-vehicles_other-vehicles_go-karts', 'Cars, Motorcycles & Vehicles :: Other Vehicles :: Go-Karts', '', 0, 1, 0, '', '', ''),
  1097. (4647, 'Military Vehicles', 4491, 0, NULL, 'cars-motorcycles-vehicles_other-vehicles_military-vehicles', 'Cars, Motorcycles & Vehicles :: Other Vehicles :: Military Vehicles', '', 0, 1, 0, '', '', ''),
  1098. (4648, 'Other Vehicles', 4491, 0, NULL, 'cars-motorcycles-vehicles_other-vehicles_other-vehicles', 'Cars, Motorcycles & Vehicles :: Other Vehicles :: Other Vehicles', '', 0, 1, 0, '', '', ''),
  1099. (4649, 'Dancewear & Accessories', 3684, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories', 'Clothes, Shoes & Accessories :: Dancewear & Accessories', '', 0, 1, 0, '', '', ''),
  1100. (4650, 'Fancy Dress & Period Costume', 3684, 0, NULL, 'clothes-shoes-accessories_fancy-dress-period-costume', 'Clothes, Shoes & Accessories :: Fancy Dress & Period Costume', '', 0, 1, 0, '', '', ''),
  1101. (4651, 'Kids' Clothes, Shoes & Accs.', 3684, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs.', '', 0, 1, 0, '', '', ''),
  1102. (4652, 'Men's Accessories', 3684, 0, NULL, 'clothes-shoes-accessories_mens-accessories', 'Clothes, Shoes & Accessories :: Men's Accessories', '', 0, 1, 0, '', '', ''),
  1103. (4653, 'Men's Clothing', 3684, 0, NULL, 'clothes-shoes-accessories_mens-clothing', 'Clothes, Shoes & Accessories :: Men's Clothing', '', 0, 1, 0, '', '', ''),
  1104. (4654, 'Men's Shoes', 3684, 0, NULL, 'clothes-shoes-accessories_mens-shoes', 'Clothes, Shoes & Accessories :: Men's Shoes', '', 0, 1, 0, '', '', ''),
  1105. (4655, 'Vintage Clothing & Accessories', 3684, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories', '', 0, 1, 0, '', '', ''),
  1106. (4656, 'Wedding & Formal Occasion', 3684, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion', '', 0, 1, 0, '', '', ''),
  1107. (4657, 'Women's Accessories', 3684, 0, NULL, 'clothes-shoes-accessories_womens-accessories', 'Clothes, Shoes & Accessories :: Women's Accessories', '', 0, 1, 0, '', '', ''),
  1108. (4658, 'Women's Handbags', 3684, 0, NULL, 'clothes-shoes-accessories_womens-handbags', 'Clothes, Shoes & Accessories :: Women's Handbags', '', 0, 1, 0, '', '', ''),
  1109. (4659, 'Women's Clothing', 3684, 0, NULL, 'clothes-shoes-accessories_womens-clothing', 'Clothes, Shoes & Accessories :: Women's Clothing', '', 0, 1, 0, '', '', ''),
  1110. (4660, 'Women's Shoes', 3684, 0, NULL, 'clothes-shoes-accessories_womens-shoes', 'Clothes, Shoes & Accessories :: Women's Shoes', '', 0, 1, 0, '', '', ''),
  1111. (4661, 'World & Traditional Clothing', 3684, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing', 'Clothes, Shoes & Accessories :: World & Traditional Clothing', '', 0, 1, 0, '', '', ''),
  1112. (4662, 'Other Clothes', 3684, 0, NULL, 'clothes-shoes-accessories_other-clothes', 'Clothes, Shoes & Accessories :: Other Clothes', '', 0, 1, 0, '', '', ''),
  1113. (4663, 'Children's Dancewear', 4649, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories_childrens-dancewear', 'Clothes, Shoes & Accessories :: Dancewear & Accessories :: Children's Dancewear', '', 0, 1, 0, '', '', ''),
  1114. (4664, 'Children's Dance Shoes', 4649, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories_childrens-dance-shoes', 'Clothes, Shoes & Accessories :: Dancewear & Accessories :: Children's Dance Shoes', '', 0, 1, 0, '', '', ''),
  1115. (4665, 'Men's Dancewear', 4649, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories_mens-dancewear', 'Clothes, Shoes & Accessories :: Dancewear & Accessories :: Men's Dancewear', '', 0, 1, 0, '', '', ''),
  1116. (4666, 'Men's Dance Shoes', 4649, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories_mens-dance-shoes', 'Clothes, Shoes & Accessories :: Dancewear & Accessories :: Men's Dance Shoes', '', 0, 1, 0, '', '', ''),
  1117. (4667, 'Women's Dancewear', 4649, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories_womens-dancewear', 'Clothes, Shoes & Accessories :: Dancewear & Accessories :: Women's Dancewear', '', 0, 1, 0, '', '', ''),
  1118. (4668, 'Women's Dance Shoes', 4649, 0, NULL, 'clothes-shoes-accessories_dancewear-accessories_womens-dance-shoes', 'Clothes, Shoes & Accessories :: Dancewear & Accessories :: Women's Dance Shoes', '', 0, 1, 0, '', '', ''),
  1119. (4669, 'Fancy Dress', 4650, 0, NULL, 'clothes-shoes-accessories_fancy-dress-period-costume_fancy-dress', 'Clothes, Shoes & Accessories :: Fancy Dress & Period Costume :: Fancy Dress', '', 0, 1, 0, '', '', ''),
  1120. (4670, 'Period & Theatre Costumes', 4650, 0, NULL, 'clothes-shoes-accessories_fancy-dress-period-costume_period-theatre-costumes', 'Clothes, Shoes & Accessories :: Fancy Dress & Period Costume :: Period & Theatre Costumes', '', 0, 1, 0, '', '', ''),
  1121. (4671, 'Accessories', 4650, 0, NULL, 'clothes-shoes-accessories_fancy-dress-period-costume_accessories', 'Clothes, Shoes & Accessories :: Fancy Dress & Period Costume :: Accessories', '', 0, 1, 0, '', '', ''),
  1122. (4672, 'Other Fancy Dress & Period', 4650, 0, NULL, 'clothes-shoes-accessories_fancy-dress-period-costume_other-fancy-dress-period', 'Clothes, Shoes & Accessories :: Fancy Dress & Period Costume :: Other Fancy Dress & Period', '', 0, 1, 0, '', '', ''),
  1123. (4673, 'Boys' Accessories', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_boys-accessories', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Boys' Accessories', '', 0, 1, 0, '', '', ''),
  1124. (4674, 'Boys' Clothing (2-16 Years)', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_boys-clothing-2-16-years', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Boys' Clothing (2-16 Years)', '', 0, 1, 0, '', '', ''),
  1125. (4675, 'Boys' Shoes', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_boys-shoes', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Boys' Shoes', '', 0, 1, 0, '', '', ''),
  1126. (4676, 'Girls' Accessories', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_girls-accessories', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Girls' Accessories', '', 0, 1, 0, '', '', ''),
  1127. (4677, 'Girls' Clothing (2-16 Years)', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_girls-clothing-2-16-years', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Girls' Clothing (2-16 Years)', '', 0, 1, 0, '', '', ''),
  1128. (4678, 'Girls' Shoes', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_girls-shoes', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Girls' Shoes', '', 0, 1, 0, '', '', ''),
  1129. (4679, 'Other Kids' Clothing & Accs.', 4651, 0, NULL, 'clothes-shoes-accessories_kids-clothes-shoes-accs_other-kids-clothing-accs', 'Clothes, Shoes & Accessories :: Kids' Clothes, Shoes & Accs. :: Other Kids' Clothing & Accs.', '', 0, 1, 0, '', '', ''),
  1130. (4680, 'Bags', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_bags', 'Clothes, Shoes & Accessories :: Men's Accessories :: Bags', '', 0, 1, 0, '', '', ''),
  1131. (4681, 'Belts', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_belts', 'Clothes, Shoes & Accessories :: Men's Accessories :: Belts', '', 0, 1, 0, '', '', ''),
  1132. (4682, 'Belt Buckles', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_belt-buckles', 'Clothes, Shoes & Accessories :: Men's Accessories :: Belt Buckles', '', 0, 1, 0, '', '', ''),
  1133. (4683, 'Braces', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_braces', 'Clothes, Shoes & Accessories :: Men's Accessories :: Braces', '', 0, 1, 0, '', '', ''),
  1134. (4684, 'Gloves & Mittens', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_gloves-mittens', 'Clothes, Shoes & Accessories :: Men's Accessories :: Gloves & Mittens', '', 0, 1, 0, '', '', ''),
  1135. (4685, 'Hairpieces & Toupees', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_hairpieces-toupees', 'Clothes, Shoes & Accessories :: Men's Accessories :: Hairpieces & Toupees', '', 0, 1, 0, '', '', ''),
  1136. (4686, 'Handkerchiefs', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_handkerchiefs', 'Clothes, Shoes & Accessories :: Men's Accessories :: Handkerchiefs', '', 0, 1, 0, '', '', ''),
  1137. (4687, 'Hats', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_hats', 'Clothes, Shoes & Accessories :: Men's Accessories :: Hats', '', 0, 1, 0, '', '', ''),
  1138. (4688, 'ID & Document Holders', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_id-document-holders', 'Clothes, Shoes & Accessories :: Men's Accessories :: ID & Document Holders', '', 0, 1, 0, '', '', ''),
  1139. (4689, 'Keyrings', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_keyrings', 'Clothes, Shoes & Accessories :: Men's Accessories :: Keyrings', '', 0, 1, 0, '', '', ''),
  1140. (4690, 'Organisers & Diaries', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_organisers-diaries', 'Clothes, Shoes & Accessories :: Men's Accessories :: Organisers & Diaries', '', 0, 1, 0, '', '', ''),
  1141. (4691, 'Scarves', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_scarves', 'Clothes, Shoes & Accessories :: Men's Accessories :: Scarves', '', 0, 1, 0, '', '', ''),
  1142. (4692, 'Sunglasses & Eyewear', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_sunglasses-eyewear', 'Clothes, Shoes & Accessories :: Men's Accessories :: Sunglasses & Eyewear', '', 0, 1, 0, '', '', ''),
  1143. (4693, 'Ties, Bow Ties & Cravats', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_ties-bow-ties-cravats', 'Clothes, Shoes & Accessories :: Men's Accessories :: Ties, Bow Ties & Cravats', '', 0, 1, 0, '', '', ''),
  1144. (4694, 'Umbrellas', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_umbrellas', 'Clothes, Shoes & Accessories :: Men's Accessories :: Umbrellas', '', 0, 1, 0, '', '', ''),
  1145. (4695, 'Wallets', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_wallets', 'Clothes, Shoes & Accessories :: Men's Accessories :: Wallets', '', 0, 1, 0, '', '', ''),
  1146. (4696, 'Wristbands', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_wristbands', 'Clothes, Shoes & Accessories :: Men's Accessories :: Wristbands', '', 0, 1, 0, '', '', ''),
  1147. (4697, 'Accessory Sets', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_accessory-sets', 'Clothes, Shoes & Accessories :: Men's Accessories :: Accessory Sets', '', 0, 1, 0, '', '', ''),
  1148. (4698, 'Other Men's Accessories', 4652, 0, NULL, 'clothes-shoes-accessories_mens-accessories_other-mens-accessories', 'Clothes, Shoes & Accessories :: Men's Accessories :: Other Men's Accessories', '', 0, 1, 0, '', '', ''),
  1149. (4699, 'Activewear', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_activewear', 'Clothes, Shoes & Accessories :: Men's Clothing :: Activewear', '', 0, 1, 0, '', '', ''),
  1150. (4700, 'Casual Shirts & Tops', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_casual-shirts-tops', 'Clothes, Shoes & Accessories :: Men's Clothing :: Casual Shirts & Tops', '', 0, 1, 0, '', '', ''),
  1151. (4701, 'Coats & Jackets', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_coats-jackets', 'Clothes, Shoes & Accessories :: Men's Clothing :: Coats & Jackets', '', 0, 1, 0, '', '', ''),
  1152. (4702, 'Formal Shirts', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_formal-shirts', 'Clothes, Shoes & Accessories :: Men's Clothing :: Formal Shirts', '', 0, 1, 0, '', '', ''),
  1153. (4703, 'Hoodies & Sweats', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_hoodies-sweats', 'Clothes, Shoes & Accessories :: Men's Clothing :: Hoodies & Sweats', '', 0, 1, 0, '', '', ''),
  1154. (4704, 'Jeans', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_jeans', 'Clothes, Shoes & Accessories :: Men's Clothing :: Jeans', '', 0, 1, 0, '', '', ''),
  1155. (4705, 'Jumpers & Cardigans', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_jumpers-cardigans', 'Clothes, Shoes & Accessories :: Men's Clothing :: Jumpers & Cardigans', '', 0, 1, 0, '', '', ''),
  1156. (4706, 'Nightwear', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_nightwear', 'Clothes, Shoes & Accessories :: Men's Clothing :: Nightwear', '', 0, 1, 0, '', '', ''),
  1157. (4707, 'Shorts', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_shorts', 'Clothes, Shoes & Accessories :: Men's Clothing :: Shorts', '', 0, 1, 0, '', '', ''),
  1158. (4708, 'Socks', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_socks', 'Clothes, Shoes & Accessories :: Men's Clothing :: Socks', '', 0, 1, 0, '', '', ''),
  1159. (4709, 'Suits & Tailoring', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_suits-tailoring', 'Clothes, Shoes & Accessories :: Men's Clothing :: Suits & Tailoring', '', 0, 1, 0, '', '', ''),
  1160. (4710, 'Swimwear', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_swimwear', 'Clothes, Shoes & Accessories :: Men's Clothing :: Swimwear', '', 0, 1, 0, '', '', ''),
  1161. (4711, 'Trousers', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_trousers', 'Clothes, Shoes & Accessories :: Men's Clothing :: Trousers', '', 0, 1, 0, '', '', ''),
  1162. (4712, 'T-Shirts', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_t-shirts', 'Clothes, Shoes & Accessories :: Men's Clothing :: T-Shirts', '', 0, 1, 0, '', '', ''),
  1163. (4713, 'Underwear', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_underwear', 'Clothes, Shoes & Accessories :: Men's Clothing :: Underwear', '', 0, 1, 0, '', '', ''),
  1164. (4714, 'Waistcoats', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_waistcoats', 'Clothes, Shoes & Accessories :: Men's Clothing :: Waistcoats', '', 0, 1, 0, '', '', ''),
  1165. (4715, 'Bundles', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_bundles', 'Clothes, Shoes & Accessories :: Men's Clothing :: Bundles', '', 0, 1, 0, '', '', ''),
  1166. (4716, 'Other Men's Clothing', 4653, 0, NULL, 'clothes-shoes-accessories_mens-clothing_other-mens-clothing', 'Clothes, Shoes & Accessories :: Men's Clothing :: Other Men's Clothing', '', 0, 1, 0, '', '', ''),
  1167. (4717, 'Boots', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_boots', 'Clothes, Shoes & Accessories :: Men's Shoes :: Boots', '', 0, 1, 0, '', '', ''),
  1168. (4718, 'Casual Shoes', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_casual-shoes', 'Clothes, Shoes & Accessories :: Men's Shoes :: Casual Shoes', '', 0, 1, 0, '', '', ''),
  1169. (4719, 'Formal Shoes', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_formal-shoes', 'Clothes, Shoes & Accessories :: Men's Shoes :: Formal Shoes', '', 0, 1, 0, '', '', ''),
  1170. (4720, 'Sandals & Beach Shoes', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_sandals-beach-shoes', 'Clothes, Shoes & Accessories :: Men's Shoes :: Sandals & Beach Shoes', '', 0, 1, 0, '', '', ''),
  1171. (4721, 'Slippers', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_slippers', 'Clothes, Shoes & Accessories :: Men's Shoes :: Slippers', '', 0, 1, 0, '', '', ''),
  1172. (4722, 'Trainers', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_trainers', 'Clothes, Shoes & Accessories :: Men's Shoes :: Trainers', '', 0, 1, 0, '', '', ''),
  1173. (4723, 'Other Men's Shoes', 4654, 0, NULL, 'clothes-shoes-accessories_mens-shoes_other-mens-shoes', 'Clothes, Shoes & Accessories :: Men's Shoes :: Other Men's Shoes', '', 0, 1, 0, '', '', ''),
  1174. (4724, 'Vintage Accessories', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_vintage-accessories', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Vintage Accessories', '', 0, 1, 0, '', '', ''),
  1175. (4725, 'Children's Vintage Clothing', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_childrens-vintage-clothing', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Children's Vintage Clothing', '', 0, 1, 0, '', '', ''),
  1176. (4726, 'Men's Vintage Clothing', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_mens-vintage-clothing', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Men's Vintage Clothing', '', 0, 1, 0, '', '', ''),
  1177. (4727, 'Men's Vintage Shoes', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_mens-vintage-shoes', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Men's Vintage Shoes', '', 0, 1, 0, '', '', ''),
  1178. (4728, 'Women's Vintage Clothing', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_womens-vintage-clothing', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Women's Vintage Clothing', '', 0, 1, 0, '', '', ''),
  1179. (4729, 'Women's Vintage Shoes', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_womens-vintage-shoes', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Women's Vintage Shoes', '', 0, 1, 0, '', '', ''),
  1180. (4730, 'Other Vintage Clothing & Accs.', 4655, 0, NULL, 'clothes-shoes-accessories_vintage-clothing-accessories_other-vintage-clothing-accs', 'Clothes, Shoes & Accessories :: Vintage Clothing & Accessories :: Other Vintage Clothing & Accs.', '', 0, 1, 0, '', '', ''),
  1181. (4731, 'Wedding Dresses', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_wedding-dresses', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Wedding Dresses', '', 0, 1, 0, '', '', ''),
  1182. (4732, 'Bridal Shoes', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_bridal-shoes', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Bridal Shoes', '', 0, 1, 0, '', '', ''),
  1183. (4733, 'Bridal Accessories', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_bridal-accessories', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Bridal Accessories', '', 0, 1, 0, '', '', ''),
  1184. (4734, 'Bridesmaids' & Formal Dresses', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_bridesmaids-formal-dresses', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Bridesmaids' & Formal Dresses', '', 0, 1, 0, '', '', ''),
  1185. (4735, 'Boys' Formal Occasion', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_boys-formal-occasion', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Boys' Formal Occasion', '', 0, 1, 0, '', '', ''),
  1186. (4736, 'Girls' Formal Occasion', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_girls-formal-occasion', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Girls' Formal Occasion', '', 0, 1, 0, '', '', ''),
  1187. (4737, 'Men's Formal Occasion', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_mens-formal-occasion', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Men's Formal Occasion', '', 0, 1, 0, '', '', ''),
  1188. (4738, 'Women's Formal Hats', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_womens-formal-hats', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Women's Formal Hats', '', 0, 1, 0, '', '', ''),
  1189. (4739, 'Mother of the Bride', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_mother-of-the-bride', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Mother of the Bride', '', 0, 1, 0, '', '', ''),
  1190. (4740, 'Novelty', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_novelty', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Novelty', '', 0, 1, 0, '', '', ''),
  1191. (4741, 'Other Wedding & Formal', 4656, 0, NULL, 'clothes-shoes-accessories_wedding-formal-occasion_other-wedding-formal', 'Clothes, Shoes & Accessories :: Wedding & Formal Occasion :: Other Wedding & Formal', '', 0, 1, 0, '', '', ''),
  1192. (4742, 'Belts', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_belts', 'Clothes, Shoes & Accessories :: Women's Accessories :: Belts', '', 0, 1, 0, '', '', ''),
  1193. (4743, 'Belt Buckles', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_belt-buckles', 'Clothes, Shoes & Accessories :: Women's Accessories :: Belt Buckles', '', 0, 1, 0, '', '', ''),
  1194. (4744, 'Fascinators & Headpieces', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_fascinators-headpieces', 'Clothes, Shoes & Accessories :: Women's Accessories :: Fascinators & Headpieces', '', 0, 1, 0, '', '', ''),
  1195. (4745, 'Gloves & Mittens', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_gloves-mittens', 'Clothes, Shoes & Accessories :: Women's Accessories :: Gloves & Mittens', '', 0, 1, 0, '', '', ''),
  1196. (4746, 'Hair Accessories', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_hair-accessories', 'Clothes, Shoes & Accessories :: Women's Accessories :: Hair Accessories', '', 0, 1, 0, '', '', ''),
  1197. (4747, 'Handkerchiefs', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_handkerchiefs', 'Clothes, Shoes & Accessories :: Women's Accessories :: Handkerchiefs', '', 0, 1, 0, '', '', ''),
  1198. (4748, 'Hats', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_hats', 'Clothes, Shoes & Accessories :: Women's Accessories :: Hats', '', 0, 1, 0, '', '', ''),
  1199. (4749, 'ID & Document Holders', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_id-document-holders', 'Clothes, Shoes & Accessories :: Women's Accessories :: ID & Document Holders', '', 0, 1, 0, '', '', ''),
  1200. (4750, 'Keyrings', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_keyrings', 'Clothes, Shoes & Accessories :: Women's Accessories :: Keyrings', '', 0, 1, 0, '', '', ''),
  1201. (4751, 'Organisers & Diaries', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_organisers-diaries', 'Clothes, Shoes & Accessories :: Women's Accessories :: Organisers & Diaries', '', 0, 1, 0, '', '', ''),
  1202. (4752, 'Purses & Wallets', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_purses-wallets', 'Clothes, Shoes & Accessories :: Women's Accessories :: Purses & Wallets', '', 0, 1, 0, '', '', ''),
  1203. (4753, 'Scarves & Shawls', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_scarves-shawls', 'Clothes, Shoes & Accessories :: Women's Accessories :: Scarves & Shawls', '', 0, 1, 0, '', '', ''),
  1204. (4754, 'Shoe Charms & Jibbitz', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_shoe-charms-jibbitz', 'Clothes, Shoes & Accessories :: Women's Accessories :: Shoe Charms & Jibbitz', '', 0, 1, 0, '', '', ''),
  1205. (4755, 'Sunglasses & Eyewear', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_sunglasses-eyewear', 'Clothes, Shoes & Accessories :: Women's Accessories :: Sunglasses & Eyewear', '', 0, 1, 0, '', '', ''),
  1206. (4756, 'Ties', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_ties', 'Clothes, Shoes & Accessories :: Women's Accessories :: Ties', '', 0, 1, 0, '', '', ''),
  1207. (4757, 'Umbrellas', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_umbrellas', 'Clothes, Shoes & Accessories :: Women's Accessories :: Umbrellas', '', 0, 1, 0, '', '', ''),
  1208. (4758, 'Wigs, Extensions & Supplies', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_wigs-extensions-supplies', 'Clothes, Shoes & Accessories :: Women's Accessories :: Wigs, Extensions & Supplies', '', 0, 1, 0, '', '', ''),
  1209. (4759, 'Wristbands', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_wristbands', 'Clothes, Shoes & Accessories :: Women's Accessories :: Wristbands', '', 0, 1, 0, '', '', ''),
  1210. (4760, 'Accessory Sets', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_accessory-sets', 'Clothes, Shoes & Accessories :: Women's Accessories :: Accessory Sets', '', 0, 1, 0, '', '', ''),
  1211. (4761, 'Other Women's Accessories', 4657, 0, NULL, 'clothes-shoes-accessories_womens-accessories_other-womens-accessories', 'Clothes, Shoes & Accessories :: Women's Accessories :: Other Women's Accessories', '', 0, 1, 0, '', '', ''),
  1212. (4762, 'Activewear', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_activewear', 'Clothes, Shoes & Accessories :: Women's Clothing :: Activewear', '', 0, 1, 0, '', '', ''),
  1213. (4763, 'Coats & Jackets', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_coats-jackets', 'Clothes, Shoes & Accessories :: Women's Clothing :: Coats & Jackets', '', 0, 1, 0, '', '', ''),
  1214. (4764, 'Dresses', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_dresses', 'Clothes, Shoes & Accessories :: Women's Clothing :: Dresses', '', 0, 1, 0, '', '', ''),
  1215. (4765, 'Hoodies & Sweats', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_hoodies-sweats', 'Clothes, Shoes & Accessories :: Women's Clothing :: Hoodies & Sweats', '', 0, 1, 0, '', '', ''),
  1216. (4766, 'Jeans', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_jeans', 'Clothes, Shoes & Accessories :: Women's Clothing :: Jeans', '', 0, 1, 0, '', '', ''),
  1217. (4767, 'Jumpers & Cardigans', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_jumpers-cardigans', 'Clothes, Shoes & Accessories :: Women's Clothing :: Jumpers & Cardigans', '', 0, 1, 0, '', '', ''),
  1218. (4768, 'Jumpsuits & Playsuits', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_jumpsuits-playsuits', 'Clothes, Shoes & Accessories :: Women's Clothing :: Jumpsuits & Playsuits', '', 0, 1, 0, '', '', ''),
  1219. (4769, 'Leggings', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_leggings', 'Clothes, Shoes & Accessories :: Women's Clothing :: Leggings', '', 0, 1, 0, '', '', ''),
  1220. (4770, 'Shorts', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_shorts', 'Clothes, Shoes & Accessories :: Women's Clothing :: Shorts', '', 0, 1, 0, '', '', ''),
  1221. (4771, 'Skirts', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_skirts', 'Clothes, Shoes & Accessories :: Women's Clothing :: Skirts', '', 0, 1, 0, '', '', ''),
  1222. (4772, 'Suits & Tailoring', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_suits-tailoring', 'Clothes, Shoes & Accessories :: Women's Clothing :: Suits & Tailoring', '', 0, 1, 0, '', '', ''),
  1223. (4773, 'Swimwear', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_swimwear', 'Clothes, Shoes & Accessories :: Women's Clothing :: Swimwear', '', 0, 1, 0, '', '', ''),
  1224. (4774, 'T-Shirts', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_t-shirts', 'Clothes, Shoes & Accessories :: Women's Clothing :: T-Shirts', '', 0, 1, 0, '', '', ''),
  1225. (4775, 'Tops & Shirts', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_tops-shirts', 'Clothes, Shoes & Accessories :: Women's Clothing :: Tops & Shirts', '', 0, 1, 0, '', '', ''),
  1226. (4776, 'Trousers', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_trousers', 'Clothes, Shoes & Accessories :: Women's Clothing :: Trousers', '', 0, 1, 0, '', '', ''),
  1227. (4777, 'Waistcoats', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_waistcoats', 'Clothes, Shoes & Accessories :: Women's Clothing :: Waistcoats', '', 0, 1, 0, '', '', ''),
  1228. (4778, 'Maternity', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_maternity', 'Clothes, Shoes & Accessories :: Women's Clothing :: Maternity', '', 0, 1, 0, '', '', ''),
  1229. (4779, 'Hosiery & Socks', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_hosiery-socks', 'Clothes, Shoes & Accessories :: Women's Clothing :: Hosiery & Socks', '', 0, 1, 0, '', '', ''),
  1230. (4780, 'Lingerie & Nightwear', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_lingerie-nightwear', 'Clothes, Shoes & Accessories :: Women's Clothing :: Lingerie & Nightwear', '', 0, 1, 0, '', '', ''),
  1231. (4781, 'Bundles', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_bundles', 'Clothes, Shoes & Accessories :: Women's Clothing :: Bundles', '', 0, 1, 0, '', '', ''),
  1232. (4782, 'Other Women's Clothing', 4659, 0, NULL, 'clothes-shoes-accessories_womens-clothing_other-womens-clothing', 'Clothes, Shoes & Accessories :: Women's Clothing :: Other Women's Clothing', '', 0, 1, 0, '', '', ''),
  1233. (4783, 'Clutch Bags', 4658, 0, NULL, 'clothes-shoes-accessories_womens-handbags_clutch-bags', 'Clothes, Shoes & Accessories :: Women's Handbags :: Clutch Bags', '', 0, 1, 0, '', '', ''),
  1234. (4784, 'Messenger & Cross Body', 4658, 0, NULL, 'clothes-shoes-accessories_womens-handbags_messenger-cross-body', 'Clothes, Shoes & Accessories :: Women's Handbags :: Messenger & Cross Body', '', 0, 1, 0, '', '', ''),
  1235. (4785, 'Shoulder Bags', 4658, 0, NULL, 'clothes-shoes-accessories_womens-handbags_shoulder-bags', 'Clothes, Shoes & Accessories :: Women's Handbags :: Shoulder Bags', '', 0, 1, 0, '', '', ''),
  1236. (4786, 'Totes', 4658, 0, NULL, 'clothes-shoes-accessories_womens-handbags_totes', 'Clothes, Shoes & Accessories :: Women's Handbags :: Totes', '', 0, 1, 0, '', '', ''),
  1237. (4787, 'Boots', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_boots', 'Clothes, Shoes & Accessories :: Women's Shoes :: Boots', '', 0, 1, 0, '', '', ''),
  1238. (4788, 'Flats', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_flats', 'Clothes, Shoes & Accessories :: Women's Shoes :: Flats', '', 0, 1, 0, '', '', ''),
  1239. (4789, 'Heals', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_heals', 'Clothes, Shoes & Accessories :: Women's Shoes :: Heals', '', 0, 1, 0, '', '', ''),
  1240. (4790, 'Sandals & Beach Shoes', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_sandals-beach-shoes', 'Clothes, Shoes & Accessories :: Women's Shoes :: Sandals & Beach Shoes', '', 0, 1, 0, '', '', ''),
  1241. (4791, 'Slippers', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_slippers', 'Clothes, Shoes & Accessories :: Women's Shoes :: Slippers', '', 0, 1, 0, '', '', ''),
  1242. (4792, 'Trainers', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_trainers', 'Clothes, Shoes & Accessories :: Women's Shoes :: Trainers', '', 0, 1, 0, '', '', ''),
  1243. (4793, 'Other Women's Shoes', 4660, 0, NULL, 'clothes-shoes-accessories_womens-shoes_other-womens-shoes', 'Clothes, Shoes & Accessories :: Women's Shoes :: Other Women's Shoes', '', 0, 1, 0, '', '', ''),
  1244. (4794, 'Africa', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_africa', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Africa', '', 0, 1, 0, '', '', ''),
  1245. (4795, 'East Asia', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_east-asia', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: East Asia', '', 0, 1, 0, '', '', ''),
  1246. (4796, 'Europe', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_europe', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Europe', '', 0, 1, 0, '', '', ''),
  1247. (4797, 'Latin America', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_latin-america', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Latin America', '', 0, 1, 0, '', '', ''),
  1248. (4798, 'Native American', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_native-american', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Native American', '', 0, 1, 0, '', '', ''),
  1249. (4799, 'South & Central Asia', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_south-central-asia', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: South & Central Asia', '', 0, 1, 0, '', '', ''),
  1250. (4800, 'Southeast Asia & Oceania', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_southeast-asia-oceania', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Southeast Asia & Oceania', '', 0, 1, 0, '', '', ''),
  1251. (4801, 'Southwest Asia/Middle East', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_southwest-asia-middle-east', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Southwest Asia/Middle East', '', 0, 1, 0, '', '', ''),
  1252. (4802, 'Other Traditional Clothing', 4661, 0, NULL, 'clothes-shoes-accessories_world-traditional-clothing_other-traditional-clothing', 'Clothes, Shoes & Accessories :: World & Traditional Clothing :: Other Traditional Clothing', '', 0, 1, 0, '', '', ''),
  1253. (4803, 'Banknotes', 3685, 0, NULL, 'coins_banknotes', 'Coins :: Banknotes', '', 0, 1, 0, '', '', ''),
  1254. (4804, 'Bullion/Bars', 3685, 0, NULL, 'coins_bullion-bars', 'Coins :: Bullion/Bars', '', 0, 1, 0, '', '', ''),
  1255. (4805, 'Coins', 3685, 0, NULL, 'coins_coins', 'Coins :: Coins', '', 0, 1, 0, '', '', ''),
  1256. (4806, 'Historical Medals/ Medallions', 3685, 0, NULL, 'coins_historical-medals-medallions', 'Coins :: Historical Medals/ Medallions', '', 0, 1, 0, '', '', ''),
  1257. (4807, 'Share Certificates/ Bonds', 3685, 0, NULL, 'coins_share-certificates-bonds', 'Coins :: Share Certificates/ Bonds', '', 0, 1, 0, '', '', ''),
  1258. (4808, 'Tokens', 3685, 0, NULL, 'coins_tokens', 'Coins :: Tokens', '', 0, 1, 0, '', '', ''),
  1259. (4809, 'Virtual Currency', 3685, 0, NULL, 'coins_virtual-currency', 'Coins :: Virtual Currency', '', 0, 1, 0, '', '', ''),
  1260. (4810, 'British', 4803, 0, NULL, 'coins_banknotes_british', 'Coins :: Banknotes :: British', '', 0, 1, 0, '', '', ''),
  1261. (4811, 'Irish', 4803, 0, NULL, 'coins_banknotes_irish', 'Coins :: Banknotes :: Irish', '', 0, 1, 0, '', '', ''),
  1262. (4812, 'European', 4803, 0, NULL, 'coins_banknotes_european', 'Coins :: Banknotes :: European', '', 0, 1, 0, '', '', ''),
  1263. (4813, 'World', 4803, 0, NULL, 'coins_banknotes_world', 'Coins :: Banknotes :: World', '', 0, 1, 0, '', '', ''),
  1264. (4814, 'Novelty/ Replica Banknotes', 4803, 0, NULL, 'coins_banknotes_novelty-replica-banknotes', 'Coins :: Banknotes :: Novelty/ Replica Banknotes', '', 0, 1, 0, '', '', ''),
  1265. (4815, 'Collections/ Bulk Lots', 4803, 0, NULL, 'coins_banknotes_collections-bulk-lots', 'Coins :: Banknotes :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  1266. (4816, 'Gold Bullion', 4804, 0, NULL, 'coins_bullion-bars_gold-bullion', 'Coins :: Bullion/Bars :: Gold Bullion', '', 0, 1, 0, '', '', ''),
  1267. (4817, 'Platinum Bullion', 4804, 0, NULL, 'coins_bullion-bars_platinum-bullion', 'Coins :: Bullion/Bars :: Platinum Bullion', '', 0, 1, 0, '', '', ''),
  1268. (4818, 'Palladium Bullion', 4804, 0, NULL, 'coins_bullion-bars_palladium-bullion', 'Coins :: Bullion/Bars :: Palladium Bullion', '', 0, 1, 0, '', '', ''),
  1269. (4819, 'Silver Bullion', 4804, 0, NULL, 'coins_bullion-bars_silver-bullion', 'Coins :: Bullion/Bars :: Silver Bullion', '', 0, 1, 0, '', '', ''),
  1270. (4820, 'Other Metal Bullion', 4804, 0, NULL, 'coins_bullion-bars_other-metal-bullion', 'Coins :: Bullion/Bars :: Other Metal Bullion', '', 0, 1, 0, '', '', ''),
  1271. (4821, 'Ancient', 4805, 0, NULL, 'coins_coins_ancient', 'Coins :: Coins :: Ancient', '', 0, 1, 0, '', '', ''),
  1272. (4822, 'British', 4805, 0, NULL, 'coins_coins_british', 'Coins :: Coins :: British', '', 0, 1, 0, '', '', ''),
  1273. (4823, 'European', 4805, 0, NULL, 'coins_coins_european', 'Coins :: Coins :: European', '', 0, 1, 0, '', '', ''),
  1274. (4824, 'Ireland', 4805, 0, NULL, 'coins_coins_ireland', 'Coins :: Coins :: Ireland', '', 0, 1, 0, '', '', ''),
  1275. (4825, 'United States', 4805, 0, NULL, 'coins_coins_united-states', 'Coins :: Coins :: United States', '', 0, 1, 0, '', '', ''),
  1276. (4826, 'World', 4805, 0, NULL, 'coins_coins_world', 'Coins :: Coins :: World', '', 0, 1, 0, '', '', ''),
  1277. (4827, 'Novelty', 4805, 0, NULL, 'coins_coins_novelty', 'Coins :: Coins :: Novelty', '', 0, 1, 0, '', '', ''),
  1278. (4828, 'Publications', 4805, 0, NULL, 'coins_coins_publications', 'Coins :: Coins :: Publications', '', 0, 1, 0, '', '', ''),
  1279. (4829, 'Supplies/ Equipment', 4805, 0, NULL, 'coins_coins_supplies-equipment', 'Coins :: Coins :: Supplies/ Equipment', '', 0, 1, 0, '', '', ''),
  1280. (4830, 'Collections/ Bulk Lots', 4805, 0, NULL, 'coins_coins_collections-bulk-lots', 'Coins :: Coins :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  1281. (4831, 'British', 4806, 0, NULL, 'coins_historical-medals-medallions_british', 'Coins :: Historical Medals/ Medallions :: British', '', 0, 1, 0, '', '', ''),
  1282. (4832, 'European', 4806, 0, NULL, 'coins_historical-medals-medallions_european', 'Coins :: Historical Medals/ Medallions :: European', '', 0, 1, 0, '', '', ''),
  1283. (4833, 'World', 4806, 0, NULL, 'coins_historical-medals-medallions_world', 'Coins :: Historical Medals/ Medallions :: World', '', 0, 1, 0, '', '', ''),
  1284. (4834, 'Collections/ Bulk Lots', 4806, 0, NULL, 'coins_historical-medals-medallions_collections-bulk-lots', 'Coins :: Historical Medals/ Medallions :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  1285. (4835, 'British', 4807, 0, NULL, 'coins_share-certificates-bonds_british', 'Coins :: Share Certificates/ Bonds :: British', '', 0, 1, 0, '', '', ''),
  1286. (4836, 'European', 4807, 0, NULL, 'coins_share-certificates-bonds_european', 'Coins :: Share Certificates/ Bonds :: European', '', 0, 1, 0, '', '', ''),
  1287. (4837, 'World', 4807, 0, NULL, 'coins_share-certificates-bonds_world', 'Coins :: Share Certificates/ Bonds :: World', '', 0, 1, 0, '', '', ''),
  1288. (4838, 'Collections/ Bulk Lots', 4807, 0, NULL, 'coins_share-certificates-bonds_collections-bulk-lots', 'Coins :: Share Certificates/ Bonds :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  1289. (4839, 'British', 4808, 0, NULL, 'coins_tokens_british', 'Coins :: Tokens :: British', '', 0, 1, 0, '', '', ''),
  1290. (4840, 'European', 4808, 0, NULL, 'coins_tokens_european', 'Coins :: Tokens :: European', '', 0, 1, 0, '', '', ''),
  1291. (4841, 'World', 4808, 0, NULL, 'coins_tokens_world', 'Coins :: Tokens :: World', '', 0, 1, 0, '', '', ''),
  1292. (4842, 'Collections/ Bulk Lots', 4808, 0, NULL, 'coins_tokens_collections-bulk-lots', 'Coins :: Tokens :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  1293. (4843, 'Currency', 4809, 0, NULL, 'coins_virtual-currency_currency', 'Coins :: Virtual Currency :: Currency', '', 0, 1, 0, '', '', ''),
  1294. (4844, 'Miners', 4809, 0, NULL, 'coins_virtual-currency_miners', 'Coins :: Virtual Currency :: Miners', '', 0, 1, 0, '', '', ''),
  1295. (4845, 'Mining Contracts', 4809, 0, NULL, 'coins_virtual-currency_mining-contracts', 'Coins :: Virtual Currency :: Mining Contracts', '', 0, 1, 0, '', '', ''),
  1296. (4846, 'Educational', 3711, 0, NULL, 'everything-else_educational', 'Everything Else :: Educational', '', 0, 1, 0, '', '', ''),
  1297. (4847, 'Information Products', 3711, 0, NULL, 'everything-else_information-products', 'Everything Else :: Information Products', '', 0, 1, 0, '', '', ''),
  1298. (4848, 'Item Based Services', 3711, 0, NULL, 'everything-else_item-based-services', 'Everything Else :: Item Based Services', '', 0, 1, 0, '', '', ''),
  1299. (4849, 'Promotions', 3711, 0, NULL, 'everything-else_promotions', 'Everything Else :: Promotions', '', 0, 1, 0, '', '', ''),
  1300. (4850, 'Other', 3711, 0, NULL, 'everything-else_other', 'Everything Else :: Other', '', 0, 1, 0, '', '', ''),
  1301. (4851, 'Credit', 4848, 0, NULL, 'everything-else_item-based-services_credit', 'Everything Else :: Item Based Services :: Credit', '', 0, 1, 0, '', '', ''),
  1302. (4852, 'Installations & Support', 4848, 0, NULL, 'everything-else_item-based-services_installations-support', 'Everything Else :: Item Based Services :: Installations & Support', '', 0, 1, 0, '', '', ''),
  1303. (4853, 'Warranties & Insurance', 4848, 0, NULL, 'everything-else_item-based-services_warranties-insurance', 'Everything Else :: Item Based Services :: Warranties & Insurance', '', 0, 1, 0, '', '', ''),
  1304. (4854, 'Other Item Services', 4848, 0, NULL, 'everything-else_item-based-services_other-item-services', 'Everything Else :: Item Based Services :: Other Item Services', '', 0, 1, 0, '', '', ''),
  1305. (4855, 'Antiques & Art', 3710, 0, NULL, 'wholesale-job-lots_antiques-art', 'Wholesale & Job Lots :: Antiques & Art', '', 0, 1, 0, '', '', ''),
  1306. (4856, 'Automotive', 3710, 0, NULL, 'wholesale-job-lots_automotive', 'Wholesale & Job Lots :: Automotive', '', 0, 1, 0, '', '', ''),
  1307. (4857, 'Baby', 3710, 0, NULL, 'wholesale-job-lots_baby', 'Wholesale & Job Lots :: Baby', '', 0, 1, 0, '', '', ''),
  1308. (4858, 'Business, Office & Industrial', 3710, 0, NULL, 'wholesale-job-lots_business-office-industrial', 'Wholesale & Job Lots :: Business, Office & Industrial', '', 0, 1, 0, '', '', ''),
  1309. (4859, 'Clothes, Shoes & Accessories', 3710, 0, NULL, 'wholesale-job-lots_clothes-shoes-accessories', 'Wholesale & Job Lots :: Clothes, Shoes & Accessories', '', 0, 1, 0, '', '', ''),
  1310. (4860, 'Collectables', 3710, 0, NULL, 'wholesale-job-lots_collectables', 'Wholesale & Job Lots :: Collectables', '', 0, 1, 0, '', '', ''),
  1311. (4861, 'Computing', 3710, 0, NULL, 'wholesale-job-lots_computing', 'Wholesale & Job Lots :: Computing', '', 0, 1, 0, '', '', ''),
  1312. (4862, 'Consumer Electronics', 3710, 0, NULL, 'wholesale-job-lots_consumer-electronics', 'Wholesale & Job Lots :: Consumer Electronics', '', 0, 1, 0, '', '', ''),
  1313. (4863, 'Crafts', 3710, 0, NULL, 'wholesale-job-lots_crafts', 'Wholesale & Job Lots :: Crafts', '', 0, 1, 0, '', '', ''),
  1314. (4864, 'Dolls & Bears', 3710, 0, NULL, 'wholesale-job-lots_dolls-bears', 'Wholesale & Job Lots :: Dolls & Bears', '', 0, 1, 0, '', '', ''),
  1315. (4865, 'DVDs, Films & TV', 3710, 0, NULL, 'wholesale-job-lots_dvds-films-tv', 'Wholesale & Job Lots :: DVDs, Films & TV', '', 0, 1, 0, '', '', ''),
  1316. (4866, 'Greeting Cards/ Stationery', 3710, 0, NULL, 'wholesale-job-lots_greeting-cards-stationery', 'Wholesale & Job Lots :: Greeting Cards/ Stationery', '', 0, 1, 0, '', '', ''),
  1317. (4867, 'Health & Beauty', 3710, 0, NULL, 'wholesale-job-lots_health-beauty', 'Wholesale & Job Lots :: Health & Beauty', '', 0, 1, 0, '', '', ''),
  1318. (4868, 'Home & Garden', 3710, 0, NULL, 'wholesale-job-lots_home-garden', 'Wholesale & Job Lots :: Home & Garden', '', 0, 1, 0, '', '', ''),
  1319. (4869, 'Jewellery & Watches', 3710, 0, NULL, 'wholesale-job-lots_jewellery-watches', 'Wholesale & Job Lots :: Jewellery & Watches', '', 0, 1, 0, '', '', ''),
  1320. (4870, 'Mobile & Home Phones', 3710, 0, NULL, 'wholesale-job-lots_mobile-home-phones', 'Wholesale & Job Lots :: Mobile & Home Phones', '', 0, 1, 0, '', '', ''),
  1321. (4871, 'Music', 3710, 0, NULL, 'wholesale-job-lots_music', 'Wholesale & Job Lots :: Music', '', 0, 1, 0, '', '', ''),
  1322. (4872, 'Musical Instruments', 3710, 0, NULL, 'wholesale-job-lots_musical-instruments', 'Wholesale & Job Lots :: Musical Instruments', '', 0, 1, 0, '', '', ''),
  1323. (4873, 'Novelty Items', 3710, 0, NULL, 'wholesale-job-lots_novelty-items', 'Wholesale & Job Lots :: Novelty Items', '', 0, 1, 0, '', '', ''),
  1324. (4874, 'PC & Video Gaming', 3710, 0, NULL, 'wholesale-job-lots_pc-video-gaming', 'Wholesale & Job Lots :: PC & Video Gaming', '', 0, 1, 0, '', '', ''),
  1325. (4875, 'Photography', 3710, 0, NULL, 'wholesale-job-lots_photography', 'Wholesale & Job Lots :: Photography', '', 0, 1, 0, '', '', ''),
  1326. (4876, 'Pottery, Porcelain & Glass', 3710, 0, NULL, 'wholesale-job-lots_pottery-porcelain-glass', 'Wholesale & Job Lots :: Pottery, Porcelain & Glass', '', 0, 1, 0, '', '', ''),
  1327. (4877, 'Sporting Goods', 3710, 0, NULL, 'wholesale-job-lots_sporting-goods', 'Wholesale & Job Lots :: Sporting Goods', '', 0, 1, 0, '', '', ''),
  1328. (4878, 'Sports Memorabilia', 3710, 0, NULL, 'wholesale-job-lots_sports-memorabilia', 'Wholesale & Job Lots :: Sports Memorabilia', '', 0, 1, 0, '', '', ''),
  1329. (4879, 'Tickets & Travel', 3710, 0, NULL, 'wholesale-job-lots_tickets-travel', 'Wholesale & Job Lots :: Tickets & Travel', '', 0, 1, 0, '', '', ''),
  1330. (4880, 'Toys & Games', 3710, 0, NULL, 'wholesale-job-lots_toys-games', 'Wholesale & Job Lots :: Toys & Games', '', 0, 1, 0, '', '', ''),
  1331. (4881, 'Mixed Lots', 3710, 0, NULL, 'wholesale-job-lots_mixed-lots', 'Wholesale & Job Lots :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  1332. (4882, 'Other Wholesale & Job Lots', 3710, 0, NULL, 'wholesale-job-lots_other-wholesale-job-lots', 'Wholesale & Job Lots :: Other Wholesale & Job Lots', '', 0, 1, 0, '', '', ''),
  1333. (4883, 'Consoles', 3709, 0, NULL, 'video-games-consoles_consoles', 'Video Games & Consoles :: Consoles', '', 0, 1, 0, '', '', ''),
  1334. (4884, 'Games', 3709, 0, NULL, 'video-games-consoles_games', 'Video Games & Consoles :: Games', '', 0, 1, 0, '', '', ''),
  1335. (4885, 'Accessories', 3709, 0, NULL, 'video-games-consoles_accessories', 'Video Games & Consoles :: Accessories', '', 0, 1, 0, '', '', ''),
  1336. (4886, 'Coin-Operated Gaming', 3709, 0, NULL, 'video-games-consoles_coin-operated-gaming', 'Video Games & Consoles :: Coin-Operated Gaming', '', 0, 1, 0, '', '', ''),
  1337. (4887, 'Gaming Merchandise', 3709, 0, NULL, 'video-games-consoles_gaming-merchandise', 'Video Games & Consoles :: Gaming Merchandise', '', 0, 1, 0, '', '', ''),
  1338. (4888, 'Replacement Parts & Tools', 3709, 0, NULL, 'video-games-consoles_replacement-parts-tools', 'Video Games & Consoles :: Replacement Parts & Tools', '', 0, 1, 0, '', '', ''),
  1339. (4889, 'Strategy & Cheat Guides', 3709, 0, NULL, 'video-games-consoles_strategy-cheat-guides', 'Video Games & Consoles :: Strategy & Cheat Guides', '', 0, 1, 0, '', '', ''),
  1340. (4890, 'Gaming & Time Cards', 3709, 0, NULL, 'video-games-consoles_gaming-time-cards', 'Video Games & Consoles :: Gaming & Time Cards', '', 0, 1, 0, '', '', ''),
  1341. (4891, 'Other Video Games & Consoles', 3709, 0, NULL, 'video-games-consoles_other-video-games-consoles', 'Video Games & Consoles :: Other Video Games & Consoles', '', 0, 1, 0, '', '', ''),
  1342. (4892, 'Accessory Bundles', 4885, 0, NULL, 'video-games-consoles_accessories_accessory-bundles', 'Video Games & Consoles :: Accessories :: Accessory Bundles', '', 0, 1, 0, '', '', ''),
  1343. (4893, 'Batteries', 4885, 0, NULL, 'video-games-consoles_accessories_batteries', 'Video Games & Consoles :: Accessories :: Batteries', '', 0, 1, 0, '', '', ''),
  1344. (4894, 'Cables & Adapters', 4885, 0, NULL, 'video-games-consoles_accessories_cables-adapters', 'Video Games & Consoles :: Accessories :: Cables & Adapters', '', 0, 1, 0, '', '', ''),
  1345. (4895, 'Cases, Covers & Bags', 4885, 0, NULL, 'video-games-consoles_accessories_cases-covers-bags', 'Video Games & Consoles :: Accessories :: Cases, Covers & Bags', '', 0, 1, 0, '', '', ''),
  1346. (4896, 'Chargers & Docks', 4885, 0, NULL, 'video-games-consoles_accessories_chargers-docks', 'Video Games & Consoles :: Accessories :: Chargers & Docks', '', 0, 1, 0, '', '', ''),
  1347. (4897, 'Controllers', 4885, 0, NULL, 'video-games-consoles_accessories_controllers', 'Video Games & Consoles :: Accessories :: Controllers', '', 0, 1, 0, '', '', ''),
  1348. (4898, 'Cooling Devices', 4885, 0, NULL, 'video-games-consoles_accessories_cooling-devices', 'Video Games & Consoles :: Accessories :: Cooling Devices', '', 0, 1, 0, '', '', ''),
  1349. (4899, 'Faceplates & Stickers', 4885, 0, NULL, 'video-games-consoles_accessories_faceplates-stickers', 'Video Games & Consoles :: Accessories :: Faceplates & Stickers', '', 0, 1, 0, '', '', ''),
  1350. (4900, 'Hard Drives', 4885, 0, NULL, 'video-games-consoles_accessories_hard-drives', 'Video Games & Consoles :: Accessories :: Hard Drives', '', 0, 1, 0, '', '', ''),
  1351. (4901, 'Headsets', 4885, 0, NULL, 'video-games-consoles_accessories_headsets', 'Video Games & Consoles :: Accessories :: Headsets', '', 0, 1, 0, '', '', ''),
  1352. (4902, 'Keyboards & Keypads', 4885, 0, NULL, 'video-games-consoles_accessories_keyboards-keypads', 'Video Games & Consoles :: Accessories :: Keyboards & Keypads', '', 0, 1, 0, '', '', ''),
  1353. (4903, 'Memory Cards', 4885, 0, NULL, 'video-games-consoles_accessories_memory-cards', 'Video Games & Consoles :: Accessories :: Memory Cards', '', 0, 1, 0, '', '', ''),
  1354. (4904, 'Motion Sensors & Cameras', 4885, 0, NULL, 'video-games-consoles_accessories_motion-sensors-cameras', 'Video Games & Consoles :: Accessories :: Motion Sensors & Cameras', '', 0, 1, 0, '', '', ''),
  1355. (4905, 'Screen Protectors', 4885, 0, NULL, 'video-games-consoles_accessories_screen-protectors', 'Video Games & Consoles :: Accessories :: Screen Protectors', '', 0, 1, 0, '', '', ''),
  1356. (4906, 'Styluses', 4885, 0, NULL, 'video-games-consoles_accessories_styluses', 'Video Games & Consoles :: Accessories :: Styluses', '', 0, 1, 0, '', '', ''),
  1357. (4907, 'Other Accessories', 4885, 0, NULL, 'video-games-consoles_accessories_other-accessories', 'Video Games & Consoles :: Accessories :: Other Accessories', '', 0, 1, 0, '', '', ''),
  1358. (4908, 'Microsoft Xbox', 4883, 0, NULL, 'video-games-consoles_consoles_microsoft-xbox', 'Video Games & Consoles :: Consoles :: Microsoft Xbox', '', 0, 1, 0, '', '', ''),
  1359. (4909, 'Microsoft Xbox 360', 4883, 0, NULL, 'video-games-consoles_consoles_microsoft-xbox-360', 'Video Games & Consoles :: Consoles :: Microsoft Xbox 360', '', 0, 1, 0, '', '', ''),
  1360. (4910, 'Microsoft Xbox One', 4883, 0, NULL, 'video-games-consoles_consoles_microsoft-xbox-one', 'Video Games & Consoles :: Consoles :: Microsoft Xbox One', '', 0, 1, 0, '', '', ''),
  1361. (4911, 'Nintendo DS', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-ds', 'Video Games & Consoles :: Consoles :: Nintendo DS', '', 0, 1, 0, '', '', ''),
  1362. (4912, 'Nintendo 3DS', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-3ds', 'Video Games & Consoles :: Consoles :: Nintendo 3DS', '', 0, 1, 0, '', '', ''),
  1363. (4913, 'Nintendo Game Boy Advance', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-game-boy-advance', 'Video Games & Consoles :: Consoles :: Nintendo Game Boy Advance', '', 0, 1, 0, '', '', ''),
  1364. (4914, 'Nintendo GameCube', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-gamecube', 'Video Games & Consoles :: Consoles :: Nintendo GameCube', '', 0, 1, 0, '', '', ''),
  1365. (4915, 'Nintendo Wii', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-wii', 'Video Games & Consoles :: Consoles :: Nintendo Wii', '', 0, 1, 0, '', '', ''),
  1366. (4916, 'Sega Dreamcast', 4883, 0, NULL, 'video-games-consoles_consoles_sega-dreamcast', 'Video Games & Consoles :: Consoles :: Sega Dreamcast', '', 0, 1, 0, '', '', ''),
  1367. (4917, 'Sony PlayStation 2', 4883, 0, NULL, 'video-games-consoles_consoles_sony-playstation-2', 'Video Games & Consoles :: Consoles :: Sony PlayStation 2', '', 0, 1, 0, '', '', ''),
  1368. (4918, 'Sony PlayStation 3', 4883, 0, NULL, 'video-games-consoles_consoles_sony-playstation-3', 'Video Games & Consoles :: Consoles :: Sony PlayStation 3', '', 0, 1, 0, '', '', ''),
  1369. (4919, 'Sony PlayStation 4', 4883, 0, NULL, 'video-games-consoles_consoles_sony-playstation-4', 'Video Games & Consoles :: Consoles :: Sony PlayStation 4', '', 0, 1, 0, '', '', ''),
  1370. (4920, 'Sony PSP', 4883, 0, NULL, 'video-games-consoles_consoles_sony-psp', 'Video Games & Consoles :: Consoles :: Sony PSP', '', 0, 1, 0, '', '', ''),
  1371. (4921, '3DO', 4883, 0, NULL, 'video-games-consoles_consoles_3do', 'Video Games & Consoles :: Consoles :: 3DO', '', 0, 1, 0, '', '', ''),
  1372. (4922, 'Atari 2600', 4883, 0, NULL, 'video-games-consoles_consoles_atari-2600', 'Video Games & Consoles :: Consoles :: Atari 2600', '', 0, 1, 0, '', '', ''),
  1373. (4923, 'Atari 5200', 4883, 0, NULL, 'video-games-consoles_consoles_atari-5200', 'Video Games & Consoles :: Consoles :: Atari 5200', '', 0, 1, 0, '', '', ''),
  1374. (4924, 'Atari 7800', 4883, 0, NULL, 'video-games-consoles_consoles_atari-7800', 'Video Games & Consoles :: Consoles :: Atari 7800', '', 0, 1, 0, '', '', ''),
  1375. (4925, 'Atari Jaguar', 4883, 0, NULL, 'video-games-consoles_consoles_atari-jaguar', 'Video Games & Consoles :: Consoles :: Atari Jaguar', '', 0, 1, 0, '', '', ''),
  1376. (4926, 'Atari Lynx', 4883, 0, NULL, 'video-games-consoles_consoles_atari-lynx', 'Video Games & Consoles :: Consoles :: Atari Lynx', '', 0, 1, 0, '', '', ''),
  1377. (4927, 'ColecoVision', 4883, 0, NULL, 'video-games-consoles_consoles_colecovision', 'Video Games & Consoles :: Consoles :: ColecoVision', '', 0, 1, 0, '', '', ''),
  1378. (4928, 'Intellivision', 4883, 0, NULL, 'video-games-consoles_consoles_intellivision', 'Video Games & Consoles :: Consoles :: Intellivision', '', 0, 1, 0, '', '', ''),
  1379. (4929, 'Neo Geo AES', 4883, 0, NULL, 'video-games-consoles_consoles_neo-geo-aes', 'Video Games & Consoles :: Consoles :: Neo Geo AES', '', 0, 1, 0, '', '', ''),
  1380. (4930, 'Neo Geo CD', 4883, 0, NULL, 'video-games-consoles_consoles_neo-geo-cd', 'Video Games & Consoles :: Consoles :: Neo Geo CD', '', 0, 1, 0, '', '', ''),
  1381. (4931, 'Neo Geo Pocket', 4883, 0, NULL, 'video-games-consoles_consoles_neo-geo-pocket', 'Video Games & Consoles :: Consoles :: Neo Geo Pocket', '', 0, 1, 0, '', '', ''),
  1382. (4932, 'Neo Geo Pocket Color', 4883, 0, NULL, 'video-games-consoles_consoles_neo-geo-pocket-color', 'Video Games & Consoles :: Consoles :: Neo Geo Pocket Color', '', 0, 1, 0, '', '', ''),
  1383. (4933, 'Nintendo 64', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-64', 'Video Games & Consoles :: Consoles :: Nintendo 64', '', 0, 1, 0, '', '', ''),
  1384. (4934, 'Nintendo Gameboy', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-gameboy', 'Video Games & Consoles :: Consoles :: Nintendo Gameboy', '', 0, 1, 0, '', '', ''),
  1385. (4935, 'Nintendo Gameboy Color', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-gameboy-color', 'Video Games & Consoles :: Consoles :: Nintendo Gameboy Color', '', 0, 1, 0, '', '', ''),
  1386. (4936, 'Nintendo NES', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-nes', 'Video Games & Consoles :: Consoles :: Nintendo NES', '', 0, 1, 0, '', '', ''),
  1387. (4937, 'Nintendo SNES', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-snes', 'Video Games & Consoles :: Consoles :: Nintendo SNES', '', 0, 1, 0, '', '', ''),
  1388. (4938, 'Philips CD-i', 4883, 0, NULL, 'video-games-consoles_consoles_philips-cd-i', 'Video Games & Consoles :: Consoles :: Philips CD-i', '', 0, 1, 0, '', '', ''),
  1389. (4939, 'Sega CD - Mega Drive Add-on', 4883, 0, NULL, 'video-games-consoles_consoles_sega-cd-mega-drive-add-on', 'Video Games & Consoles :: Consoles :: Sega CD - Mega Drive Add-on', '', 0, 1, 0, '', '', ''),
  1390. (4940, 'Sega Game Gear', 4883, 0, NULL, 'video-games-consoles_consoles_sega-game-gear', 'Video Games & Consoles :: Consoles :: Sega Game Gear', '', 0, 1, 0, '', '', ''),
  1391. (4941, 'Sega Master System', 4883, 0, NULL, 'video-games-consoles_consoles_sega-master-system', 'Video Games & Consoles :: Consoles :: Sega Master System', '', 0, 1, 0, '', '', ''),
  1392. (4942, 'Sega Mega Drive', 4883, 0, NULL, 'video-games-consoles_consoles_sega-mega-drive', 'Video Games & Consoles :: Consoles :: Sega Mega Drive', '', 0, 1, 0, '', '', ''),
  1393. (4943, 'Sega Saturn', 4883, 0, NULL, 'video-games-consoles_consoles_sega-saturn', 'Video Games & Consoles :: Consoles :: Sega Saturn', '', 0, 1, 0, '', '', ''),
  1394. (4944, 'Sony PlayStation 1', 4883, 0, NULL, 'video-games-consoles_consoles_sony-playstation-1', 'Video Games & Consoles :: Consoles :: Sony PlayStation 1', '', 0, 1, 0, '', '', ''),
  1395. (4945, 'TurboGrafx-16 (PC Engine)', 4883, 0, NULL, 'video-games-consoles_consoles_turbografx-16-pc-engine', 'Video Games & Consoles :: Consoles :: TurboGrafx-16 (PC Engine)', '', 0, 1, 0, '', '', ''),
  1396. (4946, 'Vectrex', 4883, 0, NULL, 'video-games-consoles_consoles_vectrex', 'Video Games & Consoles :: Consoles :: Vectrex', '', 0, 1, 0, '', '', ''),
  1397. (4947, 'Sony PlayStation Vita', 4883, 0, NULL, 'video-games-consoles_consoles_sony-playstation-vita', 'Video Games & Consoles :: Consoles :: Sony PlayStation Vita', '', 0, 1, 0, '', '', ''),
  1398. (4948, 'Nintendo Wii U', 4883, 0, NULL, 'video-games-consoles_consoles_nintendo-wii-u', 'Video Games & Consoles :: Consoles :: Nintendo Wii U', '', 0, 1, 0, '', '', ''),
  1399. (4949, 'Not specified', 4883, 0, NULL, 'video-games-consoles_consoles_not-specified', 'Video Games & Consoles :: Consoles :: Not specified', '', 0, 1, 0, '', '', ''),
  1400. (4950, 'Apple Mac', 4884, 0, NULL, 'video-games-consoles_games_apple-mac', 'Video Games & Consoles :: Games :: Apple Mac', '', 0, 1, 0, '', '', ''),
  1401. (4951, 'Commodore 64', 4884, 0, NULL, 'video-games-consoles_games_commodore-64', 'Video Games & Consoles :: Games :: Commodore 64', '', 0, 1, 0, '', '', ''),
  1402. (4952, 'Commodore Amiga', 4884, 0, NULL, 'video-games-consoles_games_commodore-amiga', 'Video Games & Consoles :: Games :: Commodore Amiga', '', 0, 1, 0, '', '', ''),
  1403. (4953, 'Microsoft Xbox', 4884, 0, NULL, 'video-games-consoles_games_microsoft-xbox', 'Video Games & Consoles :: Games :: Microsoft Xbox', '', 0, 1, 0, '', '', ''),
  1404. (4954, 'Microsoft Xbox 360', 4884, 0, NULL, 'video-games-consoles_games_microsoft-xbox-360', 'Video Games & Consoles :: Games :: Microsoft Xbox 360', '', 0, 1, 0, '', '', ''),
  1405. (4955, 'Microsoft Xbox One', 4884, 0, NULL, 'video-games-consoles_games_microsoft-xbox-one', 'Video Games & Consoles :: Games :: Microsoft Xbox One', '', 0, 1, 0, '', '', ''),
  1406. (4956, 'Nintendo 3DS', 4884, 0, NULL, 'video-games-consoles_games_nintendo-3ds', 'Video Games & Consoles :: Games :: Nintendo 3DS', '', 0, 1, 0, '', '', ''),
  1407. (4957, 'Nintendo 64', 4884, 0, NULL, 'video-games-consoles_games_nintendo-64', 'Video Games & Consoles :: Games :: Nintendo 64', '', 0, 1, 0, '', '', ''),
  1408. (4958, 'Nintendo DS', 4884, 0, NULL, 'video-games-consoles_games_nintendo-ds', 'Video Games & Consoles :: Games :: Nintendo DS', '', 0, 1, 0, '', '', ''),
  1409. (4959, 'Nintendo Gameboy', 4884, 0, NULL, 'video-games-consoles_games_nintendo-gameboy', 'Video Games & Consoles :: Games :: Nintendo Gameboy', '', 0, 1, 0, '', '', ''),
  1410. (4960, 'Nintendo Gameboy Advance', 4884, 0, NULL, 'video-games-consoles_games_nintendo-gameboy-advance', 'Video Games & Consoles :: Games :: Nintendo Gameboy Advance', '', 0, 1, 0, '', '', ''),
  1411. (4961, 'Nintendo Gameboy Color', 4884, 0, NULL, 'video-games-consoles_games_nintendo-gameboy-color', 'Video Games & Consoles :: Games :: Nintendo Gameboy Color', '', 0, 1, 0, '', '', ''),
  1412. (4962, 'Nintendo GameCube', 4884, 0, NULL, 'video-games-consoles_games_nintendo-gamecube', 'Video Games & Consoles :: Games :: Nintendo GameCube', '', 0, 1, 0, '', '', ''),
  1413. (4963, 'Nintendo NES', 4884, 0, NULL, 'video-games-consoles_games_nintendo-nes', 'Video Games & Consoles :: Games :: Nintendo NES', '', 0, 1, 0, '', '', ''),
  1414. (4964, 'Nintendo SNES', 4884, 0, NULL, 'video-games-consoles_games_nintendo-snes', 'Video Games & Consoles :: Games :: Nintendo SNES', '', 0, 1, 0, '', '', ''),
  1415. (4965, 'Nintendo Wii', 4884, 0, NULL, 'video-games-consoles_games_nintendo-wii', 'Video Games & Consoles :: Games :: Nintendo Wii', '', 0, 1, 0, '', '', ''),
  1416. (4966, 'Sega Dreamcast', 4884, 0, NULL, 'video-games-consoles_games_sega-dreamcast', 'Video Games & Consoles :: Games :: Sega Dreamcast', '', 0, 1, 0, '', '', ''),
  1417. (4967, 'Sega Master System', 4884, 0, NULL, 'video-games-consoles_games_sega-master-system', 'Video Games & Consoles :: Games :: Sega Master System', '', 0, 1, 0, '', '', ''),
  1418. (4968, 'Sega Mega Drive', 4884, 0, NULL, 'video-games-consoles_games_sega-mega-drive', 'Video Games & Consoles :: Games :: Sega Mega Drive', '', 0, 1, 0, '', '', ''),
  1419. (4969, 'Sony PlayStation 1', 4884, 0, NULL, 'video-games-consoles_games_sony-playstation-1', 'Video Games & Consoles :: Games :: Sony PlayStation 1', '', 0, 1, 0, '', '', ''),
  1420. (4970, 'Sony PlayStation 2', 4884, 0, NULL, 'video-games-consoles_games_sony-playstation-2', 'Video Games & Consoles :: Games :: Sony PlayStation 2', '', 0, 1, 0, '', '', ''),
  1421. (4971, 'Sony PlayStation 3', 4884, 0, NULL, 'video-games-consoles_games_sony-playstation-3', 'Video Games & Consoles :: Games :: Sony PlayStation 3', '', 0, 1, 0, '', '', ''),
  1422. (4972, 'Sony PlayStation 4', 4884, 0, NULL, 'video-games-consoles_games_sony-playstation-4', 'Video Games & Consoles :: Games :: Sony PlayStation 4', '', 0, 1, 0, '', '', ''),
  1423. (4973, 'Sony PS Vita', 4884, 0, NULL, 'video-games-consoles_games_sony-ps-vita', 'Video Games & Consoles :: Games :: Sony PS Vita', '', 0, 1, 0, '', '', ''),
  1424. (4974, 'Sony PSP', 4884, 0, NULL, 'video-games-consoles_games_sony-psp', 'Video Games & Consoles :: Games :: Sony PSP', '', 0, 1, 0, '', '', ''),
  1425. (4975, 'Acorn BBC Micro', 4884, 0, NULL, 'video-games-consoles_games_acorn-bbc-micro', 'Video Games & Consoles :: Games :: Acorn BBC Micro', '', 0, 1, 0, '', '', ''),
  1426. (4976, 'Acorn Electron', 4884, 0, NULL, 'video-games-consoles_games_acorn-electron', 'Video Games & Consoles :: Games :: Acorn Electron', '', 0, 1, 0, '', '', ''),
  1427. (4977, 'Atari 2600', 4884, 0, NULL, 'video-games-consoles_games_atari-2600', 'Video Games & Consoles :: Games :: Atari 2600', '', 0, 1, 0, '', '', ''),
  1428. (4978, 'Atari 5200', 4884, 0, NULL, 'video-games-consoles_games_atari-5200', 'Video Games & Consoles :: Games :: Atari 5200', '', 0, 1, 0, '', '', ''),
  1429. (4979, 'Atari 7800', 4884, 0, NULL, 'video-games-consoles_games_atari-7800', 'Video Games & Consoles :: Games :: Atari 7800', '', 0, 1, 0, '', '', ''),
  1430. (4980, 'Atari Jaguar', 4884, 0, NULL, 'video-games-consoles_games_atari-jaguar', 'Video Games & Consoles :: Games :: Atari Jaguar', '', 0, 1, 0, '', '', ''),
  1431. (4981, 'Atari Lynx', 4884, 0, NULL, 'video-games-consoles_games_atari-lynx', 'Video Games & Consoles :: Games :: Atari Lynx', '', 0, 1, 0, '', '', ''),
  1432. (4982, 'Bandai Wonderswan', 4884, 0, NULL, 'video-games-consoles_games_bandai-wonderswan', 'Video Games & Consoles :: Games :: Bandai Wonderswan', '', 0, 1, 0, '', '', ''),
  1433. (4983, 'ColecoVision', 4884, 0, NULL, 'video-games-consoles_games_colecovision', 'Video Games & Consoles :: Games :: ColecoVision', '', 0, 1, 0, '', '', ''),
  1434. (4984, 'Fairchild Channel F', 4884, 0, NULL, 'video-games-consoles_games_fairchild-channel-f', 'Video Games & Consoles :: Games :: Fairchild Channel F', '', 0, 1, 0, '', '', ''),
  1435. (4985, 'Gizmondo', 4884, 0, NULL, 'video-games-consoles_games_gizmondo', 'Video Games & Consoles :: Games :: Gizmondo', '', 0, 1, 0, '', '', ''),
  1436. (4986, 'Magnavox Odyssey', 4884, 0, NULL, 'video-games-consoles_games_magnavox-odyssey', 'Video Games & Consoles :: Games :: Magnavox Odyssey', '', 0, 1, 0, '', '', ''),
  1437. (4987, 'Philips Videopac G7000', 4884, 0, NULL, 'video-games-consoles_games_philips-videopac-g7000', 'Video Games & Consoles :: Games :: Philips Videopac G7000', '', 0, 1, 0, '', '', ''),
  1438. (4988, 'Mattel Intellivision', 4884, 0, NULL, 'video-games-consoles_games_mattel-intellivision', 'Video Games & Consoles :: Games :: Mattel Intellivision', '', 0, 1, 0, '', '', ''),
  1439. (4989, 'Milton Bradley Microvision', 4884, 0, NULL, 'video-games-consoles_games_milton-bradley-microvision', 'Video Games & Consoles :: Games :: Milton Bradley Microvision', '', 0, 1, 0, '', '', ''),
  1440. (4990, 'Milton Bradley/GCE Vectrex', 4884, 0, NULL, 'video-games-consoles_games_milton-bradley-gce-vectrex', 'Video Games & Consoles :: Games :: Milton Bradley/GCE Vectrex', '', 0, 1, 0, '', '', ''),
  1441. (4991, 'NEC TurboGrafx-16 (PC Engine)', 4884, 0, NULL, 'video-games-consoles_games_nec-turbografx-16-pc-engine', 'Video Games & Consoles :: Games :: NEC TurboGrafx-16 (PC Engine)', '', 0, 1, 0, '', '', ''),
  1442. (4992, 'NEC TurboGrafx-CD/TurboDuo', 4884, 0, NULL, 'video-games-consoles_games_nec-turbografx-cd-turboduo', 'Video Games & Consoles :: Games :: NEC TurboGrafx-CD/TurboDuo', '', 0, 1, 0, '', '', ''),
  1443. (4993, 'Nintendo Virtual Boy', 4884, 0, NULL, 'video-games-consoles_games_nintendo-virtual-boy', 'Video Games & Consoles :: Games :: Nintendo Virtual Boy', '', 0, 1, 0, '', '', ''),
  1444. (4994, 'Nokia N-Gage', 4884, 0, NULL, 'video-games-consoles_games_nokia-n-gage', 'Video Games & Consoles :: Games :: Nokia N-Gage', '', 0, 1, 0, '', '', ''),
  1445. (4995, 'Panasonic 3DO', 4884, 0, NULL, 'video-games-consoles_games_panasonic-3do', 'Video Games & Consoles :: Games :: Panasonic 3DO', '', 0, 1, 0, '', '', ''),
  1446. (4996, 'Philips CD-i', 4884, 0, NULL, 'video-games-consoles_games_philips-cd-i', 'Video Games & Consoles :: Games :: Philips CD-i', '', 0, 1, 0, '', '', ''),
  1447. (4997, 'Sega 32X', 4884, 0, NULL, 'video-games-consoles_games_sega-32x', 'Video Games & Consoles :: Games :: Sega 32X', '', 0, 1, 0, '', '', ''),
  1448. (4998, 'Sega Game Gear', 4884, 0, NULL, 'video-games-consoles_games_sega-game-gear', 'Video Games & Consoles :: Games :: Sega Game Gear', '', 0, 1, 0, '', '', ''),
  1449. (4999, 'Sega Mega-CD', 4884, 0, NULL, 'video-games-consoles_games_sega-mega-cd', 'Video Games & Consoles :: Games :: Sega Mega-CD', '', 0, 1, 0, '', '', ''),
  1450. (5000, 'Sega Saturn', 4884, 0, NULL, 'video-games-consoles_games_sega-saturn', 'Video Games & Consoles :: Games :: Sega Saturn', '', 0, 1, 0, '', '', ''),
  1451. (5001, 'Sinclair ZX Spectrum', 4884, 0, NULL, 'video-games-consoles_games_sinclair-zx-spectrum', 'Video Games & Consoles :: Games :: Sinclair ZX Spectrum', '', 0, 1, 0, '', '', ''),
  1452. (5002, 'SNK Neo Geo AES', 4884, 0, NULL, 'video-games-consoles_games_snk-neo-geo-aes', 'Video Games & Consoles :: Games :: SNK Neo Geo AES', '', 0, 1, 0, '', '', ''),
  1453. (5003, 'SNK Neo Geo CD', 4884, 0, NULL, 'video-games-consoles_games_snk-neo-geo-cd', 'Video Games & Consoles :: Games :: SNK Neo Geo CD', '', 0, 1, 0, '', '', ''),
  1454. (5004, 'SNK Neo Geo Pocket', 4884, 0, NULL, 'video-games-consoles_games_snk-neo-geo-pocket', 'Video Games & Consoles :: Games :: SNK Neo Geo Pocket', '', 0, 1, 0, '', '', ''),
  1455. (5005, 'SNK Neo Geo Pocket Color', 4884, 0, NULL, 'video-games-consoles_games_snk-neo-geo-pocket-color', 'Video Games & Consoles :: Games :: SNK Neo Geo Pocket Color', '', 0, 1, 0, '', '', ''),
  1456. (5006, 'Sony MSX', 4884, 0, NULL, 'video-games-consoles_games_sony-msx', 'Video Games & Consoles :: Games :: Sony MSX', '', 0, 1, 0, '', '', ''),
  1457. (5007, 'Sony MSX 2', 4884, 0, NULL, 'video-games-consoles_games_sony-msx-2', 'Video Games & Consoles :: Games :: Sony MSX 2', '', 0, 1, 0, '', '', ''),
  1458. (5008, 'Amstrad CPC', 4884, 0, NULL, 'video-games-consoles_games_amstrad-cpc', 'Video Games & Consoles :: Games :: Amstrad CPC', '', 0, 1, 0, '', '', ''),
  1459. (5009, 'Amstrad GX4000', 4884, 0, NULL, 'video-games-consoles_games_amstrad-gx4000', 'Video Games & Consoles :: Games :: Amstrad GX4000', '', 0, 1, 0, '', '', ''),
  1460. (5010, 'Amstrad PCW', 4884, 0, NULL, 'video-games-consoles_games_amstrad-pcw', 'Video Games & Consoles :: Games :: Amstrad PCW', '', 0, 1, 0, '', '', ''),
  1461. (5011, 'Atari Jaguar CD', 4884, 0, NULL, 'video-games-consoles_games_atari-jaguar-cd', 'Video Games & Consoles :: Games :: Atari Jaguar CD', '', 0, 1, 0, '', '', ''),
  1462. (5012, 'Atari XEGS', 4884, 0, NULL, 'video-games-consoles_games_atari-xegs', 'Video Games & Consoles :: Games :: Atari XEGS', '', 0, 1, 0, '', '', ''),
  1463. (5013, 'Commodore CDTV', 4884, 0, NULL, 'video-games-consoles_games_commodore-cdtv', 'Video Games & Consoles :: Games :: Commodore CDTV', '', 0, 1, 0, '', '', ''),
  1464. (5014, 'NEC PC-FX', 4884, 0, NULL, 'video-games-consoles_games_nec-pc-fx', 'Video Games & Consoles :: Games :: NEC PC-FX', '', 0, 1, 0, '', '', ''),
  1465. (5015, 'NEC SuperGrafx', 4884, 0, NULL, 'video-games-consoles_games_nec-supergrafx', 'Video Games & Consoles :: Games :: NEC SuperGrafx', '', 0, 1, 0, '', '', ''),
  1466. (5016, 'Nintendo Famicom Disk System', 4884, 0, NULL, 'video-games-consoles_games_nintendo-famicom-disk-system', 'Video Games & Consoles :: Games :: Nintendo Famicom Disk System', '', 0, 1, 0, '', '', ''),
  1467. (5017, 'Sega Pico', 4884, 0, NULL, 'video-games-consoles_games_sega-pico', 'Video Games & Consoles :: Games :: Sega Pico', '', 0, 1, 0, '', '', ''),
  1468. (5018, 'Sega SC-3000', 4884, 0, NULL, 'video-games-consoles_games_sega-sc-3000', 'Video Games & Consoles :: Games :: Sega SC-3000', '', 0, 1, 0, '', '', ''),
  1469. (5019, 'V-Tech V.Smile', 4884, 0, NULL, 'video-games-consoles_games_v-tech-vsmile', 'Video Games & Consoles :: Games :: V-Tech V.Smile', '', 0, 1, 0, '', '', ''),
  1470. (5020, 'Atari ST', 4884, 0, NULL, 'video-games-consoles_games_atari-st', 'Video Games & Consoles :: Games :: Atari ST', '', 0, 1, 0, '', '', ''),
  1471. (5021, 'Nintendo Wii U', 4884, 0, NULL, 'video-games-consoles_games_nintendo-wii-u', 'Video Games & Consoles :: Games :: Nintendo Wii U', '', 0, 1, 0, '', '', ''),
  1472. (5022, 'Not specified', 4884, 0, NULL, 'video-games-consoles_games_not-specified', 'Video Games & Consoles :: Games :: Not specified', '', 0, 1, 0, '', '', ''),
  1473. (5023, 'Arcade Gaming', 4886, 0, NULL, 'video-games-consoles_coin-operated-gaming_arcade-gaming', 'Video Games & Consoles :: Coin-Operated Gaming :: Arcade Gaming', '', 0, 1, 0, '', '', ''),
  1474. (5024, 'Fruit Machines', 4886, 0, NULL, 'video-games-consoles_coin-operated-gaming_fruit-machines', 'Video Games & Consoles :: Coin-Operated Gaming :: Fruit Machines', '', 0, 1, 0, '', '', ''),
  1475. (5025, 'Pinball Machines', 4886, 0, NULL, 'video-games-consoles_coin-operated-gaming_pinball-machines', 'Video Games & Consoles :: Coin-Operated Gaming :: Pinball Machines', '', 0, 1, 0, '', '', ''),
  1476. (5026, 'Other Coin-Operated Gaming', 4886, 0, NULL, 'video-games-consoles_coin-operated-gaming_other-coin-operated-gaming', 'Video Games & Consoles :: Coin-Operated Gaming :: Other Coin-Operated Gaming', '', 0, 1, 0, '', '', ''),
  1477. (5027, 'Advertising', 3686, 0, NULL, 'collectables_advertising', 'Collectables :: Advertising', '', 0, 1, 0, '', '', ''),
  1478. (5028, 'Animals', 3686, 0, NULL, 'collectables_animals', 'Collectables :: Animals', '', 0, 1, 0, '', '', ''),
  1479. (5029, 'Animation', 3686, 0, NULL, 'collectables_animation', 'Collectables :: Animation', '', 0, 1, 0, '', '', ''),
  1480. (5030, 'Autographs', 3686, 0, NULL, 'collectables_autographs', 'Collectables :: Autographs', '', 0, 1, 0, '', '', ''),
  1481. (5031, 'Badges/ Patches', 3686, 0, NULL, 'collectables_badges-patches', 'Collectables :: Badges/ Patches', '', 0, 1, 0, '', '', ''),
  1482. (5032, 'Bottles/ Pots', 3686, 0, NULL, 'collectables_bottles-pots', 'Collectables :: Bottles/ Pots', '', 0, 1, 0, '', '', ''),
  1483. (5033, 'Breweriana', 3686, 0, NULL, 'collectables_breweriana', 'Collectables :: Breweriana', '', 0, 1, 0, '', '', ''),
  1484. (5034, 'Casino', 3686, 0, NULL, 'collectables_casino', 'Collectables :: Casino', '', 0, 1, 0, '', '', ''),
  1485. (5035, 'Cigarette/ Tea/ Gum Cards', 3686, 0, NULL, 'collectables_cigarette-tea-gum-cards', 'Collectables :: Cigarette/ Tea/ Gum Cards', '', 0, 1, 0, '', '', ''),
  1486. (5036, 'Clocks', 3686, 0, NULL, 'collectables_clocks', 'Collectables :: Clocks', '', 0, 1, 0, '', '', ''),
  1487. (5037, 'Decorative Ornaments/ Plates', 3686, 0, NULL, 'collectables_decorative-ornaments-plates', 'Collectables :: Decorative Ornaments/ Plates', '', 0, 1, 0, '', '', ''),
  1488. (5038, 'Disneyana', 3686, 0, NULL, 'collectables_disneyana', 'Collectables :: Disneyana', '', 0, 1, 0, '', '', ''),
  1489. (5039, 'Ethnographic', 3686, 0, NULL, 'collectables_ethnographic', 'Collectables :: Ethnographic', '', 0, 1, 0, '', '', ''),
  1490. (5040, 'Fantasy/ Myth/ Magic', 3686, 0, NULL, 'collectables_fantasy-myth-magic', 'Collectables :: Fantasy/ Myth/ Magic', '', 0, 1, 0, '', '', ''),
  1491. (5041, 'Flags', 3686, 0, NULL, 'collectables_flags', 'Collectables :: Flags', '', 0, 1, 0, '', '', ''),
  1492. (5042, 'Household', 3686, 0, NULL, 'collectables_household', 'Collectables :: Household', '', 0, 1, 0, '', '', ''),
  1493. (5043, 'Jukeboxes', 3686, 0, NULL, 'collectables_jukeboxes', 'Collectables :: Jukeboxes', '', 0, 1, 0, '', '', ''),
  1494. (5044, 'Keyrings', 3686, 0, NULL, 'collectables_keyrings', 'Collectables :: Keyrings', '', 0, 1, 0, '', '', ''),
  1495. (5045, 'Kitchenalia', 3686, 0, NULL, 'collectables_kitchenalia', 'Collectables :: Kitchenalia', '', 0, 1, 0, '', '', ''),
  1496. (5046, 'Masonic', 3686, 0, NULL, 'collectables_masonic', 'Collectables :: Masonic', '', 0, 1, 0, '', '', ''),
  1497. (5047, 'Memorabilia', 3686, 0, NULL, 'collectables_memorabilia', 'Collectables :: Memorabilia', '', 0, 1, 0, '', '', ''),
  1498. (5048, 'Metalware', 3686, 0, NULL, 'collectables_metalware', 'Collectables :: Metalware', '', 0, 1, 0, '', '', ''),
  1499. (5049, 'Militaria', 3686, 0, NULL, 'collectables_militaria', 'Collectables :: Militaria', '', 0, 1, 0, '', '', ''),
  1500. (5050, 'Moneyboxes/ Piggy Banks', 3686, 0, NULL, 'collectables_moneyboxes-piggy-banks', 'Collectables :: Moneyboxes/ Piggy Banks', '', 0, 1, 0, '', '', ''),
  1501. (5051, 'Paper & Ephemera', 3686, 0, NULL, 'collectables_paper-ephemera', 'Collectables :: Paper & Ephemera', '', 0, 1, 0, '', '', ''),
  1502. (5052, 'Pens & Writing Equipment', 3686, 0, NULL, 'collectables_pens-writing-equipment', 'Collectables :: Pens & Writing Equipment', '', 0, 1, 0, '', '', ''),
  1503. (5053, 'Phone Cards', 3686, 0, NULL, 'collectables_phone-cards', 'Collectables :: Phone Cards', '', 0, 1, 0, '', '', ''),
  1504. (5054, 'Photographic Images', 3686, 0, NULL, 'collectables_photographic-images', 'Collectables :: Photographic Images', '', 0, 1, 0, '', '', ''),
  1505. (5055, 'Postcards', 3686, 0, NULL, 'collectables_postcards', 'Collectables :: Postcards', '', 0, 1, 0, '', '', ''),
  1506. (5056, 'Radio/ Television/ Telephony', 3686, 0, NULL, 'collectables_radio-television-telephony', 'Collectables :: Radio/ Television/ Telephony', '', 0, 1, 0, '', '', ''),
  1507. (5057, 'Religion/ Spirituality', 3686, 0, NULL, 'collectables_religion-spirituality', 'Collectables :: Religion/ Spirituality', '', 0, 1, 0, '', '', ''),
  1508. (5058, 'Rocks/ Fossils/ Minerals', 3686, 0, NULL, 'collectables_rocks-fossils-minerals', 'Collectables :: Rocks/ Fossils/ Minerals', '', 0, 1, 0, '', '', ''),
  1509. (5059, 'Royalty', 3686, 0, NULL, 'collectables_royalty', 'Collectables :: Royalty', '', 0, 1, 0, '', '', ''),
  1510. (5060, 'Science Fiction', 3686, 0, NULL, 'collectables_science-fiction', 'Collectables :: Science Fiction', '', 0, 1, 0, '', '', ''),
  1511. (5061, 'Scientific', 3686, 0, NULL, 'collectables_scientific', 'Collectables :: Scientific', '', 0, 1, 0, '', '', ''),
  1512. (5062, 'Sewing/ Fabric/ Textiles', 3686, 0, NULL, 'collectables_sewing-fabric-textiles', 'Collectables :: Sewing/ Fabric/ Textiles', '', 0, 1, 0, '', '', ''),
  1513. (5063, 'Theatre/ Opera/ Ballet', 3686, 0, NULL, 'collectables_theatre-opera-ballet', 'Collectables :: Theatre/ Opera/ Ballet', '', 0, 1, 0, '', '', ''),
  1514. (5064, 'Tobacciana/ Smoking', 3686, 0, NULL, 'collectables_tobacciana-smoking', 'Collectables :: Tobacciana/ Smoking', '', 0, 1, 0, '', '', ''),
  1515. (5065, 'Tools & Hardware', 3686, 0, NULL, 'collectables_tools-hardware', 'Collectables :: Tools & Hardware', '', 0, 1, 0, '', '', ''),
  1516. (5066, 'Trading Cards/ CCG', 3686, 0, NULL, 'collectables_trading-cards-ccg', 'Collectables :: Trading Cards/ CCG', '', 0, 1, 0, '', '', ''),
  1517. (5067, 'Trains/ Railway Models', 3686, 0, NULL, 'collectables_trains-railway-models', 'Collectables :: Trains/ Railway Models', '', 0, 1, 0, '', '', ''),
  1518. (5068, 'Transportation', 3686, 0, NULL, 'collectables_transportation', 'Collectables :: Transportation', '', 0, 1, 0, '', '', ''),
  1519. (5069, 'Vanity/ Perfume/ Grooming', 3686, 0, NULL, 'collectables_vanity-perfume-grooming', 'Collectables :: Vanity/ Perfume/ Grooming', '', 0, 1, 0, '', '', ''),
  1520. (5070, 'Vintage/ Retro', 3686, 0, NULL, 'collectables_vintage-retro', 'Collectables :: Vintage/ Retro', '', 0, 1, 0, '', '', ''),
  1521. (5071, 'Weird Stuff', 3686, 0, NULL, 'collectables_weird-stuff', 'Collectables :: Weird Stuff', '', 0, 1, 0, '', '', ''),
  1522. (5072, 'Other Collectables', 3686, 0, NULL, 'collectables_other-collectables', 'Collectables :: Other Collectables', '', 0, 1, 0, '', '', ''),
  1523. (5073, 'Chemist', 5027, 0, NULL, 'collectables_advertising_chemist', 'Collectables :: Advertising :: Chemist', '', 0, 1, 0, '', '', ''),
  1524. (5074, 'Distillery/ Spirits', 5027, 0, NULL, 'collectables_advertising_distillery-spirits', 'Collectables :: Advertising :: Distillery/ Spirits', '', 0, 1, 0, '', '', ''),
  1525. (5075, 'Drinks', 5027, 0, NULL, 'collectables_advertising_drinks', 'Collectables :: Advertising :: Drinks', '', 0, 1, 0, '', '', ''),
  1526. (5076, 'Fashion/ Clothing', 5027, 0, NULL, 'collectables_advertising_fashion-clothing', 'Collectables :: Advertising :: Fashion/ Clothing', '', 0, 1, 0, '', '', ''),
  1527. (5077, 'Food', 5027, 0, NULL, 'collectables_advertising_food', 'Collectables :: Advertising :: Food', '', 0, 1, 0, '', '', ''),
  1528. (5078, 'Kitchen/ Home', 5027, 0, NULL, 'collectables_advertising_kitchen-home', 'Collectables :: Advertising :: Kitchen/ Home', '', 0, 1, 0, '', '', ''),
  1529. (5079, 'Signs', 5027, 0, NULL, 'collectables_advertising_signs', 'Collectables :: Advertising :: Signs', '', 0, 1, 0, '', '', ''),
  1530. (5080, 'Transportation', 5027, 0, NULL, 'collectables_advertising_transportation', 'Collectables :: Advertising :: Transportation', '', 0, 1, 0, '', '', ''),
  1531. (5081, 'Other Advertising', 5027, 0, NULL, 'collectables_advertising_other-advertising', 'Collectables :: Advertising :: Other Advertising', '', 0, 1, 0, '', '', ''),
  1532. (5082, 'Birds', 5028, 0, NULL, 'collectables_animals_birds', 'Collectables :: Animals :: Birds', '', 0, 1, 0, '', '', ''),
  1533. (5083, 'Cats', 5028, 0, NULL, 'collectables_animals_cats', 'Collectables :: Animals :: Cats', '', 0, 1, 0, '', '', ''),
  1534. (5084, 'Dinosaurs', 5028, 0, NULL, 'collectables_animals_dinosaurs', 'Collectables :: Animals :: Dinosaurs', '', 0, 1, 0, '', '', ''),
  1535. (5085, 'Dogs', 5028, 0, NULL, 'collectables_animals_dogs', 'Collectables :: Animals :: Dogs', '', 0, 1, 0, '', '', ''),
  1536. (5086, 'Farm/ Countryside', 5028, 0, NULL, 'collectables_animals_farm-countryside', 'Collectables :: Animals :: Farm/ Countryside', '', 0, 1, 0, '', '', ''),
  1537. (5087, 'Fish/ Marine', 5028, 0, NULL, 'collectables_animals_fish-marine', 'Collectables :: Animals :: Fish/ Marine', '', 0, 1, 0, '', '', ''),
  1538. (5088, 'Insects/ Butterflies', 5028, 0, NULL, 'collectables_animals_insects-butterflies', 'Collectables :: Animals :: Insects/ Butterflies', '', 0, 1, 0, '', '', ''),
  1539. (5089, 'Taxidermy', 5028, 0, NULL, 'collectables_animals_taxidermy', 'Collectables :: Animals :: Taxidermy', '', 0, 1, 0, '', '', ''),
  1540. (5090, 'Wild Animals', 5028, 0, NULL, 'collectables_animals_wild-animals', 'Collectables :: Animals :: Wild Animals', '', 0, 1, 0, '', '', ''),
  1541. (5091, 'Other Animals', 5028, 0, NULL, 'collectables_animals_other-animals', 'Collectables :: Animals :: Other Animals', '', 0, 1, 0, '', '', ''),
  1542. (5092, 'Animation Art', 5029, 0, NULL, 'collectables_animation_animation-art', 'Collectables :: Animation :: Animation Art', '', 0, 1, 0, '', '', ''),
  1543. (5093, 'Animation Characters', 5029, 0, NULL, 'collectables_animation_animation-characters', 'Collectables :: Animation :: Animation Characters', '', 0, 1, 0, '', '', ''),
  1544. (5094, 'Japanese/ Anime', 5029, 0, NULL, 'collectables_animation_japanese-anime', 'Collectables :: Animation :: Japanese/ Anime', '', 0, 1, 0, '', '', ''),
  1545. (5095, 'Other Animation', 5029, 0, NULL, 'collectables_animation_other-animation', 'Collectables :: Animation :: Other Animation', '', 0, 1, 0, '', '', ''),
  1546. (5096, 'Original (Certified)', 5030, 0, NULL, 'collectables_autographs_original-certified', 'Collectables :: Autographs :: Original (Certified)', '', 0, 1, 0, '', '', ''),
  1547. (5097, 'Original (Uncertified)', 5030, 0, NULL, 'collectables_autographs_original-uncertified', 'Collectables :: Autographs :: Original (Uncertified)', '', 0, 1, 0, '', '', ''),
  1548. (5098, 'Pre-Printed', 5030, 0, NULL, 'collectables_autographs_pre-printed', 'Collectables :: Autographs :: Pre-Printed', '', 0, 1, 0, '', '', ''),
  1549. (5099, 'Advertising Badges', 5031, 0, NULL, 'collectables_badges-patches_advertising-badges', 'Collectables :: Badges/ Patches :: Advertising Badges', '', 0, 1, 0, '', '', ''),
  1550. (5100, 'Celebrity Badges', 5031, 0, NULL, 'collectables_badges-patches_celebrity-badges', 'Collectables :: Badges/ Patches :: Celebrity Badges', '', 0, 1, 0, '', '', ''),
  1551. (5101, 'Character Badges', 5031, 0, NULL, 'collectables_badges-patches_character-badges', 'Collectables :: Badges/ Patches :: Character Badges', '', 0, 1, 0, '', '', ''),
  1552. (5102, 'Club/ Association Badges', 5031, 0, NULL, 'collectables_badges-patches_club-association-badges', 'Collectables :: Badges/ Patches :: Club/ Association Badges', '', 0, 1, 0, '', '', ''),
  1553. (5103, 'Enamel Badges', 5031, 0, NULL, 'collectables_badges-patches_enamel-badges', 'Collectables :: Badges/ Patches :: Enamel Badges', '', 0, 1, 0, '', '', ''),
  1554. (5104, 'Golly Badges', 5031, 0, NULL, 'collectables_badges-patches_golly-badges', 'Collectables :: Badges/ Patches :: Golly Badges', '', 0, 1, 0, '', '', ''),
  1555. (5105, 'Medical/ Nursing/ Red Cross', 5031, 0, NULL, 'collectables_badges-patches_medical-nursing-red-cross', 'Collectables :: Badges/ Patches :: Medical/ Nursing/ Red Cross', '', 0, 1, 0, '', '', ''),
  1556. (5106, 'Military Badges', 5031, 0, NULL, 'collectables_badges-patches_military-badges', 'Collectables :: Badges/ Patches :: Military Badges', '', 0, 1, 0, '', '', ''),
  1557. (5107, 'National Badges', 5031, 0, NULL, 'collectables_badges-patches_national-badges', 'Collectables :: Badges/ Patches :: National Badges', '', 0, 1, 0, '', '', ''),
  1558. (5108, 'Novelty/ Message Badges', 5031, 0, NULL, 'collectables_badges-patches_novelty-message-badges', 'Collectables :: Badges/ Patches :: Novelty/ Message Badges', '', 0, 1, 0, '', '', ''),
  1559. (5109, 'Pewter Badges', 5031, 0, NULL, 'collectables_badges-patches_pewter-badges', 'Collectables :: Badges/ Patches :: Pewter Badges', '', 0, 1, 0, '', '', ''),
  1560. (5110, 'Sport Badges', 5031, 0, NULL, 'collectables_badges-patches_sport-badges', 'Collectables :: Badges/ Patches :: Sport Badges', '', 0, 1, 0, '', '', ''),
  1561. (5111, 'Other Badges', 5031, 0, NULL, 'collectables_badges-patches_other-badges', 'Collectables :: Badges/ Patches :: Other Badges', '', 0, 1, 0, '', '', ''),
  1562. (5112, 'Patches', 5031, 0, NULL, 'collectables_badges-patches_patches', 'Collectables :: Badges/ Patches :: Patches', '', 0, 1, 0, '', '', ''),
  1563. (5113, 'Beer', 5032, 0, NULL, 'collectables_bottles-pots_beer', 'Collectables :: Bottles/ Pots :: Beer', '', 0, 1, 0, '', '', ''),
  1564. (5114, 'Chemist', 5032, 0, NULL, 'collectables_bottles-pots_chemist', 'Collectables :: Bottles/ Pots :: Chemist', '', 0, 1, 0, '', '', ''),
  1565. (5115, 'Codd/ Patents/ Minerals', 5032, 0, NULL, 'collectables_bottles-pots_codd-patents-minerals', 'Collectables :: Bottles/ Pots :: Codd/ Patents/ Minerals', '', 0, 1, 0, '', '', ''),
  1566. (5116, 'Gin', 5032, 0, NULL, 'collectables_bottles-pots_gin', 'Collectables :: Bottles/ Pots :: Gin', '', 0, 1, 0, '', '', ''),
  1567. (5117, 'Ginger Beer/ Stout', 5032, 0, NULL, 'collectables_bottles-pots_ginger-beer-stout', 'Collectables :: Bottles/ Pots :: Ginger Beer/ Stout', '', 0, 1, 0, '', '', ''),
  1568. (5118, 'Household', 5032, 0, NULL, 'collectables_bottles-pots_household', 'Collectables :: Bottles/ Pots :: Household', '', 0, 1, 0, '', '', ''),
  1569. (5119, 'Ink', 5032, 0, NULL, 'collectables_bottles-pots_ink', 'Collectables :: Bottles/ Pots :: Ink', '', 0, 1, 0, '', '', ''),
  1570. (5120, 'Medicine/ Cures', 5032, 0, NULL, 'collectables_bottles-pots_medicine-cures', 'Collectables :: Bottles/ Pots :: Medicine/ Cures', '', 0, 1, 0, '', '', ''),
  1571. (5121, 'Milk', 5032, 0, NULL, 'collectables_bottles-pots_milk', 'Collectables :: Bottles/ Pots :: Milk', '', 0, 1, 0, '', '', ''),
  1572. (5122, 'Miniatures', 5032, 0, NULL, 'collectables_bottles-pots_miniatures', 'Collectables :: Bottles/ Pots :: Miniatures', '', 0, 1, 0, '', '', ''),
  1573. (5123, 'Perfume', 5032, 0, NULL, 'collectables_bottles-pots_perfume', 'Collectables :: Bottles/ Pots :: Perfume', '', 0, 1, 0, '', '', ''),
  1574. (5124, 'Poison', 5032, 0, NULL, 'collectables_bottles-pots_poison', 'Collectables :: Bottles/ Pots :: Poison', '', 0, 1, 0, '', '', ''),
  1575. (5125, 'Whiskey', 5032, 0, NULL, 'collectables_bottles-pots_whiskey', 'Collectables :: Bottles/ Pots :: Whiskey', '', 0, 1, 0, '', '', ''),
  1576. (5126, 'Wine/ Black Glass', 5032, 0, NULL, 'collectables_bottles-pots_wine-black-glass', 'Collectables :: Bottles/ Pots :: Wine/ Black Glass', '', 0, 1, 0, '', '', ''),
  1577. (5127, 'Cream/ Preserve Pots', 5032, 0, NULL, 'collectables_bottles-pots_cream-preserve-pots', 'Collectables :: Bottles/ Pots :: Cream/ Preserve Pots', '', 0, 1, 0, '', '', ''),
  1578. (5128, 'Pot Lids/ Ointment Pots', 5032, 0, NULL, 'collectables_bottles-pots_pot-lids-ointment-pots', 'Collectables :: Bottles/ Pots :: Pot Lids/ Ointment Pots', '', 0, 1, 0, '', '', ''),
  1579. (5129, 'Other Bottles/ Pots', 5032, 0, NULL, 'collectables_bottles-pots_other-bottles-pots', 'Collectables :: Bottles/ Pots :: Other Bottles/ Pots', '', 0, 1, 0, '', '', ''),
  1580. (5130, 'Babycham', 5033, 0, NULL, 'collectables_breweriana_babycham', 'Collectables :: Breweriana :: Babycham', '', 0, 1, 0, '', '', ''),
  1581. (5131, 'Guinness', 5033, 0, NULL, 'collectables_breweriana_guinness', 'Collectables :: Breweriana :: Guinness', '', 0, 1, 0, '', '', ''),
  1582. (5132, 'Jack Daniels', 5033, 0, NULL, 'collectables_breweriana_jack-daniels', 'Collectables :: Breweriana :: Jack Daniels', '', 0, 1, 0, '', '', ''),
  1583. (5133, 'Advertising', 5033, 0, NULL, 'collectables_breweriana_advertising', 'Collectables :: Breweriana :: Advertising', '', 0, 1, 0, '', '', ''),
  1584. (5134, 'Ashtrays', 5033, 0, NULL, 'collectables_breweriana_ashtrays', 'Collectables :: Breweriana :: Ashtrays', '', 0, 1, 0, '', '', ''),
  1585. (5135, 'Badges/ Pins', 5033, 0, NULL, 'collectables_breweriana_badges-pins', 'Collectables :: Breweriana :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  1586. (5136, 'Bar Towels', 5033, 0, NULL, 'collectables_breweriana_bar-towels', 'Collectables :: Breweriana :: Bar Towels', '', 0, 1, 0, '', '', ''),
  1587. (5137, 'Beer Mats/ Coasters', 5033, 0, NULL, 'collectables_breweriana_beer-mats-coasters', 'Collectables :: Breweriana :: Beer Mats/ Coasters', '', 0, 1, 0, '', '', ''),
  1588. (5138, 'Bottle Openers', 5033, 0, NULL, 'collectables_breweriana_bottle-openers', 'Collectables :: Breweriana :: Bottle Openers', '', 0, 1, 0, '', '', ''),
  1589. (5139, 'Clothing/ Caps', 5033, 0, NULL, 'collectables_breweriana_clothing-caps', 'Collectables :: Breweriana :: Clothing/ Caps', '', 0, 1, 0, '', '', ''),
  1590. (5140, 'Corkscrews', 5033, 0, NULL, 'collectables_breweriana_corkscrews', 'Collectables :: Breweriana :: Corkscrews', '', 0, 1, 0, '', '', ''),
  1591. (5141, 'Decanters', 5033, 0, NULL, 'collectables_breweriana_decanters', 'Collectables :: Breweriana :: Decanters', '', 0, 1, 0, '', '', ''),
  1592. (5142, 'Drinkware/ Glasses/ Steins', 5033, 0, NULL, 'collectables_breweriana_drinkware-glasses-steins', 'Collectables :: Breweriana :: Drinkware/ Glasses/ Steins', '', 0, 1, 0, '', '', ''),
  1593. (5143, 'Hip Flasks', 5033, 0, NULL, 'collectables_breweriana_hip-flasks', 'Collectables :: Breweriana :: Hip Flasks', '', 0, 1, 0, '', '', ''),
  1594. (5144, 'Ice Buckets/ Coolers', 5033, 0, NULL, 'collectables_breweriana_ice-buckets-coolers', 'Collectables :: Breweriana :: Ice Buckets/ Coolers', '', 0, 1, 0, '', '', ''),
  1595. (5145, 'Jugs', 5033, 0, NULL, 'collectables_breweriana_jugs', 'Collectables :: Breweriana :: Jugs', '', 0, 1, 0, '', '', ''),
  1596. (5146, 'Novelties', 5033, 0, NULL, 'collectables_breweriana_novelties', 'Collectables :: Breweriana :: Novelties', '', 0, 1, 0, '', '', ''),
  1597. (5147, 'Paper/ Labels', 5033, 0, NULL, 'collectables_breweriana_paper-labels', 'Collectables :: Breweriana :: Paper/ Labels', '', 0, 1, 0, '', '', ''),
  1598. (5148, 'Playing Cards', 5033, 0, NULL, 'collectables_breweriana_playing-cards', 'Collectables :: Breweriana :: Playing Cards', '', 0, 1, 0, '', '', ''),
  1599. (5149, 'Pourers/ Stoppers', 5033, 0, NULL, 'collectables_breweriana_pourers-stoppers', 'Collectables :: Breweriana :: Pourers/ Stoppers', '', 0, 1, 0, '', '', ''),
  1600. (5150, 'Pumps/ Clips/ Optics', 5033, 0, NULL, 'collectables_breweriana_pumps-clips-optics', 'Collectables :: Breweriana :: Pumps/ Clips/ Optics', '', 0, 1, 0, '', '', ''),
  1601. (5151, 'Shakers', 5033, 0, NULL, 'collectables_breweriana_shakers', 'Collectables :: Breweriana :: Shakers', '', 0, 1, 0, '', '', ''),
  1602. (5152, 'Signs', 5033, 0, NULL, 'collectables_breweriana_signs', 'Collectables :: Breweriana :: Signs', '', 0, 1, 0, '', '', ''),
  1603. (5153, 'Soda Siphons', 5033, 0, NULL, 'collectables_breweriana_soda-siphons', 'Collectables :: Breweriana :: Soda Siphons', '', 0, 1, 0, '', '', ''),
  1604. (5154, 'Tap Handles/ Knobs', 5033, 0, NULL, 'collectables_breweriana_tap-handles-knobs', 'Collectables :: Breweriana :: Tap Handles/ Knobs', '', 0, 1, 0, '', '', ''),
  1605. (5155, 'Trays', 5033, 0, NULL, 'collectables_breweriana_trays', 'Collectables :: Breweriana :: Trays', '', 0, 1, 0, '', '', ''),
  1606. (5156, 'Other Breweriana', 5033, 0, NULL, 'collectables_breweriana_other-breweriana', 'Collectables :: Breweriana :: Other Breweriana', '', 0, 1, 0, '', '', ''),
  1607. (5157, 'Cards', 5034, 0, NULL, 'collectables_casino_cards', 'Collectables :: Casino :: Cards', '', 0, 1, 0, '', '', ''),
  1608. (5158, 'Casino Chips', 5034, 0, NULL, 'collectables_casino_casino-chips', 'Collectables :: Casino :: Casino Chips', '', 0, 1, 0, '', '', ''),
  1609. (5159, 'Casino Memorabilia', 5034, 0, NULL, 'collectables_casino_casino-memorabilia', 'Collectables :: Casino :: Casino Memorabilia', '', 0, 1, 0, '', '', ''),
  1610. (5160, 'Dealer Shoe', 5034, 0, NULL, 'collectables_casino_dealer-shoe', 'Collectables :: Casino :: Dealer Shoe', '', 0, 1, 0, '', '', ''),
  1611. (5161, 'Dice', 5034, 0, NULL, 'collectables_casino_dice', 'Collectables :: Casino :: Dice', '', 0, 1, 0, '', '', ''),
  1612. (5162, 'Guides/ Manuals', 5034, 0, NULL, 'collectables_casino_guides-manuals', 'Collectables :: Casino :: Guides/ Manuals', '', 0, 1, 0, '', '', ''),
  1613. (5163, 'Poker Sets & Accessories', 5034, 0, NULL, 'collectables_casino_poker-sets-accessories', 'Collectables :: Casino :: Poker Sets & Accessories', '', 0, 1, 0, '', '', ''),
  1614. (5164, 'Roulette', 5034, 0, NULL, 'collectables_casino_roulette', 'Collectables :: Casino :: Roulette', '', 0, 1, 0, '', '', ''),
  1615. (5165, 'Tables/ Layouts', 5034, 0, NULL, 'collectables_casino_tables-layouts', 'Collectables :: Casino :: Tables/ Layouts', '', 0, 1, 0, '', '', ''),
  1616. (5166, 'Other Casino', 5034, 0, NULL, 'collectables_casino_other-casino', 'Collectables :: Casino :: Other Casino', '', 0, 1, 0, '', '', ''),
  1617. (5167, 'Cigarette Cards', 5035, 0, NULL, 'collectables_cigarette-tea-gum-cards_cigarette-cards', 'Collectables :: Cigarette/ Tea/ Gum Cards :: Cigarette Cards', '', 0, 1, 0, '', '', ''),
  1618. (5168, 'Confectionery/ Gum Cards', 5035, 0, NULL, 'collectables_cigarette-tea-gum-cards_confectionery-gum-cards', 'Collectables :: Cigarette/ Tea/ Gum Cards :: Confectionery/ Gum Cards', '', 0, 1, 0, '', '', ''),
  1619. (5169, 'Liebig Cards', 5035, 0, NULL, 'collectables_cigarette-tea-gum-cards_liebig-cards', 'Collectables :: Cigarette/ Tea/ Gum Cards :: Liebig Cards', '', 0, 1, 0, '', '', ''),
  1620. (5170, 'Tea Cards', 5035, 0, NULL, 'collectables_cigarette-tea-gum-cards_tea-cards', 'Collectables :: Cigarette/ Tea/ Gum Cards :: Tea Cards', '', 0, 1, 0, '', '', ''),
  1621. (5171, 'Publications', 5035, 0, NULL, 'collectables_cigarette-tea-gum-cards_publications', 'Collectables :: Cigarette/ Tea/ Gum Cards :: Publications', '', 0, 1, 0, '', '', ''),
  1622. (5172, 'Other Trade Cards', 5035, 0, NULL, 'collectables_cigarette-tea-gum-cards_other-trade-cards', 'Collectables :: Cigarette/ Tea/ Gum Cards :: Other Trade Cards', '', 0, 1, 0, '', '', ''),
  1623. (5173, 'Alarm Clock', 5036, 0, NULL, 'collectables_clocks_alarm-clock', 'Collectables :: Clocks :: Alarm Clock', '', 0, 1, 0, '', '', ''),
  1624. (5174, 'Desk Clock', 5036, 0, NULL, 'collectables_clocks_desk-clock', 'Collectables :: Clocks :: Desk Clock', '', 0, 1, 0, '', '', ''),
  1625. (5175, 'Mantel/ Carriage Clock', 5036, 0, NULL, 'collectables_clocks_mantel-carriage-clock', 'Collectables :: Clocks :: Mantel/ Carriage Clock', '', 0, 1, 0, '', '', ''),
  1626. (5176, 'Novelty Clock', 5036, 0, NULL, 'collectables_clocks_novelty-clock', 'Collectables :: Clocks :: Novelty Clock', '', 0, 1, 0, '', '', ''),
  1627. (5177, 'Wall Clock', 5036, 0, NULL, 'collectables_clocks_wall-clock', 'Collectables :: Clocks :: Wall Clock', '', 0, 1, 0, '', '', ''),
  1628. (5178, 'Border Fine Arts', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_border-fine-arts', 'Collectables :: Decorative Ornaments/ Plates :: Border Fine Arts', '', 0, 1, 0, '', '', ''),
  1629. (5179, 'Bossons', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_bossons', 'Collectables :: Decorative Ornaments/ Plates :: Bossons', '', 0, 1, 0, '', '', ''),
  1630. (5180, 'Bradford Exchange', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_bradford-exchange', 'Collectables :: Decorative Ornaments/ Plates :: Bradford Exchange', '', 0, 1, 0, '', '', ''),
  1631. (5181, 'Cheeky Monkeys', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_cheeky-monkeys', 'Collectables :: Decorative Ornaments/ Plates :: Cheeky Monkeys', '', 0, 1, 0, '', '', ''),
  1632. (5182, 'Collectible World Studios', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_collectible-world-studios', 'Collectables :: Decorative Ornaments/ Plates :: Collectible World Studios', '', 0, 1, 0, '', '', ''),
  1633. (5183, 'Colour Box', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_colour-box', 'Collectables :: Decorative Ornaments/ Plates :: Colour Box', '', 0, 1, 0, '', '', ''),
  1634. (5184, 'Country Artists', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_country-artists', 'Collectables :: Decorative Ornaments/ Plates :: Country Artists', '', 0, 1, 0, '', '', ''),
  1635. (5185, 'Danbury Mint', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_danbury-mint', 'Collectables :: Decorative Ornaments/ Plates :: Danbury Mint', '', 0, 1, 0, '', '', ''),
  1636. (5186, 'David Winter', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_david-winter', 'Collectables :: Decorative Ornaments/ Plates :: David Winter', '', 0, 1, 0, '', '', ''),
  1637. (5187, 'Eggberts', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_eggberts', 'Collectables :: Decorative Ornaments/ Plates :: Eggberts', '', 0, 1, 0, '', '', ''),
  1638. (5188, 'Enchantica', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_enchantica', 'Collectables :: Decorative Ornaments/ Plates :: Enchantica', '', 0, 1, 0, '', '', ''),
  1639. (5189, 'Enesco', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_enesco', 'Collectables :: Decorative Ornaments/ Plates :: Enesco', '', 0, 1, 0, '', '', ''),
  1640. (5190, 'The Fairy Way', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_the-fairy-way', 'Collectables :: Decorative Ornaments/ Plates :: The Fairy Way', '', 0, 1, 0, '', '', ''),
  1641. (5191, 'Finnians', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_finnians', 'Collectables :: Decorative Ornaments/ Plates :: Finnians', '', 0, 1, 0, '', '', ''),
  1642. (5192, 'Franklin Mint', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_franklin-mint', 'Collectables :: Decorative Ornaments/ Plates :: Franklin Mint', '', 0, 1, 0, '', '', ''),
  1643. (5193, 'Halcyon Days', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_halcyon-days', 'Collectables :: Decorative Ornaments/ Plates :: Halcyon Days', '', 0, 1, 0, '', '', ''),
  1644. (5194, 'Hamilton', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_hamilton', 'Collectables :: Decorative Ornaments/ Plates :: Hamilton', '', 0, 1, 0, '', '', ''),
  1645. (5195, 'Harmony Kingdom', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_harmony-kingdom', 'Collectables :: Decorative Ornaments/ Plates :: Harmony Kingdom', '', 0, 1, 0, '', '', ''),
  1646. (5196, 'Leonardo', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_leonardo', 'Collectables :: Decorative Ornaments/ Plates :: Leonardo', '', 0, 1, 0, '', '', ''),
  1647. (5197, 'Lilliput Lane', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_lilliput-lane', 'Collectables :: Decorative Ornaments/ Plates :: Lilliput Lane', '', 0, 1, 0, '', '', ''),
  1648. (5198, 'PenDelfin', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_pendelfin', 'Collectables :: Decorative Ornaments/ Plates :: PenDelfin', '', 0, 1, 0, '', '', ''),
  1649. (5199, 'Regency Fine Arts', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_regency-fine-arts', 'Collectables :: Decorative Ornaments/ Plates :: Regency Fine Arts', '', 0, 1, 0, '', '', ''),
  1650. (5200, 'Robert Harrop', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_robert-harrop', 'Collectables :: Decorative Ornaments/ Plates :: Robert Harrop', '', 0, 1, 0, '', '', ''),
  1651. (5201, 'Snowbabies', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_snowbabies', 'Collectables :: Decorative Ornaments/ Plates :: Snowbabies', '', 0, 1, 0, '', '', ''),
  1652. (5202, 'Treasured Pals', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_treasured-pals', 'Collectables :: Decorative Ornaments/ Plates :: Treasured Pals', '', 0, 1, 0, '', '', ''),
  1653. (5203, 'Tudor Mint', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_tudor-mint', 'Collectables :: Decorative Ornaments/ Plates :: Tudor Mint', '', 0, 1, 0, '', '', ''),
  1654. (5204, 'The Turds', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_the-turds', 'Collectables :: Decorative Ornaments/ Plates :: The Turds', '', 0, 1, 0, '', '', ''),
  1655. (5205, 'Willow Tree', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_willow-tree', 'Collectables :: Decorative Ornaments/ Plates :: Willow Tree', '', 0, 1, 0, '', '', ''),
  1656. (5206, 'Boxes/ Trinkets', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_boxes-trinkets', 'Collectables :: Decorative Ornaments/ Plates :: Boxes/ Trinkets', '', 0, 1, 0, '', '', ''),
  1657. (5207, 'Collector Eggs', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_collector-eggs', 'Collectables :: Decorative Ornaments/ Plates :: Collector Eggs', '', 0, 1, 0, '', '', ''),
  1658. (5208, 'Collector Plaques', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_collector-plaques', 'Collectables :: Decorative Ornaments/ Plates :: Collector Plaques', '', 0, 1, 0, '', '', ''),
  1659. (5209, 'Collector Plates', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_collector-plates', 'Collectables :: Decorative Ornaments/ Plates :: Collector Plates', '', 0, 1, 0, '', '', ''),
  1660. (5210, 'Collector Shoes', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_collector-shoes', 'Collectables :: Decorative Ornaments/ Plates :: Collector Shoes', '', 0, 1, 0, '', '', ''),
  1661. (5211, 'Collector Teapots', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_collector-teapots', 'Collectables :: Decorative Ornaments/ Plates :: Collector Teapots', '', 0, 1, 0, '', '', ''),
  1662. (5212, 'Figurines/ Figures/ Groups', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_figurines-figures-groups', 'Collectables :: Decorative Ornaments/ Plates :: Figurines/ Figures/ Groups', '', 0, 1, 0, '', '', ''),
  1663. (5213, 'Other Unbranded Objects', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_other-unbranded-objects', 'Collectables :: Decorative Ornaments/ Plates :: Other Unbranded Objects', '', 0, 1, 0, '', '', ''),
  1664. (5214, 'Other Decorative Ornaments', 5037, 0, NULL, 'collectables_decorative-ornaments-plates_other-decorative-ornaments', 'Collectables :: Decorative Ornaments/ Plates :: Other Decorative Ornaments', '', 0, 1, 0, '', '', ''),
  1665. (5215, 'Contemporary (1968-Now)', 5038, 0, NULL, 'collectables_disneyana_contemporary-1968-now', 'Collectables :: Disneyana :: Contemporary (1968-Now)', '', 0, 1, 0, '', '', ''),
  1666. (5216, 'Vintage (Pre-1968)', 5038, 0, NULL, 'collectables_disneyana_vintage-pre-1968', 'Collectables :: Disneyana :: Vintage (Pre-1968)', '', 0, 1, 0, '', '', ''),
  1667. (5217, 'African', 5039, 0, NULL, 'collectables_ethnographic_african', 'Collectables :: Ethnographic :: African', '', 0, 1, 0, '', '', ''),
  1668. (5218, 'Americas', 5039, 0, NULL, 'collectables_ethnographic_americas', 'Collectables :: Ethnographic :: Americas', '', 0, 1, 0, '', '', ''),
  1669. (5219, 'Chinese', 5039, 0, NULL, 'collectables_ethnographic_chinese', 'Collectables :: Ethnographic :: Chinese', '', 0, 1, 0, '', '', ''),
  1670. (5220, 'Egyptian', 5039, 0, NULL, 'collectables_ethnographic_egyptian', 'Collectables :: Ethnographic :: Egyptian', '', 0, 1, 0, '', '', ''),
  1671. (5221, 'India', 5039, 0, NULL, 'collectables_ethnographic_india', 'Collectables :: Ethnographic :: India', '', 0, 1, 0, '', '', ''),
  1672. (5222, 'Japanese', 5039, 0, NULL, 'collectables_ethnographic_japanese', 'Collectables :: Ethnographic :: Japanese', '', 0, 1, 0, '', '', ''),
  1673. (5223, 'Oceanian/ Australasian', 5039, 0, NULL, 'collectables_ethnographic_oceanian-australasian', 'Collectables :: Ethnographic :: Oceanian/ Australasian', '', 0, 1, 0, '', '', ''),
  1674. (5224, 'Other Ethnographic', 5039, 0, NULL, 'collectables_ethnographic_other-ethnographic', 'Collectables :: Ethnographic :: Other Ethnographic', '', 0, 1, 0, '', '', ''),
  1675. (5225, 'Angel', 5040, 0, NULL, 'collectables_fantasy-myth-magic_angel', 'Collectables :: Fantasy/ Myth/ Magic :: Angel', '', 0, 1, 0, '', '', ''),
  1676. (5226, 'Buffy the Vampire Slayer', 5040, 0, NULL, 'collectables_fantasy-myth-magic_buffy-the-vampire-slayer', 'Collectables :: Fantasy/ Myth/ Magic :: Buffy the Vampire Slayer', '', 0, 1, 0, '', '', ''),
  1677. (5227, 'Discworld', 5040, 0, NULL, 'collectables_fantasy-myth-magic_discworld', 'Collectables :: Fantasy/ Myth/ Magic :: Discworld', '', 0, 1, 0, '', '', ''),
  1678. (5228, 'Harry Potter', 5040, 0, NULL, 'collectables_fantasy-myth-magic_harry-potter', 'Collectables :: Fantasy/ Myth/ Magic :: Harry Potter', '', 0, 1, 0, '', '', ''),
  1679. (5229, 'Lord of the Rings/ Tolkien', 5040, 0, NULL, 'collectables_fantasy-myth-magic_lord-of-the-rings-tolkien', 'Collectables :: Fantasy/ Myth/ Magic :: Lord of the Rings/ Tolkien', '', 0, 1, 0, '', '', ''),
  1680. (5230, 'Magic', 5040, 0, NULL, 'collectables_fantasy-myth-magic_magic', 'Collectables :: Fantasy/ Myth/ Magic :: Magic', '', 0, 1, 0, '', '', ''),
  1681. (5231, 'Mythical Creatures', 5040, 0, NULL, 'collectables_fantasy-myth-magic_mythical-creatures', 'Collectables :: Fantasy/ Myth/ Magic :: Mythical Creatures', '', 0, 1, 0, '', '', ''),
  1682. (5232, 'Xena', 5040, 0, NULL, 'collectables_fantasy-myth-magic_xena', 'Collectables :: Fantasy/ Myth/ Magic :: Xena', '', 0, 1, 0, '', '', ''),
  1683. (5233, 'Other Fantasy/ Myth/ Magic', 5040, 0, NULL, 'collectables_fantasy-myth-magic_other-fantasy-myth-magic', 'Collectables :: Fantasy/ Myth/ Magic :: Other Fantasy/ Myth/ Magic', '', 0, 1, 0, '', '', ''),
  1684. (5234, 'Country Flags', 5041, 0, NULL, 'collectables_flags_country-flags', 'Collectables :: Flags :: Country Flags', '', 0, 1, 0, '', '', ''),
  1685. (5235, 'Other Flags', 5041, 0, NULL, 'collectables_flags_other-flags', 'Collectables :: Flags :: Other Flags', '', 0, 1, 0, '', '', ''),
  1686. (5236, 'Coasters', 5042, 0, NULL, 'collectables_household_coasters', 'Collectables :: Household :: Coasters', '', 0, 1, 0, '', '', ''),
  1687. (5237, 'Music Boxes', 5042, 0, NULL, 'collectables_household_music-boxes', 'Collectables :: Household :: Music Boxes', '', 0, 1, 0, '', '', ''),
  1688. (5238, 'Pez', 5042, 0, NULL, 'collectables_household_pez', 'Collectables :: Household :: Pez', '', 0, 1, 0, '', '', ''),
  1689. (5239, 'Snowglobes', 5042, 0, NULL, 'collectables_household_snowglobes', 'Collectables :: Household :: Snowglobes', '', 0, 1, 0, '', '', ''),
  1690. (5240, 'Spoons', 5042, 0, NULL, 'collectables_household_spoons', 'Collectables :: Household :: Spoons', '', 0, 1, 0, '', '', ''),
  1691. (5241, 'Other Household', 5042, 0, NULL, 'collectables_household_other-household', 'Collectables :: Household :: Other Household', '', 0, 1, 0, '', '', ''),
  1692. (5242, 'Machines', 5043, 0, NULL, 'collectables_jukeboxes_machines', 'Collectables :: Jukeboxes :: Machines', '', 0, 1, 0, '', '', ''),
  1693. (5243, 'Parts/ Manuals/ Accessories', 5043, 0, NULL, 'collectables_jukeboxes_parts-manuals-accessories', 'Collectables :: Jukeboxes :: Parts/ Manuals/ Accessories', '', 0, 1, 0, '', '', ''),
  1694. (5244, 'Other Jukeboxes', 5043, 0, NULL, 'collectables_jukeboxes_other-jukeboxes', 'Collectables :: Jukeboxes :: Other Jukeboxes', '', 0, 1, 0, '', '', ''),
  1695. (5245, 'Baskets', 5045, 0, NULL, 'collectables_kitchenalia_baskets', 'Collectables :: Kitchenalia :: Baskets', '', 0, 1, 0, '', '', ''),
  1696. (5246, 'Bread Bins', 5045, 0, NULL, 'collectables_kitchenalia_bread-bins', 'Collectables :: Kitchenalia :: Bread Bins', '', 0, 1, 0, '', '', ''),
  1697. (5247, 'Bread Boards', 5045, 0, NULL, 'collectables_kitchenalia_bread-boards', 'Collectables :: Kitchenalia :: Bread Boards', '', 0, 1, 0, '', '', ''),
  1698. (5248, 'Butter/ Cheese Dishes', 5045, 0, NULL, 'collectables_kitchenalia_butter-cheese-dishes', 'Collectables :: Kitchenalia :: Butter/ Cheese Dishes', '', 0, 1, 0, '', '', ''),
  1699. (5249, 'Butter Pats', 5045, 0, NULL, 'collectables_kitchenalia_butter-pats', 'Collectables :: Kitchenalia :: Butter Pats', '', 0, 1, 0, '', '', ''),
  1700. (5250, 'Cookware', 5045, 0, NULL, 'collectables_kitchenalia_cookware', 'Collectables :: Kitchenalia :: Cookware', '', 0, 1, 0, '', '', ''),
  1701. (5251, 'Egg Cups', 5045, 0, NULL, 'collectables_kitchenalia_egg-cups', 'Collectables :: Kitchenalia :: Egg Cups', '', 0, 1, 0, '', '', ''),
  1702. (5252, 'Fridge Magnets', 5045, 0, NULL, 'collectables_kitchenalia_fridge-magnets', 'Collectables :: Kitchenalia :: Fridge Magnets', '', 0, 1, 0, '', '', ''),
  1703. (5253, 'Grinders', 5045, 0, NULL, 'collectables_kitchenalia_grinders', 'Collectables :: Kitchenalia :: Grinders', '', 0, 1, 0, '', '', ''),
  1704. (5254, 'Jelly Moulds', 5045, 0, NULL, 'collectables_kitchenalia_jelly-moulds', 'Collectables :: Kitchenalia :: Jelly Moulds', '', 0, 1, 0, '', '', ''),
  1705. (5255, 'Cutlery', 5045, 0, NULL, 'collectables_kitchenalia_cutlery', 'Collectables :: Kitchenalia :: Cutlery', '', 0, 1, 0, '', '', ''),
  1706. (5256, 'Mugs', 5045, 0, NULL, 'collectables_kitchenalia_mugs', 'Collectables :: Kitchenalia :: Mugs', '', 0, 1, 0, '', '', ''),
  1707. (5257, 'Napkin Rings', 5045, 0, NULL, 'collectables_kitchenalia_napkin-rings', 'Collectables :: Kitchenalia :: Napkin Rings', '', 0, 1, 0, '', '', ''),
  1708. (5258, 'Nut Crackers', 5045, 0, NULL, 'collectables_kitchenalia_nut-crackers', 'Collectables :: Kitchenalia :: Nut Crackers', '', 0, 1, 0, '', '', ''),
  1709. (5259, 'Pie Funnels', 5045, 0, NULL, 'collectables_kitchenalia_pie-funnels', 'Collectables :: Kitchenalia :: Pie Funnels', '', 0, 1, 0, '', '', ''),
  1710. (5260, 'Rolling Pins', 5045, 0, NULL, 'collectables_kitchenalia_rolling-pins', 'Collectables :: Kitchenalia :: Rolling Pins', '', 0, 1, 0, '', '', ''),
  1711. (5261, 'Salt & Pepper Pots', 5045, 0, NULL, 'collectables_kitchenalia_salt-pepper-pots', 'Collectables :: Kitchenalia :: Salt & Pepper Pots', '', 0, 1, 0, '', '', ''),
  1712. (5262, 'Scales', 5045, 0, NULL, 'collectables_kitchenalia_scales', 'Collectables :: Kitchenalia :: Scales', '', 0, 1, 0, '', '', ''),
  1713. (5263, 'Serving Trays', 5045, 0, NULL, 'collectables_kitchenalia_serving-trays', 'Collectables :: Kitchenalia :: Serving Trays', '', 0, 1, 0, '', '', ''),
  1714. (5264, 'Sieves & Strainers', 5045, 0, NULL, 'collectables_kitchenalia_sieves-strainers', 'Collectables :: Kitchenalia :: Sieves & Strainers', '', 0, 1, 0, '', '', ''),
  1715. (5265, 'Small Appliances', 5045, 0, NULL, 'collectables_kitchenalia_small-appliances', 'Collectables :: Kitchenalia :: Small Appliances', '', 0, 1, 0, '', '', ''),
  1716. (5266, 'Storage Jars/ Containers', 5045, 0, NULL, 'collectables_kitchenalia_storage-jars-containers', 'Collectables :: Kitchenalia :: Storage Jars/ Containers', '', 0, 1, 0, '', '', ''),
  1717. (5267, 'Sugar Bowls', 5045, 0, NULL, 'collectables_kitchenalia_sugar-bowls', 'Collectables :: Kitchenalia :: Sugar Bowls', '', 0, 1, 0, '', '', ''),
  1718. (5268, 'Tableware', 5045, 0, NULL, 'collectables_kitchenalia_tableware', 'Collectables :: Kitchenalia :: Tableware', '', 0, 1, 0, '', '', ''),
  1719. (5269, 'Teapots/ Kettles', 5045, 0, NULL, 'collectables_kitchenalia_teapots-kettles', 'Collectables :: Kitchenalia :: Teapots/ Kettles', '', 0, 1, 0, '', '', ''),
  1720. (5270, 'Timers', 5045, 0, NULL, 'collectables_kitchenalia_timers', 'Collectables :: Kitchenalia :: Timers', '', 0, 1, 0, '', '', ''),
  1721. (5271, 'Toast Racks', 5045, 0, NULL, 'collectables_kitchenalia_toast-racks', 'Collectables :: Kitchenalia :: Toast Racks', '', 0, 1, 0, '', '', ''),
  1722. (5272, 'Tupperware', 5045, 0, NULL, 'collectables_kitchenalia_tupperware', 'Collectables :: Kitchenalia :: Tupperware', '', 0, 1, 0, '', '', ''),
  1723. (5273, 'Other Kitchenalia', 5045, 0, NULL, 'collectables_kitchenalia_other-kitchenalia', 'Collectables :: Kitchenalia :: Other Kitchenalia', '', 0, 1, 0, '', '', ''),
  1724. (5274, 'Americana', 5047, 0, NULL, 'collectables_memorabilia_americana', 'Collectables :: Memorabilia :: Americana', '', 0, 1, 0, '', '', ''),
  1725. (5275, 'Boys Brigade', 5047, 0, NULL, 'collectables_memorabilia_boys-brigade', 'Collectables :: Memorabilia :: Boys Brigade', '', 0, 1, 0, '', '', ''),
  1726. (5276, 'Boy Scouts/ Scouting', 5047, 0, NULL, 'collectables_memorabilia_boy-scouts-scouting', 'Collectables :: Memorabilia :: Boy Scouts/ Scouting', '', 0, 1, 0, '', '', ''),
  1727. (5277, 'Charities', 5047, 0, NULL, 'collectables_memorabilia_charities', 'Collectables :: Memorabilia :: Charities', '', 0, 1, 0, '', '', ''),
  1728. (5278, 'Circus/ Fairground', 5047, 0, NULL, 'collectables_memorabilia_circus-fairground', 'Collectables :: Memorabilia :: Circus/ Fairground', '', 0, 1, 0, '', '', ''),
  1729. (5279, 'Clubs/ Associations', 5047, 0, NULL, 'collectables_memorabilia_clubs-associations', 'Collectables :: Memorabilia :: Clubs/ Associations', '', 0, 1, 0, '', '', ''),
  1730. (5280, 'Exhibitions', 5047, 0, NULL, 'collectables_memorabilia_exhibitions', 'Collectables :: Memorabilia :: Exhibitions', '', 0, 1, 0, '', '', ''),
  1731. (5281, 'Fire Brigade', 5047, 0, NULL, 'collectables_memorabilia_fire-brigade', 'Collectables :: Memorabilia :: Fire Brigade', '', 0, 1, 0, '', '', ''),
  1732. (5282, 'Girl Guides', 5047, 0, NULL, 'collectables_memorabilia_girl-guides', 'Collectables :: Memorabilia :: Girl Guides', '', 0, 1, 0, '', '', ''),
  1733. (5283, 'Historical', 5047, 0, NULL, 'collectables_memorabilia_historical', 'Collectables :: Memorabilia :: Historical', '', 0, 1, 0, '', '', ''),
  1734. (5284, 'Literary', 5047, 0, NULL, 'collectables_memorabilia_literary', 'Collectables :: Memorabilia :: Literary', '', 0, 1, 0, '', '', ''),
  1735. (5285, 'Medical/ Nursing/ Red Cross', 5047, 0, NULL, 'collectables_memorabilia_medical-nursing-red-cross', 'Collectables :: Memorabilia :: Medical/ Nursing/ Red Cross', '', 0, 1, 0, '', '', ''),
  1736. (5286, 'Millennium/ Year 2000', 5047, 0, NULL, 'collectables_memorabilia_millennium-year-2000', 'Collectables :: Memorabilia :: Millennium/ Year 2000', '', 0, 1, 0, '', '', ''),
  1737. (5287, 'Mining', 5047, 0, NULL, 'collectables_memorabilia_mining', 'Collectables :: Memorabilia :: Mining', '', 0, 1, 0, '', '', ''),
  1738. (5288, 'Police', 5047, 0, NULL, 'collectables_memorabilia_police', 'Collectables :: Memorabilia :: Police', '', 0, 1, 0, '', '', ''),
  1739. (5289, 'Political/ Trade Union', 5047, 0, NULL, 'collectables_memorabilia_political-trade-union', 'Collectables :: Memorabilia :: Political/ Trade Union', '', 0, 1, 0, '', '', ''),
  1740. (5290, 'Prison', 5047, 0, NULL, 'collectables_memorabilia_prison', 'Collectables :: Memorabilia :: Prison', '', 0, 1, 0, '', '', ''),
  1741. (5291, 'Russian/ Soviet', 5047, 0, NULL, 'collectables_memorabilia_russian-soviet', 'Collectables :: Memorabilia :: Russian/ Soviet', '', 0, 1, 0, '', '', ''),
  1742. (5292, 'St. John Ambulance', 5047, 0, NULL, 'collectables_memorabilia_st-john-ambulance', 'Collectables :: Memorabilia :: St. John Ambulance', '', 0, 1, 0, '', '', ''),
  1743. (5293, 'School/ University', 5047, 0, NULL, 'collectables_memorabilia_school-university', 'Collectables :: Memorabilia :: School/ University', '', 0, 1, 0, '', '', ''),
  1744. (5294, 'Souvenirs', 5047, 0, NULL, 'collectables_memorabilia_souvenirs', 'Collectables :: Memorabilia :: Souvenirs', '', 0, 1, 0, '', '', ''),
  1745. (5295, 'Other Memorabilia', 5047, 0, NULL, 'collectables_memorabilia_other-memorabilia', 'Collectables :: Memorabilia :: Other Memorabilia', '', 0, 1, 0, '', '', ''),
  1746. (5296, 'Aprons & Regalia', 5046, 0, NULL, 'collectables_masonic_aprons-regalia', 'Collectables :: Masonic :: Aprons & Regalia', '', 0, 1, 0, '', '', ''),
  1747. (5297, 'Books & Publications', 5046, 0, NULL, 'collectables_masonic_books-publications', 'Collectables :: Masonic :: Books & Publications', '', 0, 1, 0, '', '', ''),
  1748. (5298, 'Cufflinks, Studs & Lapel Pins', 5046, 0, NULL, 'collectables_masonic_cufflinks-studs-lapel-pins', 'Collectables :: Masonic :: Cufflinks, Studs & Lapel Pins', '', 0, 1, 0, '', '', ''),
  1749. (5299, 'Jewels & Medals', 5046, 0, NULL, 'collectables_masonic_jewels-medals', 'Collectables :: Masonic :: Jewels & Medals', '', 0, 1, 0, '', '', ''),
  1750. (5300, 'Ornaments', 5046, 0, NULL, 'collectables_masonic_ornaments', 'Collectables :: Masonic :: Ornaments', '', 0, 1, 0, '', '', ''),
  1751. (5301, 'Rings & Watches', 5046, 0, NULL, 'collectables_masonic_rings-watches', 'Collectables :: Masonic :: Rings & Watches', '', 0, 1, 0, '', '', ''),
  1752. (5302, 'Other Masonic', 5046, 0, NULL, 'collectables_masonic_other-masonic', 'Collectables :: Masonic :: Other Masonic', '', 0, 1, 0, '', '', ''),
  1753. (5303, 'Aluminium', 5048, 0, NULL, 'collectables_metalware_aluminium', 'Collectables :: Metalware :: Aluminium', '', 0, 1, 0, '', '', ''),
  1754. (5304, 'Brass', 5048, 0, NULL, 'collectables_metalware_brass', 'Collectables :: Metalware :: Brass', '', 0, 1, 0, '', '', ''),
  1755. (5305, 'Bronze', 5048, 0, NULL, 'collectables_metalware_bronze', 'Collectables :: Metalware :: Bronze', '', 0, 1, 0, '', '', ''),
  1756. (5306, 'Cast Iron', 5048, 0, NULL, 'collectables_metalware_cast-iron', 'Collectables :: Metalware :: Cast Iron', '', 0, 1, 0, '', '', ''),
  1757. (5307, 'Copper', 5048, 0, NULL, 'collectables_metalware_copper', 'Collectables :: Metalware :: Copper', '', 0, 1, 0, '', '', ''),
  1758. (5308, 'Pewter', 5048, 0, NULL, 'collectables_metalware_pewter', 'Collectables :: Metalware :: Pewter', '', 0, 1, 0, '', '', ''),
  1759. (5309, 'Silver (Plate)', 5048, 0, NULL, 'collectables_metalware_silver-plate', 'Collectables :: Metalware :: Silver (Plate)', '', 0, 1, 0, '', '', ''),
  1760. (5310, 'Silver (Solid)', 5048, 0, NULL, 'collectables_metalware_silver-solid', 'Collectables :: Metalware :: Silver (Solid)', '', 0, 1, 0, '', '', ''),
  1761. (5311, 'Stainless Steel', 5048, 0, NULL, 'collectables_metalware_stainless-steel', 'Collectables :: Metalware :: Stainless Steel', '', 0, 1, 0, '', '', ''),
  1762. (5312, 'Tin', 5048, 0, NULL, 'collectables_metalware_tin', 'Collectables :: Metalware :: Tin', '', 0, 1, 0, '', '', ''),
  1763. (5313, 'Other Metalware', 5048, 0, NULL, 'collectables_metalware_other-metalware', 'Collectables :: Metalware :: Other Metalware', '', 0, 1, 0, '', '', ''),
  1764. (5314, 'Ancient/ Medieval (Pre-1500)', 5049, 0, NULL, 'collectables_militaria_ancient-medieval-pre-1500', 'Collectables :: Militaria :: Ancient/ Medieval (Pre-1500)', '', 0, 1, 0, '', '', ''),
  1765. (5315, 'Early Modern (1500-1800)', 5049, 0, NULL, 'collectables_militaria_early-modern-1500-1800', 'Collectables :: Militaria :: Early Modern (1500-1800)', '', 0, 1, 0, '', '', ''),
  1766. (5316, '19th Century (1800-1899)', 5049, 0, NULL, 'collectables_militaria_19th-century-1800-1899', 'Collectables :: Militaria :: 19th Century (1800-1899)', '', 0, 1, 0, '', '', ''),
  1767. (5317, 'Boer War (1899-1902)', 5049, 0, NULL, 'collectables_militaria_boer-war-1899-1902', 'Collectables :: Militaria :: Boer War (1899-1902)', '', 0, 1, 0, '', '', ''),
  1768. (5318, '1903-1913', 5049, 0, NULL, 'collectables_militaria_1903-1913', 'Collectables :: Militaria :: 1903-1913', '', 0, 1, 0, '', '', ''),
  1769. (5319, 'World War I (1914-1918)', 5049, 0, NULL, 'collectables_militaria_world-war-i-1914-1918', 'Collectables :: Militaria :: World War I (1914-1918)', '', 0, 1, 0, '', '', ''),
  1770. (5320, 'Inter-War (1919-1938)', 5049, 0, NULL, 'collectables_militaria_inter-war-1919-1938', 'Collectables :: Militaria :: Inter-War (1919-1938)', '', 0, 1, 0, '', '', ''),
  1771. (5321, 'World War II (1939-1945)', 5049, 0, NULL, 'collectables_militaria_world-war-ii-1939-1945', 'Collectables :: Militaria :: World War II (1939-1945)', '', 0, 1, 0, '', '', ''),
  1772. (5322, '1946-1960', 5049, 0, NULL, 'collectables_militaria_1946-1960', 'Collectables :: Militaria :: 1946-1960', '', 0, 1, 0, '', '', ''),
  1773. (5323, '1961-1975/ Vietnam War', 5049, 0, NULL, 'collectables_militaria_1961-1975-vietnam-war', 'Collectables :: Militaria :: 1961-1975/ Vietnam War', '', 0, 1, 0, '', '', ''),
  1774. (5324, '1976-1981', 5049, 0, NULL, 'collectables_militaria_1976-1981', 'Collectables :: Militaria :: 1976-1981', '', 0, 1, 0, '', '', ''),
  1775. (5325, 'Falklands War (1982)', 5049, 0, NULL, 'collectables_militaria_falklands-war-1982', 'Collectables :: Militaria :: Falklands War (1982)', '', 0, 1, 0, '', '', ''),
  1776. (5326, '1983-1989', 5049, 0, NULL, 'collectables_militaria_1983-1989', 'Collectables :: Militaria :: 1983-1989', '', 0, 1, 0, '', '', ''),
  1777. (5327, 'Gulf War (1990-1991)', 5049, 0, NULL, 'collectables_militaria_gulf-war-1990-1991', 'Collectables :: Militaria :: Gulf War (1990-1991)', '', 0, 1, 0, '', '', ''),
  1778. (5328, 'Current Militaria (1991-Now)', 5049, 0, NULL, 'collectables_militaria_current-militaria-1991-now', 'Collectables :: Militaria :: Current Militaria (1991-Now)', '', 0, 1, 0, '', '', ''),
  1779. (5329, 'Surplus/ Equipment', 5049, 0, NULL, 'collectables_militaria_surplus-equipment', 'Collectables :: Militaria :: Surplus/ Equipment', '', 0, 1, 0, '', '', ''),
  1780. (5330, 'Other Militaria', 5049, 0, NULL, 'collectables_militaria_other-militaria', 'Collectables :: Militaria :: Other Militaria', '', 0, 1, 0, '', '', ''),
  1781. (5331, 'Moneyboxes', 5050, 0, NULL, 'collectables_moneyboxes-piggy-banks_moneyboxes', 'Collectables :: Moneyboxes/ Piggy Banks :: Moneyboxes', '', 0, 1, 0, '', '', ''),
  1782. (5332, 'Piggy Banks', 5050, 0, NULL, 'collectables_moneyboxes-piggy-banks_piggy-banks', 'Collectables :: Moneyboxes/ Piggy Banks :: Piggy Banks', '', 0, 1, 0, '', '', ''),
  1783. (5333, 'Bookmarks', 5051, 0, NULL, 'collectables_paper-ephemera_bookmarks', 'Collectables :: Paper & Ephemera :: Bookmarks', '', 0, 1, 0, '', '', ''),
  1784. (5334, 'Calendars', 5051, 0, NULL, 'collectables_paper-ephemera_calendars', 'Collectables :: Paper & Ephemera :: Calendars', '', 0, 1, 0, '', '', ''),
  1785. (5335, 'Documents', 5051, 0, NULL, 'collectables_paper-ephemera_documents', 'Collectables :: Paper & Ephemera :: Documents', '', 0, 1, 0, '', '', ''),
  1786. (5336, 'Ephemera', 5051, 0, NULL, 'collectables_paper-ephemera_ephemera', 'Collectables :: Paper & Ephemera :: Ephemera', '', 0, 1, 0, '', '', ''),
  1787. (5337, 'Greeting Cards', 5051, 0, NULL, 'collectables_paper-ephemera_greeting-cards', 'Collectables :: Paper & Ephemera :: Greeting Cards', '', 0, 1, 0, '', '', ''),
  1788. (5338, 'Letters', 5051, 0, NULL, 'collectables_paper-ephemera_letters', 'Collectables :: Paper & Ephemera :: Letters', '', 0, 1, 0, '', '', ''),
  1789. (5339, 'Local Interest/ Topographical', 5051, 0, NULL, 'collectables_paper-ephemera_local-interest-topographical', 'Collectables :: Paper & Ephemera :: Local Interest/ Topographical', '', 0, 1, 0, '', '', ''),
  1790. (5340, 'Newspapers', 5051, 0, NULL, 'collectables_paper-ephemera_newspapers', 'Collectables :: Paper & Ephemera :: Newspapers', '', 0, 1, 0, '', '', ''),
  1791. (5341, 'Playing Cards', 5051, 0, NULL, 'collectables_paper-ephemera_playing-cards', 'Collectables :: Paper & Ephemera :: Playing Cards', '', 0, 1, 0, '', '', ''),
  1792. (5342, 'Posters', 5051, 0, NULL, 'collectables_paper-ephemera_posters', 'Collectables :: Paper & Ephemera :: Posters', '', 0, 1, 0, '', '', ''),
  1793. (5343, 'Scrapbooks', 5051, 0, NULL, 'collectables_paper-ephemera_scrapbooks', 'Collectables :: Paper & Ephemera :: Scrapbooks', '', 0, 1, 0, '', '', ''),
  1794. (5344, 'Scraps', 5051, 0, NULL, 'collectables_paper-ephemera_scraps', 'Collectables :: Paper & Ephemera :: Scraps', '', 0, 1, 0, '', '', ''),
  1795. (5345, 'Mixed Lots', 5051, 0, NULL, 'collectables_paper-ephemera_mixed-lots', 'Collectables :: Paper & Ephemera :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  1796. (5346, 'Other Paper & Ephemera', 5051, 0, NULL, 'collectables_paper-ephemera_other-paper-ephemera', 'Collectables :: Paper & Ephemera :: Other Paper & Ephemera', '', 0, 1, 0, '', '', ''),
  1797. (5347, 'Calligraphy', 5052, 0, NULL, 'collectables_pens-writing-equipment_calligraphy', 'Collectables :: Pens & Writing Equipment :: Calligraphy', '', 0, 1, 0, '', '', ''),
  1798. (5348, 'Desktop Items', 5052, 0, NULL, 'collectables_pens-writing-equipment_desktop-items', 'Collectables :: Pens & Writing Equipment :: Desktop Items', '', 0, 1, 0, '', '', ''),
  1799. (5349, 'Erasers/ Rubbers', 5052, 0, NULL, 'collectables_pens-writing-equipment_erasers-rubbers', 'Collectables :: Pens & Writing Equipment :: Erasers/ Rubbers', '', 0, 1, 0, '', '', ''),
  1800. (5350, 'Inkwells', 5052, 0, NULL, 'collectables_pens-writing-equipment_inkwells', 'Collectables :: Pens & Writing Equipment :: Inkwells', '', 0, 1, 0, '', '', ''),
  1801. (5351, 'Letter Openers', 5052, 0, NULL, 'collectables_pens-writing-equipment_letter-openers', 'Collectables :: Pens & Writing Equipment :: Letter Openers', '', 0, 1, 0, '', '', ''),
  1802. (5352, 'Pens', 5052, 0, NULL, 'collectables_pens-writing-equipment_pens', 'Collectables :: Pens & Writing Equipment :: Pens', '', 0, 1, 0, '', '', ''),
  1803. (5353, 'Pencils', 5052, 0, NULL, 'collectables_pens-writing-equipment_pencils', 'Collectables :: Pens & Writing Equipment :: Pencils', '', 0, 1, 0, '', '', ''),
  1804. (5354, 'Seals', 5052, 0, NULL, 'collectables_pens-writing-equipment_seals', 'Collectables :: Pens & Writing Equipment :: Seals', '', 0, 1, 0, '', '', ''),
  1805. (5355, 'Sets', 5052, 0, NULL, 'collectables_pens-writing-equipment_sets', 'Collectables :: Pens & Writing Equipment :: Sets', '', 0, 1, 0, '', '', ''),
  1806. (5356, 'Typewriters', 5052, 0, NULL, 'collectables_pens-writing-equipment_typewriters', 'Collectables :: Pens & Writing Equipment :: Typewriters', '', 0, 1, 0, '', '', ''),
  1807. (5357, 'Other Writing Equipment', 5052, 0, NULL, 'collectables_pens-writing-equipment_other-writing-equipment', 'Collectables :: Pens & Writing Equipment :: Other Writing Equipment', '', 0, 1, 0, '', '', ''),
  1808. (5358, 'United States', 5053, 0, NULL, 'collectables_phone-cards_united-states', 'Collectables :: Phone Cards :: United States', '', 0, 1, 0, '', '', ''),
  1809. (5359, 'United Kingdom', 5053, 0, NULL, 'collectables_phone-cards_united-kingdom', 'Collectables :: Phone Cards :: United Kingdom', '', 0, 1, 0, '', '', ''),
  1810. (5360, 'Ireland', 5053, 0, NULL, 'collectables_phone-cards_ireland', 'Collectables :: Phone Cards :: Ireland', '', 0, 1, 0, '', '', ''),
  1811. (5361, 'Europe', 5053, 0, NULL, 'collectables_phone-cards_europe', 'Collectables :: Phone Cards :: Europe', '', 0, 1, 0, '', '', ''),
  1812. (5362, 'Rest Of World', 5053, 0, NULL, 'collectables_phone-cards_rest-of-world', 'Collectables :: Phone Cards :: Rest Of World', '', 0, 1, 0, '', '', ''),
  1813. (5363, 'Antique (Pre-1940)', 5054, 0, NULL, 'collectables_photographic-images_antique-pre-1940', 'Collectables :: Photographic Images :: Antique (Pre-1940)', '', 0, 1, 0, '', '', ''),
  1814. (5364, 'Contemporary (1940-Now)', 5054, 0, NULL, 'collectables_photographic-images_contemporary-1940-now', 'Collectables :: Photographic Images :: Contemporary (1940-Now)', '', 0, 1, 0, '', '', ''),
  1815. (5365, 'Accessories/ Storage', 5055, 0, NULL, 'collectables_postcards_accessories-storage', 'Collectables :: Postcards :: Accessories/ Storage', '', 0, 1, 0, '', '', ''),
  1816. (5366, 'Advertising', 5055, 0, NULL, 'collectables_postcards_advertising', 'Collectables :: Postcards :: Advertising', '', 0, 1, 0, '', '', ''),
  1817. (5367, 'Amusement Parks/ Fairgrounds', 5055, 0, NULL, 'collectables_postcards_amusement-parks-fairgrounds', 'Collectables :: Postcards :: Amusement Parks/ Fairgrounds', '', 0, 1, 0, '', '', ''),
  1818. (5368, 'Animals', 5055, 0, NULL, 'collectables_postcards_animals', 'Collectables :: Postcards :: Animals', '', 0, 1, 0, '', '', ''),
  1819. (5369, 'Artist Signed', 5055, 0, NULL, 'collectables_postcards_artist-signed', 'Collectables :: Postcards :: Artist Signed', '', 0, 1, 0, '', '', ''),
  1820. (5370, 'Children', 5055, 0, NULL, 'collectables_postcards_children', 'Collectables :: Postcards :: Children', '', 0, 1, 0, '', '', ''),
  1821. (5371, 'Comic/ Seaside Humour', 5055, 0, NULL, 'collectables_postcards_comic-seaside-humour', 'Collectables :: Postcards :: Comic/ Seaside Humour', '', 0, 1, 0, '', '', ''),
  1822. (5372, 'Disasters', 5055, 0, NULL, 'collectables_postcards_disasters', 'Collectables :: Postcards :: Disasters', '', 0, 1, 0, '', '', ''),
  1823. (5373, 'Ethnic', 5055, 0, NULL, 'collectables_postcards_ethnic', 'Collectables :: Postcards :: Ethnic', '', 0, 1, 0, '', '', ''),
  1824. (5374, 'Exhibitions', 5055, 0, NULL, 'collectables_postcards_exhibitions', 'Collectables :: Postcards :: Exhibitions', '', 0, 1, 0, '', '', ''),
  1825. (5375, 'Fashion/ Clothing', 5055, 0, NULL, 'collectables_postcards_fashion-clothing', 'Collectables :: Postcards :: Fashion/ Clothing', '', 0, 1, 0, '', '', ''),
  1826. (5376, 'Glamour', 5055, 0, NULL, 'collectables_postcards_glamour', 'Collectables :: Postcards :: Glamour', '', 0, 1, 0, '', '', ''),
  1827. (5377, 'Greetings', 5055, 0, NULL, 'collectables_postcards_greetings', 'Collectables :: Postcards :: Greetings', '', 0, 1, 0, '', '', ''),
  1828. (5378, 'Holiday/ Butlins', 5055, 0, NULL, 'collectables_postcards_holiday-butlins', 'Collectables :: Postcards :: Holiday/ Butlins', '', 0, 1, 0, '', '', ''),
  1829. (5379, 'Hotel/ Restaurant', 5055, 0, NULL, 'collectables_postcards_hotel-restaurant', 'Collectables :: Postcards :: Hotel/ Restaurant', '', 0, 1, 0, '', '', ''),
  1830. (5380, 'Military', 5055, 0, NULL, 'collectables_postcards_military', 'Collectables :: Postcards :: Military', '', 0, 1, 0, '', '', ''),
  1831. (5381, 'Music', 5055, 0, NULL, 'collectables_postcards_music', 'Collectables :: Postcards :: Music', '', 0, 1, 0, '', '', ''),
  1832. (5382, 'Novelty', 5055, 0, NULL, 'collectables_postcards_novelty', 'Collectables :: Postcards :: Novelty', '', 0, 1, 0, '', '', ''),
  1833. (5383, 'People', 5055, 0, NULL, 'collectables_postcards_people', 'Collectables :: Postcards :: People', '', 0, 1, 0, '', '', ''),
  1834. (5384, 'Political', 5055, 0, NULL, 'collectables_postcards_political', 'Collectables :: Postcards :: Political', '', 0, 1, 0, '', '', ''),
  1835. (5385, 'Religious', 5055, 0, NULL, 'collectables_postcards_religious', 'Collectables :: Postcards :: Religious', '', 0, 1, 0, '', '', ''),
  1836. (5386, 'Risqué/ Erotic', 5055, 0, NULL, 'collectables_postcards_risque-erotic', 'Collectables :: Postcards :: Risqué/ Erotic', '', 0, 1, 0, '', '', ''),
  1837. (5387, 'Royal Mail', 5055, 0, NULL, 'collectables_postcards_royal-mail', 'Collectables :: Postcards :: Royal Mail', '', 0, 1, 0, '', '', ''),
  1838. (5388, 'Royalty', 5055, 0, NULL, 'collectables_postcards_royalty', 'Collectables :: Postcards :: Royalty', '', 0, 1, 0, '', '', ''),
  1839. (5389, 'Social History', 5055, 0, NULL, 'collectables_postcards_social-history', 'Collectables :: Postcards :: Social History', '', 0, 1, 0, '', '', ''),
  1840. (5390, 'Song Cards', 5055, 0, NULL, 'collectables_postcards_song-cards', 'Collectables :: Postcards :: Song Cards', '', 0, 1, 0, '', '', ''),
  1841. (5391, 'Sport', 5055, 0, NULL, 'collectables_postcards_sport', 'Collectables :: Postcards :: Sport', '', 0, 1, 0, '', '', ''),
  1842. (5392, 'Topographical: British', 5055, 0, NULL, 'collectables_postcards_topographical-british', 'Collectables :: Postcards :: Topographical: British', '', 0, 1, 0, '', '', ''),
  1843. (5393, 'Topographical: Ireland', 5055, 0, NULL, 'collectables_postcards_topographical-ireland', 'Collectables :: Postcards :: Topographical: Ireland', '', 0, 1, 0, '', '', ''),
  1844. (5394, 'Topographical: Rest of World', 5055, 0, NULL, 'collectables_postcards_topographical-rest-of-world', 'Collectables :: Postcards :: Topographical: Rest of World', '', 0, 1, 0, '', '', ''),
  1845. (5395, 'Collections/ Bulk Lots', 5055, 0, NULL, 'collectables_postcards_collections-bulk-lots', 'Collectables :: Postcards :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  1846. (5396, 'Publications', 5055, 0, NULL, 'collectables_postcards_publications', 'Collectables :: Postcards :: Publications', '', 0, 1, 0, '', '', ''),
  1847. (5397, 'Other Postcards', 5055, 0, NULL, 'collectables_postcards_other-postcards', 'Collectables :: Postcards :: Other Postcards', '', 0, 1, 0, '', '', ''),
  1848. (5398, 'Phonographs & Gramophones', 5056, 0, NULL, 'collectables_radio-television-telephony_phonographs-gramophones', 'Collectables :: Radio/ Television/ Telephony :: Phonographs & Gramophones', '', 0, 1, 0, '', '', ''),
  1849. (5399, 'Telegraphy', 5056, 0, NULL, 'collectables_radio-television-telephony_telegraphy', 'Collectables :: Radio/ Television/ Telephony :: Telegraphy', '', 0, 1, 0, '', '', ''),
  1850. (5400, 'Radio', 5056, 0, NULL, 'collectables_radio-television-telephony_radio', 'Collectables :: Radio/ Television/ Telephony :: Radio', '', 0, 1, 0, '', '', ''),
  1851. (5401, 'Telephone', 5056, 0, NULL, 'collectables_radio-television-telephony_telephone', 'Collectables :: Radio/ Television/ Telephony :: Telephone', '', 0, 1, 0, '', '', ''),
  1852. (5402, 'Television Sets', 5056, 0, NULL, 'collectables_radio-television-telephony_television-sets', 'Collectables :: Radio/ Television/ Telephony :: Television Sets', '', 0, 1, 0, '', '', ''),
  1853. (5403, 'Other Radio/ TV/ Telephony', 5056, 0, NULL, 'collectables_radio-television-telephony_other-radio-tv-telephony', 'Collectables :: Radio/ Television/ Telephony :: Other Radio/ TV/ Telephony', '', 0, 1, 0, '', '', ''),
  1854. (5404, 'Buddhism', 5057, 0, NULL, 'collectables_religion-spirituality_buddhism', 'Collectables :: Religion/ Spirituality :: Buddhism', '', 0, 1, 0, '', '', ''),
  1855. (5405, 'Christianity', 5057, 0, NULL, 'collectables_religion-spirituality_christianity', 'Collectables :: Religion/ Spirituality :: Christianity', '', 0, 1, 0, '', '', ''),
  1856. (5406, 'Hinduism', 5057, 0, NULL, 'collectables_religion-spirituality_hinduism', 'Collectables :: Religion/ Spirituality :: Hinduism', '', 0, 1, 0, '', '', ''),
  1857. (5407, 'Islam', 5057, 0, NULL, 'collectables_religion-spirituality_islam', 'Collectables :: Religion/ Spirituality :: Islam', '', 0, 1, 0, '', '', ''),
  1858. (5408, 'Judaism', 5057, 0, NULL, 'collectables_religion-spirituality_judaism', 'Collectables :: Religion/ Spirituality :: Judaism', '', 0, 1, 0, '', '', ''),
  1859. (5409, 'New Age', 5057, 0, NULL, 'collectables_religion-spirituality_new-age', 'Collectables :: Religion/ Spirituality :: New Age', '', 0, 1, 0, '', '', ''),
  1860. (5410, 'Occult/ Witchcraft', 5057, 0, NULL, 'collectables_religion-spirituality_occult-witchcraft', 'Collectables :: Religion/ Spirituality :: Occult/ Witchcraft', '', 0, 1, 0, '', '', ''),
  1861. (5411, 'Spirituality', 5057, 0, NULL, 'collectables_religion-spirituality_spirituality', 'Collectables :: Religion/ Spirituality :: Spirituality', '', 0, 1, 0, '', '', ''),
  1862. (5412, 'Other Religion/ Spirituality', 5057, 0, NULL, 'collectables_religion-spirituality_other-religion-spirituality', 'Collectables :: Religion/ Spirituality :: Other Religion/ Spirituality', '', 0, 1, 0, '', '', ''),
  1863. (5413, 'Crystals', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_crystals', 'Collectables :: Rocks/ Fossils/ Minerals :: Crystals', '', 0, 1, 0, '', '', ''),
  1864. (5414, 'Fossils', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_fossils', 'Collectables :: Rocks/ Fossils/ Minerals :: Fossils', '', 0, 1, 0, '', '', ''),
  1865. (5415, 'Lapidary Materials', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_lapidary-materials', 'Collectables :: Rocks/ Fossils/ Minerals :: Lapidary Materials', '', 0, 1, 0, '', '', ''),
  1866. (5416, 'Meteorites/ Tektites', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_meteorites-tektites', 'Collectables :: Rocks/ Fossils/ Minerals :: Meteorites/ Tektites', '', 0, 1, 0, '', '', ''),
  1867. (5417, 'Mineral Specimens', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_mineral-specimens', 'Collectables :: Rocks/ Fossils/ Minerals :: Mineral Specimens', '', 0, 1, 0, '', '', ''),
  1868. (5418, 'Shells', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_shells', 'Collectables :: Rocks/ Fossils/ Minerals :: Shells', '', 0, 1, 0, '', '', ''),
  1869. (5419, 'Publications', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_publications', 'Collectables :: Rocks/ Fossils/ Minerals :: Publications', '', 0, 1, 0, '', '', ''),
  1870. (5420, 'Other Rocks/ Minerals', 5058, 0, NULL, 'collectables_rocks-fossils-minerals_other-rocks-minerals', 'Collectables :: Rocks/ Fossils/ Minerals :: Other Rocks/ Minerals', '', 0, 1, 0, '', '', ''),
  1871. (5421, 'Elizabeth II (1952-Now)', 5059, 0, NULL, 'collectables_royalty_elizabeth-ii-1952-now', 'Collectables :: Royalty :: Elizabeth II (1952-Now)', '', 0, 1, 0, '', '', ''),
  1872. (5422, 'George VI (1936-1952)', 5059, 0, NULL, 'collectables_royalty_george-vi-1936-1952', 'Collectables :: Royalty :: George VI (1936-1952)', '', 0, 1, 0, '', '', ''),
  1873. (5423, 'Edward VIII (1936)', 5059, 0, NULL, 'collectables_royalty_edward-viii-1936', 'Collectables :: Royalty :: Edward VIII (1936)', '', 0, 1, 0, '', '', ''),
  1874. (5424, 'George V (1910-1936)', 5059, 0, NULL, 'collectables_royalty_george-v-1910-1936', 'Collectables :: Royalty :: George V (1910-1936)', '', 0, 1, 0, '', '', ''),
  1875. (5425, 'Edward VII (1902-1910)', 5059, 0, NULL, 'collectables_royalty_edward-vii-1902-1910', 'Collectables :: Royalty :: Edward VII (1902-1910)', '', 0, 1, 0, '', '', ''),
  1876. (5426, 'Victoria (1837-1901)', 5059, 0, NULL, 'collectables_royalty_victoria-1837-1901', 'Collectables :: Royalty :: Victoria (1837-1901)', '', 0, 1, 0, '', '', ''),
  1877. (5427, 'Pre-Victorian (Pre-1837)', 5059, 0, NULL, 'collectables_royalty_pre-victorian-pre-1837', 'Collectables :: Royalty :: Pre-Victorian (Pre-1837)', '', 0, 1, 0, '', '', ''),
  1878. (5428, 'Prince Andrew/ Fergie', 5059, 0, NULL, 'collectables_royalty_prince-andrew-fergie', 'Collectables :: Royalty :: Prince Andrew/ Fergie', '', 0, 1, 0, '', '', ''),
  1879. (5429, 'Prince Charles', 5059, 0, NULL, 'collectables_royalty_prince-charles', 'Collectables :: Royalty :: Prince Charles', '', 0, 1, 0, '', '', ''),
  1880. (5430, 'Prince Edward/ Sophie', 5059, 0, NULL, 'collectables_royalty_prince-edward-sophie', 'Collectables :: Royalty :: Prince Edward/ Sophie', '', 0, 1, 0, '', '', ''),
  1881. (5431, 'Prince William/ Harry/ Catherine/ George', 5059, 0, NULL, 'collectables_royalty_prince-william-harry-catherine-george', 'Collectables :: Royalty :: Prince William/ Harry/ Catherine/ George', '', 0, 1, 0, '', '', ''),
  1882. (5432, 'Princess Anne', 5059, 0, NULL, 'collectables_royalty_princess-anne', 'Collectables :: Royalty :: Princess Anne', '', 0, 1, 0, '', '', ''),
  1883. (5433, 'Princess Diana', 5059, 0, NULL, 'collectables_royalty_princess-diana', 'Collectables :: Royalty :: Princess Diana', '', 0, 1, 0, '', '', ''),
  1884. (5434, 'Princess Margaret', 5059, 0, NULL, 'collectables_royalty_princess-margaret', 'Collectables :: Royalty :: Princess Margaret', '', 0, 1, 0, '', '', ''),
  1885. (5435, 'Queen Mother', 5059, 0, NULL, 'collectables_royalty_queen-mother', 'Collectables :: Royalty :: Queen Mother', '', 0, 1, 0, '', '', ''),
  1886. (5436, 'Camilla, Duchess of Cornwall', 5059, 0, NULL, 'collectables_royalty_camilla-duchess-of-cornwall', 'Collectables :: Royalty :: Camilla, Duchess of Cornwall', '', 0, 1, 0, '', '', ''),
  1887. (5437, 'Minor Royalty', 5059, 0, NULL, 'collectables_royalty_minor-royalty', 'Collectables :: Royalty :: Minor Royalty', '', 0, 1, 0, '', '', ''),
  1888. (5438, 'Other Royalty', 5059, 0, NULL, 'collectables_royalty_other-royalty', 'Collectables :: Royalty :: Other Royalty', '', 0, 1, 0, '', '', ''),
  1889. (5439, 'Alien/ Aliens', 5060, 0, NULL, 'collectables_science-fiction_alien-aliens', 'Collectables :: Science Fiction :: Alien/ Aliens', '', 0, 1, 0, '', '', ''),
  1890. (5440, 'Babylon 5', 5060, 0, NULL, 'collectables_science-fiction_babylon-5', 'Collectables :: Science Fiction :: Babylon 5', '', 0, 1, 0, '', '', ''),
  1891. (5441, 'Battlestar Galactica', 5060, 0, NULL, 'collectables_science-fiction_battlestar-galactica', 'Collectables :: Science Fiction :: Battlestar Galactica', '', 0, 1, 0, '', '', ''),
  1892. (5442, 'Blake's Seven', 5060, 0, NULL, 'collectables_science-fiction_blakes-seven', 'Collectables :: Science Fiction :: Blake's Seven', '', 0, 1, 0, '', '', ''),
  1893. (5443, 'Captain Scarlet', 5060, 0, NULL, 'collectables_science-fiction_captain-scarlet', 'Collectables :: Science Fiction :: Captain Scarlet', '', 0, 1, 0, '', '', ''),
  1894. (5444, 'Doctor Who', 5060, 0, NULL, 'collectables_science-fiction_doctor-who', 'Collectables :: Science Fiction :: Doctor Who', '', 0, 1, 0, '', '', ''),
  1895. (5445, 'Farscape', 5060, 0, NULL, 'collectables_science-fiction_farscape', 'Collectables :: Science Fiction :: Farscape', '', 0, 1, 0, '', '', ''),
  1896. (5446, 'Godzilla', 5060, 0, NULL, 'collectables_science-fiction_godzilla', 'Collectables :: Science Fiction :: Godzilla', '', 0, 1, 0, '', '', ''),
  1897. (5447, 'Outer Limits', 5060, 0, NULL, 'collectables_science-fiction_outer-limits', 'Collectables :: Science Fiction :: Outer Limits', '', 0, 1, 0, '', '', ''),
  1898. (5448, 'Planet of the Apes', 5060, 0, NULL, 'collectables_science-fiction_planet-of-the-apes', 'Collectables :: Science Fiction :: Planet of the Apes', '', 0, 1, 0, '', '', ''),
  1899. (5449, 'Red Dwarf', 5060, 0, NULL, 'collectables_science-fiction_red-dwarf', 'Collectables :: Science Fiction :: Red Dwarf', '', 0, 1, 0, '', '', ''),
  1900. (5450, 'Space 1999', 5060, 0, NULL, 'collectables_science-fiction_space-1999', 'Collectables :: Science Fiction :: Space 1999', '', 0, 1, 0, '', '', ''),
  1901. (5451, 'Stargate', 5060, 0, NULL, 'collectables_science-fiction_stargate', 'Collectables :: Science Fiction :: Stargate', '', 0, 1, 0, '', '', ''),
  1902. (5452, 'Star Trek', 5060, 0, NULL, 'collectables_science-fiction_star-trek', 'Collectables :: Science Fiction :: Star Trek', '', 0, 1, 0, '', '', ''),
  1903. (5453, 'Star Wars', 5060, 0, NULL, 'collectables_science-fiction_star-wars', 'Collectables :: Science Fiction :: Star Wars', '', 0, 1, 0, '', '', ''),
  1904. (5454, 'Thunderbirds', 5060, 0, NULL, 'collectables_science-fiction_thunderbirds', 'Collectables :: Science Fiction :: Thunderbirds', '', 0, 1, 0, '', '', ''),
  1905. (5455, 'X-Files', 5060, 0, NULL, 'collectables_science-fiction_x-files', 'Collectables :: Science Fiction :: X-Files', '', 0, 1, 0, '', '', ''),
  1906. (5456, 'Other Science Fiction', 5060, 0, NULL, 'collectables_science-fiction_other-science-fiction', 'Collectables :: Science Fiction :: Other Science Fiction', '', 0, 1, 0, '', '', ''),
  1907. (5457, 'Engineering/ Surveying', 5061, 0, NULL, 'collectables_scientific_engineering-surveying', 'Collectables :: Scientific :: Engineering/ Surveying', '', 0, 1, 0, '', '', ''),
  1908. (5458, 'Medical', 5061, 0, NULL, 'collectables_scientific_medical', 'Collectables :: Scientific :: Medical', '', 0, 1, 0, '', '', ''),
  1909. (5459, 'Optical', 5061, 0, NULL, 'collectables_scientific_optical', 'Collectables :: Scientific :: Optical', '', 0, 1, 0, '', '', ''),
  1910. (5460, 'Pharmacy/ Chemist/ Apothecary', 5061, 0, NULL, 'collectables_scientific_pharmacy-chemist-apothecary', 'Collectables :: Scientific :: Pharmacy/ Chemist/ Apothecary', '', 0, 1, 0, '', '', ''),
  1911. (5461, 'Scientific Instruments', 5061, 0, NULL, 'collectables_scientific_scientific-instruments', 'Collectables :: Scientific :: Scientific Instruments', '', 0, 1, 0, '', '', ''),
  1912. (5462, 'Space Exploration', 5061, 0, NULL, 'collectables_scientific_space-exploration', 'Collectables :: Scientific :: Space Exploration', '', 0, 1, 0, '', '', ''),
  1913. (5463, 'Other Scientific', 5061, 0, NULL, 'collectables_scientific_other-scientific', 'Collectables :: Scientific :: Other Scientific', '', 0, 1, 0, '', '', ''),
  1914. (5464, 'Bobbins', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_bobbins', 'Collectables :: Sewing/ Fabric/ Textiles :: Bobbins', '', 0, 1, 0, '', '', ''),
  1915. (5465, 'Boxes/ Baskets', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_boxes-baskets', 'Collectables :: Sewing/ Fabric/ Textiles :: Boxes/ Baskets', '', 0, 1, 0, '', '', ''),
  1916. (5466, 'Buttons', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_buttons', 'Collectables :: Sewing/ Fabric/ Textiles :: Buttons', '', 0, 1, 0, '', '', ''),
  1917. (5467, 'Button Hooks', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_button-hooks', 'Collectables :: Sewing/ Fabric/ Textiles :: Button Hooks', '', 0, 1, 0, '', '', ''),
  1918. (5468, 'Fabric/ Textiles', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_fabric-textiles', 'Collectables :: Sewing/ Fabric/ Textiles :: Fabric/ Textiles', '', 0, 1, 0, '', '', ''),
  1919. (5469, 'Needles/ Cases', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_needles-cases', 'Collectables :: Sewing/ Fabric/ Textiles :: Needles/ Cases', '', 0, 1, 0, '', '', ''),
  1920. (5470, 'Patterns', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_patterns', 'Collectables :: Sewing/ Fabric/ Textiles :: Patterns', '', 0, 1, 0, '', '', ''),
  1921. (5471, 'Pin Cushions', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_pin-cushions', 'Collectables :: Sewing/ Fabric/ Textiles :: Pin Cushions', '', 0, 1, 0, '', '', ''),
  1922. (5472, 'Sewing Machines', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_sewing-machines', 'Collectables :: Sewing/ Fabric/ Textiles :: Sewing Machines', '', 0, 1, 0, '', '', ''),
  1923. (5473, 'Thimbles', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_thimbles', 'Collectables :: Sewing/ Fabric/ Textiles :: Thimbles', '', 0, 1, 0, '', '', ''),
  1924. (5474, 'Thimble Boxes/ Holders', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_thimble-boxes-holders', 'Collectables :: Sewing/ Fabric/ Textiles :: Thimble Boxes/ Holders', '', 0, 1, 0, '', '', ''),
  1925. (5475, 'Tools/ Scissors/ Measures', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_tools-scissors-measures', 'Collectables :: Sewing/ Fabric/ Textiles :: Tools/ Scissors/ Measures', '', 0, 1, 0, '', '', ''),
  1926. (5476, 'Other Sewing/ Fabric/ Textiles', 5062, 0, NULL, 'collectables_sewing-fabric-textiles_other-sewing-fabric-textiles', 'Collectables :: Sewing/ Fabric/ Textiles :: Other Sewing/ Fabric/ Textiles', '', 0, 1, 0, '', '', ''),
  1927. (5477, 'Theatre Brochures', 5063, 0, NULL, 'collectables_theatre-opera-ballet_theatre-brochures', 'Collectables :: Theatre/ Opera/ Ballet :: Theatre Brochures', '', 0, 1, 0, '', '', ''),
  1928. (5478, 'Theatre Handbills/ Flyers', 5063, 0, NULL, 'collectables_theatre-opera-ballet_theatre-handbills-flyers', 'Collectables :: Theatre/ Opera/ Ballet :: Theatre Handbills/ Flyers', '', 0, 1, 0, '', '', ''),
  1929. (5479, 'Theatre Posters', 5063, 0, NULL, 'collectables_theatre-opera-ballet_theatre-posters', 'Collectables :: Theatre/ Opera/ Ballet :: Theatre Posters', '', 0, 1, 0, '', '', ''),
  1930. (5480, 'Theatre Programmes', 5063, 0, NULL, 'collectables_theatre-opera-ballet_theatre-programmes', 'Collectables :: Theatre/ Opera/ Ballet :: Theatre Programmes', '', 0, 1, 0, '', '', ''),
  1931. (5481, 'Theatre/ Drama Magazines', 5063, 0, NULL, 'collectables_theatre-opera-ballet_theatre-drama-magazines', 'Collectables :: Theatre/ Opera/ Ballet :: Theatre/ Drama Magazines', '', 0, 1, 0, '', '', ''),
  1932. (5482, 'Ballet/ Dance', 5063, 0, NULL, 'collectables_theatre-opera-ballet_ballet-dance', 'Collectables :: Theatre/ Opera/ Ballet :: Ballet/ Dance', '', 0, 1, 0, '', '', ''),
  1933. (5483, 'Opera', 5063, 0, NULL, 'collectables_theatre-opera-ballet_opera', 'Collectables :: Theatre/ Opera/ Ballet :: Opera', '', 0, 1, 0, '', '', ''),
  1934. (5484, 'Other Theatre', 5063, 0, NULL, 'collectables_theatre-opera-ballet_other-theatre', 'Collectables :: Theatre/ Opera/ Ballet :: Other Theatre', '', 0, 1, 0, '', '', ''),
  1935. (5485, 'Advertising', 5064, 0, NULL, 'collectables_tobacciana-smoking_advertising', 'Collectables :: Tobacciana/ Smoking :: Advertising', '', 0, 1, 0, '', '', ''),
  1936. (5486, 'Ashtrays', 5064, 0, NULL, 'collectables_tobacciana-smoking_ashtrays', 'Collectables :: Tobacciana/ Smoking :: Ashtrays', '', 0, 1, 0, '', '', ''),
  1937. (5487, 'Cigars/ Cigar Cutters', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigars-cigar-cutters', 'Collectables :: Tobacciana/ Smoking :: Cigars/ Cigar Cutters', '', 0, 1, 0, '', '', ''),
  1938. (5488, 'Cigarette Boxes', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigarette-boxes', 'Collectables :: Tobacciana/ Smoking :: Cigarette Boxes', '', 0, 1, 0, '', '', ''),
  1939. (5489, 'Cigarette Cases', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigarette-cases', 'Collectables :: Tobacciana/ Smoking :: Cigarette Cases', '', 0, 1, 0, '', '', ''),
  1940. (5490, 'Cigarette Holders', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigarette-holders', 'Collectables :: Tobacciana/ Smoking :: Cigarette Holders', '', 0, 1, 0, '', '', ''),
  1941. (5491, 'Cigarette Lighters', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigarette-lighters', 'Collectables :: Tobacciana/ Smoking :: Cigarette Lighters', '', 0, 1, 0, '', '', ''),
  1942. (5492, 'Cigarette Packets', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigarette-packets', 'Collectables :: Tobacciana/ Smoking :: Cigarette Packets', '', 0, 1, 0, '', '', ''),
  1943. (5493, 'Cigarette Tins', 5064, 0, NULL, 'collectables_tobacciana-smoking_cigarette-tins', 'Collectables :: Tobacciana/ Smoking :: Cigarette Tins', '', 0, 1, 0, '', '', ''),
  1944. (5494, 'Cutters', 5064, 0, NULL, 'collectables_tobacciana-smoking_cutters', 'Collectables :: Tobacciana/ Smoking :: Cutters', '', 0, 1, 0, '', '', ''),
  1945. (5495, 'Match Strikers/ Holders', 5064, 0, NULL, 'collectables_tobacciana-smoking_match-strikers-holders', 'Collectables :: Tobacciana/ Smoking :: Match Strikers/ Holders', '', 0, 1, 0, '', '', ''),
  1946. (5496, 'Matchboxes/ Matchbooks', 5064, 0, NULL, 'collectables_tobacciana-smoking_matchboxes-matchbooks', 'Collectables :: Tobacciana/ Smoking :: Matchboxes/ Matchbooks', '', 0, 1, 0, '', '', ''),
  1947. (5497, 'Pipes', 5064, 0, NULL, 'collectables_tobacciana-smoking_pipes', 'Collectables :: Tobacciana/ Smoking :: Pipes', '', 0, 1, 0, '', '', ''),
  1948. (5498, 'Rizlas', 5064, 0, NULL, 'collectables_tobacciana-smoking_rizlas', 'Collectables :: Tobacciana/ Smoking :: Rizlas', '', 0, 1, 0, '', '', ''),
  1949. (5499, 'Rolling Machines', 5064, 0, NULL, 'collectables_tobacciana-smoking_rolling-machines', 'Collectables :: Tobacciana/ Smoking :: Rolling Machines', '', 0, 1, 0, '', '', ''),
  1950. (5500, 'Shisha Pipes', 5064, 0, NULL, 'collectables_tobacciana-smoking_shisha-pipes', 'Collectables :: Tobacciana/ Smoking :: Shisha Pipes', '', 0, 1, 0, '', '', ''),
  1951. (5501, 'Snuff Boxes', 5064, 0, NULL, 'collectables_tobacciana-smoking_snuff-boxes', 'Collectables :: Tobacciana/ Smoking :: Snuff Boxes', '', 0, 1, 0, '', '', ''),
  1952. (5502, 'Tobacco Jars', 5064, 0, NULL, 'collectables_tobacciana-smoking_tobacco-jars', 'Collectables :: Tobacciana/ Smoking :: Tobacco Jars', '', 0, 1, 0, '', '', ''),
  1953. (5503, 'Tobacco Tins', 5064, 0, NULL, 'collectables_tobacciana-smoking_tobacco-tins', 'Collectables :: Tobacciana/ Smoking :: Tobacco Tins', '', 0, 1, 0, '', '', ''),
  1954. (5504, 'Vestas', 5064, 0, NULL, 'collectables_tobacciana-smoking_vestas', 'Collectables :: Tobacciana/ Smoking :: Vestas', '', 0, 1, 0, '', '', ''),
  1955. (5505, 'Other Tobacciana/ Smoking', 5064, 0, NULL, 'collectables_tobacciana-smoking_other-tobacciana-smoking', 'Collectables :: Tobacciana/ Smoking :: Other Tobacciana/ Smoking', '', 0, 1, 0, '', '', ''),
  1956. (5506, 'Keys', 5065, 0, NULL, 'collectables_tools-hardware_keys', 'Collectables :: Tools & Hardware :: Keys', '', 0, 1, 0, '', '', ''),
  1957. (5507, 'Locks', 5065, 0, NULL, 'collectables_tools-hardware_locks', 'Collectables :: Tools & Hardware :: Locks', '', 0, 1, 0, '', '', ''),
  1958. (5508, 'Scales', 5065, 0, NULL, 'collectables_tools-hardware_scales', 'Collectables :: Tools & Hardware :: Scales', '', 0, 1, 0, '', '', ''),
  1959. (5509, 'Tools', 5065, 0, NULL, 'collectables_tools-hardware_tools', 'Collectables :: Tools & Hardware :: Tools', '', 0, 1, 0, '', '', ''),
  1960. (5510, 'Toolboxes', 5065, 0, NULL, 'collectables_tools-hardware_toolboxes', 'Collectables :: Tools & Hardware :: Toolboxes', '', 0, 1, 0, '', '', ''),
  1961. (5511, 'Other Tools & Hardware', 5065, 0, NULL, 'collectables_tools-hardware_other-tools-hardware', 'Collectables :: Tools & Hardware :: Other Tools & Hardware', '', 0, 1, 0, '', '', ''),
  1962. (5512, 'Animation/ CCG', 5066, 0, NULL, 'collectables_trading-cards-ccg_animation-ccg', 'Collectables :: Trading Cards/ CCG :: Animation/ CCG', '', 0, 1, 0, '', '', ''),
  1963. (5513, 'Films', 5066, 0, NULL, 'collectables_trading-cards-ccg_films', 'Collectables :: Trading Cards/ CCG :: Films', '', 0, 1, 0, '', '', ''),
  1964. (5514, 'Puzzles', 5066, 0, NULL, 'collectables_trading-cards-ccg_puzzles', 'Collectables :: Trading Cards/ CCG :: Puzzles', '', 0, 1, 0, '', '', ''),
  1965. (5515, 'TV Series', 5066, 0, NULL, 'collectables_trading-cards-ccg_tv-series', 'Collectables :: Trading Cards/ CCG :: TV Series', '', 0, 1, 0, '', '', ''),
  1966. (5516, 'Collections/ Mixed Lots', 5066, 0, NULL, 'collectables_trading-cards-ccg_collections-mixed-lots', 'Collectables :: Trading Cards/ CCG :: Collections/ Mixed Lots', '', 0, 1, 0, '', '', ''),
  1967. (5517, 'Stickers', 5066, 0, NULL, 'collectables_trading-cards-ccg_stickers', 'Collectables :: Trading Cards/ CCG :: Stickers', '', 0, 1, 0, '', '', ''),
  1968. (5518, 'Trading Card Accessories', 5066, 0, NULL, 'collectables_trading-cards-ccg_trading-card-accessories', 'Collectables :: Trading Cards/ CCG :: Trading Card Accessories', '', 0, 1, 0, '', '', ''),
  1969. (5519, 'Other Trading Cards/ CCG', 5066, 0, NULL, 'collectables_trading-cards-ccg_other-trading-cards-ccg', 'Collectables :: Trading Cards/ CCG :: Other Trading Cards/ CCG', '', 0, 1, 0, '', '', ''),
  1970. (5520, 'Finescale', 5067, 0, NULL, 'collectables_trains-railway-models_finescale', 'Collectables :: Trains/ Railway Models :: Finescale', '', 0, 1, 0, '', '', ''),
  1971. (5521, 'G Gauge', 5067, 0, NULL, 'collectables_trains-railway-models_g-gauge', 'Collectables :: Trains/ Railway Models :: G Gauge', '', 0, 1, 0, '', '', ''),
  1972. (5522, 'HO Gauge', 5067, 0, NULL, 'collectables_trains-railway-models_ho-gauge', 'Collectables :: Trains/ Railway Models :: HO Gauge', '', 0, 1, 0, '', '', ''),
  1973. (5523, 'N Gauge', 5067, 0, NULL, 'collectables_trains-railway-models_n-gauge', 'Collectables :: Trains/ Railway Models :: N Gauge', '', 0, 1, 0, '', '', ''),
  1974. (5524, 'O Gauge', 5067, 0, NULL, 'collectables_trains-railway-models_o-gauge', 'Collectables :: Trains/ Railway Models :: O Gauge', '', 0, 1, 0, '', '', ''),
  1975. (5525, 'OO Gauge', 5067, 0, NULL, 'collectables_trains-railway-models_oo-gauge', 'Collectables :: Trains/ Railway Models :: OO Gauge', '', 0, 1, 0, '', '', ''),
  1976. (5526, 'OO9/ HOe', 5067, 0, NULL, 'collectables_trains-railway-models_oo9-hoe', 'Collectables :: Trains/ Railway Models :: OO9/ HOe', '', 0, 1, 0, '', '', ''),
  1977. (5527, 'TT Gauge (3mm Scale)', 5067, 0, NULL, 'collectables_trains-railway-models_tt-gauge-3mm-scale', 'Collectables :: Trains/ Railway Models :: TT Gauge (3mm Scale)', '', 0, 1, 0, '', '', ''),
  1978. (5528, 'Z Gauge', 5067, 0, NULL, 'collectables_trains-railway-models_z-gauge', 'Collectables :: Trains/ Railway Models :: Z Gauge', '', 0, 1, 0, '', '', ''),
  1979. (5529, 'Catalogues & Magazines', 5067, 0, NULL, 'collectables_trains-railway-models_catalogues-magazines', 'Collectables :: Trains/ Railway Models :: Catalogues & Magazines', '', 0, 1, 0, '', '', ''),
  1980. (5530, 'Other Trains/ Railway Models', 5067, 0, NULL, 'collectables_trains-railway-models_other-trains-railway-models', 'Collectables :: Trains/ Railway Models :: Other Trains/ Railway Models', '', 0, 1, 0, '', '', ''),
  1981. (5531, 'Aeronautica', 5068, 0, NULL, 'collectables_transportation_aeronautica', 'Collectables :: Transportation :: Aeronautica', '', 0, 1, 0, '', '', ''),
  1982. (5532, 'Agricultural/ Industrial', 5068, 0, NULL, 'collectables_transportation_agricultural-industrial', 'Collectables :: Transportation :: Agricultural/ Industrial', '', 0, 1, 0, '', '', ''),
  1983. (5533, 'Bicycle', 5068, 0, NULL, 'collectables_transportation_bicycle', 'Collectables :: Transportation :: Bicycle', '', 0, 1, 0, '', '', ''),
  1984. (5534, 'Bus/ Coach', 5068, 0, NULL, 'collectables_transportation_bus-coach', 'Collectables :: Transportation :: Bus/ Coach', '', 0, 1, 0, '', '', ''),
  1985. (5535, 'Motorcycle/ Scooter', 5068, 0, NULL, 'collectables_transportation_motorcycle-scooter', 'Collectables :: Transportation :: Motorcycle/ Scooter', '', 0, 1, 0, '', '', ''),
  1986. (5536, 'Nautical', 5068, 0, NULL, 'collectables_transportation_nautical', 'Collectables :: Transportation :: Nautical', '', 0, 1, 0, '', '', ''),
  1987. (5537, 'Railwayana', 5068, 0, NULL, 'collectables_transportation_railwayana', 'Collectables :: Transportation :: Railwayana', '', 0, 1, 0, '', '', ''),
  1988. (5538, 'Tramway/ Light Rail', 5068, 0, NULL, 'collectables_transportation_tramway-light-rail', 'Collectables :: Transportation :: Tramway/ Light Rail', '', 0, 1, 0, '', '', ''),
  1989. (5539, 'Trucks/ Lorries/ Vans', 5068, 0, NULL, 'collectables_transportation_trucks-lorries-vans', 'Collectables :: Transportation :: Trucks/ Lorries/ Vans', '', 0, 1, 0, '', '', ''),
  1990. (5540, 'Underground', 5068, 0, NULL, 'collectables_transportation_underground', 'Collectables :: Transportation :: Underground', '', 0, 1, 0, '', '', ''),
  1991. (5541, 'Other Transportation', 5068, 0, NULL, 'collectables_transportation_other-transportation', 'Collectables :: Transportation :: Other Transportation', '', 0, 1, 0, '', '', ''),
  1992. (5542, 'Barber Shop/ Shaving', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_barber-shop-shaving', 'Collectables :: Vanity/ Perfume/ Grooming :: Barber Shop/ Shaving', '', 0, 1, 0, '', '', ''),
  1993. (5543, 'Combs/ Brushes', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_combs-brushes', 'Collectables :: Vanity/ Perfume/ Grooming :: Combs/ Brushes', '', 0, 1, 0, '', '', ''),
  1994. (5544, 'Compacts', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_compacts', 'Collectables :: Vanity/ Perfume/ Grooming :: Compacts', '', 0, 1, 0, '', '', ''),
  1995. (5545, 'Hand Mirrors', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_hand-mirrors', 'Collectables :: Vanity/ Perfume/ Grooming :: Hand Mirrors', '', 0, 1, 0, '', '', ''),
  1996. (5546, 'Hatpins', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_hatpins', 'Collectables :: Vanity/ Perfume/ Grooming :: Hatpins', '', 0, 1, 0, '', '', ''),
  1997. (5547, 'Perfumes', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_perfumes', 'Collectables :: Vanity/ Perfume/ Grooming :: Perfumes', '', 0, 1, 0, '', '', ''),
  1998. (5548, 'Pill/ Trinket Boxes', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_pill-trinket-boxes', 'Collectables :: Vanity/ Perfume/ Grooming :: Pill/ Trinket Boxes', '', 0, 1, 0, '', '', ''),
  1999. (5549, 'Sets/ Trays', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_sets-trays', 'Collectables :: Vanity/ Perfume/ Grooming :: Sets/ Trays', '', 0, 1, 0, '', '', ''),
  2000. (5550, 'Other Vanity/ Grooming', 5069, 0, NULL, 'collectables_vanity-perfume-grooming_other-vanity-grooming', 'Collectables :: Vanity/ Perfume/ Grooming :: Other Vanity/ Grooming', '', 0, 1, 0, '', '', ''),
  2001. (5551, '1940s', 5070, 0, NULL, 'collectables_vintage-retro_1940s', 'Collectables :: Vintage/ Retro :: 1940s', '', 0, 1, 0, '', '', ''),
  2002. (5552, '1950s', 5070, 0, NULL, 'collectables_vintage-retro_1950s', 'Collectables :: Vintage/ Retro :: 1950s', '', 0, 1, 0, '', '', ''),
  2003. (5553, '1960s', 5070, 0, NULL, 'collectables_vintage-retro_1960s', 'Collectables :: Vintage/ Retro :: 1960s', '', 0, 1, 0, '', '', ''),
  2004. (5554, '1970s', 5070, 0, NULL, 'collectables_vintage-retro_1970s', 'Collectables :: Vintage/ Retro :: 1970s', '', 0, 1, 0, '', '', ''),
  2005. (5555, '1980s', 5070, 0, NULL, 'collectables_vintage-retro_1980s', 'Collectables :: Vintage/ Retro :: 1980s', '', 0, 1, 0, '', '', ''),
  2006. (5556, 'Bakelite', 5070, 0, NULL, 'collectables_vintage-retro_bakelite', 'Collectables :: Vintage/ Retro :: Bakelite', '', 0, 1, 0, '', '', ''),
  2007. (5557, 'Plastic', 5070, 0, NULL, 'collectables_vintage-retro_plastic', 'Collectables :: Vintage/ Retro :: Plastic', '', 0, 1, 0, '', '', ''),
  2008. (5558, 'Not That Odd', 5071, 0, NULL, 'collectables_weird-stuff_not-that-odd', 'Collectables :: Weird Stuff :: Not That Odd', '', 0, 1, 0, '', '', ''),
  2009. (5559, 'Slightly Unusual', 5071, 0, NULL, 'collectables_weird-stuff_slightly-unusual', 'Collectables :: Weird Stuff :: Slightly Unusual', '', 0, 1, 0, '', '', ''),
  2010. (5560, 'Unusual', 5071, 0, NULL, 'collectables_weird-stuff_unusual', 'Collectables :: Weird Stuff :: Unusual', '', 0, 1, 0, '', '', ''),
  2011. (5561, 'Rather Strange', 5071, 0, NULL, 'collectables_weird-stuff_rather-strange', 'Collectables :: Weird Stuff :: Rather Strange', '', 0, 1, 0, '', '', ''),
  2012. (5562, 'Really Weird', 5071, 0, NULL, 'collectables_weird-stuff_really-weird', 'Collectables :: Weird Stuff :: Really Weird', '', 0, 1, 0, '', '', ''),
  2013. (5563, 'Totally Bizarre', 5071, 0, NULL, 'collectables_weird-stuff_totally-bizarre', 'Collectables :: Weird Stuff :: Totally Bizarre', '', 0, 1, 0, '', '', ''),
  2014. (5564, 'Great Britain', 3706, 0, NULL, 'stamps_great-britain', 'Stamps :: Great Britain', '', 0, 1, 0, '', '', ''),
  2015. (5565, 'Africa', 3706, 0, NULL, 'stamps_africa', 'Stamps :: Africa', '', 0, 1, 0, '', '', ''),
  2016. (5566, 'Asia', 3706, 0, NULL, 'stamps_asia', 'Stamps :: Asia', '', 0, 1, 0, '', '', ''),
  2017. (5567, 'Australia & Oceania', 3706, 0, NULL, 'stamps_australia-oceania', 'Stamps :: Australia & Oceania', '', 0, 1, 0, '', '', ''),
  2018. (5568, 'British Colonies & Territories', 3706, 0, NULL, 'stamps_british-colonies-territories', 'Stamps :: British Colonies & Territories', '', 0, 1, 0, '', '', ''),
  2019. (5569, 'Caribbean', 3706, 0, NULL, 'stamps_caribbean', 'Stamps :: Caribbean', '', 0, 1, 0, '', '', ''),
  2020. (5570, 'Central & South America', 3706, 0, NULL, 'stamps_central-south-america', 'Stamps :: Central & South America', '', 0, 1, 0, '', '', ''),
  2021. (5571, 'Europe', 3706, 0, NULL, 'stamps_europe', 'Stamps :: Europe', '', 0, 1, 0, '', '', ''),
  2022. (5572, 'Ireland', 3706, 0, NULL, 'stamps_ireland', 'Stamps :: Ireland', '', 0, 1, 0, '', '', ''),
  2023. (5573, 'Middle East', 3706, 0, NULL, 'stamps_middle-east', 'Stamps :: Middle East', '', 0, 1, 0, '', '', ''),
  2024. (5574, 'North America', 3706, 0, NULL, 'stamps_north-america', 'Stamps :: North America', '', 0, 1, 0, '', '', ''),
  2025. (5575, 'United States', 3706, 0, NULL, 'stamps_united-states', 'Stamps :: United States', '', 0, 1, 0, '', '', ''),
  2026. (5576, 'Worldwide', 3706, 0, NULL, 'stamps_worldwide', 'Stamps :: Worldwide', '', 0, 1, 0, '', '', ''),
  2027. (5577, 'Thematics', 3706, 0, NULL, 'stamps_thematics', 'Stamps :: Thematics', '', 0, 1, 0, '', '', ''),
  2028. (5578, 'Philately', 3706, 0, NULL, 'stamps_philately', 'Stamps :: Philately', '', 0, 1, 0, '', '', ''),
  2029. (5579, 'Publications & Supplies', 3706, 0, NULL, 'stamps_publications-supplies', 'Stamps :: Publications & Supplies', '', 0, 1, 0, '', '', ''),
  2030. (5580, 'Other Stamps', 3706, 0, NULL, 'stamps_other-stamps', 'Stamps :: Other Stamps', '', 0, 1, 0, '', '', ''),
  2031. (5581, 'Elizabeth II', 5564, 0, NULL, 'stamps_great-britain_elizabeth-ii', 'Stamps :: Great Britain :: Elizabeth II', '', 0, 1, 0, '', '', ''),
  2032. (5582, 'George VI', 5564, 0, NULL, 'stamps_great-britain_george-vi', 'Stamps :: Great Britain :: George VI', '', 0, 1, 0, '', '', ''),
  2033. (5583, 'Edward VIII', 5564, 0, NULL, 'stamps_great-britain_edward-viii', 'Stamps :: Great Britain :: Edward VIII', '', 0, 1, 0, '', '', ''),
  2034. (5584, 'George V', 5564, 0, NULL, 'stamps_great-britain_george-v', 'Stamps :: Great Britain :: George V', '', 0, 1, 0, '', '', ''),
  2035. (5585, 'Edward VIII', 5564, 0, NULL, 'stamps_great-britain_edward-viii1', 'Stamps :: Great Britain :: Edward VIII', '', 0, 1, 0, '', '', ''),
  2036. (5586, 'Victoria', 5564, 0, NULL, 'stamps_great-britain_victoria', 'Stamps :: Great Britain :: Victoria', '', 0, 1, 0, '', '', ''),
  2037. (5587, 'Booklets', 5564, 0, NULL, 'stamps_great-britain_booklets', 'Stamps :: Great Britain :: Booklets', '', 0, 1, 0, '', '', ''),
  2038. (5588, 'Commemorative', 5564, 0, NULL, 'stamps_great-britain_commemorative', 'Stamps :: Great Britain :: Commemorative', '', 0, 1, 0, '', '', ''),
  2039. (5589, 'Covers', 5564, 0, NULL, 'stamps_great-britain_covers', 'Stamps :: Great Britain :: Covers', '', 0, 1, 0, '', '', ''),
  2040. (5590, 'First Day Covers', 5564, 0, NULL, 'stamps_great-britain_first-day-covers', 'Stamps :: Great Britain :: First Day Covers', '', 0, 1, 0, '', '', ''),
  2041. (5591, 'Fiscals/Revenues', 5564, 0, NULL, 'stamps_great-britain_fiscals-revenues', 'Stamps :: Great Britain :: Fiscals/Revenues', '', 0, 1, 0, '', '', ''),
  2042. (5592, 'Local Issues', 5564, 0, NULL, 'stamps_great-britain_local-issues', 'Stamps :: Great Britain :: Local Issues', '', 0, 1, 0, '', '', ''),
  2043. (5593, 'Officials', 5564, 0, NULL, 'stamps_great-britain_officials', 'Stamps :: Great Britain :: Officials', '', 0, 1, 0, '', '', ''),
  2044. (5594, 'PHQ Cards', 5564, 0, NULL, 'stamps_great-britain_phq-cards', 'Stamps :: Great Britain :: PHQ Cards', '', 0, 1, 0, '', '', ''),
  2045. (5595, 'Plate Block/Multiples', 5564, 0, NULL, 'stamps_great-britain_plate-block-multiples', 'Stamps :: Great Britain :: Plate Block/Multiples', '', 0, 1, 0, '', '', ''),
  2046. (5596, 'Postage Dues', 5564, 0, NULL, 'stamps_great-britain_postage-dues', 'Stamps :: Great Britain :: Postage Dues', '', 0, 1, 0, '', '', ''),
  2047. (5597, 'Postal History', 5564, 0, NULL, 'stamps_great-britain_postal-history', 'Stamps :: Great Britain :: Postal History', '', 0, 1, 0, '', '', ''),
  2048. (5598, 'Presentation Packs', 5564, 0, NULL, 'stamps_great-britain_presentation-packs', 'Stamps :: Great Britain :: Presentation Packs', '', 0, 1, 0, '', '', ''),
  2049. (5599, 'Regional Issues', 5564, 0, NULL, 'stamps_great-britain_regional-issues', 'Stamps :: Great Britain :: Regional Issues', '', 0, 1, 0, '', '', ''),
  2050. (5600, 'Sheets', 5564, 0, NULL, 'stamps_great-britain_sheets', 'Stamps :: Great Britain :: Sheets', '', 0, 1, 0, '', '', ''),
  2051. (5601, 'Collections/Mixture', 5564, 0, NULL, 'stamps_great-britain_collections-mixture', 'Stamps :: Great Britain :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2052. (5602, 'Other British Stamps', 5564, 0, NULL, 'stamps_great-britain_other-british-stamps', 'Stamps :: Great Britain :: Other British Stamps', '', 0, 1, 0, '', '', ''),
  2053. (5603, 'Algeria', 5565, 0, NULL, 'stamps_africa_algeria', 'Stamps :: Africa :: Algeria', '', 0, 1, 0, '', '', ''),
  2054. (5604, 'Angola', 5565, 0, NULL, 'stamps_africa_angola', 'Stamps :: Africa :: Angola', '', 0, 1, 0, '', '', ''),
  2055. (5605, 'Benin', 5565, 0, NULL, 'stamps_africa_benin', 'Stamps :: Africa :: Benin', '', 0, 1, 0, '', '', ''),
  2056. (5606, 'Botswana (1966-Now)', 5565, 0, NULL, 'stamps_africa_botswana-1966-now', 'Stamps :: Africa :: Botswana (1966-Now)', '', 0, 1, 0, '', '', ''),
  2057. (5607, 'Burkina Faso', 5565, 0, NULL, 'stamps_africa_burkina-faso', 'Stamps :: Africa :: Burkina Faso', '', 0, 1, 0, '', '', ''),
  2058. (5608, 'Burundi', 5565, 0, NULL, 'stamps_africa_burundi', 'Stamps :: Africa :: Burundi', '', 0, 1, 0, '', '', ''),
  2059. (5609, 'Cameroon', 5565, 0, NULL, 'stamps_africa_cameroon', 'Stamps :: Africa :: Cameroon', '', 0, 1, 0, '', '', ''),
  2060. (5610, 'Cape Verde', 5565, 0, NULL, 'stamps_africa_cape-verde', 'Stamps :: Africa :: Cape Verde', '', 0, 1, 0, '', '', ''),
  2061. (5611, 'Central African Republic', 5565, 0, NULL, 'stamps_africa_central-african-republic', 'Stamps :: Africa :: Central African Republic', '', 0, 1, 0, '', '', ''),
  2062. (5612, 'Chad', 5565, 0, NULL, 'stamps_africa_chad', 'Stamps :: Africa :: Chad', '', 0, 1, 0, '', '', ''),
  2063. (5613, 'Comoros', 5565, 0, NULL, 'stamps_africa_comoros', 'Stamps :: Africa :: Comoros', '', 0, 1, 0, '', '', ''),
  2064. (5614, 'Congo', 5565, 0, NULL, 'stamps_africa_congo', 'Stamps :: Africa :: Congo', '', 0, 1, 0, '', '', ''),
  2065. (5615, 'Djibouti', 5565, 0, NULL, 'stamps_africa_djibouti', 'Stamps :: Africa :: Djibouti', '', 0, 1, 0, '', '', ''),
  2066. (5616, 'Equatorial Guinea', 5565, 0, NULL, 'stamps_africa_equatorial-guinea', 'Stamps :: Africa :: Equatorial Guinea', '', 0, 1, 0, '', '', ''),
  2067. (5617, 'Eritrea', 5565, 0, NULL, 'stamps_africa_eritrea', 'Stamps :: Africa :: Eritrea', '', 0, 1, 0, '', '', ''),
  2068. (5618, 'Ethiopia', 5565, 0, NULL, 'stamps_africa_ethiopia', 'Stamps :: Africa :: Ethiopia', '', 0, 1, 0, '', '', ''),
  2069. (5619, 'Gabon', 5565, 0, NULL, 'stamps_africa_gabon', 'Stamps :: Africa :: Gabon', '', 0, 1, 0, '', '', ''),
  2070. (5620, 'Gambia (1965-Now)', 5565, 0, NULL, 'stamps_africa_gambia-1965-now', 'Stamps :: Africa :: Gambia (1965-Now)', '', 0, 1, 0, '', '', ''),
  2071. (5621, 'Ghana', 5565, 0, NULL, 'stamps_africa_ghana', 'Stamps :: Africa :: Ghana', '', 0, 1, 0, '', '', ''),
  2072. (5622, 'Guinea', 5565, 0, NULL, 'stamps_africa_guinea', 'Stamps :: Africa :: Guinea', '', 0, 1, 0, '', '', ''),
  2073. (5623, 'Guinea-Bissau', 5565, 0, NULL, 'stamps_africa_guinea-bissau', 'Stamps :: Africa :: Guinea-Bissau', '', 0, 1, 0, '', '', ''),
  2074. (5624, 'Ivory Coast', 5565, 0, NULL, 'stamps_africa_ivory-coast', 'Stamps :: Africa :: Ivory Coast', '', 0, 1, 0, '', '', ''),
  2075. (5625, 'Kenya (1963-Now)', 5565, 0, NULL, 'stamps_africa_kenya-1963-now', 'Stamps :: Africa :: Kenya (1963-Now)', '', 0, 1, 0, '', '', ''),
  2076. (5626, 'Lesotho', 5565, 0, NULL, 'stamps_africa_lesotho', 'Stamps :: Africa :: Lesotho', '', 0, 1, 0, '', '', ''),
  2077. (5627, 'Liberia', 5565, 0, NULL, 'stamps_africa_liberia', 'Stamps :: Africa :: Liberia', '', 0, 1, 0, '', '', ''),
  2078. (5628, 'Libya', 5565, 0, NULL, 'stamps_africa_libya', 'Stamps :: Africa :: Libya', '', 0, 1, 0, '', '', ''),
  2079. (5629, 'Madagascar', 5565, 0, NULL, 'stamps_africa_madagascar', 'Stamps :: Africa :: Madagascar', '', 0, 1, 0, '', '', ''),
  2080. (5630, 'Malawi (1964-Now)', 5565, 0, NULL, 'stamps_africa_malawi-1964-now', 'Stamps :: Africa :: Malawi (1964-Now)', '', 0, 1, 0, '', '', ''),
  2081. (5631, 'Mali', 5565, 0, NULL, 'stamps_africa_mali', 'Stamps :: Africa :: Mali', '', 0, 1, 0, '', '', ''),
  2082. (5632, 'Mauritania', 5565, 0, NULL, 'stamps_africa_mauritania', 'Stamps :: Africa :: Mauritania', '', 0, 1, 0, '', '', ''),
  2083. (5633, 'Morocco', 5565, 0, NULL, 'stamps_africa_morocco', 'Stamps :: Africa :: Morocco', '', 0, 1, 0, '', '', ''),
  2084. (5634, 'Mozambique', 5565, 0, NULL, 'stamps_africa_mozambique', 'Stamps :: Africa :: Mozambique', '', 0, 1, 0, '', '', ''),
  2085. (5635, 'Namibia', 5565, 0, NULL, 'stamps_africa_namibia', 'Stamps :: Africa :: Namibia', '', 0, 1, 0, '', '', ''),
  2086. (5636, 'Niger', 5565, 0, NULL, 'stamps_africa_niger', 'Stamps :: Africa :: Niger', '', 0, 1, 0, '', '', ''),
  2087. (5637, 'Nigeria (1960-Now)', 5565, 0, NULL, 'stamps_africa_nigeria-1960-now', 'Stamps :: Africa :: Nigeria (1960-Now)', '', 0, 1, 0, '', '', ''),
  2088. (5638, 'Rwanda', 5565, 0, NULL, 'stamps_africa_rwanda', 'Stamps :: Africa :: Rwanda', '', 0, 1, 0, '', '', ''),
  2089. (5639, 'Sao Tome & Principe', 5565, 0, NULL, 'stamps_africa_sao-tome-principe', 'Stamps :: Africa :: Sao Tome & Principe', '', 0, 1, 0, '', '', ''),
  2090. (5640, 'Senegal', 5565, 0, NULL, 'stamps_africa_senegal', 'Stamps :: Africa :: Senegal', '', 0, 1, 0, '', '', ''),
  2091. (5641, 'Seychelles (1976-Now)', 5565, 0, NULL, 'stamps_africa_seychelles-1976-now', 'Stamps :: Africa :: Seychelles (1976-Now)', '', 0, 1, 0, '', '', ''),
  2092. (5642, 'Sierra Leone (1961-Now)', 5565, 0, NULL, 'stamps_africa_sierra-leone-1961-now', 'Stamps :: Africa :: Sierra Leone (1961-Now)', '', 0, 1, 0, '', '', ''),
  2093. (5643, 'Somalia', 5565, 0, NULL, 'stamps_africa_somalia', 'Stamps :: Africa :: Somalia', '', 0, 1, 0, '', '', ''),
  2094. (5644, 'South Africa (1961-Now)', 5565, 0, NULL, 'stamps_africa_south-africa-1961-now', 'Stamps :: Africa :: South Africa (1961-Now)', '', 0, 1, 0, '', '', ''),
  2095. (5645, 'Swaziland (1968-Now)', 5565, 0, NULL, 'stamps_africa_swaziland-1968-now', 'Stamps :: Africa :: Swaziland (1968-Now)', '', 0, 1, 0, '', '', ''),
  2096. (5646, 'Tanzania', 5565, 0, NULL, 'stamps_africa_tanzania', 'Stamps :: Africa :: Tanzania', '', 0, 1, 0, '', '', ''),
  2097. (5647, 'Togo', 5565, 0, NULL, 'stamps_africa_togo', 'Stamps :: Africa :: Togo', '', 0, 1, 0, '', '', ''),
  2098. (5648, 'Tunisia', 5565, 0, NULL, 'stamps_africa_tunisia', 'Stamps :: Africa :: Tunisia', '', 0, 1, 0, '', '', ''),
  2099. (5649, 'Uganda (1962-Now)', 5565, 0, NULL, 'stamps_africa_uganda-1962-now', 'Stamps :: Africa :: Uganda (1962-Now)', '', 0, 1, 0, '', '', ''),
  2100. (5650, 'Zambia (1964-Now)', 5565, 0, NULL, 'stamps_africa_zambia-1964-now', 'Stamps :: Africa :: Zambia (1964-Now)', '', 0, 1, 0, '', '', ''),
  2101. (5651, 'Zimbabwe (1965-Now)', 5565, 0, NULL, 'stamps_africa_zimbabwe-1965-now', 'Stamps :: Africa :: Zimbabwe (1965-Now)', '', 0, 1, 0, '', '', ''),
  2102. (5652, 'Collections/Mixture', 5565, 0, NULL, 'stamps_africa_collections-mixture', 'Stamps :: Africa :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2103. (5653, 'Other African Stamps', 5565, 0, NULL, 'stamps_africa_other-african-stamps', 'Stamps :: Africa :: Other African Stamps', '', 0, 1, 0, '', '', ''),
  2104. (5654, 'Armenia', 5566, 0, NULL, 'stamps_asia_armenia', 'Stamps :: Asia :: Armenia', '', 0, 1, 0, '', '', ''),
  2105. (5655, 'Azerbaijan', 5566, 0, NULL, 'stamps_asia_azerbaijan', 'Stamps :: Asia :: Azerbaijan', '', 0, 1, 0, '', '', ''),
  2106. (5656, 'Bangladesh', 5566, 0, NULL, 'stamps_asia_bangladesh', 'Stamps :: Asia :: Bangladesh', '', 0, 1, 0, '', '', ''),
  2107. (5657, 'Bhutan', 5566, 0, NULL, 'stamps_asia_bhutan', 'Stamps :: Asia :: Bhutan', '', 0, 1, 0, '', '', ''),
  2108. (5658, 'Burma/Myanmar (1948-Now)', 5566, 0, NULL, 'stamps_asia_burma-myanmar-1948-now', 'Stamps :: Asia :: Burma/Myanmar (1948-Now)', '', 0, 1, 0, '', '', ''),
  2109. (5659, 'Cambodia', 5566, 0, NULL, 'stamps_asia_cambodia', 'Stamps :: Asia :: Cambodia', '', 0, 1, 0, '', '', ''),
  2110. (5660, 'China', 5566, 0, NULL, 'stamps_asia_china', 'Stamps :: Asia :: China', '', 0, 1, 0, '', '', ''),
  2111. (5661, 'Georgia', 5566, 0, NULL, 'stamps_asia_georgia', 'Stamps :: Asia :: Georgia', '', 0, 1, 0, '', '', ''),
  2112. (5662, 'Hong Kong SAR (1997-Now)', 5566, 0, NULL, 'stamps_asia_hong-kong-sar-1997-now', 'Stamps :: Asia :: Hong Kong SAR (1997-Now)', '', 0, 1, 0, '', '', ''),
  2113. (5663, 'India (1947-Now)', 5566, 0, NULL, 'stamps_asia_india-1947-now', 'Stamps :: Asia :: India (1947-Now)', '', 0, 1, 0, '', '', ''),
  2114. (5664, 'Indonesia', 5566, 0, NULL, 'stamps_asia_indonesia', 'Stamps :: Asia :: Indonesia', '', 0, 1, 0, '', '', ''),
  2115. (5665, 'Japan', 5566, 0, NULL, 'stamps_asia_japan', 'Stamps :: Asia :: Japan', '', 0, 1, 0, '', '', ''),
  2116. (5666, 'Kazakhstan', 5566, 0, NULL, 'stamps_asia_kazakhstan', 'Stamps :: Asia :: Kazakhstan', '', 0, 1, 0, '', '', ''),
  2117. (5667, 'Korea', 5566, 0, NULL, 'stamps_asia_korea', 'Stamps :: Asia :: Korea', '', 0, 1, 0, '', '', ''),
  2118. (5668, 'Kyrgyzstan', 5566, 0, NULL, 'stamps_asia_kyrgyzstan', 'Stamps :: Asia :: Kyrgyzstan', '', 0, 1, 0, '', '', ''),
  2119. (5669, 'Laos', 5566, 0, NULL, 'stamps_asia_laos', 'Stamps :: Asia :: Laos', '', 0, 1, 0, '', '', ''),
  2120. (5670, 'Macau', 5566, 0, NULL, 'stamps_asia_macau', 'Stamps :: Asia :: Macau', '', 0, 1, 0, '', '', ''),
  2121. (5671, 'Malaysia (1963-Now)', 5566, 0, NULL, 'stamps_asia_malaysia-1963-now', 'Stamps :: Asia :: Malaysia (1963-Now)', '', 0, 1, 0, '', '', ''),
  2122. (5672, 'Maldives (1965-Now)', 5566, 0, NULL, 'stamps_asia_maldives-1965-now', 'Stamps :: Asia :: Maldives (1965-Now)', '', 0, 1, 0, '', '', ''),
  2123. (5673, 'Mongolia', 5566, 0, NULL, 'stamps_asia_mongolia', 'Stamps :: Asia :: Mongolia', '', 0, 1, 0, '', '', ''),
  2124. (5674, 'Nepal', 5566, 0, NULL, 'stamps_asia_nepal', 'Stamps :: Asia :: Nepal', '', 0, 1, 0, '', '', ''),
  2125. (5675, 'Pakistan (1947-Now)', 5566, 0, NULL, 'stamps_asia_pakistan-1947-now', 'Stamps :: Asia :: Pakistan (1947-Now)', '', 0, 1, 0, '', '', ''),
  2126. (5676, 'Philippines', 5566, 0, NULL, 'stamps_asia_philippines', 'Stamps :: Asia :: Philippines', '', 0, 1, 0, '', '', ''),
  2127. (5677, 'Singapore (1963-Now)', 5566, 0, NULL, 'stamps_asia_singapore-1963-now', 'Stamps :: Asia :: Singapore (1963-Now)', '', 0, 1, 0, '', '', ''),
  2128. (5678, 'Sri Lanka', 5566, 0, NULL, 'stamps_asia_sri-lanka', 'Stamps :: Asia :: Sri Lanka', '', 0, 1, 0, '', '', ''),
  2129. (5679, 'Taiwan', 5566, 0, NULL, 'stamps_asia_taiwan', 'Stamps :: Asia :: Taiwan', '', 0, 1, 0, '', '', ''),
  2130. (5680, 'Tajikistan', 5566, 0, NULL, 'stamps_asia_tajikistan', 'Stamps :: Asia :: Tajikistan', '', 0, 1, 0, '', '', ''),
  2131. (5681, 'Thailand', 5566, 0, NULL, 'stamps_asia_thailand', 'Stamps :: Asia :: Thailand', '', 0, 1, 0, '', '', ''),
  2132. (5682, 'Timor', 5566, 0, NULL, 'stamps_asia_timor', 'Stamps :: Asia :: Timor', '', 0, 1, 0, '', '', ''),
  2133. (5683, 'Turkmenistan', 5566, 0, NULL, 'stamps_asia_turkmenistan', 'Stamps :: Asia :: Turkmenistan', '', 0, 1, 0, '', '', ''),
  2134. (5684, 'Uzbekistan', 5566, 0, NULL, 'stamps_asia_uzbekistan', 'Stamps :: Asia :: Uzbekistan', '', 0, 1, 0, '', '', ''),
  2135. (5685, 'Vietnam', 5566, 0, NULL, 'stamps_asia_vietnam', 'Stamps :: Asia :: Vietnam', '', 0, 1, 0, '', '', ''),
  2136. (5686, 'Collections/Mixture', 5566, 0, NULL, 'stamps_asia_collections-mixture', 'Stamps :: Asia :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2137. (5687, 'Other Asian Stamps', 5566, 0, NULL, 'stamps_asia_other-asian-stamps', 'Stamps :: Asia :: Other Asian Stamps', '', 0, 1, 0, '', '', ''),
  2138. (5688, 'Australia', 5567, 0, NULL, 'stamps_australia-oceania_australia', 'Stamps :: Australia & Oceania :: Australia', '', 0, 1, 0, '', '', ''),
  2139. (5689, 'Cook Islands (1965-Now)', 5567, 0, NULL, 'stamps_australia-oceania_cook-islands-1965-now', 'Stamps :: Australia & Oceania :: Cook Islands (1965-Now)', '', 0, 1, 0, '', '', ''),
  2140. (5690, 'Fiji (1967-Now)', 5567, 0, NULL, 'stamps_australia-oceania_fiji-1967-now', 'Stamps :: Australia & Oceania :: Fiji (1967-Now)', '', 0, 1, 0, '', '', ''),
  2141. (5691, 'Micronesia', 5567, 0, NULL, 'stamps_australia-oceania_micronesia', 'Stamps :: Australia & Oceania :: Micronesia', '', 0, 1, 0, '', '', ''),
  2142. (5692, 'New Zealand', 5567, 0, NULL, 'stamps_australia-oceania_new-zealand', 'Stamps :: Australia & Oceania :: New Zealand', '', 0, 1, 0, '', '', ''),
  2143. (5693, 'Niue (1974-Now)', 5567, 0, NULL, 'stamps_australia-oceania_niue-1974-now', 'Stamps :: Australia & Oceania :: Niue (1974-Now)', '', 0, 1, 0, '', '', ''),
  2144. (5694, 'Papua New Guinea (1975-Now)', 5567, 0, NULL, 'stamps_australia-oceania_papua-new-guinea-1975-now', 'Stamps :: Australia & Oceania :: Papua New Guinea (1975-Now)', '', 0, 1, 0, '', '', ''),
  2145. (5695, 'Samoa (1962-Now)', 5567, 0, NULL, 'stamps_australia-oceania_samoa-1962-now', 'Stamps :: Australia & Oceania :: Samoa (1962-Now)', '', 0, 1, 0, '', '', ''),
  2146. (5696, 'Solomon Islands (1978-Now)', 5567, 0, NULL, 'stamps_australia-oceania_solomon-islands-1978-now', 'Stamps :: Australia & Oceania :: Solomon Islands (1978-Now)', '', 0, 1, 0, '', '', ''),
  2147. (5697, 'Tokelau Islands', 5567, 0, NULL, 'stamps_australia-oceania_tokelau-islands', 'Stamps :: Australia & Oceania :: Tokelau Islands', '', 0, 1, 0, '', '', ''),
  2148. (5698, 'Tonga (1970-Now)', 5567, 0, NULL, 'stamps_australia-oceania_tonga-1970-now', 'Stamps :: Australia & Oceania :: Tonga (1970-Now)', '', 0, 1, 0, '', '', ''),
  2149. (5699, 'Tuvalu', 5567, 0, NULL, 'stamps_australia-oceania_tuvalu', 'Stamps :: Australia & Oceania :: Tuvalu', '', 0, 1, 0, '', '', ''),
  2150. (5700, 'Vanuatu (1980-Now)', 5567, 0, NULL, 'stamps_australia-oceania_vanuatu-1980-now', 'Stamps :: Australia & Oceania :: Vanuatu (1980-Now)', '', 0, 1, 0, '', '', ''),
  2151. (5701, 'Collections/Mixture', 5567, 0, NULL, 'stamps_australia-oceania_collections-mixture', 'Stamps :: Australia & Oceania :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2152. (5702, 'Other Oceania Stamps', 5567, 0, NULL, 'stamps_australia-oceania_other-oceania-stamps', 'Stamps :: Australia & Oceania :: Other Oceania Stamps', '', 0, 1, 0, '', '', ''),
  2153. (5703, 'Aden (until 1967)', 5568, 0, NULL, 'stamps_british-colonies-territories_aden-until-1967', 'Stamps :: British Colonies & Territories :: Aden (until 1967)', '', 0, 1, 0, '', '', ''),
  2154. (5704, 'Anguilla', 5568, 0, NULL, 'stamps_british-colonies-territories_anguilla', 'Stamps :: British Colonies & Territories :: Anguilla', '', 0, 1, 0, '', '', ''),
  2155. (5705, 'Antigua & Barbuda (until 1981)', 5568, 0, NULL, 'stamps_british-colonies-territories_antigua-barbuda-until-1981', 'Stamps :: British Colonies & Territories :: Antigua & Barbuda (until 1981)', '', 0, 1, 0, '', '', ''),
  2156. (5706, 'Ascension Island', 5568, 0, NULL, 'stamps_british-colonies-territories_ascension-island', 'Stamps :: British Colonies & Territories :: Ascension Island', '', 0, 1, 0, '', '', ''),
  2157. (5707, 'Bahamas (until 1973)', 5568, 0, NULL, 'stamps_british-colonies-territories_bahamas-until-1973', 'Stamps :: British Colonies & Territories :: Bahamas (until 1973)', '', 0, 1, 0, '', '', ''),
  2158. (5708, 'Bahawalpur (until 1947)', 5568, 0, NULL, 'stamps_british-colonies-territories_bahawalpur-until-1947', 'Stamps :: British Colonies & Territories :: Bahawalpur (until 1947)', '', 0, 1, 0, '', '', ''),
  2159. (5709, 'Bahrain (until 1971)', 5568, 0, NULL, 'stamps_british-colonies-territories_bahrain-until-1971', 'Stamps :: British Colonies & Territories :: Bahrain (until 1971)', '', 0, 1, 0, '', '', ''),
  2160. (5710, 'Barbados (until 1966)', 5568, 0, NULL, 'stamps_british-colonies-territories_barbados-until-1966', 'Stamps :: British Colonies & Territories :: Barbados (until 1966)', '', 0, 1, 0, '', '', ''),
  2161. (5711, 'Basutoland (until 1966)', 5568, 0, NULL, 'stamps_british-colonies-territories_basutoland-until-1966', 'Stamps :: British Colonies & Territories :: Basutoland (until 1966)', '', 0, 1, 0, '', '', ''),
  2162. (5712, 'Bechuanaland (until 1966)', 5568, 0, NULL, 'stamps_british-colonies-territories_bechuanaland-until-1966', 'Stamps :: British Colonies & Territories :: Bechuanaland (until 1966)', '', 0, 1, 0, '', '', ''),
  2163. (5713, 'Bermuda', 5568, 0, NULL, 'stamps_british-colonies-territories_bermuda', 'Stamps :: British Colonies & Territories :: Bermuda', '', 0, 1, 0, '', '', ''),
  2164. (5714, 'British Antarctic Territory', 5568, 0, NULL, 'stamps_british-colonies-territories_british-antarctic-territory', 'Stamps :: British Colonies & Territories :: British Antarctic Territory', '', 0, 1, 0, '', '', ''),
  2165. (5715, 'British Guiana (until 1966)', 5568, 0, NULL, 'stamps_british-colonies-territories_british-guiana-until-1966', 'Stamps :: British Colonies & Territories :: British Guiana (until 1966)', '', 0, 1, 0, '', '', ''),
  2166. (5716, 'British Honduras (until 1973)', 5568, 0, NULL, 'stamps_british-colonies-territories_british-honduras-until-1973', 'Stamps :: British Colonies & Territories :: British Honduras (until 1973)', '', 0, 1, 0, '', '', ''),
  2167. (5717, 'British Indian Ocean Territory', 5568, 0, NULL, 'stamps_british-colonies-territories_british-indian-ocean-territory', 'Stamps :: British Colonies & Territories :: British Indian Ocean Territory', '', 0, 1, 0, '', '', ''),
  2168. (5718, 'British KUT', 5568, 0, NULL, 'stamps_british-colonies-territories_british-kut', 'Stamps :: British Colonies & Territories :: British KUT', '', 0, 1, 0, '', '', ''),
  2169. (5719, 'British Levant (until 1922)', 5568, 0, NULL, 'stamps_british-colonies-territories_british-levant-until-1922', 'Stamps :: British Colonies & Territories :: British Levant (until 1922)', '', 0, 1, 0, '', '', ''),
  2170. (5720, 'British Virgin Islands', 5568, 0, NULL, 'stamps_british-colonies-territories_british-virgin-islands', 'Stamps :: British Colonies & Territories :: British Virgin Islands', '', 0, 1, 0, '', '', ''),
  2171. (5721, 'Brunei', 5568, 0, NULL, 'stamps_british-colonies-territories_brunei', 'Stamps :: British Colonies & Territories :: Brunei', '', 0, 1, 0, '', '', ''),
  2172. (5722, 'Burma (until 1948)', 5568, 0, NULL, 'stamps_british-colonies-territories_burma-until-1948', 'Stamps :: British Colonies & Territories :: Burma (until 1948)', '', 0, 1, 0, '', '', ''),
  2173. (5723, 'Cayman Islands', 5568, 0, NULL, 'stamps_british-colonies-territories_cayman-islands', 'Stamps :: British Colonies & Territories :: Cayman Islands', '', 0, 1, 0, '', '', ''),
  2174. (5724, 'Ceylon (until 1948)', 5568, 0, NULL, 'stamps_british-colonies-territories_ceylon-until-1948', 'Stamps :: British Colonies & Territories :: Ceylon (until 1948)', '', 0, 1, 0, '', '', ''),
  2175. (5725, 'Cook Islands (until 1965)', 5568, 0, NULL, 'stamps_british-colonies-territories_cook-islands-until-1965', 'Stamps :: British Colonies & Territories :: Cook Islands (until 1965)', '', 0, 1, 0, '', '', ''),
  2176. (5726, 'Cyprus (until 1960)', 5568, 0, NULL, 'stamps_british-colonies-territories_cyprus-until-1960', 'Stamps :: British Colonies & Territories :: Cyprus (until 1960)', '', 0, 1, 0, '', '', ''),
  2177. (5727, 'Dominica (until 1967)', 5568, 0, NULL, 'stamps_british-colonies-territories_dominica-until-1967', 'Stamps :: British Colonies & Territories :: Dominica (until 1967)', '', 0, 1, 0, '', '', ''),
  2178. (5728, 'Falkland Islands', 5568, 0, NULL, 'stamps_british-colonies-territories_falkland-islands', 'Stamps :: British Colonies & Territories :: Falkland Islands', '', 0, 1, 0, '', '', ''),
  2179. (5729, 'Fiji (until 1967)', 5568, 0, NULL, 'stamps_british-colonies-territories_fiji-until-1967', 'Stamps :: British Colonies & Territories :: Fiji (until 1967)', '', 0, 1, 0, '', '', ''),
  2180. (5730, 'Gambia (until 1965)', 5568, 0, NULL, 'stamps_british-colonies-territories_gambia-until-1965', 'Stamps :: British Colonies & Territories :: Gambia (until 1965)', '', 0, 1, 0, '', '', ''),
  2181. (5731, 'Gibraltar', 5568, 0, NULL, 'stamps_british-colonies-territories_gibraltar', 'Stamps :: British Colonies & Territories :: Gibraltar', '', 0, 1, 0, '', '', ''),
  2182. (5732, 'Gilbert & Ellice (until 1971)', 5568, 0, NULL, 'stamps_british-colonies-territories_gilbert-ellice-until-1971', 'Stamps :: British Colonies & Territories :: Gilbert & Ellice (until 1971)', '', 0, 1, 0, '', '', ''),
  2183. (5733, 'Gold Coast (until 1957)', 5568, 0, NULL, 'stamps_british-colonies-territories_gold-coast-until-1957', 'Stamps :: British Colonies & Territories :: Gold Coast (until 1957)', '', 0, 1, 0, '', '', ''),
  2184. (5734, 'Grenada (until 1974)', 5568, 0, NULL, 'stamps_british-colonies-territories_grenada-until-1974', 'Stamps :: British Colonies & Territories :: Grenada (until 1974)', '', 0, 1, 0, '', '', ''),
  2185. (5735, 'Heligoland', 5568, 0, NULL, 'stamps_british-colonies-territories_heligoland', 'Stamps :: British Colonies & Territories :: Heligoland', '', 0, 1, 0, '', '', ''),
  2186. (5736, 'Hong Kong (until 1997)', 5568, 0, NULL, 'stamps_british-colonies-territories_hong-kong-until-1997', 'Stamps :: British Colonies & Territories :: Hong Kong (until 1997)', '', 0, 1, 0, '', '', ''),
  2187. (5737, 'India (until 1947)', 5568, 0, NULL, 'stamps_british-colonies-territories_india-until-1947', 'Stamps :: British Colonies & Territories :: India (until 1947)', '', 0, 1, 0, '', '', ''),
  2188. (5738, 'Jamaica (until 1962)', 5568, 0, NULL, 'stamps_british-colonies-territories_jamaica-until-1962', 'Stamps :: British Colonies & Territories :: Jamaica (until 1962)', '', 0, 1, 0, '', '', ''),
  2189. (5739, 'Kuwait (until 1961)', 5568, 0, NULL, 'stamps_british-colonies-territories_kuwait-until-1961', 'Stamps :: British Colonies & Territories :: Kuwait (until 1961)', '', 0, 1, 0, '', '', ''),
  2190. (5740, 'Leeward Islands', 5568, 0, NULL, 'stamps_british-colonies-territories_leeward-islands', 'Stamps :: British Colonies & Territories :: Leeward Islands', '', 0, 1, 0, '', '', ''),
  2191. (5741, 'Malaya, Straits Settlements', 5568, 0, NULL, 'stamps_british-colonies-territories_malaya-straits-settlements', 'Stamps :: British Colonies & Territories :: Malaya, Straits Settlements', '', 0, 1, 0, '', '', ''),
  2192. (5742, 'Maldives (until 1965)', 5568, 0, NULL, 'stamps_british-colonies-territories_maldives-until-1965', 'Stamps :: British Colonies & Territories :: Maldives (until 1965)', '', 0, 1, 0, '', '', ''),
  2193. (5743, 'Malta (until 1964)', 5568, 0, NULL, 'stamps_british-colonies-territories_malta-until-1964', 'Stamps :: British Colonies & Territories :: Malta (until 1964)', '', 0, 1, 0, '', '', ''),
  2194. (5744, 'Mauritius', 5568, 0, NULL, 'stamps_british-colonies-territories_mauritius', 'Stamps :: British Colonies & Territories :: Mauritius', '', 0, 1, 0, '', '', ''),
  2195. (5745, 'Montserrat', 5568, 0, NULL, 'stamps_british-colonies-territories_montserrat', 'Stamps :: British Colonies & Territories :: Montserrat', '', 0, 1, 0, '', '', ''),
  2196. (5746, 'Morocco Agencies', 5568, 0, NULL, 'stamps_british-colonies-territories_morocco-agencies', 'Stamps :: British Colonies & Territories :: Morocco Agencies', '', 0, 1, 0, '', '', ''),
  2197. (5747, 'Nauru (until 1968)', 5568, 0, NULL, 'stamps_british-colonies-territories_nauru-until-1968', 'Stamps :: British Colonies & Territories :: Nauru (until 1968)', '', 0, 1, 0, '', '', ''),
  2198. (5748, 'New Hebrides (until 1980)', 5568, 0, NULL, 'stamps_british-colonies-territories_new-hebrides-until-1980', 'Stamps :: British Colonies & Territories :: New Hebrides (until 1980)', '', 0, 1, 0, '', '', ''),
  2199. (5749, 'Nigeria (until 1960)', 5568, 0, NULL, 'stamps_british-colonies-territories_nigeria-until-1960', 'Stamps :: British Colonies & Territories :: Nigeria (until 1960)', '', 0, 1, 0, '', '', ''),
  2200. (5750, 'Niue (until 1974)', 5568, 0, NULL, 'stamps_british-colonies-territories_niue-until-1974', 'Stamps :: British Colonies & Territories :: Niue (until 1974)', '', 0, 1, 0, '', '', ''),
  2201. (5751, 'Norfolk Island', 5568, 0, NULL, 'stamps_british-colonies-territories_norfolk-island', 'Stamps :: British Colonies & Territories :: Norfolk Island', '', 0, 1, 0, '', '', ''),
  2202. (5752, 'North Borneo', 5568, 0, NULL, 'stamps_british-colonies-territories_north-borneo', 'Stamps :: British Colonies & Territories :: North Borneo', '', 0, 1, 0, '', '', ''),
  2203. (5753, 'Northern Rhodesia (until 1964)', 5568, 0, NULL, 'stamps_british-colonies-territories_northern-rhodesia-until-1964', 'Stamps :: British Colonies & Territories :: Northern Rhodesia (until 1964)', '', 0, 1, 0, '', '', ''),
  2204. (5754, 'Nyasaland/British Cent. Africa', 5568, 0, NULL, 'stamps_british-colonies-territories_nyasaland-british-cent-africa', 'Stamps :: British Colonies & Territories :: Nyasaland/British Cent. Africa', '', 0, 1, 0, '', '', ''),
  2205. (5755, 'Palestine (until 1948)', 5568, 0, NULL, 'stamps_british-colonies-territories_palestine-until-1948', 'Stamps :: British Colonies & Territories :: Palestine (until 1948)', '', 0, 1, 0, '', '', ''),
  2206. (5756, 'Papua New Guinea (until 1975)', 5568, 0, NULL, 'stamps_british-colonies-territories_papua-new-guinea-until-1975', 'Stamps :: British Colonies & Territories :: Papua New Guinea (until 1975)', '', 0, 1, 0, '', '', ''),
  2207. (5757, 'Pitcairn Island', 5568, 0, NULL, 'stamps_british-colonies-territories_pitcairn-island', 'Stamps :: British Colonies & Territories :: Pitcairn Island', '', 0, 1, 0, '', '', ''),
  2208. (5758, 'Rhodesia (until 1965)', 5568, 0, NULL, 'stamps_british-colonies-territories_rhodesia-until-1965', 'Stamps :: British Colonies & Territories :: Rhodesia (until 1965)', '', 0, 1, 0, '', '', ''),
  2209. (5759, 'St Helena', 5568, 0, NULL, 'stamps_british-colonies-territories_st-helena', 'Stamps :: British Colonies & Territories :: St Helena', '', 0, 1, 0, '', '', ''),
  2210. (5760, 'St Kitts & Nevis (until 1983)', 5568, 0, NULL, 'stamps_british-colonies-territories_st-kitts-nevis-until-1983', 'Stamps :: British Colonies & Territories :: St Kitts & Nevis (until 1983)', '', 0, 1, 0, '', '', ''),
  2211. (5761, 'St Lucia (1814-1979)', 5568, 0, NULL, 'stamps_british-colonies-territories_st-lucia-1814-1979', 'Stamps :: British Colonies & Territories :: St Lucia (1814-1979)', '', 0, 1, 0, '', '', ''),
  2212. (5762, 'St Vincent & Grenadines (Brit)', 5568, 0, NULL, 'stamps_british-colonies-territories_st-vincent-grenadines-brit', 'Stamps :: British Colonies & Territories :: St Vincent & Grenadines (Brit)', '', 0, 1, 0, '', '', ''),
  2213. (5763, 'Samoa (until 1962)', 5568, 0, NULL, 'stamps_british-colonies-territories_samoa-until-1962', 'Stamps :: British Colonies & Territories :: Samoa (until 1962)', '', 0, 1, 0, '', '', ''),
  2214. (5764, 'Sarawak', 5568, 0, NULL, 'stamps_british-colonies-territories_sarawak', 'Stamps :: British Colonies & Territories :: Sarawak', '', 0, 1, 0, '', '', ''),
  2215. (5765, 'Seychelles (until 1976)', 5568, 0, NULL, 'stamps_british-colonies-territories_seychelles-until-1976', 'Stamps :: British Colonies & Territories :: Seychelles (until 1976)', '', 0, 1, 0, '', '', ''),
  2216. (5766, 'Sierra Leone (1808-1961)', 5568, 0, NULL, 'stamps_british-colonies-territories_sierra-leone-1808-1961', 'Stamps :: British Colonies & Territories :: Sierra Leone (1808-1961)', '', 0, 1, 0, '', '', ''),
  2217. (5767, 'Singapore (1824-1963)', 5568, 0, NULL, 'stamps_british-colonies-territories_singapore-1824-1963', 'Stamps :: British Colonies & Territories :: Singapore (1824-1963)', '', 0, 1, 0, '', '', ''),
  2218. (5768, 'Solomon Islands (1893-1978)', 5568, 0, NULL, 'stamps_british-colonies-territories_solomon-islands-1893-1978', 'Stamps :: British Colonies & Territories :: Solomon Islands (1893-1978)', '', 0, 1, 0, '', '', ''),
  2219. (5769, 'Somaliland Protectorate', 5568, 0, NULL, 'stamps_british-colonies-territories_somaliland-protectorate', 'Stamps :: British Colonies & Territories :: Somaliland Protectorate', '', 0, 1, 0, '', '', ''),
  2220. (5770, 'South Africa (until 1961)', 5568, 0, NULL, 'stamps_british-colonies-territories_south-africa-until-1961', 'Stamps :: British Colonies & Territories :: South Africa (until 1961)', '', 0, 1, 0, '', '', ''),
  2221. (5771, 'South West Africa (until 1990)', 5568, 0, NULL, 'stamps_british-colonies-territories_south-west-africa-until-1990', 'Stamps :: British Colonies & Territories :: South West Africa (until 1990)', '', 0, 1, 0, '', '', ''),
  2222. (5772, 'Swaziland (until 1968)', 5568, 0, NULL, 'stamps_british-colonies-territories_swaziland-until-1968', 'Stamps :: British Colonies & Territories :: Swaziland (until 1968)', '', 0, 1, 0, '', '', ''),
  2223. (5773, 'Tonga (1900-70)', 5568, 0, NULL, 'stamps_british-colonies-territories_tonga-1900-70', 'Stamps :: British Colonies & Territories :: Tonga (1900-70)', '', 0, 1, 0, '', '', ''),
  2224. (5774, 'Trinidad & Tobago (until 1962)', 5568, 0, NULL, 'stamps_british-colonies-territories_trinidad-tobago-until-1962', 'Stamps :: British Colonies & Territories :: Trinidad & Tobago (until 1962)', '', 0, 1, 0, '', '', ''),
  2225. (5775, 'Tristan da Cunha', 5568, 0, NULL, 'stamps_british-colonies-territories_tristan-da-cunha', 'Stamps :: British Colonies & Territories :: Tristan da Cunha', '', 0, 1, 0, '', '', ''),
  2226. (5776, 'Turks & Caicos (until 1976)', 5568, 0, NULL, 'stamps_british-colonies-territories_turks-caicos-until-1976', 'Stamps :: British Colonies & Territories :: Turks & Caicos (until 1976)', '', 0, 1, 0, '', '', ''),
  2227. (5777, 'Zanzibar', 5568, 0, NULL, 'stamps_british-colonies-territories_zanzibar', 'Stamps :: British Colonies & Territories :: Zanzibar', '', 0, 1, 0, '', '', ''),
  2228. (5778, 'Collections/Mixture', 5568, 0, NULL, 'stamps_british-colonies-territories_collections-mixture', 'Stamps :: British Colonies & Territories :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2229. (5779, 'Other Commonwealth Stamps', 5568, 0, NULL, 'stamps_british-colonies-territories_other-commonwealth-stamps', 'Stamps :: British Colonies & Territories :: Other Commonwealth Stamps', '', 0, 1, 0, '', '', ''),
  2230. (5780, 'Antigua & Barbuda (1981-Now)', 5569, 0, NULL, 'stamps_caribbean_antigua-barbuda-1981-now', 'Stamps :: Caribbean :: Antigua & Barbuda (1981-Now)', '', 0, 1, 0, '', '', ''),
  2231. (5781, 'Bahamas (1973-Now)', 5569, 0, NULL, 'stamps_caribbean_bahamas-1973-now', 'Stamps :: Caribbean :: Bahamas (1973-Now)', '', 0, 1, 0, '', '', ''),
  2232. (5782, 'Barbados (1966-Now)', 5569, 0, NULL, 'stamps_caribbean_barbados-1966-now', 'Stamps :: Caribbean :: Barbados (1966-Now)', '', 0, 1, 0, '', '', ''),
  2233. (5783, 'Curacao', 5569, 0, NULL, 'stamps_caribbean_curacao', 'Stamps :: Caribbean :: Curacao', '', 0, 1, 0, '', '', ''),
  2234. (5784, 'Dominica (1967-Now)', 5569, 0, NULL, 'stamps_caribbean_dominica-1967-now', 'Stamps :: Caribbean :: Dominica (1967-Now)', '', 0, 1, 0, '', '', ''),
  2235. (5785, 'Dominican Republic', 5569, 0, NULL, 'stamps_caribbean_dominican-republic', 'Stamps :: Caribbean :: Dominican Republic', '', 0, 1, 0, '', '', ''),
  2236. (5786, 'Grenada (1974-Now)', 5569, 0, NULL, 'stamps_caribbean_grenada-1974-now', 'Stamps :: Caribbean :: Grenada (1974-Now)', '', 0, 1, 0, '', '', ''),
  2237. (5787, 'Haiti', 5569, 0, NULL, 'stamps_caribbean_haiti', 'Stamps :: Caribbean :: Haiti', '', 0, 1, 0, '', '', ''),
  2238. (5788, 'Jamaica (1962-Now)', 5569, 0, NULL, 'stamps_caribbean_jamaica-1962-now', 'Stamps :: Caribbean :: Jamaica (1962-Now)', '', 0, 1, 0, '', '', ''),
  2239. (5789, 'St Kitts & Nevis (1983-Now)', 5569, 0, NULL, 'stamps_caribbean_st-kitts-nevis-1983-now', 'Stamps :: Caribbean :: St Kitts & Nevis (1983-Now)', '', 0, 1, 0, '', '', ''),
  2240. (5790, 'St Lucia (1979-Now)', 5569, 0, NULL, 'stamps_caribbean_st-lucia-1979-now', 'Stamps :: Caribbean :: St Lucia (1979-Now)', '', 0, 1, 0, '', '', ''),
  2241. (5791, 'St Vincent & the Grenadines', 5569, 0, NULL, 'stamps_caribbean_st-vincent-the-grenadines', 'Stamps :: Caribbean :: St Vincent & the Grenadines', '', 0, 1, 0, '', '', ''),
  2242. (5792, 'Trinidad & Tobago (1962-Now)', 5569, 0, NULL, 'stamps_caribbean_trinidad-tobago-1962-now', 'Stamps :: Caribbean :: Trinidad & Tobago (1962-Now)', '', 0, 1, 0, '', '', ''),
  2243. (5793, 'Turks & Caicos Is. (1976-Now)', 5569, 0, NULL, 'stamps_caribbean_turks-caicos-is-1976-now', 'Stamps :: Caribbean :: Turks & Caicos Is. (1976-Now)', '', 0, 1, 0, '', '', ''),
  2244. (5794, 'Collections/Mixture', 5569, 0, NULL, 'stamps_caribbean_collections-mixture', 'Stamps :: Caribbean :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2245. (5795, 'Other Caribbean Stamps', 5569, 0, NULL, 'stamps_caribbean_other-caribbean-stamps', 'Stamps :: Caribbean :: Other Caribbean Stamps', '', 0, 1, 0, '', '', ''),
  2246. (5796, 'Argentina', 5570, 0, NULL, 'stamps_central-south-america_argentina', 'Stamps :: Central & South America :: Argentina', '', 0, 1, 0, '', '', ''),
  2247. (5797, 'Belize (1973-Now)', 5570, 0, NULL, 'stamps_central-south-america_belize-1973-now', 'Stamps :: Central & South America :: Belize (1973-Now)', '', 0, 1, 0, '', '', ''),
  2248. (5798, 'Bolivia', 5570, 0, NULL, 'stamps_central-south-america_bolivia', 'Stamps :: Central & South America :: Bolivia', '', 0, 1, 0, '', '', ''),
  2249. (5799, 'Brazil', 5570, 0, NULL, 'stamps_central-south-america_brazil', 'Stamps :: Central & South America :: Brazil', '', 0, 1, 0, '', '', ''),
  2250. (5800, 'Chile', 5570, 0, NULL, 'stamps_central-south-america_chile', 'Stamps :: Central & South America :: Chile', '', 0, 1, 0, '', '', ''),
  2251. (5801, 'Colombia', 5570, 0, NULL, 'stamps_central-south-america_colombia', 'Stamps :: Central & South America :: Colombia', '', 0, 1, 0, '', '', ''),
  2252. (5802, 'Costa Rica', 5570, 0, NULL, 'stamps_central-south-america_costa-rica', 'Stamps :: Central & South America :: Costa Rica', '', 0, 1, 0, '', '', ''),
  2253. (5803, 'Ecuador', 5570, 0, NULL, 'stamps_central-south-america_ecuador', 'Stamps :: Central & South America :: Ecuador', '', 0, 1, 0, '', '', ''),
  2254. (5804, 'El Salvador', 5570, 0, NULL, 'stamps_central-south-america_el-salvador', 'Stamps :: Central & South America :: El Salvador', '', 0, 1, 0, '', '', ''),
  2255. (5805, 'Guatemala', 5570, 0, NULL, 'stamps_central-south-america_guatemala', 'Stamps :: Central & South America :: Guatemala', '', 0, 1, 0, '', '', ''),
  2256. (5806, 'Guyana', 5570, 0, NULL, 'stamps_central-south-america_guyana', 'Stamps :: Central & South America :: Guyana', '', 0, 1, 0, '', '', ''),
  2257. (5807, 'Honduras', 5570, 0, NULL, 'stamps_central-south-america_honduras', 'Stamps :: Central & South America :: Honduras', '', 0, 1, 0, '', '', ''),
  2258. (5808, 'Nicaragua', 5570, 0, NULL, 'stamps_central-south-america_nicaragua', 'Stamps :: Central & South America :: Nicaragua', '', 0, 1, 0, '', '', ''),
  2259. (5809, 'Panama', 5570, 0, NULL, 'stamps_central-south-america_panama', 'Stamps :: Central & South America :: Panama', '', 0, 1, 0, '', '', ''),
  2260. (5810, 'Paraguay', 5570, 0, NULL, 'stamps_central-south-america_paraguay', 'Stamps :: Central & South America :: Paraguay', '', 0, 1, 0, '', '', ''),
  2261. (5811, 'Peru', 5570, 0, NULL, 'stamps_central-south-america_peru', 'Stamps :: Central & South America :: Peru', '', 0, 1, 0, '', '', ''),
  2262. (5812, 'Suriname', 5570, 0, NULL, 'stamps_central-south-america_suriname', 'Stamps :: Central & South America :: Suriname', '', 0, 1, 0, '', '', ''),
  2263. (5813, 'Uruguay', 5570, 0, NULL, 'stamps_central-south-america_uruguay', 'Stamps :: Central & South America :: Uruguay', '', 0, 1, 0, '', '', ''),
  2264. (5814, 'Venezuela', 5570, 0, NULL, 'stamps_central-south-america_venezuela', 'Stamps :: Central & South America :: Venezuela', '', 0, 1, 0, '', '', ''),
  2265. (5815, 'Collections/Mixture', 5570, 0, NULL, 'stamps_central-south-america_collections-mixture', 'Stamps :: Central & South America :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2266. (5816, 'Other Central & South America', 5570, 0, NULL, 'stamps_central-south-america_other-central-south-america', 'Stamps :: Central & South America :: Other Central & South America', '', 0, 1, 0, '', '', ''),
  2267. (5817, 'Europa CEPT', 5571, 0, NULL, 'stamps_europe_europa-cept', 'Stamps :: Europe :: Europa CEPT', '', 0, 1, 0, '', '', ''),
  2268. (5818, 'Aland', 5571, 0, NULL, 'stamps_europe_aland', 'Stamps :: Europe :: Aland', '', 0, 1, 0, '', '', ''),
  2269. (5819, 'Albania', 5571, 0, NULL, 'stamps_europe_albania', 'Stamps :: Europe :: Albania', '', 0, 1, 0, '', '', ''),
  2270. (5820, 'Andorra', 5571, 0, NULL, 'stamps_europe_andorra', 'Stamps :: Europe :: Andorra', '', 0, 1, 0, '', '', ''),
  2271. (5821, 'Austria', 5571, 0, NULL, 'stamps_europe_austria', 'Stamps :: Europe :: Austria', '', 0, 1, 0, '', '', ''),
  2272. (5822, 'Belarus', 5571, 0, NULL, 'stamps_europe_belarus', 'Stamps :: Europe :: Belarus', '', 0, 1, 0, '', '', ''),
  2273. (5823, 'Belgium & Colonies', 5571, 0, NULL, 'stamps_europe_belgium-colonies', 'Stamps :: Europe :: Belgium & Colonies', '', 0, 1, 0, '', '', ''),
  2274. (5824, 'Bosnia and Herzegovina', 5571, 0, NULL, 'stamps_europe_bosnia-and-herzegovina', 'Stamps :: Europe :: Bosnia and Herzegovina', '', 0, 1, 0, '', '', ''),
  2275. (5825, 'Bulgaria', 5571, 0, NULL, 'stamps_europe_bulgaria', 'Stamps :: Europe :: Bulgaria', '', 0, 1, 0, '', '', ''),
  2276. (5826, 'Croatia', 5571, 0, NULL, 'stamps_europe_croatia', 'Stamps :: Europe :: Croatia', '', 0, 1, 0, '', '', ''),
  2277. (5827, 'Cyprus (1960-Now)', 5571, 0, NULL, 'stamps_europe_cyprus-1960-now', 'Stamps :: Europe :: Cyprus (1960-Now)', '', 0, 1, 0, '', '', ''),
  2278. (5828, 'Czech Republic, Czechoslovakia', 5571, 0, NULL, 'stamps_europe_czech-republic-czechoslovakia', 'Stamps :: Europe :: Czech Republic, Czechoslovakia', '', 0, 1, 0, '', '', ''),
  2279. (5829, 'Denmark/Faroe Islands', 5571, 0, NULL, 'stamps_europe_denmark-faroe-islands', 'Stamps :: Europe :: Denmark/Faroe Islands', '', 0, 1, 0, '', '', ''),
  2280. (5830, 'Estonia', 5571, 0, NULL, 'stamps_europe_estonia', 'Stamps :: Europe :: Estonia', '', 0, 1, 0, '', '', ''),
  2281. (5831, 'Finland', 5571, 0, NULL, 'stamps_europe_finland', 'Stamps :: Europe :: Finland', '', 0, 1, 0, '', '', ''),
  2282. (5832, 'France & Colonies', 5571, 0, NULL, 'stamps_europe_france-colonies', 'Stamps :: Europe :: France & Colonies', '', 0, 1, 0, '', '', ''),
  2283. (5833, 'Germany & Colonies', 5571, 0, NULL, 'stamps_europe_germany-colonies', 'Stamps :: Europe :: Germany & Colonies', '', 0, 1, 0, '', '', ''),
  2284. (5834, 'Greece', 5571, 0, NULL, 'stamps_europe_greece', 'Stamps :: Europe :: Greece', '', 0, 1, 0, '', '', ''),
  2285. (5835, 'Greenland', 5571, 0, NULL, 'stamps_europe_greenland', 'Stamps :: Europe :: Greenland', '', 0, 1, 0, '', '', ''),
  2286. (5836, 'Hungary', 5571, 0, NULL, 'stamps_europe_hungary', 'Stamps :: Europe :: Hungary', '', 0, 1, 0, '', '', ''),
  2287. (5837, 'Iceland', 5571, 0, NULL, 'stamps_europe_iceland', 'Stamps :: Europe :: Iceland', '', 0, 1, 0, '', '', ''),
  2288. (5838, 'Italy', 5571, 0, NULL, 'stamps_europe_italy', 'Stamps :: Europe :: Italy', '', 0, 1, 0, '', '', ''),
  2289. (5839, 'Kosovo', 5571, 0, NULL, 'stamps_europe_kosovo', 'Stamps :: Europe :: Kosovo', '', 0, 1, 0, '', '', ''),
  2290. (5840, 'Latvia', 5571, 0, NULL, 'stamps_europe_latvia', 'Stamps :: Europe :: Latvia', '', 0, 1, 0, '', '', ''),
  2291. (5841, 'Liechtenstein', 5571, 0, NULL, 'stamps_europe_liechtenstein', 'Stamps :: Europe :: Liechtenstein', '', 0, 1, 0, '', '', ''),
  2292. (5842, 'Lithuania', 5571, 0, NULL, 'stamps_europe_lithuania', 'Stamps :: Europe :: Lithuania', '', 0, 1, 0, '', '', ''),
  2293. (5843, 'Luxembourg', 5571, 0, NULL, 'stamps_europe_luxembourg', 'Stamps :: Europe :: Luxembourg', '', 0, 1, 0, '', '', ''),
  2294. (5844, 'Macedonia', 5571, 0, NULL, 'stamps_europe_macedonia', 'Stamps :: Europe :: Macedonia', '', 0, 1, 0, '', '', ''),
  2295. (5845, 'Malta (1964-Now)', 5571, 0, NULL, 'stamps_europe_malta-1964-now', 'Stamps :: Europe :: Malta (1964-Now)', '', 0, 1, 0, '', '', ''),
  2296. (5846, 'Moldova', 5571, 0, NULL, 'stamps_europe_moldova', 'Stamps :: Europe :: Moldova', '', 0, 1, 0, '', '', ''),
  2297. (5847, 'Monaco', 5571, 0, NULL, 'stamps_europe_monaco', 'Stamps :: Europe :: Monaco', '', 0, 1, 0, '', '', ''),
  2298. (5848, 'Montenegro', 5571, 0, NULL, 'stamps_europe_montenegro', 'Stamps :: Europe :: Montenegro', '', 0, 1, 0, '', '', ''),
  2299. (5849, 'Netherlands & Colonies', 5571, 0, NULL, 'stamps_europe_netherlands-colonies', 'Stamps :: Europe :: Netherlands & Colonies', '', 0, 1, 0, '', '', ''),
  2300. (5850, 'Norway', 5571, 0, NULL, 'stamps_europe_norway', 'Stamps :: Europe :: Norway', '', 0, 1, 0, '', '', ''),
  2301. (5851, 'Poland', 5571, 0, NULL, 'stamps_europe_poland', 'Stamps :: Europe :: Poland', '', 0, 1, 0, '', '', ''),
  2302. (5852, 'Portugal & Colonies', 5571, 0, NULL, 'stamps_europe_portugal-colonies', 'Stamps :: Europe :: Portugal & Colonies', '', 0, 1, 0, '', '', ''),
  2303. (5853, 'Romania', 5571, 0, NULL, 'stamps_europe_romania', 'Stamps :: Europe :: Romania', '', 0, 1, 0, '', '', ''),
  2304. (5854, 'Russia & Soviet Union', 5571, 0, NULL, 'stamps_europe_russia-soviet-union', 'Stamps :: Europe :: Russia & Soviet Union', '', 0, 1, 0, '', '', ''),
  2305. (5855, 'San Marino', 5571, 0, NULL, 'stamps_europe_san-marino', 'Stamps :: Europe :: San Marino', '', 0, 1, 0, '', '', ''),
  2306. (5856, 'Serbia', 5571, 0, NULL, 'stamps_europe_serbia', 'Stamps :: Europe :: Serbia', '', 0, 1, 0, '', '', ''),
  2307. (5857, 'Slovakia', 5571, 0, NULL, 'stamps_europe_slovakia', 'Stamps :: Europe :: Slovakia', '', 0, 1, 0, '', '', ''),
  2308. (5858, 'Slovenia', 5571, 0, NULL, 'stamps_europe_slovenia', 'Stamps :: Europe :: Slovenia', '', 0, 1, 0, '', '', ''),
  2309. (5859, 'Spain & Colonies', 5571, 0, NULL, 'stamps_europe_spain-colonies', 'Stamps :: Europe :: Spain & Colonies', '', 0, 1, 0, '', '', ''),
  2310. (5860, 'Sweden', 5571, 0, NULL, 'stamps_europe_sweden', 'Stamps :: Europe :: Sweden', '', 0, 1, 0, '', '', ''),
  2311. (5861, 'Switzerland', 5571, 0, NULL, 'stamps_europe_switzerland', 'Stamps :: Europe :: Switzerland', '', 0, 1, 0, '', '', ''),
  2312. (5862, 'Turkey', 5571, 0, NULL, 'stamps_europe_turkey', 'Stamps :: Europe :: Turkey', '', 0, 1, 0, '', '', ''),
  2313. (5863, 'Ukraine', 5571, 0, NULL, 'stamps_europe_ukraine', 'Stamps :: Europe :: Ukraine', '', 0, 1, 0, '', '', ''),
  2314. (5864, 'Vatican', 5571, 0, NULL, 'stamps_europe_vatican', 'Stamps :: Europe :: Vatican', '', 0, 1, 0, '', '', ''),
  2315. (5865, 'Yugoslavia', 5571, 0, NULL, 'stamps_europe_yugoslavia', 'Stamps :: Europe :: Yugoslavia', '', 0, 1, 0, '', '', ''),
  2316. (5866, 'Collections/Mixture', 5571, 0, NULL, 'stamps_europe_collections-mixture', 'Stamps :: Europe :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2317. (5867, 'Other European Stamps', 5571, 0, NULL, 'stamps_europe_other-european-stamps', 'Stamps :: Europe :: Other European Stamps', '', 0, 1, 0, '', '', ''),
  2318. (5868, 'Afghanistan', 5573, 0, NULL, 'stamps_middle-east_afghanistan', 'Stamps :: Middle East :: Afghanistan', '', 0, 1, 0, '', '', ''),
  2319. (5869, 'Bahrain (1971-Now)', 5573, 0, NULL, 'stamps_middle-east_bahrain-1971-now', 'Stamps :: Middle East :: Bahrain (1971-Now)', '', 0, 1, 0, '', '', ''),
  2320. (5870, 'Egypt', 5573, 0, NULL, 'stamps_middle-east_egypt', 'Stamps :: Middle East :: Egypt', '', 0, 1, 0, '', '', ''),
  2321. (5871, 'Iraq', 5573, 0, NULL, 'stamps_middle-east_iraq', 'Stamps :: Middle East :: Iraq', '', 0, 1, 0, '', '', ''),
  2322. (5872, 'Israel', 5573, 0, NULL, 'stamps_middle-east_israel', 'Stamps :: Middle East :: Israel', '', 0, 1, 0, '', '', ''),
  2323. (5873, 'Jordan', 5573, 0, NULL, 'stamps_middle-east_jordan', 'Stamps :: Middle East :: Jordan', '', 0, 1, 0, '', '', ''),
  2324. (5874, 'Kuwait (1961-Now)', 5573, 0, NULL, 'stamps_middle-east_kuwait-1961-now', 'Stamps :: Middle East :: Kuwait (1961-Now)', '', 0, 1, 0, '', '', ''),
  2325. (5875, 'Lebanon', 5573, 0, NULL, 'stamps_middle-east_lebanon', 'Stamps :: Middle East :: Lebanon', '', 0, 1, 0, '', '', ''),
  2326. (5876, 'Oman', 5573, 0, NULL, 'stamps_middle-east_oman', 'Stamps :: Middle East :: Oman', '', 0, 1, 0, '', '', ''),
  2327. (5877, 'Palestine (1948-Now)', 5573, 0, NULL, 'stamps_middle-east_palestine-1948-now', 'Stamps :: Middle East :: Palestine (1948-Now)', '', 0, 1, 0, '', '', ''),
  2328. (5878, 'Qatar', 5573, 0, NULL, 'stamps_middle-east_qatar', 'Stamps :: Middle East :: Qatar', '', 0, 1, 0, '', '', ''),
  2329. (5879, 'Saudi Arabia', 5573, 0, NULL, 'stamps_middle-east_saudi-arabia', 'Stamps :: Middle East :: Saudi Arabia', '', 0, 1, 0, '', '', ''),
  2330. (5880, 'Syria', 5573, 0, NULL, 'stamps_middle-east_syria', 'Stamps :: Middle East :: Syria', '', 0, 1, 0, '', '', ''),
  2331. (5881, 'United Arab Emirates', 5573, 0, NULL, 'stamps_middle-east_united-arab-emirates', 'Stamps :: Middle East :: United Arab Emirates', '', 0, 1, 0, '', '', ''),
  2332. (5882, 'Yemen', 5573, 0, NULL, 'stamps_middle-east_yemen', 'Stamps :: Middle East :: Yemen', '', 0, 1, 0, '', '', ''),
  2333. (5883, 'Collections/Mixture', 5573, 0, NULL, 'stamps_middle-east_collections-mixture', 'Stamps :: Middle East :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2334. (5884, 'Other Middle Eastern Stamps', 5573, 0, NULL, 'stamps_middle-east_other-middle-eastern-stamps', 'Stamps :: Middle East :: Other Middle Eastern Stamps', '', 0, 1, 0, '', '', ''),
  2335. (5885, 'Canada', 5574, 0, NULL, 'stamps_north-america_canada', 'Stamps :: North America :: Canada', '', 0, 1, 0, '', '', ''),
  2336. (5886, 'Mexico', 5574, 0, NULL, 'stamps_north-america_mexico', 'Stamps :: North America :: Mexico', '', 0, 1, 0, '', '', ''),
  2337. (5887, '19th Century Unused', 5575, 0, NULL, 'stamps_united-states_19th-century-unused', 'Stamps :: United States :: 19th Century Unused', '', 0, 1, 0, '', '', ''),
  2338. (5888, '19th Century Used', 5575, 0, NULL, 'stamps_united-states_19th-century-used', 'Stamps :: United States :: 19th Century Used', '', 0, 1, 0, '', '', ''),
  2339. (5889, '1901-1940 Unused', 5575, 0, NULL, 'stamps_united-states_1901-1940-unused', 'Stamps :: United States :: 1901-1940 Unused', '', 0, 1, 0, '', '', ''),
  2340. (5890, '1941-Now Unused', 5575, 0, NULL, 'stamps_united-states_1941-now-unused', 'Stamps :: United States :: 1941-Now Unused', '', 0, 1, 0, '', '', ''),
  2341. (5891, '1901-Now Used', 5575, 0, NULL, 'stamps_united-states_1901-now-used', 'Stamps :: United States :: 1901-Now Used', '', 0, 1, 0, '', '', ''),
  2342. (5892, 'Back of Book', 5575, 0, NULL, 'stamps_united-states_back-of-book', 'Stamps :: United States :: Back of Book', '', 0, 1, 0, '', '', ''),
  2343. (5893, 'Confederate States', 5575, 0, NULL, 'stamps_united-states_confederate-states', 'Stamps :: United States :: Confederate States', '', 0, 1, 0, '', '', ''),
  2344. (5894, 'Covers', 5575, 0, NULL, 'stamps_united-states_covers', 'Stamps :: United States :: Covers', '', 0, 1, 0, '', '', ''),
  2345. (5895, 'Errors, Freaks & Oddities', 5575, 0, NULL, 'stamps_united-states_errors-freaks-oddities', 'Stamps :: United States :: Errors, Freaks & Oddities', '', 0, 1, 0, '', '', ''),
  2346. (5896, 'Plate Blocks/Multiples', 5575, 0, NULL, 'stamps_united-states_plate-blocks-multiples', 'Stamps :: United States :: Plate Blocks/Multiples', '', 0, 1, 0, '', '', ''),
  2347. (5897, 'Plate Number Coils', 5575, 0, NULL, 'stamps_united-states_plate-number-coils', 'Stamps :: United States :: Plate Number Coils', '', 0, 1, 0, '', '', ''),
  2348. (5898, 'Possessions', 5575, 0, NULL, 'stamps_united-states_possessions', 'Stamps :: United States :: Possessions', '', 0, 1, 0, '', '', ''),
  2349. (5899, 'Postage', 5575, 0, NULL, 'stamps_united-states_postage', 'Stamps :: United States :: Postage', '', 0, 1, 0, '', '', ''),
  2350. (5900, 'Sheets', 5575, 0, NULL, 'stamps_united-states_sheets', 'Stamps :: United States :: Sheets', '', 0, 1, 0, '', '', ''),
  2351. (5901, 'Collections/Mixture', 5575, 0, NULL, 'stamps_united-states_collections-mixture', 'Stamps :: United States :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2352. (5902, 'Other United States Stamps', 5575, 0, NULL, 'stamps_united-states_other-united-states-stamps', 'Stamps :: United States :: Other United States Stamps', '', 0, 1, 0, '', '', ''),
  2353. (5903, 'First Day Covers', 5576, 0, NULL, 'stamps_worldwide_first-day-covers', 'Stamps :: Worldwide :: First Day Covers', '', 0, 1, 0, '', '', ''),
  2354. (5904, 'Omnibus Issues', 5576, 0, NULL, 'stamps_worldwide_omnibus-issues', 'Stamps :: Worldwide :: Omnibus Issues', '', 0, 1, 0, '', '', ''),
  2355. (5905, 'Philatelic Covers', 5576, 0, NULL, 'stamps_worldwide_philatelic-covers', 'Stamps :: Worldwide :: Philatelic Covers', '', 0, 1, 0, '', '', ''),
  2356. (5906, 'Postal History', 5576, 0, NULL, 'stamps_worldwide_postal-history', 'Stamps :: Worldwide :: Postal History', '', 0, 1, 0, '', '', ''),
  2357. (5907, 'United Nations', 5576, 0, NULL, 'stamps_worldwide_united-nations', 'Stamps :: Worldwide :: United Nations', '', 0, 1, 0, '', '', ''),
  2358. (5908, 'World Errors & Misperfs', 5576, 0, NULL, 'stamps_worldwide_world-errors-misperfs', 'Stamps :: Worldwide :: World Errors & Misperfs', '', 0, 1, 0, '', '', ''),
  2359. (5909, 'Collections/Mixture', 5576, 0, NULL, 'stamps_worldwide_collections-mixture', 'Stamps :: Worldwide :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2360. (5910, 'Other World Stamps', 5576, 0, NULL, 'stamps_worldwide_other-world-stamps', 'Stamps :: Worldwide :: Other World Stamps', '', 0, 1, 0, '', '', ''),
  2361. (5911, 'Animal Kingdom', 5577, 0, NULL, 'stamps_thematics_animal-kingdom', 'Stamps :: Thematics :: Animal Kingdom', '', 0, 1, 0, '', '', ''),
  2362. (5912, 'Animation/Cartoons', 5577, 0, NULL, 'stamps_thematics_animation-cartoons', 'Stamps :: Thematics :: Animation/Cartoons', '', 0, 1, 0, '', '', ''),
  2363. (5913, 'Architecture', 5577, 0, NULL, 'stamps_thematics_architecture', 'Stamps :: Thematics :: Architecture', '', 0, 1, 0, '', '', ''),
  2364. (5914, 'Art', 5577, 0, NULL, 'stamps_thematics_art', 'Stamps :: Thematics :: Art', '', 0, 1, 0, '', '', ''),
  2365. (5915, 'Medical & Red Cross', 5577, 0, NULL, 'stamps_thematics_medical-red-cross', 'Stamps :: Thematics :: Medical & Red Cross', '', 0, 1, 0, '', '', ''),
  2366. (5916, 'Military & War', 5577, 0, NULL, 'stamps_thematics_military-war', 'Stamps :: Thematics :: Military & War', '', 0, 1, 0, '', '', ''),
  2367. (5917, 'Music', 5577, 0, NULL, 'stamps_thematics_music', 'Stamps :: Thematics :: Music', '', 0, 1, 0, '', '', ''),
  2368. (5918, 'Nature & Plants', 5577, 0, NULL, 'stamps_thematics_nature-plants', 'Stamps :: Thematics :: Nature & Plants', '', 0, 1, 0, '', '', ''),
  2369. (5919, 'People', 5577, 0, NULL, 'stamps_thematics_people', 'Stamps :: Thematics :: People', '', 0, 1, 0, '', '', ''),
  2370. (5920, 'Royalty', 5577, 0, NULL, 'stamps_thematics_royalty', 'Stamps :: Thematics :: Royalty', '', 0, 1, 0, '', '', ''),
  2371. (5921, 'Science & Technology', 5577, 0, NULL, 'stamps_thematics_science-technology', 'Stamps :: Thematics :: Science & Technology', '', 0, 1, 0, '', '', ''),
  2372. (5922, 'Scouting', 5577, 0, NULL, 'stamps_thematics_scouting', 'Stamps :: Thematics :: Scouting', '', 0, 1, 0, '', '', ''),
  2373. (5923, 'Seasonal & Christmas', 5577, 0, NULL, 'stamps_thematics_seasonal-christmas', 'Stamps :: Thematics :: Seasonal & Christmas', '', 0, 1, 0, '', '', ''),
  2374. (5924, 'Space', 5577, 0, NULL, 'stamps_thematics_space', 'Stamps :: Thematics :: Space', '', 0, 1, 0, '', '', ''),
  2375. (5925, 'Sports', 5577, 0, NULL, 'stamps_thematics_sports', 'Stamps :: Thematics :: Sports', '', 0, 1, 0, '', '', ''),
  2376. (5926, 'Transport', 5577, 0, NULL, 'stamps_thematics_transport', 'Stamps :: Thematics :: Transport', '', 0, 1, 0, '', '', ''),
  2377. (5927, 'Collections/Mixture', 5577, 0, NULL, 'stamps_thematics_collections-mixture', 'Stamps :: Thematics :: Collections/Mixture', '', 0, 1, 0, '', '', ''),
  2378. (5928, 'Other Thematics', 5577, 0, NULL, 'stamps_thematics_other-thematics', 'Stamps :: Thematics :: Other Thematics', '', 0, 1, 0, '', '', ''),
  2379. (5929, 'Cinderellas', 5578, 0, NULL, 'stamps_philately_cinderellas', 'Stamps :: Philately :: Cinderellas', '', 0, 1, 0, '', '', ''),
  2380. (5930, 'Maxi Cards', 5578, 0, NULL, 'stamps_philately_maxi-cards', 'Stamps :: Philately :: Maxi Cards', '', 0, 1, 0, '', '', ''),
  2381. (5931, 'Memorabilia', 5578, 0, NULL, 'stamps_philately_memorabilia', 'Stamps :: Philately :: Memorabilia', '', 0, 1, 0, '', '', ''),
  2382. (5932, 'Postal Stationery', 5578, 0, NULL, 'stamps_philately_postal-stationery', 'Stamps :: Philately :: Postal Stationery', '', 0, 1, 0, '', '', ''),
  2383. (5933, 'Replicas/Repros/Forgeries', 5578, 0, NULL, 'stamps_philately_replicas-repros-forgeries', 'Stamps :: Philately :: Replicas/Repros/Forgeries', '', 0, 1, 0, '', '', ''),
  2384. (5934, 'Other Philately', 5578, 0, NULL, 'stamps_philately_other-philately', 'Stamps :: Philately :: Other Philately', '', 0, 1, 0, '', '', ''),
  2385. (5935, 'Magnifiers & Loupes', 5579, 0, NULL, 'stamps_publications-supplies_magnifiers-loupes', 'Stamps :: Publications & Supplies :: Magnifiers & Loupes', '', 0, 1, 0, '', '', ''),
  2386. (5936, 'Mounts & Hinges', 5579, 0, NULL, 'stamps_publications-supplies_mounts-hinges', 'Stamps :: Publications & Supplies :: Mounts & Hinges', '', 0, 1, 0, '', '', ''),
  2387. (5937, 'Perforation Gauges', 5579, 0, NULL, 'stamps_publications-supplies_perforation-gauges', 'Stamps :: Publications & Supplies :: Perforation Gauges', '', 0, 1, 0, '', '', ''),
  2388. (5938, 'Protective Envelopes', 5579, 0, NULL, 'stamps_publications-supplies_protective-envelopes', 'Stamps :: Publications & Supplies :: Protective Envelopes', '', 0, 1, 0, '', '', ''),
  2389. (5939, 'Publications', 5579, 0, NULL, 'stamps_publications-supplies_publications', 'Stamps :: Publications & Supplies :: Publications', '', 0, 1, 0, '', '', ''),
  2390. (5940, 'Stamp Albums', 5579, 0, NULL, 'stamps_publications-supplies_stamp-albums', 'Stamps :: Publications & Supplies :: Stamp Albums', '', 0, 1, 0, '', '', ''),
  2391. (5941, 'Other Publications & Supplies', 5579, 0, NULL, 'stamps_publications-supplies_other-publications-supplies', 'Stamps :: Publications & Supplies :: Other Publications & Supplies', '', 0, 1, 0, '', '', ''),
  2392. (5942, 'Dolls', 3689, 0, NULL, 'dolls-bears_dolls', 'Dolls & Bears :: Dolls', '', 0, 1, 0, '', '', ''),
  2393. (5943, 'Doll Accessories', 3689, 0, NULL, 'dolls-bears_doll-accessories', 'Dolls & Bears :: Doll Accessories', '', 0, 1, 0, '', '', ''),
  2394. (5944, 'Dolls' Houses', 3689, 0, NULL, 'dolls-bears_dolls-houses', 'Dolls & Bears :: Dolls' Houses', '', 0, 1, 0, '', '', ''),
  2395. (5945, 'Dolls' House Miniatures', 3689, 0, NULL, 'dolls-bears_dolls-house-miniatures', 'Dolls & Bears :: Dolls' House Miniatures', '', 0, 1, 0, '', '', ''),
  2396. (5946, 'Bears', 3689, 0, NULL, 'dolls-bears_bears', 'Dolls & Bears :: Bears', '', 0, 1, 0, '', '', ''),
  2397. (5947, 'Antique (Pre-1920)', 5942, 0, NULL, 'dolls-bears_dolls_antique-pre-1920', 'Dolls & Bears :: Dolls :: Antique (Pre-1920)', '', 0, 1, 0, '', '', ''),
  2398. (5948, 'Artist', 5942, 0, NULL, 'dolls-bears_dolls_artist', 'Dolls & Bears :: Dolls :: Artist', '', 0, 1, 0, '', '', ''),
  2399. (5949, 'Barbie', 5942, 0, NULL, 'dolls-bears_dolls_barbie', 'Dolls & Bears :: Dolls :: Barbie', '', 0, 1, 0, '', '', ''),
  2400. (5950, 'Bratz', 5942, 0, NULL, 'dolls-bears_dolls_bratz', 'Dolls & Bears :: Dolls :: Bratz', '', 0, 1, 0, '', '', ''),
  2401. (5951, 'Fashion', 5942, 0, NULL, 'dolls-bears_dolls_fashion', 'Dolls & Bears :: Dolls :: Fashion', '', 0, 1, 0, '', '', ''),
  2402. (5952, 'Figures', 5942, 0, NULL, 'dolls-bears_dolls_figures', 'Dolls & Bears :: Dolls :: Figures', '', 0, 1, 0, '', '', ''),
  2403. (5953, 'Modern', 5942, 0, NULL, 'dolls-bears_dolls_modern', 'Dolls & Bears :: Dolls :: Modern', '', 0, 1, 0, '', '', ''),
  2404. (5954, 'Polly Pocket', 5942, 0, NULL, 'dolls-bears_dolls_polly-pocket', 'Dolls & Bears :: Dolls :: Polly Pocket', '', 0, 1, 0, '', '', ''),
  2405. (5955, 'Russian', 5942, 0, NULL, 'dolls-bears_dolls_russian', 'Dolls & Bears :: Dolls :: Russian', '', 0, 1, 0, '', '', ''),
  2406. (5956, 'Sindy', 5942, 0, NULL, 'dolls-bears_dolls_sindy', 'Dolls & Bears :: Dolls :: Sindy', '', 0, 1, 0, '', '', ''),
  2407. (5957, 'Reborn', 5942, 0, NULL, 'dolls-bears_dolls_reborn', 'Dolls & Bears :: Dolls :: Reborn', '', 0, 1, 0, '', '', ''),
  2408. (5958, 'Sylvanian', 5942, 0, NULL, 'dolls-bears_dolls_sylvanian', 'Dolls & Bears :: Dolls :: Sylvanian', '', 0, 1, 0, '', '', ''),
  2409. (5959, 'Trolls', 5942, 0, NULL, 'dolls-bears_dolls_trolls', 'Dolls & Bears :: Dolls :: Trolls', '', 0, 1, 0, '', '', ''),
  2410. (5960, 'Vintage', 5942, 0, NULL, 'dolls-bears_dolls_vintage', 'Dolls & Bears :: Dolls :: Vintage', '', 0, 1, 0, '', '', ''),
  2411. (5961, 'Zapf Creation', 5942, 0, NULL, 'dolls-bears_dolls_zapf-creation', 'Dolls & Bears :: Dolls :: Zapf Creation', '', 0, 1, 0, '', '', ''),
  2412. (5962, 'Hand-Made', 5942, 0, NULL, 'dolls-bears_dolls_hand-made', 'Dolls & Bears :: Dolls :: Hand-Made', '', 0, 1, 0, '', '', ''),
  2413. (5963, 'Hard Plastic', 5942, 0, NULL, 'dolls-bears_dolls_hard-plastic', 'Dolls & Bears :: Dolls :: Hard Plastic', '', 0, 1, 0, '', '', ''),
  2414. (5964, 'Porcelain', 5942, 0, NULL, 'dolls-bears_dolls_porcelain', 'Dolls & Bears :: Dolls :: Porcelain', '', 0, 1, 0, '', '', ''),
  2415. (5965, 'Rag/ Cloth', 5942, 0, NULL, 'dolls-bears_dolls_rag-cloth', 'Dolls & Bears :: Dolls :: Rag/ Cloth', '', 0, 1, 0, '', '', ''),
  2416. (5966, 'Vinyl', 5942, 0, NULL, 'dolls-bears_dolls_vinyl', 'Dolls & Bears :: Dolls :: Vinyl', '', 0, 1, 0, '', '', ''),
  2417. (5967, 'Doll Making Supplies', 5942, 0, NULL, 'dolls-bears_dolls_doll-making-supplies', 'Dolls & Bears :: Dolls :: Doll Making Supplies', '', 0, 1, 0, '', '', ''),
  2418. (5968, 'Publications', 5942, 0, NULL, 'dolls-bears_dolls_publications', 'Dolls & Bears :: Dolls :: Publications', '', 0, 1, 0, '', '', ''),
  2419. (5969, 'Other Dolls', 5942, 0, NULL, 'dolls-bears_dolls_other-dolls', 'Dolls & Bears :: Dolls :: Other Dolls', '', 0, 1, 0, '', '', ''),
  2420. (5970, 'Clothing', 5943, 0, NULL, 'dolls-bears_doll-accessories_clothing', 'Dolls & Bears :: Doll Accessories :: Clothing', '', 0, 1, 0, '', '', ''),
  2421. (5971, 'Prams', 5943, 0, NULL, 'dolls-bears_doll-accessories_prams', 'Dolls & Bears :: Doll Accessories :: Prams', '', 0, 1, 0, '', '', ''),
  2422. (5972, 'Shoes', 5943, 0, NULL, 'dolls-bears_doll-accessories_shoes', 'Dolls & Bears :: Doll Accessories :: Shoes', '', 0, 1, 0, '', '', ''),
  2423. (5973, 'Other Doll Accessories', 5943, 0, NULL, 'dolls-bears_doll-accessories_other-doll-accessories', 'Dolls & Bears :: Doll Accessories :: Other Doll Accessories', '', 0, 1, 0, '', '', ''),
  2424. (5974, 'Handmade', 5944, 0, NULL, 'dolls-bears_dolls-houses_handmade', 'Dolls & Bears :: Dolls' Houses :: Handmade', '', 0, 1, 0, '', '', ''),
  2425. (5975, 'Kit', 5944, 0, NULL, 'dolls-bears_dolls-houses_kit', 'Dolls & Bears :: Dolls' Houses :: Kit', '', 0, 1, 0, '', '', ''),
  2426. (5976, 'Modern', 5944, 0, NULL, 'dolls-bears_dolls-houses_modern', 'Dolls & Bears :: Dolls' Houses :: Modern', '', 0, 1, 0, '', '', ''),
  2427. (5977, 'Vintage', 5944, 0, NULL, 'dolls-bears_dolls-houses_vintage', 'Dolls & Bears :: Dolls' Houses :: Vintage', '', 0, 1, 0, '', '', ''),
  2428. (5978, 'Not specified', 5944, 0, NULL, 'dolls-bears_dolls-houses_not-specified', 'Dolls & Bears :: Dolls' Houses :: Not specified', '', 0, 1, 0, '', '', ''),
  2429. (5979, 'Bathroom', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_bathroom', 'Dolls & Bears :: Dolls' House Miniatures :: Bathroom', '', 0, 1, 0, '', '', ''),
  2430. (5980, 'Books, Magazines & Newspapers', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_books-magazines-newspapers', 'Dolls & Bears :: Dolls' House Miniatures :: Books, Magazines & Newspapers', '', 0, 1, 0, '', '', ''),
  2431. (5981, 'Carpet & Floor Coverings', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_carpet-floor-coverings', 'Dolls & Bears :: Dolls' House Miniatures :: Carpet & Floor Coverings', '', 0, 1, 0, '', '', ''),
  2432. (5982, 'Cookware & Tableware', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_cookware-tableware', 'Dolls & Bears :: Dolls' House Miniatures :: Cookware & Tableware', '', 0, 1, 0, '', '', ''),
  2433. (5983, 'Curtains', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_curtains', 'Dolls & Bears :: Dolls' House Miniatures :: Curtains', '', 0, 1, 0, '', '', ''),
  2434. (5984, 'Dolls' House Dolls', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_dolls-house-dolls', 'Dolls & Bears :: Dolls' House Miniatures :: Dolls' House Dolls', '', 0, 1, 0, '', '', ''),
  2435. (5985, 'Fireplace', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_fireplace', 'Dolls & Bears :: Dolls' House Miniatures :: Fireplace', '', 0, 1, 0, '', '', ''),
  2436. (5986, 'Fixtures & Fittings', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_fixtures-fittings', 'Dolls & Bears :: Dolls' House Miniatures :: Fixtures & Fittings', '', 0, 1, 0, '', '', ''),
  2437. (5987, 'Food & Drinks', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_food-drinks', 'Dolls & Bears :: Dolls' House Miniatures :: Food & Drinks', '', 0, 1, 0, '', '', ''),
  2438. (5988, 'Furniture', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_furniture', 'Dolls & Bears :: Dolls' House Miniatures :: Furniture', '', 0, 1, 0, '', '', ''),
  2439. (5989, 'Garden', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_garden', 'Dolls & Bears :: Dolls' House Miniatures :: Garden', '', 0, 1, 0, '', '', ''),
  2440. (5990, 'Home Décor', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_home-decor', 'Dolls & Bears :: Dolls' House Miniatures :: Home Décor', '', 0, 1, 0, '', '', ''),
  2441. (5991, 'Kitchen Fittings & Appliances', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_kitchen-fittings-appliances', 'Dolls & Bears :: Dolls' House Miniatures :: Kitchen Fittings & Appliances', '', 0, 1, 0, '', '', ''),
  2442. (5992, 'Lighting/ Lamps', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_lighting-lamps', 'Dolls & Bears :: Dolls' House Miniatures :: Lighting/ Lamps', '', 0, 1, 0, '', '', ''),
  2443. (5993, 'Pets & Animals', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_pets-animals', 'Dolls & Bears :: Dolls' House Miniatures :: Pets & Animals', '', 0, 1, 0, '', '', ''),
  2444. (5994, 'Toys', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_toys', 'Dolls & Bears :: Dolls' House Miniatures :: Toys', '', 0, 1, 0, '', '', ''),
  2445. (5995, 'Wallpaper', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_wallpaper', 'Dolls & Bears :: Dolls' House Miniatures :: Wallpaper', '', 0, 1, 0, '', '', ''),
  2446. (5996, 'Hand-Made Items', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_hand-made-items', 'Dolls & Bears :: Dolls' House Miniatures :: Hand-Made Items', '', 0, 1, 0, '', '', ''),
  2447. (5997, 'Kits', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_kits', 'Dolls & Bears :: Dolls' House Miniatures :: Kits', '', 0, 1, 0, '', '', ''),
  2448. (5998, 'Mixed Lots', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_mixed-lots', 'Dolls & Bears :: Dolls' House Miniatures :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  2449. (5999, 'Vintage Items', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_vintage-items', 'Dolls & Bears :: Dolls' House Miniatures :: Vintage Items', '', 0, 1, 0, '', '', ''),
  2450. (6000, 'Other Dolls' House Miniatures', 5945, 0, NULL, 'dolls-bears_dolls-house-miniatures_other-dolls-house-miniatures', 'Dolls & Bears :: Dolls' House Miniatures :: Other Dolls' House Miniatures', '', 0, 1, 0, '', '', ''),
  2451. (6001, 'Accessories', 5946, 0, NULL, 'dolls-bears_bears_accessories', 'Dolls & Bears :: Bears :: Accessories', '', 0, 1, 0, '', '', ''),
  2452. (6002, 'Antique', 5946, 0, NULL, 'dolls-bears_bears_antique', 'Dolls & Bears :: Bears :: Antique', '', 0, 1, 0, '', '', ''),
  2453. (6003, 'Artist', 5946, 0, NULL, 'dolls-bears_bears_artist', 'Dolls & Bears :: Bears :: Artist', '', 0, 1, 0, '', '', ''),
  2454. (6004, 'Bad Taste Bears', 5946, 0, NULL, 'dolls-bears_bears_bad-taste-bears', 'Dolls & Bears :: Bears :: Bad Taste Bears', '', 0, 1, 0, '', '', ''),
  2455. (6005, 'Build-a-Bear', 5946, 0, NULL, 'dolls-bears_bears_build-a-bear', 'Dolls & Bears :: Bears :: Build-a-Bear', '', 0, 1, 0, '', '', ''),
  2456. (6006, 'Bearington', 5946, 0, NULL, 'dolls-bears_bears_bearington', 'Dolls & Bears :: Bears :: Bearington', '', 0, 1, 0, '', '', ''),
  2457. (6007, 'Boyds', 5946, 0, NULL, 'dolls-bears_bears_boyds', 'Dolls & Bears :: Bears :: Boyds', '', 0, 1, 0, '', '', ''),
  2458. (6008, 'Care Bears', 5946, 0, NULL, 'dolls-bears_bears_care-bears', 'Dolls & Bears :: Bears :: Care Bears', '', 0, 1, 0, '', '', ''),
  2459. (6009, 'Chad Valley', 5946, 0, NULL, 'dolls-bears_bears_chad-valley', 'Dolls & Bears :: Bears :: Chad Valley', '', 0, 1, 0, '', '', ''),
  2460. (6010, 'Cherished Teddies', 5946, 0, NULL, 'dolls-bears_bears_cherished-teddies', 'Dolls & Bears :: Bears :: Cherished Teddies', '', 0, 1, 0, '', '', ''),
  2461. (6011, 'Dean's', 5946, 0, NULL, 'dolls-bears_bears_deans', 'Dolls & Bears :: Bears :: Dean's', '', 0, 1, 0, '', '', ''),
  2462. (6012, 'Forever Friends', 5946, 0, NULL, 'dolls-bears_bears_forever-friends', 'Dolls & Bears :: Bears :: Forever Friends', '', 0, 1, 0, '', '', ''),
  2463. (6013, 'Gund', 5946, 0, NULL, 'dolls-bears_bears_gund', 'Dolls & Bears :: Bears :: Gund', '', 0, 1, 0, '', '', ''),
  2464. (6014, 'Harrods', 5946, 0, NULL, 'dolls-bears_bears_harrods', 'Dolls & Bears :: Bears :: Harrods', '', 0, 1, 0, '', '', ''),
  2465. (6015, 'Hermann', 5946, 0, NULL, 'dolls-bears_bears_hermann', 'Dolls & Bears :: Bears :: Hermann', '', 0, 1, 0, '', '', ''),
  2466. (6016, 'Me To You', 5946, 0, NULL, 'dolls-bears_bears_me-to-you', 'Dolls & Bears :: Bears :: Me To You', '', 0, 1, 0, '', '', ''),
  2467. (6017, 'Merrythought', 5946, 0, NULL, 'dolls-bears_bears_merrythought', 'Dolls & Bears :: Bears :: Merrythought', '', 0, 1, 0, '', '', ''),
  2468. (6018, 'Paddington', 5946, 0, NULL, 'dolls-bears_bears_paddington', 'Dolls & Bears :: Bears :: Paddington', '', 0, 1, 0, '', '', ''),
  2469. (6019, 'Peter Fagan', 5946, 0, NULL, 'dolls-bears_bears_peter-fagan', 'Dolls & Bears :: Bears :: Peter Fagan', '', 0, 1, 0, '', '', ''),
  2470. (6020, 'Robin Rive', 5946, 0, NULL, 'dolls-bears_bears_robin-rive', 'Dolls & Bears :: Bears :: Robin Rive', '', 0, 1, 0, '', '', ''),
  2471. (6021, 'Russ', 5946, 0, NULL, 'dolls-bears_bears_russ', 'Dolls & Bears :: Bears :: Russ', '', 0, 1, 0, '', '', ''),
  2472. (6022, 'Schuco', 5946, 0, NULL, 'dolls-bears_bears_schuco', 'Dolls & Bears :: Bears :: Schuco', '', 0, 1, 0, '', '', ''),
  2473. (6023, 'Souvenir Bears', 5946, 0, NULL, 'dolls-bears_bears_souvenir-bears', 'Dolls & Bears :: Bears :: Souvenir Bears', '', 0, 1, 0, '', '', ''),
  2474. (6024, 'Steiff', 5946, 0, NULL, 'dolls-bears_bears_steiff', 'Dolls & Bears :: Bears :: Steiff', '', 0, 1, 0, '', '', ''),
  2475. (6025, 'The Teddy Bear Collection', 5946, 0, NULL, 'dolls-bears_bears_the-teddy-bear-collection', 'Dolls & Bears :: Bears :: The Teddy Bear Collection', '', 0, 1, 0, '', '', ''),
  2476. (6026, 'Winnie the Pooh', 5946, 0, NULL, 'dolls-bears_bears_winnie-the-pooh', 'Dolls & Bears :: Bears :: Winnie the Pooh', '', 0, 1, 0, '', '', ''),
  2477. (6027, 'Bear Making Supplies', 5946, 0, NULL, 'dolls-bears_bears_bear-making-supplies', 'Dolls & Bears :: Bears :: Bear Making Supplies', '', 0, 1, 0, '', '', ''),
  2478. (6028, 'Other Bears', 5946, 0, NULL, 'dolls-bears_bears_other-bears', 'Dolls & Bears :: Bears :: Other Bears', '', 0, 1, 0, '', '', ''),
  2479. (6029, 'Accommodation', 3694, 0, NULL, 'holidays-travel_accommodation', 'Holidays & Travel :: Accommodation', '', 0, 1, 0, '', '', ''),
  2480. (6030, 'Package Holidays', 3694, 0, NULL, 'holidays-travel_package-holidays', 'Holidays & Travel :: Package Holidays', '', 0, 1, 0, '', '', ''),
  2481. (6031, 'Short Breaks', 3694, 0, NULL, 'holidays-travel_short-breaks', 'Holidays & Travel :: Short Breaks', '', 0, 1, 0, '', '', ''),
  2482. (6032, 'Flight Tickets', 3694, 0, NULL, 'holidays-travel_flight-tickets', 'Holidays & Travel :: Flight Tickets', '', 0, 1, 0, '', '', ''),
  2483. (6033, 'Train Tickets', 3694, 0, NULL, 'holidays-travel_train-tickets', 'Holidays & Travel :: Train Tickets', '', 0, 1, 0, '', '', ''),
  2484. (6034, 'Bus/ Coach Tickets', 3694, 0, NULL, 'holidays-travel_bus-coach-tickets', 'Holidays & Travel :: Bus/ Coach Tickets', '', 0, 1, 0, '', '', ''),
  2485. (6035, 'Ferries/ Cruises', 3694, 0, NULL, 'holidays-travel_ferries-cruises', 'Holidays & Travel :: Ferries/ Cruises', '', 0, 1, 0, '', '', ''),
  2486. (6036, 'Car Hire/ Car Rental', 3694, 0, NULL, 'holidays-travel_car-hire-car-rental', 'Holidays & Travel :: Car Hire/ Car Rental', '', 0, 1, 0, '', '', ''),
  2487. (6037, 'Other Travel', 3694, 0, NULL, 'holidays-travel_other-travel', 'Holidays & Travel :: Other Travel', '', 0, 1, 0, '', '', ''),
  2488. (6038, 'United States', 3702, 0, NULL, 'property_united-states', 'Property :: United States', '', 0, 1, 0, '', '', ''),
  2489. (6039, 'United Kingdom', 3702, 0, NULL, 'property_united-kingdom', 'Property :: United Kingdom', '', 0, 1, 0, '', '', ''),
  2490. (6040, 'Europe', 3702, 0, NULL, 'property_europe', 'Property :: Europe', '', 0, 1, 0, '', '', ''),
  2491. (6041, 'South America', 3702, 0, NULL, 'property_south-america', 'Property :: South America', '', 0, 1, 0, '', '', ''),
  2492. (6042, 'Canada', 3702, 0, NULL, 'property_canada', 'Property :: Canada', '', 0, 1, 0, '', '', ''),
  2493. (6043, 'Arfica', 3702, 0, NULL, 'property_arfica', 'Property :: Arfica', '', 0, 1, 0, '', '', ''),
  2494. (6044, 'Australia', 3702, 0, NULL, 'property_australia', 'Property :: Australia', '', 0, 1, 0, '', '', ''),
  2495. (6045, 'New Zealand', 3702, 0, NULL, 'property_new-zealand', 'Property :: New Zealand', '', 0, 1, 0, '', '', ''),
  2496. (6046, 'Rest Of World', 3702, 0, NULL, 'property_rest-of-world', 'Property :: Rest Of World', '', 0, 1, 0, '', '', ''),
  2497. (6047, 'Bee Keeping', 3700, 0, NULL, 'pet-supplies_bee-keeping', 'Pet Supplies :: Bee Keeping', '', 0, 1, 0, '', '', ''),
  2498. (6048, 'Birds', 3700, 0, NULL, 'pet-supplies_birds', 'Pet Supplies :: Birds', '', 0, 1, 0, '', '', ''),
  2499. (6049, 'Cat Supplies', 3700, 0, NULL, 'pet-supplies_cat-supplies', 'Pet Supplies :: Cat Supplies', '', 0, 1, 0, '', '', ''),
  2500. (6050, 'Dog Supplies', 3700, 0, NULL, 'pet-supplies_dog-supplies', 'Pet Supplies :: Dog Supplies', '', 0, 1, 0, '', '', ''),
  2501. (6051, 'Fish & Aquarium', 3700, 0, NULL, 'pet-supplies_fish-aquarium', 'Pet Supplies :: Fish & Aquarium', '', 0, 1, 0, '', '', ''),
  2502. (6052, 'Horses', 3700, 0, NULL, 'pet-supplies_horses', 'Pet Supplies :: Horses', '', 0, 1, 0, '', '', ''),
  2503. (6053, 'Pet Memorials', 3700, 0, NULL, 'pet-supplies_pet-memorials', 'Pet Supplies :: Pet Memorials', '', 0, 1, 0, '', '', ''),
  2504. (6054, 'Poultry & Waterfowl', 3700, 0, NULL, 'pet-supplies_poultry-waterfowl', 'Pet Supplies :: Poultry & Waterfowl', '', 0, 1, 0, '', '', ''),
  2505. (6055, 'Reptiles', 3700, 0, NULL, 'pet-supplies_reptiles', 'Pet Supplies :: Reptiles', '', 0, 1, 0, '', '', ''),
  2506. (6056, 'Small Animal Supplies', 3700, 0, NULL, 'pet-supplies_small-animal-supplies', 'Pet Supplies :: Small Animal Supplies', '', 0, 1, 0, '', '', ''),
  2507. (6057, 'Spiders & Insects', 3700, 0, NULL, 'pet-supplies_spiders-insects', 'Pet Supplies :: Spiders & Insects', '', 0, 1, 0, '', '', ''),
  2508. (6058, 'Other Pet Supplies', 3700, 0, NULL, 'pet-supplies_other-pet-supplies', 'Pet Supplies :: Other Pet Supplies', '', 0, 1, 0, '', '', ''),
  2509. (6059, 'Beehives', 6047, 0, NULL, 'pet-supplies_bee-keeping_beehives', 'Pet Supplies :: Bee Keeping :: Beehives', '', 0, 1, 0, '', '', ''),
  2510. (6060, 'Honey Extraction', 6047, 0, NULL, 'pet-supplies_bee-keeping_honey-extraction', 'Pet Supplies :: Bee Keeping :: Honey Extraction', '', 0, 1, 0, '', '', ''),
  2511. (6061, 'Instructional Material', 6047, 0, NULL, 'pet-supplies_bee-keeping_instructional-material', 'Pet Supplies :: Bee Keeping :: Instructional Material', '', 0, 1, 0, '', '', ''),
  2512. (6062, 'Protective Equipment', 6047, 0, NULL, 'pet-supplies_bee-keeping_protective-equipment', 'Pet Supplies :: Bee Keeping :: Protective Equipment', '', 0, 1, 0, '', '', ''),
  2513. (6063, 'Smokers', 6047, 0, NULL, 'pet-supplies_bee-keeping_smokers', 'Pet Supplies :: Bee Keeping :: Smokers', '', 0, 1, 0, '', '', ''),
  2514. (6064, 'Cages', 6048, 0, NULL, 'pet-supplies_birds_cages', 'Pet Supplies :: Birds :: Cages', '', 0, 1, 0, '', '', ''),
  2515. (6065, 'Feeders', 6048, 0, NULL, 'pet-supplies_birds_feeders', 'Pet Supplies :: Birds :: Feeders', '', 0, 1, 0, '', '', ''),
  2516. (6066, 'Food/ Seed', 6048, 0, NULL, 'pet-supplies_birds_food-seed', 'Pet Supplies :: Birds :: Food/ Seed', '', 0, 1, 0, '', '', ''),
  2517. (6067, 'Perches', 6048, 0, NULL, 'pet-supplies_birds_perches', 'Pet Supplies :: Birds :: Perches', '', 0, 1, 0, '', '', ''),
  2518. (6068, 'Toys', 6048, 0, NULL, 'pet-supplies_birds_toys', 'Pet Supplies :: Birds :: Toys', '', 0, 1, 0, '', '', ''),
  2519. (6069, 'Other Bird Supplies', 6048, 0, NULL, 'pet-supplies_birds_other-bird-supplies', 'Pet Supplies :: Birds :: Other Bird Supplies', '', 0, 1, 0, '', '', ''),
  2520. (6070, 'Beds', 6049, 0, NULL, 'pet-supplies_cat-supplies_beds', 'Pet Supplies :: Cat Supplies :: Beds', '', 0, 1, 0, '', '', ''),
  2521. (6071, 'Carriers & Crates', 6049, 0, NULL, 'pet-supplies_cat-supplies_carriers-crates', 'Pet Supplies :: Cat Supplies :: Carriers & Crates', '', 0, 1, 0, '', '', ''),
  2522. (6072, 'Cat Food', 6049, 0, NULL, 'pet-supplies_cat-supplies_cat-food', 'Pet Supplies :: Cat Supplies :: Cat Food', '', 0, 1, 0, '', '', ''),
  2523. (6073, 'Cat Grass & Loose Catnip', 6049, 0, NULL, 'pet-supplies_cat-supplies_cat-grass-loose-catnip', 'Pet Supplies :: Cat Supplies :: Cat Grass & Loose Catnip', '', 0, 1, 0, '', '', ''),
  2524. (6074, 'Cat Treats', 6049, 0, NULL, 'pet-supplies_cat-supplies_cat-treats', 'Pet Supplies :: Cat Supplies :: Cat Treats', '', 0, 1, 0, '', '', ''),
  2525. (6075, 'Collars & Tags', 6049, 0, NULL, 'pet-supplies_cat-supplies_collars-tags', 'Pet Supplies :: Cat Supplies :: Collars & Tags', '', 0, 1, 0, '', '', ''),
  2526. (6076, 'Dishes, Feeders & Fountains', 6049, 0, NULL, 'pet-supplies_cat-supplies_dishes-feeders-fountains', 'Pet Supplies :: Cat Supplies :: Dishes, Feeders & Fountains', '', 0, 1, 0, '', '', ''),
  2527. (6077, 'Doors & Flaps', 6049, 0, NULL, 'pet-supplies_cat-supplies_doors-flaps', 'Pet Supplies :: Cat Supplies :: Doors & Flaps', '', 0, 1, 0, '', '', ''),
  2528. (6078, 'Flea & Tick Remedies', 6049, 0, NULL, 'pet-supplies_cat-supplies_flea-tick-remedies', 'Pet Supplies :: Cat Supplies :: Flea & Tick Remedies', '', 0, 1, 0, '', '', ''),
  2529. (6079, 'Furniture & Scratchers', 6049, 0, NULL, 'pet-supplies_cat-supplies_furniture-scratchers', 'Pet Supplies :: Cat Supplies :: Furniture & Scratchers', '', 0, 1, 0, '', '', ''),
  2530. (6080, 'Grooming', 6049, 0, NULL, 'pet-supplies_cat-supplies_grooming', 'Pet Supplies :: Cat Supplies :: Grooming', '', 0, 1, 0, '', '', ''),
  2531. (6081, 'Harnesses & Leads', 6049, 0, NULL, 'pet-supplies_cat-supplies_harnesses-leads', 'Pet Supplies :: Cat Supplies :: Harnesses & Leads', '', 0, 1, 0, '', '', ''),
  2532. (6082, 'Health Care', 6049, 0, NULL, 'pet-supplies_cat-supplies_health-care', 'Pet Supplies :: Cat Supplies :: Health Care', '', 0, 1, 0, '', '', ''),
  2533. (6083, 'Litter', 6049, 0, NULL, 'pet-supplies_cat-supplies_litter', 'Pet Supplies :: Cat Supplies :: Litter', '', 0, 1, 0, '', '', ''),
  2534. (6084, 'Litter Trays', 6049, 0, NULL, 'pet-supplies_cat-supplies_litter-trays', 'Pet Supplies :: Cat Supplies :: Litter Trays', '', 0, 1, 0, '', '', ''),
  2535. (6085, 'Toys', 6049, 0, NULL, 'pet-supplies_cat-supplies_toys', 'Pet Supplies :: Cat Supplies :: Toys', '', 0, 1, 0, '', '', ''),
  2536. (6086, 'Other Cat Supplies', 6049, 0, NULL, 'pet-supplies_cat-supplies_other-cat-supplies', 'Pet Supplies :: Cat Supplies :: Other Cat Supplies', '', 0, 1, 0, '', '', ''),
  2537. (6087, 'Beds', 6050, 0, NULL, 'pet-supplies_dog-supplies_beds', 'Pet Supplies :: Dog Supplies :: Beds', '', 0, 1, 0, '', '', ''),
  2538. (6088, 'Blankets', 6050, 0, NULL, 'pet-supplies_dog-supplies_blankets', 'Pet Supplies :: Dog Supplies :: Blankets', '', 0, 1, 0, '', '', ''),
  2539. (6089, 'Clothing & Shoes', 6050, 0, NULL, 'pet-supplies_dog-supplies_clothing-shoes', 'Pet Supplies :: Dog Supplies :: Clothing & Shoes', '', 0, 1, 0, '', '', ''),
  2540. (6090, 'Collars', 6050, 0, NULL, 'pet-supplies_dog-supplies_collars', 'Pet Supplies :: Dog Supplies :: Collars', '', 0, 1, 0, '', '', ''),
  2541. (6091, 'Costumes', 6050, 0, NULL, 'pet-supplies_dog-supplies_costumes', 'Pet Supplies :: Dog Supplies :: Costumes', '', 0, 1, 0, '', '', ''),
  2542. (6092, 'Cages', 6050, 0, NULL, 'pet-supplies_dog-supplies_cages', 'Pet Supplies :: Dog Supplies :: Cages', '', 0, 1, 0, '', '', ''),
  2543. (6093, 'Nappies & Belly Bands', 6050, 0, NULL, 'pet-supplies_dog-supplies_nappies-belly-bands', 'Pet Supplies :: Dog Supplies :: Nappies & Belly Bands', '', 0, 1, 0, '', '', ''),
  2544. (6094, 'Dishes & Feeders', 6050, 0, NULL, 'pet-supplies_dog-supplies_dishes-feeders', 'Pet Supplies :: Dog Supplies :: Dishes & Feeders', '', 0, 1, 0, '', '', ''),
  2545. (6095, 'Dog Chews & Treats', 6050, 0, NULL, 'pet-supplies_dog-supplies_dog-chews-treats', 'Pet Supplies :: Dog Supplies :: Dog Chews & Treats', '', 0, 1, 0, '', '', ''),
  2546. (6096, 'Dog Food', 6050, 0, NULL, 'pet-supplies_dog-supplies_dog-food', 'Pet Supplies :: Dog Supplies :: Dog Food', '', 0, 1, 0, '', '', ''),
  2547. (6097, 'Dog Kennels', 6050, 0, NULL, 'pet-supplies_dog-supplies_dog-kennels', 'Pet Supplies :: Dog Supplies :: Dog Kennels', '', 0, 1, 0, '', '', ''),
  2548. (6098, 'Doors & Flaps', 6050, 0, NULL, 'pet-supplies_dog-supplies_doors-flaps', 'Pet Supplies :: Dog Supplies :: Doors & Flaps', '', 0, 1, 0, '', '', ''),
  2549. (6099, 'Fences & Exercise Pens', 6050, 0, NULL, 'pet-supplies_dog-supplies_fences-exercise-pens', 'Pet Supplies :: Dog Supplies :: Fences & Exercise Pens', '', 0, 1, 0, '', '', ''),
  2550. (6100, 'Flea & Tick Remedies', 6050, 0, NULL, 'pet-supplies_dog-supplies_flea-tick-remedies', 'Pet Supplies :: Dog Supplies :: Flea & Tick Remedies', '', 0, 1, 0, '', '', ''),
  2551. (6101, 'Harnesses', 6050, 0, NULL, 'pet-supplies_dog-supplies_harnesses', 'Pet Supplies :: Dog Supplies :: Harnesses', '', 0, 1, 0, '', '', ''),
  2552. (6102, 'Grooming', 6050, 0, NULL, 'pet-supplies_dog-supplies_grooming', 'Pet Supplies :: Dog Supplies :: Grooming', '', 0, 1, 0, '', '', ''),
  2553. (6103, 'Health Care', 6050, 0, NULL, 'pet-supplies_dog-supplies_health-care', 'Pet Supplies :: Dog Supplies :: Health Care', '', 0, 1, 0, '', '', ''),
  2554. (6104, 'Leads & Head Collars', 6050, 0, NULL, 'pet-supplies_dog-supplies_leads-head-collars', 'Pet Supplies :: Dog Supplies :: Leads & Head Collars', '', 0, 1, 0, '', '', ''),
  2555. (6105, 'Odor & Stain Removal', 6050, 0, NULL, 'pet-supplies_dog-supplies_odor-stain-removal', 'Pet Supplies :: Dog Supplies :: Odor & Stain Removal', '', 0, 1, 0, '', '', ''),
  2556. (6106, 'Pooper Scooper & Bags', 6050, 0, NULL, 'pet-supplies_dog-supplies_pooper-scooper-bags', 'Pet Supplies :: Dog Supplies :: Pooper Scooper & Bags', '', 0, 1, 0, '', '', ''),
  2557. (6107, 'Safety Vests & Life Preservers', 6050, 0, NULL, 'pet-supplies_dog-supplies_safety-vests-life-preservers', 'Pet Supplies :: Dog Supplies :: Safety Vests & Life Preservers', '', 0, 1, 0, '', '', ''),
  2558. (6108, 'Signs & Plaques', 6050, 0, NULL, 'pet-supplies_dog-supplies_signs-plaques', 'Pet Supplies :: Dog Supplies :: Signs & Plaques', '', 0, 1, 0, '', '', ''),
  2559. (6109, 'Tags & Charms', 6050, 0, NULL, 'pet-supplies_dog-supplies_tags-charms', 'Pet Supplies :: Dog Supplies :: Tags & Charms', '', 0, 1, 0, '', '', ''),
  2560. (6110, 'Toys', 6050, 0, NULL, 'pet-supplies_dog-supplies_toys', 'Pet Supplies :: Dog Supplies :: Toys', '', 0, 1, 0, '', '', ''),
  2561. (6111, 'Training & Obedience', 6050, 0, NULL, 'pet-supplies_dog-supplies_training-obedience', 'Pet Supplies :: Dog Supplies :: Training & Obedience', '', 0, 1, 0, '', '', ''),
  2562. (6112, 'Transport & Travel', 6050, 0, NULL, 'pet-supplies_dog-supplies_transport-travel', 'Pet Supplies :: Dog Supplies :: Transport & Travel', '', 0, 1, 0, '', '', ''),
  2563. (6113, 'Whelping Supplies', 6050, 0, NULL, 'pet-supplies_dog-supplies_whelping-supplies', 'Pet Supplies :: Dog Supplies :: Whelping Supplies', '', 0, 1, 0, '', '', ''),
  2564. (6114, 'Other Dog Supplies', 6050, 0, NULL, 'pet-supplies_dog-supplies_other-dog-supplies', 'Pet Supplies :: Dog Supplies :: Other Dog Supplies', '', 0, 1, 0, '', '', ''),
  2565. (6115, 'Air Pumps', 6051, 0, NULL, 'pet-supplies_fish-aquarium_air-pumps', 'Pet Supplies :: Fish & Aquarium :: Air Pumps', '', 0, 1, 0, '', '', ''),
  2566. (6116, 'Air Stones', 6051, 0, NULL, 'pet-supplies_fish-aquarium_air-stones', 'Pet Supplies :: Fish & Aquarium :: Air Stones', '', 0, 1, 0, '', '', ''),
  2567. (6117, 'Aquariums', 6051, 0, NULL, 'pet-supplies_fish-aquarium_aquariums', 'Pet Supplies :: Fish & Aquarium :: Aquariums', '', 0, 1, 0, '', '', ''),
  2568. (6118, 'Cleaning & Maintenance', 6051, 0, NULL, 'pet-supplies_fish-aquarium_cleaning-maintenance', 'Pet Supplies :: Fish & Aquarium :: Cleaning & Maintenance', '', 0, 1, 0, '', '', ''),
  2569. (6119, 'CO2 Equipment', 6051, 0, NULL, 'pet-supplies_fish-aquarium_co2-equipment', 'Pet Supplies :: Fish & Aquarium :: CO2 Equipment', '', 0, 1, 0, '', '', ''),
  2570. (6120, 'Coral & Live Rock', 6051, 0, NULL, 'pet-supplies_fish-aquarium_coral-live-rock', 'Pet Supplies :: Fish & Aquarium :: Coral & Live Rock', '', 0, 1, 0, '', '', ''),
  2571. (6121, 'Decorations', 6051, 0, NULL, 'pet-supplies_fish-aquarium_decorations', 'Pet Supplies :: Fish & Aquarium :: Decorations', '', 0, 1, 0, '', '', ''),
  2572. (6122, 'Feeders', 6051, 0, NULL, 'pet-supplies_fish-aquarium_feeders', 'Pet Supplies :: Fish & Aquarium :: Feeders', '', 0, 1, 0, '', '', ''),
  2573. (6123, 'Filters', 6051, 0, NULL, 'pet-supplies_fish-aquarium_filters', 'Pet Supplies :: Fish & Aquarium :: Filters', '', 0, 1, 0, '', '', ''),
  2574. (6124, 'Filter Media & Accs.', 6051, 0, NULL, 'pet-supplies_fish-aquarium_filter-media-accs', 'Pet Supplies :: Fish & Aquarium :: Filter Media & Accs.', '', 0, 1, 0, '', '', ''),
  2575. (6125, 'Food', 6051, 0, NULL, 'pet-supplies_fish-aquarium_food', 'Pet Supplies :: Fish & Aquarium :: Food', '', 0, 1, 0, '', '', ''),
  2576. (6126, 'Gravel & Substrate', 6051, 0, NULL, 'pet-supplies_fish-aquarium_gravel-substrate', 'Pet Supplies :: Fish & Aquarium :: Gravel & Substrate', '', 0, 1, 0, '', '', ''),
  2577. (6127, 'Health Care', 6051, 0, NULL, 'pet-supplies_fish-aquarium_health-care', 'Pet Supplies :: Fish & Aquarium :: Health Care', '', 0, 1, 0, '', '', ''),
  2578. (6128, 'Heaters & Chillers', 6051, 0, NULL, 'pet-supplies_fish-aquarium_heaters-chillers', 'Pet Supplies :: Fish & Aquarium :: Heaters & Chillers', '', 0, 1, 0, '', '', ''),
  2579. (6129, 'Lighting & Hoods', 6051, 0, NULL, 'pet-supplies_fish-aquarium_lighting-hoods', 'Pet Supplies :: Fish & Aquarium :: Lighting & Hoods', '', 0, 1, 0, '', '', ''),
  2580. (6130, 'Live Fish', 6051, 0, NULL, 'pet-supplies_fish-aquarium_live-fish', 'Pet Supplies :: Fish & Aquarium :: Live Fish', '', 0, 1, 0, '', '', ''),
  2581. (6131, 'Live Invertebrates', 6051, 0, NULL, 'pet-supplies_fish-aquarium_live-invertebrates', 'Pet Supplies :: Fish & Aquarium :: Live Invertebrates', '', 0, 1, 0, '', '', ''),
  2582. (6132, 'Live Plants', 6051, 0, NULL, 'pet-supplies_fish-aquarium_live-plants', 'Pet Supplies :: Fish & Aquarium :: Live Plants', '', 0, 1, 0, '', '', ''),
  2583. (6133, 'Meters & Controllers', 6051, 0, NULL, 'pet-supplies_fish-aquarium_meters-controllers', 'Pet Supplies :: Fish & Aquarium :: Meters & Controllers', '', 0, 1, 0, '', '', ''),
  2584. (6134, 'Reverse Osmosis & Deionization', 6051, 0, NULL, 'pet-supplies_fish-aquarium_reverse-osmosis-deionization', 'Pet Supplies :: Fish & Aquarium :: Reverse Osmosis & Deionization', '', 0, 1, 0, '', '', ''),
  2585. (6135, 'Tubing & Valves', 6051, 0, NULL, 'pet-supplies_fish-aquarium_tubing-valves', 'Pet Supplies :: Fish & Aquarium :: Tubing & Valves', '', 0, 1, 0, '', '', ''),
  2586. (6136, 'UV Steriliser', 6051, 0, NULL, 'pet-supplies_fish-aquarium_uv-steriliser', 'Pet Supplies :: Fish & Aquarium :: UV Steriliser', '', 0, 1, 0, '', '', ''),
  2587. (6137, 'Water Pumps', 6051, 0, NULL, 'pet-supplies_fish-aquarium_water-pumps', 'Pet Supplies :: Fish & Aquarium :: Water Pumps', '', 0, 1, 0, '', '', ''),
  2588. (6138, 'Water Tests & Treatment', 6051, 0, NULL, 'pet-supplies_fish-aquarium_water-tests-treatment', 'Pet Supplies :: Fish & Aquarium :: Water Tests & Treatment', '', 0, 1, 0, '', '', ''),
  2589. (6139, 'Other Fish & Aquarium', 6051, 0, NULL, 'pet-supplies_fish-aquarium_other-fish-aquarium', 'Pet Supplies :: Fish & Aquarium :: Other Fish & Aquarium', '', 0, 1, 0, '', '', ''),
  2590. (6140, 'Boots & Bandages', 6052, 0, NULL, 'pet-supplies_horses_boots-bandages', 'Pet Supplies :: Horses :: Boots & Bandages', '', 0, 1, 0, '', '', ''),
  2591. (6141, 'Grooming & Health', 6052, 0, NULL, 'pet-supplies_horses_grooming-health', 'Pet Supplies :: Horses :: Grooming & Health', '', 0, 1, 0, '', '', ''),
  2592. (6142, 'Other Tack', 6052, 0, NULL, 'pet-supplies_horses_other-tack', 'Pet Supplies :: Horses :: Other Tack', '', 0, 1, 0, '', '', ''),
  2593. (6143, 'Rugs & Sheets', 6052, 0, NULL, 'pet-supplies_horses_rugs-sheets', 'Pet Supplies :: Horses :: Rugs & Sheets', '', 0, 1, 0, '', '', ''),
  2594. (6144, 'Supplements & Treats', 6052, 0, NULL, 'pet-supplies_horses_supplements-treats', 'Pet Supplies :: Horses :: Supplements & Treats', '', 0, 1, 0, '', '', ''),
  2595. (6145, 'Cat', 6053, 0, NULL, 'pet-supplies_pet-memorials_cat', 'Pet Supplies :: Pet Memorials :: Cat', '', 0, 1, 0, '', '', ''),
  2596. (6146, 'Dog', 6053, 0, NULL, 'pet-supplies_pet-memorials_dog', 'Pet Supplies :: Pet Memorials :: Dog', '', 0, 1, 0, '', '', ''),
  2597. (6147, 'Hamster', 6053, 0, NULL, 'pet-supplies_pet-memorials_hamster', 'Pet Supplies :: Pet Memorials :: Hamster', '', 0, 1, 0, '', '', ''),
  2598. (6148, 'Guinea pig', 6053, 0, NULL, 'pet-supplies_pet-memorials_guinea-pig', 'Pet Supplies :: Pet Memorials :: Guinea pig', '', 0, 1, 0, '', '', ''),
  2599. (6149, 'Rabbit', 6053, 0, NULL, 'pet-supplies_pet-memorials_rabbit', 'Pet Supplies :: Pet Memorials :: Rabbit', '', 0, 1, 0, '', '', ''),
  2600. (6150, 'Chicken', 6054, 0, NULL, 'pet-supplies_poultry-waterfowl_chicken', 'Pet Supplies :: Poultry & Waterfowl :: Chicken', '', 0, 1, 0, '', '', ''),
  2601. (6151, 'Duck', 6054, 0, NULL, 'pet-supplies_poultry-waterfowl_duck', 'Pet Supplies :: Poultry & Waterfowl :: Duck', '', 0, 1, 0, '', '', ''),
  2602. (6152, 'Guinea Fowl', 6054, 0, NULL, 'pet-supplies_poultry-waterfowl_guinea-fowl', 'Pet Supplies :: Poultry & Waterfowl :: Guinea Fowl', '', 0, 1, 0, '', '', ''),
  2603. (6153, 'Pheasant', 6054, 0, NULL, 'pet-supplies_poultry-waterfowl_pheasant', 'Pet Supplies :: Poultry & Waterfowl :: Pheasant', '', 0, 1, 0, '', '', ''),
  2604. (6154, 'Quail', 6054, 0, NULL, 'pet-supplies_poultry-waterfowl_quail', 'Pet Supplies :: Poultry & Waterfowl :: Quail', '', 0, 1, 0, '', '', ''),
  2605. (6155, 'Caves & Hides', 6055, 0, NULL, 'pet-supplies_reptiles_caves-hides', 'Pet Supplies :: Reptiles :: Caves & Hides', '', 0, 1, 0, '', '', ''),
  2606. (6156, 'Caves & Hides', 6055, 0, NULL, 'pet-supplies_reptiles_caves-hides1', 'Pet Supplies :: Reptiles :: Caves & Hides', '', 0, 1, 0, '', '', ''),
  2607. (6157, 'Lighting & Heating', 6055, 0, NULL, 'pet-supplies_reptiles_lighting-heating', 'Pet Supplies :: Reptiles :: Lighting & Heating', '', 0, 1, 0, '', '', ''),
  2608. (6158, 'Plants', 6055, 0, NULL, 'pet-supplies_reptiles_plants', 'Pet Supplies :: Reptiles :: Plants', '', 0, 1, 0, '', '', ''),
  2609. (6159, 'Vivarium', 6055, 0, NULL, 'pet-supplies_reptiles_vivarium', 'Pet Supplies :: Reptiles :: Vivarium', '', 0, 1, 0, '', '', ''),
  2610. (6160, 'Bedding', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_bedding', 'Pet Supplies :: Small Animal Supplies :: Bedding', '', 0, 1, 0, '', '', ''),
  2611. (6161, 'Beds, Hammocks & Nesters', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_beds-hammocks-nesters', 'Pet Supplies :: Small Animal Supplies :: Beds, Hammocks & Nesters', '', 0, 1, 0, '', '', ''),
  2612. (6162, 'Cages & Enclosures', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_cages-enclosures', 'Pet Supplies :: Small Animal Supplies :: Cages & Enclosures', '', 0, 1, 0, '', '', ''),
  2613. (6163, 'Carriers & Crates', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_carriers-crates', 'Pet Supplies :: Small Animal Supplies :: Carriers & Crates', '', 0, 1, 0, '', '', ''),
  2614. (6164, 'Collars, Leads & Harnesses', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_collars-leads-harnesses', 'Pet Supplies :: Small Animal Supplies :: Collars, Leads & Harnesses', '', 0, 1, 0, '', '', ''),
  2615. (6165, 'Exercise & Toys', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_exercise-toys', 'Pet Supplies :: Small Animal Supplies :: Exercise & Toys', '', 0, 1, 0, '', '', ''),
  2616. (6166, 'Feeding & Watering Supplies', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_feeding-watering-supplies', 'Pet Supplies :: Small Animal Supplies :: Feeding & Watering Supplies', '', 0, 1, 0, '', '', ''),
  2617. (6167, 'Food', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_food', 'Pet Supplies :: Small Animal Supplies :: Food', '', 0, 1, 0, '', '', ''),
  2618. (6168, 'Healthcare & Grooming', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_healthcare-grooming', 'Pet Supplies :: Small Animal Supplies :: Healthcare & Grooming', '', 0, 1, 0, '', '', ''),
  2619. (6169, 'Other Small Animal Supplies', 6056, 0, NULL, 'pet-supplies_small-animal-supplies_other-small-animal-supplies', 'Pet Supplies :: Small Animal Supplies :: Other Small Animal Supplies', '', 0, 1, 0, '', '', ''),
  2620. (6170, 'Food & Treats', 6057, 0, NULL, 'pet-supplies_spiders-insects_food-treats', 'Pet Supplies :: Spiders & Insects :: Food & Treats', '', 0, 1, 0, '', '', ''),
  2621. (6171, 'Live Specimens', 6057, 0, NULL, 'pet-supplies_spiders-insects_live-specimens', 'Pet Supplies :: Spiders & Insects :: Live Specimens', '', 0, 1, 0, '', '', ''),
  2622. (6172, 'Plants', 6057, 0, NULL, 'pet-supplies_spiders-insects_plants', 'Pet Supplies :: Spiders & Insects :: Plants', '', 0, 1, 0, '', '', ''),
  2623. (6173, 'Vivarium', 6057, 0, NULL, 'pet-supplies_spiders-insects_vivarium', 'Pet Supplies :: Spiders & Insects :: Vivarium', '', 0, 1, 0, '', '', ''),
  2624. (6174, 'Vivarium Parts', 6057, 0, NULL, 'pet-supplies_spiders-insects_vivarium-parts', 'Pet Supplies :: Spiders & Insects :: Vivarium Parts', '', 0, 1, 0, '', '', ''),
  2625. (6175, 'Cinema Tickets', 3691, 0, NULL, 'events-tickets_cinema-tickets', 'Events Tickets :: Cinema Tickets', '', 0, 1, 0, '', '', ''),
  2626. (6176, 'Comedy Tickets', 3691, 0, NULL, 'events-tickets_comedy-tickets', 'Events Tickets :: Comedy Tickets', '', 0, 1, 0, '', '', ''),
  2627. (6177, 'Concert Tickets', 3691, 0, NULL, 'events-tickets_concert-tickets', 'Events Tickets :: Concert Tickets', '', 0, 1, 0, '', '', ''),
  2628. (6178, 'Experiences', 3691, 0, NULL, 'events-tickets_experiences', 'Events Tickets :: Experiences', '', 0, 1, 0, '', '', ''),
  2629. (6179, 'Festival Tickets', 3691, 0, NULL, 'events-tickets_festival-tickets', 'Events Tickets :: Festival Tickets', '', 0, 1, 0, '', '', ''),
  2630. (6180, 'Museum Tickets', 3691, 0, NULL, 'events-tickets_museum-tickets', 'Events Tickets :: Museum Tickets', '', 0, 1, 0, '', '', ''),
  2631. (6181, 'Sport Events', 3691, 0, NULL, 'events-tickets_sport-events', 'Events Tickets :: Sport Events', '', 0, 1, 0, '', '', ''),
  2632. (6182, 'Theatre Tickets', 3691, 0, NULL, 'events-tickets_theatre-tickets', 'Events Tickets :: Theatre Tickets', '', 0, 1, 0, '', '', ''),
  2633. (6183, 'Theme Park Tickets', 3691, 0, NULL, 'events-tickets_theme-park-tickets', 'Events Tickets :: Theme Park Tickets', '', 0, 1, 0, '', '', ''),
  2634. (6184, 'Gift Vouchers & Coupons', 3691, 0, NULL, 'events-tickets_gift-vouchers-coupons', 'Events Tickets :: Gift Vouchers & Coupons', '', 0, 1, 0, '', '', ''),
  2635. (6185, 'Other Tickets', 3691, 0, NULL, 'events-tickets_other-tickets', 'Events Tickets :: Other Tickets', '', 0, 1, 0, '', '', ''),
  2636. (6186, 'Aircraft Parts & Accessories', 3708, 0, NULL, 'vehicle-parts-accessories_aircraft-parts-accessories', 'Vehicle Parts & Accessories :: Aircraft Parts & Accessories', '', 0, 1, 0, '', '', ''),
  2637. (6187, 'Automobilia', 3708, 0, NULL, 'vehicle-parts-accessories_automobilia', 'Vehicle Parts & Accessories :: Automobilia', '', 0, 1, 0, '', '', ''),
  2638. (6188, 'Boats Parts & Accessories', 3708, 0, NULL, 'vehicle-parts-accessories_boats-parts-accessories', 'Vehicle Parts & Accessories :: Boats Parts & Accessories', '', 0, 1, 0, '', '', ''),
  2639. (6189, 'Car Accessories', 3708, 0, NULL, 'vehicle-parts-accessories_car-accessories', 'Vehicle Parts & Accessories :: Car Accessories', '', 0, 1, 0, '', '', ''),
  2640. (6190, 'Car Manuals & Literature', 3708, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature', 'Vehicle Parts & Accessories :: Car Manuals & Literature', '', 0, 1, 0, '', '', ''),
  2641. (6191, 'Car Parts', 3708, 0, NULL, 'vehicle-parts-accessories_car-parts', 'Vehicle Parts & Accessories :: Car Parts', '', 0, 1, 0, '', '', ''),
  2642. (6192, 'Car Tuning & Styling', 3708, 0, NULL, 'vehicle-parts-accessories_car-tuning-styling', 'Vehicle Parts & Accessories :: Car Tuning & Styling', '', 0, 1, 0, '', '', ''),
  2643. (6193, 'Car Wheels, Tyres & Trims', 3708, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims', '', 0, 1, 0, '', '', ''),
  2644. (6194, 'Cherished Numbers', 3708, 0, NULL, 'vehicle-parts-accessories_cherished-numbers', 'Vehicle Parts & Accessories :: Cherished Numbers', '', 0, 1, 0, '', '', ''),
  2645. (6195, 'Clothing, Helmets & Protection', 3708, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection', '', 0, 1, 0, '', '', ''),
  2646. (6196, 'Commercial Vehicles Parts', 3708, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts', '', 0, 1, 0, '', '', ''),
  2647. (6197, 'Garage Equipment & Tools', 3708, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools', 'Vehicle Parts & Accessories :: Garage Equipment & Tools', '', 0, 1, 0, '', '', ''),
  2648. (6198, 'GPS & In-Car Technology', 3708, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology', 'Vehicle Parts & Accessories :: GPS & In-Car Technology', '', 0, 1, 0, '', '', ''),
  2649. (6199, 'Motorcycle Parts & Accessories', 3708, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories', '', 0, 1, 0, '', '', ''),
  2650. (6200, 'Motorhome Parts & Accessories', 3708, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories', '', 0, 1, 0, '', '', ''),
  2651. (6201, 'Oils, Lubricants & Fluids', 3708, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids', '', 0, 1, 0, '', '', ''),
  2652. (6203, 'Other Vehicle Parts & Accs', 3708, 0, NULL, 'vehicle-parts-accessories_other-vehicle-parts-accs', 'Vehicle Parts & Accessories :: Other Vehicle Parts & Accs', '', 0, 1, 0, '', '', ''),
  2653. (6204, 'Aircraft Accessories', 6186, 0, NULL, 'vehicle-parts-accessories_aircraft-parts-accessories_aircraft-accessories', 'Vehicle Parts & Accessories :: Aircraft Parts & Accessories :: Aircraft Accessories', '', 0, 1, 0, '', '', ''),
  2654. (6205, 'Aircraft Parts', 6186, 0, NULL, 'vehicle-parts-accessories_aircraft-parts-accessories_aircraft-parts', 'Vehicle Parts & Accessories :: Aircraft Parts & Accessories :: Aircraft Parts', '', 0, 1, 0, '', '', ''),
  2655. (6206, 'Advertising', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_advertising', 'Vehicle Parts & Accessories :: Automobilia :: Advertising', '', 0, 1, 0, '', '', ''),
  2656. (6207, 'Badges & Mascots', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_badges-mascots', 'Vehicle Parts & Accessories :: Automobilia :: Badges & Mascots', '', 0, 1, 0, '', '', ''),
  2657. (6208, 'Branded Automotive Merchandise', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_branded-automotive-merchandise', 'Vehicle Parts & Accessories :: Automobilia :: Branded Automotive Merchandise', '', 0, 1, 0, '', '', ''),
  2658. (6209, 'Mugs, Cups & Dishes', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_mugs-cups-dishes', 'Vehicle Parts & Accessories :: Automobilia :: Mugs, Cups & Dishes', '', 0, 1, 0, '', '', ''),
  2659. (6210, 'Models', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_models', 'Vehicle Parts & Accessories :: Automobilia :: Models', '', 0, 1, 0, '', '', ''),
  2660. (6211, 'Motorcycle Memorabilia', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_motorcycle-memorabilia', 'Vehicle Parts & Accessories :: Automobilia :: Motorcycle Memorabilia', '', 0, 1, 0, '', '', ''),
  2661. (6212, 'Lapel Pins', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_lapel-pins', 'Vehicle Parts & Accessories :: Automobilia :: Lapel Pins', '', 0, 1, 0, '', '', ''),
  2662. (6213, 'Press Kits & Press Photos', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_press-kits-press-photos', 'Vehicle Parts & Accessories :: Automobilia :: Press Kits & Press Photos', '', 0, 1, 0, '', '', ''),
  2663. (6214, 'Prints & Posters', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_prints-posters', 'Vehicle Parts & Accessories :: Automobilia :: Prints & Posters', '', 0, 1, 0, '', '', ''),
  2664. (6215, 'Signage', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_signage', 'Vehicle Parts & Accessories :: Automobilia :: Signage', '', 0, 1, 0, '', '', ''),
  2665. (6216, 'Vintage Tools', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_vintage-tools', 'Vehicle Parts & Accessories :: Automobilia :: Vintage Tools', '', 0, 1, 0, '', '', ''),
  2666. (6217, 'Other Automobilia', 6187, 0, NULL, 'vehicle-parts-accessories_automobilia_other-automobilia', 'Vehicle Parts & Accessories :: Automobilia :: Other Automobilia', '', 0, 1, 0, '', '', ''),
  2667. (6218, 'Accessories', 6188, 0, NULL, 'vehicle-parts-accessories_boats-parts-accessories_accessories', 'Vehicle Parts & Accessories :: Boats Parts & Accessories :: Accessories', '', 0, 1, 0, '', '', ''),
  2668. (6219, 'Boat Engines & Motors', 6188, 0, NULL, 'vehicle-parts-accessories_boats-parts-accessories_boat-engines-motors', 'Vehicle Parts & Accessories :: Boats Parts & Accessories :: Boat Engines & Motors', '', 0, 1, 0, '', '', ''),
  2669. (6220, 'Boats Parts & Maintenance', 6188, 0, NULL, 'vehicle-parts-accessories_boats-parts-accessories_boats-parts-maintenance', 'Vehicle Parts & Accessories :: Boats Parts & Accessories :: Boats Parts & Maintenance', '', 0, 1, 0, '', '', ''),
  2670. (6221, 'Manuals & Literature', 6188, 0, NULL, 'vehicle-parts-accessories_boats-parts-accessories_manuals-literature', 'Vehicle Parts & Accessories :: Boats Parts & Accessories :: Manuals & Literature', '', 0, 1, 0, '', '', ''),
  2671. (6222, 'Other Boat & Watercraft Parts', 6188, 0, NULL, 'vehicle-parts-accessories_boats-parts-accessories_other-boat-watercraft-parts', 'Vehicle Parts & Accessories :: Boats Parts & Accessories :: Other Boat & Watercraft Parts', '', 0, 1, 0, '', '', ''),
  2672. (6223, 'Car Care & Cleaning', 6189, 0, NULL, 'vehicle-parts-accessories_car-accessories_car-care-cleaning', 'Vehicle Parts & Accessories :: Car Accessories :: Car Care & Cleaning', '', 0, 1, 0, '', '', ''),
  2673. (6224, 'Exterior Accessories', 6189, 0, NULL, 'vehicle-parts-accessories_car-accessories_exterior-accessories', 'Vehicle Parts & Accessories :: Car Accessories :: Exterior Accessories', '', 0, 1, 0, '', '', ''),
  2674. (6225, 'Interior Accessories', 6189, 0, NULL, 'vehicle-parts-accessories_car-accessories_interior-accessories', 'Vehicle Parts & Accessories :: Car Accessories :: Interior Accessories', '', 0, 1, 0, '', '', ''),
  2675. (6226, 'Safety & Security', 6189, 0, NULL, 'vehicle-parts-accessories_car-accessories_safety-security', 'Vehicle Parts & Accessories :: Car Accessories :: Safety & Security', '', 0, 1, 0, '', '', ''),
  2676. (6227, 'Touring & Travel', 6189, 0, NULL, 'vehicle-parts-accessories_car-accessories_touring-travel', 'Vehicle Parts & Accessories :: Car Accessories :: Touring & Travel', '', 0, 1, 0, '', '', ''),
  2677. (6228, 'Other Car Accessories', 6189, 0, NULL, 'vehicle-parts-accessories_car-accessories_other-car-accessories', 'Vehicle Parts & Accessories :: Car Accessories :: Other Car Accessories', '', 0, 1, 0, '', '', ''),
  2678. (6229, 'Alfa Romeo', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_alfa-romeo', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Alfa Romeo', '', 0, 1, 0, '', '', ''),
  2679. (6230, 'Alvis', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_alvis', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Alvis', '', 0, 1, 0, '', '', ''),
  2680. (6231, 'Aston Martin', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_aston-martin', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Aston Martin', '', 0, 1, 0, '', '', ''),
  2681. (6232, 'Audi', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_audi', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Audi', '', 0, 1, 0, '', '', ''),
  2682. (6233, 'Austin', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_austin', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Austin', '', 0, 1, 0, '', '', ''),
  2683. (6234, 'BMW', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_bmw', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: BMW', '', 0, 1, 0, '', '', ''),
  2684. (6235, 'Bedford', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_bedford', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Bedford', '', 0, 1, 0, '', '', ''),
  2685. (6236, 'Chrysler', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_chrysler', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Chrysler', '', 0, 1, 0, '', '', ''),
  2686. (6237, 'Citroën', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_citroen', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Citroën', '', 0, 1, 0, '', '', ''),
  2687. (6238, 'Daewoo', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_daewoo', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Daewoo', '', 0, 1, 0, '', '', ''),
  2688. (6239, 'Daihatsu', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_daihatsu', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Daihatsu', '', 0, 1, 0, '', '', ''),
  2689. (6240, 'Daimler', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_daimler', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Daimler', '', 0, 1, 0, '', '', ''),
  2690. (6241, 'Datsun', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_datsun', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Datsun', '', 0, 1, 0, '', '', ''),
  2691. (6242, 'Dodge', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_dodge', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Dodge', '', 0, 1, 0, '', '', ''),
  2692. (6243, 'Ferrari', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_ferrari', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Ferrari', '', 0, 1, 0, '', '', ''),
  2693. (6244, 'Fiat', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_fiat', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Fiat', '', 0, 1, 0, '', '', ''),
  2694. (6245, 'Ford', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_ford', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Ford', '', 0, 1, 0, '', '', ''),
  2695. (6246, 'Hillman', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_hillman', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Hillman', '', 0, 1, 0, '', '', ''),
  2696. (6247, 'Honda', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_honda', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Honda', '', 0, 1, 0, '', '', ''),
  2697. (6248, 'Humber', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_humber', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Humber', '', 0, 1, 0, '', '', ''),
  2698. (6249, 'Hummer', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_hummer', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Hummer', '', 0, 1, 0, '', '', ''),
  2699. (6250, 'Hyundai', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_hyundai', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Hyundai', '', 0, 1, 0, '', '', ''),
  2700. (6251, 'Isuzu', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_isuzu', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Isuzu', '', 0, 1, 0, '', '', ''),
  2701. (6252, 'Jaguar', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_jaguar', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Jaguar', '', 0, 1, 0, '', '', ''),
  2702. (6253, 'Jensen', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_jensen', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Jensen', '', 0, 1, 0, '', '', ''),
  2703. (6254, 'Jeep', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_jeep', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Jeep', '', 0, 1, 0, '', '', ''),
  2704. (6255, 'Kia', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_kia', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Kia', '', 0, 1, 0, '', '', ''),
  2705. (6256, 'Lada', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_lada', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Lada', '', 0, 1, 0, '', '', ''),
  2706. (6257, 'Lamborghini', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_lamborghini', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Lamborghini', '', 0, 1, 0, '', '', ''),
  2707. (6258, 'Lancia', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_lancia', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Lancia', '', 0, 1, 0, '', '', ''),
  2708. (6259, 'Land Rover', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_land-rover', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Land Rover', '', 0, 1, 0, '', '', ''),
  2709. (6260, 'Lexus', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_lexus', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Lexus', '', 0, 1, 0, '', '', ''),
  2710. (6261, 'Lotus', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_lotus', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Lotus', '', 0, 1, 0, '', '', ''),
  2711. (6262, 'Marlin', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_marlin', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Marlin', '', 0, 1, 0, '', '', ''),
  2712. (6263, 'Maserati', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_maserati', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Maserati', '', 0, 1, 0, '', '', ''),
  2713. (6264, 'Mazda', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_mazda', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Mazda', '', 0, 1, 0, '', '', ''),
  2714. (6265, 'MG', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_mg', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: MG', '', 0, 1, 0, '', '', ''),
  2715. (6266, 'Mercedes-Benz', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_mercedes-benz', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Mercedes-Benz', '', 0, 1, 0, '', '', ''),
  2716. (6267, 'Mini', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_mini', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Mini', '', 0, 1, 0, '', '', ''),
  2717. (6268, 'Mitsubishi', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_mitsubishi', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Mitsubishi', '', 0, 1, 0, '', '', ''),
  2718. (6269, 'Morgan', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_morgan', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Morgan', '', 0, 1, 0, '', '', ''),
  2719. (6270, 'Morris', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_morris', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Morris', '', 0, 1, 0, '', '', ''),
  2720. (6271, 'Nissan', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_nissan', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Nissan', '', 0, 1, 0, '', '', ''),
  2721. (6272, 'Perodua', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_perodua', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Perodua', '', 0, 1, 0, '', '', ''),
  2722. (6273, 'Peugeot', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_peugeot', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Peugeot', '', 0, 1, 0, '', '', ''),
  2723. (6274, 'Porsche', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_porsche', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Porsche', '', 0, 1, 0, '', '', ''),
  2724. (6275, 'Proton', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_proton', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Proton', '', 0, 1, 0, '', '', ''),
  2725. (6276, 'Range Rover', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_range-rover', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Range Rover', '', 0, 1, 0, '', '', ''),
  2726. (6277, 'Reliant', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_reliant', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Reliant', '', 0, 1, 0, '', '', ''),
  2727. (6278, 'Renault', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_renault', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Renault', '', 0, 1, 0, '', '', ''),
  2728. (6279, 'Riley', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_riley', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Riley', '', 0, 1, 0, '', '', ''),
  2729. (6280, 'Rolls-Royce/ Bentley', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_rolls-royce-bentley', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Rolls-Royce/ Bentley', '', 0, 1, 0, '', '', ''),
  2730. (6281, 'Saab', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_saab', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Saab', '', 0, 1, 0, '', '', ''),
  2731. (6282, 'Rover/ MGF', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_rover-mgf', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Rover/ MGF', '', 0, 1, 0, '', '', ''),
  2732. (6283, 'Seat', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_seat', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Seat', '', 0, 1, 0, '', '', ''),
  2733. (6284, 'Skoda', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_skoda', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Skoda', '', 0, 1, 0, '', '', ''),
  2734. (6285, 'Smart', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_smart', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Smart', '', 0, 1, 0, '', '', ''),
  2735. (6286, 'Ssangyong', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_ssangyong', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Ssangyong', '', 0, 1, 0, '', '', ''),
  2736. (6287, 'Subaru', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_subaru', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Subaru', '', 0, 1, 0, '', '', ''),
  2737. (6288, 'Sunbeam', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_sunbeam', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Sunbeam', '', 0, 1, 0, '', '', ''),
  2738. (6289, 'Suzuki', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_suzuki', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Suzuki', '', 0, 1, 0, '', '', ''),
  2739. (6290, 'Talbot', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_talbot', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Talbot', '', 0, 1, 0, '', '', ''),
  2740. (6291, 'Toyota', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_toyota', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Toyota', '', 0, 1, 0, '', '', ''),
  2741. (6292, 'TVR', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_tvr', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: TVR', '', 0, 1, 0, '', '', ''),
  2742. (6293, 'Triumph', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_triumph', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Triumph', '', 0, 1, 0, '', '', ''),
  2743. (6294, 'Vauxhall & Opel', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_vauxhall-opel', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Vauxhall & Opel', '', 0, 1, 0, '', '', ''),
  2744. (6295, 'Volkswagen', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_volkswagen', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Volkswagen', '', 0, 1, 0, '', '', ''),
  2745. (6296, 'Volvo', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_volvo', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Volvo', '', 0, 1, 0, '', '', ''),
  2746. (6297, 'Wolseley', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_wolseley', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Wolseley', '', 0, 1, 0, '', '', ''),
  2747. (6298, 'Kit Cars', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_kit-cars', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Kit Cars', '', 0, 1, 0, '', '', ''),
  2748. (6299, 'Calendars', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_calendars', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Calendars', '', 0, 1, 0, '', '', ''),
  2749. (6300, 'Driving Test Guides', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_driving-test-guides', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Driving Test Guides', '', 0, 1, 0, '', '', ''),
  2750. (6301, 'Motorsport', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_motorsport', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Motorsport', '', 0, 1, 0, '', '', ''),
  2751. (6302, 'Parts Manufacturer Catalogues', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_parts-manufacturer-catalogues', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Parts Manufacturer Catalogues', '', 0, 1, 0, '', '', ''),
  2752. (6303, 'Technical', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_technical', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Technical', '', 0, 1, 0, '', '', ''),
  2753. (6304, 'Other Manuals & Literature', 6190, 0, NULL, 'vehicle-parts-accessories_car-manuals-literature_other-manuals-literature', 'Vehicle Parts & Accessories :: Car Manuals & Literature :: Other Manuals & Literature', '', 0, 1, 0, '', '', ''),
  2754. (6305, 'Air Conditioning & Heating', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_air-conditioning-heating', 'Vehicle Parts & Accessories :: Car Parts :: Air Conditioning & Heating', '', 0, 1, 0, '', '', ''),
  2755. (6306, 'Air Intake & Fuel Delivery', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_air-intake-fuel-delivery', 'Vehicle Parts & Accessories :: Car Parts :: Air Intake & Fuel Delivery', '', 0, 1, 0, '', '', ''),
  2756. (6307, 'Braking', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_braking', 'Vehicle Parts & Accessories :: Car Parts :: Braking', '', 0, 1, 0, '', '', ''),
  2757. (6308, 'Electrical Components', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_electrical-components', 'Vehicle Parts & Accessories :: Car Parts :: Electrical Components', '', 0, 1, 0, '', '', ''),
  2758. (6309, 'Emission Systems', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_emission-systems', 'Vehicle Parts & Accessories :: Car Parts :: Emission Systems', '', 0, 1, 0, '', '', ''),
  2759. (6310, 'Engine Cooling', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_engine-cooling', 'Vehicle Parts & Accessories :: Car Parts :: Engine Cooling', '', 0, 1, 0, '', '', ''),
  2760. (6311, 'Engines & Engine Parts', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_engines-engine-parts', 'Vehicle Parts & Accessories :: Car Parts :: Engines & Engine Parts', '', 0, 1, 0, '', '', ''),
  2761. (6312, 'Exhausts & Exhaust Parts', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_exhausts-exhaust-parts', 'Vehicle Parts & Accessories :: Car Parts :: Exhausts & Exhaust Parts', '', 0, 1, 0, '', '', ''),
  2762. (6313, 'External & Body Parts', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_external-body-parts', 'Vehicle Parts & Accessories :: Car Parts :: External & Body Parts', '', 0, 1, 0, '', '', ''),
  2763. (6314, 'External Lights & Indicators', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_external-lights-indicators', 'Vehicle Parts & Accessories :: Car Parts :: External Lights & Indicators', '', 0, 1, 0, '', '', ''),
  2764. (6315, 'Gauges, Dials & Instruments', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_gauges-dials-instruments', 'Vehicle Parts & Accessories :: Car Parts :: Gauges, Dials & Instruments', '', 0, 1, 0, '', '', ''),
  2765. (6316, 'Ignition', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_ignition', 'Vehicle Parts & Accessories :: Car Parts :: Ignition', '', 0, 1, 0, '', '', ''),
  2766. (6317, 'Interior Parts & Furnishings', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_interior-parts-furnishings', 'Vehicle Parts & Accessories :: Car Parts :: Interior Parts & Furnishings', '', 0, 1, 0, '', '', ''),
  2767. (6318, 'Service Kits', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_service-kits', 'Vehicle Parts & Accessories :: Car Parts :: Service Kits', '', 0, 1, 0, '', '', ''),
  2768. (6319, 'Suspension & Steering', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_suspension-steering', 'Vehicle Parts & Accessories :: Car Parts :: Suspension & Steering', '', 0, 1, 0, '', '', ''),
  2769. (6320, 'Transmission & Drivetrain', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_transmission-drivetrain', 'Vehicle Parts & Accessories :: Car Parts :: Transmission & Drivetrain', '', 0, 1, 0, '', '', ''),
  2770. (6321, 'Turbos & Superchargers', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_turbos-superchargers', 'Vehicle Parts & Accessories :: Car Parts :: Turbos & Superchargers', '', 0, 1, 0, '', '', ''),
  2771. (6322, 'Windscreen Wipers & Washers', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_windscreen-wipers-washers', 'Vehicle Parts & Accessories :: Car Parts :: Windscreen Wipers & Washers', '', 0, 1, 0, '', '', ''),
  2772. (6323, 'Other Car Parts', 6191, 0, NULL, 'vehicle-parts-accessories_car-parts_other-car-parts', 'Vehicle Parts & Accessories :: Car Parts :: Other Car Parts', '', 0, 1, 0, '', '', ''),
  2773. (6324, 'Exterior Styling', 6192, 0, NULL, 'vehicle-parts-accessories_car-tuning-styling_exterior-styling', 'Vehicle Parts & Accessories :: Car Tuning & Styling :: Exterior Styling', '', 0, 1, 0, '', '', ''),
  2774. (6325, 'Interior Styling', 6192, 0, NULL, 'vehicle-parts-accessories_car-tuning-styling_interior-styling', 'Vehicle Parts & Accessories :: Car Tuning & Styling :: Interior Styling', '', 0, 1, 0, '', '', ''),
  2775. (6326, 'Custom Lighting', 6192, 0, NULL, 'vehicle-parts-accessories_car-tuning-styling_custom-lighting', 'Vehicle Parts & Accessories :: Car Tuning & Styling :: Custom Lighting', '', 0, 1, 0, '', '', ''),
  2776. (6327, 'Performance & Tuning Parts', 6192, 0, NULL, 'vehicle-parts-accessories_car-tuning-styling_performance-tuning-parts', 'Vehicle Parts & Accessories :: Car Tuning & Styling :: Performance & Tuning Parts', '', 0, 1, 0, '', '', ''),
  2777. (6328, 'Other Car Tuning & Styling', 6192, 0, NULL, 'vehicle-parts-accessories_car-tuning-styling_other-car-tuning-styling', 'Vehicle Parts & Accessories :: Car Tuning & Styling :: Other Car Tuning & Styling', '', 0, 1, 0, '', '', ''),
  2778. (6329, 'Nuts', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_nuts', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Nuts', '', 0, 1, 0, '', '', ''),
  2779. (6330, 'Wheel Rims', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_wheel-rims', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Wheel Rims', '', 0, 1, 0, '', '', ''),
  2780. (6331, 'Wheels with Tyres', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_wheels-with-tyres', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Wheels with Tyres', '', 0, 1, 0, '', '', ''),
  2781. (6332, 'Trims', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_trims', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Trims', '', 0, 1, 0, '', '', ''),
  2782. (6333, 'Tyres', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_tyres', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Tyres', '', 0, 1, 0, '', '', ''),
  2783. (6334, 'Valve Caps', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_valve-caps', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Valve Caps', '', 0, 1, 0, '', '', ''),
  2784. (6335, 'Wheel Spacers', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_wheel-spacers', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Wheel Spacers', '', 0, 1, 0, '', '', ''),
  2785. (6336, 'Other Wheels, Tyres & Trims', 6193, 0, NULL, 'vehicle-parts-accessories_car-wheels-tyres-trims_other-wheels-tyres-trims', 'Vehicle Parts & Accessories :: Car Wheels, Tyres & Trims :: Other Wheels, Tyres & Trims', '', 0, 1, 0, '', '', ''),
  2786. (6337, 'Helmets & Headwear', 6195, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection_helmets-headwear', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection :: Helmets & Headwear', '', 0, 1, 0, '', '', ''),
  2787. (6338, 'Car & Kart Racewear', 6195, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection_car-kart-racewear', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection :: Car & Kart Racewear', '', 0, 1, 0, '', '', ''),
  2788. (6339, 'Mechanics Wear', 6195, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection_mechanics-wear', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection :: Mechanics Wear', '', 0, 1, 0, '', '', ''),
  2789. (6340, 'Motorcycle Clothing', 6195, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection_motorcycle-clothing', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection :: Motorcycle Clothing', '', 0, 1, 0, '', '', ''),
  2790. (6341, 'Motocross & Off Road Clothing', 6195, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection_motocross-off-road-clothing', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection :: Motocross & Off Road Clothing', '', 0, 1, 0, '', '', ''),
  2791. (6342, 'Other Clothing & Protection', 6195, 0, NULL, 'vehicle-parts-accessories_clothing-helmets-protection_other-clothing-protection', 'Vehicle Parts & Accessories :: Clothing, Helmets & Protection :: Other Clothing & Protection', '', 0, 1, 0, '', '', ''),
  2792. (6343, 'Agricultural Vehicles', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_agricultural-vehicles', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Agricultural Vehicles', '', 0, 1, 0, '', '', ''),
  2793. (6344, 'Lorries/ Trucks', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_lorries-trucks', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Lorries/ Trucks', '', 0, 1, 0, '', '', ''),
  2794. (6345, 'Minibuses/ Buses/ Coaches', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_minibuses-buses-coaches', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Minibuses/ Buses/ Coaches', '', 0, 1, 0, '', '', ''),
  2795. (6346, 'Taxis', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_taxis', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Taxis', '', 0, 1, 0, '', '', ''),
  2796. (6347, 'Trailers/ Transporters', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_trailers-transporters', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Trailers/ Transporters', '', 0, 1, 0, '', '', ''),
  2797. (6348, 'Vans/ Pickups', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_vans-pickups', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Vans/ Pickups', '', 0, 1, 0, '', '', ''),
  2798. (6349, 'Other Commercial Vehicles', 6196, 0, NULL, 'vehicle-parts-accessories_commercial-vehicles-parts_other-commercial-vehicles', 'Vehicle Parts & Accessories :: Commercial Vehicles Parts :: Other Commercial Vehicles', '', 0, 1, 0, '', '', ''),
  2799. (6350, 'Air Conditioning Tools', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_air-conditioning-tools', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Air Conditioning Tools', '', 0, 1, 0, '', '', ''),
  2800. (6351, 'Air Tools & Compressors', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_air-tools-compressors', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Air Tools & Compressors', '', 0, 1, 0, '', '', ''),
  2801. (6352, 'Diagnostic Tools & Equipment', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_diagnostic-tools-equipment', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Diagnostic Tools & Equipment', '', 0, 1, 0, '', '', ''),
  2802. (6353, 'Hand Tools', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_hand-tools', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Hand Tools', '', 0, 1, 0, '', '', ''),
  2803. (6354, 'Lifting Tools', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_lifting-tools', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Lifting Tools', '', 0, 1, 0, '', '', ''),
  2804. (6355, 'Paint & Body Shop Supplies', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_paint-body-shop-supplies', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Paint & Body Shop Supplies', '', 0, 1, 0, '', '', ''),
  2805. (6356, 'Power Tools & Equipment', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_power-tools-equipment', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Power Tools & Equipment', '', 0, 1, 0, '', '', ''),
  2806. (6357, 'Recovery Tools', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_recovery-tools', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Recovery Tools', '', 0, 1, 0, '', '', ''),
  2807. (6358, 'Special Tools & Measuring Tool', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_special-tools-measuring-tool', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Special Tools & Measuring Tool', '', 0, 1, 0, '', '', ''),
  2808. (6359, 'Storage', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_storage', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Storage', '', 0, 1, 0, '', '', ''),
  2809. (6360, 'Other Garage Equipment & Tools', 6197, 0, NULL, 'vehicle-parts-accessories_garage-equipment-tools_other-garage-equipment-tools', 'Vehicle Parts & Accessories :: Garage Equipment & Tools :: Other Garage Equipment & Tools', '', 0, 1, 0, '', '', ''),
  2810. (6361, 'Amplifiers', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_amplifiers', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Amplifiers', '', 0, 1, 0, '', '', ''),
  2811. (6362, 'Aux-in/Interface Cables', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_aux-in-interface-cables', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Aux-in/Interface Cables', '', 0, 1, 0, '', '', ''),
  2812. (6363, 'Camera Detectors', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_camera-detectors', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Camera Detectors', '', 0, 1, 0, '', '', ''),
  2813. (6364, 'Car Stereos/Head Units', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_car-stereos-head-units', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Car Stereos/Head Units', '', 0, 1, 0, '', '', ''),
  2814. (6365, 'CD/DVD Changers', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_cd-dvd-changers', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: CD/DVD Changers', '', 0, 1, 0, '', '', ''),
  2815. (6366, 'DVD Players', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_dvd-players', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: DVD Players', '', 0, 1, 0, '', '', ''),
  2816. (6367, 'GPS & Sat Nav', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_gps-sat-nav', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: GPS & Sat Nav', '', 0, 1, 0, '', '', ''),
  2817. (6368, 'Headphones', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_headphones', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Headphones', '', 0, 1, 0, '', '', ''),
  2818. (6369, 'In-Car CCTV', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_in-car-cctv', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: In-Car CCTV', '', 0, 1, 0, '', '', ''),
  2819. (6370, 'Parking Sensor Kits', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_parking-sensor-kits', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Parking Sensor Kits', '', 0, 1, 0, '', '', ''),
  2820. (6371, 'Reversing Cameras & Kits', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_reversing-cameras-kits', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Reversing Cameras & Kits', '', 0, 1, 0, '', '', ''),
  2821. (6372, 'Screens/Monitors', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_screens-monitors', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Screens/Monitors', '', 0, 1, 0, '', '', ''),
  2822. (6373, 'Speakers', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_speakers', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Speakers', '', 0, 1, 0, '', '', ''),
  2823. (6374, 'Steering Wheel Interfaces', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_steering-wheel-interfaces', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Steering Wheel Interfaces', '', 0, 1, 0, '', '', ''),
  2824. (6375, 'Subwoofers', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_subwoofers', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Subwoofers', '', 0, 1, 0, '', '', ''),
  2825. (6376, 'Terminals & Wiring', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_terminals-wiring', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Terminals & Wiring', '', 0, 1, 0, '', '', ''),
  2826. (6377, 'Other In-Car Technology', 6198, 0, NULL, 'vehicle-parts-accessories_gps-in-car-technology_other-in-car-technology', 'Vehicle Parts & Accessories :: GPS & In-Car Technology :: Other In-Car Technology', '', 0, 1, 0, '', '', ''),
  2827. (6378, 'Accessories', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_accessories', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Accessories', '', 0, 1, 0, '', '', ''),
  2828. (6379, 'Manuals & Literature', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_manuals-literature', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Manuals & Literature', '', 0, 1, 0, '', '', ''),
  2829. (6380, 'Motorcycle Parts', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_motorcycle-parts', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Motorcycle Parts', '', 0, 1, 0, '', '', ''),
  2830. (6381, 'Scooter Parts', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_scooter-parts', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Scooter Parts', '', 0, 1, 0, '', '', ''),
  2831. (6382, 'Trials & Motocross Bike Parts', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_trials-motocross-bike-parts', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Trials & Motocross Bike Parts', '', 0, 1, 0, '', '', ''),
  2832. (6383, 'Quad, ATV & Trike Parts', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_quad-atv-trike-parts', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Quad, ATV & Trike Parts', '', 0, 1, 0, '', '', ''),
  2833. (6384, 'Wheels, Tyres & Tubes', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_wheels-tyres-tubes', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Wheels, Tyres & Tubes', '', 0, 1, 0, '', '', ''),
  2834. (6385, 'Other Parts & Accessories', 6199, 0, NULL, 'vehicle-parts-accessories_motorcycle-parts-accessories_other-parts-accessories', 'Vehicle Parts & Accessories :: Motorcycle Parts & Accessories :: Other Parts & Accessories', '', 0, 1, 0, '', '', ''),
  2835. (6386, 'Accessories', 6200, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories_accessories', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories :: Accessories', '', 0, 1, 0, '', '', ''),
  2836. (6387, 'Awnings', 6200, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories_awnings', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories :: Awnings', '', 0, 1, 0, '', '', ''),
  2837. (6388, 'Campervan & Motorhome Parts', 6200, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories_campervan-motorhome-parts', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories :: Campervan & Motorhome Parts', '', 0, 1, 0, '', '', ''),
  2838. (6389, 'Caravan Parts', 6200, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories_caravan-parts', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories :: Caravan Parts', '', 0, 1, 0, '', '', ''),
  2839. (6390, 'Manuals & Literature', 6200, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories_manuals-literature', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories :: Manuals & Literature', '', 0, 1, 0, '', '', ''),
  2840. (6391, 'Other Camper & Caravan Parts', 6200, 0, NULL, 'vehicle-parts-accessories_motorhome-parts-accessories_other-camper-caravan-parts', 'Vehicle Parts & Accessories :: Motorhome Parts & Accessories :: Other Camper & Caravan Parts', '', 0, 1, 0, '', '', ''),
  2841. (6392, 'Antifreeze/Coolants', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_antifreeze-coolants', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Antifreeze/Coolants', '', 0, 1, 0, '', '', ''),
  2842. (6393, 'Axle & Differential Oils', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_axle-differential-oils', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Axle & Differential Oils', '', 0, 1, 0, '', '', ''),
  2843. (6394, 'Brake Fluids', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_brake-fluids', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Brake Fluids', '', 0, 1, 0, '', '', ''),
  2844. (6395, 'Cleaners & Degreasers', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_cleaners-degreasers', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Cleaners & Degreasers', '', 0, 1, 0, '', '', ''),
  2845. (6396, 'Clutch Fluids', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_clutch-fluids', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Clutch Fluids', '', 0, 1, 0, '', '', ''),
  2846. (6397, 'Engine Oils', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_engine-oils', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Engine Oils', '', 0, 1, 0, '', '', ''),
  2847. (6398, 'Fuel & Oil Additives', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_fuel-oil-additives', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Fuel & Oil Additives', '', 0, 1, 0, '', '', ''),
  2848. (6399, 'Gearbox Oils/ATF', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_gearbox-oils-atf', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Gearbox Oils/ATF', '', 0, 1, 0, '', '', ''),
  2849. (6400, 'Greases', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_greases', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Greases', '', 0, 1, 0, '', '', ''),
  2850. (6401, 'Spray Lubricants', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_spray-lubricants', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Spray Lubricants', '', 0, 1, 0, '', '', ''),
  2851. (6402, 'Steering Fluids', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_steering-fluids', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Steering Fluids', '', 0, 1, 0, '', '', ''),
  2852. (6403, 'Suspension Fluids', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_suspension-fluids', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Suspension Fluids', '', 0, 1, 0, '', '', ''),
  2853. (6404, 'Windscreen Washing Fluids', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_windscreen-washing-fluids', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Windscreen Washing Fluids', '', 0, 1, 0, '', '', ''),
  2854. (6405, 'Other Oils & Lubricants', 6201, 0, NULL, 'vehicle-parts-accessories_oils-lubricants-fluids_other-oils-lubricants', 'Vehicle Parts & Accessories :: Oils, Lubricants & Fluids :: Other Oils & Lubricants', '', 0, 1, 0, '', '', ''),
  2855. (6406, 'Disabled Vehicle Parts', 6203, 0, NULL, 'vehicle-parts-accessories_other-vehicle-parts-accs_disabled-vehicle-parts', 'Vehicle Parts & Accessories :: Other Vehicle Parts & Accs :: Disabled Vehicle Parts', '', 0, 1, 0, '', '', ''),
  2856. (6407, 'Go-Kart Parts', 6203, 0, NULL, 'vehicle-parts-accessories_other-vehicle-parts-accs_go-kart-parts', 'Vehicle Parts & Accessories :: Other Vehicle Parts & Accs :: Go-Kart Parts', '', 0, 1, 0, '', '', ''),
  2857. (6408, 'Military Vehicle Parts', 6203, 0, NULL, 'vehicle-parts-accessories_other-vehicle-parts-accs_military-vehicle-parts', 'Vehicle Parts & Accessories :: Other Vehicle Parts & Accs :: Military Vehicle Parts', '', 0, 1, 0, '', '', ''),
  2858. (6409, 'Other Vehicle Parts & Accs', 6203, 0, NULL, 'vehicle-parts-accessories_other-vehicle-parts-accs_other-vehicle-parts-accs', 'Vehicle Parts & Accessories :: Other Vehicle Parts & Accs :: Other Vehicle Parts & Accs', '', 0, 1, 0, '', '', ''),
  2859. (6410, 'Vehicle Services & Repairs', 3708, 0, NULL, 'vehicle-parts-accessories_vehicle-services-repairs', 'Vehicle Parts & Accessories :: Vehicle Services & Repairs', '', 0, 1, 0, '', '', ''),
  2860. (6411, 'Action Figures', 3707, 0, NULL, 'toys-games_action-figures', 'Toys & Games :: Action Figures', '', 0, 1, 0, '', '', ''),
  2861. (6412, 'Beanies', 3707, 0, NULL, 'toys-games_beanies', 'Toys & Games :: Beanies', '', 0, 1, 0, '', '', ''),
  2862. (6413, 'Construction Toys & Kits', 3707, 0, NULL, 'toys-games_construction-toys-kits', 'Toys & Games :: Construction Toys & Kits', '', 0, 1, 0, '', '', ''),
  2863. (6414, 'Creative Toys & Activities', 3707, 0, NULL, 'toys-games_creative-toys-activities', 'Toys & Games :: Creative Toys & Activities', '', 0, 1, 0, '', '', ''),
  2864. (6415, 'Diecast & Vehicles', 3707, 0, NULL, 'toys-games_diecast-vehicles', 'Toys & Games :: Diecast & Vehicles', '', 0, 1, 0, '', '', ''),
  2865. (6416, 'Educational Toys', 3707, 0, NULL, 'toys-games_educational-toys', 'Toys & Games :: Educational Toys', '', 0, 1, 0, '', '', ''),
  2866. (6417, 'Electronic Pets', 3707, 0, NULL, 'toys-games_electronic-pets', 'Toys & Games :: Electronic Pets', '', 0, 1, 0, '', '', ''),
  2867. (6418, 'Fast Food, Cereal & Sweet Toys', 3707, 0, NULL, 'toys-games_fast-food-cereal-sweet-toys', 'Toys & Games :: Fast Food, Cereal & Sweet Toys', '', 0, 1, 0, '', '', ''),
  2868. (6419, 'Games', 3707, 0, NULL, 'toys-games_games', 'Toys & Games :: Games', '', 0, 1, 0, '', '', ''),
  2869. (6420, 'Jigsaws & Puzzles', 3707, 0, NULL, 'toys-games_jigsaws-puzzles', 'Toys & Games :: Jigsaws & Puzzles', '', 0, 1, 0, '', '', ''),
  2870. (6421, 'Model Kits', 3707, 0, NULL, 'toys-games_model-kits', 'Toys & Games :: Model Kits', '', 0, 1, 0, '', '', ''),
  2871. (6422, 'Outdoor Toys & Activities', 3707, 0, NULL, 'toys-games_outdoor-toys-activities', 'Toys & Games :: Outdoor Toys & Activities', '', 0, 1, 0, '', '', ''),
  2872. (6423, 'Pre-School & Young Children', 3707, 0, NULL, 'toys-games_pre-school-young-children', 'Toys & Games :: Pre-School & Young Children', '', 0, 1, 0, '', '', ''),
  2873. (6424, 'Radio-Controlled', 3707, 0, NULL, 'toys-games_radio-controlled', 'Toys & Games :: Radio-Controlled', '', 0, 1, 0, '', '', ''),
  2874. (6425, 'Scalextric & Slot Car', 3707, 0, NULL, 'toys-games_scalextric-slot-car', 'Toys & Games :: Scalextric & Slot Car', '', 0, 1, 0, '', '', ''),
  2875. (6426, 'Steam', 3707, 0, NULL, 'toys-games_steam', 'Toys & Games :: Steam', '', 0, 1, 0, '', '', ''),
  2876. (6427, 'Toy Soldiers', 3707, 0, NULL, 'toys-games_toy-soldiers', 'Toys & Games :: Toy Soldiers', '', 0, 1, 0, '', '', ''),
  2877. (6428, 'TV & Film Character Toys', 3707, 0, NULL, 'toys-games_tv-film-character-toys', 'Toys & Games :: TV & Film Character Toys', '', 0, 1, 0, '', '', ''),
  2878. (6429, 'Vintage & Classic Toys', 3707, 0, NULL, 'toys-games_vintage-classic-toys', 'Toys & Games :: Vintage & Classic Toys', '', 0, 1, 0, '', '', ''),
  2879. (6430, 'Wargames & Role-Playing', 3707, 0, NULL, 'toys-games_wargames-role-playing', 'Toys & Games :: Wargames & Role-Playing', '', 0, 1, 0, '', '', ''),
  2880. (6431, 'Other Toys & Games', 3707, 0, NULL, 'toys-games_other-toys-games', 'Toys & Games :: Other Toys & Games', '', 0, 1, 0, '', '', ''),
  2881. (6432, 'Animals & Dinosaurs', 6411, 0, NULL, 'toys-games_action-figures_animals-dinosaurs', 'Toys & Games :: Action Figures :: Animals & Dinosaurs', '', 0, 1, 0, '', '', ''),
  2882. (6433, 'Anime & Manga', 6411, 0, NULL, 'toys-games_action-figures_anime-manga', 'Toys & Games :: Action Figures :: Anime & Manga', '', 0, 1, 0, '', '', ''),
  2883. (6434, 'Comic Book Heroes', 6411, 0, NULL, 'toys-games_action-figures_comic-book-heroes', 'Toys & Games :: Action Figures :: Comic Book Heroes', '', 0, 1, 0, '', '', ''),
  2884. (6435, 'Designer & Urban Vinyl', 6411, 0, NULL, 'toys-games_action-figures_designer-urban-vinyl', 'Toys & Games :: Action Figures :: Designer & Urban Vinyl', '', 0, 1, 0, '', '', ''),
  2885. (6436, 'Fantasy', 6411, 0, NULL, 'toys-games_action-figures_fantasy', 'Toys & Games :: Action Figures :: Fantasy', '', 0, 1, 0, '', '', ''),
  2886. (6437, 'Historical Figures', 6411, 0, NULL, 'toys-games_action-figures_historical-figures', 'Toys & Games :: Action Figures :: Historical Figures', '', 0, 1, 0, '', '', ''),
  2887. (6438, 'Military & Adventure', 6411, 0, NULL, 'toys-games_action-figures_military-adventure', 'Toys & Games :: Action Figures :: Military & Adventure', '', 0, 1, 0, '', '', ''),
  2888. (6439, 'Music', 6411, 0, NULL, 'toys-games_action-figures_music', 'Toys & Games :: Action Figures :: Music', '', 0, 1, 0, '', '', ''),
  2889. (6440, 'Sports', 6411, 0, NULL, 'toys-games_action-figures_sports', 'Toys & Games :: Action Figures :: Sports', '', 0, 1, 0, '', '', ''),
  2890. (6441, 'Transformers & Robots', 6411, 0, NULL, 'toys-games_action-figures_transformers-robots', 'Toys & Games :: Action Figures :: Transformers & Robots', '', 0, 1, 0, '', '', ''),
  2891. (6442, 'TV, Movies & Video Games', 6411, 0, NULL, 'toys-games_action-figures_tv-movies-video-games', 'Toys & Games :: Action Figures :: TV, Movies & Video Games', '', 0, 1, 0, '', '', ''),
  2892. (6443, 'Other Action Figures', 6411, 0, NULL, 'toys-games_action-figures_other-action-figures', 'Toys & Games :: Action Figures :: Other Action Figures', '', 0, 1, 0, '', '', ''),
  2893. (6444, 'Accessories', 6412, 0, NULL, 'toys-games_beanies_accessories', 'Toys & Games :: Beanies :: Accessories', '', 0, 1, 0, '', '', ''),
  2894. (6445, 'Bean Bag Plush', 6412, 0, NULL, 'toys-games_beanies_bean-bag-plush', 'Toys & Games :: Beanies :: Bean Bag Plush', '', 0, 1, 0, '', '', ''),
  2895. (6446, 'Ty Attic', 6412, 0, NULL, 'toys-games_beanies_ty-attic', 'Toys & Games :: Beanies :: Ty Attic', '', 0, 1, 0, '', '', ''),
  2896. (6447, 'Ty Beanie Babies', 6412, 0, NULL, 'toys-games_beanies_ty-beanie-babies', 'Toys & Games :: Beanies :: Ty Beanie Babies', '', 0, 1, 0, '', '', ''),
  2897. (6448, 'Ty Beanie Boppers', 6412, 0, NULL, 'toys-games_beanies_ty-beanie-boppers', 'Toys & Games :: Beanies :: Ty Beanie Boppers', '', 0, 1, 0, '', '', ''),
  2898. (6449, 'Ty Beanie Buddies', 6412, 0, NULL, 'toys-games_beanies_ty-beanie-buddies', 'Toys & Games :: Beanies :: Ty Beanie Buddies', '', 0, 1, 0, '', '', ''),
  2899. (6450, 'Ty Beanie Kids', 6412, 0, NULL, 'toys-games_beanies_ty-beanie-kids', 'Toys & Games :: Beanies :: Ty Beanie Kids', '', 0, 1, 0, '', '', ''),
  2900. (6451, 'Ty Pillow Pals', 6412, 0, NULL, 'toys-games_beanies_ty-pillow-pals', 'Toys & Games :: Beanies :: Ty Pillow Pals', '', 0, 1, 0, '', '', ''),
  2901. (6452, 'Ty Plush', 6412, 0, NULL, 'toys-games_beanies_ty-plush', 'Toys & Games :: Beanies :: Ty Plush', '', 0, 1, 0, '', '', ''),
  2902. (6453, 'Ty Teenie Beanies', 6412, 0, NULL, 'toys-games_beanies_ty-teenie-beanies', 'Toys & Games :: Beanies :: Ty Teenie Beanies', '', 0, 1, 0, '', '', ''),
  2903. (6454, 'Ty Trading Cards', 6412, 0, NULL, 'toys-games_beanies_ty-trading-cards', 'Toys & Games :: Beanies :: Ty Trading Cards', '', 0, 1, 0, '', '', ''),
  2904. (6455, 'Other Beanies', 6412, 0, NULL, 'toys-games_beanies_other-beanies', 'Toys & Games :: Beanies :: Other Beanies', '', 0, 1, 0, '', '', ''),
  2905. (6456, 'Bayko', 6413, 0, NULL, 'toys-games_construction-toys-kits_bayko', 'Toys & Games :: Construction Toys & Kits :: Bayko', '', 0, 1, 0, '', '', ''),
  2906. (6457, 'Ello', 6413, 0, NULL, 'toys-games_construction-toys-kits_ello', 'Toys & Games :: Construction Toys & Kits :: Ello', '', 0, 1, 0, '', '', ''),
  2907. (6458, 'Geomag', 6413, 0, NULL, 'toys-games_construction-toys-kits_geomag', 'Toys & Games :: Construction Toys & Kits :: Geomag', '', 0, 1, 0, '', '', ''),
  2908. (6459, 'K'NEX', 6413, 0, NULL, 'toys-games_construction-toys-kits_knex', 'Toys & Games :: Construction Toys & Kits :: K'NEX', '', 0, 1, 0, '', '', ''),
  2909. (6460, 'Lego', 6413, 0, NULL, 'toys-games_construction-toys-kits_lego', 'Toys & Games :: Construction Toys & Kits :: Lego', '', 0, 1, 0, '', '', ''),
  2910. (6461, 'Meccano', 6413, 0, NULL, 'toys-games_construction-toys-kits_meccano', 'Toys & Games :: Construction Toys & Kits :: Meccano', '', 0, 1, 0, '', '', ''),
  2911. (6462, 'Mega Bloks', 6413, 0, NULL, 'toys-games_construction-toys-kits_mega-bloks', 'Toys & Games :: Construction Toys & Kits :: Mega Bloks', '', 0, 1, 0, '', '', ''),
  2912. (6463, 'Sticklebricks', 6413, 0, NULL, 'toys-games_construction-toys-kits_sticklebricks', 'Toys & Games :: Construction Toys & Kits :: Sticklebricks', '', 0, 1, 0, '', '', ''),
  2913. (6464, 'Supermag', 6413, 0, NULL, 'toys-games_construction-toys-kits_supermag', 'Toys & Games :: Construction Toys & Kits :: Supermag', '', 0, 1, 0, '', '', ''),
  2914. (6465, 'Other Construction Toys', 6413, 0, NULL, 'toys-games_construction-toys-kits_other-construction-toys', 'Toys & Games :: Construction Toys & Kits :: Other Construction Toys', '', 0, 1, 0, '', '', ''),
  2915. (6466, 'Anson', 6415, 0, NULL, 'toys-games_diecast-vehicles_anson', 'Toys & Games :: Diecast & Vehicles :: Anson', '', 0, 1, 0, '', '', ''),
  2916. (6467, 'Auto Art', 6415, 0, NULL, 'toys-games_diecast-vehicles_auto-art', 'Toys & Games :: Diecast & Vehicles :: Auto Art', '', 0, 1, 0, '', '', ''),
  2917. (6468, 'Bang/ Box / Best', 6415, 0, NULL, 'toys-games_diecast-vehicles_bang-box-best', 'Toys & Games :: Diecast & Vehicles :: Bang/ Box / Best', '', 0, 1, 0, '', '', ''),
  2918. (6469, 'Benbros', 6415, 0, NULL, 'toys-games_diecast-vehicles_benbros', 'Toys & Games :: Diecast & Vehicles :: Benbros', '', 0, 1, 0, '', '', ''),
  2919. (6470, 'Britains', 6415, 0, NULL, 'toys-games_diecast-vehicles_britains', 'Toys & Games :: Diecast & Vehicles :: Britains', '', 0, 1, 0, '', '', ''),
  2920. (6471, 'Brooklin', 6415, 0, NULL, 'toys-games_diecast-vehicles_brooklin', 'Toys & Games :: Diecast & Vehicles :: Brooklin', '', 0, 1, 0, '', '', ''),
  2921. (6472, 'Brumm', 6415, 0, NULL, 'toys-games_diecast-vehicles_brumm', 'Toys & Games :: Diecast & Vehicles :: Brumm', '', 0, 1, 0, '', '', ''),
  2922. (6473, 'Budgie', 6415, 0, NULL, 'toys-games_diecast-vehicles_budgie', 'Toys & Games :: Diecast & Vehicles :: Budgie', '', 0, 1, 0, '', '', ''),
  2923. (6474, 'Burago', 6415, 0, NULL, 'toys-games_diecast-vehicles_burago', 'Toys & Games :: Diecast & Vehicles :: Burago', '', 0, 1, 0, '', '', ''),
  2924. (6475, 'Cararama & Hongwell', 6415, 0, NULL, 'toys-games_diecast-vehicles_cararama-hongwell', 'Toys & Games :: Diecast & Vehicles :: Cararama & Hongwell', '', 0, 1, 0, '', '', ''),
  2925. (6476, 'Charbens', 6415, 0, NULL, 'toys-games_diecast-vehicles_charbens', 'Toys & Games :: Diecast & Vehicles :: Charbens', '', 0, 1, 0, '', '', ''),
  2926. (6477, 'Code 3', 6415, 0, NULL, 'toys-games_diecast-vehicles_code-3', 'Toys & Games :: Diecast & Vehicles :: Code 3', '', 0, 1, 0, '', '', ''),
  2927. (6478, 'Conrad/ NZG', 6415, 0, NULL, 'toys-games_diecast-vehicles_conrad-nzg', 'Toys & Games :: Diecast & Vehicles :: Conrad/ NZG', '', 0, 1, 0, '', '', ''),
  2928. (6479, 'Corgi', 6415, 0, NULL, 'toys-games_diecast-vehicles_corgi', 'Toys & Games :: Diecast & Vehicles :: Corgi', '', 0, 1, 0, '', '', ''),
  2929. (6480, 'Crescent', 6415, 0, NULL, 'toys-games_diecast-vehicles_crescent', 'Toys & Games :: Diecast & Vehicles :: Crescent', '', 0, 1, 0, '', '', ''),
  2930. (6481, 'Danbury Mint', 6415, 0, NULL, 'toys-games_diecast-vehicles_danbury-mint', 'Toys & Games :: Diecast & Vehicles :: Danbury Mint', '', 0, 1, 0, '', '', ''),
  2931. (6482, 'Detail', 6415, 0, NULL, 'toys-games_diecast-vehicles_detail', 'Toys & Games :: Diecast & Vehicles :: Detail', '', 0, 1, 0, '', '', ''),
  2932. (6483, 'Dinky', 6415, 0, NULL, 'toys-games_diecast-vehicles_dinky', 'Toys & Games :: Diecast & Vehicles :: Dinky', '', 0, 1, 0, '', '', ''),
  2933. (6484, 'Dragon', 6415, 0, NULL, 'toys-games_diecast-vehicles_dragon', 'Toys & Games :: Diecast & Vehicles :: Dragon', '', 0, 1, 0, '', '', ''),
  2934. (6485, 'EFE', 6415, 0, NULL, 'toys-games_diecast-vehicles_efe', 'Toys & Games :: Diecast & Vehicles :: EFE', '', 0, 1, 0, '', '', ''),
  2935. (6486, 'Eligor', 6415, 0, NULL, 'toys-games_diecast-vehicles_eligor', 'Toys & Games :: Diecast & Vehicles :: Eligor', '', 0, 1, 0, '', '', ''),
  2936. (6487, 'ERTL', 6415, 0, NULL, 'toys-games_diecast-vehicles_ertl', 'Toys & Games :: Diecast & Vehicles :: ERTL', '', 0, 1, 0, '', '', ''),
  2937. (6488, 'Exoto', 6415, 0, NULL, 'toys-games_diecast-vehicles_exoto', 'Toys & Games :: Diecast & Vehicles :: Exoto', '', 0, 1, 0, '', '', ''),
  2938. (6489, 'Ferrari', 6415, 0, NULL, 'toys-games_diecast-vehicles_ferrari', 'Toys & Games :: Diecast & Vehicles :: Ferrari', '', 0, 1, 0, '', '', ''),
  2939. (6490, 'Franklin Mint', 6415, 0, NULL, 'toys-games_diecast-vehicles_franklin-mint', 'Toys & Games :: Diecast & Vehicles :: Franklin Mint', '', 0, 1, 0, '', '', ''),
  2940. (6491, 'Gearbox', 6415, 0, NULL, 'toys-games_diecast-vehicles_gearbox', 'Toys & Games :: Diecast & Vehicles :: Gearbox', '', 0, 1, 0, '', '', ''),
  2941. (6492, 'Guisval', 6415, 0, NULL, 'toys-games_diecast-vehicles_guisval', 'Toys & Games :: Diecast & Vehicles :: Guisval', '', 0, 1, 0, '', '', ''),
  2942. (6493, 'Herpa', 6415, 0, NULL, 'toys-games_diecast-vehicles_herpa', 'Toys & Games :: Diecast & Vehicles :: Herpa', '', 0, 1, 0, '', '', ''),
  2943. (6494, 'HotWheels', 6415, 0, NULL, 'toys-games_diecast-vehicles_hotwheels', 'Toys & Games :: Diecast & Vehicles :: HotWheels', '', 0, 1, 0, '', '', ''),
  2944. (6495, 'IXO', 6415, 0, NULL, 'toys-games_diecast-vehicles_ixo', 'Toys & Games :: Diecast & Vehicles :: IXO', '', 0, 1, 0, '', '', ''),
  2945. (6496, 'Jada', 6415, 0, NULL, 'toys-games_diecast-vehicles_jada', 'Toys & Games :: Diecast & Vehicles :: Jada', '', 0, 1, 0, '', '', ''),
  2946. (6497, 'Jadi', 6415, 0, NULL, 'toys-games_diecast-vehicles_jadi', 'Toys & Games :: Diecast & Vehicles :: Jadi', '', 0, 1, 0, '', '', ''),
  2947. (6498, 'Joal', 6415, 0, NULL, 'toys-games_diecast-vehicles_joal', 'Toys & Games :: Diecast & Vehicles :: Joal', '', 0, 1, 0, '', '', ''),
  2948. (6499, 'Johnny Lightning', 6415, 0, NULL, 'toys-games_diecast-vehicles_johnny-lightning', 'Toys & Games :: Diecast & Vehicles :: Johnny Lightning', '', 0, 1, 0, '', '', ''),
  2949. (6500, 'Kinsmart', 6415, 0, NULL, 'toys-games_diecast-vehicles_kinsmart', 'Toys & Games :: Diecast & Vehicles :: Kinsmart', '', 0, 1, 0, '', '', ''),
  2950. (6501, 'Kyosho', 6415, 0, NULL, 'toys-games_diecast-vehicles_kyosho', 'Toys & Games :: Diecast & Vehicles :: Kyosho', '', 0, 1, 0, '', '', ''),
  2951. (6502, 'Lledo', 6415, 0, NULL, 'toys-games_diecast-vehicles_lledo', 'Toys & Games :: Diecast & Vehicles :: Lledo', '', 0, 1, 0, '', '', ''),
  2952. (6503, 'Lone Star', 6415, 0, NULL, 'toys-games_diecast-vehicles_lone-star', 'Toys & Games :: Diecast & Vehicles :: Lone Star', '', 0, 1, 0, '', '', ''),
  2953. (6504, 'Maisto', 6415, 0, NULL, 'toys-games_diecast-vehicles_maisto', 'Toys & Games :: Diecast & Vehicles :: Maisto', '', 0, 1, 0, '', '', ''),
  2954. (6505, 'Majorette', 6415, 0, NULL, 'toys-games_diecast-vehicles_majorette', 'Toys & Games :: Diecast & Vehicles :: Majorette', '', 0, 1, 0, '', '', ''),
  2955. (6506, 'Matchbox & Lesney', 6415, 0, NULL, 'toys-games_diecast-vehicles_matchbox-lesney', 'Toys & Games :: Diecast & Vehicles :: Matchbox & Lesney', '', 0, 1, 0, '', '', ''),
  2956. (6507, 'Maxi Car', 6415, 0, NULL, 'toys-games_diecast-vehicles_maxi-car', 'Toys & Games :: Diecast & Vehicles :: Maxi Car', '', 0, 1, 0, '', '', ''),
  2957. (6508, 'Micro Machines', 6415, 0, NULL, 'toys-games_diecast-vehicles_micro-machines', 'Toys & Games :: Diecast & Vehicles :: Micro Machines', '', 0, 1, 0, '', '', ''),
  2958. (6509, 'Minichamps', 6415, 0, NULL, 'toys-games_diecast-vehicles_minichamps', 'Toys & Games :: Diecast & Vehicles :: Minichamps', '', 0, 1, 0, '', '', ''),
  2959. (6510, 'Muscle Machines', 6415, 0, NULL, 'toys-games_diecast-vehicles_muscle-machines', 'Toys & Games :: Diecast & Vehicles :: Muscle Machines', '', 0, 1, 0, '', '', ''),
  2960. (6511, 'NASCAR', 6415, 0, NULL, 'toys-games_diecast-vehicles_nascar', 'Toys & Games :: Diecast & Vehicles :: NASCAR', '', 0, 1, 0, '', '', ''),
  2961. (6512, 'Newray', 6415, 0, NULL, 'toys-games_diecast-vehicles_newray', 'Toys & Games :: Diecast & Vehicles :: Newray', '', 0, 1, 0, '', '', ''),
  2962. (6513, 'Norev', 6415, 0, NULL, 'toys-games_diecast-vehicles_norev', 'Toys & Games :: Diecast & Vehicles :: Norev', '', 0, 1, 0, '', '', ''),
  2963. (6514, 'ONYX', 6415, 0, NULL, 'toys-games_diecast-vehicles_onyx', 'Toys & Games :: Diecast & Vehicles :: ONYX', '', 0, 1, 0, '', '', ''),
  2964. (6515, 'Oxford Diecast', 6415, 0, NULL, 'toys-games_diecast-vehicles_oxford-diecast', 'Toys & Games :: Diecast & Vehicles :: Oxford Diecast', '', 0, 1, 0, '', '', ''),
  2965. (6516, 'Polistil', 6415, 0, NULL, 'toys-games_diecast-vehicles_polistil', 'Toys & Games :: Diecast & Vehicles :: Polistil', '', 0, 1, 0, '', '', ''),
  2966. (6517, 'Revell', 6415, 0, NULL, 'toys-games_diecast-vehicles_revell', 'Toys & Games :: Diecast & Vehicles :: Revell', '', 0, 1, 0, '', '', ''),
  2967. (6518, 'Rio', 6415, 0, NULL, 'toys-games_diecast-vehicles_rio', 'Toys & Games :: Diecast & Vehicles :: Rio', '', 0, 1, 0, '', '', ''),
  2968. (6519, 'Road Champs', 6415, 0, NULL, 'toys-games_diecast-vehicles_road-champs', 'Toys & Games :: Diecast & Vehicles :: Road Champs', '', 0, 1, 0, '', '', ''),
  2969. (6520, 'Road Signature', 6415, 0, NULL, 'toys-games_diecast-vehicles_road-signature', 'Toys & Games :: Diecast & Vehicles :: Road Signature', '', 0, 1, 0, '', '', ''),
  2970. (6521, 'Saico', 6415, 0, NULL, 'toys-games_diecast-vehicles_saico', 'Toys & Games :: Diecast & Vehicles :: Saico', '', 0, 1, 0, '', '', ''),
  2971. (6522, 'Schabak', 6415, 0, NULL, 'toys-games_diecast-vehicles_schabak', 'Toys & Games :: Diecast & Vehicles :: Schabak', '', 0, 1, 0, '', '', ''),
  2972. (6523, 'Schuco', 6415, 0, NULL, 'toys-games_diecast-vehicles_schuco', 'Toys & Games :: Diecast & Vehicles :: Schuco', '', 0, 1, 0, '', '', ''),
  2973. (6524, 'Shell Classic', 6415, 0, NULL, 'toys-games_diecast-vehicles_shell-classic', 'Toys & Games :: Diecast & Vehicles :: Shell Classic', '', 0, 1, 0, '', '', ''),
  2974. (6525, 'Siku', 6415, 0, NULL, 'toys-games_diecast-vehicles_siku', 'Toys & Games :: Diecast & Vehicles :: Siku', '', 0, 1, 0, '', '', ''),
  2975. (6526, 'Solido/ Verem', 6415, 0, NULL, 'toys-games_diecast-vehicles_solido-verem', 'Toys & Games :: Diecast & Vehicles :: Solido/ Verem', '', 0, 1, 0, '', '', ''),
  2976. (6527, 'Spark', 6415, 0, NULL, 'toys-games_diecast-vehicles_spark', 'Toys & Games :: Diecast & Vehicles :: Spark', '', 0, 1, 0, '', '', ''),
  2977. (6528, 'Sun Star', 6415, 0, NULL, 'toys-games_diecast-vehicles_sun-star', 'Toys & Games :: Diecast & Vehicles :: Sun Star', '', 0, 1, 0, '', '', ''),
  2978. (6529, 'Teamsters', 6415, 0, NULL, 'toys-games_diecast-vehicles_teamsters', 'Toys & Games :: Diecast & Vehicles :: Teamsters', '', 0, 1, 0, '', '', ''),
  2979. (6530, 'Tekno', 6415, 0, NULL, 'toys-games_diecast-vehicles_tekno', 'Toys & Games :: Diecast & Vehicles :: Tekno', '', 0, 1, 0, '', '', ''),
  2980. (6531, 'Tonka', 6415, 0, NULL, 'toys-games_diecast-vehicles_tonka', 'Toys & Games :: Diecast & Vehicles :: Tonka', '', 0, 1, 0, '', '', ''),
  2981. (6532, 'Tomica', 6415, 0, NULL, 'toys-games_diecast-vehicles_tomica', 'Toys & Games :: Diecast & Vehicles :: Tomica', '', 0, 1, 0, '', '', ''),
  2982. (6533, 'Tri-ang', 6415, 0, NULL, 'toys-games_diecast-vehicles_tri-ang', 'Toys & Games :: Diecast & Vehicles :: Tri-ang', '', 0, 1, 0, '', '', ''),
  2983. (6534, 'Trofeu', 6415, 0, NULL, 'toys-games_diecast-vehicles_trofeu', 'Toys & Games :: Diecast & Vehicles :: Trofeu', '', 0, 1, 0, '', '', ''),
  2984. (6535, 'Universal Hobbies', 6415, 0, NULL, 'toys-games_diecast-vehicles_universal-hobbies', 'Toys & Games :: Diecast & Vehicles :: Universal Hobbies', '', 0, 1, 0, '', '', ''),
  2985. (6536, 'Vitesse/ Quartzo/ City', 6415, 0, NULL, 'toys-games_diecast-vehicles_vitesse-quartzo-city', 'Toys & Games :: Diecast & Vehicles :: Vitesse/ Quartzo/ City', '', 0, 1, 0, '', '', ''),
  2986. (6537, 'Welly', 6415, 0, NULL, 'toys-games_diecast-vehicles_welly', 'Toys & Games :: Diecast & Vehicles :: Welly', '', 0, 1, 0, '', '', ''),
  2987. (6538, 'White Metal/ Hand-Made/ Resin', 6415, 0, NULL, 'toys-games_diecast-vehicles_white-metal-hand-made-resin', 'Toys & Games :: Diecast & Vehicles :: White Metal/ Hand-Made/ Resin', '', 0, 1, 0, '', '', ''),
  2988. (6539, 'Unbranded Vehicles', 6415, 0, NULL, 'toys-games_diecast-vehicles_unbranded-vehicles', 'Toys & Games :: Diecast & Vehicles :: Unbranded Vehicles', '', 0, 1, 0, '', '', ''),
  2989. (6540, 'Collections & Bulk Lots', 6415, 0, NULL, 'toys-games_diecast-vehicles_collections-bulk-lots', 'Toys & Games :: Diecast & Vehicles :: Collections & Bulk Lots', '', 0, 1, 0, '', '', ''),
  2990. (6541, 'Magazines & Other Publications', 6415, 0, NULL, 'toys-games_diecast-vehicles_magazines-other-publications', 'Toys & Games :: Diecast & Vehicles :: Magazines & Other Publications', '', 0, 1, 0, '', '', ''),
  2991. (6542, 'Other Diecast & Vehicles', 6415, 0, NULL, 'toys-games_diecast-vehicles_other-diecast-vehicles', 'Toys & Games :: Diecast & Vehicles :: Other Diecast & Vehicles', '', 0, 1, 0, '', '', ''),
  2992. (6543, 'Alphabet', 6416, 0, NULL, 'toys-games_educational-toys_alphabet', 'Toys & Games :: Educational Toys :: Alphabet', '', 0, 1, 0, '', '', ''),
  2993. (6544, 'Geography & History', 6416, 0, NULL, 'toys-games_educational-toys_geography-history', 'Toys & Games :: Educational Toys :: Geography & History', '', 0, 1, 0, '', '', ''),
  2994. (6545, 'LeapFrog & Leapster', 6416, 0, NULL, 'toys-games_educational-toys_leapfrog-leapster', 'Toys & Games :: Educational Toys :: LeapFrog & Leapster', '', 0, 1, 0, '', '', ''),
  2995. (6546, 'Mathematics', 6416, 0, NULL, 'toys-games_educational-toys_mathematics', 'Toys & Games :: Educational Toys :: Mathematics', '', 0, 1, 0, '', '', ''),
  2996. (6547, 'Music & Art', 6416, 0, NULL, 'toys-games_educational-toys_music-art', 'Toys & Games :: Educational Toys :: Music & Art', '', 0, 1, 0, '', '', ''),
  2997. (6548, 'Numbers', 6416, 0, NULL, 'toys-games_educational-toys_numbers', 'Toys & Games :: Educational Toys :: Numbers', '', 0, 1, 0, '', '', ''),
  2998. (6549, 'Reading & Writing', 6416, 0, NULL, 'toys-games_educational-toys_reading-writing', 'Toys & Games :: Educational Toys :: Reading & Writing', '', 0, 1, 0, '', '', ''),
  2999. (6550, 'Science & Nature', 6416, 0, NULL, 'toys-games_educational-toys_science-nature', 'Toys & Games :: Educational Toys :: Science & Nature', '', 0, 1, 0, '', '', ''),
  3000. (6551, 'Special Needs & Autism', 6416, 0, NULL, 'toys-games_educational-toys_special-needs-autism', 'Toys & Games :: Educational Toys :: Special Needs & Autism', '', 0, 1, 0, '', '', ''),
  3001. (6552, 'VTech', 6416, 0, NULL, 'toys-games_educational-toys_vtech', 'Toys & Games :: Educational Toys :: VTech', '', 0, 1, 0, '', '', ''),
  3002. (6553, 'Other Educational Toys', 6416, 0, NULL, 'toys-games_educational-toys_other-educational-toys', 'Toys & Games :: Educational Toys :: Other Educational Toys', '', 0, 1, 0, '', '', ''),
  3003. (6554, 'Anipalz', 6417, 0, NULL, 'toys-games_electronic-pets_anipalz', 'Toys & Games :: Electronic Pets :: Anipalz', '', 0, 1, 0, '', '', ''),
  3004. (6555, 'Furby', 6417, 0, NULL, 'toys-games_electronic-pets_furby', 'Toys & Games :: Electronic Pets :: Furby', '', 0, 1, 0, '', '', ''),
  3005. (6556, 'FurReal', 6417, 0, NULL, 'toys-games_electronic-pets_furreal', 'Toys & Games :: Electronic Pets :: FurReal', '', 0, 1, 0, '', '', ''),
  3006. (6557, 'Micropets', 6417, 0, NULL, 'toys-games_electronic-pets_micropets', 'Toys & Games :: Electronic Pets :: Micropets', '', 0, 1, 0, '', '', ''),
  3007. (6558, 'Tamagotchi', 6417, 0, NULL, 'toys-games_electronic-pets_tamagotchi', 'Toys & Games :: Electronic Pets :: Tamagotchi', '', 0, 1, 0, '', '', ''),
  3008. (6559, 'Batman', 6418, 0, NULL, 'toys-games_fast-food-cereal-sweet-toys_batman', 'Toys & Games :: Fast Food, Cereal & Sweet Toys :: Batman', '', 0, 1, 0, '', '', ''),
  3009. (6560, 'Snoopy', 6418, 0, NULL, 'toys-games_fast-food-cereal-sweet-toys_snoopy', 'Toys & Games :: Fast Food, Cereal & Sweet Toys :: Snoopy', '', 0, 1, 0, '', '', ''),
  3010. (6561, 'Disney', 6418, 0, NULL, 'toys-games_fast-food-cereal-sweet-toys_disney', 'Toys & Games :: Fast Food, Cereal & Sweet Toys :: Disney', '', 0, 1, 0, '', '', ''),
  3011. (6562, 'Spongebob Squarepants', 6418, 0, NULL, 'toys-games_fast-food-cereal-sweet-toys_spongebob-squarepants', 'Toys & Games :: Fast Food, Cereal & Sweet Toys :: Spongebob Squarepants', '', 0, 1, 0, '', '', ''),
  3012. (6563, 'Star Wars', 6418, 0, NULL, 'toys-games_fast-food-cereal-sweet-toys_star-wars', 'Toys & Games :: Fast Food, Cereal & Sweet Toys :: Star Wars', '', 0, 1, 0, '', '', ''),
  3013. (6564, 'Air Hockey', 6419, 0, NULL, 'toys-games_games_air-hockey', 'Toys & Games :: Games :: Air Hockey', '', 0, 1, 0, '', '', ''),
  3014. (6565, 'Board & Traditional Games', 6419, 0, NULL, 'toys-games_games_board-traditional-games', 'Toys & Games :: Games :: Board & Traditional Games', '', 0, 1, 0, '', '', ''),
  3015. (6566, 'Card Games', 6419, 0, NULL, 'toys-games_games_card-games', 'Toys & Games :: Games :: Card Games', '', 0, 1, 0, '', '', ''),
  3016. (6567, 'Crazy Bones', 6419, 0, NULL, 'toys-games_games_crazy-bones', 'Toys & Games :: Games :: Crazy Bones', '', 0, 1, 0, '', '', ''),
  3017. (6568, 'Dice & Dice-Based Games', 6419, 0, NULL, 'toys-games_games_dice-dice-based-games', 'Toys & Games :: Games :: Dice & Dice-Based Games', '', 0, 1, 0, '', '', ''),
  3018. (6569, 'Drinking & After Dinner Games', 6419, 0, NULL, 'toys-games_games_drinking-after-dinner-games', 'Toys & Games :: Games :: Drinking & After Dinner Games', '', 0, 1, 0, '', '', ''),
  3019. (6570, 'Electronic Games', 6419, 0, NULL, 'toys-games_games_electronic-games', 'Toys & Games :: Games :: Electronic Games', '', 0, 1, 0, '', '', ''),
  3020. (6571, 'Executive Toys & Gadgets', 6419, 0, NULL, 'toys-games_games_executive-toys-gadgets', 'Toys & Games :: Games :: Executive Toys & Gadgets', '', 0, 1, 0, '', '', ''),
  3021. (6572, 'Jokes & Pranks', 6419, 0, NULL, 'toys-games_games_jokes-pranks', 'Toys & Games :: Games :: Jokes & Pranks', '', 0, 1, 0, '', '', ''),
  3022. (6573, 'Mighty Beanz', 6419, 0, NULL, 'toys-games_games_mighty-beanz', 'Toys & Games :: Games :: Mighty Beanz', '', 0, 1, 0, '', '', ''),
  3023. (6574, 'Murder Mystery', 6419, 0, NULL, 'toys-games_games_murder-mystery', 'Toys & Games :: Games :: Murder Mystery', '', 0, 1, 0, '', '', ''),
  3024. (6575, 'Pocket Money Toys & Games', 6419, 0, NULL, 'toys-games_games_pocket-money-toys-games', 'Toys & Games :: Games :: Pocket Money Toys & Games', '', 0, 1, 0, '', '', ''),
  3025. (6576, 'Pogs', 6419, 0, NULL, 'toys-games_games_pogs', 'Toys & Games :: Games :: Pogs', '', 0, 1, 0, '', '', ''),
  3026. (6577, 'Travel Games', 6419, 0, NULL, 'toys-games_games_travel-games', 'Toys & Games :: Games :: Travel Games', '', 0, 1, 0, '', '', ''),
  3027. (6578, 'Game Pieces & Parts', 6419, 0, NULL, 'toys-games_games_game-pieces-parts', 'Toys & Games :: Games :: Game Pieces & Parts', '', 0, 1, 0, '', '', ''),
  3028. (6579, 'Other Games', 6419, 0, NULL, 'toys-games_games_other-games', 'Toys & Games :: Games :: Other Games', '', 0, 1, 0, '', '', ''),
  3029. (6580, 'Jigsaws', 6420, 0, NULL, 'toys-games_jigsaws-puzzles_jigsaws', 'Toys & Games :: Jigsaws & Puzzles :: Jigsaws', '', 0, 1, 0, '', '', ''),
  3030. (6581, 'Rubik's Puzzles', 6420, 0, NULL, 'toys-games_jigsaws-puzzles_rubiks-puzzles', 'Toys & Games :: Jigsaws & Puzzles :: Rubik's Puzzles', '', 0, 1, 0, '', '', ''),
  3031. (6582, 'Sudoku', 6420, 0, NULL, 'toys-games_jigsaws-puzzles_sudoku', 'Toys & Games :: Jigsaws & Puzzles :: Sudoku', '', 0, 1, 0, '', '', ''),
  3032. (6583, 'Vintage Puzzles', 6420, 0, NULL, 'toys-games_jigsaws-puzzles_vintage-puzzles', 'Toys & Games :: Jigsaws & Puzzles :: Vintage Puzzles', '', 0, 1, 0, '', '', ''),
  3033. (6584, 'Other Puzzles', 6420, 0, NULL, 'toys-games_jigsaws-puzzles_other-puzzles', 'Toys & Games :: Jigsaws & Puzzles :: Other Puzzles', '', 0, 1, 0, '', '', ''),
  3034. (6585, 'Models', 6421, 0, NULL, 'toys-games_model-kits_models', 'Toys & Games :: Model Kits :: Models', '', 0, 1, 0, '', '', ''),
  3035. (6586, 'Scenery, Props & Buildings', 6421, 0, NULL, 'toys-games_model-kits_scenery-props-buildings', 'Toys & Games :: Model Kits :: Scenery, Props & Buildings', '', 0, 1, 0, '', '', ''),
  3036. (6587, 'Wooden & Matchstick Kits', 6421, 0, NULL, 'toys-games_model-kits_wooden-matchstick-kits', 'Toys & Games :: Model Kits :: Wooden & Matchstick Kits', '', 0, 1, 0, '', '', ''),
  3037. (6588, 'Decals', 6421, 0, NULL, 'toys-games_model-kits_decals', 'Toys & Games :: Model Kits :: Decals', '', 0, 1, 0, '', '', ''),
  3038. (6589, 'Paints & Accessories', 6421, 0, NULL, 'toys-games_model-kits_paints-accessories', 'Toys & Games :: Model Kits :: Paints & Accessories', '', 0, 1, 0, '', '', ''),
  3039. (6590, 'Other Model Kits', 6421, 0, NULL, 'toys-games_model-kits_other-model-kits', 'Toys & Games :: Model Kits :: Other Model Kits', '', 0, 1, 0, '', '', ''),
  3040. (6591, 'Boomerangs', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_boomerangs', 'Toys & Games :: Outdoor Toys & Activities :: Boomerangs', '', 0, 1, 0, '', '', ''),
  3041. (6592, 'Boules/ Petanque', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_boules-petanque', 'Toys & Games :: Outdoor Toys & Activities :: Boules/ Petanque', '', 0, 1, 0, '', '', ''),
  3042. (6593, 'Bouncy Castles & Inflatables', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_bouncy-castles-inflatables', 'Toys & Games :: Outdoor Toys & Activities :: Bouncy Castles & Inflatables', '', 0, 1, 0, '', '', ''),
  3043. (6594, 'Climbing Frames', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_climbing-frames', 'Toys & Games :: Outdoor Toys & Activities :: Climbing Frames', '', 0, 1, 0, '', '', ''),
  3044. (6595, 'Croquet', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_croquet', 'Toys & Games :: Outdoor Toys & Activities :: Croquet', '', 0, 1, 0, '', '', ''),
  3045. (6596, 'Frisbees', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_frisbees', 'Toys & Games :: Outdoor Toys & Activities :: Frisbees', '', 0, 1, 0, '', '', ''),
  3046. (6597, 'Garden Games & Activities', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_garden-games-activities', 'Toys & Games :: Outdoor Toys & Activities :: Garden Games & Activities', '', 0, 1, 0, '', '', ''),
  3047. (6598, 'Juggling', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_juggling', 'Toys & Games :: Outdoor Toys & Activities :: Juggling', '', 0, 1, 0, '', '', ''),
  3048. (6599, 'Kites', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_kites', 'Toys & Games :: Outdoor Toys & Activities :: Kites', '', 0, 1, 0, '', '', ''),
  3049. (6600, 'Paddling Pools', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_paddling-pools', 'Toys & Games :: Outdoor Toys & Activities :: Paddling Pools', '', 0, 1, 0, '', '', ''),
  3050. (6601, 'Playhouses', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_playhouses', 'Toys & Games :: Outdoor Toys & Activities :: Playhouses', '', 0, 1, 0, '', '', ''),
  3051. (6602, 'Pogo Sticks', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_pogo-sticks', 'Toys & Games :: Outdoor Toys & Activities :: Pogo Sticks', '', 0, 1, 0, '', '', ''),
  3052. (6603, 'Ride-on Cars', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_ride-on-cars', 'Toys & Games :: Outdoor Toys & Activities :: Ride-on Cars', '', 0, 1, 0, '', '', ''),
  3053. (6604, 'Sand Pits & Toys', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_sand-pits-toys', 'Toys & Games :: Outdoor Toys & Activities :: Sand Pits & Toys', '', 0, 1, 0, '', '', ''),
  3054. (6605, 'Scooters', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_scooters', 'Toys & Games :: Outdoor Toys & Activities :: Scooters', '', 0, 1, 0, '', '', ''),
  3055. (6606, 'Skates', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_skates', 'Toys & Games :: Outdoor Toys & Activities :: Skates', '', 0, 1, 0, '', '', ''),
  3056. (6607, 'Skipping Ropes', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_skipping-ropes', 'Toys & Games :: Outdoor Toys & Activities :: Skipping Ropes', '', 0, 1, 0, '', '', ''),
  3057. (6608, 'Slides', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_slides', 'Toys & Games :: Outdoor Toys & Activities :: Slides', '', 0, 1, 0, '', '', ''),
  3058. (6609, 'Space Hoppers', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_space-hoppers', 'Toys & Games :: Outdoor Toys & Activities :: Space Hoppers', '', 0, 1, 0, '', '', ''),
  3059. (6610, 'Swingball', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_swingball', 'Toys & Games :: Outdoor Toys & Activities :: Swingball', '', 0, 1, 0, '', '', ''),
  3060. (6611, 'Swings', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_swings', 'Toys & Games :: Outdoor Toys & Activities :: Swings', '', 0, 1, 0, '', '', ''),
  3061. (6612, 'Tents', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_tents', 'Toys & Games :: Outdoor Toys & Activities :: Tents', '', 0, 1, 0, '', '', ''),
  3062. (6613, 'Trampolines', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_trampolines', 'Toys & Games :: Outdoor Toys & Activities :: Trampolines', '', 0, 1, 0, '', '', ''),
  3063. (6614, 'Tricycles & Trikes', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_tricycles-trikes', 'Toys & Games :: Outdoor Toys & Activities :: Tricycles & Trikes', '', 0, 1, 0, '', '', ''),
  3064. (6615, 'Water Pistols', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_water-pistols', 'Toys & Games :: Outdoor Toys & Activities :: Water Pistols', '', 0, 1, 0, '', '', ''),
  3065. (6616, 'Other Outdoor Toys/ Activities', 6422, 0, NULL, 'toys-games_outdoor-toys-activities_other-outdoor-toys-activities', 'Toys & Games :: Outdoor Toys & Activities :: Other Outdoor Toys/ Activities', '', 0, 1, 0, '', '', ''),
  3066. (6617, 'Aeroplanes', 6424, 0, NULL, 'toys-games_radio-controlled_aeroplanes', 'Toys & Games :: Radio-Controlled :: Aeroplanes', '', 0, 1, 0, '', '', ''),
  3067. (6618, 'Airships/ Blimps', 6424, 0, NULL, 'toys-games_radio-controlled_airships-blimps', 'Toys & Games :: Radio-Controlled :: Airships/ Blimps', '', 0, 1, 0, '', '', ''),
  3068. (6619, 'Boats & Hovercraft', 6424, 0, NULL, 'toys-games_radio-controlled_boats-hovercraft', 'Toys & Games :: Radio-Controlled :: Boats & Hovercraft', '', 0, 1, 0, '', '', ''),
  3069. (6620, 'Cars', 6424, 0, NULL, 'toys-games_radio-controlled_cars', 'Toys & Games :: Radio-Controlled :: Cars', '', 0, 1, 0, '', '', ''),
  3070. (6621, 'Helicopters', 6424, 0, NULL, 'toys-games_radio-controlled_helicopters', 'Toys & Games :: Radio-Controlled :: Helicopters', '', 0, 1, 0, '', '', ''),
  3071. (6622, 'Motorcycles', 6424, 0, NULL, 'toys-games_radio-controlled_motorcycles', 'Toys & Games :: Radio-Controlled :: Motorcycles', '', 0, 1, 0, '', '', ''),
  3072. (6623, 'Robots', 6424, 0, NULL, 'toys-games_radio-controlled_robots', 'Toys & Games :: Radio-Controlled :: Robots', '', 0, 1, 0, '', '', ''),
  3073. (6624, 'Submarines', 6424, 0, NULL, 'toys-games_radio-controlled_submarines', 'Toys & Games :: Radio-Controlled :: Submarines', '', 0, 1, 0, '', '', ''),
  3074. (6625, 'Tanks (Military)', 6424, 0, NULL, 'toys-games_radio-controlled_tanks-military', 'Toys & Games :: Radio-Controlled :: Tanks (Military)', '', 0, 1, 0, '', '', ''),
  3075. (6626, 'Trucks & Lorries', 6424, 0, NULL, 'toys-games_radio-controlled_trucks-lorries', 'Toys & Games :: Radio-Controlled :: Trucks & Lorries', '', 0, 1, 0, '', '', ''),
  3076. (6627, 'Tools', 6424, 0, NULL, 'toys-games_radio-controlled_tools', 'Toys & Games :: Radio-Controlled :: Tools', '', 0, 1, 0, '', '', ''),
  3077. (6628, 'Other Radio-Controlled', 6424, 0, NULL, 'toys-games_radio-controlled_other-radio-controlled', 'Toys & Games :: Radio-Controlled :: Other Radio-Controlled', '', 0, 1, 0, '', '', ''),
  3078. (6629, 'Accessories & Tuning', 6425, 0, NULL, 'toys-games_scalextric-slot-car_accessories-tuning', 'Toys & Games :: Scalextric & Slot Car :: Accessories & Tuning', '', 0, 1, 0, '', '', ''),
  3079. (6630, 'Boxed Sets (Track & Cars)', 6425, 0, NULL, 'toys-games_scalextric-slot-car_boxed-sets-track-cars', 'Toys & Games :: Scalextric & Slot Car :: Boxed Sets (Track & Cars)', '', 0, 1, 0, '', '', ''),
  3080. (6631, 'Cars', 6425, 0, NULL, 'toys-games_scalextric-slot-car_cars', 'Toys & Games :: Scalextric & Slot Car :: Cars', '', 0, 1, 0, '', '', ''),
  3081. (6632, 'Catalogues', 6425, 0, NULL, 'toys-games_scalextric-slot-car_catalogues', 'Toys & Games :: Scalextric & Slot Car :: Catalogues', '', 0, 1, 0, '', '', ''),
  3082. (6633, 'Minic Motorway', 6425, 0, NULL, 'toys-games_scalextric-slot-car_minic-motorway', 'Toys & Games :: Scalextric & Slot Car :: Minic Motorway', '', 0, 1, 0, '', '', ''),
  3083. (6634, 'Track', 6425, 0, NULL, 'toys-games_scalextric-slot-car_track', 'Toys & Games :: Scalextric & Slot Car :: Track', '', 0, 1, 0, '', '', ''),
  3084. (6635, 'Trackside Props & Buildings', 6425, 0, NULL, 'toys-games_scalextric-slot-car_trackside-props-buildings', 'Toys & Games :: Scalextric & Slot Car :: Trackside Props & Buildings', '', 0, 1, 0, '', '', ''),
  3085. (6636, 'Other Slot Cars', 6425, 0, NULL, 'toys-games_scalextric-slot-car_other-slot-cars', 'Toys & Games :: Scalextric & Slot Car :: Other Slot Cars', '', 0, 1, 0, '', '', ''),
  3086. (6637, 'Soft Toys & Stuffed Animals', 3707, 0, NULL, 'toys-games_soft-toys-stuffed-animals', 'Toys & Games :: Soft Toys & Stuffed Animals', '', 0, 1, 0, '', '', ''),
  3087. (6638, 'Disney', 6637, 0, NULL, 'toys-games_soft-toys-stuffed-animals_disney', 'Toys & Games :: Soft Toys & Stuffed Animals :: Disney', '', 0, 1, 0, '', '', ''),
  3088. (6639, 'Steiff', 6637, 0, NULL, 'toys-games_soft-toys-stuffed-animals_steiff', 'Toys & Games :: Soft Toys & Stuffed Animals :: Steiff', '', 0, 1, 0, '', '', ''),
  3089. (6640, 'Branded Soft Toys', 6637, 0, NULL, 'toys-games_soft-toys-stuffed-animals_branded-soft-toys', 'Toys & Games :: Soft Toys & Stuffed Animals :: Branded Soft Toys', '', 0, 1, 0, '', '', ''),
  3090. (6641, 'Unbranded Soft Toys', 6637, 0, NULL, 'toys-games_soft-toys-stuffed-animals_unbranded-soft-toys', 'Toys & Games :: Soft Toys & Stuffed Animals :: Unbranded Soft Toys', '', 0, 1, 0, '', '', ''),
  3091. (6642, 'Other Soft Toys', 6637, 0, NULL, 'toys-games_soft-toys-stuffed-animals_other-soft-toys', 'Toys & Games :: Soft Toys & Stuffed Animals :: Other Soft Toys', '', 0, 1, 0, '', '', ''),
  3092. (6643, 'Airfix', 6427, 0, NULL, 'toys-games_toy-soldiers_airfix', 'Toys & Games :: Toy Soldiers :: Airfix', '', 0, 1, 0, '', '', ''),
  3093. (6644, 'Britains', 6427, 0, NULL, 'toys-games_toy-soldiers_britains', 'Toys & Games :: Toy Soldiers :: Britains', '', 0, 1, 0, '', '', ''),
  3094. (6645, 'Charbens', 6427, 0, NULL, 'toys-games_toy-soldiers_charbens', 'Toys & Games :: Toy Soldiers :: Charbens', '', 0, 1, 0, '', '', ''),
  3095. (6646, 'Cherilea', 6427, 0, NULL, 'toys-games_toy-soldiers_cherilea', 'Toys & Games :: Toy Soldiers :: Cherilea', '', 0, 1, 0, '', '', ''),
  3096. (6647, 'Crescent', 6427, 0, NULL, 'toys-games_toy-soldiers_crescent', 'Toys & Games :: Toy Soldiers :: Crescent', '', 0, 1, 0, '', '', ''),
  3097. (6648, 'Del Prado', 6427, 0, NULL, 'toys-games_toy-soldiers_del-prado', 'Toys & Games :: Toy Soldiers :: Del Prado', '', 0, 1, 0, '', '', ''),
  3098. (6649, 'Elastolin', 6427, 0, NULL, 'toys-games_toy-soldiers_elastolin', 'Toys & Games :: Toy Soldiers :: Elastolin', '', 0, 1, 0, '', '', ''),
  3099. (6650, 'King & Country', 6427, 0, NULL, 'toys-games_toy-soldiers_king-country', 'Toys & Games :: Toy Soldiers :: King & Country', '', 0, 1, 0, '', '', ''),
  3100. (6651, 'Lone Star', 6427, 0, NULL, 'toys-games_toy-soldiers_lone-star', 'Toys & Games :: Toy Soldiers :: Lone Star', '', 0, 1, 0, '', '', ''),
  3101. (6652, 'Timpo', 6427, 0, NULL, 'toys-games_toy-soldiers_timpo', 'Toys & Games :: Toy Soldiers :: Timpo', '', 0, 1, 0, '', '', ''),
  3102. (6653, 'Unbranded', 6427, 0, NULL, 'toys-games_toy-soldiers_unbranded', 'Toys & Games :: Toy Soldiers :: Unbranded', '', 0, 1, 0, '', '', ''),
  3103. (6654, 'Vintage', 6427, 0, NULL, 'toys-games_toy-soldiers_vintage', 'Toys & Games :: Toy Soldiers :: Vintage', '', 0, 1, 0, '', '', ''),
  3104. (6655, 'Other Toy Soldiers', 6427, 0, NULL, 'toys-games_toy-soldiers_other-toy-soldiers', 'Toys & Games :: Toy Soldiers :: Other Toy Soldiers', '', 0, 1, 0, '', '', ''),
  3105. (6656, 'Film & Disney Characters', 6428, 0, NULL, 'toys-games_tv-film-character-toys_film-disney-characters', 'Toys & Games :: TV & Film Character Toys :: Film & Disney Characters', '', 0, 1, 0, '', '', ''),
  3106. (6657, 'TV Characters', 6428, 0, NULL, 'toys-games_tv-film-character-toys_tv-characters', 'Toys & Games :: TV & Film Character Toys :: TV Characters', '', 0, 1, 0, '', '', ''),
  3107. (6658, 'Bagatelle', 6429, 0, NULL, 'toys-games_vintage-classic-toys_bagatelle', 'Toys & Games :: Vintage & Classic Toys :: Bagatelle', '', 0, 1, 0, '', '', ''),
  3108. (6659, 'Battery Operated', 6429, 0, NULL, 'toys-games_vintage-classic-toys_battery-operated', 'Toys & Games :: Vintage & Classic Toys :: Battery Operated', '', 0, 1, 0, '', '', ''),
  3109. (6660, 'Clockwork/ Wind-Up', 6429, 0, NULL, 'toys-games_vintage-classic-toys_clockwork-wind-up', 'Toys & Games :: Vintage & Classic Toys :: Clockwork/ Wind-Up', '', 0, 1, 0, '', '', ''),
  3110. (6661, 'Etch-a-Sketch', 6429, 0, NULL, 'toys-games_vintage-classic-toys_etch-a-sketch', 'Toys & Games :: Vintage & Classic Toys :: Etch-a-Sketch', '', 0, 1, 0, '', '', ''),
  3111. (6662, 'Magic, Tricks & Jokes', 6429, 0, NULL, 'toys-games_vintage-classic-toys_magic-tricks-jokes', 'Toys & Games :: Vintage & Classic Toys :: Magic, Tricks & Jokes', '', 0, 1, 0, '', '', ''),
  3112. (6663, 'Marbles', 6429, 0, NULL, 'toys-games_vintage-classic-toys_marbles', 'Toys & Games :: Vintage & Classic Toys :: Marbles', '', 0, 1, 0, '', '', ''),
  3113. (6664, 'Optical Toys', 6429, 0, NULL, 'toys-games_vintage-classic-toys_optical-toys', 'Toys & Games :: Vintage & Classic Toys :: Optical Toys', '', 0, 1, 0, '', '', ''),
  3114. (6665, 'Puppets', 6429, 0, NULL, 'toys-games_vintage-classic-toys_puppets', 'Toys & Games :: Vintage & Classic Toys :: Puppets', '', 0, 1, 0, '', '', ''),
  3115. (6666, 'Robots & Space Toys', 6429, 0, NULL, 'toys-games_vintage-classic-toys_robots-space-toys', 'Toys & Games :: Vintage & Classic Toys :: Robots & Space Toys', '', 0, 1, 0, '', '', ''),
  3116. (6667, 'Rocking Horses', 6429, 0, NULL, 'toys-games_vintage-classic-toys_rocking-horses', 'Toys & Games :: Vintage & Classic Toys :: Rocking Horses', '', 0, 1, 0, '', '', ''),
  3117. (6668, 'Slinky', 6429, 0, NULL, 'toys-games_vintage-classic-toys_slinky', 'Toys & Games :: Vintage & Classic Toys :: Slinky', '', 0, 1, 0, '', '', ''),
  3118. (6669, 'Tinplate/ Penny Toys', 6429, 0, NULL, 'toys-games_vintage-classic-toys_tinplate-penny-toys', 'Toys & Games :: Vintage & Classic Toys :: Tinplate/ Penny Toys', '', 0, 1, 0, '', '', ''),
  3119. (6670, 'Weebles', 6429, 0, NULL, 'toys-games_vintage-classic-toys_weebles', 'Toys & Games :: Vintage & Classic Toys :: Weebles', '', 0, 1, 0, '', '', ''),
  3120. (6671, 'Yo-Yos', 6429, 0, NULL, 'toys-games_vintage-classic-toys_yo-yos', 'Toys & Games :: Vintage & Classic Toys :: Yo-Yos', '', 0, 1, 0, '', '', ''),
  3121. (6672, 'Other Vintage & Classic Toys', 6429, 0, NULL, 'toys-games_vintage-classic-toys_other-vintage-classic-toys', 'Toys & Games :: Vintage & Classic Toys :: Other Vintage & Classic Toys', '', 0, 1, 0, '', '', ''),
  3122. (6673, 'Confrontation', 6430, 0, NULL, 'toys-games_wargames-role-playing_confrontation', 'Toys & Games :: Wargames & Role-Playing :: Confrontation', '', 0, 1, 0, '', '', ''),
  3123. (6674, 'Heroclix', 6430, 0, NULL, 'toys-games_wargames-role-playing_heroclix', 'Toys & Games :: Wargames & Role-Playing :: Heroclix', '', 0, 1, 0, '', '', ''),
  3124. (6675, 'MechWarrior', 6430, 0, NULL, 'toys-games_wargames-role-playing_mechwarrior', 'Toys & Games :: Wargames & Role-Playing :: MechWarrior', '', 0, 1, 0, '', '', ''),
  3125. (6676, 'Pirates', 6430, 0, NULL, 'toys-games_wargames-role-playing_pirates', 'Toys & Games :: Wargames & Role-Playing :: Pirates', '', 0, 1, 0, '', '', ''),
  3126. (6677, 'Scenery, Props & Paint', 6430, 0, NULL, 'toys-games_wargames-role-playing_scenery-props-paint', 'Toys & Games :: Wargames & Role-Playing :: Scenery, Props & Paint', '', 0, 1, 0, '', '', ''),
  3127. (6678, 'Star Wars', 6430, 0, NULL, 'toys-games_wargames-role-playing_star-wars', 'Toys & Games :: Wargames & Role-Playing :: Star Wars', '', 0, 1, 0, '', '', ''),
  3128. (6679, 'Table Top/ Historical', 6430, 0, NULL, 'toys-games_wargames-role-playing_table-top-historical', 'Toys & Games :: Wargames & Role-Playing :: Table Top/ Historical', '', 0, 1, 0, '', '', ''),
  3129. (6680, 'Warhammer', 6430, 0, NULL, 'toys-games_wargames-role-playing_warhammer', 'Toys & Games :: Wargames & Role-Playing :: Warhammer', '', 0, 1, 0, '', '', ''),
  3130. (6681, 'Warmachine', 6430, 0, NULL, 'toys-games_wargames-role-playing_warmachine', 'Toys & Games :: Wargames & Role-Playing :: Warmachine', '', 0, 1, 0, '', '', ''),
  3131. (6682, 'Role-Playing', 6430, 0, NULL, 'toys-games_wargames-role-playing_role-playing', 'Toys & Games :: Wargames & Role-Playing :: Role-Playing', '', 0, 1, 0, '', '', ''),
  3132. (6683, 'Magazines & Publications', 6430, 0, NULL, 'toys-games_wargames-role-playing_magazines-publications', 'Toys & Games :: Wargames & Role-Playing :: Magazines & Publications', '', 0, 1, 0, '', '', ''),
  3133. (6684, 'Other Wargames', 6430, 0, NULL, 'toys-games_wargames-role-playing_other-wargames', 'Toys & Games :: Wargames & Role-Playing :: Other Wargames', '', 0, 1, 0, '', '', ''),
  3134. (6685, 'American Football Memorabilia', 3705, 0, NULL, 'sports-memorabilia_american-football-memorabilia', 'Sports Memorabilia :: American Football Memorabilia', '', 0, 1, 0, '', '', ''),
  3135. (6686, 'Boxing Memorabilia', 3705, 0, NULL, 'sports-memorabilia_boxing-memorabilia', 'Sports Memorabilia :: Boxing Memorabilia', '', 0, 1, 0, '', '', ''),
  3136. (6687, 'Cricket Memorabilia', 3705, 0, NULL, 'sports-memorabilia_cricket-memorabilia', 'Sports Memorabilia :: Cricket Memorabilia', '', 0, 1, 0, '', '', ''),
  3137. (6688, 'Football Memorabilia', 3705, 0, NULL, 'sports-memorabilia_football-memorabilia', 'Sports Memorabilia :: Football Memorabilia', '', 0, 1, 0, '', '', ''),
  3138. (6689, 'Football Programmes', 3705, 0, NULL, 'sports-memorabilia_football-programmes', 'Sports Memorabilia :: Football Programmes', '', 0, 1, 0, '', '', ''),
  3139. (6690, 'Football Shirts', 3705, 0, NULL, 'sports-memorabilia_football-shirts', 'Sports Memorabilia :: Football Shirts', '', 0, 1, 0, '', '', ''),
  3140. (6691, 'Golf Memorabilia', 3705, 0, NULL, 'sports-memorabilia_golf-memorabilia', 'Sports Memorabilia :: Golf Memorabilia', '', 0, 1, 0, '', '', ''),
  3141. (6692, 'Horse Racing Memorabilia', 3705, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia', 'Sports Memorabilia :: Horse Racing Memorabilia', '', 0, 1, 0, '', '', ''),
  3142. (6693, 'Ice Hockey Memorabilia', 3705, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia', 'Sports Memorabilia :: Ice Hockey Memorabilia', '', 0, 1, 0, '', '', ''),
  3143. (6694, 'Motor Sport Memorabilia', 3705, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia', 'Sports Memorabilia :: Motor Sport Memorabilia', '', 0, 1, 0, '', '', ''),
  3144. (6695, 'Olympic Memorabilia', 3705, 0, NULL, 'sports-memorabilia_olympic-memorabilia', 'Sports Memorabilia :: Olympic Memorabilia', '', 0, 1, 0, '', '', ''),
  3145. (6696, 'Rugby League Memorabilia', 3705, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia', 'Sports Memorabilia :: Rugby League Memorabilia', '', 0, 1, 0, '', '', ''),
  3146. (6697, 'Rugby Union Memorabilia', 3705, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia', 'Sports Memorabilia :: Rugby Union Memorabilia', '', 0, 1, 0, '', '', ''),
  3147. (6698, 'Subbuteo', 3705, 0, NULL, 'sports-memorabilia_subbuteo', 'Sports Memorabilia :: Subbuteo', '', 0, 1, 0, '', '', ''),
  3148. (6699, 'Tennis Memorabilia', 3705, 0, NULL, 'sports-memorabilia_tennis-memorabilia', 'Sports Memorabilia :: Tennis Memorabilia', '', 0, 1, 0, '', '', ''),
  3149. (6700, 'Wrestling Memorabilia', 3705, 0, NULL, 'sports-memorabilia_wrestling-memorabilia', 'Sports Memorabilia :: Wrestling Memorabilia', '', 0, 1, 0, '', '', ''),
  3150. (6701, 'Other Sports Memorabilia', 3705, 0, NULL, 'sports-memorabilia_other-sports-memorabilia', 'Sports Memorabilia :: Other Sports Memorabilia', '', 0, 1, 0, '', '', ''),
  3151. (6702, 'Baseball Memorabilia', 3705, 0, NULL, 'sports-memorabilia_baseball-memorabilia', 'Sports Memorabilia :: Baseball Memorabilia', '', 0, 1, 0, '', '', ''),
  3152. (6703, 'Basketball Memorabilia', 3705, 0, NULL, 'sports-memorabilia_basketball-memorabilia', 'Sports Memorabilia :: Basketball Memorabilia', '', 0, 1, 0, '', '', ''),
  3153. (6704, 'Autographs', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_autographs', 'Sports Memorabilia :: American Football Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3154. (6705, 'Badges/ Pins', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_badges-pins', 'Sports Memorabilia :: American Football Memorabilia :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  3155. (6706, 'Clothing', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_clothing', 'Sports Memorabilia :: American Football Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  3156. (6707, 'Photographs', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_photographs', 'Sports Memorabilia :: American Football Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3157. (6708, 'Programmes', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_programmes', 'Sports Memorabilia :: American Football Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3158. (6709, 'Trading Cards', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_trading-cards', 'Sports Memorabilia :: American Football Memorabilia :: Trading Cards', '', 0, 1, 0, '', '', ''),
  3159. (6710, 'Other American Football', 6685, 0, NULL, 'sports-memorabilia_american-football-memorabilia_other-american-football', 'Sports Memorabilia :: American Football Memorabilia :: Other American Football', '', 0, 1, 0, '', '', ''),
  3160. (6711, 'Autographs', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_autographs', 'Sports Memorabilia :: Baseball Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3161. (6712, 'Badges/ Pins', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_badges-pins', 'Sports Memorabilia :: Baseball Memorabilia :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  3162. (6713, 'Clothing', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_clothing', 'Sports Memorabilia :: Baseball Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  3163. (6714, 'Photographs', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_photographs', 'Sports Memorabilia :: Baseball Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3164. (6715, 'Programmes', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_programmes', 'Sports Memorabilia :: Baseball Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3165. (6716, 'Trading Cards', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_trading-cards', 'Sports Memorabilia :: Baseball Memorabilia :: Trading Cards', '', 0, 1, 0, '', '', ''),
  3166. (6717, 'Other Baseball', 6702, 0, NULL, 'sports-memorabilia_baseball-memorabilia_other-baseball', 'Sports Memorabilia :: Baseball Memorabilia :: Other Baseball', '', 0, 1, 0, '', '', ''),
  3167. (6718, 'Other Basketball Football', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_other-basketball-football', 'Sports Memorabilia :: Basketball Memorabilia :: Other Basketball Football', '', 0, 1, 0, '', '', ''),
  3168. (6719, 'Trading Cards', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_trading-cards', 'Sports Memorabilia :: Basketball Memorabilia :: Trading Cards', '', 0, 1, 0, '', '', ''),
  3169. (6720, 'Programmes', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_programmes', 'Sports Memorabilia :: Basketball Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3170. (6721, 'Photographs', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_photographs', 'Sports Memorabilia :: Basketball Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3171. (6722, 'Clothing', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_clothing', 'Sports Memorabilia :: Basketball Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  3172. (6723, 'Badges/ Pins', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_badges-pins', 'Sports Memorabilia :: Basketball Memorabilia :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  3173. (6724, 'Autographs', 6703, 0, NULL, 'sports-memorabilia_basketball-memorabilia_autographs', 'Sports Memorabilia :: Basketball Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3174. (6725, 'Autographs', 6686, 0, NULL, 'sports-memorabilia_boxing-memorabilia_autographs', 'Sports Memorabilia :: Boxing Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3175. (6726, 'Gloves', 6686, 0, NULL, 'sports-memorabilia_boxing-memorabilia_gloves', 'Sports Memorabilia :: Boxing Memorabilia :: Gloves', '', 0, 1, 0, '', '', ''),
  3176. (6727, 'Photographs', 6686, 0, NULL, 'sports-memorabilia_boxing-memorabilia_photographs', 'Sports Memorabilia :: Boxing Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3177. (6728, 'Prints/ Posters', 6686, 0, NULL, 'sports-memorabilia_boxing-memorabilia_prints-posters', 'Sports Memorabilia :: Boxing Memorabilia :: Prints/ Posters', '', 0, 1, 0, '', '', ''),
  3178. (6729, 'Programmes', 6686, 0, NULL, 'sports-memorabilia_boxing-memorabilia_programmes', 'Sports Memorabilia :: Boxing Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3179. (6730, 'Other Boxing Memorabilia', 6686, 0, NULL, 'sports-memorabilia_boxing-memorabilia_other-boxing-memorabilia', 'Sports Memorabilia :: Boxing Memorabilia :: Other Boxing Memorabilia', '', 0, 1, 0, '', '', ''),
  3180. (6731, 'Ashes Memorabilia', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_ashes-memorabilia', 'Sports Memorabilia :: Cricket Memorabilia :: Ashes Memorabilia', '', 0, 1, 0, '', '', ''),
  3181. (6732, 'Autographs', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_autographs', 'Sports Memorabilia :: Cricket Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3182. (6733, 'Bats', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_bats', 'Sports Memorabilia :: Cricket Memorabilia :: Bats', '', 0, 1, 0, '', '', ''),
  3183. (6734, 'Books/ Publications', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_books-publications', 'Sports Memorabilia :: Cricket Memorabilia :: Books/ Publications', '', 0, 1, 0, '', '', ''),
  3184. (6735, 'Ceramics/ Plates', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_ceramics-plates', 'Sports Memorabilia :: Cricket Memorabilia :: Ceramics/ Plates', '', 0, 1, 0, '', '', ''),
  3185. (6736, 'Photographs', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_photographs', 'Sports Memorabilia :: Cricket Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3186. (6737, 'Prints', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_prints', 'Sports Memorabilia :: Cricket Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3187. (6738, 'Programmes', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_programmes', 'Sports Memorabilia :: Cricket Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3188. (6739, 'Scorecards', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_scorecards', 'Sports Memorabilia :: Cricket Memorabilia :: Scorecards', '', 0, 1, 0, '', '', ''),
  3189. (6740, 'Shirts/ Clothing', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_shirts-clothing', 'Sports Memorabilia :: Cricket Memorabilia :: Shirts/ Clothing', '', 0, 1, 0, '', '', ''),
  3190. (6741, 'Wisden', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_wisden', 'Sports Memorabilia :: Cricket Memorabilia :: Wisden', '', 0, 1, 0, '', '', ''),
  3191. (6742, 'Other Cricket Memorabilia', 6687, 0, NULL, 'sports-memorabilia_cricket-memorabilia_other-cricket-memorabilia', 'Sports Memorabilia :: Cricket Memorabilia :: Other Cricket Memorabilia', '', 0, 1, 0, '', '', ''),
  3192. (6743, 'Autographs (Original)', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_autographs-original', 'Sports Memorabilia :: Football Memorabilia :: Autographs (Original)', '', 0, 1, 0, '', '', ''),
  3193. (6744, 'Autographs (Pre-Printed)', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_autographs-pre-printed', 'Sports Memorabilia :: Football Memorabilia :: Autographs (Pre-Printed)', '', 0, 1, 0, '', '', ''),
  3194. (6745, 'Badges/ Pins', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_badges-pins', 'Sports Memorabilia :: Football Memorabilia :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  3195. (6746, 'Bottle Openers', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_bottle-openers', 'Sports Memorabilia :: Football Memorabilia :: Bottle Openers', '', 0, 1, 0, '', '', ''),
  3196. (6747, 'Calendars', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_calendars', 'Sports Memorabilia :: Football Memorabilia :: Calendars', '', 0, 1, 0, '', '', ''),
  3197. (6748, 'Caps/ Hats', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_caps-hats', 'Sports Memorabilia :: Football Memorabilia :: Caps/ Hats', '', 0, 1, 0, '', '', ''),
  3198. (6749, 'Ceramics/ Plates', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_ceramics-plates', 'Sports Memorabilia :: Football Memorabilia :: Ceramics/ Plates', '', 0, 1, 0, '', '', ''),
  3199. (6750, 'Clocks', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_clocks', 'Sports Memorabilia :: Football Memorabilia :: Clocks', '', 0, 1, 0, '', '', ''),
  3200. (6751, 'Fanzines/ Journals/ Magazines', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_fanzines-journals-magazines', 'Sports Memorabilia :: Football Memorabilia :: Fanzines/ Journals/ Magazines', '', 0, 1, 0, '', '', ''),
  3201. (6752, 'Figures (Corinthians)', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_figures-corinthians', 'Sports Memorabilia :: Football Memorabilia :: Figures (Corinthians)', '', 0, 1, 0, '', '', ''),
  3202. (6753, 'Figures (Other Manufacturers)', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_figures-other-manufacturers', 'Sports Memorabilia :: Football Memorabilia :: Figures (Other Manufacturers)', '', 0, 1, 0, '', '', ''),
  3203. (6754, 'Fixture Cards/ Lists', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_fixture-cards-lists', 'Sports Memorabilia :: Football Memorabilia :: Fixture Cards/ Lists', '', 0, 1, 0, '', '', ''),
  3204. (6755, 'Handbooks/ Annuals', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_handbooks-annuals', 'Sports Memorabilia :: Football Memorabilia :: Handbooks/ Annuals', '', 0, 1, 0, '', '', ''),
  3205. (6756, 'Keyrings', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_keyrings', 'Sports Memorabilia :: Football Memorabilia :: Keyrings', '', 0, 1, 0, '', '', ''),
  3206. (6757, 'Lighters', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_lighters', 'Sports Memorabilia :: Football Memorabilia :: Lighters', '', 0, 1, 0, '', '', ''),
  3207. (6758, 'Magnets', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_magnets', 'Sports Memorabilia :: Football Memorabilia :: Magnets', '', 0, 1, 0, '', '', ''),
  3208. (6759, 'Medals/ Coins', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_medals-coins', 'Sports Memorabilia :: Football Memorabilia :: Medals/ Coins', '', 0, 1, 0, '', '', ''),
  3209. (6760, 'Menus', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_menus', 'Sports Memorabilia :: Football Memorabilia :: Menus', '', 0, 1, 0, '', '', ''),
  3210. (6761, 'Mousemats', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_mousemats', 'Sports Memorabilia :: Football Memorabilia :: Mousemats', '', 0, 1, 0, '', '', ''),
  3211. (6762, 'Mugs/ Tankards', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_mugs-tankards', 'Sports Memorabilia :: Football Memorabilia :: Mugs/ Tankards', '', 0, 1, 0, '', '', ''),
  3212. (6763, 'Pennants/ Flags', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_pennants-flags', 'Sports Memorabilia :: Football Memorabilia :: Pennants/ Flags', '', 0, 1, 0, '', '', ''),
  3213. (6764, 'Photographs', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_photographs', 'Sports Memorabilia :: Football Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3214. (6765, 'Postal Covers', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_postal-covers', 'Sports Memorabilia :: Football Memorabilia :: Postal Covers', '', 0, 1, 0, '', '', ''),
  3215. (6766, 'Postcards', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_postcards', 'Sports Memorabilia :: Football Memorabilia :: Postcards', '', 0, 1, 0, '', '', ''),
  3216. (6767, 'Posters', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_posters', 'Sports Memorabilia :: Football Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  3217. (6768, 'Prints/ Pictures', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_prints-pictures', 'Sports Memorabilia :: Football Memorabilia :: Prints/ Pictures', '', 0, 1, 0, '', '', ''),
  3218. (6769, 'Records/ CDs/ Songs', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_records-cds-songs', 'Sports Memorabilia :: Football Memorabilia :: Records/ CDs/ Songs', '', 0, 1, 0, '', '', ''),
  3219. (6770, 'Rugs', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_rugs', 'Sports Memorabilia :: Football Memorabilia :: Rugs', '', 0, 1, 0, '', '', ''),
  3220. (6771, 'Scarves', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_scarves', 'Sports Memorabilia :: Football Memorabilia :: Scarves', '', 0, 1, 0, '', '', ''),
  3221. (6772, 'Tickets/ Stubs', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_tickets-stubs', 'Sports Memorabilia :: Football Memorabilia :: Tickets/ Stubs', '', 0, 1, 0, '', '', ''),
  3222. (6773, 'Towels', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_towels', 'Sports Memorabilia :: Football Memorabilia :: Towels', '', 0, 1, 0, '', '', ''),
  3223. (6774, 'Trading Cards/ Stickers', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_trading-cards-stickers', 'Sports Memorabilia :: Football Memorabilia :: Trading Cards/ Stickers', '', 0, 1, 0, '', '', ''),
  3224. (6775, 'Trophies', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_trophies', 'Sports Memorabilia :: Football Memorabilia :: Trophies', '', 0, 1, 0, '', '', ''),
  3225. (6776, 'Watches', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_watches', 'Sports Memorabilia :: Football Memorabilia :: Watches', '', 0, 1, 0, '', '', ''),
  3226. (6777, 'Wristbands', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_wristbands', 'Sports Memorabilia :: Football Memorabilia :: Wristbands', '', 0, 1, 0, '', '', ''),
  3227. (6778, 'Wristbands', 6688, 0, NULL, 'sports-memorabilia_football-memorabilia_wristbands1', 'Sports Memorabilia :: Football Memorabilia :: Wristbands', '', 0, 1, 0, '', '', ''),
  3228. (6779, 'League Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_league-fixtures', 'Sports Memorabilia :: Football Programmes :: League Fixtures', '', 0, 1, 0, '', '', ''),
  3229. (6780, 'Non-League Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_non-league-fixtures', 'Sports Memorabilia :: Football Programmes :: Non-League Fixtures', '', 0, 1, 0, '', '', ''),
  3230. (6781, 'Charity Shield Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_charity-shield-fixtures', 'Sports Memorabilia :: Football Programmes :: Charity Shield Fixtures', '', 0, 1, 0, '', '', ''),
  3231. (6782, 'FA Cup Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_fa-cup-fixtures', 'Sports Memorabilia :: Football Programmes :: FA Cup Fixtures', '', 0, 1, 0, '', '', ''),
  3232. (6783, 'League Cup Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_league-cup-fixtures', 'Sports Memorabilia :: Football Programmes :: League Cup Fixtures', '', 0, 1, 0, '', '', ''),
  3233. (6784, 'Scottish Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_scottish-fixtures', 'Sports Memorabilia :: Football Programmes :: Scottish Fixtures', '', 0, 1, 0, '', '', ''),
  3234. (6785, 'European Club Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_european-club-fixtures', 'Sports Memorabilia :: Football Programmes :: European Club Fixtures', '', 0, 1, 0, '', '', ''),
  3235. (6786, 'International Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_international-fixtures', 'Sports Memorabilia :: Football Programmes :: International Fixtures', '', 0, 1, 0, '', '', ''),
  3236. (6787, 'Friendly/ Pre-Season Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_friendly-pre-season-fixtures', 'Sports Memorabilia :: Football Programmes :: Friendly/ Pre-Season Fixtures', '', 0, 1, 0, '', '', ''),
  3237. (6788, 'Reserve Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_reserve-fixtures', 'Sports Memorabilia :: Football Programmes :: Reserve Fixtures', '', 0, 1, 0, '', '', ''),
  3238. (6789, 'Schoolboy/ Youth Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_schoolboy-youth-fixtures', 'Sports Memorabilia :: Football Programmes :: Schoolboy/ Youth Fixtures', '', 0, 1, 0, '', '', ''),
  3239. (6790, 'Testimonial Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_testimonial-fixtures', 'Sports Memorabilia :: Football Programmes :: Testimonial Fixtures', '', 0, 1, 0, '', '', ''),
  3240. (6791, 'Women's Fixtures', 6689, 0, NULL, 'sports-memorabilia_football-programmes_womens-fixtures', 'Sports Memorabilia :: Football Programmes :: Women's Fixtures', '', 0, 1, 0, '', '', ''),
  3241. (6792, 'Collections/ Bulk Lots', 6689, 0, NULL, 'sports-memorabilia_football-programmes_collections-bulk-lots', 'Sports Memorabilia :: Football Programmes :: Collections/ Bulk Lots', '', 0, 1, 0, '', '', ''),
  3242. (6793, 'Other Football Programmes', 6689, 0, NULL, 'sports-memorabilia_football-programmes_other-football-programmes', 'Sports Memorabilia :: Football Programmes :: Other Football Programmes', '', 0, 1, 0, '', '', ''),
  3243. (6794, 'English Clubs', 6690, 0, NULL, 'sports-memorabilia_football-shirts_english-clubs', 'Sports Memorabilia :: Football Shirts :: English Clubs', '', 0, 1, 0, '', '', ''),
  3244. (6795, 'Irish Clubs', 6690, 0, NULL, 'sports-memorabilia_football-shirts_irish-clubs', 'Sports Memorabilia :: Football Shirts :: Irish Clubs', '', 0, 1, 0, '', '', ''),
  3245. (6796, 'Scottish Clubs', 6690, 0, NULL, 'sports-memorabilia_football-shirts_scottish-clubs', 'Sports Memorabilia :: Football Shirts :: Scottish Clubs', '', 0, 1, 0, '', '', ''),
  3246. (6797, 'Welsh Clubs', 6690, 0, NULL, 'sports-memorabilia_football-shirts_welsh-clubs', 'Sports Memorabilia :: Football Shirts :: Welsh Clubs', '', 0, 1, 0, '', '', ''),
  3247. (6798, 'Rest Of The World Clubs', 6690, 0, NULL, 'sports-memorabilia_football-shirts_rest-of-the-world-clubs', 'Sports Memorabilia :: Football Shirts :: Rest Of The World Clubs', '', 0, 1, 0, '', '', ''),
  3248. (6799, 'National Teams', 6690, 0, NULL, 'sports-memorabilia_football-shirts_national-teams', 'Sports Memorabilia :: Football Shirts :: National Teams', '', 0, 1, 0, '', '', ''),
  3249. (6800, 'Other Football Shirts', 6690, 0, NULL, 'sports-memorabilia_football-shirts_other-football-shirts', 'Sports Memorabilia :: Football Shirts :: Other Football Shirts', '', 0, 1, 0, '', '', ''),
  3250. (6801, 'Autographs', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_autographs', 'Sports Memorabilia :: Golf Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3251. (6802, 'Books/ Publications', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_books-publications', 'Sports Memorabilia :: Golf Memorabilia :: Books/ Publications', '', 0, 1, 0, '', '', ''),
  3252. (6803, 'Ceramics/ Plates', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_ceramics-plates', 'Sports Memorabilia :: Golf Memorabilia :: Ceramics/ Plates', '', 0, 1, 0, '', '', ''),
  3253. (6804, 'Clothing', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_clothing', 'Sports Memorabilia :: Golf Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  3254. (6805, 'Trading Cards', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_trading-cards', 'Sports Memorabilia :: Golf Memorabilia :: Trading Cards', '', 0, 1, 0, '', '', ''),
  3255. (6806, 'Markers', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_markers', 'Sports Memorabilia :: Golf Memorabilia :: Markers', '', 0, 1, 0, '', '', ''),
  3256. (6807, 'Photographs', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_photographs', 'Sports Memorabilia :: Golf Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3257. (6808, 'Prints', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_prints', 'Sports Memorabilia :: Golf Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3258. (6809, 'Programmes', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_programmes', 'Sports Memorabilia :: Golf Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3259. (6810, 'Ryder Cup', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_ryder-cup', 'Sports Memorabilia :: Golf Memorabilia :: Ryder Cup', '', 0, 1, 0, '', '', ''),
  3260. (6811, 'Vintage Balls', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_vintage-balls', 'Sports Memorabilia :: Golf Memorabilia :: Vintage Balls', '', 0, 1, 0, '', '', ''),
  3261. (6812, 'Vintage Clubs', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_vintage-clubs', 'Sports Memorabilia :: Golf Memorabilia :: Vintage Clubs', '', 0, 1, 0, '', '', ''),
  3262. (6813, 'Other Golf Memorabilia', 6691, 0, NULL, 'sports-memorabilia_golf-memorabilia_other-golf-memorabilia', 'Sports Memorabilia :: Golf Memorabilia :: Other Golf Memorabilia', '', 0, 1, 0, '', '', ''),
  3263. (6814, 'Autographs', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_autographs', 'Sports Memorabilia :: Horse Racing Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3264. (6815, 'Badges/ Pins', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_badges-pins', 'Sports Memorabilia :: Horse Racing Memorabilia :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  3265. (6816, 'Books/ Publications', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_books-publications', 'Sports Memorabilia :: Horse Racing Memorabilia :: Books/ Publications', '', 0, 1, 0, '', '', ''),
  3266. (6817, 'Cards', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_cards', 'Sports Memorabilia :: Horse Racing Memorabilia :: Cards', '', 0, 1, 0, '', '', ''),
  3267. (6818, 'Ceramics/ Plates', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_ceramics-plates', 'Sports Memorabilia :: Horse Racing Memorabilia :: Ceramics/ Plates', '', 0, 1, 0, '', '', ''),
  3268. (6819, 'Grand National', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_grand-national', 'Sports Memorabilia :: Horse Racing Memorabilia :: Grand National', '', 0, 1, 0, '', '', ''),
  3269. (6820, 'Photographs', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_photographs', 'Sports Memorabilia :: Horse Racing Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3270. (6821, 'Prints', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_prints', 'Sports Memorabilia :: Horse Racing Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3271. (6822, 'Race Cards', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_race-cards', 'Sports Memorabilia :: Horse Racing Memorabilia :: Race Cards', '', 0, 1, 0, '', '', ''),
  3272. (6823, 'Timeform', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_timeform', 'Sports Memorabilia :: Horse Racing Memorabilia :: Timeform', '', 0, 1, 0, '', '', ''),
  3273. (6824, 'Other Horse Racing', 6692, 0, NULL, 'sports-memorabilia_horse-racing-memorabilia_other-horse-racing', 'Sports Memorabilia :: Horse Racing Memorabilia :: Other Horse Racing', '', 0, 1, 0, '', '', ''),
  3274. (6825, 'Autographs', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_autographs', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3275. (6826, 'Badges/ Pins', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_badges-pins', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Badges/ Pins', '', 0, 1, 0, '', '', ''),
  3276. (6827, 'Clothing', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_clothing', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  3277. (6828, 'Photographs', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_photographs', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3278. (6829, 'Programmes', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_programmes', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3279. (6830, 'Trading Cards', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_trading-cards', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Trading Cards', '', 0, 1, 0, '', '', ''),
  3280. (6831, 'Other Ice Hockey Memorabilia', 6693, 0, NULL, 'sports-memorabilia_ice-hockey-memorabilia_other-ice-hockey-memorabilia', 'Sports Memorabilia :: Ice Hockey Memorabilia :: Other Ice Hockey Memorabilia', '', 0, 1, 0, '', '', ''),
  3281. (6832, 'Banger Racing', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_banger-racing', 'Sports Memorabilia :: Motor Sport Memorabilia :: Banger Racing', '', 0, 1, 0, '', '', ''),
  3282. (6833, 'Formula 1', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_formula-1', 'Sports Memorabilia :: Motor Sport Memorabilia :: Formula 1', '', 0, 1, 0, '', '', ''),
  3283. (6834, 'Le Mans', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_le-mans', 'Sports Memorabilia :: Motor Sport Memorabilia :: Le Mans', '', 0, 1, 0, '', '', ''),
  3284. (6835, 'Nascar', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_nascar', 'Sports Memorabilia :: Motor Sport Memorabilia :: Nascar', '', 0, 1, 0, '', '', ''),
  3285. (6836, 'Rally', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_rally', 'Sports Memorabilia :: Motor Sport Memorabilia :: Rally', '', 0, 1, 0, '', '', ''),
  3286. (6837, 'Speedway', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_speedway', 'Sports Memorabilia :: Motor Sport Memorabilia :: Speedway', '', 0, 1, 0, '', '', ''),
  3287. (6838, 'Stock Cars', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_stock-cars', 'Sports Memorabilia :: Motor Sport Memorabilia :: Stock Cars', '', 0, 1, 0, '', '', ''),
  3288. (6839, 'Superbikes', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_superbikes', 'Sports Memorabilia :: Motor Sport Memorabilia :: Superbikes', '', 0, 1, 0, '', '', ''),
  3289. (6840, 'Touring Cars', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_touring-cars', 'Sports Memorabilia :: Motor Sport Memorabilia :: Touring Cars', '', 0, 1, 0, '', '', ''),
  3290. (6841, 'Other Motor Sport Memorabilia', 6694, 0, NULL, 'sports-memorabilia_motor-sport-memorabilia_other-motor-sport-memorabilia', 'Sports Memorabilia :: Motor Sport Memorabilia :: Other Motor Sport Memorabilia', '', 0, 1, 0, '', '', ''),
  3291. (6842, 'London 2012', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_london-2012', 'Sports Memorabilia :: Olympic Memorabilia :: London 2012', '', 0, 1, 0, '', '', ''),
  3292. (6843, 'Beijing 2008', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_beijing-2008', 'Sports Memorabilia :: Olympic Memorabilia :: Beijing 2008', '', 0, 1, 0, '', '', ''),
  3293. (6844, 'Athens 2004', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_athens-2004', 'Sports Memorabilia :: Olympic Memorabilia :: Athens 2004', '', 0, 1, 0, '', '', ''),
  3294. (6845, 'Sydney 2000', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_sydney-2000', 'Sports Memorabilia :: Olympic Memorabilia :: Sydney 2000', '', 0, 1, 0, '', '', ''),
  3295. (6846, 'Atlanta 1996', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_atlanta-1996', 'Sports Memorabilia :: Olympic Memorabilia :: Atlanta 1996', '', 0, 1, 0, '', '', ''),
  3296. (6847, 'Barcelona 1992', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_barcelona-1992', 'Sports Memorabilia :: Olympic Memorabilia :: Barcelona 1992', '', 0, 1, 0, '', '', ''),
  3297. (6848, 'Seoul 1988', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_seoul-1988', 'Sports Memorabilia :: Olympic Memorabilia :: Seoul 1988', '', 0, 1, 0, '', '', ''),
  3298. (6849, 'Los Angeles 1984', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_los-angeles-1984', 'Sports Memorabilia :: Olympic Memorabilia :: Los Angeles 1984', '', 0, 1, 0, '', '', ''),
  3299. (6850, 'Moscow 1980', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_moscow-1980', 'Sports Memorabilia :: Olympic Memorabilia :: Moscow 1980', '', 0, 1, 0, '', '', ''),
  3300. (6851, 'Montreal 1976', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_montreal-1976', 'Sports Memorabilia :: Olympic Memorabilia :: Montreal 1976', '', 0, 1, 0, '', '', ''),
  3301. (6852, 'Munich 1972', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_munich-1972', 'Sports Memorabilia :: Olympic Memorabilia :: Munich 1972', '', 0, 1, 0, '', '', ''),
  3302. (6853, 'Mexico City 1968', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_mexico-city-1968', 'Sports Memorabilia :: Olympic Memorabilia :: Mexico City 1968', '', 0, 1, 0, '', '', ''),
  3303. (6854, 'London 1948', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_london-1948', 'Sports Memorabilia :: Olympic Memorabilia :: London 1948', '', 0, 1, 0, '', '', ''),
  3304. (6855, 'Berlin 1936', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_berlin-1936', 'Sports Memorabilia :: Olympic Memorabilia :: Berlin 1936', '', 0, 1, 0, '', '', ''),
  3305. (6856, 'Winter Olympics', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_winter-olympics', 'Sports Memorabilia :: Olympic Memorabilia :: Winter Olympics', '', 0, 1, 0, '', '', ''),
  3306. (6857, 'Other Olympic Memorabilia', 6695, 0, NULL, 'sports-memorabilia_olympic-memorabilia_other-olympic-memorabilia', 'Sports Memorabilia :: Olympic Memorabilia :: Other Olympic Memorabilia', '', 0, 1, 0, '', '', ''),
  3307. (6858, 'Autographs', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_autographs', 'Sports Memorabilia :: Rugby League Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3308. (6859, 'Balls', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_balls', 'Sports Memorabilia :: Rugby League Memorabilia :: Balls', '', 0, 1, 0, '', '', ''),
  3309. (6860, 'Photographs', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_photographs', 'Sports Memorabilia :: Rugby League Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3310. (6861, 'Posters', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_posters', 'Sports Memorabilia :: Rugby League Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  3311. (6862, 'Prints', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_prints', 'Sports Memorabilia :: Rugby League Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3312. (6863, 'Programmes', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_programmes', 'Sports Memorabilia :: Rugby League Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3313. (6864, 'Shirts', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_shirts', 'Sports Memorabilia :: Rugby League Memorabilia :: Shirts', '', 0, 1, 0, '', '', ''),
  3314. (6865, 'Tickets/ Stubs', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_tickets-stubs', 'Sports Memorabilia :: Rugby League Memorabilia :: Tickets/ Stubs', '', 0, 1, 0, '', '', ''),
  3315. (6866, 'Ties', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_ties', 'Sports Memorabilia :: Rugby League Memorabilia :: Ties', '', 0, 1, 0, '', '', ''),
  3316. (6867, 'Other Rugby League Memorabilia', 6696, 0, NULL, 'sports-memorabilia_rugby-league-memorabilia_other-rugby-league-memorabilia', 'Sports Memorabilia :: Rugby League Memorabilia :: Other Rugby League Memorabilia', '', 0, 1, 0, '', '', ''),
  3317. (6868, 'Autographs', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_autographs', 'Sports Memorabilia :: Rugby Union Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3318. (6869, 'Balls', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_balls', 'Sports Memorabilia :: Rugby Union Memorabilia :: Balls', '', 0, 1, 0, '', '', ''),
  3319. (6870, 'British Lions', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_british-lions', 'Sports Memorabilia :: Rugby Union Memorabilia :: British Lions', '', 0, 1, 0, '', '', ''),
  3320. (6871, 'Photographs', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_photographs', 'Sports Memorabilia :: Rugby Union Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3321. (6872, 'Posters', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_posters', 'Sports Memorabilia :: Rugby Union Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  3322. (6873, 'Prints', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_prints', 'Sports Memorabilia :: Rugby Union Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3323. (6874, 'Programmes', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_programmes', 'Sports Memorabilia :: Rugby Union Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3324. (6875, 'Shirts', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_shirts', 'Sports Memorabilia :: Rugby Union Memorabilia :: Shirts', '', 0, 1, 0, '', '', ''),
  3325. (6876, 'Tickets/ Stubs', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_tickets-stubs', 'Sports Memorabilia :: Rugby Union Memorabilia :: Tickets/ Stubs', '', 0, 1, 0, '', '', ''),
  3326. (6877, 'Ties', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_ties', 'Sports Memorabilia :: Rugby Union Memorabilia :: Ties', '', 0, 1, 0, '', '', ''),
  3327. (6878, 'Other Rugby Union Memorabilia', 6697, 0, NULL, 'sports-memorabilia_rugby-union-memorabilia_other-rugby-union-memorabilia', 'Sports Memorabilia :: Rugby Union Memorabilia :: Other Rugby Union Memorabilia', '', 0, 1, 0, '', '', ''),
  3328. (6879, 'Football Accessories', 6698, 0, NULL, 'sports-memorabilia_subbuteo_football-accessories', 'Sports Memorabilia :: Subbuteo :: Football Accessories', '', 0, 1, 0, '', '', ''),
  3329. (6880, 'Heavyweight Teams', 6698, 0, NULL, 'sports-memorabilia_subbuteo_heavyweight-teams', 'Sports Memorabilia :: Subbuteo :: Heavyweight Teams', '', 0, 1, 0, '', '', ''),
  3330. (6881, 'Lightweight Teams', 6698, 0, NULL, 'sports-memorabilia_subbuteo_lightweight-teams', 'Sports Memorabilia :: Subbuteo :: Lightweight Teams', '', 0, 1, 0, '', '', ''),
  3331. (6882, 'Rugby/ Cricket Sets', 6698, 0, NULL, 'sports-memorabilia_subbuteo_rugby-cricket-sets', 'Sports Memorabilia :: Subbuteo :: Rugby/ Cricket Sets', '', 0, 1, 0, '', '', ''),
  3332. (6883, 'Other Subbuteo', 6698, 0, NULL, 'sports-memorabilia_subbuteo_other-subbuteo', 'Sports Memorabilia :: Subbuteo :: Other Subbuteo', '', 0, 1, 0, '', '', ''),
  3333. (6884, 'Balls', 6699, 0, NULL, 'sports-memorabilia_tennis-memorabilia_balls', 'Sports Memorabilia :: Tennis Memorabilia :: Balls', '', 0, 1, 0, '', '', ''),
  3334. (6885, 'Photographs', 6699, 0, NULL, 'sports-memorabilia_tennis-memorabilia_photographs', 'Sports Memorabilia :: Tennis Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3335. (6886, 'Posters', 6699, 0, NULL, 'sports-memorabilia_tennis-memorabilia_posters', 'Sports Memorabilia :: Tennis Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  3336. (6887, 'Prints', 6699, 0, NULL, 'sports-memorabilia_tennis-memorabilia_prints', 'Sports Memorabilia :: Tennis Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3337. (6888, 'Programmes', 6699, 0, NULL, 'sports-memorabilia_tennis-memorabilia_programmes', 'Sports Memorabilia :: Tennis Memorabilia :: Programmes', '', 0, 1, 0, '', '', ''),
  3338. (6889, 'Autographs', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_autographs', 'Sports Memorabilia :: Wrestling Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  3339. (6890, 'Belts', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_belts', 'Sports Memorabilia :: Wrestling Memorabilia :: Belts', '', 0, 1, 0, '', '', ''),
  3340. (6891, 'Clothing', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_clothing', 'Sports Memorabilia :: Wrestling Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  3341. (6892, 'Figures', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_figures', 'Sports Memorabilia :: Wrestling Memorabilia :: Figures', '', 0, 1, 0, '', '', ''),
  3342. (6893, 'Magazines', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_magazines', 'Sports Memorabilia :: Wrestling Memorabilia :: Magazines', '', 0, 1, 0, '', '', ''),
  3343. (6894, 'Photographs', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_photographs', 'Sports Memorabilia :: Wrestling Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  3344. (6895, 'Prints', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_prints', 'Sports Memorabilia :: Wrestling Memorabilia :: Prints', '', 0, 1, 0, '', '', ''),
  3345. (6896, 'Posters', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_posters', 'Sports Memorabilia :: Wrestling Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  3346. (6897, 'Publications', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_publications', 'Sports Memorabilia :: Wrestling Memorabilia :: Publications', '', 0, 1, 0, '', '', ''),
  3347. (6898, 'Trading Cards/ Stickers', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_trading-cards-stickers', 'Sports Memorabilia :: Wrestling Memorabilia :: Trading Cards/ Stickers', '', 0, 1, 0, '', '', ''),
  3348. (6899, 'Other Wrestling Memorabilia', 6700, 0, NULL, 'sports-memorabilia_wrestling-memorabilia_other-wrestling-memorabilia', 'Sports Memorabilia :: Wrestling Memorabilia :: Other Wrestling Memorabilia', '', 0, 1, 0, '', '', ''),
  3349. (6900, 'Athletics', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_athletics', 'Sports Memorabilia :: Other Sports Memorabilia :: Athletics', '', 0, 1, 0, '', '', ''),
  3350. (6901, 'Australian Rules Football', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_australian-rules-football', 'Sports Memorabilia :: Other Sports Memorabilia :: Australian Rules Football', '', 0, 1, 0, '', '', ''),
  3351. (6902, 'Cycling', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_cycling', 'Sports Memorabilia :: Other Sports Memorabilia :: Cycling', '', 0, 1, 0, '', '', ''),
  3352. (6903, 'Darts', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_darts', 'Sports Memorabilia :: Other Sports Memorabilia :: Darts', '', 0, 1, 0, '', '', ''),
  3353. (6904, 'Equestrian', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_equestrian', 'Sports Memorabilia :: Other Sports Memorabilia :: Equestrian', '', 0, 1, 0, '', '', ''),
  3354. (6905, 'Gaelic Sports', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_gaelic-sports', 'Sports Memorabilia :: Other Sports Memorabilia :: Gaelic Sports', '', 0, 1, 0, '', '', ''),
  3355. (6906, 'Greyhound Racing', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_greyhound-racing', 'Sports Memorabilia :: Other Sports Memorabilia :: Greyhound Racing', '', 0, 1, 0, '', '', ''),
  3356. (6907, 'Gymnastics', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_gymnastics', 'Sports Memorabilia :: Other Sports Memorabilia :: Gymnastics', '', 0, 1, 0, '', '', ''),
  3357. (6908, 'Hunting', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_hunting', 'Sports Memorabilia :: Other Sports Memorabilia :: Hunting', '', 0, 1, 0, '', '', ''),
  3358. (6909, 'Rowing', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_rowing', 'Sports Memorabilia :: Other Sports Memorabilia :: Rowing', '', 0, 1, 0, '', '', ''),
  3359. (6910, 'Skating', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_skating', 'Sports Memorabilia :: Other Sports Memorabilia :: Skating', '', 0, 1, 0, '', '', ''),
  3360. (6911, 'Snooker/ Pool/ Billiards', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_snooker-pool-billiards', 'Sports Memorabilia :: Other Sports Memorabilia :: Snooker/ Pool/ Billiards', '', 0, 1, 0, '', '', ''),
  3361. (6912, 'Swimming', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_swimming', 'Sports Memorabilia :: Other Sports Memorabilia :: Swimming', '', 0, 1, 0, '', '', ''),
  3362. (6913, 'Winter Sports', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_winter-sports', 'Sports Memorabilia :: Other Sports Memorabilia :: Winter Sports', '', 0, 1, 0, '', '', ''),
  3363. (6914, 'Other Sports Memorabilia', 6701, 0, NULL, 'sports-memorabilia_other-sports-memorabilia_other-sports-memorabilia', 'Sports Memorabilia :: Other Sports Memorabilia :: Other Sports Memorabilia', '', 0, 1, 0, '', '', ''),
  3364. (6915, 'Date-Lined Ceramics', 3701, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics', '', 0, 1, 0, '', '', ''),
  3365. (6916, 'Glass', 3701, 0, NULL, 'pottery-porcelain-glass_glass', 'Pottery, Porcelain & Glass :: Glass', '', 0, 1, 0, '', '', ''),
  3366. (6917, 'Porcelain/ China', 3701, 0, NULL, 'pottery-porcelain-glass_porcelain-china', 'Pottery, Porcelain & Glass :: Porcelain/ China', '', 0, 1, 0, '', '', ''),
  3367. (6918, 'Pottery', 3701, 0, NULL, 'pottery-porcelain-glass_pottery', 'Pottery, Porcelain & Glass :: Pottery', '', 0, 1, 0, '', '', ''),
  3368. (6919, 'Stoneware', 3701, 0, NULL, 'pottery-porcelain-glass_stoneware', 'Pottery, Porcelain & Glass :: Stoneware', '', 0, 1, 0, '', '', ''),
  3369. (6920, 'Pre-c.1840', 6915, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics_pre-c1840', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics :: Pre-c.1840', '', 0, 1, 0, '', '', ''),
  3370. (6921, 'c.1840- c.1900', 6915, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics_c1840-c1900', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics :: c.1840- c.1900', '', 0, 1, 0, '', '', ''),
  3371. (6922, 'Art Nouveau/ 1890s-1919', 6915, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics_art-nouveau-1890s-1919', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics :: Art Nouveau/ 1890s-1919', '', 0, 1, 0, '', '', ''),
  3372. (6923, 'Art Deco/ 1920-1939', 6915, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics_art-deco-1920-1939', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics :: Art Deco/ 1920-1939', '', 0, 1, 0, '', '', ''),
  3373. (6924, '1940s/ 1950s', 6915, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics_1940s-1950s', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics :: 1940s/ 1950s', '', 0, 1, 0, '', '', ''),
  3374. (6925, '1960s/ 1970s', 6915, 0, NULL, 'pottery-porcelain-glass_date-lined-ceramics_1960s-1970s', 'Pottery, Porcelain & Glass :: Date-Lined Ceramics :: 1960s/ 1970s', '', 0, 1, 0, '', '', ''),
  3375. (6926, 'Art Glass', 6916, 0, NULL, 'pottery-porcelain-glass_glass_art-glass', 'Pottery, Porcelain & Glass :: Glass :: Art Glass', '', 0, 1, 0, '', '', ''),
  3376. (6927, 'Crystal/ Cut Glass', 6916, 0, NULL, 'pottery-porcelain-glass_glass_crystal-cut-glass', 'Pottery, Porcelain & Glass :: Glass :: Crystal/ Cut Glass', '', 0, 1, 0, '', '', ''),
  3377. (6928, 'Date-Lined Glass', 6916, 0, NULL, 'pottery-porcelain-glass_glass_date-lined-glass', 'Pottery, Porcelain & Glass :: Glass :: Date-Lined Glass', '', 0, 1, 0, '', '', ''),
  3378. (6929, 'Glassware', 6916, 0, NULL, 'pottery-porcelain-glass_glass_glassware', 'Pottery, Porcelain & Glass :: Glass :: Glassware', '', 0, 1, 0, '', '', ''),
  3379. (6930, 'Paperweights', 6916, 0, NULL, 'pottery-porcelain-glass_glass_paperweights', 'Pottery, Porcelain & Glass :: Glass :: Paperweights', '', 0, 1, 0, '', '', ''),
  3380. (6931, 'Stained Glass', 6916, 0, NULL, 'pottery-porcelain-glass_glass_stained-glass', 'Pottery, Porcelain & Glass :: Glass :: Stained Glass', '', 0, 1, 0, '', '', ''),
  3381. (6932, 'Other Glass', 6916, 0, NULL, 'pottery-porcelain-glass_glass_other-glass', 'Pottery, Porcelain & Glass :: Glass :: Other Glass', '', 0, 1, 0, '', '', ''),
  3382. (6933, 'Adderley', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_adderley', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Adderley', '', 0, 1, 0, '', '', ''),
  3383. (6934, 'Arcadian Crested China', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_arcadian-crested-china', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Arcadian Crested China', '', 0, 1, 0, '', '', ''),
  3384. (6935, 'Aynsley', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_aynsley', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Aynsley', '', 0, 1, 0, '', '', ''),
  3385. (6936, 'Belleek', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_belleek', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Belleek', '', 0, 1, 0, '', '', ''),
  3386. (6937, 'Bing & Grondahl', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_bing-grondahl', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Bing & Grondahl', '', 0, 1, 0, '', '', ''),
  3387. (6938, 'Border Fine Arts', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_border-fine-arts', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Border Fine Arts', '', 0, 1, 0, '', '', ''),
  3388. (6939, 'Carlton Ware', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_carlton-ware', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Carlton Ware', '', 0, 1, 0, '', '', ''),
  3389. (6940, 'Capodimonte', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_capodimonte', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Capodimonte', '', 0, 1, 0, '', '', ''),
  3390. (6941, 'Chintzware', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_chintzware', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Chintzware', '', 0, 1, 0, '', '', ''),
  3391. (6942, 'Coalport', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_coalport', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Coalport', '', 0, 1, 0, '', '', ''),
  3392. (6943, 'Colclough', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_colclough', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Colclough', '', 0, 1, 0, '', '', ''),
  3393. (6944, 'Commemorative Ware', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_commemorative-ware', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Commemorative Ware', '', 0, 1, 0, '', '', ''),
  3394. (6945, 'Continental', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_continental', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Continental', '', 0, 1, 0, '', '', ''),
  3395. (6946, 'Crown Staffordshire', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_crown-staffordshire', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Crown Staffordshire', '', 0, 1, 0, '', '', ''),
  3396. (6947, 'Doulton Burslem', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_doulton-burslem', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Doulton Burslem', '', 0, 1, 0, '', '', ''),
  3397. (6948, 'Dresden', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_dresden', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Dresden', '', 0, 1, 0, '', '', ''),
  3398. (6949, 'Duchess', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_duchess', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Duchess', '', 0, 1, 0, '', '', ''),
  3399. (6950, 'Fenton', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_fenton', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Fenton', '', 0, 1, 0, '', '', ''),
  3400. (6951, 'Foley', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_foley', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Foley', '', 0, 1, 0, '', '', ''),
  3401. (6952, 'Franklin Mint', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_franklin-mint', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Franklin Mint', '', 0, 1, 0, '', '', ''),
  3402. (6953, 'Franz', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_franz', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Franz', '', 0, 1, 0, '', '', ''),
  3403. (6954, 'Gemma Crested China', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_gemma-crested-china', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Gemma Crested China', '', 0, 1, 0, '', '', ''),
  3404. (6955, 'Goss', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_goss', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Goss', '', 0, 1, 0, '', '', ''),
  3405. (6956, 'Grafton/ Royal Grafton', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_grafton-royal-grafton', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Grafton/ Royal Grafton', '', 0, 1, 0, '', '', ''),
  3406. (6957, 'Hammersley', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_hammersley', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Hammersley', '', 0, 1, 0, '', '', ''),
  3407. (6958, 'Herend', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_herend', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Herend', '', 0, 1, 0, '', '', ''),
  3408. (6959, 'Hummel/ Goebel', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_hummel-goebel', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Hummel/ Goebel', '', 0, 1, 0, '', '', ''),
  3409. (6960, 'Irish', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_irish', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Irish', '', 0, 1, 0, '', '', ''),
  3410. (6961, 'James Kent', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_james-kent', 'Pottery, Porcelain & Glass :: Porcelain/ China :: James Kent', '', 0, 1, 0, '', '', ''),
  3411. (6962, 'John Maddock & Sons', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_john-maddock-sons', 'Pottery, Porcelain & Glass :: Porcelain/ China :: John Maddock & Sons', '', 0, 1, 0, '', '', ''),
  3412. (6963, 'Kaiser', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_kaiser', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Kaiser', '', 0, 1, 0, '', '', ''),
  3413. (6964, 'Kevin Francis', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_kevin-francis', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Kevin Francis', '', 0, 1, 0, '', '', ''),
  3414. (6965, 'KPM', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_kpm', 'Pottery, Porcelain & Glass :: Porcelain/ China :: KPM', '', 0, 1, 0, '', '', ''),
  3415. (6966, 'Limoges', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_limoges', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Limoges', '', 0, 1, 0, '', '', ''),
  3416. (6967, 'Lladro/ Nao', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_lladro-nao', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Lladro/ Nao', '', 0, 1, 0, '', '', ''),
  3417. (6968, 'Local Minor Makes', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_local-minor-makes', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Local Minor Makes', '', 0, 1, 0, '', '', ''),
  3418. (6969, 'Lomonosov/ USSR', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_lomonosov-ussr', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Lomonosov/ USSR', '', 0, 1, 0, '', '', ''),
  3419. (6970, 'Meissen', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_meissen', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Meissen', '', 0, 1, 0, '', '', ''),
  3420. (6971, 'Miniatures', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_miniatures', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Miniatures', '', 0, 1, 0, '', '', ''),
  3421. (6972, 'Minton', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_minton', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Minton', '', 0, 1, 0, '', '', ''),
  3422. (6973, 'Noritake/ Nipponware', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_noritake-nipponware', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Noritake/ Nipponware', '', 0, 1, 0, '', '', ''),
  3423. (6974, 'Old Tupton Ware', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_old-tupton-ware', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Old Tupton Ware', '', 0, 1, 0, '', '', ''),
  3424. (6975, 'Oriental', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_oriental', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Oriental', '', 0, 1, 0, '', '', ''),
  3425. (6976, 'Paragon', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_paragon', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Paragon', '', 0, 1, 0, '', '', ''),
  3426. (6977, 'Parian', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_parian', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Parian', '', 0, 1, 0, '', '', ''),
  3427. (6978, 'Queen Anne', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_queen-anne', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Queen Anne', '', 0, 1, 0, '', '', ''),
  3428. (6979, 'Queens', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_queens', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Queens', '', 0, 1, 0, '', '', ''),
  3429. (6980, 'Royal Albert', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-albert', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Albert', '', 0, 1, 0, '', '', ''),
  3430. (6981, 'Royal Copenhagen', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-copenhagen', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Copenhagen', '', 0, 1, 0, '', '', ''),
  3431. (6982, 'Royal Crown Derby', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-crown-derby', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Crown Derby', '', 0, 1, 0, '', '', ''),
  3432. (6983, 'Royal Doulton', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-doulton', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Doulton', '', 0, 1, 0, '', '', ''),
  3433. (6984, 'Royal Dux', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-dux', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Dux', '', 0, 1, 0, '', '', ''),
  3434. (6985, 'Royal Osborne', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-osborne', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Osborne', '', 0, 1, 0, '', '', ''),
  3435. (6986, 'Royal Stafford', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-stafford', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Stafford', '', 0, 1, 0, '', '', ''),
  3436. (6987, 'Royal Standard', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-standard', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Standard', '', 0, 1, 0, '', '', ''),
  3437. (6988, 'Royal Vale', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-vale', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Vale', '', 0, 1, 0, '', '', ''),
  3438. (6989, 'Royal Winton/ Grimwades', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-winton-grimwades', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Winton/ Grimwades', '', 0, 1, 0, '', '', ''),
  3439. (6990, 'Royal Worcester', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_royal-worcester', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Royal Worcester', '', 0, 1, 0, '', '', ''),
  3440. (6991, 'Roy Kirkham', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_roy-kirkham', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Roy Kirkham', '', 0, 1, 0, '', '', ''),
  3441. (6992, 'Sevres', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_sevres', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Sevres', '', 0, 1, 0, '', '', ''),
  3442. (6993, 'Shelley', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_shelley', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Shelley', '', 0, 1, 0, '', '', ''),
  3443. (6994, 'Sitzendorf', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_sitzendorf', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Sitzendorf', '', 0, 1, 0, '', '', ''),
  3444. (6995, 'Spode/ Copeland', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_spode-copeland', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Spode/ Copeland', '', 0, 1, 0, '', '', ''),
  3445. (6996, 'Sutherland/ Royal Sutherland', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_sutherland-royal-sutherland', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Sutherland/ Royal Sutherland', '', 0, 1, 0, '', '', ''),
  3446. (6997, 'Thomas', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_thomas', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Thomas', '', 0, 1, 0, '', '', ''),
  3447. (6998, 'Tuscan', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_tuscan', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Tuscan', '', 0, 1, 0, '', '', ''),
  3448. (6999, 'Villeroy & Boch', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_villeroy-boch', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Villeroy & Boch', '', 0, 1, 0, '', '', ''),
  3449. (7000, 'Wade', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_wade', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Wade', '', 0, 1, 0, '', '', ''),
  3450. (7001, 'Wedgwood', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_wedgwood', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Wedgwood', '', 0, 1, 0, '', '', ''),
  3451. (7002, 'Unmarked Pieces', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_unmarked-pieces', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Unmarked Pieces', '', 0, 1, 0, '', '', ''),
  3452. (7003, 'Other Porcelain/ China', 6917, 0, NULL, 'pottery-porcelain-glass_porcelain-china_other-porcelain-china', 'Pottery, Porcelain & Glass :: Porcelain/ China :: Other Porcelain/ China', '', 0, 1, 0, '', '', ''),
  3453. (7004, 'Adams', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_adams', 'Pottery, Porcelain & Glass :: Pottery :: Adams', '', 0, 1, 0, '', '', ''),
  3454. (7005, 'Alfred Meakin', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_alfred-meakin', 'Pottery, Porcelain & Glass :: Pottery :: Alfred Meakin', '', 0, 1, 0, '', '', ''),
  3455. (7006, 'Art Pottery', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_art-pottery', 'Pottery, Porcelain & Glass :: Pottery :: Art Pottery', '', 0, 1, 0, '', '', ''),
  3456. (7007, 'Arthur Wood', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_arthur-wood', 'Pottery, Porcelain & Glass :: Pottery :: Arthur Wood', '', 0, 1, 0, '', '', ''),
  3457. (7008, 'Aviemore', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_aviemore', 'Pottery, Porcelain & Glass :: Pottery :: Aviemore', '', 0, 1, 0, '', '', ''),
  3458. (7009, 'Beswick', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_beswick', 'Pottery, Porcelain & Glass :: Pottery :: Beswick', '', 0, 1, 0, '', '', ''),
  3459. (7010, 'Blue & White Transfer Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_blue-white-transfer-ware', 'Pottery, Porcelain & Glass :: Pottery :: Blue & White Transfer Ware', '', 0, 1, 0, '', '', ''),
  3460. (7011, 'Blue Mountain', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_blue-mountain', 'Pottery, Porcelain & Glass :: Pottery :: Blue Mountain', '', 0, 1, 0, '', '', ''),
  3461. (7012, 'Booths', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_booths', 'Pottery, Porcelain & Glass :: Pottery :: Booths', '', 0, 1, 0, '', '', ''),
  3462. (7013, 'Boots', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_boots', 'Pottery, Porcelain & Glass :: Pottery :: Boots', '', 0, 1, 0, '', '', ''),
  3463. (7014, 'Branksome', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_branksome', 'Pottery, Porcelain & Glass :: Pottery :: Branksome', '', 0, 1, 0, '', '', ''),
  3464. (7015, 'Bretby', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_bretby', 'Pottery, Porcelain & Glass :: Pottery :: Bretby', '', 0, 1, 0, '', '', ''),
  3465. (7016, 'Bridgewater', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_bridgewater', 'Pottery, Porcelain & Glass :: Pottery :: Bridgewater', '', 0, 1, 0, '', '', ''),
  3466. (7017, 'Briglin', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_briglin', 'Pottery, Porcelain & Glass :: Pottery :: Briglin', '', 0, 1, 0, '', '', ''),
  3467. (7018, 'British Home Stores (BHS)', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_british-home-stores-bhs', 'Pottery, Porcelain & Glass :: Pottery :: British Home Stores (BHS)', '', 0, 1, 0, '', '', ''),
  3468. (7019, 'Burleigh', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_burleigh', 'Pottery, Porcelain & Glass :: Pottery :: Burleigh', '', 0, 1, 0, '', '', ''),
  3469. (7020, 'Burlington', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_burlington', 'Pottery, Porcelain & Glass :: Pottery :: Burlington', '', 0, 1, 0, '', '', ''),
  3470. (7021, 'Cardew', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_cardew', 'Pottery, Porcelain & Glass :: Pottery :: Cardew', '', 0, 1, 0, '', '', ''),
  3471. (7022, 'Carlton Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_carlton-ware', 'Pottery, Porcelain & Glass :: Pottery :: Carlton Ware', '', 0, 1, 0, '', '', ''),
  3472. (7023, 'Charlotte Rhead', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_charlotte-rhead', 'Pottery, Porcelain & Glass :: Pottery :: Charlotte Rhead', '', 0, 1, 0, '', '', ''),
  3473. (7024, 'Clarice Cliff', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_clarice-cliff', 'Pottery, Porcelain & Glass :: Pottery :: Clarice Cliff', '', 0, 1, 0, '', '', ''),
  3474. (7025, 'Clews', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_clews', 'Pottery, Porcelain & Glass :: Pottery :: Clews', '', 0, 1, 0, '', '', ''),
  3475. (7026, 'Cobridge', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_cobridge', 'Pottery, Porcelain & Glass :: Pottery :: Cobridge', '', 0, 1, 0, '', '', ''),
  3476. (7027, 'Commemorative Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_commemorative-ware', 'Pottery, Porcelain & Glass :: Pottery :: Commemorative Ware', '', 0, 1, 0, '', '', ''),
  3477. (7028, 'Continental', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_continental', 'Pottery, Porcelain & Glass :: Pottery :: Continental', '', 0, 1, 0, '', '', ''),
  3478. (7029, 'Copeland', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_copeland', 'Pottery, Porcelain & Glass :: Pottery :: Copeland', '', 0, 1, 0, '', '', ''),
  3479. (7030, 'Cornishware/ T. G. Green', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_cornishware-t-g-green', 'Pottery, Porcelain & Glass :: Pottery :: Cornishware/ T. G. Green', '', 0, 1, 0, '', '', ''),
  3480. (7031, 'Cottage Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_cottage-ware', 'Pottery, Porcelain & Glass :: Pottery :: Cottage Ware', '', 0, 1, 0, '', '', ''),
  3481. (7032, 'Creamware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_creamware', 'Pottery, Porcelain & Glass :: Pottery :: Creamware', '', 0, 1, 0, '', '', ''),
  3482. (7033, 'Crown Devon', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_crown-devon', 'Pottery, Porcelain & Glass :: Pottery :: Crown Devon', '', 0, 1, 0, '', '', ''),
  3483. (7034, 'Crown Ducal', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_crown-ducal', 'Pottery, Porcelain & Glass :: Pottery :: Crown Ducal', '', 0, 1, 0, '', '', ''),
  3484. (7035, 'Crown Staffordshire', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_crown-staffordshire', 'Pottery, Porcelain & Glass :: Pottery :: Crown Staffordshire', '', 0, 1, 0, '', '', ''),
  3485. (7036, 'Delft', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_delft', 'Pottery, Porcelain & Glass :: Pottery :: Delft', '', 0, 1, 0, '', '', ''),
  3486. (7037, 'Denby/ Langley/ Lovatt', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_denby-langley-lovatt', 'Pottery, Porcelain & Glass :: Pottery :: Denby/ Langley/ Lovatt', '', 0, 1, 0, '', '', ''),
  3487. (7038, 'Devon/ Torquay Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_devon-torquay-ware', 'Pottery, Porcelain & Glass :: Pottery :: Devon/ Torquay Ware', '', 0, 1, 0, '', '', ''),
  3488. (7039, 'Dunoon', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_dunoon', 'Pottery, Porcelain & Glass :: Pottery :: Dunoon', '', 0, 1, 0, '', '', ''),
  3489. (7040, 'Eastgate', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_eastgate', 'Pottery, Porcelain & Glass :: Pottery :: Eastgate', '', 0, 1, 0, '', '', ''),
  3490. (7041, 'Fosters', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_fosters', 'Pottery, Porcelain & Glass :: Pottery :: Fosters', '', 0, 1, 0, '', '', ''),
  3491. (7042, 'Furnivals', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_furnivals', 'Pottery, Porcelain & Glass :: Pottery :: Furnivals', '', 0, 1, 0, '', '', ''),
  3492. (7043, 'Gaudy Welsh', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_gaudy-welsh', 'Pottery, Porcelain & Glass :: Pottery :: Gaudy Welsh', '', 0, 1, 0, '', '', ''),
  3493. (7044, 'George Jones', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_george-jones', 'Pottery, Porcelain & Glass :: Pottery :: George Jones', '', 0, 1, 0, '', '', ''),
  3494. (7045, 'Gouda', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_gouda', 'Pottery, Porcelain & Glass :: Pottery :: Gouda', '', 0, 1, 0, '', '', ''),
  3495. (7046, 'Gray's', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_grays', 'Pottery, Porcelain & Glass :: Pottery :: Gray's', '', 0, 1, 0, '', '', ''),
  3496. (7047, 'Grindley', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_grindley', 'Pottery, Porcelain & Glass :: Pottery :: Grindley', '', 0, 1, 0, '', '', ''),
  3497. (7048, 'Hancocks', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_hancocks', 'Pottery, Porcelain & Glass :: Pottery :: Hancocks', '', 0, 1, 0, '', '', ''),
  3498. (7049, 'H. J. Wood', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_h-j-wood', 'Pottery, Porcelain & Glass :: Pottery :: H. J. Wood', '', 0, 1, 0, '', '', ''),
  3499. (7050, 'Holkham', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_holkham', 'Pottery, Porcelain & Glass :: Pottery :: Holkham', '', 0, 1, 0, '', '', ''),
  3500. (7051, 'Hornsea', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_hornsea', 'Pottery, Porcelain & Glass :: Pottery :: Hornsea', '', 0, 1, 0, '', '', ''),
  3501. (7052, 'Irish', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_irish', 'Pottery, Porcelain & Glass :: Pottery :: Irish', '', 0, 1, 0, '', '', ''),
  3502. (7053, 'J&G Meakin', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_jg-meakin', 'Pottery, Porcelain & Glass :: Pottery :: J&G Meakin', '', 0, 1, 0, '', '', ''),
  3503. (7054, 'Jersey', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_jersey', 'Pottery, Porcelain & Glass :: Pottery :: Jersey', '', 0, 1, 0, '', '', ''),
  3504. (7055, 'Johnson Brothers', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_johnson-brothers', 'Pottery, Porcelain & Glass :: Pottery :: Johnson Brothers', '', 0, 1, 0, '', '', ''),
  3505. (7056, 'Kernewek', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_kernewek', 'Pottery, Porcelain & Glass :: Pottery :: Kernewek', '', 0, 1, 0, '', '', ''),
  3506. (7057, 'Lancaster & Sandland', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_lancaster-sandland', 'Pottery, Porcelain & Glass :: Pottery :: Lancaster & Sandland', '', 0, 1, 0, '', '', ''),
  3507. (7058, 'Laura Ashley', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_laura-ashley', 'Pottery, Porcelain & Glass :: Pottery :: Laura Ashley', '', 0, 1, 0, '', '', ''),
  3508. (7059, 'Local Minor Makes', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_local-minor-makes', 'Pottery, Porcelain & Glass :: Pottery :: Local Minor Makes', '', 0, 1, 0, '', '', ''),
  3509. (7060, 'Lord Nelson Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_lord-nelson-ware', 'Pottery, Porcelain & Glass :: Pottery :: Lord Nelson Ware', '', 0, 1, 0, '', '', ''),
  3510. (7061, 'Lorna Bailey', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_lorna-bailey', 'Pottery, Porcelain & Glass :: Pottery :: Lorna Bailey', '', 0, 1, 0, '', '', ''),
  3511. (7062, 'Losol', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_losol', 'Pottery, Porcelain & Glass :: Pottery :: Losol', '', 0, 1, 0, '', '', ''),
  3512. (7063, 'Majolica', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_majolica', 'Pottery, Porcelain & Glass :: Pottery :: Majolica', '', 0, 1, 0, '', '', ''),
  3513. (7064, 'Maling', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_maling', 'Pottery, Porcelain & Glass :: Pottery :: Maling', '', 0, 1, 0, '', '', ''),
  3514. (7065, 'Manor Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_manor-ware', 'Pottery, Porcelain & Glass :: Pottery :: Manor Ware', '', 0, 1, 0, '', '', ''),
  3515. (7066, 'Marks & Spencer', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_marks-spencer', 'Pottery, Porcelain & Glass :: Pottery :: Marks & Spencer', '', 0, 1, 0, '', '', ''),
  3516. (7067, 'Masons', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_masons', 'Pottery, Porcelain & Glass :: Pottery :: Masons', '', 0, 1, 0, '', '', ''),
  3517. (7068, 'Melba Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_melba-ware', 'Pottery, Porcelain & Glass :: Pottery :: Melba Ware', '', 0, 1, 0, '', '', ''),
  3518. (7069, 'Midwinter', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_midwinter', 'Pottery, Porcelain & Glass :: Pottery :: Midwinter', '', 0, 1, 0, '', '', ''),
  3519. (7070, 'Miniatures', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_miniatures', 'Pottery, Porcelain & Glass :: Pottery :: Miniatures', '', 0, 1, 0, '', '', ''),
  3520. (7071, 'Minton', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_minton', 'Pottery, Porcelain & Glass :: Pottery :: Minton', '', 0, 1, 0, '', '', ''),
  3521. (7072, 'Moorcroft', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_moorcroft', 'Pottery, Porcelain & Glass :: Pottery :: Moorcroft', '', 0, 1, 0, '', '', ''),
  3522. (7073, 'Myott', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_myott', 'Pottery, Porcelain & Glass :: Pottery :: Myott', '', 0, 1, 0, '', '', ''),
  3523. (7074, 'Nursery Ware/ Children's', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_nursery-ware-childrens', 'Pottery, Porcelain & Glass :: Pottery :: Nursery Ware/ Children's', '', 0, 1, 0, '', '', ''),
  3524. (7075, 'Oldcourt Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_oldcourt-ware', 'Pottery, Porcelain & Glass :: Pottery :: Oldcourt Ware', '', 0, 1, 0, '', '', ''),
  3525. (7076, 'Oriental', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_oriental', 'Pottery, Porcelain & Glass :: Pottery :: Oriental', '', 0, 1, 0, '', '', ''),
  3526. (7077, 'Poole', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_poole', 'Pottery, Porcelain & Glass :: Pottery :: Poole', '', 0, 1, 0, '', '', ''),
  3527. (7078, 'Portmeirion', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_portmeirion', 'Pottery, Porcelain & Glass :: Pottery :: Portmeirion', '', 0, 1, 0, '', '', ''),
  3528. (7079, 'Prattware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_prattware', 'Pottery, Porcelain & Glass :: Pottery :: Prattware', '', 0, 1, 0, '', '', ''),
  3529. (7080, 'Price Kensington', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_price-kensington', 'Pottery, Porcelain & Glass :: Pottery :: Price Kensington', '', 0, 1, 0, '', '', ''),
  3530. (7081, 'Prinknash', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_prinknash', 'Pottery, Porcelain & Glass :: Pottery :: Prinknash', '', 0, 1, 0, '', '', ''),
  3531. (7082, 'Purbeck', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_purbeck', 'Pottery, Porcelain & Glass :: Pottery :: Purbeck', '', 0, 1, 0, '', '', ''),
  3532. (7083, 'Quimper/ Faience', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_quimper-faience', 'Pottery, Porcelain & Glass :: Pottery :: Quimper/ Faience', '', 0, 1, 0, '', '', ''),
  3533. (7084, 'Radford', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_radford', 'Pottery, Porcelain & Glass :: Pottery :: Radford', '', 0, 1, 0, '', '', ''),
  3534. (7085, 'Regional', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_regional', 'Pottery, Porcelain & Glass :: Pottery :: Regional', '', 0, 1, 0, '', '', ''),
  3535. (7086, 'Ridgway', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_ridgway', 'Pottery, Porcelain & Glass :: Pottery :: Ridgway', '', 0, 1, 0, '', '', ''),
  3536. (7087, 'Rosenthal', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_rosenthal', 'Pottery, Porcelain & Glass :: Pottery :: Rosenthal', '', 0, 1, 0, '', '', ''),
  3537. (7088, 'Royal Cauldon', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_royal-cauldon', 'Pottery, Porcelain & Glass :: Pottery :: Royal Cauldon', '', 0, 1, 0, '', '', ''),
  3538. (7089, 'Royal Doulton', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_royal-doulton', 'Pottery, Porcelain & Glass :: Pottery :: Royal Doulton', '', 0, 1, 0, '', '', ''),
  3539. (7090, 'Royal Stafford', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_royal-stafford', 'Pottery, Porcelain & Glass :: Pottery :: Royal Stafford', '', 0, 1, 0, '', '', ''),
  3540. (7091, 'Royal Stanley Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_royal-stanley-ware', 'Pottery, Porcelain & Glass :: Pottery :: Royal Stanley Ware', '', 0, 1, 0, '', '', ''),
  3541. (7092, 'Royal Winton/ Grimwades', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_royal-winton-grimwades', 'Pottery, Porcelain & Glass :: Pottery :: Royal Winton/ Grimwades', '', 0, 1, 0, '', '', ''),
  3542. (7093, 'Royal Worcester', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_royal-worcester', 'Pottery, Porcelain & Glass :: Pottery :: Royal Worcester', '', 0, 1, 0, '', '', ''),
  3543. (7094, 'Rye', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_rye', 'Pottery, Porcelain & Glass :: Pottery :: Rye', '', 0, 1, 0, '', '', ''),
  3544. (7095, 'Sadler', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_sadler', 'Pottery, Porcelain & Glass :: Pottery :: Sadler', '', 0, 1, 0, '', '', ''),
  3545. (7096, 'Scottish Pottery', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_scottish-pottery', 'Pottery, Porcelain & Glass :: Pottery :: Scottish Pottery', '', 0, 1, 0, '', '', ''),
  3546. (7097, 'Shorter & Son', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_shorter-son', 'Pottery, Porcelain & Glass :: Pottery :: Shorter & Son', '', 0, 1, 0, '', '', ''),
  3547. (7098, 'Spode', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_spode', 'Pottery, Porcelain & Glass :: Pottery :: Spode', '', 0, 1, 0, '', '', ''),
  3548. (7099, 'Staffordshire', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_staffordshire', 'Pottery, Porcelain & Glass :: Pottery :: Staffordshire', '', 0, 1, 0, '', '', ''),
  3549. (7100, 'Studio', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_studio', 'Pottery, Porcelain & Glass :: Pottery :: Studio', '', 0, 1, 0, '', '', ''),
  3550. (7101, 'Susie Cooper', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_susie-cooper', 'Pottery, Porcelain & Glass :: Pottery :: Susie Cooper', '', 0, 1, 0, '', '', ''),
  3551. (7102, 'Swinnertons', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_swinnertons', 'Pottery, Porcelain & Glass :: Pottery :: Swinnertons', '', 0, 1, 0, '', '', ''),
  3552. (7103, 'SylvaC', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_sylvac', 'Pottery, Porcelain & Glass :: Pottery :: SylvaC', '', 0, 1, 0, '', '', ''),
  3553. (7104, 'Szeiler', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_szeiler', 'Pottery, Porcelain & Glass :: Pottery :: Szeiler', '', 0, 1, 0, '', '', ''),
  3554. (7105, 'Toni Raymond', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_toni-raymond', 'Pottery, Porcelain & Glass :: Pottery :: Toni Raymond', '', 0, 1, 0, '', '', ''),
  3555. (7106, 'Tremar', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_tremar', 'Pottery, Porcelain & Glass :: Pottery :: Tremar', '', 0, 1, 0, '', '', ''),
  3556. (7107, 'Troika', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_troika', 'Pottery, Porcelain & Glass :: Pottery :: Troika', '', 0, 1, 0, '', '', ''),
  3557. (7108, 'Wade', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_wade', 'Pottery, Porcelain & Glass :: Pottery :: Wade', '', 0, 1, 0, '', '', ''),
  3558. (7109, 'Wedgwood', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_wedgwood', 'Pottery, Porcelain & Glass :: Pottery :: Wedgwood', '', 0, 1, 0, '', '', ''),
  3559. (7110, 'Welsh Pottery', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_welsh-pottery', 'Pottery, Porcelain & Glass :: Pottery :: Welsh Pottery', '', 0, 1, 0, '', '', ''),
  3560. (7111, 'Wemyss', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_wemyss', 'Pottery, Porcelain & Glass :: Pottery :: Wemyss', '', 0, 1, 0, '', '', ''),
  3561. (7112, 'Woods Ware', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_woods-ware', 'Pottery, Porcelain & Glass :: Pottery :: Woods Ware', '', 0, 1, 0, '', '', ''),
  3562. (7113, 'Unmarked Pieces', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_unmarked-pieces', 'Pottery, Porcelain & Glass :: Pottery :: Unmarked Pieces', '', 0, 1, 0, '', '', ''),
  3563. (7114, 'Other Pottery', 6918, 0, NULL, 'pottery-porcelain-glass_pottery_other-pottery', 'Pottery, Porcelain & Glass :: Pottery :: Other Pottery', '', 0, 1, 0, '', '', ''),
  3564. (7115, 'Buchan', 6919, 0, NULL, 'pottery-porcelain-glass_stoneware_buchan', 'Pottery, Porcelain & Glass :: Stoneware :: Buchan', '', 0, 1, 0, '', '', ''),
  3565. (7116, 'Denby', 6919, 0, NULL, 'pottery-porcelain-glass_stoneware_denby', 'Pottery, Porcelain & Glass :: Stoneware :: Denby', '', 0, 1, 0, '', '', ''),
  3566. (7117, 'Doulton Lambeth', 6919, 0, NULL, 'pottery-porcelain-glass_stoneware_doulton-lambeth', 'Pottery, Porcelain & Glass :: Stoneware :: Doulton Lambeth', '', 0, 1, 0, '', '', ''),
  3567. (7118, 'Highland', 6919, 0, NULL, 'pottery-porcelain-glass_stoneware_highland', 'Pottery, Porcelain & Glass :: Stoneware :: Highland', '', 0, 1, 0, '', '', ''),
  3568. (7119, 'Other Stoneware', 6919, 0, NULL, 'pottery-porcelain-glass_stoneware_other-stoneware', 'Pottery, Porcelain & Glass :: Stoneware :: Other Stoneware', '', 0, 1, 0, '', '', ''),
  3569. (7120, 'Beads', 3688, 0, NULL, 'crafts_beads', 'Crafts :: Beads', '', 0, 1, 0, '', '', ''),
  3570. (7121, 'Cake Decorating', 3688, 0, NULL, 'crafts_cake-decorating', 'Crafts :: Cake Decorating', '', 0, 1, 0, '', '', ''),
  3571. (7122, 'Candle & Soap Making', 3688, 0, NULL, 'crafts_candle-soap-making', 'Crafts :: Candle & Soap Making', '', 0, 1, 0, '', '', ''),
  3572. (7123, 'Cardmaking & Scrapbooking', 3688, 0, NULL, 'crafts_cardmaking-scrapbooking', 'Crafts :: Cardmaking & Scrapbooking', '', 0, 1, 0, '', '', ''),
  3573. (7124, 'Ceramic & Pottery Making', 3688, 0, NULL, 'crafts_ceramic-pottery-making', 'Crafts :: Ceramic & Pottery Making', '', 0, 1, 0, '', '', ''),
  3574. (7125, 'Children's Crafts', 3688, 0, NULL, 'crafts_childrens-crafts', 'Crafts :: Children's Crafts', '', 0, 1, 0, '', '', ''),
  3575. (7126, 'Crochet', 3688, 0, NULL, 'crafts_crochet', 'Crafts :: Crochet', '', 0, 1, 0, '', '', ''),
  3576. (7127, 'Cross Stitch', 3688, 0, NULL, 'crafts_cross-stitch', 'Crafts :: Cross Stitch', '', 0, 1, 0, '', '', ''),
  3577. (7128, 'Embroidery', 3688, 0, NULL, 'crafts_embroidery', 'Crafts :: Embroidery', '', 0, 1, 0, '', '', ''),
  3578. (7129, 'Fabric', 3688, 0, NULL, 'crafts_fabric', 'Crafts :: Fabric', '', 0, 1, 0, '', '', ''),
  3579. (7130, 'Floral Supplies', 3688, 0, NULL, 'crafts_floral-supplies', 'Crafts :: Floral Supplies', '', 0, 1, 0, '', '', ''),
  3580. (7131, 'Framing/ Matting', 3688, 0, NULL, 'crafts_framing-matting', 'Crafts :: Framing/ Matting', '', 0, 1, 0, '', '', ''),
  3581. (7132, 'Glass Art Supplies', 3688, 0, NULL, 'crafts_glass-art-supplies', 'Crafts :: Glass Art Supplies', '', 0, 1, 0, '', '', ''),
  3582. (7133, 'Hand-Crafted Items', 3688, 0, NULL, 'crafts_hand-crafted-items', 'Crafts :: Hand-Crafted Items', '', 0, 1, 0, '', '', ''),
  3583. (7134, 'Knitting', 3688, 0, NULL, 'crafts_knitting', 'Crafts :: Knitting', '', 0, 1, 0, '', '', ''),
  3584. (7135, 'Jewellery Making', 3688, 0, NULL, 'crafts_jewellery-making', 'Crafts :: Jewellery Making', '', 0, 1, 0, '', '', ''),
  3585. (7136, 'Lacemaking', 3688, 0, NULL, 'crafts_lacemaking', 'Crafts :: Lacemaking', '', 0, 1, 0, '', '', ''),
  3586. (7137, 'Latch-Hook/ Rug-Making', 3688, 0, NULL, 'crafts_latch-hook-rug-making', 'Crafts :: Latch-Hook/ Rug-Making', '', 0, 1, 0, '', '', ''),
  3587. (7138, 'Leathercraft', 3688, 0, NULL, 'crafts_leathercraft', 'Crafts :: Leathercraft', '', 0, 1, 0, '', '', ''),
  3588. (7139, 'Mosaic', 3688, 0, NULL, 'crafts_mosaic', 'Crafts :: Mosaic', '', 0, 1, 0, '', '', ''),
  3589. (7140, 'Painting, Drawing & Art', 3688, 0, NULL, 'crafts_painting-drawing-art', 'Crafts :: Painting, Drawing & Art', '', 0, 1, 0, '', '', ''),
  3590. (7141, 'Paper Crafts/ Origami', 3688, 0, NULL, 'crafts_paper-crafts-origami', 'Crafts :: Paper Crafts/ Origami', '', 0, 1, 0, '', '', ''),
  3591. (7142, 'Quilting', 3688, 0, NULL, 'crafts_quilting', 'Crafts :: Quilting', '', 0, 1, 0, '', '', ''),
  3592. (7143, 'Rubber Stamping', 3688, 0, NULL, 'crafts_rubber-stamping', 'Crafts :: Rubber Stamping', '', 0, 1, 0, '', '', ''),
  3593. (7144, 'Sewing', 3688, 0, NULL, 'crafts_sewing', 'Crafts :: Sewing', '', 0, 1, 0, '', '', ''),
  3594. (7145, 'Tapestry & Needlepoint', 3688, 0, NULL, 'crafts_tapestry-needlepoint', 'Crafts :: Tapestry & Needlepoint', '', 0, 1, 0, '', '', ''),
  3595. (7146, 'Woodworking', 3688, 0, NULL, 'crafts_woodworking', 'Crafts :: Woodworking', '', 0, 1, 0, '', '', ''),
  3596. (7147, 'Other Crafts', 3688, 0, NULL, 'crafts_other-crafts', 'Crafts :: Other Crafts', '', 0, 1, 0, '', '', ''),
  3597. (7148, 'Ceramic/ Clay/ Porcelain', 7120, 0, NULL, 'crafts_beads_ceramic-clay-porcelain', 'Crafts :: Beads :: Ceramic/ Clay/ Porcelain', '', 0, 1, 0, '', '', ''),
  3598. (7149, 'Cloisonne', 7120, 0, NULL, 'crafts_beads_cloisonne', 'Crafts :: Beads :: Cloisonne', '', 0, 1, 0, '', '', ''),
  3599. (7150, 'Glass', 7120, 0, NULL, 'crafts_beads_glass', 'Crafts :: Beads :: Glass', '', 0, 1, 0, '', '', ''),
  3600. (7151, 'Crystal/ Cut Glass', 7120, 0, NULL, 'crafts_beads_crystal-cut-glass', 'Crafts :: Beads :: Crystal/ Cut Glass', '', 0, 1, 0, '', '', ''),
  3601. (7152, 'Gemstone', 7120, 0, NULL, 'crafts_beads_gemstone', 'Crafts :: Beads :: Gemstone', '', 0, 1, 0, '', '', ''),
  3602. (7153, 'Lampwork', 7120, 0, NULL, 'crafts_beads_lampwork', 'Crafts :: Beads :: Lampwork', '', 0, 1, 0, '', '', ''),
  3603. (7154, 'Metal', 7120, 0, NULL, 'crafts_beads_metal', 'Crafts :: Beads :: Metal', '', 0, 1, 0, '', '', ''),
  3604. (7155, 'Millefiori', 7120, 0, NULL, 'crafts_beads_millefiori', 'Crafts :: Beads :: Millefiori', '', 0, 1, 0, '', '', ''),
  3605. (7156, 'Mother of Pearl', 7120, 0, NULL, 'crafts_beads_mother-of-pearl', 'Crafts :: Beads :: Mother of Pearl', '', 0, 1, 0, '', '', ''),
  3606. (7157, 'Pearl', 7120, 0, NULL, 'crafts_beads_pearl', 'Crafts :: Beads :: Pearl', '', 0, 1, 0, '', '', ''),
  3607. (7158, 'Plastic', 7120, 0, NULL, 'crafts_beads_plastic', 'Crafts :: Beads :: Plastic', '', 0, 1, 0, '', '', ''),
  3608. (7159, 'Rhinestone', 7120, 0, NULL, 'crafts_beads_rhinestone', 'Crafts :: Beads :: Rhinestone', '', 0, 1, 0, '', '', ''),
  3609. (7160, 'Seed', 7120, 0, NULL, 'crafts_beads_seed', 'Crafts :: Beads :: Seed', '', 0, 1, 0, '', '', ''),
  3610. (7161, 'Shell', 7120, 0, NULL, 'crafts_beads_shell', 'Crafts :: Beads :: Shell', '', 0, 1, 0, '', '', ''),
  3611. (7162, 'Venetian', 7120, 0, NULL, 'crafts_beads_venetian', 'Crafts :: Beads :: Venetian', '', 0, 1, 0, '', '', ''),
  3612. (7163, 'Wood', 7120, 0, NULL, 'crafts_beads_wood', 'Crafts :: Beads :: Wood', '', 0, 1, 0, '', '', ''),
  3613. (7164, 'Mixed Lots', 7120, 0, NULL, 'crafts_beads_mixed-lots', 'Crafts :: Beads :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  3614. (7165, 'Other Beads', 7120, 0, NULL, 'crafts_beads_other-beads', 'Crafts :: Beads :: Other Beads', '', 0, 1, 0, '', '', ''),
  3615. (7166, 'Cake Toppers', 7121, 0, NULL, 'crafts_cake-decorating_cake-toppers', 'Crafts :: Cake Decorating :: Cake Toppers', '', 0, 1, 0, '', '', ''),
  3616. (7167, 'Cutters', 7121, 0, NULL, 'crafts_cake-decorating_cutters', 'Crafts :: Cake Decorating :: Cutters', '', 0, 1, 0, '', '', ''),
  3617. (7168, 'Icing Equipment', 7121, 0, NULL, 'crafts_cake-decorating_icing-equipment', 'Crafts :: Cake Decorating :: Icing Equipment', '', 0, 1, 0, '', '', ''),
  3618. (7169, 'Moulds', 7121, 0, NULL, 'crafts_cake-decorating_moulds', 'Crafts :: Cake Decorating :: Moulds', '', 0, 1, 0, '', '', ''),
  3619. (7170, 'Tools', 7121, 0, NULL, 'crafts_cake-decorating_tools', 'Crafts :: Cake Decorating :: Tools', '', 0, 1, 0, '', '', ''),
  3620. (7171, 'Candle Dye', 7122, 0, NULL, 'crafts_candle-soap-making_candle-dye', 'Crafts :: Candle & Soap Making :: Candle Dye', '', 0, 1, 0, '', '', ''),
  3621. (7172, 'Candle Moulds', 7122, 0, NULL, 'crafts_candle-soap-making_candle-moulds', 'Crafts :: Candle & Soap Making :: Candle Moulds', '', 0, 1, 0, '', '', ''),
  3622. (7173, 'Scents', 7122, 0, NULL, 'crafts_candle-soap-making_scents', 'Crafts :: Candle & Soap Making :: Scents', '', 0, 1, 0, '', '', ''),
  3623. (7174, 'Wax/ Wax Pellets', 7122, 0, NULL, 'crafts_candle-soap-making_wax-wax-pellets', 'Crafts :: Candle & Soap Making :: Wax/ Wax Pellets', '', 0, 1, 0, '', '', ''),
  3624. (7175, 'Wick', 7122, 0, NULL, 'crafts_candle-soap-making_wick', 'Crafts :: Candle & Soap Making :: Wick', '', 0, 1, 0, '', '', ''),
  3625. (7176, 'Albums', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_albums', 'Crafts :: Cardmaking & Scrapbooking :: Albums', '', 0, 1, 0, '', '', ''),
  3626. (7177, 'Backing Materials', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_backing-materials', 'Crafts :: Cardmaking & Scrapbooking :: Backing Materials', '', 0, 1, 0, '', '', ''),
  3627. (7178, 'Beads', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_beads', 'Crafts :: Cardmaking & Scrapbooking :: Beads', '', 0, 1, 0, '', '', ''),
  3628. (7179, 'Brads & Eyelets', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_brads-eyelets', 'Crafts :: Cardmaking & Scrapbooking :: Brads & Eyelets', '', 0, 1, 0, '', '', ''),
  3629. (7180, 'Buttons', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_buttons', 'Crafts :: Cardmaking & Scrapbooking :: Buttons', '', 0, 1, 0, '', '', ''),
  3630. (7181, 'Card, Paper & Envelopes', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_card-paper-envelopes', 'Crafts :: Cardmaking & Scrapbooking :: Card, Paper & Envelopes', '', 0, 1, 0, '', '', ''),
  3631. (7182, 'Cello & Display Bags', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_cello-display-bags', 'Crafts :: Cardmaking & Scrapbooking :: Cello & Display Bags', '', 0, 1, 0, '', '', ''),
  3632. (7183, 'Charms', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_charms', 'Crafts :: Cardmaking & Scrapbooking :: Charms', '', 0, 1, 0, '', '', ''),
  3633. (7184, 'Decoupage', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_decoupage', 'Crafts :: Cardmaking & Scrapbooking :: Decoupage', '', 0, 1, 0, '', '', ''),
  3634. (7185, 'Die-Cutters & Punches', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_die-cutters-punches', 'Crafts :: Cardmaking & Scrapbooking :: Die-Cutters & Punches', '', 0, 1, 0, '', '', ''),
  3635. (7186, 'Die-Cut Shapes & Punchies', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_die-cut-shapes-punchies', 'Crafts :: Cardmaking & Scrapbooking :: Die-Cut Shapes & Punchies', '', 0, 1, 0, '', '', ''),
  3636. (7187, 'Embellishments', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_embellishments', 'Crafts :: Cardmaking & Scrapbooking :: Embellishments', '', 0, 1, 0, '', '', ''),
  3637. (7188, 'Fimo', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_fimo', 'Crafts :: Cardmaking & Scrapbooking :: Fimo', '', 0, 1, 0, '', '', ''),
  3638. (7189, 'Glitter', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_glitter', 'Crafts :: Cardmaking & Scrapbooking :: Glitter', '', 0, 1, 0, '', '', ''),
  3639. (7190, 'Glue & Tape', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_glue-tape', 'Crafts :: Cardmaking & Scrapbooking :: Glue & Tape', '', 0, 1, 0, '', '', ''),
  3640. (7191, 'Hand-Made Cards', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_hand-made-cards', 'Crafts :: Cardmaking & Scrapbooking :: Hand-Made Cards', '', 0, 1, 0, '', '', ''),
  3641. (7192, 'Iris Folding', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_iris-folding', 'Crafts :: Cardmaking & Scrapbooking :: Iris Folding', '', 0, 1, 0, '', '', ''),
  3642. (7193, 'Kits & Projects', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_kits-projects', 'Crafts :: Cardmaking & Scrapbooking :: Kits & Projects', '', 0, 1, 0, '', '', ''),
  3643. (7194, 'Parchment Craft', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_parchment-craft', 'Crafts :: Cardmaking & Scrapbooking :: Parchment Craft', '', 0, 1, 0, '', '', ''),
  3644. (7195, 'Peel-Offs', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_peel-offs', 'Crafts :: Cardmaking & Scrapbooking :: Peel-Offs', '', 0, 1, 0, '', '', ''),
  3645. (7196, 'Pens & Markers', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_pens-markers', 'Crafts :: Cardmaking & Scrapbooking :: Pens & Markers', '', 0, 1, 0, '', '', ''),
  3646. (7197, 'Ribbon & Fibres', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_ribbon-fibres', 'Crafts :: Cardmaking & Scrapbooking :: Ribbon & Fibres', '', 0, 1, 0, '', '', ''),
  3647. (7198, 'Rub-On Transfers', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_rub-on-transfers', 'Crafts :: Cardmaking & Scrapbooking :: Rub-On Transfers', '', 0, 1, 0, '', '', ''),
  3648. (7199, 'Scrapbook Pads', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_scrapbook-pads', 'Crafts :: Cardmaking & Scrapbooking :: Scrapbook Pads', '', 0, 1, 0, '', '', ''),
  3649. (7200, 'Spirelli', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_spirelli', 'Crafts :: Cardmaking & Scrapbooking :: Spirelli', '', 0, 1, 0, '', '', ''),
  3650. (7201, 'Stickers', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_stickers', 'Crafts :: Cardmaking & Scrapbooking :: Stickers', '', 0, 1, 0, '', '', ''),
  3651. (7202, 'Storage/ Boxes', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_storage-boxes', 'Crafts :: Cardmaking & Scrapbooking :: Storage/ Boxes', '', 0, 1, 0, '', '', ''),
  3652. (7203, 'Tags', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_tags', 'Crafts :: Cardmaking & Scrapbooking :: Tags', '', 0, 1, 0, '', '', ''),
  3653. (7204, 'Templates, Stencils & Patterns', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_templates-stencils-patterns', 'Crafts :: Cardmaking & Scrapbooking :: Templates, Stencils & Patterns', '', 0, 1, 0, '', '', ''),
  3654. (7205, 'Tools & Scissors', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_tools-scissors', 'Crafts :: Cardmaking & Scrapbooking :: Tools & Scissors', '', 0, 1, 0, '', '', ''),
  3655. (7206, 'Toppers', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_toppers', 'Crafts :: Cardmaking & Scrapbooking :: Toppers', '', 0, 1, 0, '', '', ''),
  3656. (7207, 'Other Cardmaking', 7123, 0, NULL, 'crafts_cardmaking-scrapbooking_other-cardmaking', 'Crafts :: Cardmaking & Scrapbooking :: Other Cardmaking', '', 0, 1, 0, '', '', ''),
  3657. (7208, 'Clays', 7124, 0, NULL, 'crafts_ceramic-pottery-making_clays', 'Crafts :: Ceramic & Pottery Making :: Clays', '', 0, 1, 0, '', '', ''),
  3658. (7209, 'Decals', 7124, 0, NULL, 'crafts_ceramic-pottery-making_decals', 'Crafts :: Ceramic & Pottery Making :: Decals', '', 0, 1, 0, '', '', ''),
  3659. (7210, 'Glazes', 7124, 0, NULL, 'crafts_ceramic-pottery-making_glazes', 'Crafts :: Ceramic & Pottery Making :: Glazes', '', 0, 1, 0, '', '', ''),
  3660. (7211, 'Moulds', 7124, 0, NULL, 'crafts_ceramic-pottery-making_moulds', 'Crafts :: Ceramic & Pottery Making :: Moulds', '', 0, 1, 0, '', '', ''),
  3661. (7212, 'Tools', 7124, 0, NULL, 'crafts_ceramic-pottery-making_tools', 'Crafts :: Ceramic & Pottery Making :: Tools', '', 0, 1, 0, '', '', ''),
  3662. (7213, 'Beads', 7125, 0, NULL, 'crafts_childrens-crafts_beads', 'Crafts :: Children's Crafts :: Beads', '', 0, 1, 0, '', '', ''),
  3663. (7214, 'Crafts Sets/ Kits', 7125, 0, NULL, 'crafts_childrens-crafts_crafts-sets-kits', 'Crafts :: Children's Crafts :: Crafts Sets/ Kits', '', 0, 1, 0, '', '', ''),
  3664. (7215, 'Glitter', 7125, 0, NULL, 'crafts_childrens-crafts_glitter', 'Crafts :: Children's Crafts :: Glitter', '', 0, 1, 0, '', '', ''),
  3665. (7216, 'Paints', 7125, 0, NULL, 'crafts_childrens-crafts_paints', 'Crafts :: Children's Crafts :: Paints', '', 0, 1, 0, '', '', ''),
  3666. (7217, 'Stickers', 7125, 0, NULL, 'crafts_childrens-crafts_stickers', 'Crafts :: Children's Crafts :: Stickers', '', 0, 1, 0, '', '', ''),
  3667. (7218, 'Crochet Cotton', 7126, 0, NULL, 'crafts_crochet_crochet-cotton', 'Crafts :: Crochet :: Crochet Cotton', '', 0, 1, 0, '', '', ''),
  3668. (7219, 'Crochet Hooks', 7126, 0, NULL, 'crafts_crochet_crochet-hooks', 'Crafts :: Crochet :: Crochet Hooks', '', 0, 1, 0, '', '', ''),
  3669. (7220, 'Crochet Patterns', 7126, 0, NULL, 'crafts_crochet_crochet-patterns', 'Crafts :: Crochet :: Crochet Patterns', '', 0, 1, 0, '', '', ''),
  3670. (7221, 'Other Crochet', 7126, 0, NULL, 'crafts_crochet_other-crochet', 'Crafts :: Crochet :: Other Crochet', '', 0, 1, 0, '', '', ''),
  3671. (7222, 'Completed Cross Stitch', 7127, 0, NULL, 'crafts_cross-stitch_completed-cross-stitch', 'Crafts :: Cross Stitch :: Completed Cross Stitch', '', 0, 1, 0, '', '', ''),
  3672. (7223, 'Cross Stitch Charts', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-charts', 'Crafts :: Cross Stitch :: Cross Stitch Charts', '', 0, 1, 0, '', '', ''),
  3673. (7224, 'Cross Stitch Fabric', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-fabric', 'Crafts :: Cross Stitch :: Cross Stitch Fabric', '', 0, 1, 0, '', '', ''),
  3674. (7225, 'Cross Stitch Floss', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-floss', 'Crafts :: Cross Stitch :: Cross Stitch Floss', '', 0, 1, 0, '', '', ''),
  3675. (7226, 'Cross Stitch Frames', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-frames', 'Crafts :: Cross Stitch :: Cross Stitch Frames', '', 0, 1, 0, '', '', ''),
  3676. (7227, 'Cross Stitch Kits', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-kits', 'Crafts :: Cross Stitch :: Cross Stitch Kits', '', 0, 1, 0, '', '', ''),
  3677. (7228, 'Cross Stitch Patterns', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-patterns', 'Crafts :: Cross Stitch :: Cross Stitch Patterns', '', 0, 1, 0, '', '', ''),
  3678. (7229, 'Cross Stitch Publications', 7127, 0, NULL, 'crafts_cross-stitch_cross-stitch-publications', 'Crafts :: Cross Stitch :: Cross Stitch Publications', '', 0, 1, 0, '', '', ''),
  3679. (7230, 'Other Cross Stitch', 7127, 0, NULL, 'crafts_cross-stitch_other-cross-stitch', 'Crafts :: Cross Stitch :: Other Cross Stitch', '', 0, 1, 0, '', '', ''),
  3680. (7231, 'Design Cards', 7128, 0, NULL, 'crafts_embroidery_design-cards', 'Crafts :: Embroidery :: Design Cards', '', 0, 1, 0, '', '', ''),
  3681. (7232, 'Design CDs', 7128, 0, NULL, 'crafts_embroidery_design-cds', 'Crafts :: Embroidery :: Design CDs', '', 0, 1, 0, '', '', ''),
  3682. (7233, 'Embroidery Machines', 7128, 0, NULL, 'crafts_embroidery_embroidery-machines', 'Crafts :: Embroidery :: Embroidery Machines', '', 0, 1, 0, '', '', ''),
  3683. (7234, 'Embroidery Machine Thread', 7128, 0, NULL, 'crafts_embroidery_embroidery-machine-thread', 'Crafts :: Embroidery :: Embroidery Machine Thread', '', 0, 1, 0, '', '', ''),
  3684. (7235, 'Embroidery Ribbon', 7128, 0, NULL, 'crafts_embroidery_embroidery-ribbon', 'Crafts :: Embroidery :: Embroidery Ribbon', '', 0, 1, 0, '', '', ''),
  3685. (7236, 'Hoops/ Needle', 7128, 0, NULL, 'crafts_embroidery_hoops-needle', 'Crafts :: Embroidery :: Hoops/ Needle', '', 0, 1, 0, '', '', ''),
  3686. (7237, 'Kits', 7128, 0, NULL, 'crafts_embroidery_kits', 'Crafts :: Embroidery :: Kits', '', 0, 1, 0, '', '', ''),
  3687. (7238, 'Patterns', 7128, 0, NULL, 'crafts_embroidery_patterns', 'Crafts :: Embroidery :: Patterns', '', 0, 1, 0, '', '', ''),
  3688. (7239, 'Stabiliser', 7128, 0, NULL, 'crafts_embroidery_stabiliser', 'Crafts :: Embroidery :: Stabiliser', '', 0, 1, 0, '', '', ''),
  3689. (7240, 'Thread', 7128, 0, NULL, 'crafts_embroidery_thread', 'Crafts :: Embroidery :: Thread', '', 0, 1, 0, '', '', ''),
  3690. (7241, 'Other Embroidery', 7128, 0, NULL, 'crafts_embroidery_other-embroidery', 'Crafts :: Embroidery :: Other Embroidery', '', 0, 1, 0, '', '', ''),
  3691. (7242, '100% Cotton', 7129, 0, NULL, 'crafts_fabric_100-cotton', 'Crafts :: Fabric :: 100% Cotton', '', 0, 1, 0, '', '', ''),
  3692. (7243, 'Felt', 7129, 0, NULL, 'crafts_fabric_felt', 'Crafts :: Fabric :: Felt', '', 0, 1, 0, '', '', ''),
  3693. (7244, 'Polycotton', 7129, 0, NULL, 'crafts_fabric_polycotton', 'Crafts :: Fabric :: Polycotton', '', 0, 1, 0, '', '', ''),
  3694. (7245, 'Polyester', 7129, 0, NULL, 'crafts_fabric_polyester', 'Crafts :: Fabric :: Polyester', '', 0, 1, 0, '', '', ''),
  3695. (7246, 'Satin', 7129, 0, NULL, 'crafts_fabric_satin', 'Crafts :: Fabric :: Satin', '', 0, 1, 0, '', '', ''),
  3696. (7247, 'Other', 7129, 0, NULL, 'crafts_fabric_other', 'Crafts :: Fabric :: Other', '', 0, 1, 0, '', '', ''),
  3697. (7248, 'Artificial Grass', 7130, 0, NULL, 'crafts_floral-supplies_artificial-grass', 'Crafts :: Floral Supplies :: Artificial Grass', '', 0, 1, 0, '', '', ''),
  3698. (7249, 'Baskets', 7130, 0, NULL, 'crafts_floral-supplies_baskets', 'Crafts :: Floral Supplies :: Baskets', '', 0, 1, 0, '', '', ''),
  3699. (7250, 'Cellophane', 7130, 0, NULL, 'crafts_floral-supplies_cellophane', 'Crafts :: Floral Supplies :: Cellophane', '', 0, 1, 0, '', '', ''),
  3700. (7251, 'Decorative Additions', 7130, 0, NULL, 'crafts_floral-supplies_decorative-additions', 'Crafts :: Floral Supplies :: Decorative Additions', '', 0, 1, 0, '', '', ''),
  3701. (7252, 'Dried Fruit', 7130, 0, NULL, 'crafts_floral-supplies_dried-fruit', 'Crafts :: Floral Supplies :: Dried Fruit', '', 0, 1, 0, '', '', ''),
  3702. (7253, 'Flowers/ Petals', 7130, 0, NULL, 'crafts_floral-supplies_flowers-petals', 'Crafts :: Floral Supplies :: Flowers/ Petals', '', 0, 1, 0, '', '', ''),
  3703. (7254, 'Oasis', 7130, 0, NULL, 'crafts_floral-supplies_oasis', 'Crafts :: Floral Supplies :: Oasis', '', 0, 1, 0, '', '', ''),
  3704. (7255, 'Oasis Trays', 7130, 0, NULL, 'crafts_floral-supplies_oasis-trays', 'Crafts :: Floral Supplies :: Oasis Trays', '', 0, 1, 0, '', '', ''),
  3705. (7256, 'Ribbons', 7130, 0, NULL, 'crafts_floral-supplies_ribbons', 'Crafts :: Floral Supplies :: Ribbons', '', 0, 1, 0, '', '', ''),
  3706. (7257, 'Wire', 7130, 0, NULL, 'crafts_floral-supplies_wire', 'Crafts :: Floral Supplies :: Wire', '', 0, 1, 0, '', '', ''),
  3707. (7258, 'Wire Mesh', 7130, 0, NULL, 'crafts_floral-supplies_wire-mesh', 'Crafts :: Floral Supplies :: Wire Mesh', '', 0, 1, 0, '', '', ''),
  3708. (7259, 'Not specified', 7130, 0, NULL, 'crafts_floral-supplies_not-specified', 'Crafts :: Floral Supplies :: Not specified', '', 0, 1, 0, '', '', ''),
  3709. (7260, 'Acetate', 7132, 0, NULL, 'crafts_glass-art-supplies_acetate', 'Crafts :: Glass Art Supplies :: Acetate', '', 0, 1, 0, '', '', ''),
  3710. (7261, 'Cutters & Grinders', 7132, 0, NULL, 'crafts_glass-art-supplies_cutters-grinders', 'Crafts :: Glass Art Supplies :: Cutters & Grinders', '', 0, 1, 0, '', '', ''),
  3711. (7262, 'Dichroic Glass', 7132, 0, NULL, 'crafts_glass-art-supplies_dichroic-glass', 'Crafts :: Glass Art Supplies :: Dichroic Glass', '', 0, 1, 0, '', '', ''),
  3712. (7263, 'Enamelling Supplies', 7132, 0, NULL, 'crafts_glass-art-supplies_enamelling-supplies', 'Crafts :: Glass Art Supplies :: Enamelling Supplies', '', 0, 1, 0, '', '', ''),
  3713. (7264, 'Engraving Supplies', 7132, 0, NULL, 'crafts_glass-art-supplies_engraving-supplies', 'Crafts :: Glass Art Supplies :: Engraving Supplies', '', 0, 1, 0, '', '', ''),
  3714. (7265, 'Glass Nuggets/ Beads', 7132, 0, NULL, 'crafts_glass-art-supplies_glass-nuggets-beads', 'Crafts :: Glass Art Supplies :: Glass Nuggets/ Beads', '', 0, 1, 0, '', '', ''),
  3715. (7266, 'Glass Painting Supplies', 7132, 0, NULL, 'crafts_glass-art-supplies_glass-painting-supplies', 'Crafts :: Glass Art Supplies :: Glass Painting Supplies', '', 0, 1, 0, '', '', ''),
  3716. (7267, 'Kilns & Torches', 7132, 0, NULL, 'crafts_glass-art-supplies_kilns-torches', 'Crafts :: Glass Art Supplies :: Kilns & Torches', '', 0, 1, 0, '', '', ''),
  3717. (7268, 'Stained Glass Kits/ Supplies', 7132, 0, NULL, 'crafts_glass-art-supplies_stained-glass-kits-supplies', 'Crafts :: Glass Art Supplies :: Stained Glass Kits/ Supplies', '', 0, 1, 0, '', '', ''),
  3718. (7269, 'Stained Glass Offcuts', 7132, 0, NULL, 'crafts_glass-art-supplies_stained-glass-offcuts', 'Crafts :: Glass Art Supplies :: Stained Glass Offcuts', '', 0, 1, 0, '', '', ''),
  3719. (7270, 'Not specified', 7132, 0, NULL, 'crafts_glass-art-supplies_not-specified', 'Crafts :: Glass Art Supplies :: Not specified', '', 0, 1, 0, '', '', ''),
  3720. (7271, 'Machines', 7134, 0, NULL, 'crafts_knitting_machines', 'Crafts :: Knitting :: Machines', '', 0, 1, 0, '', '', ''),
  3721. (7272, 'Needles/ Accessories', 7134, 0, NULL, 'crafts_knitting_needles-accessories', 'Crafts :: Knitting :: Needles/ Accessories', '', 0, 1, 0, '', '', ''),
  3722. (7273, 'Patterns', 7134, 0, NULL, 'crafts_knitting_patterns', 'Crafts :: Knitting :: Patterns', '', 0, 1, 0, '', '', ''),
  3723. (7274, 'Wool & Yarn', 7134, 0, NULL, 'crafts_knitting_wool-yarn', 'Crafts :: Knitting :: Wool & Yarn', '', 0, 1, 0, '', '', ''),
  3724. (7275, 'Other Knitting', 7134, 0, NULL, 'crafts_knitting_other-knitting', 'Crafts :: Knitting :: Other Knitting', '', 0, 1, 0, '', '', ''),
  3725. (7276, 'Findings', 7135, 0, NULL, 'crafts_jewellery-making_findings', 'Crafts :: Jewellery Making :: Findings', '', 0, 1, 0, '', '', ''),
  3726. (7277, 'Chain', 7135, 0, NULL, 'crafts_jewellery-making_chain', 'Crafts :: Jewellery Making :: Chain', '', 0, 1, 0, '', '', ''),
  3727. (7278, 'Cabochons', 7135, 0, NULL, 'crafts_jewellery-making_cabochons', 'Crafts :: Jewellery Making :: Cabochons', '', 0, 1, 0, '', '', ''),
  3728. (7279, 'Charms', 7135, 0, NULL, 'crafts_jewellery-making_charms', 'Crafts :: Jewellery Making :: Charms', '', 0, 1, 0, '', '', ''),
  3729. (7280, 'Crystal Chips', 7135, 0, NULL, 'crafts_jewellery-making_crystal-chips', 'Crafts :: Jewellery Making :: Crystal Chips', '', 0, 1, 0, '', '', ''),
  3730. (7281, 'Pendants', 7135, 0, NULL, 'crafts_jewellery-making_pendants', 'Crafts :: Jewellery Making :: Pendants', '', 0, 1, 0, '', '', ''),
  3731. (7282, 'Watch Faces', 7135, 0, NULL, 'crafts_jewellery-making_watch-faces', 'Crafts :: Jewellery Making :: Watch Faces', '', 0, 1, 0, '', '', ''),
  3732. (7283, 'Kits', 7135, 0, NULL, 'crafts_jewellery-making_kits', 'Crafts :: Jewellery Making :: Kits', '', 0, 1, 0, '', '', ''),
  3733. (7284, 'Tools', 7135, 0, NULL, 'crafts_jewellery-making_tools', 'Crafts :: Jewellery Making :: Tools', '', 0, 1, 0, '', '', ''),
  3734. (7285, 'Books & Magazines', 7135, 0, NULL, 'crafts_jewellery-making_books-magazines', 'Crafts :: Jewellery Making :: Books & Magazines', '', 0, 1, 0, '', '', ''),
  3735. (7286, 'Other Jewellery Making', 7135, 0, NULL, 'crafts_jewellery-making_other-jewellery-making', 'Crafts :: Jewellery Making :: Other Jewellery Making', '', 0, 1, 0, '', '', ''),
  3736. (7287, 'Bobbins', 7136, 0, NULL, 'crafts_lacemaking_bobbins', 'Crafts :: Lacemaking :: Bobbins', '', 0, 1, 0, '', '', ''),
  3737. (7288, 'Patterns', 7136, 0, NULL, 'crafts_lacemaking_patterns', 'Crafts :: Lacemaking :: Patterns', '', 0, 1, 0, '', '', ''),
  3738. (7289, 'Kits', 7136, 0, NULL, 'crafts_lacemaking_kits', 'Crafts :: Lacemaking :: Kits', '', 0, 1, 0, '', '', ''),
  3739. (7290, 'Other Lacemaking', 7136, 0, NULL, 'crafts_lacemaking_other-lacemaking', 'Crafts :: Lacemaking :: Other Lacemaking', '', 0, 1, 0, '', '', ''),
  3740. (7291, 'Canvases', 7137, 0, NULL, 'crafts_latch-hook-rug-making_canvases', 'Crafts :: Latch-Hook/ Rug-Making :: Canvases', '', 0, 1, 0, '', '', ''),
  3741. (7292, 'Kits', 7137, 0, NULL, 'crafts_latch-hook-rug-making_kits', 'Crafts :: Latch-Hook/ Rug-Making :: Kits', '', 0, 1, 0, '', '', ''),
  3742. (7293, 'Material/ Wool', 7137, 0, NULL, 'crafts_latch-hook-rug-making_material-wool', 'Crafts :: Latch-Hook/ Rug-Making :: Material/ Wool', '', 0, 1, 0, '', '', ''),
  3743. (7294, 'Tools', 7137, 0, NULL, 'crafts_latch-hook-rug-making_tools', 'Crafts :: Latch-Hook/ Rug-Making :: Tools', '', 0, 1, 0, '', '', ''),
  3744. (7295, 'Not specified', 7137, 0, NULL, 'crafts_latch-hook-rug-making_not-specified', 'Crafts :: Latch-Hook/ Rug-Making :: Not specified', '', 0, 1, 0, '', '', ''),
  3745. (7296, 'Drawing Supplies', 7140, 0, NULL, 'crafts_painting-drawing-art_drawing-supplies', 'Crafts :: Painting, Drawing & Art :: Drawing Supplies', '', 0, 1, 0, '', '', ''),
  3746. (7297, 'Painting Supplies', 7140, 0, NULL, 'crafts_painting-drawing-art_painting-supplies', 'Crafts :: Painting, Drawing & Art :: Painting Supplies', '', 0, 1, 0, '', '', ''),
  3747. (7298, 'Other Art Supplies', 7140, 0, NULL, 'crafts_painting-drawing-art_other-art-supplies', 'Crafts :: Painting, Drawing & Art :: Other Art Supplies', '', 0, 1, 0, '', '', ''),
  3748. (7299, 'Embossing Supplies', 7143, 0, NULL, 'crafts_rubber-stamping_embossing-supplies', 'Crafts :: Rubber Stamping :: Embossing Supplies', '', 0, 1, 0, '', '', ''),
  3749. (7300, 'Ink & Pads', 7143, 0, NULL, 'crafts_rubber-stamping_ink-pads', 'Crafts :: Rubber Stamping :: Ink & Pads', '', 0, 1, 0, '', '', ''),
  3750. (7301, 'Paper/ Stationery', 7143, 0, NULL, 'crafts_rubber-stamping_paper-stationery', 'Crafts :: Rubber Stamping :: Paper/ Stationery', '', 0, 1, 0, '', '', ''),
  3751. (7302, 'Stamps', 7143, 0, NULL, 'crafts_rubber-stamping_stamps', 'Crafts :: Rubber Stamping :: Stamps', '', 0, 1, 0, '', '', ''),
  3752. (7303, 'Other Rubber Stamping', 7143, 0, NULL, 'crafts_rubber-stamping_other-rubber-stamping', 'Crafts :: Rubber Stamping :: Other Rubber Stamping', '', 0, 1, 0, '', '', ''),
  3753. (7304, 'Fastenings & Supplies', 7144, 0, NULL, 'crafts_sewing_fastenings-supplies', 'Crafts :: Sewing :: Fastenings & Supplies', '', 0, 1, 0, '', '', ''),
  3754. (7305, 'Patterns', 7144, 0, NULL, 'crafts_sewing_patterns', 'Crafts :: Sewing :: Patterns', '', 0, 1, 0, '', '', ''),
  3755. (7306, 'Ribbon & Ribboncraft', 7144, 0, NULL, 'crafts_sewing_ribbon-ribboncraft', 'Crafts :: Sewing :: Ribbon & Ribboncraft', '', 0, 1, 0, '', '', ''),
  3756. (7307, 'Sewing Machines', 7144, 0, NULL, 'crafts_sewing_sewing-machines', 'Crafts :: Sewing :: Sewing Machines', '', 0, 1, 0, '', '', ''),
  3757. (7308, 'Sewing Machine Accessories', 7144, 0, NULL, 'crafts_sewing_sewing-machine-accessories', 'Crafts :: Sewing :: Sewing Machine Accessories', '', 0, 1, 0, '', '', ''),
  3758. (7309, 'Timmings', 7144, 0, NULL, 'crafts_sewing_timmings', 'Crafts :: Sewing :: Timmings', '', 0, 1, 0, '', '', ''),
  3759. (7310, 'Other Sewing', 7144, 0, NULL, 'crafts_sewing_other-sewing', 'Crafts :: Sewing :: Other Sewing', '', 0, 1, 0, '', '', ''),
  3760. (7311, 'Canvas', 7145, 0, NULL, 'crafts_tapestry-needlepoint_canvas', 'Crafts :: Tapestry & Needlepoint :: Canvas', '', 0, 1, 0, '', '', ''),
  3761. (7312, 'Completed Needlepoint', 7145, 0, NULL, 'crafts_tapestry-needlepoint_completed-needlepoint', 'Crafts :: Tapestry & Needlepoint :: Completed Needlepoint', '', 0, 1, 0, '', '', ''),
  3762. (7313, 'Kits', 7145, 0, NULL, 'crafts_tapestry-needlepoint_kits', 'Crafts :: Tapestry & Needlepoint :: Kits', '', 0, 1, 0, '', '', ''),
  3763. (7314, 'Patterns', 7145, 0, NULL, 'crafts_tapestry-needlepoint_patterns', 'Crafts :: Tapestry & Needlepoint :: Patterns', '', 0, 1, 0, '', '', ''),
  3764. (7315, 'Other Tapestry & Needlepoint', 7145, 0, NULL, 'crafts_tapestry-needlepoint_other-tapestry-needlepoint', 'Crafts :: Tapestry & Needlepoint :: Other Tapestry & Needlepoint', '', 0, 1, 0, '', '', ''),
  3765. (7316, 'Basket Making', 7147, 0, NULL, 'crafts_other-crafts_basket-making', 'Crafts :: Other Crafts :: Basket Making', '', 0, 1, 0, '', '', ''),
  3766. (7317, 'Beekeeping', 7147, 0, NULL, 'crafts_other-crafts_beekeeping', 'Crafts :: Other Crafts :: Beekeeping', '', 0, 1, 0, '', '', ''),
  3767. (7318, 'Calligraphy', 7147, 0, NULL, 'crafts_other-crafts_calligraphy', 'Crafts :: Other Crafts :: Calligraphy', '', 0, 1, 0, '', '', ''),
  3768. (7319, 'Macrame', 7147, 0, NULL, 'crafts_other-crafts_macrame', 'Crafts :: Other Crafts :: Macrame', '', 0, 1, 0, '', '', ''),
  3769. (7320, 'Metalworking/ Metal Crafts', 7147, 0, NULL, 'crafts_other-crafts_metalworking-metal-crafts', 'Crafts :: Other Crafts :: Metalworking/ Metal Crafts', '', 0, 1, 0, '', '', ''),
  3770. (7321, 'Shellcraft', 7147, 0, NULL, 'crafts_other-crafts_shellcraft', 'Crafts :: Other Crafts :: Shellcraft', '', 0, 1, 0, '', '', ''),
  3771. (7322, 'Spinning', 7147, 0, NULL, 'crafts_other-crafts_spinning', 'Crafts :: Other Crafts :: Spinning', '', 0, 1, 0, '', '', ''),
  3772. (7323, 'Weaving', 7147, 0, NULL, 'crafts_other-crafts_weaving', 'Crafts :: Other Crafts :: Weaving', '', 0, 1, 0, '', '', ''),
  3773. (7324, 'Other Crafts', 7147, 0, NULL, 'crafts_other-crafts_other-crafts', 'Crafts :: Other Crafts :: Other Crafts', '', 0, 1, 0, '', '', ''),
  3774. (7325, 'iPads/Tablets & eBook Readers', 3687, 0, NULL, 'computers-tablets-networking_ipads-tablets-ebook-readers', 'Computers/Tablets & Networking :: iPads/Tablets & eBook Readers', '', 0, 1, 0, '', '', ''),
  3775. (7326, 'iPad/Tablet/eBook Accessories', 3687, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories', '', 0, 1, 0, '', '', ''),
  3776. (7327, 'Laptops & Netbooks', 3687, 0, NULL, 'computers-tablets-networking_laptops-netbooks', 'Computers/Tablets & Networking :: Laptops & Netbooks', '', 0, 1, 0, '', '', ''),
  3777. (7328, 'Desktops & All-in-Ones', 3687, 0, NULL, 'computers-tablets-networking_desktops-all-in-ones', 'Computers/Tablets & Networking :: Desktops & All-in-Ones', '', 0, 1, 0, '', '', ''),
  3778. (7329, 'Laptop & Desktop Accessories', 3687, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories', '', 0, 1, 0, '', '', ''),
  3779. (7330, 'Cables & Connectors', 3687, 0, NULL, 'computers-tablets-networking_cables-connectors', 'Computers/Tablets & Networking :: Cables & Connectors', '', 0, 1, 0, '', '', ''),
  3780. (7331, 'Computer Components & Parts', 3687, 0, NULL, 'computers-tablets-networking_computer-components-parts', 'Computers/Tablets & Networking :: Computer Components & Parts', '', 0, 1, 0, '', '', ''),
  3781. (7332, 'Drives, Storage & Blank Media', 3687, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media', '', 0, 1, 0, '', '', ''),
  3782. (7333, 'Enterprise Networking, Servers', 3687, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers', 'Computers/Tablets & Networking :: Enterprise Networking, Servers', '', 0, 1, 0, '', '', ''),
  3783. (7334, 'Home Networking & Connectivity', 3687, 0, NULL, 'computers-tablets-networking_home-networking-connectivity', 'Computers/Tablets & Networking :: Home Networking & Connectivity', '', 0, 1, 0, '', '', ''),
  3784. (7335, 'Keyboards, Mice & Pointing', 3687, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing', '', 0, 1, 0, '', '', ''),
  3785. (7336, 'Monitors, Projectors & Accs.', 3687, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs.', '', 0, 1, 0, '', '', ''),
  3786. (7337, 'Power Protection/Distribution', 3687, 0, NULL, 'computers-tablets-networking_power-protection-distribution', 'Computers/Tablets & Networking :: Power Protection/Distribution', '', 0, 1, 0, '', '', ''),
  3787. (7338, 'Printers, Scanners & Supplies', 3687, 0, NULL, 'computers-tablets-networking_printers-scanners-supplies', 'Computers/Tablets & Networking :: Printers, Scanners & Supplies', '', 0, 1, 0, '', '', ''),
  3788. (7339, 'Software', 3687, 0, NULL, 'computers-tablets-networking_software', 'Computers/Tablets & Networking :: Software', '', 0, 1, 0, '', '', ''),
  3789. (7340, 'Manuals & Resources', 3687, 0, NULL, 'computers-tablets-networking_manuals-resources', 'Computers/Tablets & Networking :: Manuals & Resources', '', 0, 1, 0, '', '', ''),
  3790. (7341, 'Vintage Computing', 3687, 0, NULL, 'computers-tablets-networking_vintage-computing', 'Computers/Tablets & Networking :: Vintage Computing', '', 0, 1, 0, '', '', ''),
  3791. (7342, 'Other Computing & Networking', 3687, 0, NULL, 'computers-tablets-networking_other-computing-networking', 'Computers/Tablets & Networking :: Other Computing & Networking', '', 0, 1, 0, '', '', ''),
  3792. (7343, 'Accessory Bundles', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_accessory-bundles', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Accessory Bundles', '', 0, 1, 0, '', '', ''),
  3793. (7344, 'A/V Cables & Adapters', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_a-v-cables-adapters', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: A/V Cables & Adapters', '', 0, 1, 0, '', '', ''),
  3794. (7345, 'Cases, Covers, Keyboard Folios', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_cases-covers-keyboard-folios', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Cases, Covers, Keyboard Folios', '', 0, 1, 0, '', '', ''),
  3795. (7346, 'Chargers & Sync Cables', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_chargers-sync-cables', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Chargers & Sync Cables', '', 0, 1, 0, '', '', ''),
  3796. (7347, 'Docking Stations/Keyboards', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_docking-stations-keyboards', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Docking Stations/Keyboards', '', 0, 1, 0, '', '', ''),
  3797. (7348, 'Memory Card & USB Adapters', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_memory-card-usb-adapters', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Memory Card & USB Adapters', '', 0, 1, 0, '', '', ''),
  3798. (7349, 'Mounts, Stands & Holders', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_mounts-stands-holders', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Mounts, Stands & Holders', '', 0, 1, 0, '', '', ''),
  3799. (7350, 'Reading Lights', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_reading-lights', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Reading Lights', '', 0, 1, 0, '', '', ''),
  3800. (7351, 'Screen Protectors', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_screen-protectors', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Screen Protectors', '', 0, 1, 0, '', '', ''),
  3801. (7352, 'Stickers & Decals', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_stickers-decals', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Stickers & Decals', '', 0, 1, 0, '', '', ''),
  3802. (7353, 'Styluses', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_styluses', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Styluses', '', 0, 1, 0, '', '', ''),
  3803. (7354, 'Other Tablet/eBook Accessories', 7326, 0, NULL, 'computers-tablets-networking_ipad-tablet-ebook-accessories_other-tablet-ebook-accessories', 'Computers/Tablets & Networking :: iPad/Tablet/eBook Accessories :: Other Tablet/eBook Accessories', '', 0, 1, 0, '', '', ''),
  3804. (7355, 'Acer', 7325, 0, NULL, 'computers-tablets-networking_ipads-tablets-ebook-readers_acer', 'Computers/Tablets & Networking :: iPads/Tablets & eBook Readers :: Acer', '', 0, 1, 0, '', '', ''),
  3805. (7356, 'Apple', 7325, 0, NULL, 'computers-tablets-networking_ipads-tablets-ebook-readers_apple', 'Computers/Tablets & Networking :: iPads/Tablets & eBook Readers :: Apple', '', 0, 1, 0, '', '', ''),
  3806. (7357, 'Samsung', 7325, 0, NULL, 'computers-tablets-networking_ipads-tablets-ebook-readers_samsung', 'Computers/Tablets & Networking :: iPads/Tablets & eBook Readers :: Samsung', '', 0, 1, 0, '', '', ''),
  3807. (7358, 'Sony', 7325, 0, NULL, 'computers-tablets-networking_ipads-tablets-ebook-readers_sony', 'Computers/Tablets & Networking :: iPads/Tablets & eBook Readers :: Sony', '', 0, 1, 0, '', '', ''),
  3808. (7359, 'Other', 7325, 0, NULL, 'computers-tablets-networking_ipads-tablets-ebook-readers_other', 'Computers/Tablets & Networking :: iPads/Tablets & eBook Readers :: Other', '', 0, 1, 0, '', '', ''),
  3809. (7360, 'Apple Laptops', 7327, 0, NULL, 'computers-tablets-networking_laptops-netbooks_apple-laptops', 'Computers/Tablets & Networking :: Laptops & Netbooks :: Apple Laptops', '', 0, 1, 0, '', '', ''),
  3810. (7361, 'PC Laptops & Netbooks', 7327, 0, NULL, 'computers-tablets-networking_laptops-netbooks_pc-laptops-netbooks', 'Computers/Tablets & Networking :: Laptops & Netbooks :: PC Laptops & Netbooks', '', 0, 1, 0, '', '', ''),
  3811. (7362, 'Apple Desktops & All-in-Ones', 7328, 0, NULL, 'computers-tablets-networking_desktops-all-in-ones_apple-desktops-all-in-ones', 'Computers/Tablets & Networking :: Desktops & All-in-Ones :: Apple Desktops & All-in-Ones', '', 0, 1, 0, '', '', ''),
  3812. (7363, 'PC Desktops & All-in-Ones', 7328, 0, NULL, 'computers-tablets-networking_desktops-all-in-ones_pc-desktops-all-in-ones', 'Computers/Tablets & Networking :: Desktops & All-in-Ones :: PC Desktops & All-in-Ones', '', 0, 1, 0, '', '', ''),
  3813. (7364, 'Anti-Theft Locks & Kits', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_anti-theft-locks-kits', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Anti-Theft Locks & Kits', '', 0, 1, 0, '', '', ''),
  3814. (7365, 'Case Mods, Stickers & Decals', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_case-mods-stickers-decals', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Case Mods, Stickers & Decals', '', 0, 1, 0, '', '', ''),
  3815. (7366, 'Cleaning Equipment & Kits', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_cleaning-equipment-kits', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Cleaning Equipment & Kits', '', 0, 1, 0, '', '', ''),
  3816. (7367, 'Hard Drive Pouches', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_hard-drive-pouches', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Hard Drive Pouches', '', 0, 1, 0, '', '', ''),
  3817. (7368, 'Headsets', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_headsets', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Headsets', '', 0, 1, 0, '', '', ''),
  3818. (7369, 'Keyboard Protectors', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_keyboard-protectors', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Keyboard Protectors', '', 0, 1, 0, '', '', ''),
  3819. (7370, 'Laptop Add-On Cards', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_laptop-add-on-cards', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Laptop Add-On Cards', '', 0, 1, 0, '', '', ''),
  3820. (7371, 'Laptop Batteries', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_laptop-batteries', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Laptop Batteries', '', 0, 1, 0, '', '', ''),
  3821. (7372, 'Laptop Cases & Bags', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_laptop-cases-bags', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Laptop Cases & Bags', '', 0, 1, 0, '', '', ''),
  3822. (7373, 'Laptop Cooling Pads', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_laptop-cooling-pads', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Laptop Cooling Pads', '', 0, 1, 0, '', '', ''),
  3823. (7374, 'Laptop Docking Stations', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_laptop-docking-stations', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Laptop Docking Stations', '', 0, 1, 0, '', '', ''),
  3824. (7375, 'Laptop Power Adapters/Chargers', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_laptop-power-adapters-chargers', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Laptop Power Adapters/Chargers', '', 0, 1, 0, '', '', ''),
  3825. (7376, 'Memory Card Readers & Adapters', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_memory-card-readers-adapters', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Memory Card Readers & Adapters', '', 0, 1, 0, '', '', ''),
  3826. (7377, 'Microphones', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_microphones', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Microphones', '', 0, 1, 0, '', '', ''),
  3827. (7378, 'Mouse Mats & Wrist Rests', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_mouse-mats-wrist-rests', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Mouse Mats & Wrist Rests', '', 0, 1, 0, '', '', ''),
  3828. (7379, 'Privacy Filters', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_privacy-filters', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Privacy Filters', '', 0, 1, 0, '', '', ''),
  3829. (7380, 'Screen Protectors', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_screen-protectors', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Screen Protectors', '', 0, 1, 0, '', '', ''),
  3830. (7381, 'Sound Cards (External)', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_sound-cards-external', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Sound Cards (External)', '', 0, 1, 0, '', '', ''),
  3831. (7382, 'Speakers', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_speakers', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Speakers', '', 0, 1, 0, '', '', ''),
  3832. (7383, 'Stands, Holders & Car Mounts', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_stands-holders-car-mounts', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Stands, Holders & Car Mounts', '', 0, 1, 0, '', '', ''),
  3833. (7384, 'TV Tuner/Video Capture Devices', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_tv-tuner-video-capture-devices', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: TV Tuner/Video Capture Devices', '', 0, 1, 0, '', '', ''),
  3834. (7385, 'USB Lights & Gadgets', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_usb-lights-gadgets', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: USB Lights & Gadgets', '', 0, 1, 0, '', '', ''),
  3835. (7386, 'Webcams', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_webcams', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Webcams', '', 0, 1, 0, '', '', ''),
  3836. (7387, 'Other Accessories', 7329, 0, NULL, 'computers-tablets-networking_laptop-desktop-accessories_other-accessories', 'Computers/Tablets & Networking :: Laptop & Desktop Accessories :: Other Accessories', '', 0, 1, 0, '', '', ''),
  3837. (7388, 'Audio Cables & Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_audio-cables-adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: Audio Cables & Adapters', '', 0, 1, 0, '', '', ''),
  3838. (7389, 'Cable Testers', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_cable-testers', 'Computers/Tablets & Networking :: Cables & Connectors :: Cable Testers', '', 0, 1, 0, '', '', ''),
  3839. (7390, 'Cabling Tools', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_cabling-tools', 'Computers/Tablets & Networking :: Cables & Connectors :: Cabling Tools', '', 0, 1, 0, '', '', ''),
  3840. (7391, 'Cable Ties & Organisers', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_cable-ties-organisers', 'Computers/Tablets & Networking :: Cables & Connectors :: Cable Ties & Organisers', '', 0, 1, 0, '', '', ''),
  3841. (7392, 'Drive Cables & Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_drive-cables-adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: Drive Cables & Adapters', '', 0, 1, 0, '', '', ''),
  3842. (7393, 'FireWire Cables & Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_firewire-cables-adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: FireWire Cables & Adapters', '', 0, 1, 0, '', '', ''),
  3843. (7394, 'KVM Switches & KVM Cables', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_kvm-switches-kvm-cables', 'Computers/Tablets & Networking :: Cables & Connectors :: KVM Switches & KVM Cables', '', 0, 1, 0, '', '', ''),
  3844. (7395, 'Monitor/AV Cables & Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_monitor-av-cables-adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: Monitor/AV Cables & Adapters', '', 0, 1, 0, '', '', ''),
  3845. (7396, 'Networking Cables & Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_networking-cables-adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: Networking Cables & Adapters', '', 0, 1, 0, '', '', ''),
  3846. (7397, 'Parallel, Serial & PS/2', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_parallel-serial-ps-2', 'Computers/Tablets & Networking :: Cables & Connectors :: Parallel, Serial & PS/2', '', 0, 1, 0, '', '', ''),
  3847. (7398, 'Power Cables & Connectors', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_power-cables-connectors', 'Computers/Tablets & Networking :: Cables & Connectors :: Power Cables & Connectors', '', 0, 1, 0, '', '', ''),
  3848. (7399, 'USB Cables, Hubs & Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_usb-cables-hubs-adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: USB Cables, Hubs & Adapters', '', 0, 1, 0, '', '', ''),
  3849. (7400, 'Adapters', 7330, 0, NULL, 'computers-tablets-networking_cables-connectors_adapters', 'Computers/Tablets & Networking :: Cables & Connectors :: Adapters', '', 0, 1, 0, '', '', ''),
  3850. (7401, 'Computer Cases & Accessories', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_computer-cases-accessories', 'Computers/Tablets & Networking :: Computer Components & Parts :: Computer Cases & Accessories', '', 0, 1, 0, '', '', ''),
  3851. (7402, 'CPUs/Processors', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_cpus-processors', 'Computers/Tablets & Networking :: Computer Components & Parts :: CPUs/Processors', '', 0, 1, 0, '', '', ''),
  3852. (7403, 'Fans, Heatsinks & Cooling', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_fans-heatsinks-cooling', 'Computers/Tablets & Networking :: Computer Components & Parts :: Fans, Heatsinks & Cooling', '', 0, 1, 0, '', '', ''),
  3853. (7404, 'Graphics/Video Cards', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_graphics-video-cards', 'Computers/Tablets & Networking :: Computer Components & Parts :: Graphics/Video Cards', '', 0, 1, 0, '', '', ''),
  3854. (7405, 'Interface/Add-On Cards', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_interface-add-on-cards', 'Computers/Tablets & Networking :: Computer Components & Parts :: Interface/Add-On Cards', '', 0, 1, 0, '', '', ''),
  3855. (7406, 'Laptop Replacement Parts', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_laptop-replacement-parts', 'Computers/Tablets & Networking :: Computer Components & Parts :: Laptop Replacement Parts', '', 0, 1, 0, '', '', ''),
  3856. (7407, 'Memory (RAM)', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_memory-ram', 'Computers/Tablets & Networking :: Computer Components & Parts :: Memory (RAM)', '', 0, 1, 0, '', '', ''),
  3857. (7408, 'Motherboards', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_motherboards', 'Computers/Tablets & Networking :: Computer Components & Parts :: Motherboards', '', 0, 1, 0, '', '', ''),
  3858. (7409, 'Motherboard & CPU Combos', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_motherboard-cpu-combos', 'Computers/Tablets & Networking :: Computer Components & Parts :: Motherboard & CPU Combos', '', 0, 1, 0, '', '', ''),
  3859. (7410, 'Motherboard Components & Accs.', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_motherboard-components-accs', 'Computers/Tablets & Networking :: Computer Components & Parts :: Motherboard Components & Accs.', '', 0, 1, 0, '', '', ''),
  3860. (7411, 'Power Supplies', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_power-supplies', 'Computers/Tablets & Networking :: Computer Components & Parts :: Power Supplies', '', 0, 1, 0, '', '', ''),
  3861. (7412, 'Sound Cards (Internal)', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_sound-cards-internal', 'Computers/Tablets & Networking :: Computer Components & Parts :: Sound Cards (Internal)', '', 0, 1, 0, '', '', ''),
  3862. (7413, 'Video Capture & TV Tuner Cards', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_video-capture-tv-tuner-cards', 'Computers/Tablets & Networking :: Computer Components & Parts :: Video Capture & TV Tuner Cards', '', 0, 1, 0, '', '', ''),
  3863. (7414, 'Other Components & Parts', 7331, 0, NULL, 'computers-tablets-networking_computer-components-parts_other-components-parts', 'Computers/Tablets & Networking :: Computer Components & Parts :: Other Components & Parts', '', 0, 1, 0, '', '', ''),
  3864. (7415, 'Blank Media & Accessories', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_blank-media-accessories', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Blank Media & Accessories', '', 0, 1, 0, '', '', ''),
  3865. (7416, 'CD, DVD & Blu-ray Drives', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_cd-dvd-blu-ray-drives', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: CD, DVD & Blu-ray Drives', '', 0, 1, 0, '', '', ''),
  3866. (7417, 'Drive Bay Caddies', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_drive-bay-caddies', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Drive Bay Caddies', '', 0, 1, 0, '', '', ''),
  3867. (7418, 'Drive Enclosures & Docks', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_drive-enclosures-docks', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Drive Enclosures & Docks', '', 0, 1, 0, '', '', ''),
  3868. (7419, 'Floppy, Zip & Jaz Drives', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_floppy-zip-jaz-drives', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Floppy, Zip & Jaz Drives', '', 0, 1, 0, '', '', ''),
  3869. (7420, 'Hard Drives (HDD, SSD & NAS)', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_hard-drives-hdd-ssd-nas', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Hard Drives (HDD, SSD & NAS)', '', 0, 1, 0, '', '', ''),
  3870. (7421, 'Tape & Data Cartridge Drives', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_tape-data-cartridge-drives', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Tape & Data Cartridge Drives', '', 0, 1, 0, '', '', ''),
  3871. (7422, 'USB Flash Drives', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_usb-flash-drives', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: USB Flash Drives', '', 0, 1, 0, '', '', ''),
  3872. (7423, 'Other Drives & Storage', 7332, 0, NULL, 'computers-tablets-networking_drives-storage-blank-media_other-drives-storage', 'Computers/Tablets & Networking :: Drives, Storage & Blank Media :: Other Drives & Storage', '', 0, 1, 0, '', '', ''),
  3873. (7424, 'Directional Antennas', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_directional-antennas', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Directional Antennas', '', 0, 1, 0, '', '', ''),
  3874. (7425, 'Enterprise Routers', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_enterprise-routers', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Enterprise Routers', '', 0, 1, 0, '', '', ''),
  3875. (7426, 'Enterprise Router Components', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_enterprise-router-components', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Enterprise Router Components', '', 0, 1, 0, '', '', ''),
  3876. (7427, 'Firewall & VPN Devices', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_firewall-vpn-devices', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Firewall & VPN Devices', '', 0, 1, 0, '', '', ''),
  3877. (7428, 'Load Balancers', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_load-balancers', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Load Balancers', '', 0, 1, 0, '', '', ''),
  3878. (7429, 'Network Storage Disk Arrays', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_network-storage-disk-arrays', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Network Storage Disk Arrays', '', 0, 1, 0, '', '', ''),
  3879. (7430, 'Racks, Chassis & Patch Panels', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_racks-chassis-patch-panels', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Racks, Chassis & Patch Panels', '', 0, 1, 0, '', '', ''),
  3880. (7431, 'Servers, Clients & Terminals', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_servers-clients-terminals', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Servers, Clients & Terminals', '', 0, 1, 0, '', '', ''),
  3881. (7432, 'Server Components', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_server-components', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Server Components', '', 0, 1, 0, '', '', ''),
  3882. (7433, 'Switches & Hubs', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_switches-hubs', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Switches & Hubs', '', 0, 1, 0, '', '', ''),
  3883. (7434, 'VoIP Business Phones/IP PBX', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_voip-business-phones-ip-pbx', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: VoIP Business Phones/IP PBX', '', 0, 1, 0, '', '', ''),
  3884. (7435, 'Other Enterprise Networking', 7333, 0, NULL, 'computers-tablets-networking_enterprise-networking-servers_other-enterprise-networking', 'Computers/Tablets & Networking :: Enterprise Networking, Servers :: Other Enterprise Networking', '', 0, 1, 0, '', '', ''),
  3885. (7436, 'Boosters, Extenders & Antennas', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_boosters-extenders-antennas', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Boosters, Extenders & Antennas', '', 0, 1, 0, '', '', ''),
  3886. (7437, 'Mobile Broadband Devices', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_mobile-broadband-devices', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Mobile Broadband Devices', '', 0, 1, 0, '', '', ''),
  3887. (7438, 'Modems', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_modems', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Modems', '', 0, 1, 0, '', '', ''),
  3888. (7439, 'Modem-Router Combos', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_modem-router-combos', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Modem-Router Combos', '', 0, 1, 0, '', '', ''),
  3889. (7440, 'Powerline Networking', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_powerline-networking', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Powerline Networking', '', 0, 1, 0, '', '', ''),
  3890. (7441, 'USB Bluetooth Adapters/Dongles', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_usb-bluetooth-adapters-dongles', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: USB Bluetooth Adapters/Dongles', '', 0, 1, 0, '', '', ''),
  3891. (7442, 'USB Wi-Fi Adapters/Dongles', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_usb-wi-fi-adapters-dongles', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: USB Wi-Fi Adapters/Dongles', '', 0, 1, 0, '', '', ''),
  3892. (7443, 'VoIP Home Phones', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_voip-home-phones', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: VoIP Home Phones', '', 0, 1, 0, '', '', ''),
  3893. (7444, 'VoIP Phone Adapters', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_voip-phone-adapters', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: VoIP Phone Adapters', '', 0, 1, 0, '', '', ''),
  3894. (7445, 'Wired Routers', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_wired-routers', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Wired Routers', '', 0, 1, 0, '', '', ''),
  3895. (7446, 'Wireless Access Points', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_wireless-access-points', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Wireless Access Points', '', 0, 1, 0, '', '', ''),
  3896. (7447, 'Wireless Routers', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_wireless-routers', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Wireless Routers', '', 0, 1, 0, '', '', ''),
  3897. (7448, 'Other Home Networking', 7334, 0, NULL, 'computers-tablets-networking_home-networking-connectivity_other-home-networking', 'Computers/Tablets & Networking :: Home Networking & Connectivity :: Other Home Networking', '', 0, 1, 0, '', '', ''),
  3898. (7449, 'Graphics Tablets/Boards & Pens', 7335, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing_graphics-tablets-boards-pens', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing :: Graphics Tablets/Boards & Pens', '', 0, 1, 0, '', '', ''),
  3899. (7450, 'Keyboards & Keypads', 7335, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing_keyboards-keypads', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing :: Keyboards & Keypads', '', 0, 1, 0, '', '', ''),
  3900. (7451, 'Mice, Trackballs & Touchpads', 7335, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing_mice-trackballs-touchpads', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing :: Mice, Trackballs & Touchpads', '', 0, 1, 0, '', '', ''),
  3901. (7452, 'Keyboard & Mouse Bundles', 7335, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing_keyboard-mouse-bundles', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing :: Keyboard & Mouse Bundles', '', 0, 1, 0, '', '', ''),
  3902. (7453, 'Remote Controls & Pointers', 7335, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing_remote-controls-pointers', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing :: Remote Controls & Pointers', '', 0, 1, 0, '', '', ''),
  3903. (7454, 'Other Keyboards/Mice/Pointing', 7335, 0, NULL, 'computers-tablets-networking_keyboards-mice-pointing_other-keyboards-mice-pointing', 'Computers/Tablets & Networking :: Keyboards, Mice & Pointing :: Other Keyboards/Mice/Pointing', '', 0, 1, 0, '', '', ''),
  3904. (7455, 'Monitors', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_monitors', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Monitors', '', 0, 1, 0, '', '', ''),
  3905. (7456, 'Projectors', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_projectors', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Projectors', '', 0, 1, 0, '', '', ''),
  3906. (7457, 'Monitor Mounts & Stands', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_monitor-mounts-stands', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Monitor Mounts & Stands', '', 0, 1, 0, '', '', ''),
  3907. (7458, 'Monitor Power Supplies', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_monitor-power-supplies', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Monitor Power Supplies', '', 0, 1, 0, '', '', ''),
  3908. (7459, 'Monitor Replacement Parts', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_monitor-replacement-parts', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Monitor Replacement Parts', '', 0, 1, 0, '', '', ''),
  3909. (7460, 'Projector Parts & Accessories', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_projector-parts-accessories', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Projector Parts & Accessories', '', 0, 1, 0, '', '', ''),
  3910. (7461, 'Other Monitor/Projector Accs.', 7336, 0, NULL, 'computers-tablets-networking_monitors-projectors-accs_other-monitor-projector-accs', 'Computers/Tablets & Networking :: Monitors, Projectors & Accs. :: Other Monitor/Projector Accs.', '', 0, 1, 0, '', '', ''),
  3911. (7462, 'Power Distribution Units', 7337, 0, NULL, 'computers-tablets-networking_power-protection-distribution_power-distribution-units', 'Computers/Tablets & Networking :: Power Protection/Distribution :: Power Distribution Units', '', 0, 1, 0, '', '', ''),
  3912. (7463, 'Power Inverters', 7337, 0, NULL, 'computers-tablets-networking_power-protection-distribution_power-inverters', 'Computers/Tablets & Networking :: Power Protection/Distribution :: Power Inverters', '', 0, 1, 0, '', '', ''),
  3913. (7464, 'Surge Protectors, Power Strips', 7337, 0, NULL, 'computers-tablets-networking_power-protection-distribution_surge-protectors-power-strips', 'Computers/Tablets & Networking :: Power Protection/Distribution :: Surge Protectors, Power Strips', '', 0, 1, 0, '', '', ''),
  3914. (7465, 'Uninterruptible Power Supplies', 7337, 0, NULL, 'computers-tablets-networking_power-protection-distribution_uninterruptible-power-supplies', 'Computers/Tablets & Networking :: Power Protection/Distribution :: Uninterruptible Power Supplies', '', 0, 1, 0, '', '', ''),
  3915. (7466, 'UPS Batteries & Components', 7337, 0, NULL, 'computers-tablets-networking_power-protection-distribution_ups-batteries-components', 'Computers/Tablets & Networking :: Power Protection/Distribution :: UPS Batteries & Components', '', 0, 1, 0, '', '', ''),
  3916. (7467, 'Other Power Protection', 7337, 0, NULL, 'computers-tablets-networking_power-protection-distribution_other-power-protection', 'Computers/Tablets & Networking :: Power Protection/Distribution :: Other Power Protection', '', 0, 1, 0, '', '', ''),
  3917. (7468, 'Antivirus & Security', 7339, 0, NULL, 'computers-tablets-networking_software_antivirus-security', 'Computers/Tablets & Networking :: Software :: Antivirus & Security', '', 0, 1, 0, '', '', ''),
  3918. (7469, 'Education, Language, Reference', 7339, 0, NULL, 'computers-tablets-networking_software_education-language-reference', 'Computers/Tablets & Networking :: Software :: Education, Language, Reference', '', 0, 1, 0, '', '', ''),
  3919. (7470, 'Hobbies & Leisure', 7339, 0, NULL, 'computers-tablets-networking_software_hobbies-leisure', 'Computers/Tablets & Networking :: Software :: Hobbies & Leisure', '', 0, 1, 0, '', '', ''),
  3920. (7471, 'Image, Video & Audio', 7339, 0, NULL, 'computers-tablets-networking_software_image-video-audio', 'Computers/Tablets & Networking :: Software :: Image, Video & Audio', '', 0, 1, 0, '', '', ''),
  3921. (7472, 'Office & Business', 7339, 0, NULL, 'computers-tablets-networking_software_office-business', 'Computers/Tablets & Networking :: Software :: Office & Business', '', 0, 1, 0, '', '', ''),
  3922. (7473, 'Operating Systems', 7339, 0, NULL, 'computers-tablets-networking_software_operating-systems', 'Computers/Tablets & Networking :: Software :: Operating Systems', '', 0, 1, 0, '', '', ''),
  3923. (7474, 'Personal Finance, Tax & Legal', 7339, 0, NULL, 'computers-tablets-networking_software_personal-finance-tax-legal', 'Computers/Tablets & Networking :: Software :: Personal Finance, Tax & Legal', '', 0, 1, 0, '', '', ''),
  3924. (7475, 'Servers, Development & DBMS', 7339, 0, NULL, 'computers-tablets-networking_software_servers-development-dbms', 'Computers/Tablets & Networking :: Software :: Servers, Development & DBMS', '', 0, 1, 0, '', '', ''),
  3925. (7476, 'Utilities, Tools & Drivers', 7339, 0, NULL, 'computers-tablets-networking_software_utilities-tools-drivers', 'Computers/Tablets & Networking :: Software :: Utilities, Tools & Drivers', '', 0, 1, 0, '', '', ''),
  3926. (7477, 'Web & Desktop Publishing', 7339, 0, NULL, 'computers-tablets-networking_software_web-desktop-publishing', 'Computers/Tablets & Networking :: Software :: Web & Desktop Publishing', '', 0, 1, 0, '', '', ''),
  3927. (7478, 'Other Software', 7339, 0, NULL, 'computers-tablets-networking_software_other-software', 'Computers/Tablets & Networking :: Software :: Other Software', '', 0, 1, 0, '', '', ''),
  3928. (7479, 'Vintage Computers', 7341, 0, NULL, 'computers-tablets-networking_vintage-computing_vintage-computers', 'Computers/Tablets & Networking :: Vintage Computing :: Vintage Computers', '', 0, 1, 0, '', '', ''),
  3929. (7480, 'Vintage Parts & Accessories', 7341, 0, NULL, 'computers-tablets-networking_vintage-computing_vintage-parts-accessories', 'Computers/Tablets & Networking :: Vintage Computing :: Vintage Parts & Accessories', '', 0, 1, 0, '', '', ''),
  3930. (7481, 'Vintage Manuals & Merchandise', 7341, 0, NULL, 'computers-tablets-networking_vintage-computing_vintage-manuals-merchandise', 'Computers/Tablets & Networking :: Vintage Computing :: Vintage Manuals & Merchandise', '', 0, 1, 0, '', '', ''),
  3931. (7482, 'Other Vintage Computing', 7341, 0, NULL, 'computers-tablets-networking_vintage-computing_other-vintage-computing', 'Computers/Tablets & Networking :: Vintage Computing :: Other Vintage Computing', '', 0, 1, 0, '', '', ''),
  3932. (7483, 'DVDs & Blu-rays', 3690, 0, NULL, 'dvds-films-tv_dvds-blu-rays', 'DVDs, Films & TV :: DVDs & Blu-rays', '', 0, 1, 0, '', '', ''),
  3933. (7484, 'Film Stock', 3690, 0, NULL, 'dvds-films-tv_film-stock', 'DVDs, Films & TV :: Film Stock', '', 0, 1, 0, '', '', ''),
  3934. (7485, 'LaserDiscs', 3690, 0, NULL, 'dvds-films-tv_laserdiscs', 'DVDs, Films & TV :: LaserDiscs', '', 0, 1, 0, '', '', ''),
  3935. (7486, 'UMDs', 3690, 0, NULL, 'dvds-films-tv_umds', 'DVDs, Films & TV :: UMDs', '', 0, 1, 0, '', '', ''),
  3936. (7487, 'VHS Tapes', 3690, 0, NULL, 'dvds-films-tv_vhs-tapes', 'DVDs, Films & TV :: VHS Tapes', '', 0, 1, 0, '', '', ''),
  3937. (7488, 'Other Formats', 3690, 0, NULL, 'dvds-films-tv_other-formats', 'DVDs, Films & TV :: Other Formats', '', 0, 1, 0, '', '', ''),
  3938. (7489, 'Storage & Media Accessories', 3690, 0, NULL, 'dvds-films-tv_storage-media-accessories', 'DVDs, Films & TV :: Storage & Media Accessories', '', 0, 1, 0, '', '', ''),
  3939. (7490, 'Film Memorabilia', 3690, 0, NULL, 'dvds-films-tv_film-memorabilia', 'DVDs, Films & TV :: Film Memorabilia', '', 0, 1, 0, '', '', ''),
  3940. (7491, 'TV Memorabilia', 3690, 0, NULL, 'dvds-films-tv_tv-memorabilia', 'DVDs, Films & TV :: TV Memorabilia', '', 0, 1, 0, '', '', ''),
  3941. (7492, 'Action & Adventure', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_action-adventure', 'DVDs, Films & TV :: DVDs & Blu-rays :: Action & Adventure', '', 0, 1, 0, '', '', ''),
  3942. (7493, 'Animation & Anime', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_animation-anime', 'DVDs, Films & TV :: DVDs & Blu-rays :: Animation & Anime', '', 0, 1, 0, '', '', ''),
  3943. (7494, 'Children's & Family', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_childrens-family', 'DVDs, Films & TV :: DVDs & Blu-rays :: Children's & Family', '', 0, 1, 0, '', '', ''),
  3944. (7495, 'Comedy', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_comedy', 'DVDs, Films & TV :: DVDs & Blu-rays :: Comedy', '', 0, 1, 0, '', '', ''),
  3945. (7496, 'Documentary', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_documentary', 'DVDs, Films & TV :: DVDs & Blu-rays :: Documentary', '', 0, 1, 0, '', '', ''),
  3946. (7497, 'Drama', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_drama', 'DVDs, Films & TV :: DVDs & Blu-rays :: Drama', '', 0, 1, 0, '', '', ''),
  3947. (7498, 'Educational', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_educational', 'DVDs, Films & TV :: DVDs & Blu-rays :: Educational', '', 0, 1, 0, '', '', ''),
  3948. (7499, 'Exercise & Fitness', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_exercise-fitness', 'DVDs, Films & TV :: DVDs & Blu-rays :: Exercise & Fitness', '', 0, 1, 0, '', '', ''),
  3949. (7500, 'Horror', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_horror', 'DVDs, Films & TV :: DVDs & Blu-rays :: Horror', '', 0, 1, 0, '', '', ''),
  3950. (7501, 'Music & Concerts', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_music-concerts', 'DVDs, Films & TV :: DVDs & Blu-rays :: Music & Concerts', '', 0, 1, 0, '', '', ''),
  3951. (7502, 'Musicals & Broadway', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_musicals-broadway', 'DVDs, Films & TV :: DVDs & Blu-rays :: Musicals & Broadway', '', 0, 1, 0, '', '', ''),
  3952. (7503, 'Romance', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_romance', 'DVDs, Films & TV :: DVDs & Blu-rays :: Romance', '', 0, 1, 0, '', '', ''),
  3953. (7504, 'Sci-Fi & Fantasy', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_sci-fi-fantasy', 'DVDs, Films & TV :: DVDs & Blu-rays :: Sci-Fi & Fantasy', '', 0, 1, 0, '', '', ''),
  3954. (7505, 'Sports', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_sports', 'DVDs, Films & TV :: DVDs & Blu-rays :: Sports', '', 0, 1, 0, '', '', ''),
  3955. (7506, 'Thriller & Mystery', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_thriller-mystery', 'DVDs, Films & TV :: DVDs & Blu-rays :: Thriller & Mystery', '', 0, 1, 0, '', '', ''),
  3956. (7507, 'TV Shows', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_tv-shows', 'DVDs, Films & TV :: DVDs & Blu-rays :: TV Shows', '', 0, 1, 0, '', '', ''),
  3957. (7508, 'Westerns', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_westerns', 'DVDs, Films & TV :: DVDs & Blu-rays :: Westerns', '', 0, 1, 0, '', '', ''),
  3958. (7509, 'World Cinema', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_world-cinema', 'DVDs, Films & TV :: DVDs & Blu-rays :: World Cinema', '', 0, 1, 0, '', '', ''),
  3959. (7510, 'Not specified', 7483, 0, NULL, 'dvds-films-tv_dvds-blu-rays_not-specified', 'DVDs, Films & TV :: DVDs & Blu-rays :: Not specified', '', 0, 1, 0, '', '', ''),
  3960. (7511, '8mm', 7484, 0, NULL, 'dvds-films-tv_film-stock_8mm', 'DVDs, Films & TV :: Film Stock :: 8mm', '', 0, 1, 0, '', '', ''),
  3961. (7512, 'Super 8', 7484, 0, NULL, 'dvds-films-tv_film-stock_super-8', 'DVDs, Films & TV :: Film Stock :: Super 8', '', 0, 1, 0, '', '', ''),
  3962. (7513, '9.5mm', 7484, 0, NULL, 'dvds-films-tv_film-stock_95mm', 'DVDs, Films & TV :: Film Stock :: 9.5mm', '', 0, 1, 0, '', '', ''),
  3963. (7514, '16mm', 7484, 0, NULL, 'dvds-films-tv_film-stock_16mm', 'DVDs, Films & TV :: Film Stock :: 16mm', '', 0, 1, 0, '', '', ''),
  3964. (7515, '35mm', 7484, 0, NULL, 'dvds-films-tv_film-stock_35mm', 'DVDs, Films & TV :: Film Stock :: 35mm', '', 0, 1, 0, '', '', ''),
  3965. (7516, 'Not specified', 7484, 0, NULL, 'dvds-films-tv_film-stock_not-specified', 'DVDs, Films & TV :: Film Stock :: Not specified', '', 0, 1, 0, '', '', ''),
  3966. (7517, 'Action & Adventure', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_action-adventure', 'DVDs, Films & TV :: LaserDiscs :: Action & Adventure', '', 0, 1, 0, '', '', ''),
  3967. (7518, 'Animation & Anime', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_animation-anime', 'DVDs, Films & TV :: LaserDiscs :: Animation & Anime', '', 0, 1, 0, '', '', ''),
  3968. (7519, 'Children's & Family', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_childrens-family', 'DVDs, Films & TV :: LaserDiscs :: Children's & Family', '', 0, 1, 0, '', '', ''),
  3969. (7520, 'Comedy', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_comedy', 'DVDs, Films & TV :: LaserDiscs :: Comedy', '', 0, 1, 0, '', '', ''),
  3970. (7521, 'Drama', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_drama', 'DVDs, Films & TV :: LaserDiscs :: Drama', '', 0, 1, 0, '', '', ''),
  3971. (7522, 'Documentary', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_documentary', 'DVDs, Films & TV :: LaserDiscs :: Documentary', '', 0, 1, 0, '', '', ''),
  3972. (7523, 'Educational', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_educational', 'DVDs, Films & TV :: LaserDiscs :: Educational', '', 0, 1, 0, '', '', ''),
  3973. (7524, 'Horror', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_horror', 'DVDs, Films & TV :: LaserDiscs :: Horror', '', 0, 1, 0, '', '', ''),
  3974. (7525, 'Music & Concerts', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_music-concerts', 'DVDs, Films & TV :: LaserDiscs :: Music & Concerts', '', 0, 1, 0, '', '', ''),
  3975. (7526, 'Musicals & Broadway', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_musicals-broadway', 'DVDs, Films & TV :: LaserDiscs :: Musicals & Broadway', '', 0, 1, 0, '', '', ''),
  3976. (7527, 'Romance', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_romance', 'DVDs, Films & TV :: LaserDiscs :: Romance', '', 0, 1, 0, '', '', ''),
  3977. (7528, 'Sci-Fi & Fantasy', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_sci-fi-fantasy', 'DVDs, Films & TV :: LaserDiscs :: Sci-Fi & Fantasy', '', 0, 1, 0, '', '', ''),
  3978. (7529, 'Sports', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_sports', 'DVDs, Films & TV :: LaserDiscs :: Sports', '', 0, 1, 0, '', '', ''),
  3979. (7530, 'Thriller & Mystery', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_thriller-mystery', 'DVDs, Films & TV :: LaserDiscs :: Thriller & Mystery', '', 0, 1, 0, '', '', ''),
  3980. (7531, 'TV Shows', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_tv-shows', 'DVDs, Films & TV :: LaserDiscs :: TV Shows', '', 0, 1, 0, '', '', ''),
  3981. (7532, 'Westerns', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_westerns', 'DVDs, Films & TV :: LaserDiscs :: Westerns', '', 0, 1, 0, '', '', ''),
  3982. (7533, 'World Cinema', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_world-cinema', 'DVDs, Films & TV :: LaserDiscs :: World Cinema', '', 0, 1, 0, '', '', ''),
  3983. (7534, 'Not specified', 7485, 0, NULL, 'dvds-films-tv_laserdiscs_not-specified', 'DVDs, Films & TV :: LaserDiscs :: Not specified', '', 0, 1, 0, '', '', ''),
  3984. (7535, 'Action & Adventure', 7486, 0, NULL, 'dvds-films-tv_umds_action-adventure', 'DVDs, Films & TV :: UMDs :: Action & Adventure', '', 0, 1, 0, '', '', ''),
  3985. (7536, 'Animation & Anime', 7486, 0, NULL, 'dvds-films-tv_umds_animation-anime', 'DVDs, Films & TV :: UMDs :: Animation & Anime', '', 0, 1, 0, '', '', ''),
  3986. (7537, 'Children's & Family', 7486, 0, NULL, 'dvds-films-tv_umds_childrens-family', 'DVDs, Films & TV :: UMDs :: Children's & Family', '', 0, 1, 0, '', '', ''),
  3987. (7538, 'Comedy', 7486, 0, NULL, 'dvds-films-tv_umds_comedy', 'DVDs, Films & TV :: UMDs :: Comedy', '', 0, 1, 0, '', '', ''),
  3988. (7539, 'Drama', 7486, 0, NULL, 'dvds-films-tv_umds_drama', 'DVDs, Films & TV :: UMDs :: Drama', '', 0, 1, 0, '', '', ''),
  3989. (7540, 'Documentary', 7486, 0, NULL, 'dvds-films-tv_umds_documentary', 'DVDs, Films & TV :: UMDs :: Documentary', '', 0, 1, 0, '', '', ''),
  3990. (7541, 'Horror', 7486, 0, NULL, 'dvds-films-tv_umds_horror', 'DVDs, Films & TV :: UMDs :: Horror', '', 0, 1, 0, '', '', ''),
  3991. (7542, 'Educational', 7486, 0, NULL, 'dvds-films-tv_umds_educational', 'DVDs, Films & TV :: UMDs :: Educational', '', 0, 1, 0, '', '', ''),
  3992. (7543, 'Music & Concerts', 7486, 0, NULL, 'dvds-films-tv_umds_music-concerts', 'DVDs, Films & TV :: UMDs :: Music & Concerts', '', 0, 1, 0, '', '', ''),
  3993. (7544, 'Sports', 7486, 0, NULL, 'dvds-films-tv_umds_sports', 'DVDs, Films & TV :: UMDs :: Sports', '', 0, 1, 0, '', '', ''),
  3994. (7545, 'Romance', 7486, 0, NULL, 'dvds-films-tv_umds_romance', 'DVDs, Films & TV :: UMDs :: Romance', '', 0, 1, 0, '', '', ''),
  3995. (7546, 'Sci-Fi & Fantasy', 7486, 0, NULL, 'dvds-films-tv_umds_sci-fi-fantasy', 'DVDs, Films & TV :: UMDs :: Sci-Fi & Fantasy', '', 0, 1, 0, '', '', ''),
  3996. (7547, 'Thriller & Mystery', 7486, 0, NULL, 'dvds-films-tv_umds_thriller-mystery', 'DVDs, Films & TV :: UMDs :: Thriller & Mystery', '', 0, 1, 0, '', '', ''),
  3997. (7548, 'TV Shows', 7486, 0, NULL, 'dvds-films-tv_umds_tv-shows', 'DVDs, Films & TV :: UMDs :: TV Shows', '', 0, 1, 0, '', '', ''),
  3998. (7549, 'Not specified', 7486, 0, NULL, 'dvds-films-tv_umds_not-specified', 'DVDs, Films & TV :: UMDs :: Not specified', '', 0, 1, 0, '', '', ''),
  3999. (7550, 'Not specified', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_not-specified', 'DVDs, Films & TV :: VHS Tapes :: Not specified', '', 0, 1, 0, '', '', ''),
  4000. (7551, 'World Cinema', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_world-cinema', 'DVDs, Films & TV :: VHS Tapes :: World Cinema', '', 0, 1, 0, '', '', ''),
  4001. (7552, 'Westerns', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_westerns', 'DVDs, Films & TV :: VHS Tapes :: Westerns', '', 0, 1, 0, '', '', ''),
  4002. (7553, 'TV Shows', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_tv-shows', 'DVDs, Films & TV :: VHS Tapes :: TV Shows', '', 0, 1, 0, '', '', ''),
  4003. (7554, 'Thriller & Mystery', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_thriller-mystery', 'DVDs, Films & TV :: VHS Tapes :: Thriller & Mystery', '', 0, 1, 0, '', '', ''),
  4004. (7555, 'Sports', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_sports', 'DVDs, Films & TV :: VHS Tapes :: Sports', '', 0, 1, 0, '', '', ''),
  4005. (7556, 'Sci-Fi & Fantasy', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_sci-fi-fantasy', 'DVDs, Films & TV :: VHS Tapes :: Sci-Fi & Fantasy', '', 0, 1, 0, '', '', ''),
  4006. (7557, 'Romance', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_romance', 'DVDs, Films & TV :: VHS Tapes :: Romance', '', 0, 1, 0, '', '', ''),
  4007. (7558, 'Musicals & Broadway', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_musicals-broadway', 'DVDs, Films & TV :: VHS Tapes :: Musicals & Broadway', '', 0, 1, 0, '', '', ''),
  4008. (7559, 'Music & Concerts', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_music-concerts', 'DVDs, Films & TV :: VHS Tapes :: Music & Concerts', '', 0, 1, 0, '', '', ''),
  4009. (7560, 'Horror', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_horror', 'DVDs, Films & TV :: VHS Tapes :: Horror', '', 0, 1, 0, '', '', ''),
  4010. (7561, 'Exercise & Fitness', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_exercise-fitness', 'DVDs, Films & TV :: VHS Tapes :: Exercise & Fitness', '', 0, 1, 0, '', '', ''),
  4011. (7562, 'Educational', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_educational', 'DVDs, Films & TV :: VHS Tapes :: Educational', '', 0, 1, 0, '', '', ''),
  4012. (7563, 'Documentary', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_documentary', 'DVDs, Films & TV :: VHS Tapes :: Documentary', '', 0, 1, 0, '', '', ''),
  4013. (7564, 'Comedy', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_comedy', 'DVDs, Films & TV :: VHS Tapes :: Comedy', '', 0, 1, 0, '', '', ''),
  4014. (7565, 'Drama', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_drama', 'DVDs, Films & TV :: VHS Tapes :: Drama', '', 0, 1, 0, '', '', ''),
  4015. (7566, 'Children's & Family', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_childrens-family', 'DVDs, Films & TV :: VHS Tapes :: Children's & Family', '', 0, 1, 0, '', '', ''),
  4016. (7567, 'Animation & Anime', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_animation-anime', 'DVDs, Films & TV :: VHS Tapes :: Animation & Anime', '', 0, 1, 0, '', '', ''),
  4017. (7568, 'Action & Adventure', 7487, 0, NULL, 'dvds-films-tv_vhs-tapes_action-adventure', 'DVDs, Films & TV :: VHS Tapes :: Action & Adventure', '', 0, 1, 0, '', '', ''),
  4018. (7569, 'Betamax', 7488, 0, NULL, 'dvds-films-tv_other-formats_betamax', 'DVDs, Films & TV :: Other Formats :: Betamax', '', 0, 1, 0, '', '', ''),
  4019. (7570, 'CED', 7488, 0, NULL, 'dvds-films-tv_other-formats_ced', 'DVDs, Films & TV :: Other Formats :: CED', '', 0, 1, 0, '', '', ''),
  4020. (7571, 'PVD', 7488, 0, NULL, 'dvds-films-tv_other-formats_pvd', 'DVDs, Films & TV :: Other Formats :: PVD', '', 0, 1, 0, '', '', ''),
  4021. (7572, 'VCD', 7488, 0, NULL, 'dvds-films-tv_other-formats_vcd', 'DVDs, Films & TV :: Other Formats :: VCD', '', 0, 1, 0, '', '', ''),
  4022. (7573, 'SVCD', 7488, 0, NULL, 'dvds-films-tv_other-formats_svcd', 'DVDs, Films & TV :: Other Formats :: SVCD', '', 0, 1, 0, '', '', ''),
  4023. (7574, 'CD', 7489, 0, NULL, 'dvds-films-tv_storage-media-accessories_cd', 'DVDs, Films & TV :: Storage & Media Accessories :: CD', '', 0, 1, 0, '', '', ''),
  4024. (7575, 'CD & DVD', 7489, 0, NULL, 'dvds-films-tv_storage-media-accessories_cd-dvd', 'DVDs, Films & TV :: Storage & Media Accessories :: CD & DVD', '', 0, 1, 0, '', '', ''),
  4025. (7576, 'DVD', 7489, 0, NULL, 'dvds-films-tv_storage-media-accessories_dvd', 'DVDs, Films & TV :: Storage & Media Accessories :: DVD', '', 0, 1, 0, '', '', ''),
  4026. (7577, 'VHS', 7489, 0, NULL, 'dvds-films-tv_storage-media-accessories_vhs', 'DVDs, Films & TV :: Storage & Media Accessories :: VHS', '', 0, 1, 0, '', '', ''),
  4027. (7578, 'Not specified', 7489, 0, NULL, 'dvds-films-tv_storage-media-accessories_not-specified', 'DVDs, Films & TV :: Storage & Media Accessories :: Not specified', '', 0, 1, 0, '', '', ''),
  4028. (7579, 'Ads/ Flyers', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_ads-flyers', 'DVDs, Films & TV :: Film Memorabilia :: Ads/ Flyers', '', 0, 1, 0, '', '', ''),
  4029. (7580, 'Autographs', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_autographs', 'DVDs, Films & TV :: Film Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  4030. (7581, 'Bags/ Rucksacks', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_bags-rucksacks', 'DVDs, Films & TV :: Film Memorabilia :: Bags/ Rucksacks', '', 0, 1, 0, '', '', ''),
  4031. (7582, 'Badges', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_badges', 'DVDs, Films & TV :: Film Memorabilia :: Badges', '', 0, 1, 0, '', '', ''),
  4032. (7583, 'Bookmarks', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_bookmarks', 'DVDs, Films & TV :: Film Memorabilia :: Bookmarks', '', 0, 1, 0, '', '', ''),
  4033. (7584, 'Calendars', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_calendars', 'DVDs, Films & TV :: Film Memorabilia :: Calendars', '', 0, 1, 0, '', '', ''),
  4034. (7585, 'Clippings', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_clippings', 'DVDs, Films & TV :: Film Memorabilia :: Clippings', '', 0, 1, 0, '', '', ''),
  4035. (7586, 'Clothing', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_clothing', 'DVDs, Films & TV :: Film Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  4036. (7587, 'Figures/ Dolls', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_figures-dolls', 'DVDs, Films & TV :: Film Memorabilia :: Figures/ Dolls', '', 0, 1, 0, '', '', ''),
  4037. (7588, 'Film Cells', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_film-cells', 'DVDs, Films & TV :: Film Memorabilia :: Film Cells', '', 0, 1, 0, '', '', ''),
  4038. (7589, 'Fridge Magnets', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_fridge-magnets', 'DVDs, Films & TV :: Film Memorabilia :: Fridge Magnets', '', 0, 1, 0, '', '', ''),
  4039. (7590, 'Keyrings', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_keyrings', 'DVDs, Films & TV :: Film Memorabilia :: Keyrings', '', 0, 1, 0, '', '', ''),
  4040. (7591, 'Lobby Cards', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_lobby-cards', 'DVDs, Films & TV :: Film Memorabilia :: Lobby Cards', '', 0, 1, 0, '', '', ''),
  4041. (7592, 'Mouse Mats', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_mouse-mats', 'DVDs, Films & TV :: Film Memorabilia :: Mouse Mats', '', 0, 1, 0, '', '', ''),
  4042. (7593, 'Mugs', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_mugs', 'DVDs, Films & TV :: Film Memorabilia :: Mugs', '', 0, 1, 0, '', '', ''),
  4043. (7594, 'Novelties', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_novelties', 'DVDs, Films & TV :: Film Memorabilia :: Novelties', '', 0, 1, 0, '', '', ''),
  4044. (7595, 'Photographs', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_photographs', 'DVDs, Films & TV :: Film Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  4045. (7596, 'Plates', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_plates', 'DVDs, Films & TV :: Film Memorabilia :: Plates', '', 0, 1, 0, '', '', ''),
  4046. (7597, 'Playing Cards', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_playing-cards', 'DVDs, Films & TV :: Film Memorabilia :: Playing Cards', '', 0, 1, 0, '', '', ''),
  4047. (7598, 'Postcards', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_postcards', 'DVDs, Films & TV :: Film Memorabilia :: Postcards', '', 0, 1, 0, '', '', ''),
  4048. (7599, 'Posters', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_posters', 'DVDs, Films & TV :: Film Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  4049. (7600, 'Pressbooks/ Press Kits', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_pressbooks-press-kits', 'DVDs, Films & TV :: Film Memorabilia :: Pressbooks/ Press Kits', '', 0, 1, 0, '', '', ''),
  4050. (7601, 'Programmes/ Brochures', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_programmes-brochures', 'DVDs, Films & TV :: Film Memorabilia :: Programmes/ Brochures', '', 0, 1, 0, '', '', ''),
  4051. (7602, 'Promotional Items', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_promotional-items', 'DVDs, Films & TV :: Film Memorabilia :: Promotional Items', '', 0, 1, 0, '', '', ''),
  4052. (7603, 'Props', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_props', 'DVDs, Films & TV :: Film Memorabilia :: Props', '', 0, 1, 0, '', '', ''),
  4053. (7604, 'Scripts', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_scripts', 'DVDs, Films & TV :: Film Memorabilia :: Scripts', '', 0, 1, 0, '', '', ''),
  4054. (7605, 'Standees/ Banners', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_standees-banners', 'DVDs, Films & TV :: Film Memorabilia :: Standees/ Banners', '', 0, 1, 0, '', '', ''),
  4055. (7606, 'Wardrobe', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_wardrobe', 'DVDs, Films & TV :: Film Memorabilia :: Wardrobe', '', 0, 1, 0, '', '', ''),
  4056. (7607, 'Other Film Memorabilia', 7490, 0, NULL, 'dvds-films-tv_film-memorabilia_other-film-memorabilia', 'DVDs, Films & TV :: Film Memorabilia :: Other Film Memorabilia', '', 0, 1, 0, '', '', ''),
  4057. (7608, 'Ads/ Flyers', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_ads-flyers', 'DVDs, Films & TV :: TV Memorabilia :: Ads/ Flyers', '', 0, 1, 0, '', '', ''),
  4058. (7609, 'Autographs', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_autographs', 'DVDs, Films & TV :: TV Memorabilia :: Autographs', '', 0, 1, 0, '', '', ''),
  4059. (7610, 'Badges', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_badges', 'DVDs, Films & TV :: TV Memorabilia :: Badges', '', 0, 1, 0, '', '', ''),
  4060. (7611, 'Bags/ Rucksacks', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_bags-rucksacks', 'DVDs, Films & TV :: TV Memorabilia :: Bags/ Rucksacks', '', 0, 1, 0, '', '', ''),
  4061. (7612, 'Calendars', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_calendars', 'DVDs, Films & TV :: TV Memorabilia :: Calendars', '', 0, 1, 0, '', '', ''),
  4062. (7613, 'Clippings', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_clippings', 'DVDs, Films & TV :: TV Memorabilia :: Clippings', '', 0, 1, 0, '', '', ''),
  4063. (7614, 'Clothing', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_clothing', 'DVDs, Films & TV :: TV Memorabilia :: Clothing', '', 0, 1, 0, '', '', ''),
  4064. (7615, 'Figures/ Dolls', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_figures-dolls', 'DVDs, Films & TV :: TV Memorabilia :: Figures/ Dolls', '', 0, 1, 0, '', '', ''),
  4065. (7616, 'Fridge Magnets', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_fridge-magnets', 'DVDs, Films & TV :: TV Memorabilia :: Fridge Magnets', '', 0, 1, 0, '', '', ''),
  4066. (7617, 'Keyrings', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_keyrings', 'DVDs, Films & TV :: TV Memorabilia :: Keyrings', '', 0, 1, 0, '', '', ''),
  4067. (7618, 'Mugs', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_mugs', 'DVDs, Films & TV :: TV Memorabilia :: Mugs', '', 0, 1, 0, '', '', ''),
  4068. (7619, 'Novelties', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_novelties', 'DVDs, Films & TV :: TV Memorabilia :: Novelties', '', 0, 1, 0, '', '', ''),
  4069. (7620, 'Photographs', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_photographs', 'DVDs, Films & TV :: TV Memorabilia :: Photographs', '', 0, 1, 0, '', '', ''),
  4070. (7621, 'Postcards', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_postcards', 'DVDs, Films & TV :: TV Memorabilia :: Postcards', '', 0, 1, 0, '', '', ''),
  4071. (7622, 'Posters', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_posters', 'DVDs, Films & TV :: TV Memorabilia :: Posters', '', 0, 1, 0, '', '', ''),
  4072. (7623, 'Pressbooks/ Press Kits', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_pressbooks-press-kits', 'DVDs, Films & TV :: TV Memorabilia :: Pressbooks/ Press Kits', '', 0, 1, 0, '', '', ''),
  4073. (7624, 'Promotional Items', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_promotional-items', 'DVDs, Films & TV :: TV Memorabilia :: Promotional Items', '', 0, 1, 0, '', '', ''),
  4074. (7625, 'Props', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_props', 'DVDs, Films & TV :: TV Memorabilia :: Props', '', 0, 1, 0, '', '', ''),
  4075. (7626, 'Scripts', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_scripts', 'DVDs, Films & TV :: TV Memorabilia :: Scripts', '', 0, 1, 0, '', '', ''),
  4076. (7627, 'Wardrobe', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_wardrobe', 'DVDs, Films & TV :: TV Memorabilia :: Wardrobe', '', 0, 1, 0, '', '', ''),
  4077. (7628, 'Other TV Memorabilia', 7491, 0, NULL, 'dvds-films-tv_tv-memorabilia_other-tv-memorabilia', 'DVDs, Films & TV :: TV Memorabilia :: Other TV Memorabilia', '', 0, 1, 0, '', '', ''),
  4078. (7629, 'Barbecuing & Outdoor Heating', 3692, 0, NULL, 'garden-patio_barbecuing-outdoor-heating', 'Garden & Patio :: Barbecuing & Outdoor Heating', '', 0, 1, 0, '', '', ''),
  4079. (7630, 'Bird Baths/ Feeders/ Tables', 3692, 0, NULL, 'garden-patio_bird-baths-feeders-tables', 'Garden & Patio :: Bird Baths/ Feeders/ Tables', '', 0, 1, 0, '', '', ''),
  4080. (7631, 'Fencing', 3692, 0, NULL, 'garden-patio_fencing', 'Garden & Patio :: Fencing', '', 0, 1, 0, '', '', ''),
  4081. (7632, 'Fertiliser/ Soil Improvement', 3692, 0, NULL, 'garden-patio_fertiliser-soil-improvement', 'Garden & Patio :: Fertiliser/ Soil Improvement', '', 0, 1, 0, '', '', ''),
  4082. (7633, 'Garden Lighting', 3692, 0, NULL, 'garden-patio_garden-lighting', 'Garden & Patio :: Garden Lighting', '', 0, 1, 0, '', '', ''),
  4083. (7634, 'Garden Ornaments', 3692, 0, NULL, 'garden-patio_garden-ornaments', 'Garden & Patio :: Garden Ornaments', '', 0, 1, 0, '', '', ''),
  4084. (7635, 'Garden & Patio Furniture', 3692, 0, NULL, 'garden-patio_garden-patio-furniture', 'Garden & Patio :: Garden & Patio Furniture', '', 0, 1, 0, '', '', ''),
  4085. (7636, 'Garden Structures & Shade', 3692, 0, NULL, 'garden-patio_garden-structures-shade', 'Garden & Patio :: Garden Structures & Shade', '', 0, 1, 0, '', '', ''),
  4086. (7637, 'Hand Tools & Equipment', 3692, 0, NULL, 'garden-patio_hand-tools-equipment', 'Garden & Patio :: Hand Tools & Equipment', '', 0, 1, 0, '', '', ''),
  4087. (7638, 'Hydroponics & Seed Starting', 3692, 0, NULL, 'garden-patio_hydroponics-seed-starting', 'Garden & Patio :: Hydroponics & Seed Starting', '', 0, 1, 0, '', '', ''),
  4088. (7639, 'Landscaping & Garden Materials', 3692, 0, NULL, 'garden-patio_landscaping-garden-materials', 'Garden & Patio :: Landscaping & Garden Materials', '', 0, 1, 0, '', '', ''),
  4089. (7640, 'Paving & Decking', 3692, 0, NULL, 'garden-patio_paving-decking', 'Garden & Patio :: Paving & Decking', '', 0, 1, 0, '', '', ''),
  4090. (7641, 'Lawnmowers', 3692, 0, NULL, 'garden-patio_lawnmowers', 'Garden & Patio :: Lawnmowers', '', 0, 1, 0, '', '', ''),
  4091. (7642, 'Plants/ Seeds/ Bulbs', 3692, 0, NULL, 'garden-patio_plants-seeds-bulbs', 'Garden & Patio :: Plants/ Seeds/ Bulbs', '', 0, 1, 0, '', '', ''),
  4092. (7643, 'Ponds & Water Features', 3692, 0, NULL, 'garden-patio_ponds-water-features', 'Garden & Patio :: Ponds & Water Features', '', 0, 1, 0, '', '', ''),
  4093. (7644, 'Pots/ Window Boxes/ Baskets', 3692, 0, NULL, 'garden-patio_pots-window-boxes-baskets', 'Garden & Patio :: Pots/ Window Boxes/ Baskets', '', 0, 1, 0, '', '', ''),
  4094. (7645, 'Power Tools & Equipment', 3692, 0, NULL, 'garden-patio_power-tools-equipment', 'Garden & Patio :: Power Tools & Equipment', '', 0, 1, 0, '', '', ''),
  4095. (7646, 'Swimming Pools & Hot Tubs', 3692, 0, NULL, 'garden-patio_swimming-pools-hot-tubs', 'Garden & Patio :: Swimming Pools & Hot Tubs', '', 0, 1, 0, '', '', ''),
  4096. (7647, 'Weed/ Pest Control', 3692, 0, NULL, 'garden-patio_weed-pest-control', 'Garden & Patio :: Weed/ Pest Control', '', 0, 1, 0, '', '', ''),
  4097. (7648, 'Other Garden & Patio', 3692, 0, NULL, 'garden-patio_other-garden-patio', 'Garden & Patio :: Other Garden & Patio', '', 0, 1, 0, '', '', ''),
  4098. (7649, 'Barbecues', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_barbecues', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Barbecues', '', 0, 1, 0, '', '', ''),
  4099. (7650, 'Barbecues Covers', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_barbecues-covers', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Barbecues Covers', '', 0, 1, 0, '', '', ''),
  4100. (7651, 'Barbecue Replacement Parts', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_barbecue-replacement-parts', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Barbecue Replacement Parts', '', 0, 1, 0, '', '', ''),
  4101. (7652, 'Barbecue Tools & Accessories', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_barbecue-tools-accessories', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Barbecue Tools & Accessories', '', 0, 1, 0, '', '', ''),
  4102. (7653, 'Firepits & Chimeneas', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_firepits-chimeneas', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Firepits & Chimeneas', '', 0, 1, 0, '', '', ''),
  4103. (7654, 'Patio Heaters', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_patio-heaters', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Patio Heaters', '', 0, 1, 0, '', '', ''),
  4104. (7655, 'Other Barbecuing & Heating', 7629, 0, NULL, 'garden-patio_barbecuing-outdoor-heating_other-barbecuing-heating', 'Garden & Patio :: Barbecuing & Outdoor Heating :: Other Barbecuing & Heating', '', 0, 1, 0, '', '', ''),
  4105. (7656, 'Bird Bath', 7630, 0, NULL, 'garden-patio_bird-baths-feeders-tables_bird-bath', 'Garden & Patio :: Bird Baths/ Feeders/ Tables :: Bird Bath', '', 0, 1, 0, '', '', ''),
  4106. (7657, 'Bird Feeder', 7630, 0, NULL, 'garden-patio_bird-baths-feeders-tables_bird-feeder', 'Garden & Patio :: Bird Baths/ Feeders/ Tables :: Bird Feeder', '', 0, 1, 0, '', '', ''),
  4107. (7658, 'Bird House', 7630, 0, NULL, 'garden-patio_bird-baths-feeders-tables_bird-house', 'Garden & Patio :: Bird Baths/ Feeders/ Tables :: Bird House', '', 0, 1, 0, '', '', ''),
  4108. (7659, 'Bird Table', 7630, 0, NULL, 'garden-patio_bird-baths-feeders-tables_bird-table', 'Garden & Patio :: Bird Baths/ Feeders/ Tables :: Bird Table', '', 0, 1, 0, '', '', ''),
  4109. (7660, 'Other', 7630, 0, NULL, 'garden-patio_bird-baths-feeders-tables_other', 'Garden & Patio :: Bird Baths/ Feeders/ Tables :: Other', '', 0, 1, 0, '', '', ''),
  4110. (7661, 'Fence Panels', 7631, 0, NULL, 'garden-patio_fencing_fence-panels', 'Garden & Patio :: Fencing :: Fence Panels', '', 0, 1, 0, '', '', ''),
  4111. (7662, 'Gates', 7631, 0, NULL, 'garden-patio_fencing_gates', 'Garden & Patio :: Fencing :: Gates', '', 0, 1, 0, '', '', ''),
  4112. (7663, 'Posts', 7631, 0, NULL, 'garden-patio_fencing_posts', 'Garden & Patio :: Fencing :: Posts', '', 0, 1, 0, '', '', ''),
  4113. (7664, 'Railings', 7631, 0, NULL, 'garden-patio_fencing_railings', 'Garden & Patio :: Fencing :: Railings', '', 0, 1, 0, '', '', ''),
  4114. (7665, 'Railway Sleepers', 7631, 0, NULL, 'garden-patio_fencing_railway-sleepers', 'Garden & Patio :: Fencing :: Railway Sleepers', '', 0, 1, 0, '', '', ''),
  4115. (7666, 'Trellises', 7631, 0, NULL, 'garden-patio_fencing_trellises', 'Garden & Patio :: Fencing :: Trellises', '', 0, 1, 0, '', '', ''),
  4116. (7667, 'Other Fencing', 7631, 0, NULL, 'garden-patio_fencing_other-fencing', 'Garden & Patio :: Fencing :: Other Fencing', '', 0, 1, 0, '', '', ''),
  4117. (7668, 'Compost', 7632, 0, NULL, 'garden-patio_fertiliser-soil-improvement_compost', 'Garden & Patio :: Fertiliser/ Soil Improvement :: Compost', '', 0, 1, 0, '', '', ''),
  4118. (7669, 'Flowers', 7632, 0, NULL, 'garden-patio_fertiliser-soil-improvement_flowers', 'Garden & Patio :: Fertiliser/ Soil Improvement :: Flowers', '', 0, 1, 0, '', '', ''),
  4119. (7670, 'Lawn', 7632, 0, NULL, 'garden-patio_fertiliser-soil-improvement_lawn', 'Garden & Patio :: Fertiliser/ Soil Improvement :: Lawn', '', 0, 1, 0, '', '', ''),
  4120. (7671, 'Plants', 7632, 0, NULL, 'garden-patio_fertiliser-soil-improvement_plants', 'Garden & Patio :: Fertiliser/ Soil Improvement :: Plants', '', 0, 1, 0, '', '', ''),
  4121. (7672, 'Soil', 7632, 0, NULL, 'garden-patio_fertiliser-soil-improvement_soil', 'Garden & Patio :: Fertiliser/ Soil Improvement :: Soil', '', 0, 1, 0, '', '', ''),
  4122. (7673, 'Floodlights/ Security Lights', 7633, 0, NULL, 'garden-patio_garden-lighting_floodlights-security-lights', 'Garden & Patio :: Garden Lighting :: Floodlights/ Security Lights', '', 0, 1, 0, '', '', ''),
  4123. (7674, 'Junction Boxes/ Sockets', 7633, 0, NULL, 'garden-patio_garden-lighting_junction-boxes-sockets', 'Garden & Patio :: Garden Lighting :: Junction Boxes/ Sockets', '', 0, 1, 0, '', '', ''),
  4124. (7675, 'Lampposts', 7633, 0, NULL, 'garden-patio_garden-lighting_lampposts', 'Garden & Patio :: Garden Lighting :: Lampposts', '', 0, 1, 0, '', '', ''),
  4125. (7676, 'Lanterns', 7633, 0, NULL, 'garden-patio_garden-lighting_lanterns', 'Garden & Patio :: Garden Lighting :: Lanterns', '', 0, 1, 0, '', '', ''),
  4126. (7677, 'Solar Lights', 7633, 0, NULL, 'garden-patio_garden-lighting_solar-lights', 'Garden & Patio :: Garden Lighting :: Solar Lights', '', 0, 1, 0, '', '', ''),
  4127. (7678, 'Other Garden Lighting', 7633, 0, NULL, 'garden-patio_garden-lighting_other-garden-lighting', 'Garden & Patio :: Garden Lighting :: Other Garden Lighting', '', 0, 1, 0, '', '', ''),
  4128. (7679, 'Animal Ornaments', 7634, 0, NULL, 'garden-patio_garden-ornaments_animal-ornaments', 'Garden & Patio :: Garden Ornaments :: Animal Ornaments', '', 0, 1, 0, '', '', ''),
  4129. (7680, 'Flags/ Flagpoles', 7634, 0, NULL, 'garden-patio_garden-ornaments_flags-flagpoles', 'Garden & Patio :: Garden Ornaments :: Flags/ Flagpoles', '', 0, 1, 0, '', '', ''),
  4130. (7681, 'Garden Gnomes', 7634, 0, NULL, 'garden-patio_garden-ornaments_garden-gnomes', 'Garden & Patio :: Garden Ornaments :: Garden Gnomes', '', 0, 1, 0, '', '', ''),
  4131. (7682, 'Sculpture/ Statues', 7634, 0, NULL, 'garden-patio_garden-ornaments_sculpture-statues', 'Garden & Patio :: Garden Ornaments :: Sculpture/ Statues', '', 0, 1, 0, '', '', ''),
  4132. (7683, 'Sundials', 7634, 0, NULL, 'garden-patio_garden-ornaments_sundials', 'Garden & Patio :: Garden Ornaments :: Sundials', '', 0, 1, 0, '', '', ''),
  4133. (7684, 'Weathervanes', 7634, 0, NULL, 'garden-patio_garden-ornaments_weathervanes', 'Garden & Patio :: Garden Ornaments :: Weathervanes', '', 0, 1, 0, '', '', ''),
  4134. (7685, 'Other Garden Ornaments', 7634, 0, NULL, 'garden-patio_garden-ornaments_other-garden-ornaments', 'Garden & Patio :: Garden Ornaments :: Other Garden Ornaments', '', 0, 1, 0, '', '', ''),
  4135. (7686, 'Benches', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_benches', 'Garden & Patio :: Garden & Patio Furniture :: Benches', '', 0, 1, 0, '', '', ''),
  4136. (7687, 'Chairs', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_chairs', 'Garden & Patio :: Garden & Patio Furniture :: Chairs', '', 0, 1, 0, '', '', ''),
  4137. (7688, 'Furniture Covers', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_furniture-covers', 'Garden & Patio :: Garden & Patio Furniture :: Furniture Covers', '', 0, 1, 0, '', '', ''),
  4138. (7689, 'Furniture Cushions', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_furniture-cushions', 'Garden & Patio :: Garden & Patio Furniture :: Furniture Cushions', '', 0, 1, 0, '', '', ''),
  4139. (7690, 'Furniture Sets', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_furniture-sets', 'Garden & Patio :: Garden & Patio Furniture :: Furniture Sets', '', 0, 1, 0, '', '', ''),
  4140. (7691, 'Hammocks', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_hammocks', 'Garden & Patio :: Garden & Patio Furniture :: Hammocks', '', 0, 1, 0, '', '', ''),
  4141. (7692, 'Loungers & Recliners', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_loungers-recliners', 'Garden & Patio :: Garden & Patio Furniture :: Loungers & Recliners', '', 0, 1, 0, '', '', ''),
  4142. (7693, 'Parasols & Bases', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_parasols-bases', 'Garden & Patio :: Garden & Patio Furniture :: Parasols & Bases', '', 0, 1, 0, '', '', ''),
  4143. (7694, 'Swing Seats', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_swing-seats', 'Garden & Patio :: Garden & Patio Furniture :: Swing Seats', '', 0, 1, 0, '', '', ''),
  4144. (7695, 'Tables', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_tables', 'Garden & Patio :: Garden & Patio Furniture :: Tables', '', 0, 1, 0, '', '', ''),
  4145. (7696, 'Other Garden Furniture', 7635, 0, NULL, 'garden-patio_garden-patio-furniture_other-garden-furniture', 'Garden & Patio :: Garden & Patio Furniture :: Other Garden Furniture', '', 0, 1, 0, '', '', ''),
  4146. (7697, 'Awnings/ Canopies', 7636, 0, NULL, 'garden-patio_garden-structures-shade_awnings-canopies', 'Garden & Patio :: Garden Structures & Shade :: Awnings/ Canopies', '', 0, 1, 0, '', '', ''),
  4147. (7698, 'Garden Sheds', 7636, 0, NULL, 'garden-patio_garden-structures-shade_garden-sheds', 'Garden & Patio :: Garden Structures & Shade :: Garden Sheds', '', 0, 1, 0, '', '', ''),
  4148. (7699, 'Gazebos', 7636, 0, NULL, 'garden-patio_garden-structures-shade_gazebos', 'Garden & Patio :: Garden Structures & Shade :: Gazebos', '', 0, 1, 0, '', '', ''),
  4149. (7700, 'Greenhouses', 7636, 0, NULL, 'garden-patio_garden-structures-shade_greenhouses', 'Garden & Patio :: Garden Structures & Shade :: Greenhouses', '', 0, 1, 0, '', '', ''),
  4150. (7701, 'Log Cabins', 7636, 0, NULL, 'garden-patio_garden-structures-shade_log-cabins', 'Garden & Patio :: Garden Structures & Shade :: Log Cabins', '', 0, 1, 0, '', '', ''),
  4151. (7702, 'Marquees', 7636, 0, NULL, 'garden-patio_garden-structures-shade_marquees', 'Garden & Patio :: Garden Structures & Shade :: Marquees', '', 0, 1, 0, '', '', ''),
  4152. (7703, 'Mini Greenhouses & Cold Frames', 7636, 0, NULL, 'garden-patio_garden-structures-shade_mini-greenhouses-cold-frames', 'Garden & Patio :: Garden Structures & Shade :: Mini Greenhouses & Cold Frames', '', 0, 1, 0, '', '', ''),
  4153. (7704, 'Wendy Houses', 7636, 0, NULL, 'garden-patio_garden-structures-shade_wendy-houses', 'Garden & Patio :: Garden Structures & Shade :: Wendy Houses', '', 0, 1, 0, '', '', ''),
  4154. (7705, 'Other Garden Structures', 7636, 0, NULL, 'garden-patio_garden-structures-shade_other-garden-structures', 'Garden & Patio :: Garden Structures & Shade :: Other Garden Structures', '', 0, 1, 0, '', '', ''),
  4155. (7706, 'Aerators', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_aerators', 'Garden & Patio :: Hand Tools & Equipment :: Aerators', '', 0, 1, 0, '', '', ''),
  4156. (7707, 'Axes & Hatchets', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_axes-hatchets', 'Garden & Patio :: Hand Tools & Equipment :: Axes & Hatchets', '', 0, 1, 0, '', '', ''),
  4157. (7708, 'Bonsai Tools', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_bonsai-tools', 'Garden & Patio :: Hand Tools & Equipment :: Bonsai Tools', '', 0, 1, 0, '', '', ''),
  4158. (7709, 'Boots & Shoes', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_boots-shoes', 'Garden & Patio :: Hand Tools & Equipment :: Boots & Shoes', '', 0, 1, 0, '', '', ''),
  4159. (7710, 'Composting', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_composting', 'Garden & Patio :: Hand Tools & Equipment :: Composting', '', 0, 1, 0, '', '', ''),
  4160. (7711, 'Forks', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_forks', 'Garden & Patio :: Hand Tools & Equipment :: Forks', '', 0, 1, 0, '', '', ''),
  4161. (7712, 'Gloves', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_gloves', 'Garden & Patio :: Hand Tools & Equipment :: Gloves', '', 0, 1, 0, '', '', ''),
  4162. (7713, 'Hoes & Cultivators', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_hoes-cultivators', 'Garden & Patio :: Hand Tools & Equipment :: Hoes & Cultivators', '', 0, 1, 0, '', '', ''),
  4163. (7714, 'Knee Pads & Kneeling Boards', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_knee-pads-kneeling-boards', 'Garden & Patio :: Hand Tools & Equipment :: Knee Pads & Kneeling Boards', '', 0, 1, 0, '', '', ''),
  4164. (7715, 'Ladders', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_ladders', 'Garden & Patio :: Hand Tools & Equipment :: Ladders', '', 0, 1, 0, '', '', ''),
  4165. (7716, 'Lawn Rollers', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_lawn-rollers', 'Garden & Patio :: Hand Tools & Equipment :: Lawn Rollers', '', 0, 1, 0, '', '', ''),
  4166. (7717, 'Loppers', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_loppers', 'Garden & Patio :: Hand Tools & Equipment :: Loppers', '', 0, 1, 0, '', '', ''),
  4167. (7718, 'Manual Edgers', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_manual-edgers', 'Garden & Patio :: Hand Tools & Equipment :: Manual Edgers', '', 0, 1, 0, '', '', ''),
  4168. (7719, 'Mattocks & Picks', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_mattocks-picks', 'Garden & Patio :: Hand Tools & Equipment :: Mattocks & Picks', '', 0, 1, 0, '', '', ''),
  4169. (7720, 'Moisture & pH Meters', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_moisture-ph-meters', 'Garden & Patio :: Hand Tools & Equipment :: Moisture & pH Meters', '', 0, 1, 0, '', '', ''),
  4170. (7721, 'Plant Labels, Ties & Supports', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_plant-labels-ties-supports', 'Garden & Patio :: Hand Tools & Equipment :: Plant Labels, Ties & Supports', '', 0, 1, 0, '', '', ''),
  4171. (7722, 'Post Hole Diggers & Augers', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_post-hole-diggers-augers', 'Garden & Patio :: Hand Tools & Equipment :: Post Hole Diggers & Augers', '', 0, 1, 0, '', '', ''),
  4172. (7723, 'Protective Gear & Clothing', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_protective-gear-clothing', 'Garden & Patio :: Hand Tools & Equipment :: Protective Gear & Clothing', '', 0, 1, 0, '', '', ''),
  4173. (7724, 'Rakes', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_rakes', 'Garden & Patio :: Hand Tools & Equipment :: Rakes', '', 0, 1, 0, '', '', ''),
  4174. (7725, 'Saws', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_saws', 'Garden & Patio :: Hand Tools & Equipment :: Saws', '', 0, 1, 0, '', '', ''),
  4175. (7726, 'Scythes & Sickles', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_scythes-sickles', 'Garden & Patio :: Hand Tools & Equipment :: Scythes & Sickles', '', 0, 1, 0, '', '', ''),
  4176. (7727, 'Secateurs & Pruners', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_secateurs-pruners', 'Garden & Patio :: Hand Tools & Equipment :: Secateurs & Pruners', '', 0, 1, 0, '', '', ''),
  4177. (7728, 'Seeders & Spreaders', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_seeders-spreaders', 'Garden & Patio :: Hand Tools & Equipment :: Seeders & Spreaders', '', 0, 1, 0, '', '', ''),
  4178. (7729, 'Shears', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_shears', 'Garden & Patio :: Hand Tools & Equipment :: Shears', '', 0, 1, 0, '', '', ''),
  4179. (7730, 'Shovels & Spades', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_shovels-spades', 'Garden & Patio :: Hand Tools & Equipment :: Shovels & Spades', '', 0, 1, 0, '', '', ''),
  4180. (7731, 'Sprayers', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_sprayers', 'Garden & Patio :: Hand Tools & Equipment :: Sprayers', '', 0, 1, 0, '', '', ''),
  4181. (7732, 'Tool Carriers, Aprons & Belts', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_tool-carriers-aprons-belts', 'Garden & Patio :: Hand Tools & Equipment :: Tool Carriers, Aprons & Belts', '', 0, 1, 0, '', '', ''),
  4182. (7733, 'Tool Sets', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_tool-sets', 'Garden & Patio :: Hand Tools & Equipment :: Tool Sets', '', 0, 1, 0, '', '', ''),
  4183. (7734, 'Trowels', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_trowels', 'Garden & Patio :: Hand Tools & Equipment :: Trowels', '', 0, 1, 0, '', '', ''),
  4184. (7735, 'Watering Equipment', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_watering-equipment', 'Garden & Patio :: Hand Tools & Equipment :: Watering Equipment', '', 0, 1, 0, '', '', ''),
  4185. (7736, 'Weeders', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_weeders', 'Garden & Patio :: Hand Tools & Equipment :: Weeders', '', 0, 1, 0, '', '', ''),
  4186. (7737, 'Wheelbarrows', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_wheelbarrows', 'Garden & Patio :: Hand Tools & Equipment :: Wheelbarrows', '', 0, 1, 0, '', '', ''),
  4187. (7738, 'Parts & Accessories', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_parts-accessories', 'Garden & Patio :: Hand Tools & Equipment :: Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4188. (7739, 'Other Hand Tools & Equipment', 7637, 0, NULL, 'garden-patio_hand-tools-equipment_other-hand-tools-equipment', 'Garden & Patio :: Hand Tools & Equipment :: Other Hand Tools & Equipment', '', 0, 1, 0, '', '', ''),
  4189. (7740, 'Environmental Controls', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_environmental-controls', 'Garden & Patio :: Hydroponics & Seed Starting :: Environmental Controls', '', 0, 1, 0, '', '', ''),
  4190. (7741, 'Grow Light Kits', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_grow-light-kits', 'Garden & Patio :: Hydroponics & Seed Starting :: Grow Light Kits', '', 0, 1, 0, '', '', ''),
  4191. (7742, 'Grow Light Parts & Accessories', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_grow-light-parts-accessories', 'Garden & Patio :: Hydroponics & Seed Starting :: Grow Light Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4192. (7743, 'Grow Light Ballasts', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_grow-light-ballasts', 'Garden & Patio :: Hydroponics & Seed Starting :: Grow Light Ballasts', '', 0, 1, 0, '', '', ''),
  4193. (7744, 'Grow Light Bulbs', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_grow-light-bulbs', 'Garden & Patio :: Hydroponics & Seed Starting :: Grow Light Bulbs', '', 0, 1, 0, '', '', ''),
  4194. (7745, 'Growing Media', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_growing-media', 'Garden & Patio :: Hydroponics & Seed Starting :: Growing Media', '', 0, 1, 0, '', '', ''),
  4195. (7746, 'Hydroponic Systems', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_hydroponic-systems', 'Garden & Patio :: Hydroponics & Seed Starting :: Hydroponic Systems', '', 0, 1, 0, '', '', ''),
  4196. (7747, 'Nutrients, pH & Supplements', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_nutrients-ph-supplements', 'Garden & Patio :: Hydroponics & Seed Starting :: Nutrients, pH & Supplements', '', 0, 1, 0, '', '', ''),
  4197. (7748, 'Propagators', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_propagators', 'Garden & Patio :: Hydroponics & Seed Starting :: Propagators', '', 0, 1, 0, '', '', ''),
  4198. (7749, 'Tents, Tarps & Shelves', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_tents-tarps-shelves', 'Garden & Patio :: Hydroponics & Seed Starting :: Tents, Tarps & Shelves', '', 0, 1, 0, '', '', ''),
  4199. (7750, 'Hydroponic Parts & Accessories', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_hydroponic-parts-accessories', 'Garden & Patio :: Hydroponics & Seed Starting :: Hydroponic Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4200. (7751, 'Other Hydroponics', 7638, 0, NULL, 'garden-patio_hydroponics-seed-starting_other-hydroponics', 'Garden & Patio :: Hydroponics & Seed Starting :: Other Hydroponics', '', 0, 1, 0, '', '', ''),
  4201. (7752, 'Artificial Turf/ Grass', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_artificial-turf-grass', 'Garden & Patio :: Landscaping & Garden Materials :: Artificial Turf/ Grass', '', 0, 1, 0, '', '', ''),
  4202. (7753, 'Chippings/ Mulch', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_chippings-mulch', 'Garden & Patio :: Landscaping & Garden Materials :: Chippings/ Mulch', '', 0, 1, 0, '', '', ''),
  4203. (7754, 'Edging', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_edging', 'Garden & Patio :: Landscaping & Garden Materials :: Edging', '', 0, 1, 0, '', '', ''),
  4204. (7755, 'Gravel/ Pebbles', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_gravel-pebbles', 'Garden & Patio :: Landscaping & Garden Materials :: Gravel/ Pebbles', '', 0, 1, 0, '', '', ''),
  4205. (7756, 'Lawn Aerators', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_lawn-aerators', 'Garden & Patio :: Landscaping & Garden Materials :: Lawn Aerators', '', 0, 1, 0, '', '', ''),
  4206. (7757, 'Membrane', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_membrane', 'Garden & Patio :: Landscaping & Garden Materials :: Membrane', '', 0, 1, 0, '', '', ''),
  4207. (7758, 'Slate', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_slate', 'Garden & Patio :: Landscaping & Garden Materials :: Slate', '', 0, 1, 0, '', '', ''),
  4208. (7759, 'Trellis Netting/ Mesh', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_trellis-netting-mesh', 'Garden & Patio :: Landscaping & Garden Materials :: Trellis Netting/ Mesh', '', 0, 1, 0, '', '', ''),
  4209. (7760, 'Not specified', 7639, 0, NULL, 'garden-patio_landscaping-garden-materials_not-specified', 'Garden & Patio :: Landscaping & Garden Materials :: Not specified', '', 0, 1, 0, '', '', ''),
  4210. (7761, 'Push Mowers', 7641, 0, NULL, 'garden-patio_lawnmowers_push-mowers', 'Garden & Patio :: Lawnmowers :: Push Mowers', '', 0, 1, 0, '', '', ''),
  4211. (7762, 'Ride-On Mowers', 7641, 0, NULL, 'garden-patio_lawnmowers_ride-on-mowers', 'Garden & Patio :: Lawnmowers :: Ride-On Mowers', '', 0, 1, 0, '', '', ''),
  4212. (7763, 'Lawnmower Parts & Accessories', 7641, 0, NULL, 'garden-patio_lawnmowers_lawnmower-parts-accessories', 'Garden & Patio :: Lawnmowers :: Lawnmower Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4213. (7764, 'Other Lawnmowers', 7641, 0, NULL, 'garden-patio_lawnmowers_other-lawnmowers', 'Garden & Patio :: Lawnmowers :: Other Lawnmowers', '', 0, 1, 0, '', '', ''),
  4214. (7765, 'Decking', 7640, 0, NULL, 'garden-patio_paving-decking_decking', 'Garden & Patio :: Paving & Decking :: Decking', '', 0, 1, 0, '', '', ''),
  4215. (7766, 'Decking Tools & Accessories', 7640, 0, NULL, 'garden-patio_paving-decking_decking-tools-accessories', 'Garden & Patio :: Paving & Decking :: Decking Tools & Accessories', '', 0, 1, 0, '', '', ''),
  4216. (7767, 'Paving', 7640, 0, NULL, 'garden-patio_paving-decking_paving', 'Garden & Patio :: Paving & Decking :: Paving', '', 0, 1, 0, '', '', ''),
  4217. (7768, 'Paving Tools & Accessories', 7640, 0, NULL, 'garden-patio_paving-decking_paving-tools-accessories', 'Garden & Patio :: Paving & Decking :: Paving Tools & Accessories', '', 0, 1, 0, '', '', ''),
  4218. (7769, 'Not specified', 7640, 0, NULL, 'garden-patio_paving-decking_not-specified', 'Garden & Patio :: Paving & Decking :: Not specified', '', 0, 1, 0, '', '', ''),
  4219. (7770, 'Annuals & Biennials', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_annuals-biennials', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Annuals & Biennials', '', 0, 1, 0, '', '', ''),
  4220. (7771, 'Aquatics/ Water Plants', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_aquatics-water-plants', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Aquatics/ Water Plants', '', 0, 1, 0, '', '', ''),
  4221. (7772, 'Bamboo', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_bamboo', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Bamboo', '', 0, 1, 0, '', '', ''),
  4222. (7773, 'Bonsai', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_bonsai', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Bonsai', '', 0, 1, 0, '', '', ''),
  4223. (7774, 'Bulbs, Corms & Rhizomes', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_bulbs-corms-rhizomes', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Bulbs, Corms & Rhizomes', '', 0, 1, 0, '', '', ''),
  4224. (7775, 'Cacti/ Succulents', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_cacti-succulents', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Cacti/ Succulents', '', 0, 1, 0, '', '', ''),
  4225. (7776, 'Climbers', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_climbers', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Climbers', '', 0, 1, 0, '', '', ''),
  4226. (7777, 'Ferns', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_ferns', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Ferns', '', 0, 1, 0, '', '', ''),
  4227. (7778, 'Fresh Flowers', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_fresh-flowers', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Fresh Flowers', '', 0, 1, 0, '', '', ''),
  4228. (7779, 'Grasses', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_grasses', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Grasses', '', 0, 1, 0, '', '', ''),
  4229. (7780, 'Hedging', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_hedging', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Hedging', '', 0, 1, 0, '', '', ''),
  4230. (7781, 'Herbs', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_herbs', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Herbs', '', 0, 1, 0, '', '', ''),
  4231. (7782, 'Hostas', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_hostas', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Hostas', '', 0, 1, 0, '', '', ''),
  4232. (7783, 'House Plants', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_house-plants', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: House Plants', '', 0, 1, 0, '', '', ''),
  4233. (7784, 'Orchids', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_orchids', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Orchids', '', 0, 1, 0, '', '', ''),
  4234. (7785, 'Perennials', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_perennials', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Perennials', '', 0, 1, 0, '', '', ''),
  4235. (7786, 'Roses', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_roses', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Roses', '', 0, 1, 0, '', '', ''),
  4236. (7787, 'Shrubs', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_shrubs', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Shrubs', '', 0, 1, 0, '', '', ''),
  4237. (7788, 'Trees', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_trees', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Trees', '', 0, 1, 0, '', '', ''),
  4238. (7789, 'Tropicals', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_tropicals', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Tropicals', '', 0, 1, 0, '', '', ''),
  4239. (7790, 'Vegetables/ Fruits', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_vegetables-fruits', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Vegetables/ Fruits', '', 0, 1, 0, '', '', ''),
  4240. (7791, 'Other Plants/ Seeds/ Bulbs', 7642, 0, NULL, 'garden-patio_plants-seeds-bulbs_other-plants-seeds-bulbs', 'Garden & Patio :: Plants/ Seeds/ Bulbs :: Other Plants/ Seeds/ Bulbs', '', 0, 1, 0, '', '', ''),
  4241. (7792, 'Fountains', 7643, 0, NULL, 'garden-patio_ponds-water-features_fountains', 'Garden & Patio :: Ponds & Water Features :: Fountains', '', 0, 1, 0, '', '', ''),
  4242. (7793, 'Koi & Pond Fish', 7643, 0, NULL, 'garden-patio_ponds-water-features_koi-pond-fish', 'Garden & Patio :: Ponds & Water Features :: Koi & Pond Fish', '', 0, 1, 0, '', '', ''),
  4243. (7794, 'Pond Filters', 7643, 0, NULL, 'garden-patio_ponds-water-features_pond-filters', 'Garden & Patio :: Ponds & Water Features :: Pond Filters', '', 0, 1, 0, '', '', ''),
  4244. (7795, 'Pond Lighting', 7643, 0, NULL, 'garden-patio_ponds-water-features_pond-lighting', 'Garden & Patio :: Ponds & Water Features :: Pond Lighting', '', 0, 1, 0, '', '', ''),
  4245. (7796, 'Pond Liners', 7643, 0, NULL, 'garden-patio_ponds-water-features_pond-liners', 'Garden & Patio :: Ponds & Water Features :: Pond Liners', '', 0, 1, 0, '', '', ''),
  4246. (7797, 'Pumps & Valves', 7643, 0, NULL, 'garden-patio_ponds-water-features_pumps-valves', 'Garden & Patio :: Ponds & Water Features :: Pumps & Valves', '', 0, 1, 0, '', '', ''),
  4247. (7798, 'Water Features', 7643, 0, NULL, 'garden-patio_ponds-water-features_water-features', 'Garden & Patio :: Ponds & Water Features :: Water Features', '', 0, 1, 0, '', '', ''),
  4248. (7799, 'Other Ponds & Water Features', 7643, 0, NULL, 'garden-patio_ponds-water-features_other-ponds-water-features', 'Garden & Patio :: Ponds & Water Features :: Other Ponds & Water Features', '', 0, 1, 0, '', '', ''),
  4249. (7800, 'Basket Liners', 7644, 0, NULL, 'garden-patio_pots-window-boxes-baskets_basket-liners', 'Garden & Patio :: Pots/ Window Boxes/ Baskets :: Basket Liners', '', 0, 1, 0, '', '', ''),
  4250. (7801, 'Ceramic', 7644, 0, NULL, 'garden-patio_pots-window-boxes-baskets_ceramic', 'Garden & Patio :: Pots/ Window Boxes/ Baskets :: Ceramic', '', 0, 1, 0, '', '', ''),
  4251. (7802, 'Metal', 7644, 0, NULL, 'garden-patio_pots-window-boxes-baskets_metal', 'Garden & Patio :: Pots/ Window Boxes/ Baskets :: Metal', '', 0, 1, 0, '', '', ''),
  4252. (7803, 'Plastic', 7644, 0, NULL, 'garden-patio_pots-window-boxes-baskets_plastic', 'Garden & Patio :: Pots/ Window Boxes/ Baskets :: Plastic', '', 0, 1, 0, '', '', ''),
  4253. (7804, 'Wooden', 7644, 0, NULL, 'garden-patio_pots-window-boxes-baskets_wooden', 'Garden & Patio :: Pots/ Window Boxes/ Baskets :: Wooden', '', 0, 1, 0, '', '', ''),
  4254. (7805, 'Other Pots/ Boxes/ Baskets', 7644, 0, NULL, 'garden-patio_pots-window-boxes-baskets_other-pots-boxes-baskets', 'Garden & Patio :: Pots/ Window Boxes/ Baskets :: Other Pots/ Boxes/ Baskets', '', 0, 1, 0, '', '', ''),
  4255. (7806, 'Chainsaws', 7645, 0, NULL, 'garden-patio_power-tools-equipment_chainsaws', 'Garden & Patio :: Power Tools & Equipment :: Chainsaws', '', 0, 1, 0, '', '', ''),
  4256. (7807, 'Chainsaw Parts & Accessories', 7645, 0, NULL, 'garden-patio_power-tools-equipment_chainsaw-parts-accessories', 'Garden & Patio :: Power Tools & Equipment :: Chainsaw Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4257. (7808, 'Chippers/Shredders/Mulchers', 7645, 0, NULL, 'garden-patio_power-tools-equipment_chippers-shredders-mulchers', 'Garden & Patio :: Power Tools & Equipment :: Chippers/Shredders/Mulchers', '', 0, 1, 0, '', '', ''),
  4258. (7809, 'Hedge Trimmers', 7645, 0, NULL, 'garden-patio_power-tools-equipment_hedge-trimmers', 'Garden & Patio :: Power Tools & Equipment :: Hedge Trimmers', '', 0, 1, 0, '', '', ''),
  4259. (7810, 'Leaf Blowers & Vacuums', 7645, 0, NULL, 'garden-patio_power-tools-equipment_leaf-blowers-vacuums', 'Garden & Patio :: Power Tools & Equipment :: Leaf Blowers & Vacuums', '', 0, 1, 0, '', '', ''),
  4260. (7811, 'Log Splitters', 7645, 0, NULL, 'garden-patio_power-tools-equipment_log-splitters', 'Garden & Patio :: Power Tools & Equipment :: Log Splitters', '', 0, 1, 0, '', '', ''),
  4261. (7812, 'Rotovators/Aerators', 7645, 0, NULL, 'garden-patio_power-tools-equipment_rotovators-aerators', 'Garden & Patio :: Power Tools & Equipment :: Rotovators/Aerators', '', 0, 1, 0, '', '', ''),
  4262. (7813, 'Pressure Washers', 7645, 0, NULL, 'garden-patio_power-tools-equipment_pressure-washers', 'Garden & Patio :: Power Tools & Equipment :: Pressure Washers', '', 0, 1, 0, '', '', ''),
  4263. (7814, 'Strimmers', 7645, 0, NULL, 'garden-patio_power-tools-equipment_strimmers', 'Garden & Patio :: Power Tools & Equipment :: Strimmers', '', 0, 1, 0, '', '', ''),
  4264. (7815, 'Strimmer Parts & Accessories', 7645, 0, NULL, 'garden-patio_power-tools-equipment_strimmer-parts-accessories', 'Garden & Patio :: Power Tools & Equipment :: Strimmer Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4265. (7816, 'Other Power Tools & Equipment', 7645, 0, NULL, 'garden-patio_power-tools-equipment_other-power-tools-equipment', 'Garden & Patio :: Power Tools & Equipment :: Other Power Tools & Equipment', '', 0, 1, 0, '', '', ''),
  4266. (7817, 'Swimming Pools', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_swimming-pools', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Swimming Pools', '', 0, 1, 0, '', '', ''),
  4267. (7818, 'Swimming Pools Chemicals', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_swimming-pools-chemicals', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Swimming Pools Chemicals', '', 0, 1, 0, '', '', ''),
  4268. (7819, 'Hot Tubs', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_hot-tubs', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Hot Tubs', '', 0, 1, 0, '', '', ''),
  4269. (7820, 'Swimming Pool Cleaners', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_swimming-pool-cleaners', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Swimming Pool Cleaners', '', 0, 1, 0, '', '', ''),
  4270. (7821, 'Swimming Pool Covers', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_swimming-pool-covers', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Swimming Pool Covers', '', 0, 1, 0, '', '', ''),
  4271. (7822, 'Swimming Pool Floats', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_swimming-pool-floats', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Swimming Pool Floats', '', 0, 1, 0, '', '', ''),
  4272. (7823, 'Swimming Pool Pumps', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_swimming-pool-pumps', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Swimming Pool Pumps', '', 0, 1, 0, '', '', ''),
  4273. (7824, 'Other Swimming Pool & Hot Tub', 7646, 0, NULL, 'garden-patio_swimming-pools-hot-tubs_other-swimming-pool-hot-tub', 'Garden & Patio :: Swimming Pools & Hot Tubs :: Other Swimming Pool & Hot Tub', '', 0, 1, 0, '', '', ''),
  4274. (7825, 'Insects', 7647, 0, NULL, 'garden-patio_weed-pest-control_insects', 'Garden & Patio :: Weed/ Pest Control :: Insects', '', 0, 1, 0, '', '', ''),
  4275. (7826, 'Mice/ Moles/ Rodents', 7647, 0, NULL, 'garden-patio_weed-pest-control_mice-moles-rodents', 'Garden & Patio :: Weed/ Pest Control :: Mice/ Moles/ Rodents', '', 0, 1, 0, '', '', ''),
  4276. (7827, 'Weeds', 7647, 0, NULL, 'garden-patio_weed-pest-control_weeds', 'Garden & Patio :: Weed/ Pest Control :: Weeds', '', 0, 1, 0, '', '', ''),
  4277. (7828, 'Other Pest Control', 7647, 0, NULL, 'garden-patio_weed-pest-control_other-pest-control', 'Garden & Patio :: Weed/ Pest Control :: Other Pest Control', '', 0, 1, 0, '', '', ''),
  4278. (7829, 'Bath & Body', 3693, 0, NULL, 'health-beauty_bath-body', 'Health & Beauty :: Bath & Body', '', 0, 1, 0, '', '', ''),
  4279. (7830, 'Dental Care', 3693, 0, NULL, 'health-beauty_dental-care', 'Health & Beauty :: Dental Care', '', 0, 1, 0, '', '', ''),
  4280. (7831, 'Diet & Weight Loss', 3693, 0, NULL, 'health-beauty_diet-weight-loss', 'Health & Beauty :: Diet & Weight Loss', '', 0, 1, 0, '', '', ''),
  4281. (7832, 'Facial Skin Care', 3693, 0, NULL, 'health-beauty_facial-skin-care', 'Health & Beauty :: Facial Skin Care', '', 0, 1, 0, '', '', ''),
  4282. (7833, 'Fragrances', 3693, 0, NULL, 'health-beauty_fragrances', 'Health & Beauty :: Fragrances', '', 0, 1, 0, '', '', ''),
  4283. (7834, 'Hair Care & Styling', 3693, 0, NULL, 'health-beauty_hair-care-styling', 'Health & Beauty :: Hair Care & Styling', '', 0, 1, 0, '', '', ''),
  4284. (7835, 'Health Care', 3693, 0, NULL, 'health-beauty_health-care', 'Health & Beauty :: Health Care', '', 0, 1, 0, '', '', ''),
  4285. (7836, 'Make-Up', 3693, 0, NULL, 'health-beauty_make-up', 'Health & Beauty :: Make-Up', '', 0, 1, 0, '', '', ''),
  4286. (7837, 'Manicure & Pedicure', 3693, 0, NULL, 'health-beauty_manicure-pedicure', 'Health & Beauty :: Manicure & Pedicure', '', 0, 1, 0, '', '', ''),
  4287. (7838, 'Massage', 3693, 0, NULL, 'health-beauty_massage', 'Health & Beauty :: Massage', '', 0, 1, 0, '', '', ''),
  4288. (7839, 'Mobility, Disability & Medical', 3693, 0, NULL, 'health-beauty_mobility-disability-medical', 'Health & Beauty :: Mobility, Disability & Medical', '', 0, 1, 0, '', '', ''),
  4289. (7840, 'Natural & Alternative Remedies', 3693, 0, NULL, 'health-beauty_natural-alternative-remedies', 'Health & Beauty :: Natural & Alternative Remedies', '', 0, 1, 0, '', '', ''),
  4290. (7841, 'Over-the-Counter Medicine', 3693, 0, NULL, 'health-beauty_over-the-counter-medicine', 'Health & Beauty :: Over-the-Counter Medicine', '', 0, 1, 0, '', '', ''),
  4291. (7843, 'Shaving & Hair Removal', 3693, 0, NULL, 'health-beauty_shaving-hair-removal', 'Health & Beauty :: Shaving & Hair Removal', '', 0, 1, 0, '', '', ''),
  4292. (7844, 'Sun Care & Tanning', 3693, 0, NULL, 'health-beauty_sun-care-tanning', 'Health & Beauty :: Sun Care & Tanning', '', 0, 1, 0, '', '', ''),
  4293. (7845, 'Tattoos & Body Art', 3693, 0, NULL, 'health-beauty_tattoos-body-art', 'Health & Beauty :: Tattoos & Body Art', '', 0, 1, 0, '', '', ''),
  4294. (7846, 'Vision Care', 3693, 0, NULL, 'health-beauty_vision-care', 'Health & Beauty :: Vision Care', '', 0, 1, 0, '', '', ''),
  4295. (7847, 'Vitamins & Supplements', 3693, 0, NULL, 'health-beauty_vitamins-supplements', 'Health & Beauty :: Vitamins & Supplements', '', 0, 1, 0, '', '', ''),
  4296. (7848, 'Other Health & Beauty', 3693, 0, NULL, 'health-beauty_other-health-beauty', 'Health & Beauty :: Other Health & Beauty', '', 0, 1, 0, '', '', ''),
  4297. (7849, 'Bath Bombs', 7829, 0, NULL, 'health-beauty_bath-body_bath-bombs', 'Health & Beauty :: Bath & Body :: Bath Bombs', '', 0, 1, 0, '', '', ''),
  4298. (7850, 'Bath Brushes & Sponges', 7829, 0, NULL, 'health-beauty_bath-body_bath-brushes-sponges', 'Health & Beauty :: Bath & Body :: Bath Brushes & Sponges', '', 0, 1, 0, '', '', ''),
  4299. (7851, 'Bath Oils', 7829, 0, NULL, 'health-beauty_bath-body_bath-oils', 'Health & Beauty :: Bath & Body :: Bath Oils', '', 0, 1, 0, '', '', ''),
  4300. (7852, 'Bath Salts', 7829, 0, NULL, 'health-beauty_bath-body_bath-salts', 'Health & Beauty :: Bath & Body :: Bath Salts', '', 0, 1, 0, '', '', ''),
  4301. (7853, 'Bath Sets & Kits', 7829, 0, NULL, 'health-beauty_bath-body_bath-sets-kits', 'Health & Beauty :: Bath & Body :: Bath Sets & Kits', '', 0, 1, 0, '', '', ''),
  4302. (7854, 'Body Cleansers', 7829, 0, NULL, 'health-beauty_bath-body_body-cleansers', 'Health & Beauty :: Bath & Body :: Body Cleansers', '', 0, 1, 0, '', '', ''),
  4303. (7855, 'Body Moisturisers', 7829, 0, NULL, 'health-beauty_bath-body_body-moisturisers', 'Health & Beauty :: Bath & Body :: Body Moisturisers', '', 0, 1, 0, '', '', ''),
  4304. (7856, 'Body Powders', 7829, 0, NULL, 'health-beauty_bath-body_body-powders', 'Health & Beauty :: Bath & Body :: Body Powders', '', 0, 1, 0, '', '', ''),
  4305. (7857, 'Body Scrubs', 7829, 0, NULL, 'health-beauty_bath-body_body-scrubs', 'Health & Beauty :: Bath & Body :: Body Scrubs', '', 0, 1, 0, '', '', ''),
  4306. (7858, 'Body Sprays & Mists', 7829, 0, NULL, 'health-beauty_bath-body_body-sprays-mists', 'Health & Beauty :: Bath & Body :: Body Sprays & Mists', '', 0, 1, 0, '', '', ''),
  4307. (7859, 'Bubble Bath', 7829, 0, NULL, 'health-beauty_bath-body_bubble-bath', 'Health & Beauty :: Bath & Body :: Bubble Bath', '', 0, 1, 0, '', '', ''),
  4308. (7860, 'Cellulite Treatments', 7829, 0, NULL, 'health-beauty_bath-body_cellulite-treatments', 'Health & Beauty :: Bath & Body :: Cellulite Treatments', '', 0, 1, 0, '', '', ''),
  4309. (7861, 'Deodorants & Anti-Perspirants', 7829, 0, NULL, 'health-beauty_bath-body_deodorants-anti-perspirants', 'Health & Beauty :: Bath & Body :: Deodorants & Anti-Perspirants', '', 0, 1, 0, '', '', ''),
  4310. (7862, 'Soap', 7829, 0, NULL, 'health-beauty_bath-body_soap', 'Health & Beauty :: Bath & Body :: Soap', '', 0, 1, 0, '', '', ''),
  4311. (7863, 'Travel & Sample Sizes', 7829, 0, NULL, 'health-beauty_bath-body_travel-sample-sizes', 'Health & Beauty :: Bath & Body :: Travel & Sample Sizes', '', 0, 1, 0, '', '', ''),
  4312. (7864, 'Gift Sets', 7829, 0, NULL, 'health-beauty_bath-body_gift-sets', 'Health & Beauty :: Bath & Body :: Gift Sets', '', 0, 1, 0, '', '', ''),
  4313. (7865, 'Mixed Items', 7829, 0, NULL, 'health-beauty_bath-body_mixed-items', 'Health & Beauty :: Bath & Body :: Mixed Items', '', 0, 1, 0, '', '', ''),
  4314. (7866, 'Other Bath & Body', 7829, 0, NULL, 'health-beauty_bath-body_other-bath-body', 'Health & Beauty :: Bath & Body :: Other Bath & Body', '', 0, 1, 0, '', '', ''),
  4315. (7867, 'Dental Floss', 7830, 0, NULL, 'health-beauty_dental-care_dental-floss', 'Health & Beauty :: Dental Care :: Dental Floss', '', 0, 1, 0, '', '', ''),
  4316. (7868, 'Electric Toothbrushes', 7830, 0, NULL, 'health-beauty_dental-care_electric-toothbrushes', 'Health & Beauty :: Dental Care :: Electric Toothbrushes', '', 0, 1, 0, '', '', ''),
  4317. (7869, 'Electric Toothbrush Heads', 7830, 0, NULL, 'health-beauty_dental-care_electric-toothbrush-heads', 'Health & Beauty :: Dental Care :: Electric Toothbrush Heads', '', 0, 1, 0, '', '', ''),
  4318. (7870, 'Manual Toothbrushes', 7830, 0, NULL, 'health-beauty_dental-care_manual-toothbrushes', 'Health & Beauty :: Dental Care :: Manual Toothbrushes', '', 0, 1, 0, '', '', ''),
  4319. (7871, 'Teeth Whitening', 7830, 0, NULL, 'health-beauty_dental-care_teeth-whitening', 'Health & Beauty :: Dental Care :: Teeth Whitening', '', 0, 1, 0, '', '', ''),
  4320. (7872, 'Toothpaste', 7830, 0, NULL, 'health-beauty_dental-care_toothpaste', 'Health & Beauty :: Dental Care :: Toothpaste', '', 0, 1, 0, '', '', ''),
  4321. (7873, 'Other Dental Care', 7830, 0, NULL, 'health-beauty_dental-care_other-dental-care', 'Health & Beauty :: Dental Care :: Other Dental Care', '', 0, 1, 0, '', '', ''),
  4322. (7874, 'Body Wraps', 7831, 0, NULL, 'health-beauty_diet-weight-loss_body-wraps', 'Health & Beauty :: Diet & Weight Loss :: Body Wraps', '', 0, 1, 0, '', '', ''),
  4323. (7875, 'Diaries & Calculators', 7831, 0, NULL, 'health-beauty_diet-weight-loss_diaries-calculators', 'Health & Beauty :: Diet & Weight Loss :: Diaries & Calculators', '', 0, 1, 0, '', '', ''),
  4324. (7876, 'Drinks & Shakes', 7831, 0, NULL, 'health-beauty_diet-weight-loss_drinks-shakes', 'Health & Beauty :: Diet & Weight Loss :: Drinks & Shakes', '', 0, 1, 0, '', '', ''),
  4325. (7877, 'Foods, Bars & Snacks', 7831, 0, NULL, 'health-beauty_diet-weight-loss_foods-bars-snacks', 'Health & Beauty :: Diet & Weight Loss :: Foods, Bars & Snacks', '', 0, 1, 0, '', '', ''),
  4326. (7878, 'Pills, Tablets & Capsules', 7831, 0, NULL, 'health-beauty_diet-weight-loss_pills-tablets-capsules', 'Health & Beauty :: Diet & Weight Loss :: Pills, Tablets & Capsules', '', 0, 1, 0, '', '', ''),
  4327. (7879, 'Programmes', 7831, 0, NULL, 'health-beauty_diet-weight-loss_programmes', 'Health & Beauty :: Diet & Weight Loss :: Programmes', '', 0, 1, 0, '', '', ''),
  4328. (7880, 'Other Diet & Weight Loss', 7831, 0, NULL, 'health-beauty_diet-weight-loss_other-diet-weight-loss', 'Health & Beauty :: Diet & Weight Loss :: Other Diet & Weight Loss', '', 0, 1, 0, '', '', ''),
  4329. (7881, 'Acne & Blemish Treatments', 7832, 0, NULL, 'health-beauty_facial-skin-care_acne-blemish-treatments', 'Health & Beauty :: Facial Skin Care :: Acne & Blemish Treatments', '', 0, 1, 0, '', '', ''),
  4330. (7882, 'Anti-Ageing', 7832, 0, NULL, 'health-beauty_facial-skin-care_anti-ageing', 'Health & Beauty :: Facial Skin Care :: Anti-Ageing', '', 0, 1, 0, '', '', ''),
  4331. (7883, 'Blotting Paper', 7832, 0, NULL, 'health-beauty_facial-skin-care_blotting-paper', 'Health & Beauty :: Facial Skin Care :: Blotting Paper', '', 0, 1, 0, '', '', ''),
  4332. (7884, 'Cleansers & Toners', 7832, 0, NULL, 'health-beauty_facial-skin-care_cleansers-toners', 'Health & Beauty :: Facial Skin Care :: Cleansers & Toners', '', 0, 1, 0, '', '', ''),
  4333. (7885, 'Cotton & Cloth', 7832, 0, NULL, 'health-beauty_facial-skin-care_cotton-cloth', 'Health & Beauty :: Facial Skin Care :: Cotton & Cloth', '', 0, 1, 0, '', '', ''),
  4334. (7886, 'Exfoliators & Scrubs', 7832, 0, NULL, 'health-beauty_facial-skin-care_exfoliators-scrubs', 'Health & Beauty :: Facial Skin Care :: Exfoliators & Scrubs', '', 0, 1, 0, '', '', ''),
  4335. (7887, 'Eye Treatments & Masks', 7832, 0, NULL, 'health-beauty_facial-skin-care_eye-treatments-masks', 'Health & Beauty :: Facial Skin Care :: Eye Treatments & Masks', '', 0, 1, 0, '', '', ''),
  4336. (7888, 'Home Skin Care Devices', 7832, 0, NULL, 'health-beauty_facial-skin-care_home-skin-care-devices', 'Health & Beauty :: Facial Skin Care :: Home Skin Care Devices', '', 0, 1, 0, '', '', ''),
  4337. (7889, 'Lightening Creams', 7832, 0, NULL, 'health-beauty_facial-skin-care_lightening-creams', 'Health & Beauty :: Facial Skin Care :: Lightening Creams', '', 0, 1, 0, '', '', ''),
  4338. (7890, 'Lip Balm & Treatments', 7832, 0, NULL, 'health-beauty_facial-skin-care_lip-balm-treatments', 'Health & Beauty :: Facial Skin Care :: Lip Balm & Treatments', '', 0, 1, 0, '', '', ''),
  4339. (7891, 'Make-Up Removers', 7832, 0, NULL, 'health-beauty_facial-skin-care_make-up-removers', 'Health & Beauty :: Facial Skin Care :: Make-Up Removers', '', 0, 1, 0, '', '', ''),
  4340. (7892, 'Masks & Peels', 7832, 0, NULL, 'health-beauty_facial-skin-care_masks-peels', 'Health & Beauty :: Facial Skin Care :: Masks & Peels', '', 0, 1, 0, '', '', ''),
  4341. (7893, 'Microdermabrasion', 7832, 0, NULL, 'health-beauty_facial-skin-care_microdermabrasion', 'Health & Beauty :: Facial Skin Care :: Microdermabrasion', '', 0, 1, 0, '', '', ''),
  4342. (7894, 'Moisturisers', 7832, 0, NULL, 'health-beauty_facial-skin-care_moisturisers', 'Health & Beauty :: Facial Skin Care :: Moisturisers', '', 0, 1, 0, '', '', ''),
  4343. (7895, 'Night Treatments', 7832, 0, NULL, 'health-beauty_facial-skin-care_night-treatments', 'Health & Beauty :: Facial Skin Care :: Night Treatments', '', 0, 1, 0, '', '', ''),
  4344. (7896, 'Kits & Gift-Sets', 7832, 0, NULL, 'health-beauty_facial-skin-care_kits-gift-sets', 'Health & Beauty :: Facial Skin Care :: Kits & Gift-Sets', '', 0, 1, 0, '', '', ''),
  4345. (7897, 'Travel & Sample Sizes', 7832, 0, NULL, 'health-beauty_facial-skin-care_travel-sample-sizes', 'Health & Beauty :: Facial Skin Care :: Travel & Sample Sizes', '', 0, 1, 0, '', '', ''),
  4346. (7898, 'Other Facial Skin Care', 7832, 0, NULL, 'health-beauty_facial-skin-care_other-facial-skin-care', 'Health & Beauty :: Facial Skin Care :: Other Facial Skin Care', '', 0, 1, 0, '', '', ''),
  4347. (7899, 'Children's Fragrances', 7833, 0, NULL, 'health-beauty_fragrances_childrens-fragrances', 'Health & Beauty :: Fragrances :: Children's Fragrances', '', 0, 1, 0, '', '', ''),
  4348. (7900, 'Men's Fragrances & Aftershaves', 7833, 0, NULL, 'health-beauty_fragrances_mens-fragrances-aftershaves', 'Health & Beauty :: Fragrances :: Men's Fragrances & Aftershaves', '', 0, 1, 0, '', '', ''),
  4349. (7901, 'Unisex Fragrances', 7833, 0, NULL, 'health-beauty_fragrances_unisex-fragrances', 'Health & Beauty :: Fragrances :: Unisex Fragrances', '', 0, 1, 0, '', '', ''),
  4350. (7902, 'Women's Fragrances', 7833, 0, NULL, 'health-beauty_fragrances_womens-fragrances', 'Health & Beauty :: Fragrances :: Women's Fragrances', '', 0, 1, 0, '', '', ''),
  4351. (7903, 'Brushes & Combs', 7834, 0, NULL, 'health-beauty_hair-care-styling_brushes-combs', 'Health & Beauty :: Hair Care & Styling :: Brushes & Combs', '', 0, 1, 0, '', '', ''),
  4352. (7904, 'Bands, Clips & Styling Accs', 7834, 0, NULL, 'health-beauty_hair-care-styling_bands-clips-styling-accs', 'Health & Beauty :: Hair Care & Styling :: Bands, Clips & Styling Accs', '', 0, 1, 0, '', '', ''),
  4353. (7905, 'Curling Tongs & Straighteners', 7834, 0, NULL, 'health-beauty_hair-care-styling_curling-tongs-straighteners', 'Health & Beauty :: Hair Care & Styling :: Curling Tongs & Straighteners', '', 0, 1, 0, '', '', ''),
  4354. (7906, 'Hair Colourants', 7834, 0, NULL, 'health-beauty_hair-care-styling_hair-colourants', 'Health & Beauty :: Hair Care & Styling :: Hair Colourants', '', 0, 1, 0, '', '', ''),
  4355. (7907, 'Hair Dryers', 7834, 0, NULL, 'health-beauty_hair-care-styling_hair-dryers', 'Health & Beauty :: Hair Care & Styling :: Hair Dryers', '', 0, 1, 0, '', '', ''),
  4356. (7908, 'Hair Loss Treatments', 7834, 0, NULL, 'health-beauty_hair-care-styling_hair-loss-treatments', 'Health & Beauty :: Hair Care & Styling :: Hair Loss Treatments', '', 0, 1, 0, '', '', ''),
  4357. (7909, 'Medicated Hair Treatments', 7834, 0, NULL, 'health-beauty_hair-care-styling_medicated-hair-treatments', 'Health & Beauty :: Hair Care & Styling :: Medicated Hair Treatments', '', 0, 1, 0, '', '', ''),
  4358. (7910, 'Perms', 7834, 0, NULL, 'health-beauty_hair-care-styling_perms', 'Health & Beauty :: Hair Care & Styling :: Perms', '', 0, 1, 0, '', '', ''),
  4359. (7911, 'Rollers & Curlers', 7834, 0, NULL, 'health-beauty_hair-care-styling_rollers-curlers', 'Health & Beauty :: Hair Care & Styling :: Rollers & Curlers', '', 0, 1, 0, '', '', ''),
  4360. (7912, 'Serums & Oils', 7834, 0, NULL, 'health-beauty_hair-care-styling_serums-oils', 'Health & Beauty :: Hair Care & Styling :: Serums & Oils', '', 0, 1, 0, '', '', ''),
  4361. (7913, 'Sets & Kits', 7834, 0, NULL, 'health-beauty_hair-care-styling_sets-kits', 'Health & Beauty :: Hair Care & Styling :: Sets & Kits', '', 0, 1, 0, '', '', ''),
  4362. (7914, 'Shampoos & Conditioning', 7834, 0, NULL, 'health-beauty_hair-care-styling_shampoos-conditioning', 'Health & Beauty :: Hair Care & Styling :: Shampoos & Conditioning', '', 0, 1, 0, '', '', ''),
  4363. (7915, 'Straighten/Smoothing Products', 7834, 0, NULL, 'health-beauty_hair-care-styling_straighten-smoothing-products', 'Health & Beauty :: Hair Care & Styling :: Straighten/Smoothing Products', '', 0, 1, 0, '', '', ''),
  4364. (7916, 'Styling Products', 7834, 0, NULL, 'health-beauty_hair-care-styling_styling-products', 'Health & Beauty :: Hair Care & Styling :: Styling Products', '', 0, 1, 0, '', '', ''),
  4365. (7917, 'Travel & Sample Sizes', 7834, 0, NULL, 'health-beauty_hair-care-styling_travel-sample-sizes', 'Health & Beauty :: Hair Care & Styling :: Travel & Sample Sizes', '', 0, 1, 0, '', '', ''),
  4366. (7918, 'Other Hair Care & Styling', 7834, 0, NULL, 'health-beauty_hair-care-styling_other-hair-care-styling', 'Health & Beauty :: Hair Care & Styling :: Other Hair Care & Styling', '', 0, 1, 0, '', '', ''),
  4367. (7919, 'Blood Pressure Testing', 7835, 0, NULL, 'health-beauty_health-care_blood-pressure-testing', 'Health & Beauty :: Health Care :: Blood Pressure Testing', '', 0, 1, 0, '', '', ''),
  4368. (7920, 'Feminine Care', 7835, 0, NULL, 'health-beauty_health-care_feminine-care', 'Health & Beauty :: Health Care :: Feminine Care', '', 0, 1, 0, '', '', ''),
  4369. (7921, 'First Aid', 7835, 0, NULL, 'health-beauty_health-care_first-aid', 'Health & Beauty :: Health Care :: First Aid', '', 0, 1, 0, '', '', ''),
  4370. (7922, 'Foot Care', 7835, 0, NULL, 'health-beauty_health-care_foot-care', 'Health & Beauty :: Health Care :: Foot Care', '', 0, 1, 0, '', '', ''),
  4371. (7923, 'Hot Water Bottles', 7835, 0, NULL, 'health-beauty_health-care_hot-water-bottles', 'Health & Beauty :: Health Care :: Hot Water Bottles', '', 0, 1, 0, '', '', ''),
  4372. (7924, 'Hot Water Bottle Covers', 7835, 0, NULL, 'health-beauty_health-care_hot-water-bottle-covers', 'Health & Beauty :: Health Care :: Hot Water Bottle Covers', '', 0, 1, 0, '', '', ''),
  4373. (7925, 'Quit Smoking', 7835, 0, NULL, 'health-beauty_health-care_quit-smoking', 'Health & Beauty :: Health Care :: Quit Smoking', '', 0, 1, 0, '', '', ''),
  4374. (7926, 'Relaxation Aids', 7835, 0, NULL, 'health-beauty_health-care_relaxation-aids', 'Health & Beauty :: Health Care :: Relaxation Aids', '', 0, 1, 0, '', '', ''),
  4375. (7927, 'Sexual Health', 7835, 0, NULL, 'health-beauty_health-care_sexual-health', 'Health & Beauty :: Health Care :: Sexual Health', '', 0, 1, 0, '', '', ''),
  4376. (7928, 'Sleeping Aids', 7835, 0, NULL, 'health-beauty_health-care_sleeping-aids', 'Health & Beauty :: Health Care :: Sleeping Aids', '', 0, 1, 0, '', '', ''),
  4377. (7929, 'Other Health Care', 7835, 0, NULL, 'health-beauty_health-care_other-health-care', 'Health & Beauty :: Health Care :: Other Health Care', '', 0, 1, 0, '', '', ''),
  4378. (7930, 'Body', 7836, 0, NULL, 'health-beauty_make-up_body', 'Health & Beauty :: Make-Up :: Body', '', 0, 1, 0, '', '', ''),
  4379. (7931, 'Eyes', 7836, 0, NULL, 'health-beauty_make-up_eyes', 'Health & Beauty :: Make-Up :: Eyes', '', 0, 1, 0, '', '', ''),
  4380. (7932, 'Face', 7836, 0, NULL, 'health-beauty_make-up_face', 'Health & Beauty :: Make-Up :: Face', '', 0, 1, 0, '', '', ''),
  4381. (7933, 'Lips', 7836, 0, NULL, 'health-beauty_make-up_lips', 'Health & Beauty :: Make-Up :: Lips', '', 0, 1, 0, '', '', ''),
  4382. (7934, 'Make-Up Cases & Bags', 7836, 0, NULL, 'health-beauty_make-up_make-up-cases-bags', 'Health & Beauty :: Make-Up :: Make-Up Cases & Bags', '', 0, 1, 0, '', '', ''),
  4383. (7935, 'Make-Up Tools & Accessories', 7836, 0, NULL, 'health-beauty_make-up_make-up-tools-accessories', 'Health & Beauty :: Make-Up :: Make-Up Tools & Accessories', '', 0, 1, 0, '', '', ''),
  4384. (7936, 'Mixed Items', 7836, 0, NULL, 'health-beauty_make-up_mixed-items', 'Health & Beauty :: Make-Up :: Mixed Items', '', 0, 1, 0, '', '', ''),
  4385. (7937, 'Sets & Kits', 7836, 0, NULL, 'health-beauty_make-up_sets-kits', 'Health & Beauty :: Make-Up :: Sets & Kits', '', 0, 1, 0, '', '', ''),
  4386. (7938, 'Travel & Sample Sizes', 7836, 0, NULL, 'health-beauty_make-up_travel-sample-sizes', 'Health & Beauty :: Make-Up :: Travel & Sample Sizes', '', 0, 1, 0, '', '', ''),
  4387. (7939, 'Other Make-Up', 7836, 0, NULL, 'health-beauty_make-up_other-make-up', 'Health & Beauty :: Make-Up :: Other Make-Up', '', 0, 1, 0, '', '', ''),
  4388. (7940, 'Acrylic & Fibreglass Products', 7837, 0, NULL, 'health-beauty_manicure-pedicure_acrylic-fibreglass-products', 'Health & Beauty :: Manicure & Pedicure :: Acrylic & Fibreglass Products', '', 0, 1, 0, '', '', ''),
  4389. (7941, 'Airbrushing', 7837, 0, NULL, 'health-beauty_manicure-pedicure_airbrushing', 'Health & Beauty :: Manicure & Pedicure :: Airbrushing', '', 0, 1, 0, '', '', ''),
  4390. (7942, 'Cuticle Treatments', 7837, 0, NULL, 'health-beauty_manicure-pedicure_cuticle-treatments', 'Health & Beauty :: Manicure & Pedicure :: Cuticle Treatments', '', 0, 1, 0, '', '', ''),
  4391. (7943, 'Electric Files & Tools', 7837, 0, NULL, 'health-beauty_manicure-pedicure_electric-files-tools', 'Health & Beauty :: Manicure & Pedicure :: Electric Files & Tools', '', 0, 1, 0, '', '', ''),
  4392. (7944, 'Foot Creams & Treatments', 7837, 0, NULL, 'health-beauty_manicure-pedicure_foot-creams-treatments', 'Health & Beauty :: Manicure & Pedicure :: Foot Creams & Treatments', '', 0, 1, 0, '', '', ''),
  4393. (7945, 'Gel & Shellac Polish', 7837, 0, NULL, 'health-beauty_manicure-pedicure_gel-shellac-polish', 'Health & Beauty :: Manicure & Pedicure :: Gel & Shellac Polish', '', 0, 1, 0, '', '', ''),
  4394. (7946, 'Gel Nail Products', 7837, 0, NULL, 'health-beauty_manicure-pedicure_gel-nail-products', 'Health & Beauty :: Manicure & Pedicure :: Gel Nail Products', '', 0, 1, 0, '', '', ''),
  4395. (7947, 'Hand Creams & Treatments', 7837, 0, NULL, 'health-beauty_manicure-pedicure_hand-creams-treatments', 'Health & Beauty :: Manicure & Pedicure :: Hand Creams & Treatments', '', 0, 1, 0, '', '', ''),
  4396. (7948, 'Manicure/Pedicure Tools & Kits', 7837, 0, NULL, 'health-beauty_manicure-pedicure_manicure-pedicure-tools-kits', 'Health & Beauty :: Manicure & Pedicure :: Manicure/Pedicure Tools & Kits', '', 0, 1, 0, '', '', ''),
  4397. (7949, 'Nail Art Supplies', 7837, 0, NULL, 'health-beauty_manicure-pedicure_nail-art-supplies', 'Health & Beauty :: Manicure & Pedicure :: Nail Art Supplies', '', 0, 1, 0, '', '', ''),
  4398. (7950, 'Nail Dryers & UV/LED Lamps', 7837, 0, NULL, 'health-beauty_manicure-pedicure_nail-dryers-uv-led-lamps', 'Health & Beauty :: Manicure & Pedicure :: Nail Dryers & UV/LED Lamps', '', 0, 1, 0, '', '', ''),
  4399. (7951, 'Nail Polish', 7837, 0, NULL, 'health-beauty_manicure-pedicure_nail-polish', 'Health & Beauty :: Manicure & Pedicure :: Nail Polish', '', 0, 1, 0, '', '', ''),
  4400. (7952, 'Nail Polish Remover', 7837, 0, NULL, 'health-beauty_manicure-pedicure_nail-polish-remover', 'Health & Beauty :: Manicure & Pedicure :: Nail Polish Remover', '', 0, 1, 0, '', '', ''),
  4401. (7953, 'Nail Practice & Displays', 7837, 0, NULL, 'health-beauty_manicure-pedicure_nail-practice-displays', 'Health & Beauty :: Manicure & Pedicure :: Nail Practice & Displays', '', 0, 1, 0, '', '', ''),
  4402. (7954, 'Nail Tips', 7837, 0, NULL, 'health-beauty_manicure-pedicure_nail-tips', 'Health & Beauty :: Manicure & Pedicure :: Nail Tips', '', 0, 1, 0, '', '', ''),
  4403. (7955, 'Spas, Baths & Supplies', 7837, 0, NULL, 'health-beauty_manicure-pedicure_spas-baths-supplies', 'Health & Beauty :: Manicure & Pedicure :: Spas, Baths & Supplies', '', 0, 1, 0, '', '', ''),
  4404. (7956, 'Storage & Empty Containers', 7837, 0, NULL, 'health-beauty_manicure-pedicure_storage-empty-containers', 'Health & Beauty :: Manicure & Pedicure :: Storage & Empty Containers', '', 0, 1, 0, '', '', ''),
  4405. (7957, 'Mixed Items', 7837, 0, NULL, 'health-beauty_manicure-pedicure_mixed-items', 'Health & Beauty :: Manicure & Pedicure :: Mixed Items', '', 0, 1, 0, '', '', ''),
  4406. (7958, 'Other Manicure & Pedicure', 7837, 0, NULL, 'health-beauty_manicure-pedicure_other-manicure-pedicure', 'Health & Beauty :: Manicure & Pedicure :: Other Manicure & Pedicure', '', 0, 1, 0, '', '', ''),
  4407. (7959, 'Instructional Books', 7838, 0, NULL, 'health-beauty_massage_instructional-books', 'Health & Beauty :: Massage :: Instructional Books', '', 0, 1, 0, '', '', ''),
  4408. (7960, 'Massage Chairs', 7838, 0, NULL, 'health-beauty_massage_massage-chairs', 'Health & Beauty :: Massage :: Massage Chairs', '', 0, 1, 0, '', '', ''),
  4409. (7961, 'Massage Oils & Creams', 7838, 0, NULL, 'health-beauty_massage_massage-oils-creams', 'Health & Beauty :: Massage :: Massage Oils & Creams', '', 0, 1, 0, '', '', ''),
  4410. (7962, 'Massage Stones & Rocks', 7838, 0, NULL, 'health-beauty_massage_massage-stones-rocks', 'Health & Beauty :: Massage :: Massage Stones & Rocks', '', 0, 1, 0, '', '', ''),
  4411. (7963, 'Massage Tables', 7838, 0, NULL, 'health-beauty_massage_massage-tables', 'Health & Beauty :: Massage :: Massage Tables', '', 0, 1, 0, '', '', ''),
  4412. (7964, 'Massagers', 7838, 0, NULL, 'health-beauty_massage_massagers', 'Health & Beauty :: Massage :: Massagers', '', 0, 1, 0, '', '', ''),
  4413. (7965, 'Other Massage', 7838, 0, NULL, 'health-beauty_massage_other-massage', 'Health & Beauty :: Massage :: Other Massage', '', 0, 1, 0, '', '', ''),
  4414. (7966, 'Bathing Aids & Bathroom Safety', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_bathing-aids-bathroom-safety', 'Health & Beauty :: Mobility, Disability & Medical :: Bathing Aids & Bathroom Safety', '', 0, 1, 0, '', '', ''),
  4415. (7967, 'Braces & Supports', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_braces-supports', 'Health & Beauty :: Mobility, Disability & Medical :: Braces & Supports', '', 0, 1, 0, '', '', ''),
  4416. (7968, 'Breathalysers', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_breathalysers', 'Health & Beauty :: Mobility, Disability & Medical :: Breathalysers', '', 0, 1, 0, '', '', ''),
  4417. (7969, 'Chairs', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_chairs', 'Health & Beauty :: Mobility, Disability & Medical :: Chairs', '', 0, 1, 0, '', '', ''),
  4418. (7970, 'Diabetic Aids', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_diabetic-aids', 'Health & Beauty :: Mobility, Disability & Medical :: Diabetic Aids', '', 0, 1, 0, '', '', ''),
  4419. (7971, 'Hearing Assistance', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_hearing-assistance', 'Health & Beauty :: Mobility, Disability & Medical :: Hearing Assistance', '', 0, 1, 0, '', '', ''),
  4420. (7972, 'Incontinence Aids', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_incontinence-aids', 'Health & Beauty :: Mobility, Disability & Medical :: Incontinence Aids', '', 0, 1, 0, '', '', ''),
  4421. (7973, 'Medication & Pill Reminders', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_medication-pill-reminders', 'Health & Beauty :: Mobility, Disability & Medical :: Medication & Pill Reminders', '', 0, 1, 0, '', '', ''),
  4422. (7974, 'Mobility Equipment', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_mobility-equipment', 'Health & Beauty :: Mobility, Disability & Medical :: Mobility Equipment', '', 0, 1, 0, '', '', ''),
  4423. (7975, 'Monitoring & Testing', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_monitoring-testing', 'Health & Beauty :: Mobility, Disability & Medical :: Monitoring & Testing', '', 0, 1, 0, '', '', ''),
  4424. (7976, 'Pill Holders & Boxes', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_pill-holders-boxes', 'Health & Beauty :: Mobility, Disability & Medical :: Pill Holders & Boxes', '', 0, 1, 0, '', '', ''),
  4425. (7977, 'Positioning Equipment', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_positioning-equipment', 'Health & Beauty :: Mobility, Disability & Medical :: Positioning Equipment', '', 0, 1, 0, '', '', ''),
  4426. (7978, 'Respiratory Aids', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_respiratory-aids', 'Health & Beauty :: Mobility, Disability & Medical :: Respiratory Aids', '', 0, 1, 0, '', '', ''),
  4427. (7979, 'Web Surfing Aids', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_web-surfing-aids', 'Health & Beauty :: Mobility, Disability & Medical :: Web Surfing Aids', '', 0, 1, 0, '', '', ''),
  4428. (7980, 'Other Mobility & Disability', 7839, 0, NULL, 'health-beauty_mobility-disability-medical_other-mobility-disability', 'Health & Beauty :: Mobility, Disability & Medical :: Other Mobility & Disability', '', 0, 1, 0, '', '', ''),
  4429. (7981, 'Acupuncture', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_acupuncture', 'Health & Beauty :: Natural & Alternative Remedies :: Acupuncture', '', 0, 1, 0, '', '', ''),
  4430. (7982, 'Aromatherapy', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_aromatherapy', 'Health & Beauty :: Natural & Alternative Remedies :: Aromatherapy', '', 0, 1, 0, '', '', ''),
  4431. (7983, 'Healing', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_healing', 'Health & Beauty :: Natural & Alternative Remedies :: Healing', '', 0, 1, 0, '', '', ''),
  4432. (7984, 'Herbs & Resins', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_herbs-resins', 'Health & Beauty :: Natural & Alternative Remedies :: Herbs & Resins', '', 0, 1, 0, '', '', ''),
  4433. (7985, 'Homeopathic & Herbal Remedies', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_homeopathic-herbal-remedies', 'Health & Beauty :: Natural & Alternative Remedies :: Homeopathic & Herbal Remedies', '', 0, 1, 0, '', '', ''),
  4434. (7986, 'Hypnotism & Hypnotherapy', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_hypnotism-hypnotherapy', 'Health & Beauty :: Natural & Alternative Remedies :: Hypnotism & Hypnotherapy', '', 0, 1, 0, '', '', ''),
  4435. (7987, 'Magnets', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_magnets', 'Health & Beauty :: Natural & Alternative Remedies :: Magnets', '', 0, 1, 0, '', '', ''),
  4436. (7988, 'Meditation & Relaxation', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_meditation-relaxation', 'Health & Beauty :: Natural & Alternative Remedies :: Meditation & Relaxation', '', 0, 1, 0, '', '', ''),
  4437. (7989, 'Reflexology', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_reflexology', 'Health & Beauty :: Natural & Alternative Remedies :: Reflexology', '', 0, 1, 0, '', '', ''),
  4438. (7990, 'Reiki & Chakras', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_reiki-chakras', 'Health & Beauty :: Natural & Alternative Remedies :: Reiki & Chakras', '', 0, 1, 0, '', '', ''),
  4439. (7991, 'Yoga', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_yoga', 'Health & Beauty :: Natural & Alternative Remedies :: Yoga', '', 0, 1, 0, '', '', ''),
  4440. (7992, 'Other Natural Remedies', 7840, 0, NULL, 'health-beauty_natural-alternative-remedies_other-natural-remedies', 'Health & Beauty :: Natural & Alternative Remedies :: Other Natural Remedies', '', 0, 1, 0, '', '', ''),
  4441. (7993, 'Allergies, Sinus & Asthma', 7841, 0, NULL, 'health-beauty_over-the-counter-medicine_allergies-sinus-asthma', 'Health & Beauty :: Over-the-Counter Medicine :: Allergies, Sinus & Asthma', '', 0, 1, 0, '', '', ''),
  4442. (7994, 'Cough, Cold & Flu', 7841, 0, NULL, 'health-beauty_over-the-counter-medicine_cough-cold-flu', 'Health & Beauty :: Over-the-Counter Medicine :: Cough, Cold & Flu', '', 0, 1, 0, '', '', ''),
  4443. (7995, 'Digestive Health', 7841, 0, NULL, 'health-beauty_over-the-counter-medicine_digestive-health', 'Health & Beauty :: Over-the-Counter Medicine :: Digestive Health', '', 0, 1, 0, '', '', ''),
  4444. (7996, 'Pain Relief', 7841, 0, NULL, 'health-beauty_over-the-counter-medicine_pain-relief', 'Health & Beauty :: Over-the-Counter Medicine :: Pain Relief', '', 0, 1, 0, '', '', ''),
  4445. (7997, 'Other OTC Medicine', 7841, 0, NULL, 'health-beauty_over-the-counter-medicine_other-otc-medicine', 'Health & Beauty :: Over-the-Counter Medicine :: Other OTC Medicine', '', 0, 1, 0, '', '', ''),
  4446. (7998, 'Aftershave & Pre-Shave', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_aftershave-pre-shave', 'Health & Beauty :: Shaving & Hair Removal :: Aftershave & Pre-Shave', '', 0, 1, 0, '', '', ''),
  4447. (7999, 'Clippers & Trimmers', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_clippers-trimmers', 'Health & Beauty :: Shaving & Hair Removal :: Clippers & Trimmers', '', 0, 1, 0, '', '', ''),
  4448. (8000, 'Electric Shavers', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_electric-shavers', 'Health & Beauty :: Shaving & Hair Removal :: Electric Shavers', '', 0, 1, 0, '', '', ''),
  4449. (8001, 'Epilators & Electrolysis', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_epilators-electrolysis', 'Health & Beauty :: Shaving & Hair Removal :: Epilators & Electrolysis', '', 0, 1, 0, '', '', ''),
  4450. (8002, 'Hair Removal Creams & Sprays', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_hair-removal-creams-sprays', 'Health & Beauty :: Shaving & Hair Removal :: Hair Removal Creams & Sprays', '', 0, 1, 0, '', '', ''),
  4451. (8003, 'Laser Hair Removal & IPL', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_laser-hair-removal-ipl', 'Health & Beauty :: Shaving & Hair Removal :: Laser Hair Removal & IPL', '', 0, 1, 0, '', '', ''),
  4452. (8004, 'Razors & Razor Blades', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_razors-razor-blades', 'Health & Beauty :: Shaving & Hair Removal :: Razors & Razor Blades', '', 0, 1, 0, '', '', ''),
  4453. (8005, 'Shaving & Grooming Kits', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_shaving-grooming-kits', 'Health & Beauty :: Shaving & Hair Removal :: Shaving & Grooming Kits', '', 0, 1, 0, '', '', ''),
  4454. (8006, 'Shaving Brushes & Mugs', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_shaving-brushes-mugs', 'Health & Beauty :: Shaving & Hair Removal :: Shaving Brushes & Mugs', '', 0, 1, 0, '', '', ''),
  4455. (8007, 'Shaving Creams, Foams & Gels', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_shaving-creams-foams-gels', 'Health & Beauty :: Shaving & Hair Removal :: Shaving Creams, Foams & Gels', '', 0, 1, 0, '', '', ''),
  4456. (8008, 'Straight Razors', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_straight-razors', 'Health & Beauty :: Shaving & Hair Removal :: Straight Razors', '', 0, 1, 0, '', '', ''),
  4457. (8009, 'Tweezers', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_tweezers', 'Health & Beauty :: Shaving & Hair Removal :: Tweezers', '', 0, 1, 0, '', '', ''),
  4458. (8010, 'Waxing Supplies', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_waxing-supplies', 'Health & Beauty :: Shaving & Hair Removal :: Waxing Supplies', '', 0, 1, 0, '', '', ''),
  4459. (8011, 'Other Shaving & Hair Removal', 7843, 0, NULL, 'health-beauty_shaving-hair-removal_other-shaving-hair-removal', 'Health & Beauty :: Shaving & Hair Removal :: Other Shaving & Hair Removal', '', 0, 1, 0, '', '', ''),
  4460. (8012, 'After Sun', 7844, 0, NULL, 'health-beauty_sun-care-tanning_after-sun', 'Health & Beauty :: Sun Care & Tanning :: After Sun', '', 0, 1, 0, '', '', ''),
  4461. (8013, 'Fake Tun', 7844, 0, NULL, 'health-beauty_sun-care-tanning_fake-tun', 'Health & Beauty :: Sun Care & Tanning :: Fake Tun', '', 0, 1, 0, '', '', ''),
  4462. (8014, 'Sun Beds & Lamps', 7844, 0, NULL, 'health-beauty_sun-care-tanning_sun-beds-lamps', 'Health & Beauty :: Sun Care & Tanning :: Sun Beds & Lamps', '', 0, 1, 0, '', '', ''),
  4463. (8015, 'Sunscreens & Sunblocks', 7844, 0, NULL, 'health-beauty_sun-care-tanning_sunscreens-sunblocks', 'Health & Beauty :: Sun Care & Tanning :: Sunscreens & Sunblocks', '', 0, 1, 0, '', '', ''),
  4464. (8016, 'Tanning Lotions', 7844, 0, NULL, 'health-beauty_sun-care-tanning_tanning-lotions', 'Health & Beauty :: Sun Care & Tanning :: Tanning Lotions', '', 0, 1, 0, '', '', ''),
  4465. (8017, 'Other Sun Care & Tanning', 7844, 0, NULL, 'health-beauty_sun-care-tanning_other-sun-care-tanning', 'Health & Beauty :: Sun Care & Tanning :: Other Sun Care & Tanning', '', 0, 1, 0, '', '', ''),
  4466. (8018, 'Piercing Kits & Supplies', 7845, 0, NULL, 'health-beauty_tattoos-body-art_piercing-kits-supplies', 'Health & Beauty :: Tattoos & Body Art :: Piercing Kits & Supplies', '', 0, 1, 0, '', '', ''),
  4467. (8019, 'Henna', 7845, 0, NULL, 'health-beauty_tattoos-body-art_henna', 'Health & Beauty :: Tattoos & Body Art :: Henna', '', 0, 1, 0, '', '', ''),
  4468. (8020, 'Temporary Tattoos', 7845, 0, NULL, 'health-beauty_tattoos-body-art_temporary-tattoos', 'Health & Beauty :: Tattoos & Body Art :: Temporary Tattoos', '', 0, 1, 0, '', '', ''),
  4469. (8021, 'Tattoo Complete Kits', 7845, 0, NULL, 'health-beauty_tattoos-body-art_tattoo-complete-kits', 'Health & Beauty :: Tattoos & Body Art :: Tattoo Complete Kits', '', 0, 1, 0, '', '', ''),
  4470. (8022, 'Tattoo Inks', 7845, 0, NULL, 'health-beauty_tattoos-body-art_tattoo-inks', 'Health & Beauty :: Tattoos & Body Art :: Tattoo Inks', '', 0, 1, 0, '', '', ''),
  4471. (8023, 'Tattoo Machines & Parts', 7845, 0, NULL, 'health-beauty_tattoos-body-art_tattoo-machines-parts', 'Health & Beauty :: Tattoos & Body Art :: Tattoo Machines & Parts', '', 0, 1, 0, '', '', ''),
  4472. (8024, 'Tattoo Needles, Grips & Tips', 7845, 0, NULL, 'health-beauty_tattoos-body-art_tattoo-needles-grips-tips', 'Health & Beauty :: Tattoos & Body Art :: Tattoo Needles, Grips & Tips', '', 0, 1, 0, '', '', ''),
  4473. (8025, 'Tattoo Supplies', 7845, 0, NULL, 'health-beauty_tattoos-body-art_tattoo-supplies', 'Health & Beauty :: Tattoos & Body Art :: Tattoo Supplies', '', 0, 1, 0, '', '', ''),
  4474. (8026, 'Other Tattoos & Body Art', 7845, 0, NULL, 'health-beauty_tattoos-body-art_other-tattoos-body-art', 'Health & Beauty :: Tattoos & Body Art :: Other Tattoos & Body Art', '', 0, 1, 0, '', '', ''),
  4475. (8027, 'Contact Lens Solutions & Cases', 7846, 0, NULL, 'health-beauty_vision-care_contact-lens-solutions-cases', 'Health & Beauty :: Vision Care :: Contact Lens Solutions & Cases', '', 0, 1, 0, '', '', ''),
  4476. (8028, 'Eye Baths', 7846, 0, NULL, 'health-beauty_vision-care_eye-baths', 'Health & Beauty :: Vision Care :: Eye Baths', '', 0, 1, 0, '', '', ''),
  4477. (8029, 'Glasses', 7846, 0, NULL, 'health-beauty_vision-care_glasses', 'Health & Beauty :: Vision Care :: Glasses', '', 0, 1, 0, '', '', ''),
  4478. (8030, 'Glasses Cases', 7846, 0, NULL, 'health-beauty_vision-care_glasses-cases', 'Health & Beauty :: Vision Care :: Glasses Cases', '', 0, 1, 0, '', '', ''),
  4479. (8031, 'Other Vision Care', 7846, 0, NULL, 'health-beauty_vision-care_other-vision-care', 'Health & Beauty :: Vision Care :: Other Vision Care', '', 0, 1, 0, '', '', ''),
  4480. (8032, 'Herbs & Botanicals', 7847, 0, NULL, 'health-beauty_vitamins-supplements_herbs-botanicals', 'Health & Beauty :: Vitamins & Supplements :: Herbs & Botanicals', '', 0, 1, 0, '', '', ''),
  4481. (8033, 'Nutrition Bars & Shakes', 7847, 0, NULL, 'health-beauty_vitamins-supplements_nutrition-bars-shakes', 'Health & Beauty :: Vitamins & Supplements :: Nutrition Bars & Shakes', '', 0, 1, 0, '', '', ''),
  4482. (8034, 'Sports Supplements', 7847, 0, NULL, 'health-beauty_vitamins-supplements_sports-supplements', 'Health & Beauty :: Vitamins & Supplements :: Sports Supplements', '', 0, 1, 0, '', '', ''),
  4483. (8035, 'Vitamins & Minerals', 7847, 0, NULL, 'health-beauty_vitamins-supplements_vitamins-minerals', 'Health & Beauty :: Vitamins & Supplements :: Vitamins & Minerals', '', 0, 1, 0, '', '', ''),
  4484. (8036, 'Other Vitamins & Supplements', 7847, 0, NULL, 'health-beauty_vitamins-supplements_other-vitamins-supplements', 'Health & Beauty :: Vitamins & Supplements :: Other Vitamins & Supplements', '', 0, 1, 0, '', '', ''),
  4485. (8037, 'Salon & Spa', 3693, 0, NULL, 'health-beauty_salon-spa', 'Health & Beauty :: Salon & Spa', '', 0, 1, 0, '', '', ''),
  4486. (8038, 'Backwash Units & Shampoo Bowls', 8037, 0, NULL, 'health-beauty_salon-spa_backwash-units-shampoo-bowls', 'Health & Beauty :: Salon & Spa :: Backwash Units & Shampoo Bowls', '', 0, 1, 0, '', '', ''),
  4487. (8039, 'Capes & Gowns', 8037, 0, NULL, 'health-beauty_salon-spa_capes-gowns', 'Health & Beauty :: Salon & Spa :: Capes & Gowns', '', 0, 1, 0, '', '', ''),
  4488. (8040, 'Hair & Make-Up Mannequins', 8037, 0, NULL, 'health-beauty_salon-spa_hair-make-up-mannequins', 'Health & Beauty :: Salon & Spa :: Hair & Make-Up Mannequins', '', 0, 1, 0, '', '', ''),
  4489. (8041, 'Magnifying Lamps', 8037, 0, NULL, 'health-beauty_salon-spa_magnifying-lamps', 'Health & Beauty :: Salon & Spa :: Magnifying Lamps', '', 0, 1, 0, '', '', ''),
  4490. (8042, 'Professional Facial Machines', 8037, 0, NULL, 'health-beauty_salon-spa_professional-facial-machines', 'Health & Beauty :: Salon & Spa :: Professional Facial Machines', '', 0, 1, 0, '', '', ''),
  4491. (8043, 'Professional Styling Tools', 8037, 0, NULL, 'health-beauty_salon-spa_professional-styling-tools', 'Health & Beauty :: Salon & Spa :: Professional Styling Tools', '', 0, 1, 0, '', '', ''),
  4492. (8044, 'Rolling Cosmetic Boxes', 8037, 0, NULL, 'health-beauty_salon-spa_rolling-cosmetic-boxes', 'Health & Beauty :: Salon & Spa :: Rolling Cosmetic Boxes', '', 0, 1, 0, '', '', ''),
  4493. (8045, 'Salon Tables, Chairs & Dryers', 8037, 0, NULL, 'health-beauty_salon-spa_salon-tables-chairs-dryers', 'Health & Beauty :: Salon & Spa :: Salon Tables, Chairs & Dryers', '', 0, 1, 0, '', '', ''),
  4494. (8046, 'Scissors & Shears', 8037, 0, NULL, 'health-beauty_salon-spa_scissors-shears', 'Health & Beauty :: Salon & Spa :: Scissors & Shears', '', 0, 1, 0, '', '', ''),
  4495. (8047, 'Stylist Stations & Furniture', 8037, 0, NULL, 'health-beauty_salon-spa_stylist-stations-furniture', 'Health & Beauty :: Salon & Spa :: Stylist Stations & Furniture', '', 0, 1, 0, '', '', ''),
  4496. (8048, 'Supplies & Accessories', 8037, 0, NULL, 'health-beauty_salon-spa_supplies-accessories', 'Health & Beauty :: Salon & Spa :: Supplies & Accessories', '', 0, 1, 0, '', '', ''),
  4497. (8049, 'Towel Warmers & Sterilizers', 8037, 0, NULL, 'health-beauty_salon-spa_towel-warmers-sterilizers', 'Health & Beauty :: Salon & Spa :: Towel Warmers & Sterilizers', '', 0, 1, 0, '', '', ''),
  4498. (8050, 'Other Salon & Spa', 8037, 0, NULL, 'health-beauty_salon-spa_other-salon-spa', 'Health & Beauty :: Salon & Spa :: Other Salon & Spa', '', 0, 1, 0, '', '', ''),
  4499. (8051, 'Accessories/ Equipment', 3699, 0, NULL, 'musical-instruments_accessories-equipment', 'Musical Instruments :: Accessories/ Equipment', '', 0, 1, 0, '', '', ''),
  4500. (8052, 'Accordion/ Concertina', 3699, 0, NULL, 'musical-instruments_accordion-concertina', 'Musical Instruments :: Accordion/ Concertina', '', 0, 1, 0, '', '', ''),
  4501. (8053, 'Brass', 3699, 0, NULL, 'musical-instruments_brass', 'Musical Instruments :: Brass', '', 0, 1, 0, '', '', ''),
  4502. (8054, 'Guitars', 3699, 0, NULL, 'musical-instruments_guitars', 'Musical Instruments :: Guitars', '', 0, 1, 0, '', '', ''),
  4503. (8055, 'Harmonicas', 3699, 0, NULL, 'musical-instruments_harmonicas', 'Musical Instruments :: Harmonicas', '', 0, 1, 0, '', '', ''),
  4504. (8056, 'Instruction Books/ Media', 3699, 0, NULL, 'musical-instruments_instruction-books-media', 'Musical Instruments :: Instruction Books/ Media', '', 0, 1, 0, '', '', ''),
  4505. (8057, 'Keyboard/ Piano', 3699, 0, NULL, 'musical-instruments_keyboard-piano', 'Musical Instruments :: Keyboard/ Piano', '', 0, 1, 0, '', '', ''),
  4506. (8058, 'Percussion', 3699, 0, NULL, 'musical-instruments_percussion', 'Musical Instruments :: Percussion', '', 0, 1, 0, '', '', ''),
  4507. (8059, 'Pro Audio Equipment', 3699, 0, NULL, 'musical-instruments_pro-audio-equipment', 'Musical Instruments :: Pro Audio Equipment', '', 0, 1, 0, '', '', ''),
  4508. (8060, 'Sheet Music/ Song Books', 3699, 0, NULL, 'musical-instruments_sheet-music-song-books', 'Musical Instruments :: Sheet Music/ Song Books', '', 0, 1, 0, '', '', ''),
  4509. (8061, 'String', 3699, 0, NULL, 'musical-instruments_string', 'Musical Instruments :: String', '', 0, 1, 0, '', '', ''),
  4510. (8062, 'Woodwind', 3699, 0, NULL, 'musical-instruments_woodwind', 'Musical Instruments :: Woodwind', '', 0, 1, 0, '', '', ''),
  4511. (8063, 'Other Musical Instruments', 3699, 0, NULL, 'musical-instruments_other-musical-instruments', 'Musical Instruments :: Other Musical Instruments', '', 0, 1, 0, '', '', ''),
  4512. (8064, 'Cases', 8051, 0, NULL, 'musical-instruments_accessories-equipment_cases', 'Musical Instruments :: Accessories/ Equipment :: Cases', '', 0, 1, 0, '', '', ''),
  4513. (8065, 'Clothing/ Uniforms', 8051, 0, NULL, 'musical-instruments_accessories-equipment_clothing-uniforms', 'Musical Instruments :: Accessories/ Equipment :: Clothing/ Uniforms', '', 0, 1, 0, '', '', ''),
  4514. (8066, 'Metronomes', 8051, 0, NULL, 'musical-instruments_accessories-equipment_metronomes', 'Musical Instruments :: Accessories/ Equipment :: Metronomes', '', 0, 1, 0, '', '', ''),
  4515. (8067, 'Stands', 8051, 0, NULL, 'musical-instruments_accessories-equipment_stands', 'Musical Instruments :: Accessories/ Equipment :: Stands', '', 0, 1, 0, '', '', ''),
  4516. (8068, 'Other Accessories/ Equipment', 8051, 0, NULL, 'musical-instruments_accessories-equipment_other-accessories-equipment', 'Musical Instruments :: Accessories/ Equipment :: Other Accessories/ Equipment', '', 0, 1, 0, '', '', ''),
  4517. (8069, 'Accessories', 8052, 0, NULL, 'musical-instruments_accordion-concertina_accessories', 'Musical Instruments :: Accordion/ Concertina :: Accessories', '', 0, 1, 0, '', '', ''),
  4518. (8070, 'Accordion', 8052, 0, NULL, 'musical-instruments_accordion-concertina_accordion', 'Musical Instruments :: Accordion/ Concertina :: Accordion', '', 0, 1, 0, '', '', ''),
  4519. (8071, 'Concertina', 8052, 0, NULL, 'musical-instruments_accordion-concertina_concertina', 'Musical Instruments :: Accordion/ Concertina :: Concertina', '', 0, 1, 0, '', '', ''),
  4520. (8072, 'Piano', 8052, 0, NULL, 'musical-instruments_accordion-concertina_piano', 'Musical Instruments :: Accordion/ Concertina :: Piano', '', 0, 1, 0, '', '', ''),
  4521. (8073, 'Not specified', 8052, 0, NULL, 'musical-instruments_accordion-concertina_not-specified', 'Musical Instruments :: Accordion/ Concertina :: Not specified', '', 0, 1, 0, '', '', ''),
  4522. (8074, 'Accessories', 8053, 0, NULL, 'musical-instruments_brass_accessories', 'Musical Instruments :: Brass :: Accessories', '', 0, 1, 0, '', '', ''),
  4523. (8075, 'Baritone', 8053, 0, NULL, 'musical-instruments_brass_baritone', 'Musical Instruments :: Brass :: Baritone', '', 0, 1, 0, '', '', ''),
  4524. (8076, 'Bugle', 8053, 0, NULL, 'musical-instruments_brass_bugle', 'Musical Instruments :: Brass :: Bugle', '', 0, 1, 0, '', '', ''),
  4525. (8077, 'Cornet', 8053, 0, NULL, 'musical-instruments_brass_cornet', 'Musical Instruments :: Brass :: Cornet', '', 0, 1, 0, '', '', ''),
  4526. (8078, 'Euphonium', 8053, 0, NULL, 'musical-instruments_brass_euphonium', 'Musical Instruments :: Brass :: Euphonium', '', 0, 1, 0, '', '', ''),
  4527. (8079, 'Flugelhorn', 8053, 0, NULL, 'musical-instruments_brass_flugelhorn', 'Musical Instruments :: Brass :: Flugelhorn', '', 0, 1, 0, '', '', ''),
  4528. (8080, 'French Horn', 8053, 0, NULL, 'musical-instruments_brass_french-horn', 'Musical Instruments :: Brass :: French Horn', '', 0, 1, 0, '', '', ''),
  4529. (8081, 'Tenor Horn', 8053, 0, NULL, 'musical-instruments_brass_tenor-horn', 'Musical Instruments :: Brass :: Tenor Horn', '', 0, 1, 0, '', '', ''),
  4530. (8082, 'Trombone', 8053, 0, NULL, 'musical-instruments_brass_trombone', 'Musical Instruments :: Brass :: Trombone', '', 0, 1, 0, '', '', ''),
  4531. (8083, 'Trumpet', 8053, 0, NULL, 'musical-instruments_brass_trumpet', 'Musical Instruments :: Brass :: Trumpet', '', 0, 1, 0, '', '', ''),
  4532. (8084, 'Tuba', 8053, 0, NULL, 'musical-instruments_brass_tuba', 'Musical Instruments :: Brass :: Tuba', '', 0, 1, 0, '', '', ''),
  4533. (8085, 'Other Brass', 8053, 0, NULL, 'musical-instruments_brass_other-brass', 'Musical Instruments :: Brass :: Other Brass', '', 0, 1, 0, '', '', ''),
  4534. (8086, 'Accessories', 8054, 0, NULL, 'musical-instruments_guitars_accessories', 'Musical Instruments :: Guitars :: Accessories', '', 0, 1, 0, '', '', ''),
  4535. (8087, 'Acoustic', 8054, 0, NULL, 'musical-instruments_guitars_acoustic', 'Musical Instruments :: Guitars :: Acoustic', '', 0, 1, 0, '', '', ''),
  4536. (8088, 'Bass', 8054, 0, NULL, 'musical-instruments_guitars_bass', 'Musical Instruments :: Guitars :: Bass', '', 0, 1, 0, '', '', ''),
  4537. (8089, 'Classical', 8054, 0, NULL, 'musical-instruments_guitars_classical', 'Musical Instruments :: Guitars :: Classical', '', 0, 1, 0, '', '', ''),
  4538. (8090, 'Electric', 8054, 0, NULL, 'musical-instruments_guitars_electric', 'Musical Instruments :: Guitars :: Electric', '', 0, 1, 0, '', '', ''),
  4539. (8091, 'Electric Guitar Packages', 8054, 0, NULL, 'musical-instruments_guitars_electric-guitar-packages', 'Musical Instruments :: Guitars :: Electric Guitar Packages', '', 0, 1, 0, '', '', ''),
  4540. (8092, 'Vintage Electric Guitars', 8054, 0, NULL, 'musical-instruments_guitars_vintage-electric-guitars', 'Musical Instruments :: Guitars :: Vintage Electric Guitars', '', 0, 1, 0, '', '', ''),
  4541. (8093, 'Electro-Acoustic', 8054, 0, NULL, 'musical-instruments_guitars_electro-acoustic', 'Musical Instruments :: Guitars :: Electro-Acoustic', '', 0, 1, 0, '', '', ''),
  4542. (8094, 'Left-Handed', 8054, 0, NULL, 'musical-instruments_guitars_left-handed', 'Musical Instruments :: Guitars :: Left-Handed', '', 0, 1, 0, '', '', ''),
  4543. (8095, 'Miniature', 8054, 0, NULL, 'musical-instruments_guitars_miniature', 'Musical Instruments :: Guitars :: Miniature', '', 0, 1, 0, '', '', ''),
  4544. (8096, 'Amplifiers', 8054, 0, NULL, 'musical-instruments_guitars_amplifiers', 'Musical Instruments :: Guitars :: Amplifiers', '', 0, 1, 0, '', '', ''),
  4545. (8097, 'Other Guitars', 8054, 0, NULL, 'musical-instruments_guitars_other-guitars', 'Musical Instruments :: Guitars :: Other Guitars', '', 0, 1, 0, '', '', ''),
  4546. (8098, 'Chromatic', 8055, 0, NULL, 'musical-instruments_harmonicas_chromatic', 'Musical Instruments :: Harmonicas :: Chromatic', '', 0, 1, 0, '', '', ''),
  4547. (8099, 'Diatonic', 8055, 0, NULL, 'musical-instruments_harmonicas_diatonic', 'Musical Instruments :: Harmonicas :: Diatonic', '', 0, 1, 0, '', '', ''),
  4548. (8100, 'Tremolo', 8055, 0, NULL, 'musical-instruments_harmonicas_tremolo', 'Musical Instruments :: Harmonicas :: Tremolo', '', 0, 1, 0, '', '', ''),
  4549. (8101, 'Not specified', 8055, 0, NULL, 'musical-instruments_harmonicas_not-specified', 'Musical Instruments :: Harmonicas :: Not specified', '', 0, 1, 0, '', '', ''),
  4550. (8102, 'Brass', 8056, 0, NULL, 'musical-instruments_instruction-books-media_brass', 'Musical Instruments :: Instruction Books/ Media :: Brass', '', 0, 1, 0, '', '', ''),
  4551. (8103, 'Guitar', 8056, 0, NULL, 'musical-instruments_instruction-books-media_guitar', 'Musical Instruments :: Instruction Books/ Media :: Guitar', '', 0, 1, 0, '', '', ''),
  4552. (8104, 'Music Theory', 8056, 0, NULL, 'musical-instruments_instruction-books-media_music-theory', 'Musical Instruments :: Instruction Books/ Media :: Music Theory', '', 0, 1, 0, '', '', ''),
  4553. (8105, 'Piano', 8056, 0, NULL, 'musical-instruments_instruction-books-media_piano', 'Musical Instruments :: Instruction Books/ Media :: Piano', '', 0, 1, 0, '', '', ''),
  4554. (8106, 'Percussion', 8056, 0, NULL, 'musical-instruments_instruction-books-media_percussion', 'Musical Instruments :: Instruction Books/ Media :: Percussion', '', 0, 1, 0, '', '', ''),
  4555. (8107, 'String', 8056, 0, NULL, 'musical-instruments_instruction-books-media_string', 'Musical Instruments :: Instruction Books/ Media :: String', '', 0, 1, 0, '', '', ''),
  4556. (8108, 'Woodwind', 8056, 0, NULL, 'musical-instruments_instruction-books-media_woodwind', 'Musical Instruments :: Instruction Books/ Media :: Woodwind', '', 0, 1, 0, '', '', ''),
  4557. (8109, 'Other Instruction Books', 8056, 0, NULL, 'musical-instruments_instruction-books-media_other-instruction-books', 'Musical Instruments :: Instruction Books/ Media :: Other Instruction Books', '', 0, 1, 0, '', '', ''),
  4558. (8110, 'Electronic Keyboards', 8057, 0, NULL, 'musical-instruments_keyboard-piano_electronic-keyboards', 'Musical Instruments :: Keyboard/ Piano :: Electronic Keyboards', '', 0, 1, 0, '', '', ''),
  4559. (8111, 'Harpsichord', 8057, 0, NULL, 'musical-instruments_keyboard-piano_harpsichord', 'Musical Instruments :: Keyboard/ Piano :: Harpsichord', '', 0, 1, 0, '', '', ''),
  4560. (8112, 'Organ', 8057, 0, NULL, 'musical-instruments_keyboard-piano_organ', 'Musical Instruments :: Keyboard/ Piano :: Organ', '', 0, 1, 0, '', '', ''),
  4561. (8113, 'Piano', 8057, 0, NULL, 'musical-instruments_keyboard-piano_piano', 'Musical Instruments :: Keyboard/ Piano :: Piano', '', 0, 1, 0, '', '', ''),
  4562. (8114, 'Pianola/ Player Piano Rolls', 8057, 0, NULL, 'musical-instruments_keyboard-piano_pianola-player-piano-rolls', 'Musical Instruments :: Keyboard/ Piano :: Pianola/ Player Piano Rolls', '', 0, 1, 0, '', '', ''),
  4563. (8115, 'Piano Stools', 8057, 0, NULL, 'musical-instruments_keyboard-piano_piano-stools', 'Musical Instruments :: Keyboard/ Piano :: Piano Stools', '', 0, 1, 0, '', '', ''),
  4564. (8116, 'Other Keyboard/ Piano', 8057, 0, NULL, 'musical-instruments_keyboard-piano_other-keyboard-piano', 'Musical Instruments :: Keyboard/ Piano :: Other Keyboard/ Piano', '', 0, 1, 0, '', '', ''),
  4565. (8117, 'Accessories', 8058, 0, NULL, 'musical-instruments_percussion_accessories', 'Musical Instruments :: Percussion :: Accessories', '', 0, 1, 0, '', '', ''),
  4566. (8118, 'Bells', 8058, 0, NULL, 'musical-instruments_percussion_bells', 'Musical Instruments :: Percussion :: Bells', '', 0, 1, 0, '', '', ''),
  4567. (8119, 'Cymbals', 8058, 0, NULL, 'musical-instruments_percussion_cymbals', 'Musical Instruments :: Percussion :: Cymbals', '', 0, 1, 0, '', '', ''),
  4568. (8120, 'Drums', 8058, 0, NULL, 'musical-instruments_percussion_drums', 'Musical Instruments :: Percussion :: Drums', '', 0, 1, 0, '', '', ''),
  4569. (8121, 'Maracas', 8058, 0, NULL, 'musical-instruments_percussion_maracas', 'Musical Instruments :: Percussion :: Maracas', '', 0, 1, 0, '', '', ''),
  4570. (8122, 'Tambourines', 8058, 0, NULL, 'musical-instruments_percussion_tambourines', 'Musical Instruments :: Percussion :: Tambourines', '', 0, 1, 0, '', '', ''),
  4571. (8123, 'Xylophones/ Glockenspiels', 8058, 0, NULL, 'musical-instruments_percussion_xylophones-glockenspiels', 'Musical Instruments :: Percussion :: Xylophones/ Glockenspiels', '', 0, 1, 0, '', '', ''),
  4572. (8124, 'Other Percussion', 8058, 0, NULL, 'musical-instruments_percussion_other-percussion', 'Musical Instruments :: Percussion :: Other Percussion', '', 0, 1, 0, '', '', ''),
  4573. (8125, 'Acoustic Treatments', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_acoustic-treatments', 'Musical Instruments :: Pro Audio Equipment :: Acoustic Treatments', '', 0, 1, 0, '', '', ''),
  4574. (8126, 'Amplifiers', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_amplifiers', 'Musical Instruments :: Pro Audio Equipment :: Amplifiers', '', 0, 1, 0, '', '', ''),
  4575. (8127, 'Audio/MIDI Controllers', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_audio-midi-controllers', 'Musical Instruments :: Pro Audio Equipment :: Audio/MIDI Controllers', '', 0, 1, 0, '', '', ''),
  4576. (8128, 'Audio/MIDI Interfaces', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_audio-midi-interfaces', 'Musical Instruments :: Pro Audio Equipment :: Audio/MIDI Interfaces', '', 0, 1, 0, '', '', ''),
  4577. (8129, 'Cables, Leads & Connectors', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_cables-leads-connectors', 'Musical Instruments :: Pro Audio Equipment :: Cables, Leads & Connectors', '', 0, 1, 0, '', '', ''),
  4578. (8130, 'Cases, Racks & Bags', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_cases-racks-bags', 'Musical Instruments :: Pro Audio Equipment :: Cases, Racks & Bags', '', 0, 1, 0, '', '', ''),
  4579. (8131, 'Drum Machines', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_drum-machines', 'Musical Instruments :: Pro Audio Equipment :: Drum Machines', '', 0, 1, 0, '', '', ''),
  4580. (8132, 'Microphones', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_microphones', 'Musical Instruments :: Pro Audio Equipment :: Microphones', '', 0, 1, 0, '', '', ''),
  4581. (8133, 'Mixers', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_mixers', 'Musical Instruments :: Pro Audio Equipment :: Mixers', '', 0, 1, 0, '', '', ''),
  4582. (8134, 'Signal Processors & Effects', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_signal-processors-effects', 'Musical Instruments :: Pro Audio Equipment :: Signal Processors & Effects', '', 0, 1, 0, '', '', ''),
  4583. (8135, 'Preamps', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_preamps', 'Musical Instruments :: Pro Audio Equipment :: Preamps', '', 0, 1, 0, '', '', ''),
  4584. (8136, 'Recorders', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_recorders', 'Musical Instruments :: Pro Audio Equipment :: Recorders', '', 0, 1, 0, '', '', ''),
  4585. (8137, 'Samplers & Sequencers', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_samplers-sequencers', 'Musical Instruments :: Pro Audio Equipment :: Samplers & Sequencers', '', 0, 1, 0, '', '', ''),
  4586. (8138, 'Software, Loops & Samples', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_software-loops-samples', 'Musical Instruments :: Pro Audio Equipment :: Software, Loops & Samples', '', 0, 1, 0, '', '', ''),
  4587. (8139, 'Speaker Drivers & Horns', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_speaker-drivers-horns', 'Musical Instruments :: Pro Audio Equipment :: Speaker Drivers & Horns', '', 0, 1, 0, '', '', ''),
  4588. (8140, 'Speakers & Monitors', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_speakers-monitors', 'Musical Instruments :: Pro Audio Equipment :: Speakers & Monitors', '', 0, 1, 0, '', '', ''),
  4589. (8141, 'Stands & Supports', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_stands-supports', 'Musical Instruments :: Pro Audio Equipment :: Stands & Supports', '', 0, 1, 0, '', '', ''),
  4590. (8142, 'Studio Equipment Packages', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_studio-equipment-packages', 'Musical Instruments :: Pro Audio Equipment :: Studio Equipment Packages', '', 0, 1, 0, '', '', ''),
  4591. (8143, 'Synthesisers & Sound Modules', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_synthesisers-sound-modules', 'Musical Instruments :: Pro Audio Equipment :: Synthesisers & Sound Modules', '', 0, 1, 0, '', '', ''),
  4592. (8144, 'Parts & Accessories', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_parts-accessories', 'Musical Instruments :: Pro Audio Equipment :: Parts & Accessories', '', 0, 1, 0, '', '', ''),
  4593. (8145, 'Other Pro Audio Equipment', 8059, 0, NULL, 'musical-instruments_pro-audio-equipment_other-pro-audio-equipment', 'Musical Instruments :: Pro Audio Equipment :: Other Pro Audio Equipment', '', 0, 1, 0, '', '', ''),
  4594. (8146, 'Music/ Song Books', 8060, 0, NULL, 'musical-instruments_sheet-music-song-books_music-song-books', 'Musical Instruments :: Sheet Music/ Song Books :: Music/ Song Books', '', 0, 1, 0, '', '', ''),
  4595. (8147, 'Sheet Music', 8060, 0, NULL, 'musical-instruments_sheet-music-song-books_sheet-music', 'Musical Instruments :: Sheet Music/ Song Books :: Sheet Music', '', 0, 1, 0, '', '', ''),
  4596. (8148, 'Accessories', 8061, 0, NULL, 'musical-instruments_string_accessories', 'Musical Instruments :: String :: Accessories', '', 0, 1, 0, '', '', ''),
  4597. (8149, 'Autoharp/ Zither', 8061, 0, NULL, 'musical-instruments_string_autoharp-zither', 'Musical Instruments :: String :: Autoharp/ Zither', '', 0, 1, 0, '', '', ''),
  4598. (8150, 'Banjo', 8061, 0, NULL, 'musical-instruments_string_banjo', 'Musical Instruments :: String :: Banjo', '', 0, 1, 0, '', '', ''),
  4599. (8151, 'Bouzouki/ Mandola', 8061, 0, NULL, 'musical-instruments_string_bouzouki-mandola', 'Musical Instruments :: String :: Bouzouki/ Mandola', '', 0, 1, 0, '', '', ''),
  4600. (8152, 'Cello', 8061, 0, NULL, 'musical-instruments_string_cello', 'Musical Instruments :: String :: Cello', '', 0, 1, 0, '', '', ''),
  4601. (8153, 'Double Bass', 8061, 0, NULL, 'musical-instruments_string_double-bass', 'Musical Instruments :: String :: Double Bass', '', 0, 1, 0, '', '', ''),
  4602. (8154, 'Harp', 8061, 0, NULL, 'musical-instruments_string_harp', 'Musical Instruments :: String :: Harp', '', 0, 1, 0, '', '', ''),
  4603. (8155, 'Lute', 8061, 0, NULL, 'musical-instruments_string_lute', 'Musical Instruments :: String :: Lute', '', 0, 1, 0, '', '', ''),
  4604. (8156, 'Mandolin', 8061, 0, NULL, 'musical-instruments_string_mandolin', 'Musical Instruments :: String :: Mandolin', '', 0, 1, 0, '', '', ''),
  4605. (8157, 'Sitar', 8061, 0, NULL, 'musical-instruments_string_sitar', 'Musical Instruments :: String :: Sitar', '', 0, 1, 0, '', '', ''),
  4606. (8158, 'Ukulele', 8061, 0, NULL, 'musical-instruments_string_ukulele', 'Musical Instruments :: String :: Ukulele', '', 0, 1, 0, '', '', ''),
  4607. (8159, 'Viola', 8061, 0, NULL, 'musical-instruments_string_viola', 'Musical Instruments :: String :: Viola', '', 0, 1, 0, '', '', ''),
  4608. (8160, 'Violin', 8061, 0, NULL, 'musical-instruments_string_violin', 'Musical Instruments :: String :: Violin', '', 0, 1, 0, '', '', ''),
  4609. (8161, 'Other String Instruments', 8061, 0, NULL, 'musical-instruments_string_other-string-instruments', 'Musical Instruments :: String :: Other String Instruments', '', 0, 1, 0, '', '', ''),
  4610. (8162, 'Accessories', 8062, 0, NULL, 'musical-instruments_woodwind_accessories', 'Musical Instruments :: Woodwind :: Accessories', '', 0, 1, 0, '', '', ''),
  4611. (8163, 'Bagpipes', 8062, 0, NULL, 'musical-instruments_woodwind_bagpipes', 'Musical Instruments :: Woodwind :: Bagpipes', '', 0, 1, 0, '', '', ''),
  4612. (8164, 'Bassoon', 8062, 0, NULL, 'musical-instruments_woodwind_bassoon', 'Musical Instruments :: Woodwind :: Bassoon', '', 0, 1, 0, '', '', ''),
  4613. (8165, 'Clarinet', 8062, 0, NULL, 'musical-instruments_woodwind_clarinet', 'Musical Instruments :: Woodwind :: Clarinet', '', 0, 1, 0, '', '', ''),
  4614. (8166, 'Didgeridoo', 8062, 0, NULL, 'musical-instruments_woodwind_didgeridoo', 'Musical Instruments :: Woodwind :: Didgeridoo', '', 0, 1, 0, '', '', ''),
  4615. (8167, 'Flute', 8062, 0, NULL, 'musical-instruments_woodwind_flute', 'Musical Instruments :: Woodwind :: Flute', '', 0, 1, 0, '', '', ''),
  4616. (8168, 'Oboe', 8062, 0, NULL, 'musical-instruments_woodwind_oboe', 'Musical Instruments :: Woodwind :: Oboe', '', 0, 1, 0, '', '', ''),
  4617. (8169, 'Piccolo', 8062, 0, NULL, 'musical-instruments_woodwind_piccolo', 'Musical Instruments :: Woodwind :: Piccolo', '', 0, 1, 0, '', '', ''),
  4618. (8170, 'Recorder', 8062, 0, NULL, 'musical-instruments_woodwind_recorder', 'Musical Instruments :: Woodwind :: Recorder', '', 0, 1, 0, '', '', ''),
  4619. (8171, 'Saxophone', 8062, 0, NULL, 'musical-instruments_woodwind_saxophone', 'Musical Instruments :: Woodwind :: Saxophone', '', 0, 1, 0, '', '', ''),
  4620. (8172, 'Whistles', 8062, 0, NULL, 'musical-instruments_woodwind_whistles', 'Musical Instruments :: Woodwind :: Whistles', '', 0, 1, 0, '', '', ''),
  4621. (8173, 'Other Woodwind', 8062, 0, NULL, 'musical-instruments_woodwind_other-woodwind', 'Musical Instruments :: Woodwind :: Other Woodwind', '', 0, 1, 0, '', '', ''),
  4622. (8174, 'American Football', 3704, 0, NULL, 'sporting-goods_american-football', 'Sporting Goods :: American Football', '', 0, 1, 0, '', '', ''),
  4623. (8175, 'Archery', 3704, 0, NULL, 'sporting-goods_archery', 'Sporting Goods :: Archery', '', 0, 1, 0, '', '', ''),
  4624. (8176, 'Badminton', 3704, 0, NULL, 'sporting-goods_badminton', 'Sporting Goods :: Badminton', '', 0, 1, 0, '', '', ''),
  4625. (8177, 'Baseball', 3704, 0, NULL, 'sporting-goods_baseball', 'Sporting Goods :: Baseball', '', 0, 1, 0, '', '', ''),
  4626. (8178, 'Basketball', 3704, 0, NULL, 'sporting-goods_basketball', 'Sporting Goods :: Basketball', '', 0, 1, 0, '', '', ''),
  4627. (8179, 'Bowling (Ten-Pin)', 3704, 0, NULL, 'sporting-goods_bowling-ten-pin', 'Sporting Goods :: Bowling (Ten-Pin)', '', 0, 1, 0, '', '', ''),
  4628. (8180, 'Bowls', 3704, 0, NULL, 'sporting-goods_bowls', 'Sporting Goods :: Bowls', '', 0, 1, 0, '', '', ''),
  4629. (8181, 'Boxing', 3704, 0, NULL, 'sporting-goods_boxing', 'Sporting Goods :: Boxing', '', 0, 1, 0, '', '', ''),
  4630. (8182, 'Camping & Hiking', 3704, 0, NULL, 'sporting-goods_camping-hiking', 'Sporting Goods :: Camping & Hiking', '', 0, 1, 0, '', '', ''),
  4631. (8183, 'Canoeing & Kayaking', 3704, 0, NULL, 'sporting-goods_canoeing-kayaking', 'Sporting Goods :: Canoeing & Kayaking', '', 0, 1, 0, '', '', ''),
  4632. (8184, 'Climbing/ Mountaineering', 3704, 0, NULL, 'sporting-goods_climbing-mountaineering', 'Sporting Goods :: Climbing/ Mountaineering', '', 0, 1, 0, '', '', ''),
  4633. (8185, 'Cricket', 3704, 0, NULL, 'sporting-goods_cricket', 'Sporting Goods :: Cricket', '', 0, 1, 0, '', '', ''),
  4634. (8186, 'Cycling', 3704, 0, NULL, 'sporting-goods_cycling', 'Sporting Goods :: Cycling', '', 0, 1, 0, '', '', ''),
  4635. (8187, 'Darts', 3704, 0, NULL, 'sporting-goods_darts', 'Sporting Goods :: Darts', '', 0, 1, 0, '', '', ''),
  4636. (8188, 'Equestrian', 3704, 0, NULL, 'sporting-goods_equestrian', 'Sporting Goods :: Equestrian', '', 0, 1, 0, '', '', ''),
  4637. (8189, 'Exercise & Fitness', 3704, 0, NULL, 'sporting-goods_exercise-fitness', 'Sporting Goods :: Exercise & Fitness', '', 0, 1, 0, '', '', ''),
  4638. (8190, 'Fishing', 3704, 0, NULL, 'sporting-goods_fishing', 'Sporting Goods :: Fishing', '', 0, 1, 0, '', '', ''),
  4639. (8191, 'Football', 3704, 0, NULL, 'sporting-goods_football', 'Sporting Goods :: Football', '', 0, 1, 0, '', '', ''),
  4640. (8192, 'Football Shirts', 3704, 0, NULL, 'sporting-goods_football-shirts', 'Sporting Goods :: Football Shirts', '', 0, 1, 0, '', '', ''),
  4641. (8193, 'Golf', 3704, 0, NULL, 'sporting-goods_golf', 'Sporting Goods :: Golf', '', 0, 1, 0, '', '', ''),
  4642. (8194, 'Gymnastics', 3704, 0, NULL, 'sporting-goods_gymnastics', 'Sporting Goods :: Gymnastics', '', 0, 1, 0, '', '', ''),
  4643. (8195, 'Hockey', 3704, 0, NULL, 'sporting-goods_hockey', 'Sporting Goods :: Hockey', '', 0, 1, 0, '', '', ''),
  4644. (8196, 'Hunting', 3704, 0, NULL, 'sporting-goods_hunting', 'Sporting Goods :: Hunting', '', 0, 1, 0, '', '', ''),
  4645. (8197, 'Ice Hockey', 3704, 0, NULL, 'sporting-goods_ice-hockey', 'Sporting Goods :: Ice Hockey', '', 0, 1, 0, '', '', ''),
  4646. (8198, 'Ice Skating', 3704, 0, NULL, 'sporting-goods_ice-skating', 'Sporting Goods :: Ice Skating', '', 0, 1, 0, '', '', ''),
  4647. (8199, 'Inline & Roller Skating', 3704, 0, NULL, 'sporting-goods_inline-roller-skating', 'Sporting Goods :: Inline & Roller Skating', '', 0, 1, 0, '', '', ''),
  4648. (8200, 'Kitesurfing & Powerkites', 3704, 0, NULL, 'sporting-goods_kitesurfing-powerkites', 'Sporting Goods :: Kitesurfing & Powerkites', '', 0, 1, 0, '', '', ''),
  4649. (8201, 'Martial Arts', 3704, 0, NULL, 'sporting-goods_martial-arts', 'Sporting Goods :: Martial Arts', '', 0, 1, 0, '', '', ''),
  4650. (8202, 'Paintballing', 3704, 0, NULL, 'sporting-goods_paintballing', 'Sporting Goods :: Paintballing', '', 0, 1, 0, '', '', ''),
  4651. (8203, 'Rugby League', 3704, 0, NULL, 'sporting-goods_rugby-league', 'Sporting Goods :: Rugby League', '', 0, 1, 0, '', '', ''),
  4652. (8204, 'Rugby Union', 3704, 0, NULL, 'sporting-goods_rugby-union', 'Sporting Goods :: Rugby Union', '', 0, 1, 0, '', '', ''),
  4653. (8205, 'Running & Athletics', 3704, 0, NULL, 'sporting-goods_running-athletics', 'Sporting Goods :: Running & Athletics', '', 0, 1, 0, '', '', ''),
  4654. (8206, 'Sailing', 3704, 0, NULL, 'sporting-goods_sailing', 'Sporting Goods :: Sailing', '', 0, 1, 0, '', '', ''),
  4655. (8207, 'Scooters', 3704, 0, NULL, 'sporting-goods_scooters', 'Sporting Goods :: Scooters', '', 0, 1, 0, '', '', ''),
  4656. (8208, 'SCUBA & Snorkelling', 3704, 0, NULL, 'sporting-goods_scuba-snorkelling', 'Sporting Goods :: SCUBA & Snorkelling', '', 0, 1, 0, '', '', ''),
  4657. (8209, 'Skateboarding', 3704, 0, NULL, 'sporting-goods_skateboarding', 'Sporting Goods :: Skateboarding', '', 0, 1, 0, '', '', ''),
  4658. (8210, 'Skiing & Snowboarding', 3704, 0, NULL, 'sporting-goods_skiing-snowboarding', 'Sporting Goods :: Skiing & Snowboarding', '', 0, 1, 0, '', '', ''),
  4659. (8211, 'Snooker & Pool', 3704, 0, NULL, 'sporting-goods_snooker-pool', 'Sporting Goods :: Snooker & Pool', '', 0, 1, 0, '', '', ''),
  4660. (8212, 'Squash', 3704, 0, NULL, 'sporting-goods_squash', 'Sporting Goods :: Squash', '', 0, 1, 0, '', '', ''),
  4661. (8213, 'Surfing', 3704, 0, NULL, 'sporting-goods_surfing', 'Sporting Goods :: Surfing', '', 0, 1, 0, '', '', ''),
  4662. (8214, 'Swimming', 3704, 0, NULL, 'sporting-goods_swimming', 'Sporting Goods :: Swimming', '', 0, 1, 0, '', '', ''),
  4663. (8215, 'Table Tennis', 3704, 0, NULL, 'sporting-goods_table-tennis', 'Sporting Goods :: Table Tennis', '', 0, 1, 0, '', '', ''),
  4664. (8216, 'Tennis', 3704, 0, NULL, 'sporting-goods_tennis', 'Sporting Goods :: Tennis', '', 0, 1, 0, '', '', ''),
  4665. (8217, 'Waterskiing & Wakeboarding', 3704, 0, NULL, 'sporting-goods_waterskiing-wakeboarding', 'Sporting Goods :: Waterskiing & Wakeboarding', '', 0, 1, 0, '', '', ''),
  4666. (8218, 'Other Sporting Goods', 3704, 0, NULL, 'sporting-goods_other-sporting-goods', 'Sporting Goods :: Other Sporting Goods', '', 0, 1, 0, '', '', ''),
  4667. (8219, 'Balls', 8174, 0, NULL, 'sporting-goods_american-football_balls', 'Sporting Goods :: American Football :: Balls', '', 0, 1, 0, '', '', ''),
  4668. (8220, 'Caps', 8174, 0, NULL, 'sporting-goods_american-football_caps', 'Sporting Goods :: American Football :: Caps', '', 0, 1, 0, '', '', ''),
  4669. (8221, 'Clothing & Footwear', 8174, 0, NULL, 'sporting-goods_american-football_clothing-footwear', 'Sporting Goods :: American Football :: Clothing & Footwear', '', 0, 1, 0, '', '', ''),
  4670. (8222, 'Helmets', 8174, 0, NULL, 'sporting-goods_american-football_helmets', 'Sporting Goods :: American Football :: Helmets', '', 0, 1, 0, '', '', ''),
  4671. (8223, 'Jerseys', 8174, 0, NULL, 'sporting-goods_american-football_jerseys', 'Sporting Goods :: American Football :: Jerseys', '', 0, 1, 0, '', '', ''),
  4672. (8224, 'Pads', 8174, 0, NULL, 'sporting-goods_american-football_pads', 'Sporting Goods :: American Football :: Pads', '', 0, 1, 0, '', '', ''),
  4673. (8225, 'Protective Gear', 8174, 0, NULL, 'sporting-goods_american-football_protective-gear', 'Sporting Goods :: American Football :: Protective Gear', '', 0, 1, 0, '', '', ''),
  4674. (8226, 'Other American Football', 8174, 0, NULL, 'sporting-goods_american-football_other-american-football', 'Sporting Goods :: American Football :: Other American Football', '', 0, 1, 0, '', '', ''),
  4675. (8227, 'Arrows, Flights & Shafts', 8175, 0, NULL, 'sporting-goods_archery_arrows-flights-shafts', 'Sporting Goods :: Archery :: Arrows, Flights & Shafts', '', 0, 1, 0, '', '', ''),
  4676. (8228, 'Bows & Bow Accessories', 8175, 0, NULL, 'sporting-goods_archery_bows-bow-accessories', 'Sporting Goods :: Archery :: Bows & Bow Accessories', '', 0, 1, 0, '', '', ''),
  4677. (8229, 'Quivers', 8175, 0, NULL, 'sporting-goods_archery_quivers', 'Sporting Goods :: Archery :: Quivers', '', 0, 1, 0, '', '', ''),
  4678. (8230, 'Sights', 8175, 0, NULL, 'sporting-goods_archery_sights', 'Sporting Goods :: Archery :: Sights', '', 0, 1, 0, '', '', ''),
  4679. (8231, 'Targets', 8175, 0, NULL, 'sporting-goods_archery_targets', 'Sporting Goods :: Archery :: Targets', '', 0, 1, 0, '', '', ''),
  4680. (8232, 'Trophies', 8175, 0, NULL, 'sporting-goods_archery_trophies', 'Sporting Goods :: Archery :: Trophies', '', 0, 1, 0, '', '', ''),
  4681. (8233, 'Other Archery', 8175, 0, NULL, 'sporting-goods_archery_other-archery', 'Sporting Goods :: Archery :: Other Archery', '', 0, 1, 0, '', '', ''),
  4682. (8234, 'Badminton Sets', 8176, 0, NULL, 'sporting-goods_badminton_badminton-sets', 'Sporting Goods :: Badminton :: Badminton Sets', '', 0, 1, 0, '', '', ''),
  4683. (8235, 'Bags & Racket Covers', 8176, 0, NULL, 'sporting-goods_badminton_bags-racket-covers', 'Sporting Goods :: Badminton :: Bags & Racket Covers', '', 0, 1, 0, '', '', ''),
  4684. (8236, 'Clothing', 8176, 0, NULL, 'sporting-goods_badminton_clothing', 'Sporting Goods :: Badminton :: Clothing', '', 0, 1, 0, '', '', ''),
  4685. (8237, 'Footwear', 8176, 0, NULL, 'sporting-goods_badminton_footwear', 'Sporting Goods :: Badminton :: Footwear', '', 0, 1, 0, '', '', ''),
  4686. (8238, 'Nets', 8176, 0, NULL, 'sporting-goods_badminton_nets', 'Sporting Goods :: Badminton :: Nets', '', 0, 1, 0, '', '', ''),
  4687. (8239, 'Rackets', 8176, 0, NULL, 'sporting-goods_badminton_rackets', 'Sporting Goods :: Badminton :: Rackets', '', 0, 1, 0, '', '', ''),
  4688. (8240, 'Shuttlecocks', 8176, 0, NULL, 'sporting-goods_badminton_shuttlecocks', 'Sporting Goods :: Badminton :: Shuttlecocks', '', 0, 1, 0, '', '', ''),
  4689. (8241, 'Trophies', 8176, 0, NULL, 'sporting-goods_badminton_trophies', 'Sporting Goods :: Badminton :: Trophies', '', 0, 1, 0, '', '', ''),
  4690. (8242, 'Other Badminton', 8176, 0, NULL, 'sporting-goods_badminton_other-badminton', 'Sporting Goods :: Badminton :: Other Badminton', '', 0, 1, 0, '', '', ''),
  4691. (8243, 'Balls', 8177, 0, NULL, 'sporting-goods_baseball_balls', 'Sporting Goods :: Baseball :: Balls', '', 0, 1, 0, '', '', ''),
  4692. (8244, 'Bats', 8177, 0, NULL, 'sporting-goods_baseball_bats', 'Sporting Goods :: Baseball :: Bats', '', 0, 1, 0, '', '', ''),
  4693. (8245, 'Caps', 8177, 0, NULL, 'sporting-goods_baseball_caps', 'Sporting Goods :: Baseball :: Caps', '', 0, 1, 0, '', '', ''),
  4694. (8246, 'Clothing', 8177, 0, NULL, 'sporting-goods_baseball_clothing', 'Sporting Goods :: Baseball :: Clothing', '', 0, 1, 0, '', '', ''),
  4695. (8247, 'Footwear/ Cleats', 8177, 0, NULL, 'sporting-goods_baseball_footwear-cleats', 'Sporting Goods :: Baseball :: Footwear/ Cleats', '', 0, 1, 0, '', '', ''),
  4696. (8248, 'Gloves/ Mitts', 8177, 0, NULL, 'sporting-goods_baseball_gloves-mitts', 'Sporting Goods :: Baseball :: Gloves/ Mitts', '', 0, 1, 0, '', '', ''),
  4697. (8249, 'Jerseys & Shirts', 8177, 0, NULL, 'sporting-goods_baseball_jerseys-shirts', 'Sporting Goods :: Baseball :: Jerseys & Shirts', '', 0, 1, 0, '', '', ''),
  4698. (8250, 'Protective Gear', 8177, 0, NULL, 'sporting-goods_baseball_protective-gear', 'Sporting Goods :: Baseball :: Protective Gear', '', 0, 1, 0, '', '', ''),
  4699. (8251, 'Training Aids', 8177, 0, NULL, 'sporting-goods_baseball_training-aids', 'Sporting Goods :: Baseball :: Training Aids', '', 0, 1, 0, '', '', ''),
  4700. (8252, 'Other Baseball', 8177, 0, NULL, 'sporting-goods_baseball_other-baseball', 'Sporting Goods :: Baseball :: Other Baseball', '', 0, 1, 0, '', '', ''),
  4701. (8253, 'Balls', 8178, 0, NULL, 'sporting-goods_basketball_balls', 'Sporting Goods :: Basketball :: Balls', '', 0, 1, 0, '', '', ''),
  4702. (8254, 'Caps & Hats', 8178, 0, NULL, 'sporting-goods_basketball_caps-hats', 'Sporting Goods :: Basketball :: Caps & Hats', '', 0, 1, 0, '', '', ''),
  4703. (8255, 'Jerseys', 8178, 0, NULL, 'sporting-goods_basketball_jerseys', 'Sporting Goods :: Basketball :: Jerseys', '', 0, 1, 0, '', '', ''),
  4704. (8256, 'Nets/ Backboards', 8178, 0, NULL, 'sporting-goods_basketball_nets-backboards', 'Sporting Goods :: Basketball :: Nets/ Backboards', '', 0, 1, 0, '', '', ''),
  4705. (8257, 'Shoes', 8178, 0, NULL, 'sporting-goods_basketball_shoes', 'Sporting Goods :: Basketball :: Shoes', '', 0, 1, 0, '', '', ''),
  4706. (8258, 'Shorts', 8178, 0, NULL, 'sporting-goods_basketball_shorts', 'Sporting Goods :: Basketball :: Shorts', '', 0, 1, 0, '', '', ''),
  4707. (8259, 'Trophies', 8178, 0, NULL, 'sporting-goods_basketball_trophies', 'Sporting Goods :: Basketball :: Trophies', '', 0, 1, 0, '', '', ''),
  4708. (8260, 'Wristbands', 8178, 0, NULL, 'sporting-goods_basketball_wristbands', 'Sporting Goods :: Basketball :: Wristbands', '', 0, 1, 0, '', '', ''),
  4709. (8261, 'Other Basketball', 8178, 0, NULL, 'sporting-goods_basketball_other-basketball', 'Sporting Goods :: Basketball :: Other Basketball', '', 0, 1, 0, '', '', ''),
  4710. (8262, 'Bowling Balls', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_bowling-balls', 'Sporting Goods :: Bowling (Ten-Pin) :: Bowling Balls', '', 0, 1, 0, '', '', ''),
  4711. (8263, 'Bowling Ball Bags', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_bowling-ball-bags', 'Sporting Goods :: Bowling (Ten-Pin) :: Bowling Ball Bags', '', 0, 1, 0, '', '', ''),
  4712. (8264, 'Bowling Pins', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_bowling-pins', 'Sporting Goods :: Bowling (Ten-Pin) :: Bowling Pins', '', 0, 1, 0, '', '', ''),
  4713. (8265, 'Bowling Shirts', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_bowling-shirts', 'Sporting Goods :: Bowling (Ten-Pin) :: Bowling Shirts', '', 0, 1, 0, '', '', ''),
  4714. (8266, 'Bowling Shoes', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_bowling-shoes', 'Sporting Goods :: Bowling (Ten-Pin) :: Bowling Shoes', '', 0, 1, 0, '', '', ''),
  4715. (8267, 'Trophies', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_trophies', 'Sporting Goods :: Bowling (Ten-Pin) :: Trophies', '', 0, 1, 0, '', '', ''),
  4716. (8268, 'Other Ten-Pin Bowling', 8179, 0, NULL, 'sporting-goods_bowling-ten-pin_other-ten-pin-bowling', 'Sporting Goods :: Bowling (Ten-Pin) :: Other Ten-Pin Bowling', '', 0, 1, 0, '', '', ''),
  4717. (8269, 'Bowls', 8180, 0, NULL, 'sporting-goods_bowls_bowls', 'Sporting Goods :: Bowls :: Bowls', '', 0, 1, 0, '', '', ''),
  4718. (8270, 'Bowls Bags', 8180, 0, NULL, 'sporting-goods_bowls_bowls-bags', 'Sporting Goods :: Bowls :: Bowls Bags', '', 0, 1, 0, '', '', ''),
  4719. (8271, 'Bowls Clothing', 8180, 0, NULL, 'sporting-goods_bowls_bowls-clothing', 'Sporting Goods :: Bowls :: Bowls Clothing', '', 0, 1, 0, '', '', ''),
  4720. (8272, 'Bowls Shoes', 8180, 0, NULL, 'sporting-goods_bowls_bowls-shoes', 'Sporting Goods :: Bowls :: Bowls Shoes', '', 0, 1, 0, '', '', ''),
  4721. (8273, 'Grip & Cleaner', 8180, 0, NULL, 'sporting-goods_bowls_grip-cleaner', 'Sporting Goods :: Bowls :: Grip & Cleaner', '', 0, 1, 0, '', '', ''),
  4722. (8274, 'Trophies', 8180, 0, NULL, 'sporting-goods_bowls_trophies', 'Sporting Goods :: Bowls :: Trophies', '', 0, 1, 0, '', '', ''),
  4723. (8275, 'Other Bowls', 8180, 0, NULL, 'sporting-goods_bowls_other-bowls', 'Sporting Goods :: Bowls :: Other Bowls', '', 0, 1, 0, '', '', ''),
  4724. (8276, 'Boxing Boots', 8181, 0, NULL, 'sporting-goods_boxing_boxing-boots', 'Sporting Goods :: Boxing :: Boxing Boots', '', 0, 1, 0, '', '', ''),
  4725. (8277, 'DVDs', 8181, 0, NULL, 'sporting-goods_boxing_dvds', 'Sporting Goods :: Boxing :: DVDs', '', 0, 1, 0, '', '', ''),
  4726. (8278, 'Gloves', 8181, 0, NULL, 'sporting-goods_boxing_gloves', 'Sporting Goods :: Boxing :: Gloves', '', 0, 1, 0, '', '', ''),
  4727. (8279, 'Headguards & Protective Gear', 8181, 0, NULL, 'sporting-goods_boxing_headguards-protective-gear', 'Sporting Goods :: Boxing :: Headguards & Protective Gear', '', 0, 1, 0, '', '', ''),
  4728. (8280, 'Punch Bags & Pads', 8181, 0, NULL, 'sporting-goods_boxing_punch-bags-pads', 'Sporting Goods :: Boxing :: Punch Bags & Pads', '', 0, 1, 0, '', '', ''),
  4729. (8281, 'Sets', 8181, 0, NULL, 'sporting-goods_boxing_sets', 'Sporting Goods :: Boxing :: Sets', '', 0, 1, 0, '', '', ''),
  4730. (8282, 'Shorts', 8181, 0, NULL, 'sporting-goods_boxing_shorts', 'Sporting Goods :: Boxing :: Shorts', '', 0, 1, 0, '', '', ''),
  4731. (8283, 'Skipping Ropes', 8181, 0, NULL, 'sporting-goods_boxing_skipping-ropes', 'Sporting Goods :: Boxing :: Skipping Ropes', '', 0, 1, 0, '', '', ''),
  4732. (8284, 'Speedballs', 8181, 0, NULL, 'sporting-goods_boxing_speedballs', 'Sporting Goods :: Boxing :: Speedballs', '', 0, 1, 0, '', '', ''),
  4733. (8285, 'Thai Boxing', 8181, 0, NULL, 'sporting-goods_boxing_thai-boxing', 'Sporting Goods :: Boxing :: Thai Boxing', '', 0, 1, 0, '', '', ''),
  4734. (8286, 'Other Boxing', 8181, 0, NULL, 'sporting-goods_boxing_other-boxing', 'Sporting Goods :: Boxing :: Other Boxing', '', 0, 1, 0, '', '', ''),
  4735. (8287, 'Accessories', 8182, 0, NULL, 'sporting-goods_camping-hiking_accessories', 'Sporting Goods :: Camping & Hiking :: Accessories', '', 0, 1, 0, '', '', ''),
  4736. (8288, 'Boots & Shoes', 8182, 0, NULL, 'sporting-goods_camping-hiking_boots-shoes', 'Sporting Goods :: Camping & Hiking :: Boots & Shoes', '', 0, 1, 0, '', '', ''),
  4737. (8289, 'Cables & Hookups', 8182, 0, NULL, 'sporting-goods_camping-hiking_cables-hookups', 'Sporting Goods :: Camping & Hiking :: Cables & Hookups', '', 0, 1, 0, '', '', ''),
  4738. (8290, 'Clothing', 8182, 0, NULL, 'sporting-goods_camping-hiking_clothing', 'Sporting Goods :: Camping & Hiking :: Clothing', '', 0, 1, 0, '', '', ''),
  4739. (8291, 'Cooking Supplies', 8182, 0, NULL, 'sporting-goods_camping-hiking_cooking-supplies', 'Sporting Goods :: Camping & Hiking :: Cooking Supplies', '', 0, 1, 0, '', '', ''),
  4740. (8292, 'Equipment', 8182, 0, NULL, 'sporting-goods_camping-hiking_equipment', 'Sporting Goods :: Camping & Hiking :: Equipment', '', 0, 1, 0, '', '', ''),
  4741. (8293, 'Lights, Lanterns & Torches', 8182, 0, NULL, 'sporting-goods_camping-hiking_lights-lanterns-torches', 'Sporting Goods :: Camping & Hiking :: Lights, Lanterns & Torches', '', 0, 1, 0, '', '', ''),
  4742. (8294, 'Rucksacks & Bags', 8182, 0, NULL, 'sporting-goods_camping-hiking_rucksacks-bags', 'Sporting Goods :: Camping & Hiking :: Rucksacks & Bags', '', 0, 1, 0, '', '', ''),
  4743. (8295, 'Sleeping Mats & Pads', 8182, 0, NULL, 'sporting-goods_camping-hiking_sleeping-mats-pads', 'Sporting Goods :: Camping & Hiking :: Sleeping Mats & Pads', '', 0, 1, 0, '', '', ''),
  4744. (8296, 'Sleeping Bags', 8182, 0, NULL, 'sporting-goods_camping-hiking_sleeping-bags', 'Sporting Goods :: Camping & Hiking :: Sleeping Bags', '', 0, 1, 0, '', '', ''),
  4745. (8297, 'Tables & Chairs', 8182, 0, NULL, 'sporting-goods_camping-hiking_tables-chairs', 'Sporting Goods :: Camping & Hiking :: Tables & Chairs', '', 0, 1, 0, '', '', ''),
  4746. (8298, 'Tents', 8182, 0, NULL, 'sporting-goods_camping-hiking_tents', 'Sporting Goods :: Camping & Hiking :: Tents', '', 0, 1, 0, '', '', ''),
  4747. (8299, 'Tent Accessories', 8182, 0, NULL, 'sporting-goods_camping-hiking_tent-accessories', 'Sporting Goods :: Camping & Hiking :: Tent Accessories', '', 0, 1, 0, '', '', ''),
  4748. (8300, 'Other Camping & Hiking', 8182, 0, NULL, 'sporting-goods_camping-hiking_other-camping-hiking', 'Sporting Goods :: Camping & Hiking :: Other Camping & Hiking', '', 0, 1, 0, '', '', ''),
  4749. (8301, 'Accessories', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_accessories', 'Sporting Goods :: Canoeing & Kayaking :: Accessories', '', 0, 1, 0, '', '', ''),
  4750. (8302, 'Canoes', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_canoes', 'Sporting Goods :: Canoeing & Kayaking :: Canoes', '', 0, 1, 0, '', '', ''),
  4751. (8303, 'Clothing', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_clothing', 'Sporting Goods :: Canoeing & Kayaking :: Clothing', '', 0, 1, 0, '', '', ''),
  4752. (8304, 'Inflatables', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_inflatables', 'Sporting Goods :: Canoeing & Kayaking :: Inflatables', '', 0, 1, 0, '', '', ''),
  4753. (8305, 'Kayaks', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_kayaks', 'Sporting Goods :: Canoeing & Kayaking :: Kayaks', '', 0, 1, 0, '', '', ''),
  4754. (8306, 'Life Jackets', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_life-jackets', 'Sporting Goods :: Canoeing & Kayaking :: Life Jackets', '', 0, 1, 0, '', '', ''),
  4755. (8307, 'Paddles', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_paddles', 'Sporting Goods :: Canoeing & Kayaking :: Paddles', '', 0, 1, 0, '', '', ''),
  4756. (8308, 'Spray Decks', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_spray-decks', 'Sporting Goods :: Canoeing & Kayaking :: Spray Decks', '', 0, 1, 0, '', '', ''),
  4757. (8309, 'Wetsuits', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_wetsuits', 'Sporting Goods :: Canoeing & Kayaking :: Wetsuits', '', 0, 1, 0, '', '', ''),
  4758. (8310, 'Other Canoeing & Kayaking', 8183, 0, NULL, 'sporting-goods_canoeing-kayaking_other-canoeing-kayaking', 'Sporting Goods :: Canoeing & Kayaking :: Other Canoeing & Kayaking', '', 0, 1, 0, '', '', ''),
  4759. (8311, 'Bags', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_bags', 'Sporting Goods :: Climbing/ Mountaineering :: Bags', '', 0, 1, 0, '', '', ''),
  4760. (8312, 'Books & Manuals', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_books-manuals', 'Sporting Goods :: Climbing/ Mountaineering :: Books & Manuals', '', 0, 1, 0, '', '', ''),
  4761. (8313, 'Carabiners & Hardware', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_carabiners-hardware', 'Sporting Goods :: Climbing/ Mountaineering :: Carabiners & Hardware', '', 0, 1, 0, '', '', ''),
  4762. (8314, 'Carabiners & Hardware', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_carabiners-hardware1', 'Sporting Goods :: Climbing/ Mountaineering :: Carabiners & Hardware', '', 0, 1, 0, '', '', ''),
  4763. (8315, 'Climbing Holds', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_climbing-holds', 'Sporting Goods :: Climbing/ Mountaineering :: Climbing Holds', '', 0, 1, 0, '', '', ''),
  4764. (8316, 'Clothing', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_clothing', 'Sporting Goods :: Climbing/ Mountaineering :: Clothing', '', 0, 1, 0, '', '', ''),
  4765. (8317, 'Crampons', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_crampons', 'Sporting Goods :: Climbing/ Mountaineering :: Crampons', '', 0, 1, 0, '', '', ''),
  4766. (8318, 'DVDs & Videos', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_dvds-videos', 'Sporting Goods :: Climbing/ Mountaineering :: DVDs & Videos', '', 0, 1, 0, '', '', ''),
  4767. (8319, 'Footwear', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_footwear', 'Sporting Goods :: Climbing/ Mountaineering :: Footwear', '', 0, 1, 0, '', '', ''),
  4768. (8320, 'Harnesses', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_harnesses', 'Sporting Goods :: Climbing/ Mountaineering :: Harnesses', '', 0, 1, 0, '', '', ''),
  4769. (8321, 'Ice Axes', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_ice-axes', 'Sporting Goods :: Climbing/ Mountaineering :: Ice Axes', '', 0, 1, 0, '', '', ''),
  4770. (8322, 'Ropes, Cords & Slings', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_ropes-cords-slings', 'Sporting Goods :: Climbing/ Mountaineering :: Ropes, Cords & Slings', '', 0, 1, 0, '', '', ''),
  4771. (8323, 'Other Climbing/ Mountaineering', 8184, 0, NULL, 'sporting-goods_climbing-mountaineering_other-climbing-mountaineering', 'Sporting Goods :: Climbing/ Mountaineering :: Other Climbing/ Mountaineering', '', 0, 1, 0, '', '', ''),
  4772. (8324, 'Balls', 8185, 0, NULL, 'sporting-goods_cricket_balls', 'Sporting Goods :: Cricket :: Balls', '', 0, 1, 0, '', '', ''),
  4773. (8325, 'Bags/ Coffins', 8185, 0, NULL, 'sporting-goods_cricket_bags-coffins', 'Sporting Goods :: Cricket :: Bags/ Coffins', '', 0, 1, 0, '', '', ''),
  4774. (8326, 'Bats', 8185, 0, NULL, 'sporting-goods_cricket_bats', 'Sporting Goods :: Cricket :: Bats', '', 0, 1, 0, '', '', ''),
  4775. (8327, 'Boxes', 8185, 0, NULL, 'sporting-goods_cricket_boxes', 'Sporting Goods :: Cricket :: Boxes', '', 0, 1, 0, '', '', ''),
  4776. (8328, 'Gloves', 8185, 0, NULL, 'sporting-goods_cricket_gloves', 'Sporting Goods :: Cricket :: Gloves', '', 0, 1, 0, '', '', ''),
  4777. (8329, 'Helmets', 8185, 0, NULL, 'sporting-goods_cricket_helmets', 'Sporting Goods :: Cricket :: Helmets', '', 0, 1, 0, '', '', ''),
  4778. (8330, 'Pads', 8185, 0, NULL, 'sporting-goods_cricket_pads', 'Sporting Goods :: Cricket :: Pads', '', 0, 1, 0, '', '', ''),
  4779. (8331, 'Shoes/ Spikes', 8185, 0, NULL, 'sporting-goods_cricket_shoes-spikes', 'Sporting Goods :: Cricket :: Shoes/ Spikes', '', 0, 1, 0, '', '', ''),
  4780. (8332, 'Stumps/ Bails', 8185, 0, NULL, 'sporting-goods_cricket_stumps-bails', 'Sporting Goods :: Cricket :: Stumps/ Bails', '', 0, 1, 0, '', '', ''),
  4781. (8333, 'Sunglasses', 8185, 0, NULL, 'sporting-goods_cricket_sunglasses', 'Sporting Goods :: Cricket :: Sunglasses', '', 0, 1, 0, '', '', ''),
  4782. (8334, 'Trophies', 8185, 0, NULL, 'sporting-goods_cricket_trophies', 'Sporting Goods :: Cricket :: Trophies', '', 0, 1, 0, '', '', ''),
  4783. (8335, 'Whites & Clothing', 8185, 0, NULL, 'sporting-goods_cricket_whites-clothing', 'Sporting Goods :: Cricket :: Whites & Clothing', '', 0, 1, 0, '', '', ''),
  4784. (8336, 'Other Cricket', 8185, 0, NULL, 'sporting-goods_cricket_other-cricket', 'Sporting Goods :: Cricket :: Other Cricket', '', 0, 1, 0, '', '', ''),
  4785. (8337, 'Bikes', 8186, 0, NULL, 'sporting-goods_cycling_bikes', 'Sporting Goods :: Cycling :: Bikes', '', 0, 1, 0, '', '', ''),
  4786. (8338, 'Bike Frames', 8186, 0, NULL, 'sporting-goods_cycling_bike-frames', 'Sporting Goods :: Cycling :: Bike Frames', '', 0, 1, 0, '', '', ''),
  4787. (8339, 'Bike Components & Parts', 8186, 0, NULL, 'sporting-goods_cycling_bike-components-parts', 'Sporting Goods :: Cycling :: Bike Components & Parts', '', 0, 1, 0, '', '', ''),
  4788. (8340, 'Bike Accessories', 8186, 0, NULL, 'sporting-goods_cycling_bike-accessories', 'Sporting Goods :: Cycling :: Bike Accessories', '', 0, 1, 0, '', '', ''),
  4789. (8341, 'Bike Maintenance & Tools', 8186, 0, NULL, 'sporting-goods_cycling_bike-maintenance-tools', 'Sporting Goods :: Cycling :: Bike Maintenance & Tools', '', 0, 1, 0, '', '', ''),
  4790. (8342, 'Car Racks', 8186, 0, NULL, 'sporting-goods_cycling_car-racks', 'Sporting Goods :: Cycling :: Car Racks', '', 0, 1, 0, '', '', ''),
  4791. (8343, 'Cycling Clothing', 8186, 0, NULL, 'sporting-goods_cycling_cycling-clothing', 'Sporting Goods :: Cycling :: Cycling Clothing', '', 0, 1, 0, '', '', ''),
  4792. (8344, 'Cycling Shoes & Overshoes', 8186, 0, NULL, 'sporting-goods_cycling_cycling-shoes-overshoes', 'Sporting Goods :: Cycling :: Cycling Shoes & Overshoes', '', 0, 1, 0, '', '', ''),
  4793. (8345, 'Helmets & Protective Gear', 8186, 0, NULL, 'sporting-goods_cycling_helmets-protective-gear', 'Sporting Goods :: Cycling :: Helmets & Protective Gear', '', 0, 1, 0, '', '', ''),
  4794. (8346, 'Sunglasses & Goggles', 8186, 0, NULL, 'sporting-goods_cycling_sunglasses-goggles', 'Sporting Goods :: Cycling :: Sunglasses & Goggles', '', 0, 1, 0, '', '', ''),
  4795. (8347, 'Other Cycling', 8186, 0, NULL, 'sporting-goods_cycling_other-cycling', 'Sporting Goods :: Cycling :: Other Cycling', '', 0, 1, 0, '', '', ''),
  4796. (8348, 'Clothing/ Shirts', 8187, 0, NULL, 'sporting-goods_darts_clothing-shirts', 'Sporting Goods :: Darts :: Clothing/ Shirts', '', 0, 1, 0, '', '', ''),
  4797. (8349, 'Dart Boards', 8187, 0, NULL, 'sporting-goods_darts_dart-boards', 'Sporting Goods :: Darts :: Dart Boards', '', 0, 1, 0, '', '', ''),
  4798. (8350, 'Darts', 8187, 0, NULL, 'sporting-goods_darts_darts', 'Sporting Goods :: Darts :: Darts', '', 0, 1, 0, '', '', ''),
  4799. (8351, 'Flights', 8187, 0, NULL, 'sporting-goods_darts_flights', 'Sporting Goods :: Darts :: Flights', '', 0, 1, 0, '', '', ''),
  4800. (8352, 'Shafts', 8187, 0, NULL, 'sporting-goods_darts_shafts', 'Sporting Goods :: Darts :: Shafts', '', 0, 1, 0, '', '', ''),
  4801. (8353, 'Trophies', 8187, 0, NULL, 'sporting-goods_darts_trophies', 'Sporting Goods :: Darts :: Trophies', '', 0, 1, 0, '', '', ''),
  4802. (8354, 'Other Darts', 8187, 0, NULL, 'sporting-goods_darts_other-darts', 'Sporting Goods :: Darts :: Other Darts', '', 0, 1, 0, '', '', ''),
  4803. (8355, 'Books & Magazines', 8188, 0, NULL, 'sporting-goods_equestrian_books-magazines', 'Sporting Goods :: Equestrian :: Books & Magazines', '', 0, 1, 0, '', '', ''),
  4804. (8356, 'Driving', 8188, 0, NULL, 'sporting-goods_equestrian_driving', 'Sporting Goods :: Equestrian :: Driving', '', 0, 1, 0, '', '', ''),
  4805. (8357, 'DVDs', 8188, 0, NULL, 'sporting-goods_equestrian_dvds', 'Sporting Goods :: Equestrian :: DVDs', '', 0, 1, 0, '', '', ''),
  4806. (8358, 'Horse Trailers/ Horseboxes', 8188, 0, NULL, 'sporting-goods_equestrian_horse-trailers-horseboxes', 'Sporting Goods :: Equestrian :: Horse Trailers/ Horseboxes', '', 0, 1, 0, '', '', ''),
  4807. (8359, 'Horse Wear & Equipment', 8188, 0, NULL, 'sporting-goods_equestrian_horse-wear-equipment', 'Sporting Goods :: Equestrian :: Horse Wear & Equipment', '', 0, 1, 0, '', '', ''),
  4808. (8360, 'Prints & Art', 8188, 0, NULL, 'sporting-goods_equestrian_prints-art', 'Sporting Goods :: Equestrian :: Prints & Art', '', 0, 1, 0, '', '', ''),
  4809. (8361, 'Rider Clothing & Accessories', 8188, 0, NULL, 'sporting-goods_equestrian_rider-clothing-accessories', 'Sporting Goods :: Equestrian :: Rider Clothing & Accessories', '', 0, 1, 0, '', '', ''),
  4810. (8362, 'Stable Accessories', 8188, 0, NULL, 'sporting-goods_equestrian_stable-accessories', 'Sporting Goods :: Equestrian :: Stable Accessories', '', 0, 1, 0, '', '', ''),
  4811. (8363, 'Trophies', 8188, 0, NULL, 'sporting-goods_equestrian_trophies', 'Sporting Goods :: Equestrian :: Trophies', '', 0, 1, 0, '', '', ''),
  4812. (8364, 'Videos', 8188, 0, NULL, 'sporting-goods_equestrian_videos', 'Sporting Goods :: Equestrian :: Videos', '', 0, 1, 0, '', '', ''),
  4813. (8365, 'Other Equestrian', 8188, 0, NULL, 'sporting-goods_equestrian_other-equestrian', 'Sporting Goods :: Equestrian :: Other Equestrian', '', 0, 1, 0, '', '', ''),
  4814. (8366, 'Cardiovascular Equipment', 8189, 0, NULL, 'sporting-goods_exercise-fitness_cardiovascular-equipment', 'Sporting Goods :: Exercise & Fitness :: Cardiovascular Equipment', '', 0, 1, 0, '', '', ''),
  4815. (8367, 'Exercise Clothing & Shoes', 8189, 0, NULL, 'sporting-goods_exercise-fitness_exercise-clothing-shoes', 'Sporting Goods :: Exercise & Fitness :: Exercise Clothing & Shoes', '', 0, 1, 0, '', '', ''),
  4816. (8368, 'Fitness Accessories', 8189, 0, NULL, 'sporting-goods_exercise-fitness_fitness-accessories', 'Sporting Goods :: Exercise & Fitness :: Fitness Accessories', '', 0, 1, 0, '', '', ''),
  4817. (8369, 'Instructional Items', 8189, 0, NULL, 'sporting-goods_exercise-fitness_instructional-items', 'Sporting Goods :: Exercise & Fitness :: Instructional Items', '', 0, 1, 0, '', '', ''),
  4818. (8370, 'Monitors/Pedometers', 8189, 0, NULL, 'sporting-goods_exercise-fitness_monitors-pedometers', 'Sporting Goods :: Exercise & Fitness :: Monitors/Pedometers', '', 0, 1, 0, '', '', ''),
  4819. (8371, 'Strength Training', 8189, 0, NULL, 'sporting-goods_exercise-fitness_strength-training', 'Sporting Goods :: Exercise & Fitness :: Strength Training', '', 0, 1, 0, '', '', ''),
  4820. (8372, 'Trophies', 8189, 0, NULL, 'sporting-goods_exercise-fitness_trophies', 'Sporting Goods :: Exercise & Fitness :: Trophies', '', 0, 1, 0, '', '', ''),
  4821. (8373, 'Vitamins & Supplements', 8189, 0, NULL, 'sporting-goods_exercise-fitness_vitamins-supplements', 'Sporting Goods :: Exercise & Fitness :: Vitamins & Supplements', '', 0, 1, 0, '', '', ''),
  4822. (8374, 'Yoga Equipment', 8189, 0, NULL, 'sporting-goods_exercise-fitness_yoga-equipment', 'Sporting Goods :: Exercise & Fitness :: Yoga Equipment', '', 0, 1, 0, '', '', ''),
  4823. (8375, 'Other Exercise & Fitness', 8189, 0, NULL, 'sporting-goods_exercise-fitness_other-exercise-fitness', 'Sporting Goods :: Exercise & Fitness :: Other Exercise & Fitness', '', 0, 1, 0, '', '', ''),
  4824. (8376, 'Clothing & Footwear', 8190, 0, NULL, 'sporting-goods_fishing_clothing-footwear', 'Sporting Goods :: Fishing :: Clothing & Footwear', '', 0, 1, 0, '', '', ''),
  4825. (8377, 'Coarse Fishing', 8190, 0, NULL, 'sporting-goods_fishing_coarse-fishing', 'Sporting Goods :: Fishing :: Coarse Fishing', '', 0, 1, 0, '', '', ''),
  4826. (8378, 'DVDs, Books & Catalogues', 8190, 0, NULL, 'sporting-goods_fishing_dvds-books-catalogues', 'Sporting Goods :: Fishing :: DVDs, Books & Catalogues', '', 0, 1, 0, '', '', ''),
  4827. (8379, 'Fly Fishing', 8190, 0, NULL, 'sporting-goods_fishing_fly-fishing', 'Sporting Goods :: Fishing :: Fly Fishing', '', 0, 1, 0, '', '', ''),
  4828. (8380, 'Sea Fishing', 8190, 0, NULL, 'sporting-goods_fishing_sea-fishing', 'Sporting Goods :: Fishing :: Sea Fishing', '', 0, 1, 0, '', '', ''),
  4829. (8381, 'Tackle Boxes', 8190, 0, NULL, 'sporting-goods_fishing_tackle-boxes', 'Sporting Goods :: Fishing :: Tackle Boxes', '', 0, 1, 0, '', '', ''),
  4830. (8382, 'Universal Accessories', 8190, 0, NULL, 'sporting-goods_fishing_universal-accessories', 'Sporting Goods :: Fishing :: Universal Accessories', '', 0, 1, 0, '', '', ''),
  4831. (8383, 'Trophies', 8190, 0, NULL, 'sporting-goods_fishing_trophies', 'Sporting Goods :: Fishing :: Trophies', '', 0, 1, 0, '', '', ''),
  4832. (8384, 'Vintage', 8190, 0, NULL, 'sporting-goods_fishing_vintage', 'Sporting Goods :: Fishing :: Vintage', '', 0, 1, 0, '', '', ''),
  4833. (8385, 'Other Fishing', 8190, 0, NULL, 'sporting-goods_fishing_other-fishing', 'Sporting Goods :: Fishing :: Other Fishing', '', 0, 1, 0, '', '', ''),
  4834. (8386, 'Caps & Hats', 8191, 0, NULL, 'sporting-goods_football_caps-hats', 'Sporting Goods :: Football :: Caps & Hats', '', 0, 1, 0, '', '', ''),
  4835. (8387, 'Football Boots', 8191, 0, NULL, 'sporting-goods_football_football-boots', 'Sporting Goods :: Football :: Football Boots', '', 0, 1, 0, '', '', ''),
  4836. (8388, 'Football Trainers', 8191, 0, NULL, 'sporting-goods_football_football-trainers', 'Sporting Goods :: Football :: Football Trainers', '', 0, 1, 0, '', '', ''),
  4837. (8389, 'Footballs', 8191, 0, NULL, 'sporting-goods_football_footballs', 'Sporting Goods :: Football :: Footballs', '', 0, 1, 0, '', '', ''),
  4838. (8390, 'Gloves', 8191, 0, NULL, 'sporting-goods_football_gloves', 'Sporting Goods :: Football :: Gloves', '', 0, 1, 0, '', '', ''),
  4839. (8391, 'Shinpads', 8191, 0, NULL, 'sporting-goods_football_shinpads', 'Sporting Goods :: Football :: Shinpads', '', 0, 1, 0, '', '', ''),
  4840. (8392, 'Shorts', 8191, 0, NULL, 'sporting-goods_football_shorts', 'Sporting Goods :: Football :: Shorts', '', 0, 1, 0, '', '', ''),
  4841. (8393, 'Socks', 8191, 0, NULL, 'sporting-goods_football_socks', 'Sporting Goods :: Football :: Socks', '', 0, 1, 0, '', '', ''),
  4842. (8394, 'Table Football', 8191, 0, NULL, 'sporting-goods_football_table-football', 'Sporting Goods :: Football :: Table Football', '', 0, 1, 0, '', '', ''),
  4843. (8395, 'Training Equipment & Goals', 8191, 0, NULL, 'sporting-goods_football_training-equipment-goals', 'Sporting Goods :: Football :: Training Equipment & Goals', '', 0, 1, 0, '', '', ''),
  4844. (8396, 'Training Kit & Bibs', 8191, 0, NULL, 'sporting-goods_football_training-kit-bibs', 'Sporting Goods :: Football :: Training Kit & Bibs', '', 0, 1, 0, '', '', ''),
  4845. (8397, 'Trophies', 8191, 0, NULL, 'sporting-goods_football_trophies', 'Sporting Goods :: Football :: Trophies', '', 0, 1, 0, '', '', ''),
  4846. (8398, 'Wristbands', 8191, 0, NULL, 'sporting-goods_football_wristbands', 'Sporting Goods :: Football :: Wristbands', '', 0, 1, 0, '', '', ''),
  4847. (8399, 'Other Football', 8191, 0, NULL, 'sporting-goods_football_other-football', 'Sporting Goods :: Football :: Other Football', '', 0, 1, 0, '', '', ''),
  4848. (8400, 'English Clubs', 8192, 0, NULL, 'sporting-goods_football-shirts_english-clubs', 'Sporting Goods :: Football Shirts :: English Clubs', '', 0, 1, 0, '', '', ''),
  4849. (8401, 'Irish Clubs', 8192, 0, NULL, 'sporting-goods_football-shirts_irish-clubs', 'Sporting Goods :: Football Shirts :: Irish Clubs', '', 0, 1, 0, '', '', ''),
  4850. (8402, 'Scottish Clubs', 8192, 0, NULL, 'sporting-goods_football-shirts_scottish-clubs', 'Sporting Goods :: Football Shirts :: Scottish Clubs', '', 0, 1, 0, '', '', ''),
  4851. (8403, 'Welsh Clubs', 8192, 0, NULL, 'sporting-goods_football-shirts_welsh-clubs', 'Sporting Goods :: Football Shirts :: Welsh Clubs', '', 0, 1, 0, '', '', ''),
  4852. (8404, 'European Clubs', 8192, 0, NULL, 'sporting-goods_football-shirts_european-clubs', 'Sporting Goods :: Football Shirts :: European Clubs', '', 0, 1, 0, '', '', ''),
  4853. (8405, 'Rest Of The World Clubs', 8192, 0, NULL, 'sporting-goods_football-shirts_rest-of-the-world-clubs', 'Sporting Goods :: Football Shirts :: Rest Of The World Clubs', '', 0, 1, 0, '', '', ''),
  4854. (8406, 'National Teams', 8192, 0, NULL, 'sporting-goods_football-shirts_national-teams', 'Sporting Goods :: Football Shirts :: National Teams', '', 0, 1, 0, '', '', ''),
  4855. (8407, 'Other Football Shirts', 8192, 0, NULL, 'sporting-goods_football-shirts_other-football-shirts', 'Sporting Goods :: Football Shirts :: Other Football Shirts', '', 0, 1, 0, '', '', ''),
  4856. (8408, 'Accessories', 8193, 0, NULL, 'sporting-goods_golf_accessories', 'Sporting Goods :: Golf :: Accessories', '', 0, 1, 0, '', '', ''),
  4857. (8409, 'DVDs', 8193, 0, NULL, 'sporting-goods_golf_dvds', 'Sporting Goods :: Golf :: DVDs', '', 0, 1, 0, '', '', ''),
  4858. (8410, 'Golf Bags', 8193, 0, NULL, 'sporting-goods_golf_golf-bags', 'Sporting Goods :: Golf :: Golf Bags', '', 0, 1, 0, '', '', ''),
  4859. (8411, 'Golf Balls', 8193, 0, NULL, 'sporting-goods_golf_golf-balls', 'Sporting Goods :: Golf :: Golf Balls', '', 0, 1, 0, '', '', ''),
  4860. (8412, 'Golf Carts/ Trolleys', 8193, 0, NULL, 'sporting-goods_golf_golf-carts-trolleys', 'Sporting Goods :: Golf :: Golf Carts/ Trolleys', '', 0, 1, 0, '', '', ''),
  4861. (8413, 'Golf Clothing', 8193, 0, NULL, 'sporting-goods_golf_golf-clothing', 'Sporting Goods :: Golf :: Golf Clothing', '', 0, 1, 0, '', '', ''),
  4862. (8414, 'Golf Clubs', 8193, 0, NULL, 'sporting-goods_golf_golf-clubs', 'Sporting Goods :: Golf :: Golf Clubs', '', 0, 1, 0, '', '', ''),
  4863. (8415, 'Golf Club Components', 8193, 0, NULL, 'sporting-goods_golf_golf-club-components', 'Sporting Goods :: Golf :: Golf Club Components', '', 0, 1, 0, '', '', ''),
  4864. (8416, 'Golf Coaching/ Lessons', 8193, 0, NULL, 'sporting-goods_golf_golf-coaching-lessons', 'Sporting Goods :: Golf :: Golf Coaching/ Lessons', '', 0, 1, 0, '', '', ''),
  4865. (8417, 'Golf Gloves', 8193, 0, NULL, 'sporting-goods_golf_golf-gloves', 'Sporting Goods :: Golf :: Golf Gloves', '', 0, 1, 0, '', '', ''),
  4866. (8418, 'Golf Shoes', 8193, 0, NULL, 'sporting-goods_golf_golf-shoes', 'Sporting Goods :: Golf :: Golf Shoes', '', 0, 1, 0, '', '', ''),
  4867. (8419, 'Golf Tees', 8193, 0, NULL, 'sporting-goods_golf_golf-tees', 'Sporting Goods :: Golf :: Golf Tees', '', 0, 1, 0, '', '', ''),
  4868. (8420, 'Tee Times/ Green Fees', 8193, 0, NULL, 'sporting-goods_golf_tee-times-green-fees', 'Sporting Goods :: Golf :: Tee Times/ Green Fees', '', 0, 1, 0, '', '', ''),
  4869. (8421, 'Training Aids', 8193, 0, NULL, 'sporting-goods_golf_training-aids', 'Sporting Goods :: Golf :: Training Aids', '', 0, 1, 0, '', '', ''),
  4870. (8422, 'Trophies', 8193, 0, NULL, 'sporting-goods_golf_trophies', 'Sporting Goods :: Golf :: Trophies', '', 0, 1, 0, '', '', ''),
  4871. (8423, 'Videos', 8193, 0, NULL, 'sporting-goods_golf_videos', 'Sporting Goods :: Golf :: Videos', '', 0, 1, 0, '', '', ''),
  4872. (8424, 'Other Golf', 8193, 0, NULL, 'sporting-goods_golf_other-golf', 'Sporting Goods :: Golf :: Other Golf', '', 0, 1, 0, '', '', ''),
  4873. (8425, 'Leotards', 8194, 0, NULL, 'sporting-goods_gymnastics_leotards', 'Sporting Goods :: Gymnastics :: Leotards', '', 0, 1, 0, '', '', ''),
  4874. (8426, 'Training Equipment', 8194, 0, NULL, 'sporting-goods_gymnastics_training-equipment', 'Sporting Goods :: Gymnastics :: Training Equipment', '', 0, 1, 0, '', '', ''),
  4875. (8427, 'Trophies', 8194, 0, NULL, 'sporting-goods_gymnastics_trophies', 'Sporting Goods :: Gymnastics :: Trophies', '', 0, 1, 0, '', '', ''),
  4876. (8428, 'Other Gymnastics', 8194, 0, NULL, 'sporting-goods_gymnastics_other-gymnastics', 'Sporting Goods :: Gymnastics :: Other Gymnastics', '', 0, 1, 0, '', '', ''),
  4877. (8429, 'Accessories', 8195, 0, NULL, 'sporting-goods_hockey_accessories', 'Sporting Goods :: Hockey :: Accessories', '', 0, 1, 0, '', '', ''),
  4878. (8430, 'Bags', 8195, 0, NULL, 'sporting-goods_hockey_bags', 'Sporting Goods :: Hockey :: Bags', '', 0, 1, 0, '', '', ''),
  4879. (8431, 'Balls', 8195, 0, NULL, 'sporting-goods_hockey_balls', 'Sporting Goods :: Hockey :: Balls', '', 0, 1, 0, '', '', ''),
  4880. (8432, 'Sticks', 8195, 0, NULL, 'sporting-goods_hockey_sticks', 'Sporting Goods :: Hockey :: Sticks', '', 0, 1, 0, '', '', ''),
  4881. (8433, 'Not specified', 8195, 0, NULL, 'sporting-goods_hockey_not-specified', 'Sporting Goods :: Hockey :: Not specified', '', 0, 1, 0, '', '', ''),
  4882. (8434, 'Accessories', 8196, 0, NULL, 'sporting-goods_hunting_accessories', 'Sporting Goods :: Hunting :: Accessories', '', 0, 1, 0, '', '', ''),
  4883. (8435, 'Cartridge Bags', 8196, 0, NULL, 'sporting-goods_hunting_cartridge-bags', 'Sporting Goods :: Hunting :: Cartridge Bags', '', 0, 1, 0, '', '', ''),
  4884. (8436, 'Catapults', 8196, 0, NULL, 'sporting-goods_hunting_catapults', 'Sporting Goods :: Hunting :: Catapults', '', 0, 1, 0, '', '', ''),
  4885. (8437, 'Clay Pigeon Shooting', 8196, 0, NULL, 'sporting-goods_hunting_clay-pigeon-shooting', 'Sporting Goods :: Hunting :: Clay Pigeon Shooting', '', 0, 1, 0, '', '', ''),
  4886. (8438, 'Clothing', 8196, 0, NULL, 'sporting-goods_hunting_clothing', 'Sporting Goods :: Hunting :: Clothing', '', 0, 1, 0, '', '', ''),
  4887. (8439, 'DVDs & Videos', 8196, 0, NULL, 'sporting-goods_hunting_dvds-videos', 'Sporting Goods :: Hunting :: DVDs & Videos', '', 0, 1, 0, '', '', ''),
  4888. (8440, 'Falconry', 8196, 0, NULL, 'sporting-goods_hunting_falconry', 'Sporting Goods :: Hunting :: Falconry', '', 0, 1, 0, '', '', ''),
  4889. (8441, 'Footwear', 8196, 0, NULL, 'sporting-goods_hunting_footwear', 'Sporting Goods :: Hunting :: Footwear', '', 0, 1, 0, '', '', ''),
  4890. (8442, 'Gun Cabinets', 8196, 0, NULL, 'sporting-goods_hunting_gun-cabinets', 'Sporting Goods :: Hunting :: Gun Cabinets', '', 0, 1, 0, '', '', ''),
  4891. (8443, 'Night Vision', 8196, 0, NULL, 'sporting-goods_hunting_night-vision', 'Sporting Goods :: Hunting :: Night Vision', '', 0, 1, 0, '', '', ''),
  4892. (8444, 'Shooting Sticks & Bipods', 8196, 0, NULL, 'sporting-goods_hunting_shooting-sticks-bipods', 'Sporting Goods :: Hunting :: Shooting Sticks & Bipods', '', 0, 1, 0, '', '', ''),
  4893. (8445, 'Sights & Scopes', 8196, 0, NULL, 'sporting-goods_hunting_sights-scopes', 'Sporting Goods :: Hunting :: Sights & Scopes', '', 0, 1, 0, '', '', ''),
  4894. (8446, 'Sunglasses', 8196, 0, NULL, 'sporting-goods_hunting_sunglasses', 'Sporting Goods :: Hunting :: Sunglasses', '', 0, 1, 0, '', '', ''),
  4895. (8447, 'Targets', 8196, 0, NULL, 'sporting-goods_hunting_targets', 'Sporting Goods :: Hunting :: Targets', '', 0, 1, 0, '', '', ''),
  4896. (8448, 'Trophies', 8196, 0, NULL, 'sporting-goods_hunting_trophies', 'Sporting Goods :: Hunting :: Trophies', '', 0, 1, 0, '', '', ''),
  4897. (8449, 'Other Hunting', 8196, 0, NULL, 'sporting-goods_hunting_other-hunting', 'Sporting Goods :: Hunting :: Other Hunting', '', 0, 1, 0, '', '', ''),
  4898. (8450, 'Goalie Equipment', 8197, 0, NULL, 'sporting-goods_ice-hockey_goalie-equipment', 'Sporting Goods :: Ice Hockey :: Goalie Equipment', '', 0, 1, 0, '', '', ''),
  4899. (8451, 'Gloves', 8197, 0, NULL, 'sporting-goods_ice-hockey_gloves', 'Sporting Goods :: Ice Hockey :: Gloves', '', 0, 1, 0, '', '', ''),
  4900. (8452, 'Helmets & Face Shields', 8197, 0, NULL, 'sporting-goods_ice-hockey_helmets-face-shields', 'Sporting Goods :: Ice Hockey :: Helmets & Face Shields', '', 0, 1, 0, '', '', ''),
  4901. (8453, 'Jerseys & Shirts', 8197, 0, NULL, 'sporting-goods_ice-hockey_jerseys-shirts', 'Sporting Goods :: Ice Hockey :: Jerseys & Shirts', '', 0, 1, 0, '', '', ''),
  4902. (8454, 'Pads & Guards', 8197, 0, NULL, 'sporting-goods_ice-hockey_pads-guards', 'Sporting Goods :: Ice Hockey :: Pads & Guards', '', 0, 1, 0, '', '', ''),
  4903. (8455, 'Pucks', 8197, 0, NULL, 'sporting-goods_ice-hockey_pucks', 'Sporting Goods :: Ice Hockey :: Pucks', '', 0, 1, 0, '', '', ''),
  4904. (8456, 'Skates', 8197, 0, NULL, 'sporting-goods_ice-hockey_skates', 'Sporting Goods :: Ice Hockey :: Skates', '', 0, 1, 0, '', '', ''),
  4905. (8457, 'Sticks', 8197, 0, NULL, 'sporting-goods_ice-hockey_sticks', 'Sporting Goods :: Ice Hockey :: Sticks', '', 0, 1, 0, '', '', ''),
  4906. (8458, 'Trophies', 8197, 0, NULL, 'sporting-goods_ice-hockey_trophies', 'Sporting Goods :: Ice Hockey :: Trophies', '', 0, 1, 0, '', '', ''),
  4907. (8459, 'Other Ice Hockey', 8197, 0, NULL, 'sporting-goods_ice-hockey_other-ice-hockey', 'Sporting Goods :: Ice Hockey :: Other Ice Hockey', '', 0, 1, 0, '', '', ''),
  4908. (8460, 'Clothing', 8198, 0, NULL, 'sporting-goods_ice-skating_clothing', 'Sporting Goods :: Ice Skating :: Clothing', '', 0, 1, 0, '', '', ''),
  4909. (8461, 'Skates', 8198, 0, NULL, 'sporting-goods_ice-skating_skates', 'Sporting Goods :: Ice Skating :: Skates', '', 0, 1, 0, '', '', ''),
  4910. (8462, 'Other Ice Skating', 8198, 0, NULL, 'sporting-goods_ice-skating_other-ice-skating', 'Sporting Goods :: Ice Skating :: Other Ice Skating', '', 0, 1, 0, '', '', ''),
  4911. (8463, 'Inline Skates', 8199, 0, NULL, 'sporting-goods_inline-roller-skating_inline-skates', 'Sporting Goods :: Inline & Roller Skating :: Inline Skates', '', 0, 1, 0, '', '', ''),
  4912. (8464, 'Protective Gear', 8199, 0, NULL, 'sporting-goods_inline-roller-skating_protective-gear', 'Sporting Goods :: Inline & Roller Skating :: Protective Gear', '', 0, 1, 0, '', '', ''),
  4913. (8465, 'Roller Skating', 8199, 0, NULL, 'sporting-goods_inline-roller-skating_roller-skating', 'Sporting Goods :: Inline & Roller Skating :: Roller Skating', '', 0, 1, 0, '', '', ''),
  4914. (8466, 'Trophies', 8199, 0, NULL, 'sporting-goods_inline-roller-skating_trophies', 'Sporting Goods :: Inline & Roller Skating :: Trophies', '', 0, 1, 0, '', '', ''),
  4915. (8467, 'Other Inline Skating', 8199, 0, NULL, 'sporting-goods_inline-roller-skating_other-inline-skating', 'Sporting Goods :: Inline & Roller Skating :: Other Inline Skating', '', 0, 1, 0, '', '', ''),
  4916. (8468, 'DVDs & Videos', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_dvds-videos', 'Sporting Goods :: Kitesurfing & Powerkites :: DVDs & Videos', '', 0, 1, 0, '', '', ''),
  4917. (8469, 'Kitesurfing Boards', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_kitesurfing-boards', 'Sporting Goods :: Kitesurfing & Powerkites :: Kitesurfing Boards', '', 0, 1, 0, '', '', ''),
  4918. (8470, 'Kitesurfing Harnesses/ Bars', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_kitesurfing-harnesses-bars', 'Sporting Goods :: Kitesurfing & Powerkites :: Kitesurfing Harnesses/ Bars', '', 0, 1, 0, '', '', ''),
  4919. (8471, 'Kitesurfing Kites', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_kitesurfing-kites', 'Sporting Goods :: Kitesurfing & Powerkites :: Kitesurfing Kites', '', 0, 1, 0, '', '', ''),
  4920. (8472, 'Kitesurfing Sets', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_kitesurfing-sets', 'Sporting Goods :: Kitesurfing & Powerkites :: Kitesurfing Sets', '', 0, 1, 0, '', '', ''),
  4921. (8473, 'Powerkites', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_powerkites', 'Sporting Goods :: Kitesurfing & Powerkites :: Powerkites', '', 0, 1, 0, '', '', ''),
  4922. (8474, 'Other Kitesurfing', 8200, 0, NULL, 'sporting-goods_kitesurfing-powerkites_other-kitesurfing', 'Sporting Goods :: Kitesurfing & Powerkites :: Other Kitesurfing', '', 0, 1, 0, '', '', ''),
  4923. (8475, 'Books, Magazines & Posters', 8201, 0, NULL, 'sporting-goods_martial-arts_books-magazines-posters', 'Sporting Goods :: Martial Arts :: Books, Magazines & Posters', '', 0, 1, 0, '', '', ''),
  4924. (8476, 'DVDs', 8201, 0, NULL, 'sporting-goods_martial-arts_dvds', 'Sporting Goods :: Martial Arts :: DVDs', '', 0, 1, 0, '', '', ''),
  4925. (8477, 'Clothing & Footwear', 8201, 0, NULL, 'sporting-goods_martial-arts_clothing-footwear', 'Sporting Goods :: Martial Arts :: Clothing & Footwear', '', 0, 1, 0, '', '', ''),
  4926. (8478, 'Training Equipment', 8201, 0, NULL, 'sporting-goods_martial-arts_training-equipment', 'Sporting Goods :: Martial Arts :: Training Equipment', '', 0, 1, 0, '', '', ''),
  4927. (8479, 'Trophies', 8201, 0, NULL, 'sporting-goods_martial-arts_trophies', 'Sporting Goods :: Martial Arts :: Trophies', '', 0, 1, 0, '', '', ''),
  4928. (8480, 'Videos', 8201, 0, NULL, 'sporting-goods_martial-arts_videos', 'Sporting Goods :: Martial Arts :: Videos', '', 0, 1, 0, '', '', ''),
  4929. (8481, 'Other Martial Arts', 8201, 0, NULL, 'sporting-goods_martial-arts_other-martial-arts', 'Sporting Goods :: Martial Arts :: Other Martial Arts', '', 0, 1, 0, '', '', ''),
  4930. (8482, 'Air Systems', 8202, 0, NULL, 'sporting-goods_paintballing_air-systems', 'Sporting Goods :: Paintballing :: Air Systems', '', 0, 1, 0, '', '', ''),
  4931. (8483, 'Barrels & Hoppers', 8202, 0, NULL, 'sporting-goods_paintballing_barrels-hoppers', 'Sporting Goods :: Paintballing :: Barrels & Hoppers', '', 0, 1, 0, '', '', ''),
  4932. (8484, 'Goggles & Masks', 8202, 0, NULL, 'sporting-goods_paintballing_goggles-masks', 'Sporting Goods :: Paintballing :: Goggles & Masks', '', 0, 1, 0, '', '', ''),
  4933. (8485, 'Goggles & Masks', 8202, 0, NULL, 'sporting-goods_paintballing_goggles-masks1', 'Sporting Goods :: Paintballing :: Goggles & Masks', '', 0, 1, 0, '', '', ''),
  4934. (8486, 'Harnesses & Pods', 8202, 0, NULL, 'sporting-goods_paintballing_harnesses-pods', 'Sporting Goods :: Paintballing :: Harnesses & Pods', '', 0, 1, 0, '', '', ''),
  4935. (8487, 'Padding & Protection', 8202, 0, NULL, 'sporting-goods_paintballing_padding-protection', 'Sporting Goods :: Paintballing :: Padding & Protection', '', 0, 1, 0, '', '', ''),
  4936. (8488, 'Paintballs', 8202, 0, NULL, 'sporting-goods_paintballing_paintballs', 'Sporting Goods :: Paintballing :: Paintballs', '', 0, 1, 0, '', '', ''),
  4937. (8489, 'Sights & Scopes', 8202, 0, NULL, 'sporting-goods_paintballing_sights-scopes', 'Sporting Goods :: Paintballing :: Sights & Scopes', '', 0, 1, 0, '', '', ''),
  4938. (8490, 'Tickets', 8202, 0, NULL, 'sporting-goods_paintballing_tickets', 'Sporting Goods :: Paintballing :: Tickets', '', 0, 1, 0, '', '', ''),
  4939. (8491, 'Vests/ Clothing', 8202, 0, NULL, 'sporting-goods_paintballing_vests-clothing', 'Sporting Goods :: Paintballing :: Vests/ Clothing', '', 0, 1, 0, '', '', ''),
  4940. (8492, 'Other Paintballing', 8202, 0, NULL, 'sporting-goods_paintballing_other-paintballing', 'Sporting Goods :: Paintballing :: Other Paintballing', '', 0, 1, 0, '', '', ''),
  4941. (8493, 'Balls', 8203, 0, NULL, 'sporting-goods_rugby-league_balls', 'Sporting Goods :: Rugby League :: Balls', '', 0, 1, 0, '', '', ''),
  4942. (8494, 'Boots', 8203, 0, NULL, 'sporting-goods_rugby-league_boots', 'Sporting Goods :: Rugby League :: Boots', '', 0, 1, 0, '', '', ''),
  4943. (8495, 'Equipment', 8203, 0, NULL, 'sporting-goods_rugby-league_equipment', 'Sporting Goods :: Rugby League :: Equipment', '', 0, 1, 0, '', '', ''),
  4944. (8496, 'Gloves', 8203, 0, NULL, 'sporting-goods_rugby-league_gloves', 'Sporting Goods :: Rugby League :: Gloves', '', 0, 1, 0, '', '', ''),
  4945. (8497, 'Protective Gear/ Shoulder Pads', 8203, 0, NULL, 'sporting-goods_rugby-league_protective-gear-shoulder-pads', 'Sporting Goods :: Rugby League :: Protective Gear/ Shoulder Pads', '', 0, 1, 0, '', '', ''),
  4946. (8498, 'Shirts', 8203, 0, NULL, 'sporting-goods_rugby-league_shirts', 'Sporting Goods :: Rugby League :: Shirts', '', 0, 1, 0, '', '', ''),
  4947. (8499, 'Shorts', 8203, 0, NULL, 'sporting-goods_rugby-league_shorts', 'Sporting Goods :: Rugby League :: Shorts', '', 0, 1, 0, '', '', ''),
  4948. (8500, 'Training Kit', 8203, 0, NULL, 'sporting-goods_rugby-league_training-kit', 'Sporting Goods :: Rugby League :: Training Kit', '', 0, 1, 0, '', '', ''),
  4949. (8501, 'Trophies', 8203, 0, NULL, 'sporting-goods_rugby-league_trophies', 'Sporting Goods :: Rugby League :: Trophies', '', 0, 1, 0, '', '', ''),
  4950. (8502, 'Other Rugby League', 8203, 0, NULL, 'sporting-goods_rugby-league_other-rugby-league', 'Sporting Goods :: Rugby League :: Other Rugby League', '', 0, 1, 0, '', '', ''),
  4951. (8503, 'Balls', 8204, 0, NULL, 'sporting-goods_rugby-union_balls', 'Sporting Goods :: Rugby Union :: Balls', '', 0, 1, 0, '', '', ''),
  4952. (8504, 'Boots', 8204, 0, NULL, 'sporting-goods_rugby-union_boots', 'Sporting Goods :: Rugby Union :: Boots', '', 0, 1, 0, '', '', ''),
  4953. (8505, 'Equipment', 8204, 0, NULL, 'sporting-goods_rugby-union_equipment', 'Sporting Goods :: Rugby Union :: Equipment', '', 0, 1, 0, '', '', ''),
  4954. (8506, 'Protective Gear/ Shoulder Pads', 8204, 0, NULL, 'sporting-goods_rugby-union_protective-gear-shoulder-pads', 'Sporting Goods :: Rugby Union :: Protective Gear/ Shoulder Pads', '', 0, 1, 0, '', '', ''),
  4955. (8507, 'Gloves', 8204, 0, NULL, 'sporting-goods_rugby-union_gloves', 'Sporting Goods :: Rugby Union :: Gloves', '', 0, 1, 0, '', '', ''),
  4956. (8508, 'Shirts', 8204, 0, NULL, 'sporting-goods_rugby-union_shirts', 'Sporting Goods :: Rugby Union :: Shirts', '', 0, 1, 0, '', '', ''),
  4957. (8509, 'Shorts', 8204, 0, NULL, 'sporting-goods_rugby-union_shorts', 'Sporting Goods :: Rugby Union :: Shorts', '', 0, 1, 0, '', '', ''),
  4958. (8510, 'Training Kit', 8204, 0, NULL, 'sporting-goods_rugby-union_training-kit', 'Sporting Goods :: Rugby Union :: Training Kit', '', 0, 1, 0, '', '', ''),
  4959. (8511, 'Trophies', 8204, 0, NULL, 'sporting-goods_rugby-union_trophies', 'Sporting Goods :: Rugby Union :: Trophies', '', 0, 1, 0, '', '', ''),
  4960. (8512, 'Other Rugby Union', 8204, 0, NULL, 'sporting-goods_rugby-union_other-rugby-union', 'Sporting Goods :: Rugby Union :: Other Rugby Union', '', 0, 1, 0, '', '', ''),
  4961. (8513, 'Athletics Equipment', 8205, 0, NULL, 'sporting-goods_running-athletics_athletics-equipment', 'Sporting Goods :: Running & Athletics :: Athletics Equipment', '', 0, 1, 0, '', '', ''),
  4962. (8514, 'Clothing', 8205, 0, NULL, 'sporting-goods_running-athletics_clothing', 'Sporting Goods :: Running & Athletics :: Clothing', '', 0, 1, 0, '', '', ''),
  4963. (8515, 'Counters/ Pedometers/ Monitors', 8205, 0, NULL, 'sporting-goods_running-athletics_counters-pedometers-monitors', 'Sporting Goods :: Running & Athletics :: Counters/ Pedometers/ Monitors', '', 0, 1, 0, '', '', ''),
  4964. (8516, 'Sunglasses', 8205, 0, NULL, 'sporting-goods_running-athletics_sunglasses', 'Sporting Goods :: Running & Athletics :: Sunglasses', '', 0, 1, 0, '', '', ''),
  4965. (8517, 'Trainers, Shoes & Spikes', 8205, 0, NULL, 'sporting-goods_running-athletics_trainers-shoes-spikes', 'Sporting Goods :: Running & Athletics :: Trainers, Shoes & Spikes', '', 0, 1, 0, '', '', ''),
  4966. (8518, 'Trophies', 8205, 0, NULL, 'sporting-goods_running-athletics_trophies', 'Sporting Goods :: Running & Athletics :: Trophies', '', 0, 1, 0, '', '', ''),
  4967. (8519, 'Other Running', 8205, 0, NULL, 'sporting-goods_running-athletics_other-running', 'Sporting Goods :: Running & Athletics :: Other Running', '', 0, 1, 0, '', '', ''),
  4968. (8520, 'Accessories & Equipment', 8206, 0, NULL, 'sporting-goods_sailing_accessories-equipment', 'Sporting Goods :: Sailing :: Accessories & Equipment', '', 0, 1, 0, '', '', ''),
  4969. (8521, 'Clothing & Shoes', 8206, 0, NULL, 'sporting-goods_sailing_clothing-shoes', 'Sporting Goods :: Sailing :: Clothing & Shoes', '', 0, 1, 0, '', '', ''),
  4970. (8522, 'Dinghies/ Boats', 8206, 0, NULL, 'sporting-goods_sailing_dinghies-boats', 'Sporting Goods :: Sailing :: Dinghies/ Boats', '', 0, 1, 0, '', '', ''),
  4971. (8523, 'Life Jackets', 8206, 0, NULL, 'sporting-goods_sailing_life-jackets', 'Sporting Goods :: Sailing :: Life Jackets', '', 0, 1, 0, '', '', ''),
  4972. (8524, 'Rope', 8206, 0, NULL, 'sporting-goods_sailing_rope', 'Sporting Goods :: Sailing :: Rope', '', 0, 1, 0, '', '', ''),
  4973. (8525, 'Sunglasses', 8206, 0, NULL, 'sporting-goods_sailing_sunglasses', 'Sporting Goods :: Sailing :: Sunglasses', '', 0, 1, 0, '', '', ''),
  4974. (8526, 'Trophies', 8206, 0, NULL, 'sporting-goods_sailing_trophies', 'Sporting Goods :: Sailing :: Trophies', '', 0, 1, 0, '', '', ''),
  4975. (8527, 'Wetsuits', 8206, 0, NULL, 'sporting-goods_sailing_wetsuits', 'Sporting Goods :: Sailing :: Wetsuits', '', 0, 1, 0, '', '', ''),
  4976. (8528, 'Other Sailing', 8206, 0, NULL, 'sporting-goods_sailing_other-sailing', 'Sporting Goods :: Sailing :: Other Sailing', '', 0, 1, 0, '', '', ''),
  4977. (8529, 'Electric Scooters', 8207, 0, NULL, 'sporting-goods_scooters_electric-scooters', 'Sporting Goods :: Scooters :: Electric Scooters', '', 0, 1, 0, '', '', ''),
  4978. (8530, 'Petrol Scooters', 8207, 0, NULL, 'sporting-goods_scooters_petrol-scooters', 'Sporting Goods :: Scooters :: Petrol Scooters', '', 0, 1, 0, '', '', ''),
  4979. (8531, 'Push Scooters', 8207, 0, NULL, 'sporting-goods_scooters_push-scooters', 'Sporting Goods :: Scooters :: Push Scooters', '', 0, 1, 0, '', '', ''),
  4980. (8532, 'Pocket Bikes', 8207, 0, NULL, 'sporting-goods_scooters_pocket-bikes', 'Sporting Goods :: Scooters :: Pocket Bikes', '', 0, 1, 0, '', '', ''),
  4981. (8533, 'Other Scooters', 8207, 0, NULL, 'sporting-goods_scooters_other-scooters', 'Sporting Goods :: Scooters :: Other Scooters', '', 0, 1, 0, '', '', ''),
  4982. (8534, 'DVDs', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_dvds', 'Sporting Goods :: SCUBA & Snorkelling :: DVDs', '', 0, 1, 0, '', '', ''),
  4983. (8535, 'Boots & Gloves', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_boots-gloves', 'Sporting Goods :: SCUBA & Snorkelling :: Boots & Gloves', '', 0, 1, 0, '', '', ''),
  4984. (8536, 'Buoyancy Compensators', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_buoyancy-compensators', 'Sporting Goods :: SCUBA & Snorkelling :: Buoyancy Compensators', '', 0, 1, 0, '', '', ''),
  4985. (8537, 'Buoys', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_buoys', 'Sporting Goods :: SCUBA & Snorkelling :: Buoys', '', 0, 1, 0, '', '', ''),
  4986. (8538, 'Cameras & Camera Accessories', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_cameras-camera-accessories', 'Sporting Goods :: SCUBA & Snorkelling :: Cameras & Camera Accessories', '', 0, 1, 0, '', '', ''),
  4987. (8539, 'Carbines', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_carbines', 'Sporting Goods :: SCUBA & Snorkelling :: Carbines', '', 0, 1, 0, '', '', ''),
  4988. (8540, 'Cylinders & Tanks', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_cylinders-tanks', 'Sporting Goods :: SCUBA & Snorkelling :: Cylinders & Tanks', '', 0, 1, 0, '', '', ''),
  4989. (8541, 'Dive Bags', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_dive-bags', 'Sporting Goods :: SCUBA & Snorkelling :: Dive Bags', '', 0, 1, 0, '', '', ''),
  4990. (8542, 'Dive Computers', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_dive-computers', 'Sporting Goods :: SCUBA & Snorkelling :: Dive Computers', '', 0, 1, 0, '', '', ''),
  4991. (8543, 'Dive Lights & Torches', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_dive-lights-torches', 'Sporting Goods :: SCUBA & Snorkelling :: Dive Lights & Torches', '', 0, 1, 0, '', '', ''),
  4992. (8544, 'Dry Suits', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_dry-suits', 'Sporting Goods :: SCUBA & Snorkelling :: Dry Suits', '', 0, 1, 0, '', '', ''),
  4993. (8545, 'Fins & Flippers', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_fins-flippers', 'Sporting Goods :: SCUBA & Snorkelling :: Fins & Flippers', '', 0, 1, 0, '', '', ''),
  4994. (8546, 'Flags', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_flags', 'Sporting Goods :: SCUBA & Snorkelling :: Flags', '', 0, 1, 0, '', '', ''),
  4995. (8547, 'Gauges', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_gauges', 'Sporting Goods :: SCUBA & Snorkelling :: Gauges', '', 0, 1, 0, '', '', ''),
  4996. (8548, 'Hoods', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_hoods', 'Sporting Goods :: SCUBA & Snorkelling :: Hoods', '', 0, 1, 0, '', '', ''),
  4997. (8549, 'Horns/ Whistles', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_horns-whistles', 'Sporting Goods :: SCUBA & Snorkelling :: Horns/ Whistles', '', 0, 1, 0, '', '', ''),
  4998. (8550, 'Log Books/ Manuals/ PADI', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_log-books-manuals-padi', 'Sporting Goods :: SCUBA & Snorkelling :: Log Books/ Manuals/ PADI', '', 0, 1, 0, '', '', ''),
  4999. (8551, 'Masks', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_masks', 'Sporting Goods :: SCUBA & Snorkelling :: Masks', '', 0, 1, 0, '', '', ''),
  5000. (8552, 'Regulators', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_regulators', 'Sporting Goods :: SCUBA & Snorkelling :: Regulators', '', 0, 1, 0, '', '', ''),
  5001. (8553, 'SMBs & Reels', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_smbs-reels', 'Sporting Goods :: SCUBA & Snorkelling :: SMBs & Reels', '', 0, 1, 0, '', '', ''),
  5002. (8554, 'Snorkels', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_snorkels', 'Sporting Goods :: SCUBA & Snorkelling :: Snorkels', '', 0, 1, 0, '', '', ''),
  5003. (8555, 'Videos', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_videos', 'Sporting Goods :: SCUBA & Snorkelling :: Videos', '', 0, 1, 0, '', '', ''),
  5004. (8556, 'Weight Belts', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_weight-belts', 'Sporting Goods :: SCUBA & Snorkelling :: Weight Belts', '', 0, 1, 0, '', '', ''),
  5005. (8557, 'Wetsuits', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_wetsuits', 'Sporting Goods :: SCUBA & Snorkelling :: Wetsuits', '', 0, 1, 0, '', '', ''),
  5006. (8558, 'Vintage', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_vintage', 'Sporting Goods :: SCUBA & Snorkelling :: Vintage', '', 0, 1, 0, '', '', ''),
  5007. (8559, 'Other SCUBA', 8208, 0, NULL, 'sporting-goods_scuba-snorkelling_other-scuba', 'Sporting Goods :: SCUBA & Snorkelling :: Other SCUBA', '', 0, 1, 0, '', '', ''),
  5008. (8560, 'Backpacks, Rucksacks & Bags', 8209, 0, NULL, 'sporting-goods_skateboarding_backpacks-rucksacks-bags', 'Sporting Goods :: Skateboarding :: Backpacks, Rucksacks & Bags', '', 0, 1, 0, '', '', ''),
  5009. (8561, 'Clothes, Caps & Beanies', 8209, 0, NULL, 'sporting-goods_skateboarding_clothes-caps-beanies', 'Sporting Goods :: Skateboarding :: Clothes, Caps & Beanies', '', 0, 1, 0, '', '', ''),
  5010. (8562, 'Complete Skateboards', 8209, 0, NULL, 'sporting-goods_skateboarding_complete-skateboards', 'Sporting Goods :: Skateboarding :: Complete Skateboards', '', 0, 1, 0, '', '', ''),
  5011. (8563, 'Decks', 8209, 0, NULL, 'sporting-goods_skateboarding_decks', 'Sporting Goods :: Skateboarding :: Decks', '', 0, 1, 0, '', '', ''),
  5012. (8564, 'DVDs', 8209, 0, NULL, 'sporting-goods_skateboarding_dvds', 'Sporting Goods :: Skateboarding :: DVDs', '', 0, 1, 0, '', '', ''),
  5013. (8565, 'Protective Gear', 8209, 0, NULL, 'sporting-goods_skateboarding_protective-gear', 'Sporting Goods :: Skateboarding :: Protective Gear', '', 0, 1, 0, '', '', ''),
  5014. (8566, 'Ramps & Jumps', 8209, 0, NULL, 'sporting-goods_skateboarding_ramps-jumps', 'Sporting Goods :: Skateboarding :: Ramps & Jumps', '', 0, 1, 0, '', '', ''),
  5015. (8567, 'Shoes & Trainers', 8209, 0, NULL, 'sporting-goods_skateboarding_shoes-trainers', 'Sporting Goods :: Skateboarding :: Shoes & Trainers', '', 0, 1, 0, '', '', ''),
  5016. (8568, 'Stickers & Grip Tape', 8209, 0, NULL, 'sporting-goods_skateboarding_stickers-grip-tape', 'Sporting Goods :: Skateboarding :: Stickers & Grip Tape', '', 0, 1, 0, '', '', ''),
  5017. (8569, 'Trucks, Wheels & Bearings', 8209, 0, NULL, 'sporting-goods_skateboarding_trucks-wheels-bearings', 'Sporting Goods :: Skateboarding :: Trucks, Wheels & Bearings', '', 0, 1, 0, '', '', ''),
  5018. (8570, 'Videos', 8209, 0, NULL, 'sporting-goods_skateboarding_videos', 'Sporting Goods :: Skateboarding :: Videos', '', 0, 1, 0, '', '', ''),
  5019. (8571, 'Wristbands', 8209, 0, NULL, 'sporting-goods_skateboarding_wristbands', 'Sporting Goods :: Skateboarding :: Wristbands', '', 0, 1, 0, '', '', ''),
  5020. (8572, 'Other Skateboarding', 8209, 0, NULL, 'sporting-goods_skateboarding_other-skateboarding', 'Sporting Goods :: Skateboarding :: Other Skateboarding', '', 0, 1, 0, '', '', ''),
  5021. (8573, 'Accessories', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_accessories', 'Sporting Goods :: Skiing & Snowboarding :: Accessories', '', 0, 1, 0, '', '', ''),
  5022. (8574, 'Clothing, Hats & Gloves', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_clothing-hats-gloves', 'Sporting Goods :: Skiing & Snowboarding :: Clothing, Hats & Gloves', '', 0, 1, 0, '', '', ''),
  5023. (8575, 'Downhill Skiing', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_downhill-skiing', 'Sporting Goods :: Skiing & Snowboarding :: Downhill Skiing', '', 0, 1, 0, '', '', ''),
  5024. (8576, 'Protective Pads & Guards', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_protective-pads-guards', 'Sporting Goods :: Skiing & Snowboarding :: Protective Pads & Guards', '', 0, 1, 0, '', '', ''),
  5025. (8577, 'Ski & Snowboard Helmets', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_ski-snowboard-helmets', 'Sporting Goods :: Skiing & Snowboarding :: Ski & Snowboard Helmets', '', 0, 1, 0, '', '', ''),
  5026. (8578, 'Snow Goggles', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_snow-goggles', 'Sporting Goods :: Skiing & Snowboarding :: Snow Goggles', '', 0, 1, 0, '', '', ''),
  5027. (8579, 'Snowboarding', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_snowboarding', 'Sporting Goods :: Skiing & Snowboarding :: Snowboarding', '', 0, 1, 0, '', '', ''),
  5028. (8580, 'Other Skiing & Snowboarding', 8210, 0, NULL, 'sporting-goods_skiing-snowboarding_other-skiing-snowboarding', 'Sporting Goods :: Skiing & Snowboarding :: Other Skiing & Snowboarding', '', 0, 1, 0, '', '', ''),
  5029. (8581, 'Balls', 8211, 0, NULL, 'sporting-goods_snooker-pool_balls', 'Sporting Goods :: Snooker & Pool :: Balls', '', 0, 1, 0, '', '', ''),
  5030. (8582, 'Books & Magazines', 8211, 0, NULL, 'sporting-goods_snooker-pool_books-magazines', 'Sporting Goods :: Snooker & Pool :: Books & Magazines', '', 0, 1, 0, '', '', ''),
  5031. (8583, 'Chalk', 8211, 0, NULL, 'sporting-goods_snooker-pool_chalk', 'Sporting Goods :: Snooker & Pool :: Chalk', '', 0, 1, 0, '', '', ''),
  5032. (8584, 'Cues', 8211, 0, NULL, 'sporting-goods_snooker-pool_cues', 'Sporting Goods :: Snooker & Pool :: Cues', '', 0, 1, 0, '', '', ''),
  5033. (8585, 'Cue Cases', 8211, 0, NULL, 'sporting-goods_snooker-pool_cue-cases', 'Sporting Goods :: Snooker & Pool :: Cue Cases', '', 0, 1, 0, '', '', ''),
  5034. (8586, 'Cue Tips', 8211, 0, NULL, 'sporting-goods_snooker-pool_cue-tips', 'Sporting Goods :: Snooker & Pool :: Cue Tips', '', 0, 1, 0, '', '', ''),
  5035. (8587, 'DVDs & Videos', 8211, 0, NULL, 'sporting-goods_snooker-pool_dvds-videos', 'Sporting Goods :: Snooker & Pool :: DVDs & Videos', '', 0, 1, 0, '', '', ''),
  5036. (8588, 'Pool Tables', 8211, 0, NULL, 'sporting-goods_snooker-pool_pool-tables', 'Sporting Goods :: Snooker & Pool :: Pool Tables', '', 0, 1, 0, '', '', ''),
  5037. (8589, 'Racks', 8211, 0, NULL, 'sporting-goods_snooker-pool_racks', 'Sporting Goods :: Snooker & Pool :: Racks', '', 0, 1, 0, '', '', ''),
  5038. (8590, 'Scoreboards', 8211, 0, NULL, 'sporting-goods_snooker-pool_scoreboards', 'Sporting Goods :: Snooker & Pool :: Scoreboards', '', 0, 1, 0, '', '', ''),
  5039. (8591, 'Snooker Tables', 8211, 0, NULL, 'sporting-goods_snooker-pool_snooker-tables', 'Sporting Goods :: Snooker & Pool :: Snooker Tables', '', 0, 1, 0, '', '', ''),
  5040. (8592, 'Table Brushes & Accessories', 8211, 0, NULL, 'sporting-goods_snooker-pool_table-brushes-accessories', 'Sporting Goods :: Snooker & Pool :: Table Brushes & Accessories', '', 0, 1, 0, '', '', ''),
  5041. (8593, 'Table Covers', 8211, 0, NULL, 'sporting-goods_snooker-pool_table-covers', 'Sporting Goods :: Snooker & Pool :: Table Covers', '', 0, 1, 0, '', '', ''),
  5042. (8594, 'Table Lighting/ Lamps', 8211, 0, NULL, 'sporting-goods_snooker-pool_table-lighting-lamps', 'Sporting Goods :: Snooker & Pool :: Table Lighting/ Lamps', '', 0, 1, 0, '', '', ''),
  5043. (8595, 'Trophies', 8211, 0, NULL, 'sporting-goods_snooker-pool_trophies', 'Sporting Goods :: Snooker & Pool :: Trophies', '', 0, 1, 0, '', '', ''),
  5044. (8596, 'Other Snooker & Pool', 8211, 0, NULL, 'sporting-goods_snooker-pool_other-snooker-pool', 'Sporting Goods :: Snooker & Pool :: Other Snooker & Pool', '', 0, 1, 0, '', '', ''),
  5045. (8597, 'Balls', 8212, 0, NULL, 'sporting-goods_squash_balls', 'Sporting Goods :: Squash :: Balls', '', 0, 1, 0, '', '', ''),
  5046. (8598, 'Clothing', 8212, 0, NULL, 'sporting-goods_squash_clothing', 'Sporting Goods :: Squash :: Clothing', '', 0, 1, 0, '', '', ''),
  5047. (8599, 'Protective Gear', 8212, 0, NULL, 'sporting-goods_squash_protective-gear', 'Sporting Goods :: Squash :: Protective Gear', '', 0, 1, 0, '', '', ''),
  5048. (8600, 'Rackets', 8212, 0, NULL, 'sporting-goods_squash_rackets', 'Sporting Goods :: Squash :: Rackets', '', 0, 1, 0, '', '', ''),
  5049. (8601, 'Racket Covers', 8212, 0, NULL, 'sporting-goods_squash_racket-covers', 'Sporting Goods :: Squash :: Racket Covers', '', 0, 1, 0, '', '', ''),
  5050. (8602, 'Shoes & Trainers', 8212, 0, NULL, 'sporting-goods_squash_shoes-trainers', 'Sporting Goods :: Squash :: Shoes & Trainers', '', 0, 1, 0, '', '', ''),
  5051. (8603, 'Trophies', 8212, 0, NULL, 'sporting-goods_squash_trophies', 'Sporting Goods :: Squash :: Trophies', '', 0, 1, 0, '', '', ''),
  5052. (8604, 'Other Squash', 8212, 0, NULL, 'sporting-goods_squash_other-squash', 'Sporting Goods :: Squash :: Other Squash', '', 0, 1, 0, '', '', ''),
  5053. (8605, 'Accessories', 8213, 0, NULL, 'sporting-goods_surfing_accessories', 'Sporting Goods :: Surfing :: Accessories', '', 0, 1, 0, '', '', ''),
  5054. (8606, 'Bodyboards', 8213, 0, NULL, 'sporting-goods_surfing_bodyboards', 'Sporting Goods :: Surfing :: Bodyboards', '', 0, 1, 0, '', '', ''),
  5055. (8607, 'Clothing', 8213, 0, NULL, 'sporting-goods_surfing_clothing', 'Sporting Goods :: Surfing :: Clothing', '', 0, 1, 0, '', '', ''),
  5056. (8608, 'DVDs & Videos', 8213, 0, NULL, 'sporting-goods_surfing_dvds-videos', 'Sporting Goods :: Surfing :: DVDs & Videos', '', 0, 1, 0, '', '', ''),
  5057. (8609, 'Longboards', 8213, 0, NULL, 'sporting-goods_surfing_longboards', 'Sporting Goods :: Surfing :: Longboards', '', 0, 1, 0, '', '', ''),
  5058. (8610, 'Stickers, Books & Posters', 8213, 0, NULL, 'sporting-goods_surfing_stickers-books-posters', 'Sporting Goods :: Surfing :: Stickers, Books & Posters', '', 0, 1, 0, '', '', ''),
  5059. (8611, 'Sunglasses', 8213, 0, NULL, 'sporting-goods_surfing_sunglasses', 'Sporting Goods :: Surfing :: Sunglasses', '', 0, 1, 0, '', '', ''),
  5060. (8612, 'Surfboards', 8213, 0, NULL, 'sporting-goods_surfing_surfboards', 'Sporting Goods :: Surfing :: Surfboards', '', 0, 1, 0, '', '', ''),
  5061. (8613, 'Wetsuits', 8213, 0, NULL, 'sporting-goods_surfing_wetsuits', 'Sporting Goods :: Surfing :: Wetsuits', '', 0, 1, 0, '', '', ''),
  5062. (8614, 'Other Surfing', 8213, 0, NULL, 'sporting-goods_surfing_other-surfing', 'Sporting Goods :: Surfing :: Other Surfing', '', 0, 1, 0, '', '', ''),
  5063. (8615, 'Floats & Inflatables', 8214, 0, NULL, 'sporting-goods_swimming_floats-inflatables', 'Sporting Goods :: Swimming :: Floats & Inflatables', '', 0, 1, 0, '', '', ''),
  5064. (8616, 'Goggles', 8214, 0, NULL, 'sporting-goods_swimming_goggles', 'Sporting Goods :: Swimming :: Goggles', '', 0, 1, 0, '', '', ''),
  5065. (8617, 'Snorkels/ Masks/ Flippers', 8214, 0, NULL, 'sporting-goods_swimming_snorkels-masks-flippers', 'Sporting Goods :: Swimming :: Snorkels/ Masks/ Flippers', '', 0, 1, 0, '', '', ''),
  5066. (8618, 'Swimming Caps', 8214, 0, NULL, 'sporting-goods_swimming_swimming-caps', 'Sporting Goods :: Swimming :: Swimming Caps', '', 0, 1, 0, '', '', ''),
  5067. (8619, 'Swimming Pool Equipment', 8214, 0, NULL, 'sporting-goods_swimming_swimming-pool-equipment', 'Sporting Goods :: Swimming :: Swimming Pool Equipment', '', 0, 1, 0, '', '', ''),
  5068. (8620, 'Swimwear', 8214, 0, NULL, 'sporting-goods_swimming_swimwear', 'Sporting Goods :: Swimming :: Swimwear', '', 0, 1, 0, '', '', ''),
  5069. (8621, 'Towels', 8214, 0, NULL, 'sporting-goods_swimming_towels', 'Sporting Goods :: Swimming :: Towels', '', 0, 1, 0, '', '', ''),
  5070. (8622, 'Trophies', 8214, 0, NULL, 'sporting-goods_swimming_trophies', 'Sporting Goods :: Swimming :: Trophies', '', 0, 1, 0, '', '', ''),
  5071. (8623, 'Other Swimming', 8214, 0, NULL, 'sporting-goods_swimming_other-swimming', 'Sporting Goods :: Swimming :: Other Swimming', '', 0, 1, 0, '', '', ''),
  5072. (8624, 'Balls', 8215, 0, NULL, 'sporting-goods_table-tennis_balls', 'Sporting Goods :: Table Tennis :: Balls', '', 0, 1, 0, '', '', ''),
  5073. (8625, 'Bats/ Paddles/ Blades', 8215, 0, NULL, 'sporting-goods_table-tennis_bats-paddles-blades', 'Sporting Goods :: Table Tennis :: Bats/ Paddles/ Blades', '', 0, 1, 0, '', '', ''),
  5074. (8626, 'Clothing', 8215, 0, NULL, 'sporting-goods_table-tennis_clothing', 'Sporting Goods :: Table Tennis :: Clothing', '', 0, 1, 0, '', '', ''),
  5075. (8627, 'Rubbers, Glues & Cleaners', 8215, 0, NULL, 'sporting-goods_table-tennis_rubbers-glues-cleaners', 'Sporting Goods :: Table Tennis :: Rubbers, Glues & Cleaners', '', 0, 1, 0, '', '', ''),
  5076. (8628, 'Shoes & Trainers', 8215, 0, NULL, 'sporting-goods_table-tennis_shoes-trainers', 'Sporting Goods :: Table Tennis :: Shoes & Trainers', '', 0, 1, 0, '', '', ''),
  5077. (8629, 'Tables & Table Accessories', 8215, 0, NULL, 'sporting-goods_table-tennis_tables-table-accessories', 'Sporting Goods :: Table Tennis :: Tables & Table Accessories', '', 0, 1, 0, '', '', ''),
  5078. (8630, 'Trophies', 8215, 0, NULL, 'sporting-goods_table-tennis_trophies', 'Sporting Goods :: Table Tennis :: Trophies', '', 0, 1, 0, '', '', ''),
  5079. (8631, 'Other Table Tennis', 8215, 0, NULL, 'sporting-goods_table-tennis_other-table-tennis', 'Sporting Goods :: Table Tennis :: Other Table Tennis', '', 0, 1, 0, '', '', ''),
  5080. (8632, 'Balls', 8216, 0, NULL, 'sporting-goods_tennis_balls', 'Sporting Goods :: Tennis :: Balls', '', 0, 1, 0, '', '', ''),
  5081. (8633, 'Bags', 8216, 0, NULL, 'sporting-goods_tennis_bags', 'Sporting Goods :: Tennis :: Bags', '', 0, 1, 0, '', '', ''),
  5082. (8634, 'Clothing', 8216, 0, NULL, 'sporting-goods_tennis_clothing', 'Sporting Goods :: Tennis :: Clothing', '', 0, 1, 0, '', '', ''),
  5083. (8635, 'Grips', 8216, 0, NULL, 'sporting-goods_tennis_grips', 'Sporting Goods :: Tennis :: Grips', '', 0, 1, 0, '', '', ''),
  5084. (8636, 'Rackets', 8216, 0, NULL, 'sporting-goods_tennis_rackets', 'Sporting Goods :: Tennis :: Rackets', '', 0, 1, 0, '', '', ''),
  5085. (8637, 'Racket Covers', 8216, 0, NULL, 'sporting-goods_tennis_racket-covers', 'Sporting Goods :: Tennis :: Racket Covers', '', 0, 1, 0, '', '', ''),
  5086. (8638, 'Shoes & Trainers', 8216, 0, NULL, 'sporting-goods_tennis_shoes-trainers', 'Sporting Goods :: Tennis :: Shoes & Trainers', '', 0, 1, 0, '', '', ''),
  5087. (8639, 'Stringing Machines', 8216, 0, NULL, 'sporting-goods_tennis_stringing-machines', 'Sporting Goods :: Tennis :: Stringing Machines', '', 0, 1, 0, '', '', ''),
  5088. (8640, 'Strings', 8216, 0, NULL, 'sporting-goods_tennis_strings', 'Sporting Goods :: Tennis :: Strings', '', 0, 1, 0, '', '', ''),
  5089. (8641, 'Sunglasses', 8216, 0, NULL, 'sporting-goods_tennis_sunglasses', 'Sporting Goods :: Tennis :: Sunglasses', '', 0, 1, 0, '', '', ''),
  5090. (8642, 'Training Aids', 8216, 0, NULL, 'sporting-goods_tennis_training-aids', 'Sporting Goods :: Tennis :: Training Aids', '', 0, 1, 0, '', '', ''),
  5091. (8643, 'Trophies', 8216, 0, NULL, 'sporting-goods_tennis_trophies', 'Sporting Goods :: Tennis :: Trophies', '', 0, 1, 0, '', '', ''),
  5092. (8644, 'Other Tennis', 8216, 0, NULL, 'sporting-goods_tennis_other-tennis', 'Sporting Goods :: Tennis :: Other Tennis', '', 0, 1, 0, '', '', ''),
  5093. (8645, 'Bindings & Accessories', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_bindings-accessories', 'Sporting Goods :: Waterskiing & Wakeboarding :: Bindings & Accessories', '', 0, 1, 0, '', '', ''),
  5094. (8646, 'Boots', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_boots', 'Sporting Goods :: Waterskiing & Wakeboarding :: Boots', '', 0, 1, 0, '', '', ''),
  5095. (8647, 'Jetskis', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_jetskis', 'Sporting Goods :: Waterskiing & Wakeboarding :: Jetskis', '', 0, 1, 0, '', '', ''),
  5096. (8648, 'Ski Vests/ Jackets', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_ski-vests-jackets', 'Sporting Goods :: Waterskiing & Wakeboarding :: Ski Vests/ Jackets', '', 0, 1, 0, '', '', ''),
  5097. (8649, 'Life Jackets, Vests', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_life-jackets-vests', 'Sporting Goods :: Waterskiing & Wakeboarding :: Life Jackets, Vests', '', 0, 1, 0, '', '', ''),
  5098. (8650, 'Ropes & Handles', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_ropes-handles', 'Sporting Goods :: Waterskiing & Wakeboarding :: Ropes & Handles', '', 0, 1, 0, '', '', ''),
  5099. (8651, 'Wakeboards & Kneeboards', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_wakeboards-kneeboards', 'Sporting Goods :: Waterskiing & Wakeboarding :: Wakeboards & Kneeboards', '', 0, 1, 0, '', '', ''),
  5100. (8652, 'Water Skis', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_water-skis', 'Sporting Goods :: Waterskiing & Wakeboarding :: Water Skis', '', 0, 1, 0, '', '', ''),
  5101. (8653, 'Wetsuits', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_wetsuits', 'Sporting Goods :: Waterskiing & Wakeboarding :: Wetsuits', '', 0, 1, 0, '', '', ''),
  5102. (8654, 'Other Waterski & Wakeboarding', 8217, 0, NULL, 'sporting-goods_waterskiing-wakeboarding_other-waterski-wakeboarding', 'Sporting Goods :: Waterskiing & Wakeboarding :: Other Waterski & Wakeboarding', '', 0, 1, 0, '', '', ''),
  5103. (8655, 'Windsurfing', 3704, 0, NULL, 'sporting-goods_windsurfing', 'Sporting Goods :: Windsurfing', '', 0, 1, 0, '', '', ''),
  5104. (8656, 'Wetsuits', 8655, 0, NULL, 'sporting-goods_windsurfing_wetsuits', 'Sporting Goods :: Windsurfing :: Wetsuits', '', 0, 1, 0, '', '', ''),
  5105. (8657, 'Windsurfing Boards', 8655, 0, NULL, 'sporting-goods_windsurfing_windsurfing-boards', 'Sporting Goods :: Windsurfing :: Windsurfing Boards', '', 0, 1, 0, '', '', ''),
  5106. (8658, 'Windsurfing Harnesses', 8655, 0, NULL, 'sporting-goods_windsurfing_windsurfing-harnesses', 'Sporting Goods :: Windsurfing :: Windsurfing Harnesses', '', 0, 1, 0, '', '', ''),
  5107. (8659, 'Windsurfing Masts', 8655, 0, NULL, 'sporting-goods_windsurfing_windsurfing-masts', 'Sporting Goods :: Windsurfing :: Windsurfing Masts', '', 0, 1, 0, '', '', ''),
  5108. (8660, 'Windsurfing Sails', 8655, 0, NULL, 'sporting-goods_windsurfing_windsurfing-sails', 'Sporting Goods :: Windsurfing :: Windsurfing Sails', '', 0, 1, 0, '', '', ''),
  5109. (8661, 'Windsurfing Sets', 8655, 0, NULL, 'sporting-goods_windsurfing_windsurfing-sets', 'Sporting Goods :: Windsurfing :: Windsurfing Sets', '', 0, 1, 0, '', '', ''),
  5110. (8662, 'Trophies', 8655, 0, NULL, 'sporting-goods_windsurfing_trophies', 'Sporting Goods :: Windsurfing :: Trophies', '', 0, 1, 0, '', '', ''),
  5111. (8663, 'Other Windsurfing', 8655, 0, NULL, 'sporting-goods_windsurfing_other-windsurfing', 'Sporting Goods :: Windsurfing :: Other Windsurfing', '', 0, 1, 0, '', '', ''),
  5112. (8664, 'Fencing', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_fencing', 'Sporting Goods :: Other Sporting Goods :: Fencing', '', 0, 1, 0, '', '', ''),
  5113. (8665, 'Gaelic Sports', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_gaelic-sports', 'Sporting Goods :: Other Sporting Goods :: Gaelic Sports', '', 0, 1, 0, '', '', ''),
  5114. (8666, 'Lacrosse', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_lacrosse', 'Sporting Goods :: Other Sporting Goods :: Lacrosse', '', 0, 1, 0, '', '', ''),
  5115. (8667, 'Mountainboarding/ Kiteboarding', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_mountainboarding-kiteboarding', 'Sporting Goods :: Other Sporting Goods :: Mountainboarding/ Kiteboarding', '', 0, 1, 0, '', '', ''),
  5116. (8668, 'Netball', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_netball', 'Sporting Goods :: Other Sporting Goods :: Netball', '', 0, 1, 0, '', '', ''),
  5117. (8669, 'Paragliding/ Parachuting', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_paragliding-parachuting', 'Sporting Goods :: Other Sporting Goods :: Paragliding/ Parachuting', '', 0, 1, 0, '', '', ''),
  5118. (8670, 'Polo', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_polo', 'Sporting Goods :: Other Sporting Goods :: Polo', '', 0, 1, 0, '', '', ''),
  5119. (8671, 'Volleyball', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_volleyball', 'Sporting Goods :: Other Sporting Goods :: Volleyball', '', 0, 1, 0, '', '', ''),
  5120. (8672, 'Wrestling', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_wrestling', 'Sporting Goods :: Other Sporting Goods :: Wrestling', '', 0, 1, 0, '', '', ''),
  5121. (8673, 'Other Sporting Goods', 8218, 0, NULL, 'sporting-goods_other-sporting-goods_other-sporting-goods', 'Sporting Goods :: Other Sporting Goods :: Other Sporting Goods', '', 0, 1, 0, '', '', ''),
  5122. (8674, 'iPods & MP3 Players', 3703, 0, NULL, 'sound-vision_ipods-mp3-players', 'Sound & Vision :: iPods & MP3 Players', '', 0, 1, 0, '', '', ''),
  5123. (8675, 'iPod & MP3 Player Accessories', 3703, 0, NULL, 'sound-vision_ipod-mp3-player-accessories', 'Sound & Vision :: iPod & MP3 Player Accessories', '', 0, 1, 0, '', '', ''),
  5124. (8676, 'Headphones', 3703, 0, NULL, 'sound-vision_headphones', 'Sound & Vision :: Headphones', '', 0, 1, 0, '', '', ''),
  5125. (8677, 'Portable Disc Players & Radios', 3703, 0, NULL, 'sound-vision_portable-disc-players-radios', 'Sound & Vision :: Portable Disc Players & Radios', '', 0, 1, 0, '', '', ''),
  5126. (8678, 'Home Audio & HiFi Separates', 3703, 0, NULL, 'sound-vision_home-audio-hifi-separates', 'Sound & Vision :: Home Audio & HiFi Separates', '', 0, 1, 0, '', '', ''),
  5127. (8679, 'Performance & DJ Equipment', 3703, 0, NULL, 'sound-vision_performance-dj-equipment', 'Sound & Vision :: Performance & DJ Equipment', '', 0, 1, 0, '', '', ''),
  5128. (8680, 'Televisions', 3703, 0, NULL, 'sound-vision_televisions', 'Sound & Vision :: Televisions', '', 0, 1, 0, '', '', ''),
  5129. (8681, 'DVD, Blu-ray & Home Cinema', 3703, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema', 'Sound & Vision :: DVD, Blu-ray & Home Cinema', '', 0, 1, 0, '', '', ''),
  5130. (8682, 'TV Reception & Set-Top Boxes', 3703, 0, NULL, 'sound-vision_tv-reception-set-top-boxes', 'Sound & Vision :: TV Reception & Set-Top Boxes', '', 0, 1, 0, '', '', ''),
  5131. (8683, 'TV & Home Audio Accessories', 3703, 0, NULL, 'sound-vision_tv-home-audio-accessories', 'Sound & Vision :: TV & Home Audio Accessories', '', 0, 1, 0, '', '', ''),
  5132. (8684, 'TV & Home Audio Parts', 3703, 0, NULL, 'sound-vision_tv-home-audio-parts', 'Sound & Vision :: TV & Home Audio Parts', '', 0, 1, 0, '', '', ''),
  5133. (8685, 'Multipurpose Batteries & Power', 3703, 0, NULL, 'sound-vision_multipurpose-batteries-power', 'Sound & Vision :: Multipurpose Batteries & Power', '', 0, 1, 0, '', '', ''),
  5134. (8686, 'Smart Glasses', 3703, 0, NULL, 'sound-vision_smart-glasses', 'Sound & Vision :: Smart Glasses', '', 0, 1, 0, '', '', ''),
  5135. (8687, 'Manuals & Resources', 3703, 0, NULL, 'sound-vision_manuals-resources', 'Sound & Vision :: Manuals & Resources', '', 0, 1, 0, '', '', ''),
  5136. (8688, 'Vintage', 3703, 0, NULL, 'sound-vision_vintage', 'Sound & Vision :: Vintage', '', 0, 1, 0, '', '', ''),
  5137. (8689, 'Other Sound & Vision', 3703, 0, NULL, 'sound-vision_other-sound-vision', 'Sound & Vision :: Other Sound & Vision', '', 0, 1, 0, '', '', ''),
  5138. (8690, 'iPod Touch', 8674, 0, NULL, 'sound-vision_ipods-mp3-players_ipod-touch', 'Sound & Vision :: iPods & MP3 Players :: iPod Touch', '', 0, 1, 0, '', '', ''),
  5139. (8691, 'iPod Nano', 8674, 0, NULL, 'sound-vision_ipods-mp3-players_ipod-nano', 'Sound & Vision :: iPods & MP3 Players :: iPod Nano', '', 0, 1, 0, '', '', ''),
  5140. (8692, 'iPod Classic', 8674, 0, NULL, 'sound-vision_ipods-mp3-players_ipod-classic', 'Sound & Vision :: iPods & MP3 Players :: iPod Classic', '', 0, 1, 0, '', '', ''),
  5141. (8693, 'iPod Mini', 8674, 0, NULL, 'sound-vision_ipods-mp3-players_ipod-mini', 'Sound & Vision :: iPods & MP3 Players :: iPod Mini', '', 0, 1, 0, '', '', ''),
  5142. (8694, 'iPod Shuffle', 8674, 0, NULL, 'sound-vision_ipods-mp3-players_ipod-shuffle', 'Sound & Vision :: iPods & MP3 Players :: iPod Shuffle', '', 0, 1, 0, '', '', ''),
  5143. (8695, 'Other Brands', 8674, 0, NULL, 'sound-vision_ipods-mp3-players_other-brands', 'Sound & Vision :: iPods & MP3 Players :: Other Brands', '', 0, 1, 0, '', '', ''),
  5144. (8696, 'Accessory Bundles', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_accessory-bundles', 'Sound & Vision :: iPod & MP3 Player Accessories :: Accessory Bundles', '', 0, 1, 0, '', '', ''),
  5145. (8697, 'Armbands', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_armbands', 'Sound & Vision :: iPod & MP3 Player Accessories :: Armbands', '', 0, 1, 0, '', '', ''),
  5146. (8698, 'Audio Docks & Mini Speakers', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_audio-docks-mini-speakers', 'Sound & Vision :: iPod & MP3 Player Accessories :: Audio Docks & Mini Speakers', '', 0, 1, 0, '', '', ''),
  5147. (8699, 'Batteries', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_batteries', 'Sound & Vision :: iPod & MP3 Player Accessories :: Batteries', '', 0, 1, 0, '', '', ''),
  5148. (8700, 'Cables & Adapters', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_cables-adapters', 'Sound & Vision :: iPod & MP3 Player Accessories :: Cables & Adapters', '', 0, 1, 0, '', '', ''),
  5149. (8701, 'Cases, Covers & Skins', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_cases-covers-skins', 'Sound & Vision :: iPod & MP3 Player Accessories :: Cases, Covers & Skins', '', 0, 1, 0, '', '', ''),
  5150. (8702, 'Cassette Adapters', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_cassette-adapters', 'Sound & Vision :: iPod & MP3 Player Accessories :: Cassette Adapters', '', 0, 1, 0, '', '', ''),
  5151. (8703, 'Chargers & Docks', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_chargers-docks', 'Sound & Vision :: iPod & MP3 Player Accessories :: Chargers & Docks', '', 0, 1, 0, '', '', ''),
  5152. (8704, 'FM Transmitters', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_fm-transmitters', 'Sound & Vision :: iPod & MP3 Player Accessories :: FM Transmitters', '', 0, 1, 0, '', '', ''),
  5153. (8705, 'Holders & Mounts', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_holders-mounts', 'Sound & Vision :: iPod & MP3 Player Accessories :: Holders & Mounts', '', 0, 1, 0, '', '', ''),
  5154. (8706, 'Remotes', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_remotes', 'Sound & Vision :: iPod & MP3 Player Accessories :: Remotes', '', 0, 1, 0, '', '', ''),
  5155. (8707, 'Replacement Parts & Tools', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_replacement-parts-tools', 'Sound & Vision :: iPod & MP3 Player Accessories :: Replacement Parts & Tools', '', 0, 1, 0, '', '', ''),
  5156. (8708, 'Screen Protectors', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_screen-protectors', 'Sound & Vision :: iPod & MP3 Player Accessories :: Screen Protectors', '', 0, 1, 0, '', '', ''),
  5157. (8709, 'Other MP3 Player Accessories', 8675, 0, NULL, 'sound-vision_ipod-mp3-player-accessories_other-mp3-player-accessories', 'Sound & Vision :: iPod & MP3 Player Accessories :: Other MP3 Player Accessories', '', 0, 1, 0, '', '', ''),
  5158. (8710, 'Beats by Dr. Dre', 8676, 0, NULL, 'sound-vision_headphones_beats-by-dr-dre', 'Sound & Vision :: Headphones :: Beats by Dr. Dre', '', 0, 1, 0, '', '', ''),
  5159. (8711, 'JVC', 8676, 0, NULL, 'sound-vision_headphones_jvc', 'Sound & Vision :: Headphones :: JVC', '', 0, 1, 0, '', '', ''),
  5160. (8712, 'Philips', 8676, 0, NULL, 'sound-vision_headphones_philips', 'Sound & Vision :: Headphones :: Philips', '', 0, 1, 0, '', '', ''),
  5161. (8713, 'Sennheiser', 8676, 0, NULL, 'sound-vision_headphones_sennheiser', 'Sound & Vision :: Headphones :: Sennheiser', '', 0, 1, 0, '', '', ''),
  5162. (8714, 'Sony', 8676, 0, NULL, 'sound-vision_headphones_sony', 'Sound & Vision :: Headphones :: Sony', '', 0, 1, 0, '', '', ''),
  5163. (8715, 'Other Brands', 8676, 0, NULL, 'sound-vision_headphones_other-brands', 'Sound & Vision :: Headphones :: Other Brands', '', 0, 1, 0, '', '', ''),
  5164. (8716, 'Personal Cassette Players', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_personal-cassette-players', 'Sound & Vision :: Portable Disc Players & Radios :: Personal Cassette Players', '', 0, 1, 0, '', '', ''),
  5165. (8717, 'Personal CD Players', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_personal-cd-players', 'Sound & Vision :: Portable Disc Players & Radios :: Personal CD Players', '', 0, 1, 0, '', '', ''),
  5166. (8718, 'Personal MiniDisc Players', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_personal-minidisc-players', 'Sound & Vision :: Portable Disc Players & Radios :: Personal MiniDisc Players', '', 0, 1, 0, '', '', ''),
  5167. (8719, 'Portable Radios', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_portable-radios', 'Sound & Vision :: Portable Disc Players & Radios :: Portable Radios', '', 0, 1, 0, '', '', ''),
  5168. (8720, 'Portable Stereos/Boomboxes', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_portable-stereos-boomboxes', 'Sound & Vision :: Portable Disc Players & Radios :: Portable Stereos/Boomboxes', '', 0, 1, 0, '', '', ''),
  5169. (8721, 'Parts & Accessories', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_parts-accessories', 'Sound & Vision :: Portable Disc Players & Radios :: Parts & Accessories', '', 0, 1, 0, '', '', ''),
  5170. (8722, 'Other Radios & Disc Players', 8677, 0, NULL, 'sound-vision_portable-disc-players-radios_other-radios-disc-players', 'Sound & Vision :: Portable Disc Players & Radios :: Other Radios & Disc Players', '', 0, 1, 0, '', '', ''),
  5171. (8723, 'Amplifiers & Pre-Amps', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_amplifiers-pre-amps', 'Sound & Vision :: Home Audio & HiFi Separates :: Amplifiers & Pre-Amps', '', 0, 1, 0, '', '', ''),
  5172. (8724, 'Cassette/Tape Players', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_cassette-tape-players', 'Sound & Vision :: Home Audio & HiFi Separates :: Cassette/Tape Players', '', 0, 1, 0, '', '', ''),
  5173. (8725, 'CD Players & Recorders', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_cd-players-recorders', 'Sound & Vision :: Home Audio & HiFi Separates :: CD Players & Recorders', '', 0, 1, 0, '', '', ''),
  5174. (8726, 'Compact/Shelf Stereos', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_compact-shelf-stereos', 'Sound & Vision :: Home Audio & HiFi Separates :: Compact/Shelf Stereos', '', 0, 1, 0, '', '', ''),
  5175. (8727, 'HiFi Separates Systems/Combos', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_hifi-separates-systems-combos', 'Sound & Vision :: Home Audio & HiFi Separates :: HiFi Separates Systems/Combos', '', 0, 1, 0, '', '', ''),
  5176. (8728, 'MiniDisc Players & Recorders', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_minidisc-players-recorders', 'Sound & Vision :: Home Audio & HiFi Separates :: MiniDisc Players & Recorders', '', 0, 1, 0, '', '', ''),
  5177. (8729, 'Radio Tuners', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_radio-tuners', 'Sound & Vision :: Home Audio & HiFi Separates :: Radio Tuners', '', 0, 1, 0, '', '', ''),
  5178. (8730, 'Record Players/Turntables', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_record-players-turntables', 'Sound & Vision :: Home Audio & HiFi Separates :: Record Players/Turntables', '', 0, 1, 0, '', '', ''),
  5179. (8731, 'Speakers & Subwoofers', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_speakers-subwoofers', 'Sound & Vision :: Home Audio & HiFi Separates :: Speakers & Subwoofers', '', 0, 1, 0, '', '', ''),
  5180. (8732, 'Stereo Receivers', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_stereo-receivers', 'Sound & Vision :: Home Audio & HiFi Separates :: Stereo Receivers', '', 0, 1, 0, '', '', ''),
  5181. (8733, 'Other Home Audio', 8678, 0, NULL, 'sound-vision_home-audio-hifi-separates_other-home-audio', 'Sound & Vision :: Home Audio & HiFi Separates :: Other Home Audio', '', 0, 1, 0, '', '', ''),
  5182. (8734, 'Amplifiers', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_amplifiers', 'Sound & Vision :: Performance & DJ Equipment :: Amplifiers', '', 0, 1, 0, '', '', ''),
  5183. (8735, 'Cables, Leads & Connectors', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_cables-leads-connectors', 'Sound & Vision :: Performance & DJ Equipment :: Cables, Leads & Connectors', '', 0, 1, 0, '', '', ''),
  5184. (8736, 'Cases, Racks & Bags', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_cases-racks-bags', 'Sound & Vision :: Performance & DJ Equipment :: Cases, Racks & Bags', '', 0, 1, 0, '', '', ''),
  5185. (8737, 'DJ & PA Packages', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_dj-pa-packages', 'Sound & Vision :: Performance & DJ Equipment :: DJ & PA Packages', '', 0, 1, 0, '', '', ''),
  5186. (8738, 'DJ CD/MP3 Players', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_dj-cd-mp3-players', 'Sound & Vision :: Performance & DJ Equipment :: DJ CD/MP3 Players', '', 0, 1, 0, '', '', ''),
  5187. (8739, 'DJ Decks/Turntables', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_dj-decks-turntables', 'Sound & Vision :: Performance & DJ Equipment :: DJ Decks/Turntables', '', 0, 1, 0, '', '', ''),
  5188. (8740, 'Digital Vinyl Systems (DVS)', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_digital-vinyl-systems-dvs', 'Sound & Vision :: Performance & DJ Equipment :: Digital Vinyl Systems (DVS)', '', 0, 1, 0, '', '', ''),
  5189. (8741, 'Microphones', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_microphones', 'Sound & Vision :: Performance & DJ Equipment :: Microphones', '', 0, 1, 0, '', '', ''),
  5190. (8742, 'Mixers', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_mixers', 'Sound & Vision :: Performance & DJ Equipment :: Mixers', '', 0, 1, 0, '', '', ''),
  5191. (8743, 'Speakers & Monitors', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_speakers-monitors', 'Sound & Vision :: Performance & DJ Equipment :: Speakers & Monitors', '', 0, 1, 0, '', '', ''),
  5192. (8744, 'Stage Lighting & Effects', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_stage-lighting-effects', 'Sound & Vision :: Performance & DJ Equipment :: Stage Lighting & Effects', '', 0, 1, 0, '', '', ''),
  5193. (8745, 'Stands & Supports', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_stands-supports', 'Sound & Vision :: Performance & DJ Equipment :: Stands & Supports', '', 0, 1, 0, '', '', ''),
  5194. (8746, 'Karaoke Entertainment', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_karaoke-entertainment', 'Sound & Vision :: Performance & DJ Equipment :: Karaoke Entertainment', '', 0, 1, 0, '', '', ''),
  5195. (8747, 'Parts & Accessories', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_parts-accessories', 'Sound & Vision :: Performance & DJ Equipment :: Parts & Accessories', '', 0, 1, 0, '', '', ''),
  5196. (8748, 'Other Performance & DJ', 8679, 0, NULL, 'sound-vision_performance-dj-equipment_other-performance-dj', 'Sound & Vision :: Performance & DJ Equipment :: Other Performance & DJ', '', 0, 1, 0, '', '', ''),
  5197. (8749, 'CRT', 8680, 0, NULL, 'sound-vision_televisions_crt', 'Sound & Vision :: Televisions :: CRT', '', 0, 1, 0, '', '', ''),
  5198. (8750, 'LCD', 8680, 0, NULL, 'sound-vision_televisions_lcd', 'Sound & Vision :: Televisions :: LCD', '', 0, 1, 0, '', '', ''),
  5199. (8751, 'LED LCD', 8680, 0, NULL, 'sound-vision_televisions_led-lcd', 'Sound & Vision :: Televisions :: LED LCD', '', 0, 1, 0, '', '', ''),
  5200. (8752, 'OLED', 8680, 0, NULL, 'sound-vision_televisions_oled', 'Sound & Vision :: Televisions :: OLED', '', 0, 1, 0, '', '', ''),
  5201. (8753, 'Plasma', 8680, 0, NULL, 'sound-vision_televisions_plasma', 'Sound & Vision :: Televisions :: Plasma', '', 0, 1, 0, '', '', ''),
  5202. (8754, 'Rear-Projection', 8680, 0, NULL, 'sound-vision_televisions_rear-projection', 'Sound & Vision :: Televisions :: Rear-Projection', '', 0, 1, 0, '', '', ''),
  5203. (8755, 'Other', 8680, 0, NULL, 'sound-vision_televisions_other', 'Sound & Vision :: Televisions :: Other', '', 0, 1, 0, '', '', ''),
  5204. (8756, 'DVD & Blu-ray Players', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_dvd-blu-ray-players', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: DVD & Blu-ray Players', '', 0, 1, 0, '', '', ''),
  5205. (8757, 'Hard Drive (HDD) Recorders', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_hard-drive-hdd-recorders', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Hard Drive (HDD) Recorders', '', 0, 1, 0, '', '', ''),
  5206. (8758, 'Home Cinema Systems', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_home-cinema-systems', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Home Cinema Systems', '', 0, 1, 0, '', '', ''),
  5207. (8759, 'Home Cinema Receivers', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_home-cinema-receivers', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Home Cinema Receivers', '', 0, 1, 0, '', '', ''),
  5208. (8760, 'Home Cinema Projectors', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_home-cinema-projectors', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Home Cinema Projectors', '', 0, 1, 0, '', '', ''),
  5209. (8761, 'Projector Mounts & Stands', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_projector-mounts-stands', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Projector Mounts & Stands', '', 0, 1, 0, '', '', ''),
  5210. (8762, 'Projector Screens', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_projector-screens', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Projector Screens', '', 0, 1, 0, '', '', ''),
  5211. (8763, 'Projector Lamps & Components', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_projector-lamps-components', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Projector Lamps & Components', '', 0, 1, 0, '', '', ''),
  5212. (8764, 'Other Home Cinema', 8681, 0, NULL, 'sound-vision_dvd-blu-ray-home-cinema_other-home-cinema', 'Sound & Vision :: DVD, Blu-ray & Home Cinema :: Other Home Cinema', '', 0, 1, 0, '', '', ''),
  5213. (8765, 'Aerials', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_aerials', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Aerials', '', 0, 1, 0, '', '', ''),
  5214. (8766, 'Aerial/Dish Mounting Equipment', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_aerial-dish-mounting-equipment', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Aerial/Dish Mounting Equipment', '', 0, 1, 0, '', '', ''),
  5215. (8767, 'Cable TV Boxes', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_cable-tv-boxes', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Cable TV Boxes', '', 0, 1, 0, '', '', ''),
  5216. (8768, 'Conditional Access Modules', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_conditional-access-modules', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Conditional Access Modules', '', 0, 1, 0, '', '', ''),
  5217. (8769, 'Freeview Boxes', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_freeview-boxes', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Freeview Boxes', '', 0, 1, 0, '', '', ''),
  5218. (8770, 'Satellite Combiners/Splitters', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_satellite-combiners-splitters', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Satellite Combiners/Splitters', '', 0, 1, 0, '', '', ''),
  5219. (8771, 'Satellite Dishes', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_satellite-dishes', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Satellite Dishes', '', 0, 1, 0, '', '', ''),
  5220. (8772, 'Satellite LNBs', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_satellite-lnbs', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Satellite LNBs', '', 0, 1, 0, '', '', ''),
  5221. (8773, 'Satellite Multiswitchers', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_satellite-multiswitchers', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Satellite Multiswitchers', '', 0, 1, 0, '', '', ''),
  5222. (8774, 'Satellite TV Receivers', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_satellite-tv-receivers', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Satellite TV Receivers', '', 0, 1, 0, '', '', ''),
  5223. (8775, 'Signal Amplifiers & Filters', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_signal-amplifiers-filters', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Signal Amplifiers & Filters', '', 0, 1, 0, '', '', ''),
  5224. (8776, 'Signal Finders', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_signal-finders', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Signal Finders', '', 0, 1, 0, '', '', ''),
  5225. (8777, 'Viewing Cards', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_viewing-cards', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Viewing Cards', '', 0, 1, 0, '', '', ''),
  5226. (8778, 'Other TV Receivers/Reception', 8682, 0, NULL, 'sound-vision_tv-reception-set-top-boxes_other-tv-receivers-reception', 'Sound & Vision :: TV Reception & Set-Top Boxes :: Other TV Receivers/Reception', '', 0, 1, 0, '', '', ''),
  5227. (8779, '3D TV Glasses & Accessories', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_3d-tv-glasses-accessories', 'Sound & Vision :: TV & Home Audio Accessories :: 3D TV Glasses & Accessories', '', 0, 1, 0, '', '', ''),
  5228. (8780, 'Audio Cable Terminations', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_audio-cable-terminations', 'Sound & Vision :: TV & Home Audio Accessories :: Audio Cable Terminations', '', 0, 1, 0, '', '', ''),
  5229. (8781, 'Audio Cables & Adapters', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_audio-cables-adapters', 'Sound & Vision :: TV & Home Audio Accessories :: Audio Cables & Adapters', '', 0, 1, 0, '', '', ''),
  5230. (8782, 'Blank Media, Care & Storage', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_blank-media-care-storage', 'Sound & Vision :: TV & Home Audio Accessories :: Blank Media, Care & Storage', '', 0, 1, 0, '', '', ''),
  5231. (8783, 'Internet TV & Media Streamers', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_internet-tv-media-streamers', 'Sound & Vision :: TV & Home Audio Accessories :: Internet TV & Media Streamers', '', 0, 1, 0, '', '', ''),
  5232. (8784, 'Remote Controls', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_remote-controls', 'Sound & Vision :: TV & Home Audio Accessories :: Remote Controls', '', 0, 1, 0, '', '', ''),
  5233. (8785, 'Speaker Stands & Brackets', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_speaker-stands-brackets', 'Sound & Vision :: TV & Home Audio Accessories :: Speaker Stands & Brackets', '', 0, 1, 0, '', '', ''),
  5234. (8786, 'TV Cleaning Equipment', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_tv-cleaning-equipment', 'Sound & Vision :: TV & Home Audio Accessories :: TV Cleaning Equipment', '', 0, 1, 0, '', '', ''),
  5235. (8787, 'TV Stands', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_tv-stands', 'Sound & Vision :: TV & Home Audio Accessories :: TV Stands', '', 0, 1, 0, '', '', ''),
  5236. (8788, 'TV Wall Mounts & Brackets', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_tv-wall-mounts-brackets', 'Sound & Vision :: TV & Home Audio Accessories :: TV Wall Mounts & Brackets', '', 0, 1, 0, '', '', ''),
  5237. (8789, 'Video Cables & Connectors', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_video-cables-connectors', 'Sound & Vision :: TV & Home Audio Accessories :: Video Cables & Connectors', '', 0, 1, 0, '', '', ''),
  5238. (8790, 'Wireless Video Senders', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_wireless-video-senders', 'Sound & Vision :: TV & Home Audio Accessories :: Wireless Video Senders', '', 0, 1, 0, '', '', ''),
  5239. (8791, 'Other TV & Home Audio Accs.', 8683, 0, NULL, 'sound-vision_tv-home-audio-accessories_other-tv-home-audio-accs', 'Sound & Vision :: TV & Home Audio Accessories :: Other TV & Home Audio Accs.', '', 0, 1, 0, '', '', ''),
  5240. (8792, 'Rear-Projection TV Lamps', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_rear-projection-tv-lamps', 'Sound & Vision :: TV & Home Audio Parts :: Rear-Projection TV Lamps', '', 0, 1, 0, '', '', ''),
  5241. (8793, 'TV Boards, Parts & Components', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_tv-boards-parts-components', 'Sound & Vision :: TV & Home Audio Parts :: TV Boards, Parts & Components', '', 0, 1, 0, '', '', ''),
  5242. (8794, 'Amplifier Parts & Components', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_amplifier-parts-components', 'Sound & Vision :: TV & Home Audio Parts :: Amplifier Parts & Components', '', 0, 1, 0, '', '', ''),
  5243. (8795, 'Cassette Player Parts', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_cassette-player-parts', 'Sound & Vision :: TV & Home Audio Parts :: Cassette Player Parts', '', 0, 1, 0, '', '', ''),
  5244. (8796, 'Record Player/Turntable Parts', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_record-player-turntable-parts', 'Sound & Vision :: TV & Home Audio Parts :: Record Player/Turntable Parts', '', 0, 1, 0, '', '', ''),
  5245. (8797, 'Speaker Parts & Components', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_speaker-parts-components', 'Sound & Vision :: TV & Home Audio Parts :: Speaker Parts & Components', '', 0, 1, 0, '', '', ''),
  5246. (8798, 'Other Home Audio Parts', 8684, 0, NULL, 'sound-vision_tv-home-audio-parts_other-home-audio-parts', 'Sound & Vision :: TV & Home Audio Parts :: Other Home Audio Parts', '', 0, 1, 0, '', '', ''),
  5247. (8799, 'Battery Chargers', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_battery-chargers', 'Sound & Vision :: Multipurpose Batteries & Power :: Battery Chargers', '', 0, 1, 0, '', '', ''),
  5248. (8800, 'Battery Converters', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_battery-converters', 'Sound & Vision :: Multipurpose Batteries & Power :: Battery Converters', '', 0, 1, 0, '', '', ''),
  5249. (8801, 'Battery Testers', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_battery-testers', 'Sound & Vision :: Multipurpose Batteries & Power :: Battery Testers', '', 0, 1, 0, '', '', ''),
  5250. (8802, 'Rechargeable Batteries', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_rechargeable-batteries', 'Sound & Vision :: Multipurpose Batteries & Power :: Rechargeable Batteries', '', 0, 1, 0, '', '', ''),
  5251. (8803, 'Single Use Batteries', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_single-use-batteries', 'Sound & Vision :: Multipurpose Batteries & Power :: Single Use Batteries', '', 0, 1, 0, '', '', ''),
  5252. (8804, 'Multipurpose AC Adapters', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_multipurpose-ac-adapters', 'Sound & Vision :: Multipurpose Batteries & Power :: Multipurpose AC Adapters', '', 0, 1, 0, '', '', ''),
  5253. (8805, 'Power Cables & Connectors', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_power-cables-connectors', 'Sound & Vision :: Multipurpose Batteries & Power :: Power Cables & Connectors', '', 0, 1, 0, '', '', ''),
  5254. (8806, 'Surge Protectors, Power Strips', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_surge-protectors-power-strips', 'Sound & Vision :: Multipurpose Batteries & Power :: Surge Protectors, Power Strips', '', 0, 1, 0, '', '', ''),
  5255. (8807, 'Other Batteries & Power', 8685, 0, NULL, 'sound-vision_multipurpose-batteries-power_other-batteries-power', 'Sound & Vision :: Multipurpose Batteries & Power :: Other Batteries & Power', '', 0, 1, 0, '', '', ''),
  5256. (8808, 'Cable TV Box', 8687, 0, NULL, 'sound-vision_manuals-resources_cable-tv-box', 'Sound & Vision :: Manuals & Resources :: Cable TV Box', '', 0, 1, 0, '', '', ''),
  5257. (8809, 'DVD/Blu-ray Player', 8687, 0, NULL, 'sound-vision_manuals-resources_dvd-blu-ray-player', 'Sound & Vision :: Manuals & Resources :: DVD/Blu-ray Player', '', 0, 1, 0, '', '', ''),
  5258. (8810, 'Freeview Box', 8687, 0, NULL, 'sound-vision_manuals-resources_freeview-box', 'Sound & Vision :: Manuals & Resources :: Freeview Box', '', 0, 1, 0, '', '', ''),
  5259. (8811, 'Hard Drive (HDD) Recorder', 8687, 0, NULL, 'sound-vision_manuals-resources_hard-drive-hdd-recorder', 'Sound & Vision :: Manuals & Resources :: Hard Drive (HDD) Recorder', '', 0, 1, 0, '', '', ''),
  5260. (8812, 'HiFi Separates System/Combo', 8687, 0, NULL, 'sound-vision_manuals-resources_hifi-separates-system-combo', 'Sound & Vision :: Manuals & Resources :: HiFi Separates System/Combo', '', 0, 1, 0, '', '', ''),
  5261. (8813, 'Home Audio Amplifier/Pre-Amp', 8687, 0, NULL, 'sound-vision_manuals-resources_home-audio-amplifier-pre-amp', 'Sound & Vision :: Manuals & Resources :: Home Audio Amplifier/Pre-Amp', '', 0, 1, 0, '', '', ''),
  5262. (8814, 'Home Audio Cassette/Tape Player', 8687, 0, NULL, 'sound-vision_manuals-resources_home-audio-cassette-tape-player', 'Sound & Vision :: Manuals & Resources :: Home Audio Cassette/Tape Player', '', 0, 1, 0, '', '', ''),
  5263. (8815, 'Portable Radio', 8687, 0, NULL, 'sound-vision_manuals-resources_portable-radio', 'Sound & Vision :: Manuals & Resources :: Portable Radio', '', 0, 1, 0, '', '', ''),
  5264. (8816, 'Satellite TV Receiver', 8687, 0, NULL, 'sound-vision_manuals-resources_satellite-tv-receiver', 'Sound & Vision :: Manuals & Resources :: Satellite TV Receiver', '', 0, 1, 0, '', '', ''),
  5265. (8817, 'Television', 8687, 0, NULL, 'sound-vision_manuals-resources_television', 'Sound & Vision :: Manuals & Resources :: Television', '', 0, 1, 0, '', '', ''),
  5266. (8818, 'Not specified', 8687, 0, NULL, 'sound-vision_manuals-resources_not-specified', 'Sound & Vision :: Manuals & Resources :: Not specified', '', 0, 1, 0, '', '', ''),
  5267. (8819, 'Literature', 8688, 0, NULL, 'sound-vision_vintage_literature', 'Sound & Vision :: Vintage :: Literature', '', 0, 1, 0, '', '', ''),
  5268. (8820, 'Separates', 8688, 0, NULL, 'sound-vision_vintage_separates', 'Sound & Vision :: Vintage :: Separates', '', 0, 1, 0, '', '', ''),
  5269. (8821, 'Radios', 8688, 0, NULL, 'sound-vision_vintage_radios', 'Sound & Vision :: Vintage :: Radios', '', 0, 1, 0, '', '', ''),
  5270. (8822, 'Tape Recorders & Reel-to-Reel', 8688, 0, NULL, 'sound-vision_vintage_tape-recorders-reel-to-reel', 'Sound & Vision :: Vintage :: Tape Recorders & Reel-to-Reel', '', 0, 1, 0, '', '', ''),
  5271. (8823, 'Valves & Vacuum Tubes', 8688, 0, NULL, 'sound-vision_vintage_valves-vacuum-tubes', 'Sound & Vision :: Vintage :: Valves & Vacuum Tubes', '', 0, 1, 0, '', '', ''),
  5272. (8824, 'Video/VCRs', 8688, 0, NULL, 'sound-vision_vintage_video-vcrs', 'Sound & Vision :: Vintage :: Video/VCRs', '', 0, 1, 0, '', '', ''),
  5273. (8825, 'Other Vintage', 8688, 0, NULL, 'sound-vision_vintage_other-vintage', 'Sound & Vision :: Vintage :: Other Vintage', '', 0, 1, 0, '', '', ''),
  5274. (8826, 'Cassettes', 3698, 0, NULL, 'music_cassettes', 'Music :: Cassettes', '', 0, 1, 0, '', '', ''),
  5275. (8827, 'CDs', 3698, 0, NULL, 'music_cds', 'Music :: CDs', '', 0, 1, 0, '', '', ''),
  5276. (8828, 'Digital Music Downloads', 3698, 0, NULL, 'music_digital-music-downloads', 'Music :: Digital Music Downloads', '', 0, 1, 0, '', '', ''),
  5277. (8829, 'Records', 3698, 0, NULL, 'music_records', 'Music :: Records', '', 0, 1, 0, '', '', ''),
  5278. (8830, 'Other Formats', 3698, 0, NULL, 'music_other-formats', 'Music :: Other Formats', '', 0, 1, 0, '', '', ''),
  5279. (8831, 'Storage & Media Accessories', 3698, 0, NULL, 'music_storage-media-accessories', 'Music :: Storage & Media Accessories', '', 0, 1, 0, '', '', ''),
  5280. (8832, 'Music Memorabilia', 3698, 0, NULL, 'music_music-memorabilia', 'Music :: Music Memorabilia', '', 0, 1, 0, '', '', ''),
  5281. (8833, 'Blues', 8826, 0, NULL, 'music_cassettes_blues', 'Music :: Cassettes :: Blues', '', 0, 1, 0, '', '', ''),
  5282. (8834, 'Children's', 8826, 0, NULL, 'music_cassettes_childrens', 'Music :: Cassettes :: Children's', '', 0, 1, 0, '', '', ''),
  5283. (8835, 'Classical', 8826, 0, NULL, 'music_cassettes_classical', 'Music :: Cassettes :: Classical', '', 0, 1, 0, '', '', ''),
  5284. (8836, 'Comedy & Spoken Word', 8826, 0, NULL, 'music_cassettes_comedy-spoken-word', 'Music :: Cassettes :: Comedy & Spoken Word', '', 0, 1, 0, '', '', ''),
  5285. (8837, 'Country', 8826, 0, NULL, 'music_cassettes_country', 'Music :: Cassettes :: Country', '', 0, 1, 0, '', '', ''),
  5286. (8838, 'Dance & Electronica', 8826, 0, NULL, 'music_cassettes_dance-electronica', 'Music :: Cassettes :: Dance & Electronica', '', 0, 1, 0, '', '', ''),
  5287. (8839, 'Folk', 8826, 0, NULL, 'music_cassettes_folk', 'Music :: Cassettes :: Folk', '', 0, 1, 0, '', '', ''),
  5288. (8840, 'Holiday', 8826, 0, NULL, 'music_cassettes_holiday', 'Music :: Cassettes :: Holiday', '', 0, 1, 0, '', '', ''),
  5289. (8841, 'Jazz', 8826, 0, NULL, 'music_cassettes_jazz', 'Music :: Cassettes :: Jazz', '', 0, 1, 0, '', '', ''),
  5290. (8842, 'Latin', 8826, 0, NULL, 'music_cassettes_latin', 'Music :: Cassettes :: Latin', '', 0, 1, 0, '', '', ''),
  5291. (8843, 'Metal', 8826, 0, NULL, 'music_cassettes_metal', 'Music :: Cassettes :: Metal', '', 0, 1, 0, '', '', ''),
  5292. (8844, 'Military', 8826, 0, NULL, 'music_cassettes_military', 'Music :: Cassettes :: Military', '', 0, 1, 0, '', '', ''),
  5293. (8845, 'New Age & Easy Listening', 8826, 0, NULL, 'music_cassettes_new-age-easy-listening', 'Music :: Cassettes :: New Age & Easy Listening', '', 0, 1, 0, '', '', ''),
  5294. (8846, 'Pop', 8826, 0, NULL, 'music_cassettes_pop', 'Music :: Cassettes :: Pop', '', 0, 1, 0, '', '', ''),
  5295. (8847, 'R&B & Soul', 8826, 0, NULL, 'music_cassettes_rb-soul', 'Music :: Cassettes :: R&B & Soul', '', 0, 1, 0, '', '', ''),
  5296. (8848, 'Rap & Hip-Hop', 8826, 0, NULL, 'music_cassettes_rap-hip-hop', 'Music :: Cassettes :: Rap & Hip-Hop', '', 0, 1, 0, '', '', ''),
  5297. (8849, 'Reggae, Ska & Dub', 8826, 0, NULL, 'music_cassettes_reggae-ska-dub', 'Music :: Cassettes :: Reggae, Ska & Dub', '', 0, 1, 0, '', '', ''),
  5298. (8850, 'Religious & Devotional', 8826, 0, NULL, 'music_cassettes_religious-devotional', 'Music :: Cassettes :: Religious & Devotional', '', 0, 1, 0, '', '', ''),
  5299. (8851, 'Rock', 8826, 0, NULL, 'music_cassettes_rock', 'Music :: Cassettes :: Rock', '', 0, 1, 0, '', '', ''),
  5300. (8852, 'Sound Effects & Nature', 8826, 0, NULL, 'music_cassettes_sound-effects-nature', 'Music :: Cassettes :: Sound Effects & Nature', '', 0, 1, 0, '', '', ''),
  5301. (8853, 'Soundtracks & Musicals', 8826, 0, NULL, 'music_cassettes_soundtracks-musicals', 'Music :: Cassettes :: Soundtracks & Musicals', '', 0, 1, 0, '', '', ''),
  5302. (8854, 'World Music', 8826, 0, NULL, 'music_cassettes_world-music', 'Music :: Cassettes :: World Music', '', 0, 1, 0, '', '', ''),
  5303. (8855, 'Not specified', 8826, 0, NULL, 'music_cassettes_not-specified', 'Music :: Cassettes :: Not specified', '', 0, 1, 0, '', '', ''),
  5304. (8856, 'Blues', 8827, 0, NULL, 'music_cds_blues', 'Music :: CDs :: Blues', '', 0, 1, 0, '', '', ''),
  5305. (8857, 'Children's', 8827, 0, NULL, 'music_cds_childrens', 'Music :: CDs :: Children's', '', 0, 1, 0, '', '', ''),
  5306. (8858, 'Classical', 8827, 0, NULL, 'music_cds_classical', 'Music :: CDs :: Classical', '', 0, 1, 0, '', '', ''),
  5307. (8859, 'Comedy & Spoken Word', 8827, 0, NULL, 'music_cds_comedy-spoken-word', 'Music :: CDs :: Comedy & Spoken Word', '', 0, 1, 0, '', '', ''),
  5308. (8860, 'Country', 8827, 0, NULL, 'music_cds_country', 'Music :: CDs :: Country', '', 0, 1, 0, '', '', ''),
  5309. (8861, 'Dance & Electronica', 8827, 0, NULL, 'music_cds_dance-electronica', 'Music :: CDs :: Dance & Electronica', '', 0, 1, 0, '', '', ''),
  5310. (8862, 'Folk', 8827, 0, NULL, 'music_cds_folk', 'Music :: CDs :: Folk', '', 0, 1, 0, '', '', ''),
  5311. (8863, 'Holiday', 8827, 0, NULL, 'music_cds_holiday', 'Music :: CDs :: Holiday', '', 0, 1, 0, '', '', ''),
  5312. (8864, 'Jazz', 8827, 0, NULL, 'music_cds_jazz', 'Music :: CDs :: Jazz', '', 0, 1, 0, '', '', ''),
  5313. (8865, 'Latin', 8827, 0, NULL, 'music_cds_latin', 'Music :: CDs :: Latin', '', 0, 1, 0, '', '', ''),
  5314. (8866, 'Metal', 8827, 0, NULL, 'music_cds_metal', 'Music :: CDs :: Metal', '', 0, 1, 0, '', '', ''),
  5315. (8867, 'Military', 8827, 0, NULL, 'music_cds_military', 'Music :: CDs :: Military', '', 0, 1, 0, '', '', ''),
  5316. (8868, 'New Age & Easy Listening', 8827, 0, NULL, 'music_cds_new-age-easy-listening', 'Music :: CDs :: New Age & Easy Listening', '', 0, 1, 0, '', '', ''),
  5317. (8869, 'Not specified', 8827, 0, NULL, 'music_cds_not-specified', 'Music :: CDs :: Not specified', '', 0, 1, 0, '', '', ''),
  5318. (8870, 'Pop', 8827, 0, NULL, 'music_cds_pop', 'Music :: CDs :: Pop', '', 0, 1, 0, '', '', ''),
  5319. (8871, 'R&B & Soul', 8827, 0, NULL, 'music_cds_rb-soul', 'Music :: CDs :: R&B & Soul', '', 0, 1, 0, '', '', ''),
  5320. (8872, 'Rap & Hip-Hop', 8827, 0, NULL, 'music_cds_rap-hip-hop', 'Music :: CDs :: Rap & Hip-Hop', '', 0, 1, 0, '', '', ''),
  5321. (8873, 'Reggae, Ska & Dub', 8827, 0, NULL, 'music_cds_reggae-ska-dub', 'Music :: CDs :: Reggae, Ska & Dub', '', 0, 1, 0, '', '', ''),
  5322. (8874, 'Religious & Devotional', 8827, 0, NULL, 'music_cds_religious-devotional', 'Music :: CDs :: Religious & Devotional', '', 0, 1, 0, '', '', ''),
  5323. (8875, 'Rock', 8827, 0, NULL, 'music_cds_rock', 'Music :: CDs :: Rock', '', 0, 1, 0, '', '', ''),
  5324. (8876, 'Sound Effects & Nature', 8827, 0, NULL, 'music_cds_sound-effects-nature', 'Music :: CDs :: Sound Effects & Nature', '', 0, 1, 0, '', '', ''),
  5325. (8877, 'Soundtracks & Musicals', 8827, 0, NULL, 'music_cds_soundtracks-musicals', 'Music :: CDs :: Soundtracks & Musicals', '', 0, 1, 0, '', '', ''),
  5326. (8878, 'World Music', 8827, 0, NULL, 'music_cds_world-music', 'Music :: CDs :: World Music', '', 0, 1, 0, '', '', ''),
  5327. (8879, 'Blues', 8828, 0, NULL, 'music_digital-music-downloads_blues', 'Music :: Digital Music Downloads :: Blues', '', 0, 1, 0, '', '', ''),
  5328. (8880, 'Children's', 8828, 0, NULL, 'music_digital-music-downloads_childrens', 'Music :: Digital Music Downloads :: Children's', '', 0, 1, 0, '', '', ''),
  5329. (8881, 'Classical', 8828, 0, NULL, 'music_digital-music-downloads_classical', 'Music :: Digital Music Downloads :: Classical', '', 0, 1, 0, '', '', ''),
  5330. (8882, 'Comedy & Spoken Word', 8828, 0, NULL, 'music_digital-music-downloads_comedy-spoken-word', 'Music :: Digital Music Downloads :: Comedy & Spoken Word', '', 0, 1, 0, '', '', ''),
  5331. (8883, 'Country', 8828, 0, NULL, 'music_digital-music-downloads_country', 'Music :: Digital Music Downloads :: Country', '', 0, 1, 0, '', '', ''),
  5332. (8884, 'Dance & Electronica', 8828, 0, NULL, 'music_digital-music-downloads_dance-electronica', 'Music :: Digital Music Downloads :: Dance & Electronica', '', 0, 1, 0, '', '', ''),
  5333. (8885, 'Folk', 8828, 0, NULL, 'music_digital-music-downloads_folk', 'Music :: Digital Music Downloads :: Folk', '', 0, 1, 0, '', '', ''),
  5334. (8886, 'Holiday', 8828, 0, NULL, 'music_digital-music-downloads_holiday', 'Music :: Digital Music Downloads :: Holiday', '', 0, 1, 0, '', '', ''),
  5335. (8887, 'Jazz', 8828, 0, NULL, 'music_digital-music-downloads_jazz', 'Music :: Digital Music Downloads :: Jazz', '', 0, 1, 0, '', '', ''),
  5336. (8888, 'Latin', 8828, 0, NULL, 'music_digital-music-downloads_latin', 'Music :: Digital Music Downloads :: Latin', '', 0, 1, 0, '', '', ''),
  5337. (8889, 'Metal', 8828, 0, NULL, 'music_digital-music-downloads_metal', 'Music :: Digital Music Downloads :: Metal', '', 0, 1, 0, '', '', ''),
  5338. (8890, 'Military', 8828, 0, NULL, 'music_digital-music-downloads_military', 'Music :: Digital Music Downloads :: Military', '', 0, 1, 0, '', '', ''),
  5339. (8891, 'New Age & Easy Listening', 8828, 0, NULL, 'music_digital-music-downloads_new-age-easy-listening', 'Music :: Digital Music Downloads :: New Age & Easy Listening', '', 0, 1, 0, '', '', ''),
  5340. (8892, 'Not specified', 8828, 0, NULL, 'music_digital-music-downloads_not-specified', 'Music :: Digital Music Downloads :: Not specified', '', 0, 1, 0, '', '', ''),
  5341. (8893, 'Pop', 8828, 0, NULL, 'music_digital-music-downloads_pop', 'Music :: Digital Music Downloads :: Pop', '', 0, 1, 0, '', '', ''),
  5342. (8894, 'R&B & Soul', 8828, 0, NULL, 'music_digital-music-downloads_rb-soul', 'Music :: Digital Music Downloads :: R&B & Soul', '', 0, 1, 0, '', '', ''),
  5343. (8895, 'Rap & Hip-Hop', 8828, 0, NULL, 'music_digital-music-downloads_rap-hip-hop', 'Music :: Digital Music Downloads :: Rap & Hip-Hop', '', 0, 1, 0, '', '', ''),
  5344. (8896, 'Reggae, Ska & Dub', 8828, 0, NULL, 'music_digital-music-downloads_reggae-ska-dub', 'Music :: Digital Music Downloads :: Reggae, Ska & Dub', '', 0, 1, 0, '', '', ''),
  5345. (8897, 'Religious & Devotional', 8828, 0, NULL, 'music_digital-music-downloads_religious-devotional', 'Music :: Digital Music Downloads :: Religious & Devotional', '', 0, 1, 0, '', '', ''),
  5346. (8898, 'Rock', 8828, 0, NULL, 'music_digital-music-downloads_rock', 'Music :: Digital Music Downloads :: Rock', '', 0, 1, 0, '', '', ''),
  5347. (8899, 'Sound Effects & Nature', 8828, 0, NULL, 'music_digital-music-downloads_sound-effects-nature', 'Music :: Digital Music Downloads :: Sound Effects & Nature', '', 0, 1, 0, '', '', ''),
  5348. (8900, 'Soundtracks & Musicals', 8828, 0, NULL, 'music_digital-music-downloads_soundtracks-musicals', 'Music :: Digital Music Downloads :: Soundtracks & Musicals', '', 0, 1, 0, '', '', ''),
  5349. (8901, 'World Music', 8828, 0, NULL, 'music_digital-music-downloads_world-music', 'Music :: Digital Music Downloads :: World Music', '', 0, 1, 0, '', '', ''),
  5350. (8902, 'Albums/ LPs', 8829, 0, NULL, 'music_records_albums-lps', 'Music :: Records :: Albums/ LPs', '', 0, 1, 0, '', '', ''),
  5351. (8903, '12'' Singles', 8829, 0, NULL, 'music_records_12-singles', 'Music :: Records :: 12'' Singles', '', 0, 1, 0, '', '', ''),
  5352. (8904, '10\" Singles', 8829, 0, NULL, 'music_records_10-singles', 'Music :: Records :: 10\" Singles', '', 0, 1, 0, '', '', ''),
  5353. (8905, '7\" Singles', 8829, 0, NULL, 'music_records_7-singles', 'Music :: Records :: 7\" Singles', '', 0, 1, 0, '', '', ''),
  5354. (8906, '78 RPM', 8829, 0, NULL, 'music_records_78-rpm', 'Music :: Records :: 78 RPM', '', 0, 1, 0, '', '', ''),
  5355. (8907, 'Other Records', 8829, 0, NULL, 'music_records_other-records', 'Music :: Records :: Other Records', '', 0, 1, 0, '', '', ''),
  5356. (8908, '4-Track Cartridge', 8830, 0, NULL, 'music_other-formats_4-track-cartridge', 'Music :: Other Formats :: 4-Track Cartridge', '', 0, 1, 0, '', '', ''),
  5357. (8909, '8-Track Cartridge', 8830, 0, NULL, 'music_other-formats_8-track-cartridge', 'Music :: Other Formats :: 8-Track Cartridge', '', 0, 1, 0, '', '', ''),
  5358. (8910, 'Blu-ray Audio', 8830, 0, NULL, 'music_other-formats_blu-ray-audio', 'Music :: Other Formats :: Blu-ray Audio', '', 0, 1, 0, '', '', ''),
  5359. (8911, 'DAT Tape', 8830, 0, NULL, 'music_other-formats_dat-tape', 'Music :: Other Formats :: DAT Tape', '', 0, 1, 0, '', '', ''),
  5360. (8912, 'DVD Audio', 8830, 0, NULL, 'music_other-formats_dvd-audio', 'Music :: Other Formats :: DVD Audio', '', 0, 1, 0, '', '', ''),
  5361. (8913, 'Floppy Disk', 8830, 0, NULL, 'music_other-formats_floppy-disk', 'Music :: Other Formats :: Floppy Disk', '', 0, 1, 0, '', '', ''),
  5362. (8914, 'Memory Stick', 8830, 0, NULL, 'music_other-formats_memory-stick', 'Music :: Other Formats :: Memory Stick', '', 0, 1, 0, '', '', ''),
  5363. (8915, 'MiniDisc', 8830, 0, NULL, 'music_other-formats_minidisc', 'Music :: Other Formats :: MiniDisc', '', 0, 1, 0, '', '', ''),
  5364. (8916, 'Phonograph Cylinder', 8830, 0, NULL, 'music_other-formats_phonograph-cylinder', 'Music :: Other Formats :: Phonograph Cylinder', '', 0, 1, 0, '', '', ''),
  5365. (8917, 'Pianola Roll', 8830, 0, NULL, 'music_other-formats_pianola-roll', 'Music :: Other Formats :: Pianola Roll', '', 0, 1, 0, '', '', ''),
  5366. (8918, 'Reel-to-Reel Tape', 8830, 0, NULL, 'music_other-formats_reel-to-reel-tape', 'Music :: Other Formats :: Reel-to-Reel Tape', '', 0, 1, 0, '', '', ''),
  5367. (8919, 'SACD', 8830, 0, NULL, 'music_other-formats_sacd', 'Music :: Other Formats :: SACD', '', 0, 1, 0, '', '', ''),
  5368. (8920, 'SlotMusic', 8830, 0, NULL, 'music_other-formats_slotmusic', 'Music :: Other Formats :: SlotMusic', '', 0, 1, 0, '', '', ''),
  5369. (8921, 'UMD', 8830, 0, NULL, 'music_other-formats_umd', 'Music :: Other Formats :: UMD', '', 0, 1, 0, '', '', ''),
  5370. (8922, 'Not specified', 8830, 0, NULL, 'music_other-formats_not-specified', 'Music :: Other Formats :: Not specified', '', 0, 1, 0, '', '', ''),
  5371. (8923, 'Album/ Wallet', 8831, 0, NULL, 'music_storage-media-accessories_album-wallet', 'Music :: Storage & Media Accessories :: Album/ Wallet', '', 0, 1, 0, '', '', ''),
  5372. (8924, 'Box', 8831, 0, NULL, 'music_storage-media-accessories_box', 'Music :: Storage & Media Accessories :: Box', '', 0, 1, 0, '', '', ''),
  5373. (8925, 'Cabinet', 8831, 0, NULL, 'music_storage-media-accessories_cabinet', 'Music :: Storage & Media Accessories :: Cabinet', '', 0, 1, 0, '', '', ''),
  5374. (8926, 'Case', 8831, 0, NULL, 'music_storage-media-accessories_case', 'Music :: Storage & Media Accessories :: Case', '', 0, 1, 0, '', '', ''),
  5375. (8927, 'Drawer Unit', 8831, 0, NULL, 'music_storage-media-accessories_drawer-unit', 'Music :: Storage & Media Accessories :: Drawer Unit', '', 0, 1, 0, '', '', ''),
  5376. (8928, 'Rack/ Tower', 8831, 0, NULL, 'music_storage-media-accessories_rack-tower', 'Music :: Storage & Media Accessories :: Rack/ Tower', '', 0, 1, 0, '', '', ''),
  5377. (8929, 'Shelving Unit', 8831, 0, NULL, 'music_storage-media-accessories_shelving-unit', 'Music :: Storage & Media Accessories :: Shelving Unit', '', 0, 1, 0, '', '', ''),
  5378. (8930, 'Not specified', 8831, 0, NULL, 'music_storage-media-accessories_not-specified', 'Music :: Storage & Media Accessories :: Not specified', '', 0, 1, 0, '', '', ''),
  5379. (8931, 'Artists/ Groups', 8832, 0, NULL, 'music_music-memorabilia_artists-groups', 'Music :: Music Memorabilia :: Artists/ Groups', '', 0, 1, 0, '', '', ''),
  5380. (8932, 'Blues', 8832, 0, NULL, 'music_music-memorabilia_blues', 'Music :: Music Memorabilia :: Blues', '', 0, 1, 0, '', '', ''),
  5381. (8933, 'Classical', 8832, 0, NULL, 'music_music-memorabilia_classical', 'Music :: Music Memorabilia :: Classical', '', 0, 1, 0, '', '', ''),
  5382. (8934, 'Country', 8832, 0, NULL, 'music_music-memorabilia_country', 'Music :: Music Memorabilia :: Country', '', 0, 1, 0, '', '', ''),
  5383. (8935, 'Dance', 8832, 0, NULL, 'music_music-memorabilia_dance', 'Music :: Music Memorabilia :: Dance', '', 0, 1, 0, '', '', ''),
  5384. (8936, 'Easy Listening', 8832, 0, NULL, 'music_music-memorabilia_easy-listening', 'Music :: Music Memorabilia :: Easy Listening', '', 0, 1, 0, '', '', ''),
  5385. (8937, 'Folk', 8832, 0, NULL, 'music_music-memorabilia_folk', 'Music :: Music Memorabilia :: Folk', '', 0, 1, 0, '', '', ''),
  5386. (8938, 'Indie/ Britpop', 8832, 0, NULL, 'music_music-memorabilia_indie-britpop', 'Music :: Music Memorabilia :: Indie/ Britpop', '', 0, 1, 0, '', '', ''),
  5387. (8939, 'Irish Folk/ Traditional', 8832, 0, NULL, 'music_music-memorabilia_irish-folk-traditional', 'Music :: Music Memorabilia :: Irish Folk/ Traditional', '', 0, 1, 0, '', '', ''),
  5388. (8940, 'Jazz', 8832, 0, NULL, 'music_music-memorabilia_jazz', 'Music :: Music Memorabilia :: Jazz', '', 0, 1, 0, '', '', ''),
  5389. (8941, 'Metal', 8832, 0, NULL, 'music_music-memorabilia_metal', 'Music :: Music Memorabilia :: Metal', '', 0, 1, 0, '', '', ''),
  5390. (8942, 'Pop', 8832, 0, NULL, 'music_music-memorabilia_pop', 'Music :: Music Memorabilia :: Pop', '', 0, 1, 0, '', '', ''),
  5391. (8943, 'Pop & Beat: 1960s', 8832, 0, NULL, 'music_music-memorabilia_pop-beat-1960s', 'Music :: Music Memorabilia :: Pop & Beat: 1960s', '', 0, 1, 0, '', '', ''),
  5392. (8944, 'Punk/ New Wave', 8832, 0, NULL, 'music_music-memorabilia_punk-new-wave', 'Music :: Music Memorabilia :: Punk/ New Wave', '', 0, 1, 0, '', '', ''),
  5393. (8945, 'Rap/ Hip Hop', 8832, 0, NULL, 'music_music-memorabilia_rap-hip-hop', 'Music :: Music Memorabilia :: Rap/ Hip Hop', '', 0, 1, 0, '', '', ''),
  5394. (8946, 'R&B/ Soul', 8832, 0, NULL, 'music_music-memorabilia_rb-soul', 'Music :: Music Memorabilia :: R&B/ Soul', '', 0, 1, 0, '', '', ''),
  5395. (8947, 'Reggae/ Ska', 8832, 0, NULL, 'music_music-memorabilia_reggae-ska', 'Music :: Music Memorabilia :: Reggae/ Ska', '', 0, 1, 0, '', '', ''),
  5396. (8948, 'Rock', 8832, 0, NULL, 'music_music-memorabilia_rock', 'Music :: Music Memorabilia :: Rock', '', 0, 1, 0, '', '', ''),
  5397. (8949, 'World Music', 8832, 0, NULL, 'music_music-memorabilia_world-music', 'Music :: Music Memorabilia :: World Music', '', 0, 1, 0, '', '', ''),
  5398. (8950, 'Other Music Memorabilia', 8832, 0, NULL, 'music_music-memorabilia_other-music-memorabilia', 'Music :: Music Memorabilia :: Other Music Memorabilia', '', 0, 1, 0, '', '', ''),
  5399. (8951, 'Mobile & Smart Phones', 3697, 0, NULL, 'mobile-phones-communication_mobile-smart-phones', 'Mobile Phones & Communication :: Mobile & Smart Phones', '', 0, 1, 0, '', '', ''),
  5400. (8952, 'Mobile Phone & PDA Accessories', 3697, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories', '', 0, 1, 0, '', '', ''),
  5401. (8953, 'Smart Watches', 3697, 0, NULL, 'mobile-phones-communication_smart-watches', 'Mobile Phones & Communication :: Smart Watches', '', 0, 1, 0, '', '', ''),
  5402. (8954, 'Home Phones & Accessories', 3697, 0, NULL, 'mobile-phones-communication_home-phones-accessories', 'Mobile Phones & Communication :: Home Phones & Accessories', '', 0, 1, 0, '', '', ''),
  5403. (8955, 'PDAs', 3697, 0, NULL, 'mobile-phones-communication_pdas', 'Mobile Phones & Communication :: PDAs', '', 0, 1, 0, '', '', ''),
  5404. (8956, 'Replacement Parts & Tools', 3697, 0, NULL, 'mobile-phones-communication_replacement-parts-tools', 'Mobile Phones & Communication :: Replacement Parts & Tools', '', 0, 1, 0, '', '', ''),
  5405. (8957, 'Ringtones, Logos & Software', 3697, 0, NULL, 'mobile-phones-communication_ringtones-logos-software', 'Mobile Phones & Communication :: Ringtones, Logos & Software', '', 0, 1, 0, '', '', ''),
  5406. (8958, 'Sim Cards & Readers', 3697, 0, NULL, 'mobile-phones-communication_sim-cards-readers', 'Mobile Phones & Communication :: Sim Cards & Readers', '', 0, 1, 0, '', '', ''),
  5407. (8959, 'Radio Communication Equipment', 3697, 0, NULL, 'mobile-phones-communication_radio-communication-equipment', 'Mobile Phones & Communication :: Radio Communication Equipment', '', 0, 1, 0, '', '', ''),
  5408. (8960, 'Dummy Mobile Phones', 3697, 0, NULL, 'mobile-phones-communication_dummy-mobile-phones', 'Mobile Phones & Communication :: Dummy Mobile Phones', '', 0, 1, 0, '', '', ''),
  5409. (8961, 'Vintage Phones', 3697, 0, NULL, 'mobile-phones-communication_vintage-phones', 'Mobile Phones & Communication :: Vintage Phones', '', 0, 1, 0, '', '', ''),
  5410. (8962, 'Other Phones', 3697, 0, NULL, 'mobile-phones-communication_other-phones', 'Mobile Phones & Communication :: Other Phones', '', 0, 1, 0, '', '', ''),
  5411. (8963, 'Acer', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_acer', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Acer', '', 0, 1, 0, '', '', ''),
  5412. (8964, 'ALCATEL', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_alcatel', 'Mobile Phones & Communication :: Mobile & Smart Phones :: ALCATEL', '', 0, 1, 0, '', '', ''),
  5413. (8965, 'Apple', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_apple', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Apple', '', 0, 1, 0, '', '', ''),
  5414. (8966, 'Binatone', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_binatone', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Binatone', '', 0, 1, 0, '', '', ''),
  5415. (8967, 'BlackBerry', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_blackberry', 'Mobile Phones & Communication :: Mobile & Smart Phones :: BlackBerry', '', 0, 1, 0, '', '', ''),
  5416. (8968, 'Doro', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_doro', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Doro', '', 0, 1, 0, '', '', ''),
  5417. (8969, 'Dell', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_dell', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Dell', '', 0, 1, 0, '', '', ''),
  5418. (8970, 'HP', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_hp', 'Mobile Phones & Communication :: Mobile & Smart Phones :: HP', '', 0, 1, 0, '', '', ''),
  5419. (8971, 'HTC', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_htc', 'Mobile Phones & Communication :: Mobile & Smart Phones :: HTC', '', 0, 1, 0, '', '', ''),
  5420. (8972, 'Huawei', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_huawei', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Huawei', '', 0, 1, 0, '', '', ''),
  5421. (8973, 'INQ', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_inq', 'Mobile Phones & Communication :: Mobile & Smart Phones :: INQ', '', 0, 1, 0, '', '', ''),
  5422. (8974, 'JCB', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_jcb', 'Mobile Phones & Communication :: Mobile & Smart Phones :: JCB', '', 0, 1, 0, '', '', ''),
  5423. (8975, 'Motorola', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_motorola', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Motorola', '', 0, 1, 0, '', '', ''),
  5424. (8976, 'LG', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_lg', 'Mobile Phones & Communication :: Mobile & Smart Phones :: LG', '', 0, 1, 0, '', '', ''),
  5425. (8977, 'NEC', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_nec', 'Mobile Phones & Communication :: Mobile & Smart Phones :: NEC', '', 0, 1, 0, '', '', ''),
  5426. (8978, 'Nokia', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_nokia', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Nokia', '', 0, 1, 0, '', '', ''),
  5427. (8979, 'O2', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_o2', 'Mobile Phones & Communication :: Mobile & Smart Phones :: O2', '', 0, 1, 0, '', '', ''),
  5428. (8980, 'Orange', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_orange', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Orange', '', 0, 1, 0, '', '', ''),
  5429. (8981, 'Palm', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_palm', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Palm', '', 0, 1, 0, '', '', ''),
  5430. (8982, 'Panasonic', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_panasonic', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Panasonic', '', 0, 1, 0, '', '', ''),
  5431. (8983, 'Philips', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_philips', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Philips', '', 0, 1, 0, '', '', ''),
  5432. (8984, 'Sagem', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_sagem', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Sagem', '', 0, 1, 0, '', '', ''),
  5433. (8985, 'Samsung', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_samsung', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Samsung', '', 0, 1, 0, '', '', ''),
  5434. (8986, 'Sharp', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_sharp', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Sharp', '', 0, 1, 0, '', '', ''),
  5435. (8987, 'Siemens', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_siemens', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Siemens', '', 0, 1, 0, '', '', ''),
  5436. (8988, 'Sonim', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_sonim', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Sonim', '', 0, 1, 0, '', '', ''),
  5437. (8989, 'Sony', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_sony', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Sony', '', 0, 1, 0, '', '', ''),
  5438. (8990, 'Sony Ericsson', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_sony-ericsson', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Sony Ericsson', '', 0, 1, 0, '', '', ''),
  5439. (8991, 'T-Mobile', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_t-mobile', 'Mobile Phones & Communication :: Mobile & Smart Phones :: T-Mobile', '', 0, 1, 0, '', '', ''),
  5440. (8992, 'Vertu', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_vertu', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Vertu', '', 0, 1, 0, '', '', ''),
  5441. (8993, 'Virgin', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_virgin', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Virgin', '', 0, 1, 0, '', '', ''),
  5442. (8994, 'Vodafone', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_vodafone', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Vodafone', '', 0, 1, 0, '', '', ''),
  5443. (8995, 'ZTE', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_zte', 'Mobile Phones & Communication :: Mobile & Smart Phones :: ZTE', '', 0, 1, 0, '', '', ''),
  5444. (8996, 'Not specified', 8951, 0, NULL, 'mobile-phones-communication_mobile-smart-phones_not-specified', 'Mobile Phones & Communication :: Mobile & Smart Phones :: Not specified', '', 0, 1, 0, '', '', ''),
  5445. (8997, 'Accessory Bundles', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_accessory-bundles', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Accessory Bundles', '', 0, 1, 0, '', '', ''),
  5446. (8998, 'Armbands', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_armbands', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Armbands', '', 0, 1, 0, '', '', ''),
  5447. (8999, 'Audio Docks & Speakers', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_audio-docks-speakers', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Audio Docks & Speakers', '', 0, 1, 0, '', '', ''),
  5448. (9000, 'Batteries', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_batteries', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Batteries', '', 0, 1, 0, '', '', ''),
  5449. (9001, 'Cables & Adapters', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_cables-adapters', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Cables & Adapters', '', 0, 1, 0, '', '', ''),
  5450. (9002, 'Car Speakerphones', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_car-speakerphones', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Car Speakerphones', '', 0, 1, 0, '', '', ''),
  5451. (9003, 'Cases & Covers', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_cases-covers', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Cases & Covers', '', 0, 1, 0, '', '', ''),
  5452. (9004, 'Chargers & Docks', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_chargers-docks', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Chargers & Docks', '', 0, 1, 0, '', '', ''),
  5453. (9005, 'Fascias, Stickers & Decals', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_fascias-stickers-decals', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Fascias, Stickers & Decals', '', 0, 1, 0, '', '', ''),
  5454. (9006, 'FM Transmitters', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_fm-transmitters', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: FM Transmitters', '', 0, 1, 0, '', '', ''),
  5455. (9007, 'Headsets', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_headsets', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Headsets', '', 0, 1, 0, '', '', ''),
  5456. (9008, 'Holders & Mounts', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_holders-mounts', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Holders & Mounts', '', 0, 1, 0, '', '', ''),
  5457. (9009, 'Manuals & Guides', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_manuals-guides', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Manuals & Guides', '', 0, 1, 0, '', '', ''),
  5458. (9010, 'Memory Cards', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_memory-cards', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Memory Cards', '', 0, 1, 0, '', '', ''),
  5459. (9011, 'Memory Card Readers & Adapters', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_memory-card-readers-adapters', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Memory Card Readers & Adapters', '', 0, 1, 0, '', '', ''),
  5460. (9012, 'Screen Protectors', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_screen-protectors', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Screen Protectors', '', 0, 1, 0, '', '', ''),
  5461. (9013, 'Signal Boosters', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_signal-boosters', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Signal Boosters', '', 0, 1, 0, '', '', ''),
  5462. (9014, 'Straps & Charms', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_straps-charms', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Straps & Charms', '', 0, 1, 0, '', '', ''),
  5463. (9015, 'Styluses', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_styluses', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Styluses', '', 0, 1, 0, '', '', ''),
  5464. (9016, 'Other Mobile Phone Accessories', 8952, 0, NULL, 'mobile-phones-communication_mobile-phone-pda-accessories_other-mobile-phone-accessories', 'Mobile Phones & Communication :: Mobile Phone & PDA Accessories :: Other Mobile Phone Accessories', '', 0, 1, 0, '', '', ''),
  5465. (9017, 'Androidly', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_androidly', 'Mobile Phones & Communication :: Smart Watches :: Androidly', '', 0, 1, 0, '', '', ''),
  5466. (9018, 'Cookoo', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_cookoo', 'Mobile Phones & Communication :: Smart Watches :: Cookoo', '', 0, 1, 0, '', '', ''),
  5467. (9019, 'Pebble', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_pebble', 'Mobile Phones & Communication :: Smart Watches :: Pebble', '', 0, 1, 0, '', '', ''),
  5468. (9020, 'Samsung', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_samsung', 'Mobile Phones & Communication :: Smart Watches :: Samsung', '', 0, 1, 0, '', '', ''),
  5469. (9021, 'Sony', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_sony', 'Mobile Phones & Communication :: Smart Watches :: Sony', '', 0, 1, 0, '', '', ''),
  5470. (9022, 'Unbranded/Generic', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_unbranded-generic', 'Mobile Phones & Communication :: Smart Watches :: Unbranded/Generic', '', 0, 1, 0, '', '', ''),
  5471. (9023, 'Not specified', 8953, 0, NULL, 'mobile-phones-communication_smart-watches_not-specified', 'Mobile Phones & Communication :: Smart Watches :: Not specified', '', 0, 1, 0, '', '', ''),
  5472. (9024, 'Answering Machines', 8954, 0, NULL, 'mobile-phones-communication_home-phones-accessories_answering-machines', 'Mobile Phones & Communication :: Home Phones & Accessories :: Answering Machines', '', 0, 1, 0, '', '', ''),
  5473. (9025, 'Corded Phones', 8954, 0, NULL, 'mobile-phones-communication_home-phones-accessories_corded-phones', 'Mobile Phones & Communication :: Home Phones & Accessories :: Corded Phones', '', 0, 1, 0, '', '', ''),
  5474. (9026, 'Cordless Phones', 8954, 0, NULL, 'mobile-phones-communication_home-phones-accessories_cordless-phones', 'Mobile Phones & Communication :: Home Phones & Accessories :: Cordless Phones', '', 0, 1, 0, '', '', ''),
  5475. (9027, 'Phone Accessories', 8954, 0, NULL, 'mobile-phones-communication_home-phones-accessories_phone-accessories', 'Mobile Phones & Communication :: Home Phones & Accessories :: Phone Accessories', '', 0, 1, 0, '', '', ''),
  5476. (9028, 'Other Home Phones', 8954, 0, NULL, 'mobile-phones-communication_home-phones-accessories_other-home-phones', 'Mobile Phones & Communication :: Home Phones & Accessories :: Other Home Phones', '', 0, 1, 0, '', '', ''),
  5477. (9029, 'Antennas', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_antennas', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Antennas', '', 0, 1, 0, '', '', ''),
  5478. (9030, 'Battery Covers', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_battery-covers', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Battery Covers', '', 0, 1, 0, '', '', ''),
  5479. (9031, 'Buttons', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_buttons', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Buttons', '', 0, 1, 0, '', '', ''),
  5480. (9032, 'Keypads', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_keypads', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Keypads', '', 0, 1, 0, '', '', ''),
  5481. (9033, 'Opening Tools', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_opening-tools', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Opening Tools', '', 0, 1, 0, '', '', ''),
  5482. (9034, 'Screens', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_screens', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Screens', '', 0, 1, 0, '', '', ''),
  5483. (9035, 'Screwdrivers', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_screwdrivers', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Screwdrivers', '', 0, 1, 0, '', '', ''),
  5484. (9036, 'Tool Box', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_tool-box', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Tool Box', '', 0, 1, 0, '', '', ''),
  5485. (9037, 'Track Pads', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_track-pads', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Track Pads', '', 0, 1, 0, '', '', ''),
  5486. (9038, 'Not specified', 8956, 0, NULL, 'mobile-phones-communication_replacement-parts-tools_not-specified', 'Mobile Phones & Communication :: Replacement Parts & Tools :: Not specified', '', 0, 1, 0, '', '', ''),
  5487. (9039, 'Games', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_games', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Games', '', 0, 1, 0, '', '', ''),
  5488. (9040, 'Logos', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_logos', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Logos', '', 0, 1, 0, '', '', ''),
  5489. (9041, 'Music', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_music', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Music', '', 0, 1, 0, '', '', ''),
  5490. (9042, 'Ringtones', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_ringtones', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Ringtones', '', 0, 1, 0, '', '', ''),
  5491. (9043, 'Screensavers', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_screensavers', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Screensavers', '', 0, 1, 0, '', '', ''),
  5492. (9044, 'Themes', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_themes', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Themes', '', 0, 1, 0, '', '', ''),
  5493. (9045, 'Unlocking', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_unlocking', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Unlocking', '', 0, 1, 0, '', '', ''),
  5494. (9046, 'Videos', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_videos', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Videos', '', 0, 1, 0, '', '', ''),
  5495. (9047, 'Wallpapers', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_wallpapers', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Wallpapers', '', 0, 1, 0, '', '', ''),
  5496. (9048, 'Not specified', 8957, 0, NULL, 'mobile-phones-communication_ringtones-logos-software_not-specified', 'Mobile Phones & Communication :: Ringtones, Logos & Software :: Not specified', '', 0, 1, 0, '', '', ''),
  5497. (9049, 'Sim Cards', 8958, 0, NULL, 'mobile-phones-communication_sim-cards-readers_sim-cards', 'Mobile Phones & Communication :: Sim Cards & Readers :: Sim Cards', '', 0, 1, 0, '', '', ''),
  5498. (9050, 'Sim Card Readers & Adapters', 8958, 0, NULL, 'mobile-phones-communication_sim-cards-readers_sim-card-readers-adapters', 'Mobile Phones & Communication :: Sim Cards & Readers :: Sim Card Readers & Adapters', '', 0, 1, 0, '', '', ''),
  5499. (9051, 'Antennas', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_antennas', 'Mobile Phones & Communication :: Radio Communication Equipment :: Antennas', '', 0, 1, 0, '', '', ''),
  5500. (9052, 'CB Radios', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_cb-radios', 'Mobile Phones & Communication :: Radio Communication Equipment :: CB Radios', '', 0, 1, 0, '', '', ''),
  5501. (9053, 'Commercial Radios', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_commercial-radios', 'Mobile Phones & Communication :: Radio Communication Equipment :: Commercial Radios', '', 0, 1, 0, '', '', ''),
  5502. (9054, 'Ham/Amateur Radio', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_ham-amateur-radio', 'Mobile Phones & Communication :: Radio Communication Equipment :: Ham/Amateur Radio', '', 0, 1, 0, '', '', ''),
  5503. (9055, 'Marine & Aircraft Radios', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_marine-aircraft-radios', 'Mobile Phones & Communication :: Radio Communication Equipment :: Marine & Aircraft Radios', '', 0, 1, 0, '', '', ''),
  5504. (9056, 'Scanners', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_scanners', 'Mobile Phones & Communication :: Radio Communication Equipment :: Scanners', '', 0, 1, 0, '', '', ''),
  5505. (9057, 'Walkie Talkies & PMR446 Radios', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_walkie-talkies-pmr446-radios', 'Mobile Phones & Communication :: Radio Communication Equipment :: Walkie Talkies & PMR446 Radios', '', 0, 1, 0, '', '', ''),
  5506. (9058, 'Parts & Accessories', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_parts-accessories', 'Mobile Phones & Communication :: Radio Communication Equipment :: Parts & Accessories', '', 0, 1, 0, '', '', ''),
  5507. (9059, 'Other Radio Equipment', 8959, 0, NULL, 'mobile-phones-communication_radio-communication-equipment_other-radio-equipment', 'Mobile Phones & Communication :: Radio Communication Equipment :: Other Radio Equipment', '', 0, 1, 0, '', '', ''),
  5508. (9060, 'Appliances', 3695, 0, NULL, 'home-furniture-diy_appliances', 'Home, Furniture & DIY :: Appliances', '', 0, 1, 0, '', '', ''),
  5509. (9061, 'Bath', 3695, 0, NULL, 'home-furniture-diy_bath', 'Home, Furniture & DIY :: Bath', '', 0, 1, 0, '', '', ''),
  5510. (9062, 'Bedding', 3695, 0, NULL, 'home-furniture-diy_bedding', 'Home, Furniture & DIY :: Bedding', '', 0, 1, 0, '', '', ''),
  5511. (9063, 'Celebrations & Occasions', 3695, 0, NULL, 'home-furniture-diy_celebrations-occasions', 'Home, Furniture & DIY :: Celebrations & Occasions', '', 0, 1, 0, '', '', ''),
  5512. (9064, 'Children's Home & Furniture', 3695, 0, NULL, 'home-furniture-diy_childrens-home-furniture', 'Home, Furniture & DIY :: Children's Home & Furniture', '', 0, 1, 0, '', '', ''),
  5513. (9065, 'Clocks', 3695, 0, NULL, 'home-furniture-diy_clocks', 'Home, Furniture & DIY :: Clocks', '', 0, 1, 0, '', '', ''),
  5514. (9066, 'Conservatories', 3695, 0, NULL, 'home-furniture-diy_conservatories', 'Home, Furniture & DIY :: Conservatories', '', 0, 1, 0, '', '', ''),
  5515. (9067, 'Cookware, Dining & Bar', 3695, 0, NULL, 'home-furniture-diy_cookware-dining-bar', 'Home, Furniture & DIY :: Cookware, Dining & Bar', '', 0, 1, 0, '', '', ''),
  5516. (9068, 'Curtains & Blinds', 3695, 0, NULL, 'home-furniture-diy_curtains-blinds', 'Home, Furniture & DIY :: Curtains & Blinds', '', 0, 1, 0, '', '', ''),
  5517. (9069, 'DIY Materials', 3695, 0, NULL, 'home-furniture-diy_diy-materials', 'Home, Furniture & DIY :: DIY Materials', '', 0, 1, 0, '', '', ''),
  5518. (9070, 'DIY Tools', 3695, 0, NULL, 'home-furniture-diy_diy-tools', 'Home, Furniture & DIY :: DIY Tools', '', 0, 1, 0, '', '', ''),
  5519. (9071, 'Fireplaces & Accessories', 3695, 0, NULL, 'home-furniture-diy_fireplaces-accessories', 'Home, Furniture & DIY :: Fireplaces & Accessories', '', 0, 1, 0, '', '', ''),
  5520. (9072, 'Food & Drink', 3695, 0, NULL, 'home-furniture-diy_food-drink', 'Home, Furniture & DIY :: Food & Drink', '', 0, 1, 0, '', '', ''),
  5521. (9073, 'Furniture', 3695, 0, NULL, 'home-furniture-diy_furniture', 'Home, Furniture & DIY :: Furniture', '', 0, 1, 0, '', '', ''),
  5522. (9074, 'Heating/ Cooling/ Air', 3695, 0, NULL, 'home-furniture-diy_heating-cooling-air', 'Home, Furniture & DIY :: Heating/ Cooling/ Air', '', 0, 1, 0, '', '', ''),
  5523. (9075, 'Home Decor', 3695, 0, NULL, 'home-furniture-diy_home-decor', 'Home, Furniture & DIY :: Home Decor', '', 0, 1, 0, '', '', ''),
  5524. (9076, 'Household & Laundry Supplies', 3695, 0, NULL, 'home-furniture-diy_household-laundry-supplies', 'Home, Furniture & DIY :: Household & Laundry Supplies', '', 0, 1, 0, '', '', ''),
  5525. (9077, 'Kitchen Plumbing & Fittings', 3695, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings', '', 0, 1, 0, '', '', ''),
  5526. (9078, 'Lighting', 3695, 0, NULL, 'home-furniture-diy_lighting', 'Home, Furniture & DIY :: Lighting', '', 0, 1, 0, '', '', ''),
  5527. (9079, 'Luggage & Travel Accessories', 3695, 0, NULL, 'home-furniture-diy_luggage-travel-accessories', 'Home, Furniture & DIY :: Luggage & Travel Accessories', '', 0, 1, 0, '', '', ''),
  5528. (9080, 'Metaphysical & New Age', 3695, 0, NULL, 'home-furniture-diy_metaphysical-new-age', 'Home, Furniture & DIY :: Metaphysical & New Age', '', 0, 1, 0, '', '', ''),
  5529. (9081, 'Rugs & Carpets', 3695, 0, NULL, 'home-furniture-diy_rugs-carpets', 'Home, Furniture & DIY :: Rugs & Carpets', '', 0, 1, 0, '', '', ''),
  5530. (9082, 'Security & Home Automation', 3695, 0, NULL, 'home-furniture-diy_security-home-automation', 'Home, Furniture & DIY :: Security & Home Automation', '', 0, 1, 0, '', '', ''),
  5531. (9083, 'Stationery & School Equipment', 3695, 0, NULL, 'home-furniture-diy_stationery-school-equipment', 'Home, Furniture & DIY :: Stationery & School Equipment', '', 0, 1, 0, '', '', ''),
  5532. (9084, 'Storage Solutions', 3695, 0, NULL, 'home-furniture-diy_storage-solutions', 'Home, Furniture & DIY :: Storage Solutions', '', 0, 1, 0, '', '', ''),
  5533. (9085, 'Wedding Supplies', 3695, 0, NULL, 'home-furniture-diy_wedding-supplies', 'Home, Furniture & DIY :: Wedding Supplies', '', 0, 1, 0, '', '', ''),
  5534. (9086, 'Other Home, Furniture & DIY', 3695, 0, NULL, 'home-furniture-diy_other-home-furniture-diy', 'Home, Furniture & DIY :: Other Home, Furniture & DIY', '', 0, 1, 0, '', '', ''),
  5535. (9087, 'Coffee, Tea & Espresso Making', 9060, 0, NULL, 'home-furniture-diy_appliances_coffee-tea-espresso-making', 'Home, Furniture & DIY :: Appliances :: Coffee, Tea & Espresso Making', '', 0, 1, 0, '', '', ''),
  5536. (9088, 'Cookers, Ovens & Hobs', 9060, 0, NULL, 'home-furniture-diy_appliances_cookers-ovens-hobs', 'Home, Furniture & DIY :: Appliances :: Cookers, Ovens & Hobs', '', 0, 1, 0, '', '', ''),
  5537. (9089, 'Dishwashers', 9060, 0, NULL, 'home-furniture-diy_appliances_dishwashers', 'Home, Furniture & DIY :: Appliances :: Dishwashers', '', 0, 1, 0, '', '', ''),
  5538. (9090, 'Dishwasher Parts & Accessories', 9060, 0, NULL, 'home-furniture-diy_appliances_dishwasher-parts-accessories', 'Home, Furniture & DIY :: Appliances :: Dishwasher Parts & Accessories', '', 0, 1, 0, '', '', ''),
  5539. (9091, 'Fridges & Freezers', 9060, 0, NULL, 'home-furniture-diy_appliances_fridges-freezers', 'Home, Furniture & DIY :: Appliances :: Fridges & Freezers', '', 0, 1, 0, '', '', ''),
  5540. (9092, 'Ironing & Vacuuming', 9060, 0, NULL, 'home-furniture-diy_appliances_ironing-vacuuming', 'Home, Furniture & DIY :: Appliances :: Ironing & Vacuuming', '', 0, 1, 0, '', '', ''),
  5541. (9093, 'Small Kitchen Appliances', 9060, 0, NULL, 'home-furniture-diy_appliances_small-kitchen-appliances', 'Home, Furniture & DIY :: Appliances :: Small Kitchen Appliances', '', 0, 1, 0, '', '', ''),
  5542. (9094, 'Washing Machines & Dryers', 9060, 0, NULL, 'home-furniture-diy_appliances_washing-machines-dryers', 'Home, Furniture & DIY :: Appliances :: Washing Machines & Dryers', '', 0, 1, 0, '', '', ''),
  5543. (9095, 'Other Appliances', 9060, 0, NULL, 'home-furniture-diy_appliances_other-appliances', 'Home, Furniture & DIY :: Appliances :: Other Appliances', '', 0, 1, 0, '', '', ''),
  5544. (9096, 'Bath Accessory Sets', 9061, 0, NULL, 'home-furniture-diy_bath_bath-accessory-sets', 'Home, Furniture & DIY :: Bath :: Bath Accessory Sets', '', 0, 1, 0, '', '', ''),
  5545. (9097, 'Bath Mats', 9061, 0, NULL, 'home-furniture-diy_bath_bath-mats', 'Home, Furniture & DIY :: Bath :: Bath Mats', '', 0, 1, 0, '', '', ''),
  5546. (9098, 'Bath Pillows', 9061, 0, NULL, 'home-furniture-diy_bath_bath-pillows', 'Home, Furniture & DIY :: Bath :: Bath Pillows', '', 0, 1, 0, '', '', ''),
  5547. (9099, 'Baths', 9061, 0, NULL, 'home-furniture-diy_bath_baths', 'Home, Furniture & DIY :: Bath :: Baths', '', 0, 1, 0, '', '', ''),
  5548. (9100, 'Bath Screens', 9061, 0, NULL, 'home-furniture-diy_bath_bath-screens', 'Home, Furniture & DIY :: Bath :: Bath Screens', '', 0, 1, 0, '', '', ''),
  5549. (9101, 'Bathroom Suites', 9061, 0, NULL, 'home-furniture-diy_bath_bathroom-suites', 'Home, Furniture & DIY :: Bath :: Bathroom Suites', '', 0, 1, 0, '', '', ''),
  5550. (9102, 'Caddies & Organisation', 9061, 0, NULL, 'home-furniture-diy_bath_caddies-organisation', 'Home, Furniture & DIY :: Bath :: Caddies & Organisation', '', 0, 1, 0, '', '', ''),
  5551. (9103, 'Jacuzzi/ Spa', 9061, 0, NULL, 'home-furniture-diy_bath_jacuzzi-spa', 'Home, Furniture & DIY :: Bath :: Jacuzzi/ Spa', '', 0, 1, 0, '', '', ''),
  5552. (9104, 'Mirrors', 9061, 0, NULL, 'home-furniture-diy_bath_mirrors', 'Home, Furniture & DIY :: Bath :: Mirrors', '', 0, 1, 0, '', '', ''),
  5553. (9105, 'Non-Slip Mats & Stickers', 9061, 0, NULL, 'home-furniture-diy_bath_non-slip-mats-stickers', 'Home, Furniture & DIY :: Bath :: Non-Slip Mats & Stickers', '', 0, 1, 0, '', '', ''),
  5554. (9106, 'Plumbing', 9061, 0, NULL, 'home-furniture-diy_bath_plumbing', 'Home, Furniture & DIY :: Bath :: Plumbing', '', 0, 1, 0, '', '', ''),
  5555. (9107, 'Rubber Ducks & Bath Toys', 9061, 0, NULL, 'home-furniture-diy_bath_rubber-ducks-bath-toys', 'Home, Furniture & DIY :: Bath :: Rubber Ducks & Bath Toys', '', 0, 1, 0, '', '', ''),
  5556. (9108, 'Scales', 9061, 0, NULL, 'home-furniture-diy_bath_scales', 'Home, Furniture & DIY :: Bath :: Scales', '', 0, 1, 0, '', '', ''),
  5557. (9109, 'Shower Curtain Hooks', 9061, 0, NULL, 'home-furniture-diy_bath_shower-curtain-hooks', 'Home, Furniture & DIY :: Bath :: Shower Curtain Hooks', '', 0, 1, 0, '', '', ''),
  5558. (9110, 'Shower Curtain Rails', 9061, 0, NULL, 'home-furniture-diy_bath_shower-curtain-rails', 'Home, Furniture & DIY :: Bath :: Shower Curtain Rails', '', 0, 1, 0, '', '', ''),
  5559. (9111, 'Shower Curtains', 9061, 0, NULL, 'home-furniture-diy_bath_shower-curtains', 'Home, Furniture & DIY :: Bath :: Shower Curtains', '', 0, 1, 0, '', '', ''),
  5560. (9112, 'Shower Enclosures', 9061, 0, NULL, 'home-furniture-diy_bath_shower-enclosures', 'Home, Furniture & DIY :: Bath :: Shower Enclosures', '', 0, 1, 0, '', '', ''),
  5561. (9113, 'Shower Enclosure & Unit Sets', 9061, 0, NULL, 'home-furniture-diy_bath_shower-enclosure-unit-sets', 'Home, Furniture & DIY :: Bath :: Shower Enclosure & Unit Sets', '', 0, 1, 0, '', '', ''),
  5562. (9114, 'Shower Plumbing', 9061, 0, NULL, 'home-furniture-diy_bath_shower-plumbing', 'Home, Furniture & DIY :: Bath :: Shower Plumbing', '', 0, 1, 0, '', '', ''),
  5563. (9115, 'Sinks', 9061, 0, NULL, 'home-furniture-diy_bath_sinks', 'Home, Furniture & DIY :: Bath :: Sinks', '', 0, 1, 0, '', '', ''),
  5564. (9116, 'Soap Dishes & Dispensers', 9061, 0, NULL, 'home-furniture-diy_bath_soap-dishes-dispensers', 'Home, Furniture & DIY :: Bath :: Soap Dishes & Dispensers', '', 0, 1, 0, '', '', ''),
  5565. (9117, 'Taps', 9061, 0, NULL, 'home-furniture-diy_bath_taps', 'Home, Furniture & DIY :: Bath :: Taps', '', 0, 1, 0, '', '', ''),
  5566. (9118, 'Tile Decals', 9061, 0, NULL, 'home-furniture-diy_bath_tile-decals', 'Home, Furniture & DIY :: Bath :: Tile Decals', '', 0, 1, 0, '', '', ''),
  5567. (9119, 'Tiles', 9061, 0, NULL, 'home-furniture-diy_bath_tiles', 'Home, Furniture & DIY :: Bath :: Tiles', '', 0, 1, 0, '', '', ''),
  5568. (9120, 'Toilet Brushes & Holders', 9061, 0, NULL, 'home-furniture-diy_bath_toilet-brushes-holders', 'Home, Furniture & DIY :: Bath :: Toilet Brushes & Holders', '', 0, 1, 0, '', '', ''),
  5569. (9121, 'Toilet Roll Holders', 9061, 0, NULL, 'home-furniture-diy_bath_toilet-roll-holders', 'Home, Furniture & DIY :: Bath :: Toilet Roll Holders', '', 0, 1, 0, '', '', ''),
  5570. (9122, 'Toilet Seats', 9061, 0, NULL, 'home-furniture-diy_bath_toilet-seats', 'Home, Furniture & DIY :: Bath :: Toilet Seats', '', 0, 1, 0, '', '', ''),
  5571. (9123, 'Toilets & Bidets', 9061, 0, NULL, 'home-furniture-diy_bath_toilets-bidets', 'Home, Furniture & DIY :: Bath :: Toilets & Bidets', '', 0, 1, 0, '', '', ''),
  5572. (9124, 'Toothbrush Holders', 9061, 0, NULL, 'home-furniture-diy_bath_toothbrush-holders', 'Home, Furniture & DIY :: Bath :: Toothbrush Holders', '', 0, 1, 0, '', '', ''),
  5573. (9125, 'Towel Rails', 9061, 0, NULL, 'home-furniture-diy_bath_towel-rails', 'Home, Furniture & DIY :: Bath :: Towel Rails', '', 0, 1, 0, '', '', ''),
  5574. (9126, 'Towels', 9061, 0, NULL, 'home-furniture-diy_bath_towels', 'Home, Furniture & DIY :: Bath :: Towels', '', 0, 1, 0, '', '', ''),
  5575. (9127, 'Other Bath', 9061, 0, NULL, 'home-furniture-diy_bath_other-bath', 'Home, Furniture & DIY :: Bath :: Other Bath', '', 0, 1, 0, '', '', ''),
  5576. (9128, 'Bed Linens & Sets', 9062, 0, NULL, 'home-furniture-diy_bedding_bed-linens-sets', 'Home, Furniture & DIY :: Bedding :: Bed Linens & Sets', '', 0, 1, 0, '', '', ''),
  5577. (9129, 'Duvets', 9062, 0, NULL, 'home-furniture-diy_bedding_duvets', 'Home, Furniture & DIY :: Bedding :: Duvets', '', 0, 1, 0, '', '', ''),
  5578. (9130, 'Pillows', 9062, 0, NULL, 'home-furniture-diy_bedding_pillows', 'Home, Furniture & DIY :: Bedding :: Pillows', '', 0, 1, 0, '', '', ''),
  5579. (9131, 'Blankets', 9062, 0, NULL, 'home-furniture-diy_bedding_blankets', 'Home, Furniture & DIY :: Bedding :: Blankets', '', 0, 1, 0, '', '', ''),
  5580. (9132, 'Canopies & Netting', 9062, 0, NULL, 'home-furniture-diy_bedding_canopies-netting', 'Home, Furniture & DIY :: Bedding :: Canopies & Netting', '', 0, 1, 0, '', '', ''),
  5581. (9133, 'Decorative Quilts & Bedspreads', 9062, 0, NULL, 'home-furniture-diy_bedding_decorative-quilts-bedspreads', 'Home, Furniture & DIY :: Bedding :: Decorative Quilts & Bedspreads', '', 0, 1, 0, '', '', ''),
  5582. (9134, 'Mattress Toppers & Protectors', 9062, 0, NULL, 'home-furniture-diy_bedding_mattress-toppers-protectors', 'Home, Furniture & DIY :: Bedding :: Mattress Toppers & Protectors', '', 0, 1, 0, '', '', ''),
  5583. (9135, 'Valances', 9062, 0, NULL, 'home-furniture-diy_bedding_valances', 'Home, Furniture & DIY :: Bedding :: Valances', '', 0, 1, 0, '', '', ''),
  5584. (9136, 'Other Bedding', 9062, 0, NULL, 'home-furniture-diy_bedding_other-bedding', 'Home, Furniture & DIY :: Bedding :: Other Bedding', '', 0, 1, 0, '', '', ''),
  5585. (9137, 'Cards & Stationery', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_cards-stationery', 'Home, Furniture & DIY :: Celebrations & Occasions :: Cards & Stationery', '', 0, 1, 0, '', '', ''),
  5586. (9138, 'Christmas Decorations & Trees', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_christmas-decorations-trees', 'Home, Furniture & DIY :: Celebrations & Occasions :: Christmas Decorations & Trees', '', 0, 1, 0, '', '', ''),
  5587. (9139, 'Fresh Flowers & Bouquets', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_fresh-flowers-bouquets', 'Home, Furniture & DIY :: Celebrations & Occasions :: Fresh Flowers & Bouquets', '', 0, 1, 0, '', '', ''),
  5588. (9140, 'Gift Wrapping & Supplies', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_gift-wrapping-supplies', 'Home, Furniture & DIY :: Celebrations & Occasions :: Gift Wrapping & Supplies', '', 0, 1, 0, '', '', ''),
  5589. (9141, 'Memorials & Funerals', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_memorials-funerals', 'Home, Furniture & DIY :: Celebrations & Occasions :: Memorials & Funerals', '', 0, 1, 0, '', '', ''),
  5590. (9142, 'Party Supplies', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_party-supplies', 'Home, Furniture & DIY :: Celebrations & Occasions :: Party Supplies', '', 0, 1, 0, '', '', ''),
  5591. (9143, 'Other Celebrations & Occasions', 9063, 0, NULL, 'home-furniture-diy_celebrations-occasions_other-celebrations-occasions', 'Home, Furniture & DIY :: Celebrations & Occasions :: Other Celebrations & Occasions', '', 0, 1, 0, '', '', ''),
  5592. (9144, 'Bathroom', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_bathroom', 'Home, Furniture & DIY :: Children's Home & Furniture :: Bathroom', '', 0, 1, 0, '', '', ''),
  5593. (9145, 'Bedroom', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_bedroom', 'Home, Furniture & DIY :: Children's Home & Furniture :: Bedroom', '', 0, 1, 0, '', '', ''),
  5594. (9146, 'Curtains', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_curtains', 'Home, Furniture & DIY :: Children's Home & Furniture :: Curtains', '', 0, 1, 0, '', '', ''),
  5595. (9147, 'Furniture', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_furniture', 'Home, Furniture & DIY :: Children's Home & Furniture :: Furniture', '', 0, 1, 0, '', '', ''),
  5596. (9148, 'Home Decor', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_home-decor', 'Home, Furniture & DIY :: Children's Home & Furniture :: Home Decor', '', 0, 1, 0, '', '', ''),
  5597. (9149, 'Kitchen & Dining', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_kitchen-dining', 'Home, Furniture & DIY :: Children's Home & Furniture :: Kitchen & Dining', '', 0, 1, 0, '', '', ''),
  5598. (9150, 'Lighting', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_lighting', 'Home, Furniture & DIY :: Children's Home & Furniture :: Lighting', '', 0, 1, 0, '', '', ''),
  5599. (9151, 'Rugs & Carpets', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_rugs-carpets', 'Home, Furniture & DIY :: Children's Home & Furniture :: Rugs & Carpets', '', 0, 1, 0, '', '', ''),
  5600. (9152, 'Other Children's Home', 9064, 0, NULL, 'home-furniture-diy_childrens-home-furniture_other-childrens-home', 'Home, Furniture & DIY :: Children's Home & Furniture :: Other Children's Home', '', 0, 1, 0, '', '', ''),
  5601. (9153, 'Alarm Clocks & Clock Radios', 9065, 0, NULL, 'home-furniture-diy_clocks_alarm-clocks-clock-radios', 'Home, Furniture & DIY :: Clocks :: Alarm Clocks & Clock Radios', '', 0, 1, 0, '', '', ''),
  5602. (9154, 'Cuckoo Clocks', 9065, 0, NULL, 'home-furniture-diy_clocks_cuckoo-clocks', 'Home, Furniture & DIY :: Clocks :: Cuckoo Clocks', '', 0, 1, 0, '', '', ''),
  5603. (9155, 'Desk, Mantel & Carriage Clocks', 9065, 0, NULL, 'home-furniture-diy_clocks_desk-mantel-carriage-clocks', 'Home, Furniture & DIY :: Clocks :: Desk, Mantel & Carriage Clocks', '', 0, 1, 0, '', '', ''),
  5604. (9156, 'Grandfather Clocks', 9065, 0, NULL, 'home-furniture-diy_clocks_grandfather-clocks', 'Home, Furniture & DIY :: Clocks :: Grandfather Clocks', '', 0, 1, 0, '', '', ''),
  5605. (9157, 'Wall Clocks', 9065, 0, NULL, 'home-furniture-diy_clocks_wall-clocks', 'Home, Furniture & DIY :: Clocks :: Wall Clocks', '', 0, 1, 0, '', '', ''),
  5606. (9158, 'Weather Stations', 9065, 0, NULL, 'home-furniture-diy_clocks_weather-stations', 'Home, Furniture & DIY :: Clocks :: Weather Stations', '', 0, 1, 0, '', '', ''),
  5607. (9159, 'Clock Parts', 9065, 0, NULL, 'home-furniture-diy_clocks_clock-parts', 'Home, Furniture & DIY :: Clocks :: Clock Parts', '', 0, 1, 0, '', '', ''),
  5608. (9160, 'Other Clocks', 9065, 0, NULL, 'home-furniture-diy_clocks_other-clocks', 'Home, Furniture & DIY :: Clocks :: Other Clocks', '', 0, 1, 0, '', '', ''),
  5609. (9161, 'Bakeware & Ovenware', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_bakeware-ovenware', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Bakeware & Ovenware', '', 0, 1, 0, '', '', ''),
  5610. (9162, 'Baking Accessories', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_baking-accessories', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Baking Accessories', '', 0, 1, 0, '', '', ''),
  5611. (9163, 'Bar & Wine Accessories', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_bar-wine-accessories', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Bar & Wine Accessories', '', 0, 1, 0, '', '', ''),
  5612. (9164, 'Cutlery', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_cutlery', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Cutlery', '', 0, 1, 0, '', '', ''),
  5613. (9165, 'Food & Kitchen Storage', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_food-kitchen-storage', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Food & Kitchen Storage', '', 0, 1, 0, '', '', ''),
  5614. (9166, 'Food Preparation & Tools', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_food-preparation-tools', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Food Preparation & Tools', '', 0, 1, 0, '', '', ''),
  5615. (9167, 'Glassware', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_glassware', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Glassware', '', 0, 1, 0, '', '', ''),
  5616. (9168, 'Kitchen Textiles', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_kitchen-textiles', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Kitchen Textiles', '', 0, 1, 0, '', '', ''),
  5617. (9169, 'Pots & Pans', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_pots-pans', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Pots & Pans', '', 0, 1, 0, '', '', ''),
  5618. (9170, 'Tableware, Serving & Linen', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_tableware-serving-linen', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Tableware, Serving & Linen', '', 0, 1, 0, '', '', ''),
  5619. (9171, 'Other Cookware, Dining & Bar', 9067, 0, NULL, 'home-furniture-diy_cookware-dining-bar_other-cookware-dining-bar', 'Home, Furniture & DIY :: Cookware, Dining & Bar :: Other Cookware, Dining & Bar', '', 0, 1, 0, '', '', ''),
  5620. (9172, 'Blinds', 9068, 0, NULL, 'home-furniture-diy_curtains-blinds_blinds', 'Home, Furniture & DIY :: Curtains & Blinds :: Blinds', '', 0, 1, 0, '', '', ''),
  5621. (9173, 'Curtains & Pelmets', 9068, 0, NULL, 'home-furniture-diy_curtains-blinds_curtains-pelmets', 'Home, Furniture & DIY :: Curtains & Blinds :: Curtains & Pelmets', '', 0, 1, 0, '', '', ''),
  5622. (9174, 'Curtain & Blind Accessories', 9068, 0, NULL, 'home-furniture-diy_curtains-blinds_curtain-blind-accessories', 'Home, Furniture & DIY :: Curtains & Blinds :: Curtain & Blind Accessories', '', 0, 1, 0, '', '', ''),
  5623. (9175, 'Curtain Poles & Finials', 9068, 0, NULL, 'home-furniture-diy_curtains-blinds_curtain-poles-finials', 'Home, Furniture & DIY :: Curtains & Blinds :: Curtain Poles & Finials', '', 0, 1, 0, '', '', ''),
  5624. (9176, 'Window Film', 9068, 0, NULL, 'home-furniture-diy_curtains-blinds_window-film', 'Home, Furniture & DIY :: Curtains & Blinds :: Window Film', '', 0, 1, 0, '', '', ''),
  5625. (9177, 'Other Curtains & Blinds', 9068, 0, NULL, 'home-furniture-diy_curtains-blinds_other-curtains-blinds', 'Home, Furniture & DIY :: Curtains & Blinds :: Other Curtains & Blinds', '', 0, 1, 0, '', '', ''),
  5626. (9178, 'Adhesives & Glue', 9069, 0, NULL, 'home-furniture-diy_diy-materials_adhesives-glue', 'Home, Furniture & DIY :: DIY Materials :: Adhesives & Glue', '', 0, 1, 0, '', '', ''),
  5627. (9179, 'Bricks & Stone', 9069, 0, NULL, 'home-furniture-diy_diy-materials_bricks-stone', 'Home, Furniture & DIY :: DIY Materials :: Bricks & Stone', '', 0, 1, 0, '', '', ''),
  5628. (9180, 'Cabinets/ Cupboards', 9069, 0, NULL, 'home-furniture-diy_diy-materials_cabinets-cupboards', 'Home, Furniture & DIY :: DIY Materials :: Cabinets/ Cupboards', '', 0, 1, 0, '', '', ''),
  5629. (9181, 'Doors & Door Accessories', 9069, 0, NULL, 'home-furniture-diy_diy-materials_doors-door-accessories', 'Home, Furniture & DIY :: DIY Materials :: Doors & Door Accessories', '', 0, 1, 0, '', '', ''),
  5630. (9182, 'Electrical Fittings', 9069, 0, NULL, 'home-furniture-diy_diy-materials_electrical-fittings', 'Home, Furniture & DIY :: DIY Materials :: Electrical Fittings', '', 0, 1, 0, '', '', ''),
  5631. (9183, 'Flooring', 9069, 0, NULL, 'home-furniture-diy_diy-materials_flooring', 'Home, Furniture & DIY :: DIY Materials :: Flooring', '', 0, 1, 0, '', '', ''),
  5632. (9184, 'Garage Doors', 9069, 0, NULL, 'home-furniture-diy_diy-materials_garage-doors', 'Home, Furniture & DIY :: DIY Materials :: Garage Doors', '', 0, 1, 0, '', '', ''),
  5633. (9185, 'Nails, Fixings & Washers', 9069, 0, NULL, 'home-furniture-diy_diy-materials_nails-fixings-washers', 'Home, Furniture & DIY :: DIY Materials :: Nails, Fixings & Washers', '', 0, 1, 0, '', '', ''),
  5634. (9186, 'Paint & Varnish', 9069, 0, NULL, 'home-furniture-diy_diy-materials_paint-varnish', 'Home, Furniture & DIY :: DIY Materials :: Paint & Varnish', '', 0, 1, 0, '', '', ''),
  5635. (9187, 'Painting Supplies', 9069, 0, NULL, 'home-furniture-diy_diy-materials_painting-supplies', 'Home, Furniture & DIY :: DIY Materials :: Painting Supplies', '', 0, 1, 0, '', '', ''),
  5636. (9188, 'Plumbing', 9069, 0, NULL, 'home-furniture-diy_diy-materials_plumbing', 'Home, Furniture & DIY :: DIY Materials :: Plumbing', '', 0, 1, 0, '', '', ''),
  5637. (9189, 'Roofing', 9069, 0, NULL, 'home-furniture-diy_diy-materials_roofing', 'Home, Furniture & DIY :: DIY Materials :: Roofing', '', 0, 1, 0, '', '', ''),
  5638. (9190, 'Solar Panels', 9069, 0, NULL, 'home-furniture-diy_diy-materials_solar-panels', 'Home, Furniture & DIY :: DIY Materials :: Solar Panels', '', 0, 1, 0, '', '', ''),
  5639. (9191, 'Stairs', 9069, 0, NULL, 'home-furniture-diy_diy-materials_stairs', 'Home, Furniture & DIY :: DIY Materials :: Stairs', '', 0, 1, 0, '', '', ''),
  5640. (9192, 'Wallpaper & Wall Coverings', 9069, 0, NULL, 'home-furniture-diy_diy-materials_wallpaper-wall-coverings', 'Home, Furniture & DIY :: DIY Materials :: Wallpaper & Wall Coverings', '', 0, 1, 0, '', '', ''),
  5641. (9193, 'Windows', 9069, 0, NULL, 'home-furniture-diy_diy-materials_windows', 'Home, Furniture & DIY :: DIY Materials :: Windows', '', 0, 1, 0, '', '', ''),
  5642. (9194, 'Wood/ Timber', 9069, 0, NULL, 'home-furniture-diy_diy-materials_wood-timber', 'Home, Furniture & DIY :: DIY Materials :: Wood/ Timber', '', 0, 1, 0, '', '', ''),
  5643. (9195, 'Instructional Books', 9069, 0, NULL, 'home-furniture-diy_diy-materials_instructional-books', 'Home, Furniture & DIY :: DIY Materials :: Instructional Books', '', 0, 1, 0, '', '', ''),
  5644. (9196, 'Other DIY Materials', 9069, 0, NULL, 'home-furniture-diy_diy-materials_other-diy-materials', 'Home, Furniture & DIY :: DIY Materials :: Other DIY Materials', '', 0, 1, 0, '', '', ''),
  5645. (9197, 'Hand Tools', 9070, 0, NULL, 'home-furniture-diy_diy-tools_hand-tools', 'Home, Furniture & DIY :: DIY Tools :: Hand Tools', '', 0, 1, 0, '', '', ''),
  5646. (9198, 'Ladders', 9070, 0, NULL, 'home-furniture-diy_diy-tools_ladders', 'Home, Furniture & DIY :: DIY Tools :: Ladders', '', 0, 1, 0, '', '', ''),
  5647. (9199, 'Measuring & Layout Tools', 9070, 0, NULL, 'home-furniture-diy_diy-tools_measuring-layout-tools', 'Home, Furniture & DIY :: DIY Tools :: Measuring & Layout Tools', '', 0, 1, 0, '', '', ''),
  5648. (9200, 'Power Tools', 9070, 0, NULL, 'home-furniture-diy_diy-tools_power-tools', 'Home, Furniture & DIY :: DIY Tools :: Power Tools', '', 0, 1, 0, '', '', ''),
  5649. (9201, 'Tool Boxes/ Storage', 9070, 0, NULL, 'home-furniture-diy_diy-tools_tool-boxes-storage', 'Home, Furniture & DIY :: DIY Tools :: Tool Boxes/ Storage', '', 0, 1, 0, '', '', ''),
  5650. (9202, 'Torches', 9070, 0, NULL, 'home-furniture-diy_diy-tools_torches', 'Home, Furniture & DIY :: DIY Tools :: Torches', '', 0, 1, 0, '', '', ''),
  5651. (9203, 'Other DIY Tools', 9070, 0, NULL, 'home-furniture-diy_diy-tools_other-diy-tools', 'Home, Furniture & DIY :: DIY Tools :: Other DIY Tools', '', 0, 1, 0, '', '', ''),
  5652. (9204, 'Decorative Logs & Stones', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_decorative-logs-stones', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Decorative Logs & Stones', '', 0, 1, 0, '', '', ''),
  5653. (9205, 'Fireplaces', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_fireplaces', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Fireplaces', '', 0, 1, 0, '', '', ''),
  5654. (9206, 'Grates & Andirons', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_grates-andirons', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Grates & Andirons', '', 0, 1, 0, '', '', ''),
  5655. (9207, 'Hearths & Back Panels', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_hearths-back-panels', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Hearths & Back Panels', '', 0, 1, 0, '', '', ''),
  5656. (9208, 'Heating Stoves', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_heating-stoves', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Heating Stoves', '', 0, 1, 0, '', '', ''),
  5657. (9209, 'Log Baskets & Holders', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_log-baskets-holders', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Log Baskets & Holders', '', 0, 1, 0, '', '', ''),
  5658. (9210, 'Mantelpieces & Surrounds', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_mantelpieces-surrounds', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Mantelpieces & Surrounds', '', 0, 1, 0, '', '', ''),
  5659. (9211, 'Pokers, Tools & Sets', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_pokers-tools-sets', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Pokers, Tools & Sets', '', 0, 1, 0, '', '', ''),
  5660. (9212, 'Replacement Parts', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_replacement-parts', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Replacement Parts', '', 0, 1, 0, '', '', ''),
  5661. (9213, 'Screens', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_screens', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Screens', '', 0, 1, 0, '', '', ''),
  5662. (9214, 'Stove & Fireplace Fuel', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_stove-fireplace-fuel', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Stove & Fireplace Fuel', '', 0, 1, 0, '', '', ''),
  5663. (9215, 'Other Fireplace Accessories', 9071, 0, NULL, 'home-furniture-diy_fireplaces-accessories_other-fireplace-accessories', 'Home, Furniture & DIY :: Fireplaces & Accessories :: Other Fireplace Accessories', '', 0, 1, 0, '', '', ''),
  5664. (9216, 'Baking Ingredients', 9072, 0, NULL, 'home-furniture-diy_food-drink_baking-ingredients', 'Home, Furniture & DIY :: Food & Drink :: Baking Ingredients', '', 0, 1, 0, '', '', ''),
  5665. (9217, 'Beer & Wine Making', 9072, 0, NULL, 'home-furniture-diy_food-drink_beer-wine-making', 'Home, Furniture & DIY :: Food & Drink :: Beer & Wine Making', '', 0, 1, 0, '', '', ''),
  5666. (9218, 'Biscuits/ Cookies', 9072, 0, NULL, 'home-furniture-diy_food-drink_biscuits-cookies', 'Home, Furniture & DIY :: Food & Drink :: Biscuits/ Cookies', '', 0, 1, 0, '', '', ''),
  5667. (9219, 'Bread & Bakery', 9072, 0, NULL, 'home-furniture-diy_food-drink_bread-bakery', 'Home, Furniture & DIY :: Food & Drink :: Bread & Bakery', '', 0, 1, 0, '', '', ''),
  5668. (9220, 'Cake & Bread Mixes', 9072, 0, NULL, 'home-furniture-diy_food-drink_cake-bread-mixes', 'Home, Furniture & DIY :: Food & Drink :: Cake & Bread Mixes', '', 0, 1, 0, '', '', ''),
  5669. (9221, 'Cereals & Breakfast Foods', 9072, 0, NULL, 'home-furniture-diy_food-drink_cereals-breakfast-foods', 'Home, Furniture & DIY :: Food & Drink :: Cereals & Breakfast Foods', '', 0, 1, 0, '', '', ''),
  5670. (9222, 'Cheese', 9072, 0, NULL, 'home-furniture-diy_food-drink_cheese', 'Home, Furniture & DIY :: Food & Drink :: Cheese', '', 0, 1, 0, '', '', ''),
  5671. (9223, 'Crackers', 9072, 0, NULL, 'home-furniture-diy_food-drink_crackers', 'Home, Furniture & DIY :: Food & Drink :: Crackers', '', 0, 1, 0, '', '', ''),
  5672. (9224, 'Coffee Beans, Grounds & Pods', 9072, 0, NULL, 'home-furniture-diy_food-drink_coffee-beans-grounds-pods', 'Home, Furniture & DIY :: Food & Drink :: Coffee Beans, Grounds & Pods', '', 0, 1, 0, '', '', ''),
  5673. (9225, 'Coffee & Soda Syrups', 9072, 0, NULL, 'home-furniture-diy_food-drink_coffee-soda-syrups', 'Home, Furniture & DIY :: Food & Drink :: Coffee & Soda Syrups', '', 0, 1, 0, '', '', ''),
  5674. (9226, 'Desserts', 9072, 0, NULL, 'home-furniture-diy_food-drink_desserts', 'Home, Furniture & DIY :: Food & Drink :: Desserts', '', 0, 1, 0, '', '', ''),
  5675. (9227, 'Diet Food', 9072, 0, NULL, 'home-furniture-diy_food-drink_diet-food', 'Home, Furniture & DIY :: Food & Drink :: Diet Food', '', 0, 1, 0, '', '', ''),
  5676. (9228, 'Drink Mixes', 9072, 0, NULL, 'home-furniture-diy_food-drink_drink-mixes', 'Home, Furniture & DIY :: Food & Drink :: Drink Mixes', '', 0, 1, 0, '', '', ''),
  5677. (9229, 'Fruit', 9072, 0, NULL, 'home-furniture-diy_food-drink_fruit', 'Home, Furniture & DIY :: Food & Drink :: Fruit', '', 0, 1, 0, '', '', ''),
  5678. (9230, 'Grains & Pasta', 9072, 0, NULL, 'home-furniture-diy_food-drink_grains-pasta', 'Home, Furniture & DIY :: Food & Drink :: Grains & Pasta', '', 0, 1, 0, '', '', ''),
  5679. (9231, 'Honey/ Syrup', 9072, 0, NULL, 'home-furniture-diy_food-drink_honey-syrup', 'Home, Furniture & DIY :: Food & Drink :: Honey/ Syrup', '', 0, 1, 0, '', '', ''),
  5680. (9232, 'Jams/ Preserves', 9072, 0, NULL, 'home-furniture-diy_food-drink_jams-preserves', 'Home, Furniture & DIY :: Food & Drink :: Jams/ Preserves', '', 0, 1, 0, '', '', ''),
  5681. (9233, 'Meat/ Poultry/ Seafood', 9072, 0, NULL, 'home-furniture-diy_food-drink_meat-poultry-seafood', 'Home, Furniture & DIY :: Food & Drink :: Meat/ Poultry/ Seafood', '', 0, 1, 0, '', '', ''),
  5682. (9234, 'Milk, Cream & Substitutes', 9072, 0, NULL, 'home-furniture-diy_food-drink_milk-cream-substitutes', 'Home, Furniture & DIY :: Food & Drink :: Milk, Cream & Substitutes', '', 0, 1, 0, '', '', ''),
  5683. (9235, 'Nuts & Seeds', 9072, 0, NULL, 'home-furniture-diy_food-drink_nuts-seeds', 'Home, Furniture & DIY :: Food & Drink :: Nuts & Seeds', '', 0, 1, 0, '', '', ''),
  5684. (9236, 'Oils/ Condiments/ Sauces', 9072, 0, NULL, 'home-furniture-diy_food-drink_oils-condiments-sauces', 'Home, Furniture & DIY :: Food & Drink :: Oils/ Condiments/ Sauces', '', 0, 1, 0, '', '', ''),
  5685. (9237, 'Picnics & Hampers', 9072, 0, NULL, 'home-furniture-diy_food-drink_picnics-hampers', 'Home, Furniture & DIY :: Food & Drink :: Picnics & Hampers', '', 0, 1, 0, '', '', ''),
  5686. (9238, 'Recipes', 9072, 0, NULL, 'home-furniture-diy_food-drink_recipes', 'Home, Furniture & DIY :: Food & Drink :: Recipes', '', 0, 1, 0, '', '', ''),
  5687. (9239, 'Snack Foods', 9072, 0, NULL, 'home-furniture-diy_food-drink_snack-foods', 'Home, Furniture & DIY :: Food & Drink :: Snack Foods', '', 0, 1, 0, '', '', ''),
  5688. (9240, 'Soft Drinks', 9072, 0, NULL, 'home-furniture-diy_food-drink_soft-drinks', 'Home, Furniture & DIY :: Food & Drink :: Soft Drinks', '', 0, 1, 0, '', '', ''),
  5689. (9241, 'Soups/ Stews', 9072, 0, NULL, 'home-furniture-diy_food-drink_soups-stews', 'Home, Furniture & DIY :: Food & Drink :: Soups/ Stews', '', 0, 1, 0, '', '', ''),
  5690. (9242, 'Spices & Seasonings', 9072, 0, NULL, 'home-furniture-diy_food-drink_spices-seasonings', 'Home, Furniture & DIY :: Food & Drink :: Spices & Seasonings', '', 0, 1, 0, '', '', ''),
  5691. (9243, 'Sweets & Chocolate', 9072, 0, NULL, 'home-furniture-diy_food-drink_sweets-chocolate', 'Home, Furniture & DIY :: Food & Drink :: Sweets & Chocolate', '', 0, 1, 0, '', '', ''),
  5692. (9244, 'Tea/ Tea Making', 9072, 0, NULL, 'home-furniture-diy_food-drink_tea-tea-making', 'Home, Furniture & DIY :: Food & Drink :: Tea/ Tea Making', '', 0, 1, 0, '', '', ''),
  5693. (9245, 'Vegetables', 9072, 0, NULL, 'home-furniture-diy_food-drink_vegetables', 'Home, Furniture & DIY :: Food & Drink :: Vegetables', '', 0, 1, 0, '', '', ''),
  5694. (9246, 'Water', 9072, 0, NULL, 'home-furniture-diy_food-drink_water', 'Home, Furniture & DIY :: Food & Drink :: Water', '', 0, 1, 0, '', '', ''),
  5695. (9247, 'Other Food & Drink', 9072, 0, NULL, 'home-furniture-diy_food-drink_other-food-drink', 'Home, Furniture & DIY :: Food & Drink :: Other Food & Drink', '', 0, 1, 0, '', '', ''),
  5696. (9248, 'Bean Bags & Inflatables', 9073, 0, NULL, 'home-furniture-diy_furniture_bean-bags-inflatables', 'Home, Furniture & DIY :: Furniture :: Bean Bags & Inflatables', '', 0, 1, 0, '', '', ''),
  5697. (9249, 'Beds & Mattresses', 9073, 0, NULL, 'home-furniture-diy_furniture_beds-mattresses', 'Home, Furniture & DIY :: Furniture :: Beds & Mattresses', '', 0, 1, 0, '', '', ''),
  5698. (9250, 'Bedroom Furniture Sets', 9073, 0, NULL, 'home-furniture-diy_furniture_bedroom-furniture-sets', 'Home, Furniture & DIY :: Furniture :: Bedroom Furniture Sets', '', 0, 1, 0, '', '', ''),
  5699. (9251, 'Bedside Tables & Cabinets', 9073, 0, NULL, 'home-furniture-diy_furniture_bedside-tables-cabinets', 'Home, Furniture & DIY :: Furniture :: Bedside Tables & Cabinets', '', 0, 1, 0, '', '', ''),
  5700. (9252, 'Benches', 9073, 0, NULL, 'home-furniture-diy_furniture_benches', 'Home, Furniture & DIY :: Furniture :: Benches', '', 0, 1, 0, '', '', ''),
  5701. (9253, 'Bookcases, Shelving & Storage', 9073, 0, NULL, 'home-furniture-diy_furniture_bookcases-shelving-storage', 'Home, Furniture & DIY :: Furniture :: Bookcases, Shelving & Storage', '', 0, 1, 0, '', '', ''),
  5702. (9254, 'Cabinets & Cupboards', 9073, 0, NULL, 'home-furniture-diy_furniture_cabinets-cupboards', 'Home, Furniture & DIY :: Furniture :: Cabinets & Cupboards', '', 0, 1, 0, '', '', ''),
  5703. (9255, 'Chairs', 9073, 0, NULL, 'home-furniture-diy_furniture_chairs', 'Home, Furniture & DIY :: Furniture :: Chairs', '', 0, 1, 0, '', '', ''),
  5704. (9256, 'Chests of Drawers', 9073, 0, NULL, 'home-furniture-diy_furniture_chests-of-drawers', 'Home, Furniture & DIY :: Furniture :: Chests of Drawers', '', 0, 1, 0, '', '', ''),
  5705. (9257, 'Desks & Computer Furniture', 9073, 0, NULL, 'home-furniture-diy_furniture_desks-computer-furniture', 'Home, Furniture & DIY :: Furniture :: Desks & Computer Furniture', '', 0, 1, 0, '', '', ''),
  5706. (9258, 'Dressing Tables', 9073, 0, NULL, 'home-furniture-diy_furniture_dressing-tables', 'Home, Furniture & DIY :: Furniture :: Dressing Tables', '', 0, 1, 0, '', '', ''),
  5707. (9259, 'Kitchen Islands & Carts', 9073, 0, NULL, 'home-furniture-diy_furniture_kitchen-islands-carts', 'Home, Furniture & DIY :: Furniture :: Kitchen Islands & Carts', '', 0, 1, 0, '', '', ''),
  5708. (9260, 'Ottomans & Footstools', 9073, 0, NULL, 'home-furniture-diy_furniture_ottomans-footstools', 'Home, Furniture & DIY :: Furniture :: Ottomans & Footstools', '', 0, 1, 0, '', '', ''),
  5709. (9261, 'Sideboards, Buffets & Trolleys', 9073, 0, NULL, 'home-furniture-diy_furniture_sideboards-buffets-trolleys', 'Home, Furniture & DIY :: Furniture :: Sideboards, Buffets & Trolleys', '', 0, 1, 0, '', '', ''),
  5710. (9262, 'Sofas, Armchairs & Suites', 9073, 0, NULL, 'home-furniture-diy_furniture_sofas-armchairs-suites', 'Home, Furniture & DIY :: Furniture :: Sofas, Armchairs & Suites', '', 0, 1, 0, '', '', ''),
  5711. (9263, 'Stools & Breakfast Bars', 9073, 0, NULL, 'home-furniture-diy_furniture_stools-breakfast-bars', 'Home, Furniture & DIY :: Furniture :: Stools & Breakfast Bars', '', 0, 1, 0, '', '', ''),
  5712. (9264, 'Tables', 9073, 0, NULL, 'home-furniture-diy_furniture_tables', 'Home, Furniture & DIY :: Furniture :: Tables', '', 0, 1, 0, '', '', ''),
  5713. (9265, 'Table & Chair Sets', 9073, 0, NULL, 'home-furniture-diy_furniture_table-chair-sets', 'Home, Furniture & DIY :: Furniture :: Table & Chair Sets', '', 0, 1, 0, '', '', ''),
  5714. (9266, 'Trunks & Chests', 9073, 0, NULL, 'home-furniture-diy_furniture_trunks-chests', 'Home, Furniture & DIY :: Furniture :: Trunks & Chests', '', 0, 1, 0, '', '', ''),
  5715. (9267, 'TV & Entertainment Stands', 9073, 0, NULL, 'home-furniture-diy_furniture_tv-entertainment-stands', 'Home, Furniture & DIY :: Furniture :: TV & Entertainment Stands', '', 0, 1, 0, '', '', ''),
  5716. (9268, 'Wardrobes', 9073, 0, NULL, 'home-furniture-diy_furniture_wardrobes', 'Home, Furniture & DIY :: Furniture :: Wardrobes', '', 0, 1, 0, '', '', ''),
  5717. (9269, 'Other Furniture', 9073, 0, NULL, 'home-furniture-diy_furniture_other-furniture', 'Home, Furniture & DIY :: Furniture :: Other Furniture', '', 0, 1, 0, '', '', ''),
  5718. (9270, 'Air Conditioning', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_air-conditioning', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Air Conditioning', '', 0, 1, 0, '', '', ''),
  5719. (9271, 'Air Filters', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_air-filters', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Air Filters', '', 0, 1, 0, '', '', ''),
  5720. (9272, 'Air Purifiers', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_air-purifiers', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Air Purifiers', '', 0, 1, 0, '', '', ''),
  5721. (9273, 'Ceiling Fans', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_ceiling-fans', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Ceiling Fans', '', 0, 1, 0, '', '', ''),
  5722. (9274, 'Dehumidifiers', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_dehumidifiers', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Dehumidifiers', '', 0, 1, 0, '', '', ''),
  5723. (9275, 'Extractor Fans', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_extractor-fans', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Extractor Fans', '', 0, 1, 0, '', '', ''),
  5724. (9276, 'Heaters', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_heaters', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Heaters', '', 0, 1, 0, '', '', ''),
  5725. (9277, 'Humidifiers', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_humidifiers', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Humidifiers', '', 0, 1, 0, '', '', ''),
  5726. (9278, 'Portable Fans', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_portable-fans', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Portable Fans', '', 0, 1, 0, '', '', ''),
  5727. (9279, 'Portable Heaters', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_portable-heaters', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Portable Heaters', '', 0, 1, 0, '', '', ''),
  5728. (9280, 'Radiators', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_radiators', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Radiators', '', 0, 1, 0, '', '', ''),
  5729. (9281, 'Radiator Covers', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_radiator-covers', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Radiator Covers', '', 0, 1, 0, '', '', ''),
  5730. (9282, 'Thermostats', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_thermostats', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Thermostats', '', 0, 1, 0, '', '', ''),
  5731. (9283, 'Water Heaters/ Boilers', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_water-heaters-boilers', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Water Heaters/ Boilers', '', 0, 1, 0, '', '', ''),
  5732. (9284, 'Other Heating/ Cooling/ Air', 9074, 0, NULL, 'home-furniture-diy_heating-cooling-air_other-heating-cooling-air', 'Home, Furniture & DIY :: Heating/ Cooling/ Air :: Other Heating/ Cooling/ Air', '', 0, 1, 0, '', '', ''),
  5733. (9285, 'Baskets', 9075, 0, NULL, 'home-furniture-diy_home-decor_baskets', 'Home, Furniture & DIY :: Home Decor :: Baskets', '', 0, 1, 0, '', '', ''),
  5734. (9286, 'Bookends', 9075, 0, NULL, 'home-furniture-diy_home-decor_bookends', 'Home, Furniture & DIY :: Home Decor :: Bookends', '', 0, 1, 0, '', '', ''),
  5735. (9287, 'Bottles', 9075, 0, NULL, 'home-furniture-diy_home-decor_bottles', 'Home, Furniture & DIY :: Home Decor :: Bottles', '', 0, 1, 0, '', '', ''),
  5736. (9288, 'Boxes, Jars & Tins', 9075, 0, NULL, 'home-furniture-diy_home-decor_boxes-jars-tins', 'Home, Furniture & DIY :: Home Decor :: Boxes, Jars & Tins', '', 0, 1, 0, '', '', ''),
  5737. (9289, 'Candle & Tea Light Holders', 9075, 0, NULL, 'home-furniture-diy_home-decor_candle-tea-light-holders', 'Home, Furniture & DIY :: Home Decor :: Candle & Tea Light Holders', '', 0, 1, 0, '', '', ''),
  5738. (9290, 'Candles & Tea Lights', 9075, 0, NULL, 'home-furniture-diy_home-decor_candles-tea-lights', 'Home, Furniture & DIY :: Home Decor :: Candles & Tea Lights', '', 0, 1, 0, '', '', ''),
  5739. (9291, 'Ceiling Roses', 9075, 0, NULL, 'home-furniture-diy_home-decor_ceiling-roses', 'Home, Furniture & DIY :: Home Decor :: Ceiling Roses', '', 0, 1, 0, '', '', ''),
  5740. (9292, 'Cushions', 9075, 0, NULL, 'home-furniture-diy_home-decor_cushions', 'Home, Furniture & DIY :: Home Decor :: Cushions', '', 0, 1, 0, '', '', ''),
  5741. (9293, 'Decorative Ornaments & Figures', 9075, 0, NULL, 'home-furniture-diy_home-decor_decorative-ornaments-figures', 'Home, Furniture & DIY :: Home Decor :: Decorative Ornaments & Figures', '', 0, 1, 0, '', '', ''),
  5742. (9294, 'Display Stands', 9075, 0, NULL, 'home-furniture-diy_home-decor_display-stands', 'Home, Furniture & DIY :: Home Decor :: Display Stands', '', 0, 1, 0, '', '', ''),
  5743. (9295, 'Door Accessories/ Furniture', 9075, 0, NULL, 'home-furniture-diy_home-decor_door-accessories-furniture', 'Home, Furniture & DIY :: Home Decor :: Door Accessories/ Furniture', '', 0, 1, 0, '', '', ''),
  5744. (9296, 'Dried & Artificial Flowers', 9075, 0, NULL, 'home-furniture-diy_home-decor_dried-artificial-flowers', 'Home, Furniture & DIY :: Home Decor :: Dried & Artificial Flowers', '', 0, 1, 0, '', '', ''),
  5745. (9297, 'Fountains', 9075, 0, NULL, 'home-furniture-diy_home-decor_fountains', 'Home, Furniture & DIY :: Home Decor :: Fountains', '', 0, 1, 0, '', '', ''),
  5746. (9298, 'Fridge Magnets', 9075, 0, NULL, 'home-furniture-diy_home-decor_fridge-magnets', 'Home, Furniture & DIY :: Home Decor :: Fridge Magnets', '', 0, 1, 0, '', '', ''),
  5747. (9299, 'Fruit', 9075, 0, NULL, 'home-furniture-diy_home-decor_fruit', 'Home, Furniture & DIY :: Home Decor :: Fruit', '', 0, 1, 0, '', '', ''),
  5748. (9300, 'Home Fragrances', 9075, 0, NULL, 'home-furniture-diy_home-decor_home-fragrances', 'Home, Furniture & DIY :: Home Decor :: Home Fragrances', '', 0, 1, 0, '', '', ''),
  5749. (9301, 'Letter Racks', 9075, 0, NULL, 'home-furniture-diy_home-decor_letter-racks', 'Home, Furniture & DIY :: Home Decor :: Letter Racks', '', 0, 1, 0, '', '', ''),
  5750. (9302, 'Masks', 9075, 0, NULL, 'home-furniture-diy_home-decor_masks', 'Home, Furniture & DIY :: Home Decor :: Masks', '', 0, 1, 0, '', '', ''),
  5751. (9303, 'Message Boards', 9075, 0, NULL, 'home-furniture-diy_home-decor_message-boards', 'Home, Furniture & DIY :: Home Decor :: Message Boards', '', 0, 1, 0, '', '', ''),
  5752. (9304, 'Mirrrors', 9075, 0, NULL, 'home-furniture-diy_home-decor_mirrrors', 'Home, Furniture & DIY :: Home Decor :: Mirrrors', '', 0, 1, 0, '', '', ''),
  5753. (9305, 'Photo & Picture Frames', 9075, 0, NULL, 'home-furniture-diy_home-decor_photo-picture-frames', 'Home, Furniture & DIY :: Home Decor :: Photo & Picture Frames', '', 0, 1, 0, '', '', ''),
  5754. (9306, 'Plaques & Signs', 9075, 0, NULL, 'home-furniture-diy_home-decor_plaques-signs', 'Home, Furniture & DIY :: Home Decor :: Plaques & Signs', '', 0, 1, 0, '', '', ''),
  5755. (9307, 'Plates & Bowls', 9075, 0, NULL, 'home-furniture-diy_home-decor_plates-bowls', 'Home, Furniture & DIY :: Home Decor :: Plates & Bowls', '', 0, 1, 0, '', '', ''),
  5756. (9308, 'Sculptures', 9075, 0, NULL, 'home-furniture-diy_home-decor_sculptures', 'Home, Furniture & DIY :: Home Decor :: Sculptures', '', 0, 1, 0, '', '', ''),
  5757. (9309, 'Screens & Room Dividers', 9075, 0, NULL, 'home-furniture-diy_home-decor_screens-room-dividers', 'Home, Furniture & DIY :: Home Decor :: Screens & Room Dividers', '', 0, 1, 0, '', '', ''),
  5758. (9310, 'Throws', 9075, 0, NULL, 'home-furniture-diy_home-decor_throws', 'Home, Furniture & DIY :: Home Decor :: Throws', '', 0, 1, 0, '', '', ''),
  5759. (9311, 'Vases', 9075, 0, NULL, 'home-furniture-diy_home-decor_vases', 'Home, Furniture & DIY :: Home Decor :: Vases', '', 0, 1, 0, '', '', ''),
  5760. (9312, 'Wall Decals & Stickers', 9075, 0, NULL, 'home-furniture-diy_home-decor_wall-decals-stickers', 'Home, Furniture & DIY :: Home Decor :: Wall Decals & Stickers', '', 0, 1, 0, '', '', ''),
  5761. (9313, 'Wall Hangings', 9075, 0, NULL, 'home-furniture-diy_home-decor_wall-hangings', 'Home, Furniture & DIY :: Home Decor :: Wall Hangings', '', 0, 1, 0, '', '', ''),
  5762. (9314, 'Windchimes & Mobiles', 9075, 0, NULL, 'home-furniture-diy_home-decor_windchimes-mobiles', 'Home, Furniture & DIY :: Home Decor :: Windchimes & Mobiles', '', 0, 1, 0, '', '', ''),
  5763. (9315, 'Other Home Decor', 9075, 0, NULL, 'home-furniture-diy_home-decor_other-home-decor', 'Home, Furniture & DIY :: Home Decor :: Other Home Decor', '', 0, 1, 0, '', '', ''),
  5764. (9316, 'Airers/ Driers/ Clothes Horses', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_airers-driers-clothes-horses', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Airers/ Driers/ Clothes Horses', '', 0, 1, 0, '', '', ''),
  5765. (9317, 'Air Freshener', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_air-freshener', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Air Freshener', '', 0, 1, 0, '', '', ''),
  5766. (9318, 'Carpet Shampoo', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_carpet-shampoo', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Carpet Shampoo', '', 0, 1, 0, '', '', ''),
  5767. (9319, 'Cleaning Products & Supplies', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_cleaning-products-supplies', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Cleaning Products & Supplies', '', 0, 1, 0, '', '', ''),
  5768. (9320, 'Clothing & Shoe Care', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_clothing-shoe-care', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Clothing & Shoe Care', '', 0, 1, 0, '', '', ''),
  5769. (9321, 'Drawer Liners', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_drawer-liners', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Drawer Liners', '', 0, 1, 0, '', '', ''),
  5770. (9322, 'Ironing Boards & Covers', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_ironing-boards-covers', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Ironing Boards & Covers', '', 0, 1, 0, '', '', ''),
  5771. (9323, 'Laundry Bags', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_laundry-bags', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Laundry Bags', '', 0, 1, 0, '', '', ''),
  5772. (9324, 'Laundry Baskets/ Bins', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_laundry-baskets-bins', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Laundry Baskets/ Bins', '', 0, 1, 0, '', '', ''),
  5773. (9325, 'Laundry Detergents & Supplies', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_laundry-detergents-supplies', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Laundry Detergents & Supplies', '', 0, 1, 0, '', '', ''),
  5774. (9326, 'Mops, Brooms & Floor Sweepers', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_mops-brooms-floor-sweepers', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Mops, Brooms & Floor Sweepers', '', 0, 1, 0, '', '', ''),
  5775. (9327, 'Paper Products', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_paper-products', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Paper Products', '', 0, 1, 0, '', '', ''),
  5776. (9328, 'Peg Bags', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_peg-bags', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Peg Bags', '', 0, 1, 0, '', '', ''),
  5777. (9329, 'Pest Control', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_pest-control', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Pest Control', '', 0, 1, 0, '', '', ''),
  5778. (9330, 'Washing Up Bowls & Drainers', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_washing-up-bowls-drainers', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Washing Up Bowls & Drainers', '', 0, 1, 0, '', '', ''),
  5779. (9331, 'Waste Bins & Dustbins', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_waste-bins-dustbins', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Waste Bins & Dustbins', '', 0, 1, 0, '', '', ''),
  5780. (9332, 'Window Cleaning', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_window-cleaning', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Window Cleaning', '', 0, 1, 0, '', '', ''),
  5781. (9333, 'Other Cleaning & Laundry', 9076, 0, NULL, 'home-furniture-diy_household-laundry-supplies_other-cleaning-laundry', 'Home, Furniture & DIY :: Household & Laundry Supplies :: Other Cleaning & Laundry', '', 0, 1, 0, '', '', ''),
  5782. (9334, 'Extractor Fans', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_extractor-fans', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Extractor Fans', '', 0, 1, 0, '', '', ''),
  5783. (9335, 'Kitchen Sinks with Taps', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_kitchen-sinks-with-taps', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Kitchen Sinks with Taps', '', 0, 1, 0, '', '', ''),
  5784. (9336, 'Kitchen Sinks without Taps', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_kitchen-sinks-without-taps', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Kitchen Sinks without Taps', '', 0, 1, 0, '', '', ''),
  5785. (9337, 'Kitchen Taps', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_kitchen-taps', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Kitchen Taps', '', 0, 1, 0, '', '', ''),
  5786. (9338, 'Kitchen Units & Sets', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_kitchen-units-sets', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Kitchen Units & Sets', '', 0, 1, 0, '', '', ''),
  5787. (9339, 'Waste Disposal Units', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_waste-disposal-units', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Waste Disposal Units', '', 0, 1, 0, '', '', ''),
  5788. (9340, 'Other Kitchen Plumbing', 9077, 0, NULL, 'home-furniture-diy_kitchen-plumbing-fittings_other-kitchen-plumbing', 'Home, Furniture & DIY :: Kitchen Plumbing & Fittings :: Other Kitchen Plumbing', '', 0, 1, 0, '', '', ''),
  5789. (9341, 'Ceiling Lights & Chandeliers', 9078, 0, NULL, 'home-furniture-diy_lighting_ceiling-lights-chandeliers', 'Home, Furniture & DIY :: Lighting :: Ceiling Lights & Chandeliers', '', 0, 1, 0, '', '', ''),
  5790. (9342, 'Fairy Lights', 9078, 0, NULL, 'home-furniture-diy_lighting_fairy-lights', 'Home, Furniture & DIY :: Lighting :: Fairy Lights', '', 0, 1, 0, '', '', ''),
  5791. (9343, 'Lamps', 9078, 0, NULL, 'home-furniture-diy_lighting_lamps', 'Home, Furniture & DIY :: Lighting :: Lamps', '', 0, 1, 0, '', '', ''),
  5792. (9344, 'Lampshades & Lightshades', 9078, 0, NULL, 'home-furniture-diy_lighting_lampshades-lightshades', 'Home, Furniture & DIY :: Lighting :: Lampshades & Lightshades', '', 0, 1, 0, '', '', ''),
  5793. (9345, 'Light Bulbs', 9078, 0, NULL, 'home-furniture-diy_lighting_light-bulbs', 'Home, Furniture & DIY :: Lighting :: Light Bulbs', '', 0, 1, 0, '', '', ''),
  5794. (9346, 'Light Fittings', 9078, 0, NULL, 'home-furniture-diy_lighting_light-fittings', 'Home, Furniture & DIY :: Lighting :: Light Fittings', '', 0, 1, 0, '', '', ''),
  5795. (9347, 'Night Lights', 9078, 0, NULL, 'home-furniture-diy_lighting_night-lights', 'Home, Furniture & DIY :: Lighting :: Night Lights', '', 0, 1, 0, '', '', ''),
  5796. (9348, 'Wall Lights', 9078, 0, NULL, 'home-furniture-diy_lighting_wall-lights', 'Home, Furniture & DIY :: Lighting :: Wall Lights', '', 0, 1, 0, '', '', ''),
  5797. (9349, 'Lighting Parts & Accessories', 9078, 0, NULL, 'home-furniture-diy_lighting_lighting-parts-accessories', 'Home, Furniture & DIY :: Lighting :: Lighting Parts & Accessories', '', 0, 1, 0, '', '', ''),
  5798. (9350, 'Other Lighting', 9078, 0, NULL, 'home-furniture-diy_lighting_other-lighting', 'Home, Furniture & DIY :: Lighting :: Other Lighting', '', 0, 1, 0, '', '', ''),
  5799. (9351, 'Luggage', 9079, 0, NULL, 'home-furniture-diy_luggage-travel-accessories_luggage', 'Home, Furniture & DIY :: Luggage & Travel Accessories :: Luggage', '', 0, 1, 0, '', '', ''),
  5800. (9352, 'Travel Accessories', 9079, 0, NULL, 'home-furniture-diy_luggage-travel-accessories_travel-accessories', 'Home, Furniture & DIY :: Luggage & Travel Accessories :: Travel Accessories', '', 0, 1, 0, '', '', ''),
  5801. (9353, 'Astrology', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_astrology', 'Home, Furniture & DIY :: Metaphysical & New Age :: Astrology', '', 0, 1, 0, '', '', ''),
  5802. (9354, 'Candles', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_candles', 'Home, Furniture & DIY :: Metaphysical & New Age :: Candles', '', 0, 1, 0, '', '', ''),
  5803. (9355, 'Crystals & Gemstones', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_crystals-gemstones', 'Home, Furniture & DIY :: Metaphysical & New Age :: Crystals & Gemstones', '', 0, 1, 0, '', '', ''),
  5804. (9356, 'Feng Shui', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_feng-shui', 'Home, Furniture & DIY :: Metaphysical & New Age :: Feng Shui', '', 0, 1, 0, '', '', ''),
  5805. (9357, 'Hand-Made Items', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_hand-made-items', 'Home, Furniture & DIY :: Metaphysical & New Age :: Hand-Made Items', '', 0, 1, 0, '', '', ''),
  5806. (9358, 'Incense', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_incense', 'Home, Furniture & DIY :: Metaphysical & New Age :: Incense', '', 0, 1, 0, '', '', ''),
  5807. (9359, 'Ouija Boards', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_ouija-boards', 'Home, Furniture & DIY :: Metaphysical & New Age :: Ouija Boards', '', 0, 1, 0, '', '', ''),
  5808. (9360, 'Pagan & Wiccan Items', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_pagan-wiccan-items', 'Home, Furniture & DIY :: Metaphysical & New Age :: Pagan & Wiccan Items', '', 0, 1, 0, '', '', ''),
  5809. (9361, 'Pendants & Amulets', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_pendants-amulets', 'Home, Furniture & DIY :: Metaphysical & New Age :: Pendants & Amulets', '', 0, 1, 0, '', '', ''),
  5810. (9362, 'Runes', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_runes', 'Home, Furniture & DIY :: Metaphysical & New Age :: Runes', '', 0, 1, 0, '', '', ''),
  5811. (9363, 'Tarot', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_tarot', 'Home, Furniture & DIY :: Metaphysical & New Age :: Tarot', '', 0, 1, 0, '', '', ''),
  5812. (9364, 'Other Metaphysical & New Age', 9080, 0, NULL, 'home-furniture-diy_metaphysical-new-age_other-metaphysical-new-age', 'Home, Furniture & DIY :: Metaphysical & New Age :: Other Metaphysical & New Age', '', 0, 1, 0, '', '', ''),
  5813. (9365, 'Carpet Tiles', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_carpet-tiles', 'Home, Furniture & DIY :: Rugs & Carpets :: Carpet Tiles', '', 0, 1, 0, '', '', ''),
  5814. (9366, 'Door Mats & Floor Mats', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_door-mats-floor-mats', 'Home, Furniture & DIY :: Rugs & Carpets :: Door Mats & Floor Mats', '', 0, 1, 0, '', '', ''),
  5815. (9367, 'Fitted Carpets & Underlay', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_fitted-carpets-underlay', 'Home, Furniture & DIY :: Rugs & Carpets :: Fitted Carpets & Underlay', '', 0, 1, 0, '', '', ''),
  5816. (9368, 'Hides, Skins & Faux Fur Rugs', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_hides-skins-faux-fur-rugs', 'Home, Furniture & DIY :: Rugs & Carpets :: Hides, Skins & Faux Fur Rugs', '', 0, 1, 0, '', '', ''),
  5817. (9369, 'Rugs', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_rugs', 'Home, Furniture & DIY :: Rugs & Carpets :: Rugs', '', 0, 1, 0, '', '', ''),
  5818. (9370, 'Runners', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_runners', 'Home, Furniture & DIY :: Rugs & Carpets :: Runners', '', 0, 1, 0, '', '', ''),
  5819. (9371, 'Stair Treads', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_stair-treads', 'Home, Furniture & DIY :: Rugs & Carpets :: Stair Treads', '', 0, 1, 0, '', '', ''),
  5820. (9372, 'Tools & Accessories', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_tools-accessories', 'Home, Furniture & DIY :: Rugs & Carpets :: Tools & Accessories', '', 0, 1, 0, '', '', ''),
  5821. (9373, 'Other Rugs & Carpets', 9081, 0, NULL, 'home-furniture-diy_rugs-carpets_other-rugs-carpets', 'Home, Furniture & DIY :: Rugs & Carpets :: Other Rugs & Carpets', '', 0, 1, 0, '', '', ''),
  5822. (9374, 'Burglar Alarms', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_burglar-alarms', 'Home, Furniture & DIY :: Security & Home Automation :: Burglar Alarms', '', 0, 1, 0, '', '', ''),
  5823. (9375, 'Cameras/ CCTV/ Sensors', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_cameras-cctv-sensors', 'Home, Furniture & DIY :: Security & Home Automation :: Cameras/ CCTV/ Sensors', '', 0, 1, 0, '', '', ''),
  5824. (9376, 'Fire Alarms/ Smoke Detectors', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_fire-alarms-smoke-detectors', 'Home, Furniture & DIY :: Security & Home Automation :: Fire Alarms/ Smoke Detectors', '', 0, 1, 0, '', '', ''),
  5825. (9377, 'Fire Extinguishers', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_fire-extinguishers', 'Home, Furniture & DIY :: Security & Home Automation :: Fire Extinguishers', '', 0, 1, 0, '', '', ''),
  5826. (9378, 'Home Automation', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_home-automation', 'Home, Furniture & DIY :: Security & Home Automation :: Home Automation', '', 0, 1, 0, '', '', ''),
  5827. (9379, 'Locks', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_locks', 'Home, Furniture & DIY :: Security & Home Automation :: Locks', '', 0, 1, 0, '', '', ''),
  5828. (9380, 'Personal Alarms', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_personal-alarms', 'Home, Furniture & DIY :: Security & Home Automation :: Personal Alarms', '', 0, 1, 0, '', '', ''),
  5829. (9381, 'Safes', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_safes', 'Home, Furniture & DIY :: Security & Home Automation :: Safes', '', 0, 1, 0, '', '', ''),
  5830. (9382, 'Surveillance', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_surveillance', 'Home, Furniture & DIY :: Security & Home Automation :: Surveillance', '', 0, 1, 0, '', '', ''),
  5831. (9383, 'Security Manuals & Guides', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_security-manuals-guides', 'Home, Furniture & DIY :: Security & Home Automation :: Security Manuals & Guides', '', 0, 1, 0, '', '', ''),
  5832. (9384, 'Other Safety & Security', 9082, 0, NULL, 'home-furniture-diy_security-home-automation_other-safety-security', 'Home, Furniture & DIY :: Security & Home Automation :: Other Safety & Security', '', 0, 1, 0, '', '', ''),
  5833. (9385, 'Address Books', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_address-books', 'Home, Furniture & DIY :: Stationery & School Equipment :: Address Books', '', 0, 1, 0, '', '', ''),
  5834. (9386, 'Blank Diaries', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_blank-diaries', 'Home, Furniture & DIY :: Stationery & School Equipment :: Blank Diaries', '', 0, 1, 0, '', '', ''),
  5835. (9387, 'Binders & Notebooks', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_binders-notebooks', 'Home, Furniture & DIY :: Stationery & School Equipment :: Binders & Notebooks', '', 0, 1, 0, '', '', ''),
  5836. (9388, 'Calendars', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_calendars', 'Home, Furniture & DIY :: Stationery & School Equipment :: Calendars', '', 0, 1, 0, '', '', ''),
  5837. (9389, 'Classroom & Teaching Supplies', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_classroom-teaching-supplies', 'Home, Furniture & DIY :: Stationery & School Equipment :: Classroom & Teaching Supplies', '', 0, 1, 0, '', '', ''),
  5838. (9390, 'Crayons & Markers', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_crayons-markers', 'Home, Furniture & DIY :: Stationery & School Equipment :: Crayons & Markers', '', 0, 1, 0, '', '', ''),
  5839. (9391, 'Filing & Storage', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_filing-storage', 'Home, Furniture & DIY :: Stationery & School Equipment :: Filing & Storage', '', 0, 1, 0, '', '', ''),
  5840. (9392, 'Pencil Cases', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_pencil-cases', 'Home, Furniture & DIY :: Stationery & School Equipment :: Pencil Cases', '', 0, 1, 0, '', '', ''),
  5841. (9393, 'Pens & Pencils', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_pens-pencils', 'Home, Furniture & DIY :: Stationery & School Equipment :: Pens & Pencils', '', 0, 1, 0, '', '', ''),
  5842. (9394, 'School Bags', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_school-bags', 'Home, Furniture & DIY :: Stationery & School Equipment :: School Bags', '', 0, 1, 0, '', '', ''),
  5843. (9395, 'Stamps & Stickers', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_stamps-stickers', 'Home, Furniture & DIY :: Stationery & School Equipment :: Stamps & Stickers', '', 0, 1, 0, '', '', ''),
  5844. (9396, 'Stationery/ Writing Paper', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_stationery-writing-paper', 'Home, Furniture & DIY :: Stationery & School Equipment :: Stationery/ Writing Paper', '', 0, 1, 0, '', '', ''),
  5845. (9397, 'Other School Equipment', 9083, 0, NULL, 'home-furniture-diy_stationery-school-equipment_other-school-equipment', 'Home, Furniture & DIY :: Stationery & School Equipment :: Other School Equipment', '', 0, 1, 0, '', '', ''),
  5846. (9398, 'Clothes Rails & Coat Stands', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_clothes-rails-coat-stands', 'Home, Furniture & DIY :: Storage Solutions :: Clothes Rails & Coat Stands', '', 0, 1, 0, '', '', ''),
  5847. (9399, 'Magazine Racks', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_magazine-racks', 'Home, Furniture & DIY :: Storage Solutions :: Magazine Racks', '', 0, 1, 0, '', '', ''),
  5848. (9400, 'Shoe Storage', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_shoe-storage', 'Home, Furniture & DIY :: Storage Solutions :: Shoe Storage', '', 0, 1, 0, '', '', ''),
  5849. (9401, 'Stacking Bins', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_stacking-bins', 'Home, Furniture & DIY :: Storage Solutions :: Stacking Bins', '', 0, 1, 0, '', '', ''),
  5850. (9402, 'Storage Bags', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_storage-bags', 'Home, Furniture & DIY :: Storage Solutions :: Storage Bags', '', 0, 1, 0, '', '', ''),
  5851. (9403, 'Storage Baskets', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_storage-baskets', 'Home, Furniture & DIY :: Storage Solutions :: Storage Baskets', '', 0, 1, 0, '', '', ''),
  5852. (9404, 'Storage Boxes', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_storage-boxes', 'Home, Furniture & DIY :: Storage Solutions :: Storage Boxes', '', 0, 1, 0, '', '', ''),
  5853. (9405, 'Storage Units', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_storage-units', 'Home, Furniture & DIY :: Storage Solutions :: Storage Units', '', 0, 1, 0, '', '', ''),
  5854. (9406, 'Umbrella Stands', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_umbrella-stands', 'Home, Furniture & DIY :: Storage Solutions :: Umbrella Stands', '', 0, 1, 0, '', '', ''),
  5855. (9407, 'Wall Hooks & Door Hangers', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_wall-hooks-door-hangers', 'Home, Furniture & DIY :: Storage Solutions :: Wall Hooks & Door Hangers', '', 0, 1, 0, '', '', ''),
  5856. (9408, 'Wardrobe Organisers', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_wardrobe-organisers', 'Home, Furniture & DIY :: Storage Solutions :: Wardrobe Organisers', '', 0, 1, 0, '', '', ''),
  5857. (9409, 'Other Storage Solutions', 9084, 0, NULL, 'home-furniture-diy_storage-solutions_other-storage-solutions', 'Home, Furniture & DIY :: Storage Solutions :: Other Storage Solutions', '', 0, 1, 0, '', '', ''),
  5858. (9410, 'Balloons', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_balloons', 'Home, Furniture & DIY :: Wedding Supplies :: Balloons', '', 0, 1, 0, '', '', ''),
  5859. (9411, 'Cake Servers', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_cake-servers', 'Home, Furniture & DIY :: Wedding Supplies :: Cake Servers', '', 0, 1, 0, '', '', ''),
  5860. (9412, 'Cake Stands & Plates', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_cake-stands-plates', 'Home, Furniture & DIY :: Wedding Supplies :: Cake Stands & Plates', '', 0, 1, 0, '', '', ''),
  5861. (9413, 'Cake Toppers', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_cake-toppers', 'Home, Furniture & DIY :: Wedding Supplies :: Cake Toppers', '', 0, 1, 0, '', '', ''),
  5862. (9414, 'Candles & Candle Holders', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_candles-candle-holders', 'Home, Furniture & DIY :: Wedding Supplies :: Candles & Candle Holders', '', 0, 1, 0, '', '', ''),
  5863. (9415, 'Card Boxes', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_card-boxes', 'Home, Furniture & DIY :: Wedding Supplies :: Card Boxes', '', 0, 1, 0, '', '', ''),
  5864. (9416, 'Cards & Invitations', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_cards-invitations', 'Home, Furniture & DIY :: Wedding Supplies :: Cards & Invitations', '', 0, 1, 0, '', '', ''),
  5865. (9417, 'Centerpieces & Table Decor', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_centerpieces-table-decor', 'Home, Furniture & DIY :: Wedding Supplies :: Centerpieces & Table Decor', '', 0, 1, 0, '', '', ''),
  5866. (9418, 'Confetti', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_confetti', 'Home, Furniture & DIY :: Wedding Supplies :: Confetti', '', 0, 1, 0, '', '', ''),
  5867. (9419, 'Disposable Cameras', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_disposable-cameras', 'Home, Furniture & DIY :: Wedding Supplies :: Disposable Cameras', '', 0, 1, 0, '', '', ''),
  5868. (9420, 'Flowers, Petals & Garlands', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_flowers-petals-garlands', 'Home, Furniture & DIY :: Wedding Supplies :: Flowers, Petals & Garlands', '', 0, 1, 0, '', '', ''),
  5869. (9421, 'Guest Books & Pens', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_guest-books-pens', 'Home, Furniture & DIY :: Wedding Supplies :: Guest Books & Pens', '', 0, 1, 0, '', '', ''),
  5870. (9422, 'Personalised Glassware', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_personalised-glassware', 'Home, Furniture & DIY :: Wedding Supplies :: Personalised Glassware', '', 0, 1, 0, '', '', ''),
  5871. (9423, 'Photo Albums', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_photo-albums', 'Home, Furniture & DIY :: Wedding Supplies :: Photo Albums', '', 0, 1, 0, '', '', ''),
  5872. (9424, 'Ribbons & Bows', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_ribbons-bows', 'Home, Furniture & DIY :: Wedding Supplies :: Ribbons & Bows', '', 0, 1, 0, '', '', ''),
  5873. (9425, 'Ring Pillows & Flower Baskets', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_ring-pillows-flower-baskets', 'Home, Furniture & DIY :: Wedding Supplies :: Ring Pillows & Flower Baskets', '', 0, 1, 0, '', '', ''),
  5874. (9426, 'Tableware & Serveware', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_tableware-serveware', 'Home, Furniture & DIY :: Wedding Supplies :: Tableware & Serveware', '', 0, 1, 0, '', '', ''),
  5875. (9427, 'Tulle', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_tulle', 'Home, Furniture & DIY :: Wedding Supplies :: Tulle', '', 0, 1, 0, '', '', ''),
  5876. (9428, 'Venue Decorations', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_venue-decorations', 'Home, Furniture & DIY :: Wedding Supplies :: Venue Decorations', '', 0, 1, 0, '', '', ''),
  5877. (9429, 'Wedding Favours', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_wedding-favours', 'Home, Furniture & DIY :: Wedding Supplies :: Wedding Favours', '', 0, 1, 0, '', '', ''),
  5878. (9430, 'Wedding Photography', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_wedding-photography', 'Home, Furniture & DIY :: Wedding Supplies :: Wedding Photography', '', 0, 1, 0, '', '', ''),
  5879. (9431, 'Other Wedding Supplies', 9085, 0, NULL, 'home-furniture-diy_wedding-supplies_other-wedding-supplies', 'Home, Furniture & DIY :: Wedding Supplies :: Other Wedding Supplies', '', 0, 1, 0, '', '', ''),
  5880. (9432, 'Other Wedding Supplies', 3695, 0, NULL, 'home-furniture-diy_other-wedding-supplies', 'Home, Furniture & DIY :: Other Wedding Supplies', '', 0, 1, 0, '', '', ''),
  5881. (9433, 'Body Jewellery', 3696, 0, NULL, 'jewellery-watches_body-jewellery', 'Jewellery & Watches :: Body Jewellery', '', 0, 1, 0, '', '', ''),
  5882. (9434, 'Costume Jewellery', 3696, 0, NULL, 'jewellery-watches_costume-jewellery', 'Jewellery & Watches :: Costume Jewellery', '', 0, 1, 0, '', '', ''),
  5883. (9435, 'Ethnic & Tribal Jewellery', 3696, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery', 'Jewellery & Watches :: Ethnic & Tribal Jewellery', '', 0, 1, 0, '', '', ''),
  5884. (9436, 'Fine Jewellery', 3696, 0, NULL, 'jewellery-watches_fine-jewellery', 'Jewellery & Watches :: Fine Jewellery', '', 0, 1, 0, '', '', ''),
  5885. (9437, 'Jewellery Boxes & Supplies', 3696, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies', 'Jewellery & Watches :: Jewellery Boxes & Supplies', '', 0, 1, 0, '', '', ''),
  5886. (9438, 'Loose Beads', 3696, 0, NULL, 'jewellery-watches_loose-beads', 'Jewellery & Watches :: Loose Beads', '', 0, 1, 0, '', '', ''),
  5887. (9439, 'Loose Diamonds & Gemstones', 3696, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones', 'Jewellery & Watches :: Loose Diamonds & Gemstones', '', 0, 1, 0, '', '', ''),
  5888. (9440, 'Men's Jewellery', 3696, 0, NULL, 'jewellery-watches_mens-jewellery', 'Jewellery & Watches :: Men's Jewellery', '', 0, 1, 0, '', '', ''),
  5889. (9441, 'Vintage & Antique Jewellery', 3696, 0, NULL, 'jewellery-watches_vintage-antique-jewellery', 'Jewellery & Watches :: Vintage & Antique Jewellery', '', 0, 1, 0, '', '', ''),
  5890. (9442, 'Watches', 3696, 0, NULL, 'jewellery-watches_watches', 'Jewellery & Watches :: Watches', '', 0, 1, 0, '', '', ''),
  5891. (9443, 'Other Jewellery', 3696, 0, NULL, 'jewellery-watches_other-jewellery', 'Jewellery & Watches :: Other Jewellery', '', 0, 1, 0, '', '', ''),
  5892. (9444, 'Body Chains', 9433, 0, NULL, 'jewellery-watches_body-jewellery_body-chains', 'Jewellery & Watches :: Body Jewellery :: Body Chains', '', 0, 1, 0, '', '', ''),
  5893. (9445, 'Body Piercing Jewellery', 9433, 0, NULL, 'jewellery-watches_body-jewellery_body-piercing-jewellery', 'Jewellery & Watches :: Body Jewellery :: Body Piercing Jewellery', '', 0, 1, 0, '', '', ''),
  5894. (9446, 'Fake & Cheater Body Jewellery', 9433, 0, NULL, 'jewellery-watches_body-jewellery_fake-cheater-body-jewellery', 'Jewellery & Watches :: Body Jewellery :: Fake & Cheater Body Jewellery', '', 0, 1, 0, '', '', ''),
  5895. (9447, 'Replacement Parts', 9433, 0, NULL, 'jewellery-watches_body-jewellery_replacement-parts', 'Jewellery & Watches :: Body Jewellery :: Replacement Parts', '', 0, 1, 0, '', '', ''),
  5896. (9448, 'Retainers & Hide-its', 9433, 0, NULL, 'jewellery-watches_body-jewellery_retainers-hide-its', 'Jewellery & Watches :: Body Jewellery :: Retainers & Hide-its', '', 0, 1, 0, '', '', ''),
  5897. (9449, 'Other Body Jewellery', 9433, 0, NULL, 'jewellery-watches_body-jewellery_other-body-jewellery', 'Jewellery & Watches :: Body Jewellery :: Other Body Jewellery', '', 0, 1, 0, '', '', ''),
  5898. (9450, 'Anklets', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_anklets', 'Jewellery & Watches :: Costume Jewellery :: Anklets', '', 0, 1, 0, '', '', ''),
  5899. (9451, 'Bracelets', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_bracelets', 'Jewellery & Watches :: Costume Jewellery :: Bracelets', '', 0, 1, 0, '', '', ''),
  5900. (9452, 'Brooches & Pins', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_brooches-pins', 'Jewellery & Watches :: Costume Jewellery :: Brooches & Pins', '', 0, 1, 0, '', '', ''),
  5901. (9453, 'Charms & Charm Bracelets', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_charms-charm-bracelets', 'Jewellery & Watches :: Costume Jewellery :: Charms & Charm Bracelets', '', 0, 1, 0, '', '', ''),
  5902. (9454, 'Earrings', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_earrings', 'Jewellery & Watches :: Costume Jewellery :: Earrings', '', 0, 1, 0, '', '', ''),
  5903. (9455, 'Eyeglass Chains & Holders', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_eyeglass-chains-holders', 'Jewellery & Watches :: Costume Jewellery :: Eyeglass Chains & Holders', '', 0, 1, 0, '', '', ''),
  5904. (9456, 'Hair & Head Jewellery', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_hair-head-jewellery', 'Jewellery & Watches :: Costume Jewellery :: Hair & Head Jewellery', '', 0, 1, 0, '', '', ''),
  5905. (9457, 'Handbag & Mobile Charms', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_handbag-mobile-charms', 'Jewellery & Watches :: Costume Jewellery :: Handbag & Mobile Charms', '', 0, 1, 0, '', '', ''),
  5906. (9458, 'Necklaces & Pendants', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_necklaces-pendants', 'Jewellery & Watches :: Costume Jewellery :: Necklaces & Pendants', '', 0, 1, 0, '', '', ''),
  5907. (9459, 'Rings', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_rings', 'Jewellery & Watches :: Costume Jewellery :: Rings', '', 0, 1, 0, '', '', ''),
  5908. (9460, 'Sets', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_sets', 'Jewellery & Watches :: Costume Jewellery :: Sets', '', 0, 1, 0, '', '', ''),
  5909. (9461, 'Toe Rings', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_toe-rings', 'Jewellery & Watches :: Costume Jewellery :: Toe Rings', '', 0, 1, 0, '', '', ''),
  5910. (9462, 'Wristbands', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_wristbands', 'Jewellery & Watches :: Costume Jewellery :: Wristbands', '', 0, 1, 0, '', '', ''),
  5911. (9463, 'Mixed Lots', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_mixed-lots', 'Jewellery & Watches :: Costume Jewellery :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  5912. (9464, 'Other Costume Jewellery', 9434, 0, NULL, 'jewellery-watches_costume-jewellery_other-costume-jewellery', 'Jewellery & Watches :: Costume Jewellery :: Other Costume Jewellery', '', 0, 1, 0, '', '', ''),
  5913. (9465, 'African', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_african', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: African', '', 0, 1, 0, '', '', ''),
  5914. (9466, 'Asian', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_asian', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Asian', '', 0, 1, 0, '', '', ''),
  5915. (9467, 'Celtic', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_celtic', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Celtic', '', 0, 1, 0, '', '', ''),
  5916. (9468, 'Mexican', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_mexican', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Mexican', '', 0, 1, 0, '', '', ''),
  5917. (9469, 'Native American', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_native-american', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Native American', '', 0, 1, 0, '', '', ''),
  5918. (9470, 'Oceanian/ Australasian', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_oceanian-australasian', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Oceanian/ Australasian', '', 0, 1, 0, '', '', ''),
  5919. (9471, 'Pagan/ Symbolic', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_pagan-symbolic', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Pagan/ Symbolic', '', 0, 1, 0, '', '', ''),
  5920. (9472, 'South American', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_south-american', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: South American', '', 0, 1, 0, '', '', ''),
  5921. (9473, 'Gothic', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_gothic', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Gothic', '', 0, 1, 0, '', '', ''),
  5922. (9474, 'Other Ethnic Jewellery', 9435, 0, NULL, 'jewellery-watches_ethnic-tribal-jewellery_other-ethnic-jewellery', 'Jewellery & Watches :: Ethnic & Tribal Jewellery :: Other Ethnic Jewellery', '', 0, 1, 0, '', '', ''),
  5923. (9475, 'Fine Anklets', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-anklets', 'Jewellery & Watches :: Fine Jewellery :: Fine Anklets', '', 0, 1, 0, '', '', ''),
  5924. (9476, 'Fine Bracelets', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-bracelets', 'Jewellery & Watches :: Fine Jewellery :: Fine Bracelets', '', 0, 1, 0, '', '', ''),
  5925. (9477, 'Fine Brooches & Pins', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-brooches-pins', 'Jewellery & Watches :: Fine Jewellery :: Fine Brooches & Pins', '', 0, 1, 0, '', '', ''),
  5926. (9478, 'Fine Charms & Charm Bracelets', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-charms-charm-bracelets', 'Jewellery & Watches :: Fine Jewellery :: Fine Charms & Charm Bracelets', '', 0, 1, 0, '', '', ''),
  5927. (9479, 'Fine Earrings', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-earrings', 'Jewellery & Watches :: Fine Jewellery :: Fine Earrings', '', 0, 1, 0, '', '', ''),
  5928. (9480, 'Fine Hair & Head Jewellery', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-hair-head-jewellery', 'Jewellery & Watches :: Fine Jewellery :: Fine Hair & Head Jewellery', '', 0, 1, 0, '', '', ''),
  5929. (9481, 'Fine Necklaces & Pendants', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-necklaces-pendants', 'Jewellery & Watches :: Fine Jewellery :: Fine Necklaces & Pendants', '', 0, 1, 0, '', '', ''),
  5930. (9482, 'Fine Rings', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-rings', 'Jewellery & Watches :: Fine Jewellery :: Fine Rings', '', 0, 1, 0, '', '', ''),
  5931. (9483, 'Fine Sets', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_fine-sets', 'Jewellery & Watches :: Fine Jewellery :: Fine Sets', '', 0, 1, 0, '', '', ''),
  5932. (9484, 'Other Fine Jewellery', 9436, 0, NULL, 'jewellery-watches_fine-jewellery_other-fine-jewellery', 'Jewellery & Watches :: Fine Jewellery :: Other Fine Jewellery', '', 0, 1, 0, '', '', ''),
  5933. (9485, 'Cleaners & Polish', 9437, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies_cleaners-polish', 'Jewellery & Watches :: Jewellery Boxes & Supplies :: Cleaners & Polish', '', 0, 1, 0, '', '', ''),
  5934. (9486, 'Jewellery Boxes', 9437, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies_jewellery-boxes', 'Jewellery & Watches :: Jewellery Boxes & Supplies :: Jewellery Boxes', '', 0, 1, 0, '', '', ''),
  5935. (9487, 'Jewellery Display', 9437, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies_jewellery-display', 'Jewellery & Watches :: Jewellery Boxes & Supplies :: Jewellery Display', '', 0, 1, 0, '', '', ''),
  5936. (9488, 'Jewellery Packaging', 9437, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies_jewellery-packaging', 'Jewellery & Watches :: Jewellery Boxes & Supplies :: Jewellery Packaging', '', 0, 1, 0, '', '', ''),
  5937. (9489, 'Settings', 9437, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies_settings', 'Jewellery & Watches :: Jewellery Boxes & Supplies :: Settings', '', 0, 1, 0, '', '', ''),
  5938. (9490, 'Other Jewellery Supplies', 9437, 0, NULL, 'jewellery-watches_jewellery-boxes-supplies_other-jewellery-supplies', 'Jewellery & Watches :: Jewellery Boxes & Supplies :: Other Jewellery Supplies', '', 0, 1, 0, '', '', ''),
  5939. (9491, 'Ceramic/Clay/Porcelain', 9438, 0, NULL, 'jewellery-watches_loose-beads_ceramic-clay-porcelain', 'Jewellery & Watches :: Loose Beads :: Ceramic/Clay/Porcelain', '', 0, 1, 0, '', '', ''),
  5940. (9492, 'Cloisonne', 9438, 0, NULL, 'jewellery-watches_loose-beads_cloisonne', 'Jewellery & Watches :: Loose Beads :: Cloisonne', '', 0, 1, 0, '', '', ''),
  5941. (9493, 'Glass', 9438, 0, NULL, 'jewellery-watches_loose-beads_glass', 'Jewellery & Watches :: Loose Beads :: Glass', '', 0, 1, 0, '', '', ''),
  5942. (9494, 'Crystal/Cut Glass', 9438, 0, NULL, 'jewellery-watches_loose-beads_crystal-cut-glass', 'Jewellery & Watches :: Loose Beads :: Crystal/Cut Glass', '', 0, 1, 0, '', '', ''),
  5943. (9495, 'Gemstone', 9438, 0, NULL, 'jewellery-watches_loose-beads_gemstone', 'Jewellery & Watches :: Loose Beads :: Gemstone', '', 0, 1, 0, '', '', ''),
  5944. (9496, 'Lampwork', 9438, 0, NULL, 'jewellery-watches_loose-beads_lampwork', 'Jewellery & Watches :: Loose Beads :: Lampwork', '', 0, 1, 0, '', '', ''),
  5945. (9497, 'Metal', 9438, 0, NULL, 'jewellery-watches_loose-beads_metal', 'Jewellery & Watches :: Loose Beads :: Metal', '', 0, 1, 0, '', '', ''),
  5946. (9498, 'Millefiori', 9438, 0, NULL, 'jewellery-watches_loose-beads_millefiori', 'Jewellery & Watches :: Loose Beads :: Millefiori', '', 0, 1, 0, '', '', ''),
  5947. (9499, 'Pearl', 9438, 0, NULL, 'jewellery-watches_loose-beads_pearl', 'Jewellery & Watches :: Loose Beads :: Pearl', '', 0, 1, 0, '', '', ''),
  5948. (9500, 'Rhinestone', 9438, 0, NULL, 'jewellery-watches_loose-beads_rhinestone', 'Jewellery & Watches :: Loose Beads :: Rhinestone', '', 0, 1, 0, '', '', ''),
  5949. (9501, 'Seed', 9438, 0, NULL, 'jewellery-watches_loose-beads_seed', 'Jewellery & Watches :: Loose Beads :: Seed', '', 0, 1, 0, '', '', ''),
  5950. (9502, 'Shell', 9438, 0, NULL, 'jewellery-watches_loose-beads_shell', 'Jewellery & Watches :: Loose Beads :: Shell', '', 0, 1, 0, '', '', ''),
  5951. (9503, 'Wood', 9438, 0, NULL, 'jewellery-watches_loose-beads_wood', 'Jewellery & Watches :: Loose Beads :: Wood', '', 0, 1, 0, '', '', ''),
  5952. (9504, 'Mixed Lots', 9438, 0, NULL, 'jewellery-watches_loose-beads_mixed-lots', 'Jewellery & Watches :: Loose Beads :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  5953. (9505, 'Other Beads', 9438, 0, NULL, 'jewellery-watches_loose-beads_other-beads', 'Jewellery & Watches :: Loose Beads :: Other Beads', '', 0, 1, 0, '', '', ''),
  5954. (9506, 'Agate', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_agate', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Agate', '', 0, 1, 0, '', '', ''),
  5955. (9507, 'Alexandrite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_alexandrite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Alexandrite', '', 0, 1, 0, '', '', ''),
  5956. (9508, 'Amber', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_amber', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Amber', '', 0, 1, 0, '', '', ''),
  5957. (9509, 'Amethyst', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_amethyst', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Amethyst', '', 0, 1, 0, '', '', ''),
  5958. (9510, 'Ametrine', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_ametrine', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Ametrine', '', 0, 1, 0, '', '', ''),
  5959. (9511, 'Ammolite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_ammolite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Ammolite', '', 0, 1, 0, '', '', ''),
  5960. (9512, 'Aquamarine', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_aquamarine', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Aquamarine', '', 0, 1, 0, '', '', ''),
  5961. (9513, 'Aventurine', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_aventurine', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Aventurine', '', 0, 1, 0, '', '', ''),
  5962. (9514, 'Beryl', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_beryl', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Beryl', '', 0, 1, 0, '', '', ''),
  5963. (9515, 'Carnelian', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_carnelian', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Carnelian', '', 0, 1, 0, '', '', ''),
  5964. (9516, 'Chalcedony', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_chalcedony', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Chalcedony', '', 0, 1, 0, '', '', ''),
  5965. (9517, 'Citrine', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_citrine', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Citrine', '', 0, 1, 0, '', '', ''),
  5966. (9518, 'Cubic Zirconia', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_cubic-zirconia', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Cubic Zirconia', '', 0, 1, 0, '', '', ''),
  5967. (9519, 'Diamond', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_diamond', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Diamond', '', 0, 1, 0, '', '', ''),
  5968. (9520, 'Emerald', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_emerald', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Emerald', '', 0, 1, 0, '', '', ''),
  5969. (9521, 'Fluorite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_fluorite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Fluorite', '', 0, 1, 0, '', '', ''),
  5970. (9522, 'Garnet', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_garnet', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Garnet', '', 0, 1, 0, '', '', ''),
  5971. (9523, 'Hematite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_hematite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Hematite', '', 0, 1, 0, '', '', ''),
  5972. (9524, 'Iolite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_iolite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Iolite', '', 0, 1, 0, '', '', ''),
  5973. (9525, 'Jade', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_jade', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Jade', '', 0, 1, 0, '', '', ''),
  5974. (9526, 'Jasper', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_jasper', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Jasper', '', 0, 1, 0, '', '', ''),
  5975. (9527, 'Konerupine', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_konerupine', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Konerupine', '', 0, 1, 0, '', '', ''),
  5976. (9528, 'Kunzite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_kunzite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Kunzite', '', 0, 1, 0, '', '', ''),
  5977. (9529, 'Kyanite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_kyanite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Kyanite', '', 0, 1, 0, '', '', ''),
  5978. (9530, 'Lapis', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_lapis', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Lapis', '', 0, 1, 0, '', '', ''),
  5979. (9531, 'Malachite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_malachite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Malachite', '', 0, 1, 0, '', '', ''),
  5980. (9532, 'Moissanite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_moissanite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Moissanite', '', 0, 1, 0, '', '', ''),
  5981. (9533, 'Moldavite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_moldavite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Moldavite', '', 0, 1, 0, '', '', ''),
  5982. (9534, 'Moonstone', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_moonstone', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Moonstone', '', 0, 1, 0, '', '', ''),
  5983. (9535, 'Morganite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_morganite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Morganite', '', 0, 1, 0, '', '', ''),
  5984. (9536, 'Obsidian', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_obsidian', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Obsidian', '', 0, 1, 0, '', '', ''),
  5985. (9537, 'Onyx', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_onyx', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Onyx', '', 0, 1, 0, '', '', ''),
  5986. (9538, 'Opal', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_opal', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Opal', '', 0, 1, 0, '', '', ''),
  5987. (9539, 'Pearl', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_pearl', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Pearl', '', 0, 1, 0, '', '', ''),
  5988. (9540, 'Peridot', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_peridot', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Peridot', '', 0, 1, 0, '', '', ''),
  5989. (9541, 'Quartz', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_quartz', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Quartz', '', 0, 1, 0, '', '', ''),
  5990. (9542, 'Ruby', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_ruby', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Ruby', '', 0, 1, 0, '', '', ''),
  5991. (9543, 'Sapphire', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_sapphire', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Sapphire', '', 0, 1, 0, '', '', ''),
  5992. (9544, 'Sodalite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_sodalite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Sodalite', '', 0, 1, 0, '', '', ''),
  5993. (9545, 'Sphene, Titanite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_sphene-titanite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Sphene, Titanite', '', 0, 1, 0, '', '', ''),
  5994. (9546, 'Spinel', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_spinel', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Spinel', '', 0, 1, 0, '', '', ''),
  5995. (9547, 'Sugilite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_sugilite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Sugilite', '', 0, 1, 0, '', '', ''),
  5996. (9548, 'Sunstone', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_sunstone', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Sunstone', '', 0, 1, 0, '', '', ''),
  5997. (9549, 'Tanzanite', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_tanzanite', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Tanzanite', '', 0, 1, 0, '', '', ''),
  5998. (9550, 'Topaz', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_topaz', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Topaz', '', 0, 1, 0, '', '', ''),
  5999. (9551, 'Tourmaline', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_tourmaline', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Tourmaline', '', 0, 1, 0, '', '', ''),
  6000. (9552, 'Turquoise', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_turquoise', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Turquoise', '', 0, 1, 0, '', '', ''),
  6001. (9553, 'Zircon', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_zircon', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Zircon', '', 0, 1, 0, '', '', ''),
  6002. (9554, 'Mixed Lots', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_mixed-lots', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Mixed Lots', '', 0, 1, 0, '', '', ''),
  6003. (9555, 'Other Loose Gemstones', 9439, 0, NULL, 'jewellery-watches_loose-diamonds-gemstones_other-loose-gemstones', 'Jewellery & Watches :: Loose Diamonds & Gemstones :: Other Loose Gemstones', '', 0, 1, 0, '', '', ''),
  6004. (9556, 'Bracelets', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_bracelets', 'Jewellery & Watches :: Men's Jewellery :: Bracelets', '', 0, 1, 0, '', '', ''),
  6005. (9557, 'Chains, Necklaces & Pendants', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_chains-necklaces-pendants', 'Jewellery & Watches :: Men's Jewellery :: Chains, Necklaces & Pendants', '', 0, 1, 0, '', '', ''),
  6006. (9558, 'Cufflinks', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_cufflinks', 'Jewellery & Watches :: Men's Jewellery :: Cufflinks', '', 0, 1, 0, '', '', ''),
  6007. (9559, 'Earrings, Studs', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_earrings-studs', 'Jewellery & Watches :: Men's Jewellery :: Earrings, Studs', '', 0, 1, 0, '', '', ''),
  6008. (9560, 'Lapel Pins', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_lapel-pins', 'Jewellery & Watches :: Men's Jewellery :: Lapel Pins', '', 0, 1, 0, '', '', ''),
  6009. (9561, 'Money Clips', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_money-clips', 'Jewellery & Watches :: Men's Jewellery :: Money Clips', '', 0, 1, 0, '', '', ''),
  6010. (9562, 'Rings', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_rings', 'Jewellery & Watches :: Men's Jewellery :: Rings', '', 0, 1, 0, '', '', ''),
  6011. (9563, 'Tie Pins & Clips', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_tie-pins-clips', 'Jewellery & Watches :: Men's Jewellery :: Tie Pins & Clips', '', 0, 1, 0, '', '', ''),
  6012. (9564, 'Other Men's Jewellery', 9440, 0, NULL, 'jewellery-watches_mens-jewellery_other-mens-jewellery', 'Jewellery & Watches :: Men's Jewellery :: Other Men's Jewellery', '', 0, 1, 0, '', '', ''),
  6013. (9565, 'Vintage Fine Jewellery', 9441, 0, NULL, 'jewellery-watches_vintage-antique-jewellery_vintage-fine-jewellery', 'Jewellery & Watches :: Vintage & Antique Jewellery :: Vintage Fine Jewellery', '', 0, 1, 0, '', '', ''),
  6014. (9566, 'Vintage Costume Jewellery', 9441, 0, NULL, 'jewellery-watches_vintage-antique-jewellery_vintage-costume-jewellery', 'Jewellery & Watches :: Vintage & Antique Jewellery :: Vintage Costume Jewellery', '', 0, 1, 0, '', '', ''),
  6015. (9567, 'Vintage Reproduction Jewellery', 9441, 0, NULL, 'jewellery-watches_vintage-antique-jewellery_vintage-reproduction-jewellery', 'Jewellery & Watches :: Vintage & Antique Jewellery :: Vintage Reproduction Jewellery', '', 0, 1, 0, '', '', ''),
  6016. (9568, 'Other Vintage Jewellery', 9441, 0, NULL, 'jewellery-watches_vintage-antique-jewellery_other-vintage-jewellery', 'Jewellery & Watches :: Vintage & Antique Jewellery :: Other Vintage Jewellery', '', 0, 1, 0, '', '', ''),
  6017. (9569, 'Wristwatches', 9442, 0, NULL, 'jewellery-watches_watches_wristwatches', 'Jewellery & Watches :: Watches :: Wristwatches', '', 0, 1, 0, '', '', ''),
  6018. (9570, 'Pocket Watches', 9442, 0, NULL, 'jewellery-watches_watches_pocket-watches', 'Jewellery & Watches :: Watches :: Pocket Watches', '', 0, 1, 0, '', '', ''),
  6019. (9571, 'Fob & Nurse Watches', 9442, 0, NULL, 'jewellery-watches_watches_fob-nurse-watches', 'Jewellery & Watches :: Watches :: Fob & Nurse Watches', '', 0, 1, 0, '', '', ''),
  6020. (9572, 'Ring Watches', 9442, 0, NULL, 'jewellery-watches_watches_ring-watches',
  6021. 'Jewellery & Watches :: Watches :: Ring Watches', '', 0, 1, 0, '', '', ''),
  6022. (9573, 'Key Ring Watches', 9442, 0, NULL, 'jewellery-watches_watches_key-ring-watches',
  6023. 'Jewellery & Watches :: Watches :: Key Ring Watches', '', 0, 1, 0, '', '', ''),
  6024. (9574, 'Necklace Watches', 9442, 0, NULL, 'jewellery-watches_watches_necklace-watches',
  6025. 'Jewellery & Watches :: Watches :: Necklace Watches', '', 0, 1, 0, '', '', ''),
  6026. (9575, 'Wristwatch Straps', 9442, 0, NULL, 'jewellery-watches_watches_wristwatch-straps',
  6027. 'Jewellery & Watches :: Watches :: Wristwatch Straps', '', 0, 1, 0, '', '', ''),
  6028. (9576, 'Batteries', 9442, 0, NULL, 'jewellery-watches_watches_batteries',
  6029. 'Jewellery & Watches :: Watches :: Batteries', '', 0, 1, 0, '', '', ''),
  6030. (9577, 'Parts, Tools & Guides', 9442, 0, NULL, 'jewellery-watches_watches_parts-tools-guides',
  6031. 'Jewellery & Watches :: Watches :: Parts, Tools & Guides', '', 0, 1, 0, '', '', ''),
  6032. (9578, 'Boxes, Cases & Watch Winders', 9442, 0, NULL, 'jewellery-watches_watches_boxes-cases-watch-winders',
  6033. 'Jewellery & Watches :: Watches :: Boxes, Cases & Watch Winders', '', 0, 1, 0, '', '', '');
  6034. CREATE TABLE `{%TABLE_PREFIX%}content_pages` (
  6035. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6036. `section_id` INT(11) DEFAULT NULL,
  6037. `title` VARCHAR(255) NOT NULL,
  6038. `slug` VARCHAR(255) NOT NULL,
  6039. `content` TEXT NOT NULL,
  6040. `language` VARCHAR(255) NOT NULL,
  6041. `order_id` INT(11) NOT NULL,
  6042. `created_at` DATETIME NOT NULL,
  6043. `updated_at` DATETIME DEFAULT NULL,
  6044. PRIMARY KEY (`id`),
  6045. KEY `section_id` (`section_id`),
  6046. CONSTRAINT `{%TABLE_PREFIX%}content_pages_ibfk_1` FOREIGN KEY (`section_id`) REFERENCES `{%TABLE_PREFIX%}content_sections` (`id`)
  6047. ON DELETE SET NULL
  6048. )
  6049. ENGINE =InnoDB
  6050. DEFAULT CHARSET =utf8;
  6051. INSERT INTO `{%TABLE_PREFIX%}content_pages` (`id`, `section_id`, `title`, `slug`, `content`, `language`, `order_id`, `created_at`, `updated_at`)
  6052. VALUES
  6053. (2, 5, 'Terms and Conditions', '',
  6054. '<p>This web-site is intended to be a friendly, enjoyable and useful \r\nexperience, but as with anything concerning any kind of transactions \r\nthere are risks involved and we strongly advise you to understand all of\r\n these terms before joining. If you spot a listing that you feel is \r\nviolating the general terms and conditions of this web-site as stated \r\nbelow please let us know by contacting us.</p><p>Rights To Suspend or Terminate.<br>You agree that this web-site, in \r\nits own discretion, may terminate any auction or use of the service \r\nimmediately and without notice if (a) We believe that you are not \r\nabiding by the general rules of this web-site (b) You have repeatedly \r\nbroken a certain term (c) You have listed a suspicious item (d) We \r\nbelieve you to be a non paying bidder. In most cases when we suspect \r\nfoul play we will suspend your account/listing whilst we investigate \r\nfurther. If our investigation is conclusive then your account with us \r\nwill be terminated.</p><p>Your Conduct.<br>You are solely responsible for the contents of your \r\nactions through this web-site. You must ensure that your participation \r\nin the selling or buying of items does not violate any applicable laws \r\nor regulations. By this we mean that you must check that you entitled to\r\n sell or buy the relevant item and that you are not prohibited from \r\ndoing so by any law or regulation. <br>You must not transmit through the\r\n service any unlawful, harassing, libelous, abusive, threatening, \r\nharmful, vulgar, obscene or otherwise objectionable material. You must \r\nalso not transmit any material that encourages conduct that could \r\nconstitute a criminal offence, give rise to civil liability or otherwise\r\n violate any applicable law or regulation.</p><p>Membership.<br>Membership to this web-site is only available to those\r\n you can form a legally binding contract. This web-site does not permit\r\n minors (under 16) to register. If any member fails to signup with \r\ntheir correct age the account will be terminated immediately.</p><p>General Terms.<br>This site acts as the window for sellers to conduct\r\n auctions and for bidders to bid on sellers&#039; auctions. We are not \r\ninvolved in the actual transaction between buyers and sellers. As a \r\nresult, we have no control over the quality, safety or legality of the \r\nitems listed the truth or accuracy of the listings, the ability of \r\nsellers to sell items or the ability of buyers to buy items. We cannot \r\nand do not control whether or not sellers will complete the sale of \r\nitems they offer or buyers will complete the purchases of items they \r\nhave bid on. In addition, note that there are risks of dealing with \r\nforeign nationals, underage persons or people acting under false \r\npretence. <br>This Web-site shall not be responsible for any items sold\r\n by Auction, for any damage to items during transit or during the \r\ninspection period, nor for misrepresentations and/or breaches of \r\ncontract by either buyer and/or seller. This web-site shall not be \r\nresponsible for the cost of procurement of substitute goods or any \r\nlosses resulting form any goods purchased or obtained. <br>This web-site\r\n assumes no liability for the content of the listings. However if you \r\nfall victim of a fraudulent transaction we will assist you as much as we\r\n can.</p><p>Laws.<br>These Terms of Service shall be governed by and constructed \r\nin accordance with the laws of England and Wales and any disputes will \r\nbe decided only by the Courts of England and Wales.</p>',
  6055. 'en_US', 0, '2014-02-26 12:45:51', '2014-05-08 11:29:47'),
  6056. (6, 18, 'Site Fees', '',
  6057. '<p>The basic cost of selling an item is the listing fee plus the sale transaction fee, plus fees for any optional features and services you may use.</p><p><%=action:site-fees.pages.app%></p>',
  6058. 'en_US', 0, '2014-04-01 12:15:05', '2014-05-18 05:48:40');
  6059. CREATE TABLE `{%TABLE_PREFIX%}content_sections` (
  6060. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6061. `name` VARCHAR(255) NOT NULL,
  6062. `slug` VARCHAR(255) NOT NULL,
  6063. `parent_id` INT(11) DEFAULT NULL,
  6064. `menu_id` INT(11) NOT NULL,
  6065. `order_id` INT(11) NOT NULL,
  6066. `meta_title` VARCHAR(500) NOT NULL,
  6067. `meta_description` TEXT NOT NULL,
  6068. PRIMARY KEY (`id`),
  6069. KEY `parent_id` (`parent_id`),
  6070. KEY `menu_id` (`menu_id`),
  6071. CONSTRAINT `{%TABLE_PREFIX%}content_sections_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `{%TABLE_PREFIX%}content_sections` (`id`)
  6072. ON DELETE CASCADE
  6073. )
  6074. ENGINE =InnoDB
  6075. DEFAULT CHARSET =utf8;
  6076. INSERT INTO `{%TABLE_PREFIX%}content_sections` (`id`, `name`, `slug`, `parent_id`, `menu_id`, `order_id`, `meta_title`, `meta_description`)
  6077. VALUES
  6078. (1, 'Help', 'help', NULL, 0, 3, '', ''),
  6079. (2, 'FAQ', 'faq', NULL, 0, 4, '', ''),
  6080. (3, 'About Us', 'about-us', NULL, 0, 1, '', ''),
  6081. (4, 'Contact Us', 'contact-us', NULL, 0, 2, '', ''),
  6082. (5, 'Terms & Conditions', 'terms', NULL, 0, 20, '', ''),
  6083. (6, 'Privacy Policy', 'privacy', NULL, 0, 21, '', ''),
  6084. (7, 'News', 'news', NULL, 0, 10, '', ''),
  6085. (18, 'Site Fees', 'site-fees', NULL, 0, 5, '', '');
  6086. CREATE TABLE `{%TABLE_PREFIX%}currencies` (
  6087. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6088. `iso_code` VARCHAR(10) DEFAULT NULL,
  6089. `symbol` VARCHAR(50) DEFAULT NULL,
  6090. `description` VARCHAR(100) DEFAULT NULL,
  6091. `conversion_rate` DOUBLE(16, 6) NOT NULL DEFAULT '1.000000',
  6092. PRIMARY KEY (`id`),
  6093. UNIQUE KEY `iso_code` (`iso_code`)
  6094. )
  6095. ENGINE =InnoDB
  6096. DEFAULT CHARSET =utf8;
  6097. INSERT INTO `{%TABLE_PREFIX%}currencies` (`id`, `iso_code`, `symbol`, `description`, `conversion_rate`) VALUES
  6098. (1, 'ARS', '', 'Argentina (Argentinian Peso)', 7.144130),
  6099. (2, 'AUD', '', 'Australia (Australian Dollar)', 1.589570),
  6100. (3, 'BRL', '', 'Brazil (Brazilian Real)', 3.119800),
  6101. (4, 'CAD', '', 'Canada (Canadian Dollar)', 5.468400),
  6102. (5, 'CLP', '', 'Chile (Chilean Peso)', 779.214280),
  6103. (6, 'CNY', '', 'China (Chinese Renminbi)', 10.174050),
  6104. (7, 'COP', '', 'Colombia (Colombian Peso)', 2836.807950),
  6105. (8, 'CZK', '', 'Czech. Republic (Czech. Republic Koruna)', 31.188830),
  6106. (9, 'DKK', '', 'Denmark (Danish Krone)', 9.261800),
  6107. (10, 'EUR', '€', 'European Union (EURO)', 0.729241),
  6108. (11, 'FJD', '', 'Fiji (Fiji Dollar)', 1.000000),
  6109. (12, 'GBP', '£', 'Great Britain (Pound Sterling)', 0.653840),
  6110. (13, 'HKD', '', 'Hong Kong (Hong Kong Dollar)', 12.509680),
  6111. (14, 'ISK', '', 'Iceland (Icelandic Krona)', 86.088890),
  6112. (15, 'INR', '', 'India (Indian Rupee)', 86.088890),
  6113. (16, 'IDR', '', 'Indonesia (Indonesian Rupiah)', 14911.198880),
  6114. (17, 'ILS', '', 'Israel (Israeli New Shekel)', 6.157170),
  6115. (18, 'JPY', '', 'Japan (Japanese Yen)', 128.943640),
  6116. (19, 'MYR', '', 'Malaysia (Malaysian Ringgit)', 4.934330),
  6117. (20, 'MXN', '', 'Mexico (New Peso)', 21.391430),
  6118. (21, 'MAD', '', 'Morocco (Moroccan Dirham)', 13.808070),
  6119. (22, 'NZD', '', 'New Zealand (New Zealand Dollar)', 2.035630),
  6120. (23, 'NOK', '', 'Norway (Norvegian Krona)', 9.400370),
  6121. (24, 'PKR', '', 'Pakistan (Pakistan Rupee)', 146.585850),
  6122. (25, 'PAB', '', 'Panama (Panamanian Balboa)', 1.614150),
  6123. (26, 'PEN', '', 'Peru (Peruvian New Sol)', 4.264430),
  6124. (27, 'PHP', '', 'Philippine (Philippine Peso)', 68.438490),
  6125. (28, 'PLN', '', 'Poland (Polish Zloty)', 5.209310),
  6126. (29, 'RON', '', 'Romania (Romanian New Lei)', 5.468400),
  6127. (30, 'RUB', '', 'Russian (Russian Rouble)', 48.319300),
  6128. (31, 'SGD', '', 'Singapore (Singapore Dollar)', 2.016390),
  6129. (32, 'SKK', '', 'Slovakia (Koruna)', 1.000000),
  6130. (33, 'SIT', '', 'Slovenia (Slovenian Tolar)', 1.000000),
  6131. (34, 'ZAR', '', 'South Africa (South African Rand)', 12.668650),
  6132. (35, 'KRW', '', 'South Korea (South Korean Won)', 1838.574550),
  6133. (36, 'LKR', '', 'Sri Lanka (Sri Lanka Rupee)', 206.203230),
  6134. (37, 'SEK', '', 'Sweden (Swedish Krona)', 11.069890),
  6135. (38, 'CHF', '', 'Switzerland (Swiss Franc)', 1.491500),
  6136. (39, 'TWD', '', 'Taiwan (Taiwanese New Dollar)', 47.345250),
  6137. (40, 'THB', '', 'Thailand (Thailand Thai Baht)', 50.021480),
  6138. (41, 'TND', '', 'Tunisia (Tunisisan Dinar)', 1.000000),
  6139. (42, 'TRL', '', 'Turkey (Turkish Lira)', 1.000000),
  6140. (43, 'USD', '$', 'United States (U.S. Dollar)', 1.000000),
  6141. (44, 'VEB', '', 'Venezuela (Bolivar)', 1.000000);
  6142. CREATE TABLE `{%TABLE_PREFIX%}custom_fields` (
  6143. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6144. `type` VARCHAR(255) NOT NULL,
  6145. `element` VARCHAR(255) NOT NULL,
  6146. `active` TINYINT(4) NOT NULL,
  6147. `order_id` INT(11) NOT NULL,
  6148. `category_ids` TEXT NOT NULL,
  6149. `label` VARCHAR(255) NOT NULL,
  6150. `subtitle` VARCHAR(255) NOT NULL,
  6151. `prefix` VARCHAR(255) NOT NULL,
  6152. `suffix` VARCHAR(255) NOT NULL,
  6153. `attributes` TEXT NOT NULL,
  6154. `description` TEXT NOT NULL,
  6155. `multiple` TINYINT(4) NOT NULL,
  6156. `multiOptions` TEXT NOT NULL,
  6157. `validators` TEXT NOT NULL,
  6158. `headerCode` TEXT NOT NULL,
  6159. `bodyCode` TEXT NOT NULL,
  6160. `customData` TEXT NOT NULL,
  6161. `required` TINYINT(4) NOT NULL,
  6162. `searchable` TINYINT(4) NOT NULL,
  6163. PRIMARY KEY (`id`),
  6164. KEY `type` (`type`)
  6165. )
  6166. ENGINE =InnoDB
  6167. DEFAULT CHARSET =utf8;
  6168. CREATE TABLE `{%TABLE_PREFIX%}custom_fields_data` (
  6169. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6170. `field_id` INT(11) NOT NULL,
  6171. `owner_id` INT(11) NOT NULL,
  6172. `type` VARCHAR(255) NOT NULL,
  6173. `value` TEXT NOT NULL,
  6174. PRIMARY KEY (`id`),
  6175. KEY `field_id` (`field_id`),
  6176. KEY `owner_id_type` (`owner_id`, `type`),
  6177. CONSTRAINT `{%TABLE_PREFIX%}custom_fields_data_ibfk_1` FOREIGN KEY (`field_id`) REFERENCES `{%TABLE_PREFIX%}custom_fields` (`id`)
  6178. ON DELETE CASCADE
  6179. )
  6180. ENGINE =InnoDB
  6181. DEFAULT CHARSET =utf8;
  6182. CREATE TABLE `{%TABLE_PREFIX%}durations` (
  6183. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6184. `days` INT(11) NOT NULL,
  6185. `description` VARCHAR(255) NOT NULL,
  6186. `selected` TINYINT(4) NOT NULL,
  6187. `order_id` INT(11) NOT NULL,
  6188. PRIMARY KEY (`id`)
  6189. )
  6190. ENGINE =InnoDB
  6191. DEFAULT CHARSET =utf8;
  6192. INSERT INTO `{%TABLE_PREFIX%}durations` (`id`, `days`, `description`, `selected`, `order_id`) VALUES
  6193. (76, 1, '1 day', 0, 2),
  6194. (77, 2, '2 days', 0, 3),
  6195. (78, 7, '7 days', 1, 1),
  6196. (79, 14, '14 days', 0, 5),
  6197. (80, 30, '30 days', 0, 6),
  6198. (81, 60, '60 days', 0, 7),
  6199. (83, 3, '3 days', 0, 4),
  6200. (84, 365, '1 Year', 0, 0);
  6201. CREATE TABLE `{%TABLE_PREFIX%}favorite_stores` (
  6202. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6203. `user_id` INT(11) NOT NULL,
  6204. `store_id` INT(11) NOT NULL,
  6205. `created_at` DATETIME NOT NULL,
  6206. PRIMARY KEY (`id`),
  6207. KEY `user_id` (`user_id`),
  6208. KEY `store_id` (`store_id`),
  6209. CONSTRAINT `{%TABLE_PREFIX%}favorite_stores_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6210. ON DELETE CASCADE,
  6211. CONSTRAINT `{%TABLE_PREFIX%}favorite_stores_ibfk_2` FOREIGN KEY (`store_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6212. ON DELETE CASCADE
  6213. )
  6214. ENGINE =InnoDB
  6215. DEFAULT CHARSET =utf8;
  6216. CREATE TABLE `{%TABLE_PREFIX%}fees` (
  6217. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6218. `name` VARCHAR(50) NOT NULL,
  6219. `amount` DECIMAL(16, 2) NOT NULL,
  6220. `type` ENUM('flat', 'percent') NOT NULL,
  6221. `category_id` INT(11) DEFAULT NULL,
  6222. `tier_from` DECIMAL(16, 2) NOT NULL,
  6223. `tier_to` DECIMAL(16, 2) NOT NULL,
  6224. PRIMARY KEY (`id`),
  6225. KEY `category_id` (`category_id`),
  6226. CONSTRAINT `{%TABLE_PREFIX%}fees_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `{%TABLE_PREFIX%}categories` (`id`)
  6227. ON DELETE CASCADE
  6228. )
  6229. ENGINE =InnoDB
  6230. DEFAULT CHARSET =utf8;
  6231. INSERT INTO `{%TABLE_PREFIX%}fees` (`id`, `name`, `amount`, `type`, `category_id`, `tier_from`, `tier_to`) VALUES
  6232. (124, 'setup', 7.00, 'percent', NULL, 10.00, 100.00),
  6233. (125, 'setup', 5.00, 'percent', NULL, 100.00, 1000.00),
  6234. (126, 'setup', 10.00, 'flat', NULL, 1000.00, 1000000.00),
  6235. (129, 'sale', 10.00, 'flat', NULL, 10000.00, 1000000.00),
  6236. (130, 'hpfeat', 2.48, 'flat', NULL, 0.00, 0.00),
  6237. (131, 'controller', 0.00, 'flat', NULL, 0.00, 0.00),
  6238. (132, 'action', 0.00, 'flat', NULL, 0.00, 0.00),
  6239. (133, 'catfeat', 1.28, 'flat', NULL, 0.00, 0.00),
  6240. (134, 'highlighted', 0.31, 'flat', NULL, 0.00, 0.00),
  6241. (135, 'image', 0.08, 'flat', NULL, 0.00, 0.00),
  6242. (136, 'free_images', 1.00, 'flat', NULL, 0.00, 0.00),
  6243. (137, 'bold', 0.44, 'flat', NULL, 0.00, 0.00),
  6244. (138, 'addl_category_id', 1.00, 'flat', NULL, 0.00, 0.00),
  6245. (139, 'reserve_price', 0.33, 'flat', NULL, 0.00, 0.00),
  6246. (140, 'buyout_price', 0.41, 'flat', NULL, 0.00, 0.00),
  6247. (142, 'enable_make_offer', 0.38, 'flat', NULL, 0.00, 0.00),
  6248. (143, 'signup', 0.00, 'flat', NULL, 0.00, 0.00),
  6249. (144, 'digital_downloads', 3.00, 'flat', NULL, 0.00, 0.00),
  6250. (145, 'media', 0.36, 'flat', NULL, 0.00, 0.00),
  6251. (146, 'free_media', 0.00, 'flat', NULL, 0.00, 0.00),
  6252. (147, 'video', 0.58, 'flat', NULL, 0.00, 0.00),
  6253. (148, 'download', 1.20, 'flat', NULL, 0.00, 0.00),
  6254. (149, 'free_downloads', 0.00, 'flat', NULL, 0.00, 0.00),
  6255. (152, 'sale', 4.00, 'percent', NULL, 1000.00, 10000.00),
  6256. (153, 'sale', 5.00, 'percent', NULL, 0.00, 1000.00);
  6257. CREATE TABLE `{%TABLE_PREFIX%}link_redirects` (
  6258. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6259. `old_link` VARCHAR(500) NOT NULL,
  6260. `new_link` VARCHAR(500) NOT NULL,
  6261. `redirect_code` INT(11) NOT NULL,
  6262. `order_id` INT(11) NOT NULL,
  6263. PRIMARY KEY (`id`)
  6264. )
  6265. ENGINE =InnoDB
  6266. DEFAULT CHARSET =utf8;
  6267. INSERT INTO `{%TABLE_PREFIX%}link_redirects` (`id`, `old_link`, `new_link`, `redirect_code`, `order_id`) VALUES
  6268. (1, 'index.php', '/', 301, 1),
  6269. (2, 'register.php', '/register', 301, 2),
  6270. (3, 'login.php', '/login', 301, 3),
  6271. (4, 'site_fees.php', '/site-fees', 301, 4),
  6272. (5, 'content_pages.php\\?page=([a-zA-Z0-9_-]+)', '/%1$s', 301, 14),
  6273. (6, 'auction_details.php\\?name=([a-zA-Z0-9_-]+)&auction_id=([\\d]+)', '/listing/%1$s/%2$d', 301, 10),
  6274. (8, 'stores.php', '/all-stores', 301, 5),
  6275. (9, 'auctions_show.php\\?option=([a-zA-Z0-9_-]+)', '/browse/%1$s', 301, 12),
  6276. (10, 'categories.php\\?category=([a-zA-Z0-9_-]+)&parent_id=([\\d]+)', '/category/%1$s/%2$s', 301, 11),
  6277. (11, 'shop.php\\?name=([a-zA-Z0-9_-]+)&user_id=([\\d]+)', '/store/%1$s', 301, 13),
  6278. (12, '([a-zA-Z0-9_-]+),name,([\\d]+),auction_id,auction_details$', '/listing/%1$s/%2$d', 301, 20),
  6279. (13, '([a-zA-Z0-9_-]+),name,([\\d]+),parent_id,categories$', '/category/%1$s/%2$s', 301, 21),
  6280. (14, '([a-zA-Z0-9_-]+),page,content_pages$', '/%1$s', 301, 24),
  6281. (15, '([a-zA-Z0-9_-]+),option,auctions_show$', '/browse/%1$s', 301, 23),
  6282. (16, 'categories.php$', '/all-categories', 301, 6),
  6283. (17, '([a-zA-Z0-9_-]+),name,([\\d]+),user_id,shop$', '/store/%1$s', 301, 22);
  6284. CREATE TABLE `{%TABLE_PREFIX%}listings` (
  6285. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6286. `listing_type` ENUM('auction', 'product', 'wanted', 'reverse', 'first_bidder') NOT NULL DEFAULT 'auction',
  6287. `name` VARCHAR(255) NOT NULL,
  6288. `subtitle` VARCHAR(255) NOT NULL,
  6289. `search_tags` VARCHAR(255) NOT NULL,
  6290. `description` TEXT NOT NULL,
  6291. `item_condition` VARCHAR(255) NOT NULL,
  6292. `user_id` INT(11) NOT NULL,
  6293. `list_in` ENUM('site', 'store', 'both') NOT NULL DEFAULT 'site',
  6294. `category_id` INT(11) DEFAULT NULL,
  6295. `addl_category_id` INT(11) DEFAULT NULL,
  6296. `currency` VARCHAR(50) NOT NULL,
  6297. `quantity` INT(11) NOT NULL,
  6298. `start_price` DECIMAL(16, 2) NOT NULL,
  6299. `reserve_price` DECIMAL(16, 2) NOT NULL,
  6300. `buyout_price` DECIMAL(16, 2) NOT NULL,
  6301. `enable_make_offer` TINYINT(4) NOT NULL,
  6302. `make_offer_min` DECIMAL(16, 2) NOT NULL,
  6303. `make_offer_max` DECIMAL(16, 2) NOT NULL,
  6304. `apply_tax` TINYINT(4) NOT NULL,
  6305. `bid_increment` DECIMAL(16, 2) NOT NULL,
  6306. `start_time` DATETIME NOT NULL,
  6307. `end_time` DATETIME DEFAULT NULL,
  6308. `duration` INT(11) DEFAULT NULL,
  6309. `hpfeat` TINYINT(4) NOT NULL,
  6310. `catfeat` TINYINT(4) NOT NULL,
  6311. `bold` TINYINT(4) NOT NULL,
  6312. `highlighted` TINYINT(4) NOT NULL,
  6313. `private_auction` TINYINT(4) NOT NULL,
  6314. `disable_sniping` TINYINT(4) NOT NULL,
  6315. `nb_relists` INT(11) NOT NULL,
  6316. `auto_relist_sold` TINYINT(4) NOT NULL,
  6317. `is_relisted` TINYINT(4) NOT NULL,
  6318. `country` INT(11) DEFAULT NULL,
  6319. `state` VARCHAR(255) NOT NULL,
  6320. `address` VARCHAR(255) NOT NULL,
  6321. `postage_settings` TEXT NOT NULL,
  6322. `offline_payment` TEXT NOT NULL,
  6323. `direct_payment` TEXT NOT NULL,
  6324. `voucher_code` VARCHAR(255) NOT NULL,
  6325. `active` TINYINT(4) NOT NULL,
  6326. `approved` TINYINT(4) NOT NULL,
  6327. `closed` TINYINT(4) NOT NULL,
  6328. `deleted` TINYINT(4) NOT NULL,
  6329. `draft` TINYINT(4) NOT NULL,
  6330. `nb_clicks` INT(11) NOT NULL,
  6331. `rollback_data` TEXT NOT NULL,
  6332. `counted_at` DATETIME DEFAULT NULL,
  6333. `last_count_operation` ENUM('none', 'add', 'subtract') DEFAULT NULL,
  6334. `created_at` DATETIME NOT NULL,
  6335. `updated_at` DATETIME DEFAULT NULL,
  6336. PRIMARY KEY (`id`),
  6337. KEY `user_id` (`user_id`),
  6338. KEY `category_id` (`category_id`),
  6339. KEY `addl_category_id` (`addl_category_id`),
  6340. KEY `active_approved_closed_deleted_draft` (`active`, `approved`, `closed`, `deleted`, `draft`),
  6341. KEY `country` (`country`),
  6342. KEY `listing_type` (`listing_type`),
  6343. KEY `counted_at` (`counted_at`),
  6344. CONSTRAINT `{%TABLE_PREFIX%}listings_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6345. ON DELETE CASCADE,
  6346. CONSTRAINT `{%TABLE_PREFIX%}listings_ibfk_2` FOREIGN KEY (`category_id`) REFERENCES `{%TABLE_PREFIX%}categories` (`id`)
  6347. ON DELETE SET NULL,
  6348. CONSTRAINT `{%TABLE_PREFIX%}listings_ibfk_3` FOREIGN KEY (`addl_category_id`) REFERENCES `{%TABLE_PREFIX%}categories` (`id`)
  6349. ON DELETE SET NULL,
  6350. CONSTRAINT `{%TABLE_PREFIX%}listings_ibfk_4` FOREIGN KEY (`country`) REFERENCES `{%TABLE_PREFIX%}locations` (`id`)
  6351. ON DELETE SET NULL
  6352. )
  6353. ENGINE =InnoDB
  6354. DEFAULT CHARSET =utf8;
  6355. CREATE TABLE `{%TABLE_PREFIX%}listings_media` (
  6356. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6357. `value` TEXT NOT NULL,
  6358. `type` ENUM('image', 'video', 'download') NOT NULL DEFAULT 'image',
  6359. `listing_id` INT(11) NOT NULL,
  6360. `order_id` TINYINT(4) NOT NULL,
  6361. `created_at` DATETIME NOT NULL,
  6362. PRIMARY KEY (`id`),
  6363. KEY `listing_id` (`listing_id`),
  6364. CONSTRAINT `{%TABLE_PREFIX%}listings_media_ibfk_1` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  6365. ON DELETE CASCADE
  6366. )
  6367. ENGINE =InnoDB
  6368. DEFAULT CHARSET =utf8;
  6369. CREATE TABLE `{%TABLE_PREFIX%}listings_watch` (
  6370. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6371. `user_id` INT(11) NOT NULL,
  6372. `listing_id` INT(11) NOT NULL,
  6373. `created_at` DATETIME NOT NULL,
  6374. PRIMARY KEY (`id`),
  6375. KEY `user_id` (`user_id`),
  6376. KEY `listing_id` (`listing_id`),
  6377. CONSTRAINT `{%TABLE_PREFIX%}listings_watch_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6378. ON DELETE CASCADE,
  6379. CONSTRAINT `{%TABLE_PREFIX%}listings_watch_ibfk_2` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  6380. ON DELETE CASCADE
  6381. )
  6382. ENGINE =InnoDB
  6383. DEFAULT CHARSET =utf8;
  6384. CREATE TABLE `{%TABLE_PREFIX%}locations` (
  6385. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6386. `name` VARCHAR(255) NOT NULL,
  6387. `full_name` TEXT NOT NULL,
  6388. `iso_code` VARCHAR(10) NOT NULL,
  6389. `parent_id` INT(11) DEFAULT NULL,
  6390. `order_id` INT(11) NOT NULL,
  6391. PRIMARY KEY (`id`),
  6392. KEY `parent_id_order_id_name` (`parent_id`, `order_id`, `name`),
  6393. CONSTRAINT `{%TABLE_PREFIX%}locations_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `{%TABLE_PREFIX%}locations` (`id`)
  6394. ON DELETE CASCADE
  6395. )
  6396. ENGINE =InnoDB
  6397. DEFAULT CHARSET =utf8;
  6398. INSERT INTO `{%TABLE_PREFIX%}locations` (`id`, `name`, `full_name`, `iso_code`, `parent_id`, `order_id`) VALUES
  6399. (1866, 'Albania', '', 'al', NULL, 0),
  6400. (1874, 'Argentina', '', 'ar', NULL, 0),
  6401. (1875, 'Armenia', '', 'am', NULL, 0),
  6402. (1877, 'Australia', '', 'au', NULL, 0),
  6403. (1878, 'Austria', '', 'at', NULL, 0),
  6404. (1879, 'Azerbaijan', '', 'az', NULL, 0),
  6405. (1880, 'Bahamas', '', 'bs', NULL, 0),
  6406. (1881, 'Bahrain', '', 'bh', NULL, 0),
  6407. (1882, 'Bangladesh', '', 'bd', NULL, 0),
  6408. (1883, 'Barbados', '', 'bb', NULL, 0),
  6409. (1884, 'Belarus', '', 'by', NULL, 0),
  6410. (1885, 'Belgium', '', 'be', NULL, 0),
  6411. (1886, 'Belize', '', 'bz', NULL, 0),
  6412. (1887, 'Benin', '', 'bj', NULL, 0),
  6413. (1888, 'Bermuda', '', 'bm', NULL, 0),
  6414. (1889, 'Bhutan', '', 'bt', NULL, 0),
  6415. (1890, 'Bolivia', '', 'bo', NULL, 0),
  6416. (1891, 'Bosnia and Herzegowina', '', 'ba', NULL, 0),
  6417. (1892, 'Botswana', '', 'bw', NULL, 0),
  6418. (1893, 'Bouvet Island', '', 'bv', NULL, 0),
  6419. (1894, 'Brazil', '', 'br', NULL, 0),
  6420. (1895, 'British Indian Ocean Territory', '', 'io', NULL, 0),
  6421. (1896, 'Brunei Darussalam', '', 'bn', NULL, 0),
  6422. (1897, 'Bulgaria', '', 'bg', NULL, 0),
  6423. (1898, 'Burkina Faso', '', 'bf', NULL, 0),
  6424. (1899, 'Burma', '', 'mm', NULL, 0),
  6425. (1900, 'Burundi', '', 'bi', NULL, 0),
  6426. (1901, 'Cambodia', '', 'kh', NULL, 0),
  6427. (1902, 'Cameroon', '', 'cm', NULL, 0),
  6428. (1903, 'Canada', '', 'ca', NULL, 0),
  6429. (1904, 'Cape Verde', '', 'cv', NULL, 0),
  6430. (1905, 'Cayman Islands', '', 'ky', NULL, 0),
  6431. (1906, 'Central African Republic', '', 'gf', NULL, 0),
  6432. (1907, 'Chad', '', 'td', NULL, 0),
  6433. (1908, 'Chile', '', 'cl', NULL, 0),
  6434. (1909, 'China', '', 'cn', NULL, 0),
  6435. (1910, 'Christmas Island', '', 'cx', NULL, 0),
  6436. (1911, 'Cocos (Keeling) Islands', '', 'cc', NULL, 0),
  6437. (1912, 'Colombia', '', 'co', NULL, 0),
  6438. (1913, 'Comoros', '', 'km', NULL, 0),
  6439. (1914, 'Congo', '', 'cg', NULL, 0),
  6440. (1915, 'Congo, the Democratic Republic', '', 'cd', NULL, 0),
  6441. (1916, 'Cook Islands', '', 'ck', NULL, 0),
  6442. (1917, 'Costa Rica', '', 'cr', NULL, 0),
  6443. (1918, 'Cote d&#039;Ivoire', '', 'ci', NULL, 0),
  6444. (1919, 'Croatia', '', 'hr', NULL, 0),
  6445. (1920, 'Cyprus', '', 'cy', NULL, 0),
  6446. (1921, 'Czech Republic', '', 'cz', NULL, 0),
  6447. (1922, 'Denmark', '', 'dk', NULL, 0),
  6448. (1923, 'Djibouti', '', 'dj', NULL, 0),
  6449. (1924, 'Dominica', '', 'dm', NULL, 0),
  6450. (1925, 'Dominican Republic', '', 'do', NULL, 0),
  6451. (1926, 'East Timor', '', 'tl', NULL, 0),
  6452. (1927, 'Ecuador', '', 'ec', NULL, 0),
  6453. (1928, 'Egypt', '', 'eg', NULL, 0),
  6454. (1929, 'El Salvador', '', 'sv', NULL, 0),
  6455. (1931, 'Equatorial Guinea', '', 'gq', NULL, 0),
  6456. (1932, 'Eritrea', '', 'er', NULL, 0),
  6457. (1933, 'Estonia', '', 'ee', NULL, 0),
  6458. (1934, 'Ethiopia', '', 'et', NULL, 0),
  6459. (1935, 'Falkland Islands', '', 'fk', NULL, 0),
  6460. (1936, 'Faroe Islands', '', 'fo', NULL, 0),
  6461. (1937, 'Fiji', '', 'fj', NULL, 0),
  6462. (1938, 'Finland', '', 'fi', NULL, 0),
  6463. (1939, 'France', '', 'fr', NULL, 0),
  6464. (1940, 'French Guiana', '', 'gf', NULL, 0),
  6465. (1941, 'French Polynesia', '', 'pf', NULL, 0),
  6466. (1942, 'French Southern Territories', '', 'tf', NULL, 0),
  6467. (1943, 'Gabon', '', 'ga', NULL, 0),
  6468. (1944, 'Gambia', '', 'gm', NULL, 0),
  6469. (1945, 'Georgia', '', 'ge', NULL, 0),
  6470. (1946, 'Germany', '', 'de', NULL, 0),
  6471. (1947, 'Ghana', '', 'gh', NULL, 0),
  6472. (1948, 'Gibraltar', '', 'gi', NULL, 0),
  6473. (1949, 'Greece', '', 'gr', NULL, 0),
  6474. (1950, 'Greenland', '', 'gl', NULL, 0),
  6475. (1951, 'Grenada', '', 'gd', NULL, 0),
  6476. (1952, 'Guadeloupe', '', 'gp', NULL, 0),
  6477. (1953, 'Guam', '', 'gu', NULL, 0),
  6478. (1954, 'Guatemala', '', 'gt', NULL, 0),
  6479. (1955, 'Guinea', '', 'gn', NULL, 0),
  6480. (1956, 'Guinea-Bissau', '', 'gw', NULL, 0),
  6481. (1957, 'Guyana', '', 'gy', NULL, 0),
  6482. (1958, 'Haiti', '', 'ht', NULL, 0),
  6483. (1959, 'Heard and Mc Donald Islands', '', 'hm', NULL, 0),
  6484. (1960, 'Holy See (Vatican City State)', '', 'va', NULL, 0),
  6485. (1961, 'Honduras', '', 'hn', NULL, 0),
  6486. (1962, 'Hong Kong', '', 'hk', NULL, 0),
  6487. (1963, 'Hungary', '', 'hu', NULL, 0),
  6488. (1964, 'Iceland', '', 'is', NULL, 0),
  6489. (1965, 'India', '', 'in', NULL, 0),
  6490. (1966, 'Indonesia', '', 'id', NULL, 0),
  6491. (1968, 'Israel', '', 'il', NULL, 0),
  6492. (1969, 'Italy', '', 'it', NULL, 0),
  6493. (1970, 'Jamaica', '', 'jm', NULL, 0),
  6494. (1971, 'Japan', '', 'jp', NULL, 0),
  6495. (1972, 'Jordan', '', 'jo', NULL, 0),
  6496. (1973, 'Kazakhstan', '', 'kz', NULL, 0),
  6497. (1974, 'Kenya', '', 'ke', NULL, 0),
  6498. (1975, 'Kiribati', '', 'ki', NULL, 0),
  6499. (1976, 'Korea (South)', '', 'kr', NULL, 0),
  6500. (1977, 'Kuwait', '', 'kw', NULL, 0),
  6501. (1978, 'Kyrgyzstan', '', 'kg', NULL, 0),
  6502. (1980, 'Latvia', '', 'lv', NULL, 0),
  6503. (1981, 'Lebanon', '', 'lb', NULL, 0),
  6504. (1982, 'Lesotho', '', 'ls', NULL, 0),
  6505. (1983, 'Liberia', '', 'lr', NULL, 0),
  6506. (1984, 'Liechtenstein', '', 'li', NULL, 0),
  6507. (1985, 'Lithuania', '', 'lt', NULL, 0),
  6508. (1986, 'Luxembourg', '', 'lu', NULL, 0),
  6509. (1987, 'Macau', '', 'mo', NULL, 0),
  6510. (1988, 'Macedonia', '', 'mk', NULL, 0),
  6511. (1989, 'Madagascar', '', 'mg', NULL, 0),
  6512. (1990, 'Malawi', '', 'mw', NULL, 0),
  6513. (1991, 'Malaysia', '', 'my', NULL, 0),
  6514. (1992, 'Maldives', '', 'mv', NULL, 0),
  6515. (1993, 'Mali', '', 'ml', NULL, 0),
  6516. (1994, 'Malta', '', 'mt', NULL, 0),
  6517. (1995, 'Marshall Islands', '', 'mh', NULL, 0),
  6518. (1996, 'Martinique', '', 'mq', NULL, 0),
  6519. (1997, 'Mauritania', '', 'mr', NULL, 0),
  6520. (1998, 'Mauritius', '', 'mu', NULL, 0),
  6521. (1999, 'Mayotte', '', 'yt', NULL, 0),
  6522. (2000, 'Mexico', '', 'mx', NULL, 0),
  6523. (2001, 'Micronesia, Federated States o', '', 'fm', NULL, 0),
  6524. (2002, 'Moldova, Republic of', '', 'md', NULL, 0),
  6525. (2003, 'Monaco', '', 'mc', NULL, 0),
  6526. (2004, 'Mongolia', '', 'mn', NULL, 0),
  6527. (2005, 'Montserrat', '', 'ms', NULL, 0),
  6528. (2006, 'Morocco', '', 'ma', NULL, 0),
  6529. (2007, 'Mozambique', '', 'mz', NULL, 0),
  6530. (2008, 'Namibia', '', 'na', NULL, 0),
  6531. (2009, 'Nauru', '', 'nr', NULL, 0),
  6532. (2010, 'Nepal', '', 'np', NULL, 0),
  6533. (2011, 'Netherlands', '', 'nl', NULL, 0),
  6534. (2012, 'Netherlands Antilles', '', 'an', NULL, 0),
  6535. (2013, 'New Caledonia', '', 'nc', NULL, 0),
  6536. (2014, 'New Zealand', '', 'nz', NULL, 0),
  6537. (2015, 'Nicaragua', '', 'ni', NULL, 0),
  6538. (2016, 'Niger', '', 'ne', NULL, 0),
  6539. (2017, 'Nigeria', '', 'ng', NULL, 0),
  6540. (2018, 'Niuev', '', 'nu', NULL, 0),
  6541. (2019, 'Norfolk Island', '', 'nf', NULL, 0),
  6542. (2020, 'Northern Ireland', '', '', NULL, 0),
  6543. (2021, 'Northern Mariana Islands', '', 'mp', NULL, 0),
  6544. (2022, 'Norway', '', 'no', NULL, 0),
  6545. (2023, 'Oman', '', 'om', NULL, 0),
  6546. (2024, 'Pakistan', '', 'pk', NULL, 0),
  6547. (2025, 'Palau', '', 'pw', NULL, 0),
  6548. (2026, 'Panama', '', 'pa', NULL, 0),
  6549. (2027, 'Papua New Guinea', '', 'pg', NULL, 0),
  6550. (2028, 'Paraguay', '', 'py', NULL, 0),
  6551. (2029, 'Peru', '', 'pe', NULL, 0),
  6552. (2030, 'Philippines', '', 'ph', NULL, 0),
  6553. (2031, 'Pitcairn', '', 'pn', NULL, 0),
  6554. (2032, 'Poland', '', 'pl', NULL, 0),
  6555. (2033, 'Portugal', '', 'pt', NULL, 0),
  6556. (2034, 'Puerto Rico', '', 'pr', NULL, 0),
  6557. (2035, 'Qatar', '', 'qa', NULL, 0),
  6558. (2036, 'Reunion', '', 're', NULL, 0),
  6559. (2037, 'Romania', '', 'ro', NULL, 0),
  6560. (2038, 'Russian Federation', '', 'ru', NULL, 0),
  6561. (2039, 'Rwanda', '', 'rw', NULL, 0),
  6562. (2040, 'Saint Kitts and Nevis', '', 'kn', NULL, 0),
  6563. (2041, 'Saint Lucia', '', 'lc', NULL, 0),
  6564. (2042, 'Saint Vincent and the Grenadin', '', 'vc', NULL, 0),
  6565. (2043, 'Samoa (Independent)', '', 'ws', NULL, 0),
  6566. (2044, 'San Marino', '', 'sm', NULL, 0),
  6567. (2045, 'Sao Tome and Principe', '', 'st', NULL, 0),
  6568. (2046, 'Saudi Arabia', '', 'sa', NULL, 0),
  6569. (2048, 'Senegal', '', 'sn', NULL, 0),
  6570. (2049, 'Seychelles', '', 'sc', NULL, 0),
  6571. (2050, 'Sierra Leone', '', 'sl', NULL, 0),
  6572. (2051, 'Singapore', '', 'sg', NULL, 0),
  6573. (2052, 'Slovakia', '', 'sk', NULL, 0),
  6574. (2053, 'Slovenia', '', 'si', NULL, 0),
  6575. (2054, 'Solomon Islands', '', 'sb', NULL, 0),
  6576. (2055, 'Somalia', '', 'so', NULL, 0),
  6577. (2056, 'South Africa', '', 'za', NULL, 0),
  6578. (2057, 'South Georgia and the South Sa', '', 'gs', NULL, 0),
  6579. (2058, 'Spain', '', 'es', NULL, 0),
  6580. (2059, 'Sri Lanka', '', 'lk', NULL, 0),
  6581. (2060, 'St. Helena', '', 'sh', NULL, 0),
  6582. (2061, 'St. Pierre and Miquelon', '', 'pm', NULL, 0),
  6583. (2062, 'Suriname', '', 'sr', NULL, 0),
  6584. (2063, 'Svalbard and Jan Mayen Islands', '', 'sj', NULL, 0),
  6585. (2064, 'Swaziland', '', 'sz', NULL, 0),
  6586. (2065, 'Sweden', '', 'se', NULL, 0),
  6587. (2066, 'Switzerland', '', 'ch', NULL, 0),
  6588. (2067, 'Taiwan', '', 'tw', NULL, 0),
  6589. (2068, 'Tajikistan', '', 'tj', NULL, 0),
  6590. (2069, 'Tanzania', '', 'tz', NULL, 0),
  6591. (2070, 'Thailand', '', 'th', NULL, 0),
  6592. (2071, 'Togo', '', 'tg', NULL, 0),
  6593. (2072, 'Tokelau', '', 'tk', NULL, 0),
  6594. (2073, 'Tonga', '', 'to', NULL, 0),
  6595. (2074, 'Trinidad and Tobago', '', 'tt', NULL, 0),
  6596. (2075, 'Tunisia', '', 'tn', NULL, 0),
  6597. (2076, 'Turkey', '', 'tr', NULL, 0),
  6598. (2077, 'Turkmenistan', '', 'tm', NULL, 0),
  6599. (2078, 'Turks and Caicos Islands', '', 'tc', NULL, 0),
  6600. (2079, 'Tuvalu', '', 'tv', NULL, 0),
  6601. (2080, 'Uganda', '', 'ug', NULL, 0),
  6602. (2081, 'Ukraine', '', 'ua', NULL, 0),
  6603. (2082, 'United Arab Emirates', '', 'ae', NULL, 0),
  6604. (2083, 'United Kingdom', '', 'gb', NULL, -1),
  6605. (2084, 'United States', '', 'us', NULL, -2),
  6606. (2085, 'Uruguay', '', 'uy', NULL, 0),
  6607. (2086, 'Uzbekistan', '', 'uz', NULL, 0),
  6608. (2087, 'Vanuatu', '', 'vu', NULL, 0),
  6609. (2088, 'Venezuela', '', 've', NULL, 0),
  6610. (2089, 'Vietnam', '', 'vn', NULL, 0),
  6611. (2090, 'Virgin Islands (British)', '', 'vg', NULL, 0),
  6612. (2091, 'Virgin Islands (U.S.)', '', 'vi', NULL, 0),
  6613. (2093, 'Wallis and Futuna Islands', '', 'wf', NULL, 0),
  6614. (2094, 'Western Sahara', '', 'eh', NULL, 0),
  6615. (2095, 'Yemen', '', 'ye', NULL, 0),
  6616. (2096, 'Zambia', '', 'zm', NULL, 0),
  6617. (2097, 'Zimbabwe', '', 'zw', NULL, 0),
  6618. (2098, 'Rep Of Ireland', '', 'ie', NULL, 0),
  6619. (2104, 'Aberdeenshire', '', '', 2083, 0),
  6620. (2105, 'Anglesey', '', '', 2083, 0),
  6621. (2106, 'Alderney', '', '', 2083, 0),
  6622. (2107, 'Alabama', '', 'al', 2084, 0),
  6623. (2108, 'Alaska', '', 'ak', 2084, 0),
  6624. (2109, 'Arizona', '', 'az', 2084, 0),
  6625. (2110, 'Arkansas', '', 'ar', 2084, 0),
  6626. (2111, 'California', '', 'ca', 2084, 0),
  6627. (2112, 'Colorado', '', 'co', 2084, 0),
  6628. (2113, 'Connecticut', '', 'ct', 2084, 0),
  6629. (2114, 'Delaware', '', 'de', 2084, 0),
  6630. (2115, 'Florida', '', 'fl', 2084, 0),
  6631. (2116, 'Georgia', '', 'ga', 2084, 0),
  6632. (2117, 'Hawaii', '', 'hi', 2084, 0),
  6633. (2118, 'Idaho', '', 'id', 2084, 0),
  6634. (2119, 'Illinois', '', 'il', 2084, 0),
  6635. (2120, 'Indiana', '', 'in', 2084, 0),
  6636. (2121, 'Iowa', '', 'ia', 2084, 0),
  6637. (2122, 'Kansas', '', 'ks', 2084, 0),
  6638. (2123, 'Kentucky', '', 'ky', 2084, 0),
  6639. (2124, 'Louisiana', '', 'la', 2084, 0),
  6640. (2125, 'Maine', '', 'me', 2084, 0),
  6641. (2126, 'Maryland', '', 'md', 2084, 0),
  6642. (2127, 'Massachusetts', '', 'ma', 2084, 0),
  6643. (2128, 'Michigan', '', 'mi', 2084, 0),
  6644. (2129, 'Minnesota', '', 'mn', 2084, 0),
  6645. (2130, 'Mississippi', '', 'ms', 2084, 0),
  6646. (2131, 'Missouri', '', 'mo', 2084, 0),
  6647. (2132, 'Montana', '', 'mt', 2084, 0),
  6648. (2133, 'Nebraska', '', 'ne', 2084, 0),
  6649. (2134, 'Nevada', '', 'nv', 2084, 0),
  6650. (2135, 'New Hampshire', '', 'nh', 2084, 0),
  6651. (2136, 'New Jersey', '', 'nj', 2084, 0),
  6652. (2137, 'New Mexico', '', 'nm', 2084, 0),
  6653. (2138, 'New York', '', 'ny', 2084, 0),
  6654. (2139, 'North Carolina', '', 'nc', 2084, 0),
  6655. (2140, 'North Dakota', '', 'nd', 2084, 0),
  6656. (2141, 'Ohio', '', 'oh', 2084, 0),
  6657. (2142, 'Oklahoma', '', 'ok', 2084, 0),
  6658. (2143, 'Oregon', '', 'or', 2084, 0),
  6659. (2144, 'Pennsylvania', '', 'pa', 2084, 0),
  6660. (2145, 'Rhode Island', '', 'ri', 2084, 0),
  6661. (2146, 'South Carolina', '', 'sc', 2084, 0),
  6662. (2147, 'South Dakota', '', 'sd', 2084, 0),
  6663. (2148, 'Tennessee', '', 'tn', 2084, 0),
  6664. (2149, 'Texas', '', 'tx', 2084, 0),
  6665. (2150, 'Utah', '', 'ut', 2084, 0),
  6666. (2151, 'Vermont', '', 'vt', 2084, 0),
  6667. (2152, 'Virginia', '', 'va', 2084, 0),
  6668. (2153, 'Washington', '', 'wa', 2084, 0),
  6669. (2154, 'West Virginia', '', 'wv', 2084, 0),
  6670. (2155, 'Wisconsin', '', 'wi', 2084, 0),
  6671. (2156, 'Wyoming', '', 'wy', 2084, 0),
  6672. (2157, 'Angus', '', '', 2083, 0),
  6673. (2158, 'Co. Antrim', '', '', 2083, 0),
  6674. (2159, 'Argyllshire', '', '', 2083, 0),
  6675. (2160, 'Co. Armagh', '', '', 2083, 0),
  6676. (2161, 'Avon', '', '', 2083, 0),
  6677. (2162, 'Ayrshire', '', '', 2083, 0),
  6678. (2163, 'Banffshire', '', '', 2083, 0),
  6679. (2164, 'Bedfordshire', '', '', 2083, 0),
  6680. (2165, 'Berwickshire', '', '', 2083, 0),
  6681. (2166, 'Buckinghamshire', '', '', 2083, 0),
  6682. (2167, 'Borders', '', '', 2083, 0),
  6683. (2168, 'Breconshire', '', '', 2083, 0),
  6684. (2169, 'Berkshire', '', '', 2083, 0),
  6685. (2170, 'Bute', '', '', 2083, 0),
  6686. (2171, 'Caernarvonshire', '', '', 2083, 0),
  6687. (2172, 'Caithness', '', '', 2083, 0),
  6688. (2173, 'Cambridgeshire', '', '', 2083, 0),
  6689. (2174, 'Channel Islands', '', '', 2083, 0),
  6690. (2175, 'Cheshire', '', '', 2083, 0),
  6691. (2176, 'Cleveland', '', '', 2083, 0),
  6692. (2177, 'Cumbria', '', '', 2083, 0),
  6693. (2178, 'Carmarthenshire', '', '', 2083, 0),
  6694. (2179, 'Cornwall', '', '', 2083, 0),
  6695. (2180, 'Cumberland', '', '', 2083, 0),
  6696. (2181, 'Derbyshire', '', '', 2083, 0),
  6697. (2182, 'Devon', '', '', 2083, 0),
  6698. (2183, 'Dumfries-shire', '', '', 2083, 0),
  6699. (2184, 'Dumfries and Galloway', '', '', 2083, 0),
  6700. (2185, 'Dunbartonshire', '', '', 2083, 0),
  6701. (2186, 'Dorset', '', '', 2083, 0),
  6702. (2187, 'Durham', '', '', 2083, 0),
  6703. (2188, 'Co. Down', '', '', 2083, 0),
  6704. (2189, 'East Lothian', '', '', 2083, 0),
  6705. (2190, 'Essex', '', '', 2083, 0),
  6706. (2191, 'Fife', '', '', 2083, 0),
  6707. (2192, 'Co. Fermanagh', '', '', 2083, 0),
  6708. (2193, 'Glamorgan', '', '', 2083, 0),
  6709. (2194, 'Gloucestershire', '', '', 2083, 0),
  6710. (2195, 'Grampian', '', '', 2083, 0),
  6711. (2196, 'Gwent', '', '', 2083, 0),
  6712. (2197, 'Hampshire', '', '', 2083, 0),
  6713. (2198, 'Herefordshire', '', '', 2083, 0),
  6714. (2199, 'Hertfordshire', '', '', 2083, 0),
  6715. (2200, 'Humberside', '', '', 2083, 0),
  6716. (2201, 'Isle of Man', '', '', 2083, 0),
  6717. (2202, 'Isle of Wight', '', '', 2083, 0),
  6718. (2203, 'Kent', '', '', 2083, 0),
  6719. (2204, 'Lancashire', '', '', 2083, 0),
  6720. (2205, 'Leicestershire', '', '', 2083, 0),
  6721. (2206, 'Lincolnshire', '', '', 2083, 0),
  6722. (2207, 'Lanarkshire', '', '', 2083, 0),
  6723. (2208, 'London', '', '', 2083, 0),
  6724. (2209, 'Lothian', '', '', 2083, 0),
  6725. (2210, 'Middlesex', '', '', 2083, 0),
  6726. (2211, 'Merionethshire', '', '', 2083, 0),
  6727. (2212, 'Midlothian', '', '', 2083, 0),
  6728. (2213, 'Northumberland', '', '', 2083, 0),
  6729. (2214, 'Norfolk', '', '', 2083, 0),
  6730. (2215, 'Northamptonshire', '', '', 2083, 0),
  6731. (2216, 'Nottinghamshire', '', '', 2083, 0),
  6732. (2217, 'Oxfordshire', '', '', 2083, 0),
  6733. (2218, 'Orkney', '', '', 2083, 0),
  6734. (2219, 'Pembrokeshire', '', '', 2083, 0),
  6735. (2220, 'Perth', '', '', 2083, 0),
  6736. (2221, 'Rutland', '', '', 2083, 0),
  6737. (2222, 'Shropshire', '', '', 2083, 0),
  6738. (2223, 'Suffolk', '', '', 2083, 0),
  6739. (2224, 'Shetland', '', '', 2083, 0),
  6740. (2225, 'Somerset', '', '', 2083, 0),
  6741. (2226, 'Surrey', '', '', 2083, 0),
  6742. (2227, 'Sussex', '', '', 2083, 0),
  6743. (2228, 'Staffordshire', '', '', 2083, 0),
  6744. (2229, 'Warwickshire', '', '', 2083, 0),
  6745. (2230, 'Wiltshire', '', '', 2083, 0),
  6746. (2231, 'Yorkshire', '', '', 2083, 0),
  6747. (2232, 'Australian Capital Territory', '', '', 1877, 0),
  6748. (2233, 'New South Wales', '', '', 1877, 0),
  6749. (2234, 'Victoria', '', '', 1877, 0),
  6750. (2235, 'Queensland', '', '', 1877, 0),
  6751. (2236, 'South Australia', '', '', 1877, 0),
  6752. (2237, 'Western Australia', '', '', 1877, 0),
  6753. (2238, 'Tasmania', '', '', 1877, 0),
  6754. (2239, 'Northern Territory', '', '', 1877, 0),
  6755. (2241, 'Dublin', '', '', 2098, 0),
  6756. (2242, 'Wicklow', '', '', 2098, 0),
  6757. (2243, 'Wexford', '', '', 2098, 0),
  6758. (2244, 'Carlow', '', '', 2098, 0),
  6759. (2245, 'Kildare', '', '', 2098, 0),
  6760. (2246, 'Meath', '', '', 2098, 0),
  6761. (2247, 'Louth', '', '', 2098, 0),
  6762. (2248, 'Monaghan', '', '', 2098, 0),
  6763. (2249, 'Cavan', '', '', 2098, 0),
  6764. (2250, 'Longford', '', '', 2098, 0),
  6765. (2251, 'Westmeath', '', '', 2098, 0),
  6766. (2252, 'Offaly', '', '', 2098, 0),
  6767. (2253, 'Laois', '', '', 2098, 0),
  6768. (2254, 'Kilkenny', '', '', 2098, 0),
  6769. (2255, 'Waterford', '', '', 2098, 0),
  6770. (2256, 'Cork', '', '', 2098, 0),
  6771. (2257, 'Kerry', '', '', 2098, 0),
  6772. (2258, 'Limerick', '', '', 2098, 0),
  6773. (2259, 'Tipperary', '', '', 2098, 0),
  6774. (2260, 'Clare', '', '', 2098, 0),
  6775. (2261, 'Galway', '', '', 2098, 0),
  6776. (2262, 'Mayo', '', '', 2098, 0),
  6777. (2263, 'Roscommon', '', '', 2098, 0),
  6778. (2264, 'Sligo', '', '', 2098, 0),
  6779. (2265, 'Leitrim', '', '', 2098, 0),
  6780. (2266, 'Donegal', '', '', 2098, 0),
  6781. (2267, 'Ontario', '', '', 1903, 0),
  6782. (2268, 'Quebec', '', '', 1903, 0),
  6783. (2269, 'Nova Scotia', '', '', 1903, 0),
  6784. (2270, 'New Brunswick', '', '', 1903, 0),
  6785. (2271, 'Manitoba', '', '', 1903, 0),
  6786. (2272, 'British Columbia', '', '', 1903, 0),
  6787. (2273, 'Prince Edward Island', '', '', 1903, 0),
  6788. (2274, 'Saskatchewan', '', '', 1903, 0),
  6789. (2275, 'Alberta', '', '', 1903, 0),
  6790. (2276, 'Newfoundland and Labrador', '', '', 1903, 0),
  6791. (2277, 'Western Cape', '', '', 2056, 0),
  6792. (2278, 'Northern Cape', '', '', 2056, 0),
  6793. (2279, 'Eastern Cape', '', '', 2056, 0),
  6794. (2280, 'KwaZulu-Natal', '', '', 2056, 0),
  6795. (2281, 'Free State', '', '', 2056, 0),
  6796. (2282, 'North West', '', '', 2056, 0),
  6797. (2283, 'Gauteng', '', '', 2056, 0),
  6798. (2284, 'Mpumalanga', '', '', 2056, 0),
  6799. (2285, 'Limpopo', '', '', 2056, 0),
  6800. (2294, 'Alsace', '', '', 1939, 0),
  6801. (2295, 'Aquitaine', '', '', 1939, 0),
  6802. (2296, 'Auvergne', '', '', 1939, 0),
  6803. (2297, 'Basse-Normandie', '', '', 1939, 0),
  6804. (2298, 'Bourgogne', '', '', 1939, 0),
  6805. (2299, 'Bretagne', '', '', 1939, 0),
  6806. (2300, 'Centre', '', '', 1939, 0),
  6807. (2301, 'Champagne-Ardenne', '', '', 1939, 0),
  6808. (2302, 'Corse', '', '', 1939, 0),
  6809. (2303, 'Franche-Comté', '', '', 1939, 0),
  6810. (2304, 'Haute-Normandie', '', '', 1939, 0),
  6811. (2305, 'Ile-de-France', '', '', 1939, 0),
  6812. (2306, 'Languedoc-Roussillon', '', '', 1939, 0),
  6813. (2307, 'Limousin', '', '', 1939, 0),
  6814. (2308, 'Lorraine', '', '', 1939, 0),
  6815. (2309, 'Midi-Pyrénées', '', '', 1939, 0),
  6816. (2310, 'Nord-Pas-de-Calais', '', '', 1939, 0),
  6817. (2311, 'Pays de la Loire', '', '', 1939, 0),
  6818. (2312, 'Picardie', '', '', 1939, 0),
  6819. (2313, 'Poitou-Charentes', '', '', 1939, 0),
  6820. (2314, 'Provence-Alpes-Côte-d&#039;Azur', '', '', 1939, 0),
  6821. (2315, 'Rhône-Alpes', '', '', 1939, 0);
  6822. CREATE TABLE `{%TABLE_PREFIX%}messaging` (
  6823. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6824. `topic_id` INT(11) DEFAULT NULL
  6825. COMMENT 'one to many with id',
  6826. `topic_title` VARCHAR(255) NOT NULL
  6827. COMMENT 'generated automatically',
  6828. `title` VARCHAR(255) NOT NULL
  6829. COMMENT 'message/topic title - can be generated automatically',
  6830. `content` TEXT NOT NULL,
  6831. `sender_id` INT(11) NOT NULL,
  6832. `receiver_id` INT(11) NOT NULL,
  6833. `listing_id` INT(11) DEFAULT NULL
  6834. COMMENT 'if set, we have a public question',
  6835. `sale_id` INT(11) DEFAULT NULL
  6836. COMMENT 'if set, the conversation will be linked to a sale (one to one)',
  6837. `flag_read` TINYINT(4) NOT NULL
  6838. COMMENT '0 = unread, 1 = read',
  6839. `sender_deleted` TINYINT(4) NOT NULL,
  6840. `receiver_deleted` TINYINT(4) NOT NULL,
  6841. `created_at` DATETIME NOT NULL,
  6842. `updated_at` DATETIME DEFAULT NULL,
  6843. PRIMARY KEY (`id`),
  6844. KEY `sender_id` (`sender_id`),
  6845. KEY `receiver_id` (`receiver_id`),
  6846. KEY `listing_id` (`listing_id`),
  6847. KEY `topic_id` (`topic_id`),
  6848. KEY `sale_id` (`sale_id`),
  6849. CONSTRAINT `{%TABLE_PREFIX%}messaging_ibfk_1` FOREIGN KEY (`sender_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6850. ON DELETE CASCADE,
  6851. CONSTRAINT `{%TABLE_PREFIX%}messaging_ibfk_2` FOREIGN KEY (`receiver_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6852. ON DELETE CASCADE,
  6853. CONSTRAINT `{%TABLE_PREFIX%}messaging_ibfk_3` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  6854. ON DELETE CASCADE,
  6855. CONSTRAINT `{%TABLE_PREFIX%}messaging_ibfk_4` FOREIGN KEY (`topic_id`) REFERENCES `{%TABLE_PREFIX%}messaging` (`id`)
  6856. ON DELETE CASCADE,
  6857. CONSTRAINT `{%TABLE_PREFIX%}messaging_ibfk_5` FOREIGN KEY (`sale_id`) REFERENCES `{%TABLE_PREFIX%}sales` (`id`)
  6858. ON DELETE SET NULL
  6859. )
  6860. ENGINE =InnoDB
  6861. DEFAULT CHARSET =utf8;
  6862. CREATE TABLE `{%TABLE_PREFIX%}newsletters` (
  6863. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6864. `title` VARCHAR(255) NOT NULL,
  6865. `content` TEXT NOT NULL,
  6866. `active` TINYINT(4) NOT NULL,
  6867. `created_at` DATETIME NOT NULL,
  6868. `updated_at` DATETIME DEFAULT NULL,
  6869. PRIMARY KEY (`id`)
  6870. )
  6871. ENGINE =InnoDB
  6872. DEFAULT CHARSET =utf8;
  6873. CREATE TABLE `{%TABLE_PREFIX%}newsletters_recipients` (
  6874. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6875. `newsletter_id` INT(11) DEFAULT NULL,
  6876. `user_id` INT(11) NOT NULL,
  6877. `email` VARCHAR(255) NOT NULL,
  6878. PRIMARY KEY (`id`),
  6879. KEY `newsletter_id` (`newsletter_id`),
  6880. KEY `user_id` (`user_id`),
  6881. CONSTRAINT `{%TABLE_PREFIX%}newsletters_recipients_ibfk_1` FOREIGN KEY (`newsletter_id`) REFERENCES `{%TABLE_PREFIX%}newsletters` (`id`)
  6882. ON DELETE CASCADE,
  6883. CONSTRAINT `{%TABLE_PREFIX%}newsletters_recipients_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6884. ON DELETE CASCADE
  6885. )
  6886. ENGINE =InnoDB
  6887. DEFAULT CHARSET =utf8;
  6888. CREATE TABLE `{%TABLE_PREFIX%}offers` (
  6889. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6890. `type` ENUM('offer', 'swap', 'reverse') NOT NULL DEFAULT 'offer',
  6891. `listing_id` INT(11) NOT NULL,
  6892. `user_id` INT(11) DEFAULT NULL,
  6893. `quantity` INT(11) NOT NULL DEFAULT '1',
  6894. `amount` DECIMAL(16, 2) NOT NULL,
  6895. `status` ENUM('pending', 'declined', 'accepted', 'withdrawn') NOT NULL DEFAULT 'pending',
  6896. `comments` TEXT NOT NULL,
  6897. `created_at` DATETIME NOT NULL,
  6898. `updated_at` DATETIME DEFAULT NULL,
  6899. PRIMARY KEY (`id`),
  6900. KEY `listing_id` (`listing_id`),
  6901. KEY `user_id` (`user_id`),
  6902. CONSTRAINT `{%TABLE_PREFIX%}offers_ibfk_1` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  6903. ON DELETE CASCADE,
  6904. CONSTRAINT `{%TABLE_PREFIX%}offers_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6905. ON DELETE SET NULL
  6906. )
  6907. ENGINE =InnoDB
  6908. DEFAULT CHARSET =utf8;
  6909. CREATE TABLE `{%TABLE_PREFIX%}offline_payment_methods` (
  6910. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6911. `name` VARCHAR(255) NOT NULL,
  6912. `logo` TEXT NOT NULL,
  6913. `order_id` INT(11) NOT NULL,
  6914. PRIMARY KEY (`id`),
  6915. KEY `order_id_name` (`order_id`, `name`)
  6916. )
  6917. ENGINE =InnoDB
  6918. DEFAULT CHARSET =utf8;
  6919. INSERT INTO `{%TABLE_PREFIX%}offline_payment_methods` (`id`, `name`, `logo`, `order_id`) VALUES
  6920. (4, 'Visa', '', 1),
  6921. (5, 'Mastercard', '', 2),
  6922. (6, 'Bank Transfer', '', 3),
  6923. (7, 'Direct Debit', '', 4),
  6924. (8, 'American Express', '', 0),
  6925. (9, 'Money Order', '', 5);
  6926. CREATE TABLE `{%TABLE_PREFIX%}payment_gateways` (
  6927. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6928. `name` VARCHAR(255) NOT NULL,
  6929. `logo_path` TEXT NOT NULL,
  6930. `type` ENUM('online', 'offline') NOT NULL DEFAULT 'offline',
  6931. `order_id` INT(11) NOT NULL,
  6932. `site_fees` TINYINT(4) NOT NULL,
  6933. `direct_payment` TINYINT(4) NOT NULL,
  6934. PRIMARY KEY (`id`)
  6935. )
  6936. ENGINE =InnoDB
  6937. DEFAULT CHARSET =utf8;
  6938. INSERT INTO `{%TABLE_PREFIX%}payment_gateways` (`id`, `name`, `logo_path`, `type`, `order_id`, `site_fees`, `direct_payment`)
  6939. VALUES
  6940. (1, 'PayPal', '/img/logos/paypal.png', 'online', 0, 0, 0),
  6941. (2, 'WorldPay', '/img/logos/worldpay.png', 'online', 0, 0, 0),
  6942. (3, 'PaymentSimulator', '/img/logos/simulator.png', 'online', 0, 1, 1),
  6943. (4, 'Nochex', '/img/logos/nochex.png', 'online', 0, 0, 0),
  6944. (5, 'SagePay', '/img/logos/sagepay.png', 'online', 0, 0, 0),
  6945. (6, 'TCheckout', '/img/logos/2checkout.png', 'online', 0, 0, 0),
  6946. (7, 'Skrill', '/img/logos/skrill.png', 'online', 0, 0, 0),
  6947. (8, 'Paymate', '/img/logos/paymate.png', 'online', 0, 0, 0),
  6948. (10, 'AuthorizeNet', '/img/logos/authorizenet.png', 'online', 0, 0, 0),
  6949. (11, 'AmazonPayments', '/img/logos/amazon-payments.png', 'online', 0, 0, 0),
  6950. (12, 'PayPalSandbox', '/img/logos/paypal-sandbox.png', 'online', 0, 0, 0);
  6951. CREATE TABLE `{%TABLE_PREFIX%}payment_gateways_settings` (
  6952. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6953. `name` VARCHAR(255) NOT NULL,
  6954. `value` TEXT NOT NULL,
  6955. `gateway_id` INT(11) NOT NULL,
  6956. `user_id` INT(11) DEFAULT NULL,
  6957. PRIMARY KEY (`id`),
  6958. KEY `gateway_id` (`gateway_id`),
  6959. KEY `user_id` (`user_id`),
  6960. CONSTRAINT `{%TABLE_PREFIX%}payment_gateways_settings_ibfk_4` FOREIGN KEY (`gateway_id`) REFERENCES `{%TABLE_PREFIX%}payment_gateways` (`id`)
  6961. ON DELETE CASCADE,
  6962. CONSTRAINT `{%TABLE_PREFIX%}payment_gateways_settings_ibfk_5` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6963. ON DELETE CASCADE
  6964. )
  6965. ENGINE =InnoDB
  6966. DEFAULT CHARSET =utf8;
  6967. CREATE TABLE `{%TABLE_PREFIX%}reputation` (
  6968. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6969. `user_id` INT(11) NOT NULL,
  6970. `poster_id` INT(11) DEFAULT NULL,
  6971. `sale_listing_id` INT(11) DEFAULT NULL,
  6972. `listing_name` VARCHAR(255) NOT NULL,
  6973. `score` DECIMAL(16, 2) NOT NULL,
  6974. `comments` TEXT NOT NULL,
  6975. `reputation_type` ENUM('sale', 'purchase') NOT NULL DEFAULT 'sale',
  6976. `posted` TINYINT(4) NOT NULL,
  6977. `created_at` DATETIME NOT NULL,
  6978. `updated_at` DATETIME DEFAULT NULL,
  6979. PRIMARY KEY (`id`),
  6980. KEY `posted` (`posted`),
  6981. KEY `user_id_posted` (`user_id`, `posted`),
  6982. KEY `poster_id_posted` (`poster_id`, `posted`),
  6983. KEY `sale_listing_id` (`sale_listing_id`),
  6984. CONSTRAINT `{%TABLE_PREFIX%}reputation_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6985. ON DELETE CASCADE,
  6986. CONSTRAINT `{%TABLE_PREFIX%}reputation_ibfk_4` FOREIGN KEY (`sale_listing_id`) REFERENCES `{%TABLE_PREFIX%}sales_listings` (`id`)
  6987. ON DELETE SET NULL,
  6988. CONSTRAINT `{%TABLE_PREFIX%}reputation_ibfk_5` FOREIGN KEY (`poster_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  6989. ON DELETE SET NULL
  6990. )
  6991. ENGINE =InnoDB
  6992. DEFAULT CHARSET =utf8;
  6993. CREATE TABLE `{%TABLE_PREFIX%}sales` (
  6994. `id` INT(11) NOT NULL AUTO_INCREMENT,
  6995. `buyer_id` INT(11) DEFAULT NULL,
  6996. `seller_id` INT(11) DEFAULT NULL,
  6997. `flag_payment` TINYINT(4) NOT NULL
  6998. COMMENT '0 - unpaid, 1 - paid, 2 - paid with direct payment',
  6999. `flag_shipping` TINYINT(4) NOT NULL,
  7000. `sale_data` TEXT NOT NULL,
  7001. `postage_amount` DECIMAL(16, 2) NOT NULL,
  7002. `insurance_amount` DECIMAL(16, 2) NOT NULL,
  7003. `tax_rate` DECIMAL(16, 2) DEFAULT NULL,
  7004. `active` TINYINT(4) NOT NULL
  7005. COMMENT 'sale fee payment flag',
  7006. `email_sent` TINYINT(4) NOT NULL,
  7007. `seller_deleted` TINYINT(4) NOT NULL,
  7008. `buyer_deleted` TINYINT(4) NOT NULL,
  7009. `edit_locked` TINYINT(4) NOT NULL,
  7010. `created_at` DATETIME NOT NULL,
  7011. `updated_at` DATETIME DEFAULT NULL,
  7012. `expires_at` DATETIME DEFAULT NULL
  7013. COMMENT 'if set, sale will be reverted after date has passed',
  7014. `billing_address_id` INT(11) DEFAULT NULL,
  7015. `shipping_address_id` INT(11) DEFAULT NULL,
  7016. `pending` TINYINT(4) NOT NULL
  7017. COMMENT '1 - shopping cart/pending force payment, 0 - active sale',
  7018. `user_token` VARCHAR(255) NOT NULL
  7019. COMMENT 'buyer user token (cookie) - used by shopping carts',
  7020. `messaging_topic_id` INT(11) DEFAULT NULL
  7021. COMMENT 'if set, it means we have a messaging topic started on this sale, otherwise we create a new one',
  7022. `voucher_details` TEXT COMMENT 'voucher code, reduction amount and reduction type',
  7023. PRIMARY KEY (`id`),
  7024. KEY `seller_id` (`seller_id`),
  7025. KEY `buyer_id` (`buyer_id`),
  7026. KEY `pending` (`pending`),
  7027. KEY `user_token` (`user_token`),
  7028. KEY `messaging_topic_id` (`messaging_topic_id`),
  7029. KEY `billing_address_id` (`billing_address_id`),
  7030. KEY `shipping_address_id` (`shipping_address_id`),
  7031. KEY `expires_at` (`expires_at`),
  7032. CONSTRAINT `{%TABLE_PREFIX%}sales_ibfk_1` FOREIGN KEY (`seller_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  7033. ON DELETE SET NULL,
  7034. CONSTRAINT `{%TABLE_PREFIX%}sales_ibfk_2` FOREIGN KEY (`buyer_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  7035. ON DELETE SET NULL,
  7036. CONSTRAINT `{%TABLE_PREFIX%}sales_ibfk_5` FOREIGN KEY (`messaging_topic_id`) REFERENCES `{%TABLE_PREFIX%}messaging` (`topic_id`)
  7037. ON DELETE SET NULL,
  7038. CONSTRAINT `{%TABLE_PREFIX%}sales_ibfk_6` FOREIGN KEY (`billing_address_id`) REFERENCES `{%TABLE_PREFIX%}users_address_book` (`id`)
  7039. ON DELETE SET NULL,
  7040. CONSTRAINT `{%TABLE_PREFIX%}sales_ibfk_7` FOREIGN KEY (`shipping_address_id`) REFERENCES `{%TABLE_PREFIX%}users_address_book` (`id`)
  7041. ON DELETE SET NULL
  7042. )
  7043. ENGINE =InnoDB
  7044. DEFAULT CHARSET =utf8;
  7045. CREATE TABLE `{%TABLE_PREFIX%}sales_listings` (
  7046. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7047. `listing_id` INT(11) DEFAULT NULL,
  7048. `sale_id` INT(11) NOT NULL,
  7049. `price` DECIMAL(16, 2) NOT NULL,
  7050. `quantity` INT(11) NOT NULL,
  7051. `downloads_active` TINYINT(4) NOT NULL,
  7052. `downloads_data` TEXT NOT NULL,
  7053. `created_at` DATETIME NOT NULL,
  7054. PRIMARY KEY (`id`),
  7055. KEY `sale_id` (`sale_id`),
  7056. KEY `listing_id` (`listing_id`),
  7057. CONSTRAINT `{%TABLE_PREFIX%}sales_listings_ibfk_2` FOREIGN KEY (`sale_id`) REFERENCES `{%TABLE_PREFIX%}sales` (`id`)
  7058. ON DELETE CASCADE,
  7059. CONSTRAINT `{%TABLE_PREFIX%}sales_listings_ibfk_4` FOREIGN KEY (`listing_id`) REFERENCES `{%TABLE_PREFIX%}listings` (`id`)
  7060. ON DELETE SET NULL
  7061. )
  7062. ENGINE =InnoDB
  7063. DEFAULT CHARSET =utf8;
  7064. CREATE TABLE `{%TABLE_PREFIX%}settings` (
  7065. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7066. `name` VARCHAR(255) DEFAULT NULL,
  7067. `value` TEXT,
  7068. PRIMARY KEY (`id`),
  7069. UNIQUE KEY `name` (`name`)
  7070. )
  7071. ENGINE =InnoDB
  7072. DEFAULT CHARSET =utf8;
  7073. INSERT INTO `{%TABLE_PREFIX%}settings` (`id`, `name`, `value`) VALUES
  7074. (1, 'sitename', '%SITE_NAME%'),
  7075. (2, 'site_path', '%SITE_PATH%'),
  7076. (3, 'default_theme', 'standard'),
  7077. (4, 'site_lang', 'en_US'),
  7078. (5, 'admin_email', '%ADMIN_EMAIL%'),
  7079. (6, 'email_admin_title', ''),
  7080. (7, 'mailer', 'sendmail'),
  7081. (8, 'sendmail_path', '/usr/sbin/sendmail -t -i'),
  7082. (9, 'smtp_host', ''),
  7083. (10, 'smtp_port', ''),
  7084. (11, 'smtp_username', ''),
  7085. (12, 'smtp_password', ''),
  7086. (13, 'site_logo_path', 'phpprobid.png'),
  7087. (14, 'currency', 'USD'),
  7088. (15, 'timezone', 'US/Central'),
  7089. (16, 'date_format', '%m/%d/%Y %H:%M:%S'),
  7090. (17, 'cron_job_type', 'server'),
  7091. (20, 'signup_settings', '1'),
  7092. (22, 'google_analytics_code', ''),
  7093. (23, 'min_reg_age', ''),
  7094. (24, 'birthdate_type', '1'),
  7095. (25, 'hpfeat_nb', '8'),
  7096. (29, 'hp_listings_imgsize', '200'),
  7097. (36, 'currency_format', '2'),
  7098. (37, 'currency_decimals', '2'),
  7099. (38, 'display_free_fees', '1'),
  7100. (39, 'currency_position', '1'),
  7101. (40, 'images_max', '12'),
  7102. (41, 'images_size', '5000'),
  7103. (42, 'images_watermark', ''),
  7104. (49, 'enable_auctions', '1'),
  7105. (50, 'enable_auctions_sniping', '1'),
  7106. (51, 'auctions_sniping_minutes', '5'),
  7107. (52, 'enable_bid_retraction', '1'),
  7108. (53, 'enable_change_duration', '1'),
  7109. (54, 'change_duration_days', '1'),
  7110. (56, 'second_chance_purchasing_days', '3'),
  7111. (58, 'close_auctions_end_time', '1'),
  7112. (59, 'proxy_bidding', '1'),
  7113. (60, 'enable_limit_bids', '1'),
  7114. (66, 'payment_mode', 'live'),
  7115. (67, 'user_account_type', 'global'),
  7116. (68, 'default_account_type', 'account'),
  7117. (69, 'signup_credit', '5'),
  7118. (70, 'maximum_debit', '25'),
  7119. (71, 'min_invoice_value', ''),
  7120. (72, 'suspend_over_limit_accounts', '1'),
  7121. (73, 'suspension_days', '7'),
  7122. (74, 'enable_stores', '1'),
  7123. (75, 'hide_empty_stores', '1'),
  7124. (76, 'private_site', ''),
  7125. (77, 'store_only_mode', ''),
  7126. (78, 'addl_category_listing', '1'),
  7127. (79, 'enable_shipping', '1'),
  7128. (80, 'enable_pickups', '1'),
  7129. (81, 'enable_returns', '1'),
  7130. (82, 'enable_buyout', '1'),
  7131. (83, 'always_show_buyout', ''),
  7132. (84, 'enable_force_payment', ''),
  7133. (85, 'enable_make_offer', '1'),
  7134. (86, 'show_make_offer_ranges', '1'),
  7135. (87, 'auto_relist', '1'),
  7136. (88, 'max_auto_relists', '50'),
  7137. (90, 'relist_method', 'new'),
  7138. (91, 'enable_listings_approval', ''),
  7139. (92, 'preferred_sellers', '1'),
  7140. (93, 'preferred_sellers_expiration', '365'),
  7141. (94, 'preferred_sellers_reduction', '50'),
  7142. (105, 'sale_fee_payer', 'seller'),
  7143. (106, 'registration_type', 'quick'),
  7144. (115, 'user_verification', '1'),
  7145. (116, 'seller_verification_mandatory', ''),
  7146. (117, 'buyer_verification_mandatory', ''),
  7147. (118, 'user_verification_address', '1'),
  7148. (119, 'user_verification_fee', '1.50'),
  7149. (120, 'user_verification_recurring', '365'),
  7150. (121, 'user_verification_refund', '1'),
  7151. (123, 'enable_products', '1'),
  7152. (124, 'force_payment_minutes', ''),
  7153. (125, 'enable_unlimited_duration', '1'),
  7154. (126, 'force_unlimited_duration', ''),
  7155. (127, 'enable_shopping_cart', '1'),
  7156. (128, 'shopping_cart_applies', 'global'),
  7157. (129, 'cart_items_expire_hours', '24'),
  7158. (130, 'profile_page', '1'),
  7159. (131, 'meta_description', ''),
  7160. (132, 'meta_data', 'a:2:{s:3:\"key\";a:2:{i:0;s:6:\"robots\";i:1;s:0:\"\";}s:5:\"value\";a:2:{i:0;s:13:\"index, follow\";i:1;s:0:\"\";}}'),
  7161. (133, 'private_reputation', ''),
  7162. (134, 'buyer_create_invoices', '1'),
  7163. (135, 'catfeat_nb', '8'),
  7164. (136, 'cp_listings_imgsize', '150'),
  7165. (137, 'listing_terms_box', '1'),
  7166. (138, 'listing_terms_content', 'This web-site is intended to be a friendly, enjoyable and useful experience, but as with anything concerning any kind of transactions there are risks involved and we strongly advise you to understand all of these terms before submitting the listing.\r\n\r\nRights To Suspend or Terminate.\r\nYou agree that this web-site, in its own discretion, may terminate any listing or use of the service immediately and without notice if \r\n(a) We believe that you are not abiding by the general rules of this web-site \r\n(b) You have repeatedly broken a certain term \r\n(c) You have listed a suspicious item \r\n\r\nYour Conduct.\r\nYou are solely responsible for the contents of your listings through this web-site. You must ensure that your participation in the listing of items does not violate any applicable laws or regulations. By this we mean that you must check that you entitled to sell or buy the relevant item and that you are not prohibited from doing so by any law or regulation. \r\nYou must not transmit through the service any unlawful, harassing, libelous, abusive, threatening, harmful, vulgar, obscene or otherwise objectionable material. You must also not transmit any material that encourages conduct that could constitute a criminal offense, give rise to civil liability or otherwise violate any applicable law or regulation. \r\n\r\nGeneral Terms.\r\nThis site acts as the window for sellers to post listings and for buyers to bid/purchase on sellers&#039; listings. We are not involved in the actual transaction between buyers and sellers. As a result, we have no control over the quality, safety or legality of the items listed the truth or accuracy of the listings, the ability of sellers to sell items or the ability of buyers to buy items. We cannot and do not control whether or not sellers will complete the sale of items they offer or buyers will complete the purchases of items they have bid on/purchased. In addition, note that there are risks of dealing with foreign nationals, underage persons or people acting under false pretend. \r\nThis Web-site shall not be responsible for any items sold through it, for any damage to items during transit or during the inspection period, nor for misrepresentations and/or breaches of contract by either buyer and/or seller. This web-site shall not be responsible for the cost of procurement of substitute goods or any losses resulting form any goods purchased or obtained. \r\nThis web-site assumes no liability for the content of the listings. However if you fall victim of a fraudulent transaction we will assist you as much as we can.'),
  7167. (141, 'other_items_seller', '1'),
  7168. (142, 'enable_messaging', '1'),
  7169. (143, 'enable_public_questions', '1'),
  7170. (144, 'payment_reminder_email', '1'),
  7171. (145, 'sale_phone_numbers', '1'),
  7172. (146, 'auctions_editing_hours', '12'),
  7173. (147, 'second_chance_purchasing', '1'),
  7174. (151, 'enable_digital_downloads', ''),
  7175. (152, 'digital_downloads_folder', ''),
  7176. (153, 'digital_downloads_size', ''),
  7177. (154, 'digital_downloads_link_expiration', ''),
  7178. (155, 'digital_downloads_disclaimer', ''),
  7179. (156, 'videos_max', '0'),
  7180. (157, 'videos_size', '5000'),
  7181. (158, 'videos_embedded', '1'),
  7182. (159, 'enable_registration_terms', '1'),
  7183. (160, 'registration_terms_link', 'terms'),
  7184. (162, 'registration_privacy_link', 'privacy'),
  7185. (163, 'recent_nb', '8'),
  7186. (164, 'ending_nb', '8'),
  7187. (165, 'popular_nb', '8'),
  7188. (166, 'enable_tax_fees', ''),
  7189. (167, 'tax_fees_type', ''),
  7190. (168, 'enable_tax_listings', ''),
  7191. (169, 'enable_sale_fee_refunds', '1'),
  7192. (172, 'sale_fee_refunds_range', 'a:2:{s:4:\"from\";s:1:\"0\";s:2:\"to\";s:2:\"30\";}'),
  7193. (173, 'rebill_expired_subscriptions', '1'),
  7194. (174, 'enable_social_network_links', '1'),
  7195. (175, 'invoice_address', 'Acme Intl. LTD\r\n101 Main Street\r\n10001 New York\r\nUSA'),
  7196. (176, 'invoice_header', ''),
  7197. (177, 'invoice_footer', ''),
  7198. (178, 'marked_deleted_listings_removal', ''),
  7199. (179, 'closed_listings_deletion_days', '365'),
  7200. (180, 'activate_link_payment', '1'),
  7201. (181, 'digital_downloads_max', '0'),
  7202. (182, 'bid_retraction_hours', '12'),
  7203. (183, 'pending_sales_listings_expire_hours', '30'),
  7204. (184, 'force_payment_limit', '60'),
  7205. (185, 'user_languages', '1'),
  7206. (186, 'maintenance_mode', ''),
  7207. (187, 'images_remote', '1'),
  7208. (188, 'embedded_code', '1'),
  7209. (189, 'remote_uploads', '1'),
  7210. (190, 'enable_cookie_usage_confirmation', '1'),
  7211. (191, 'cookie_usage_message', 'Our website uses cookies. By continuing, you consent to the use of cookies on your device, unless you have disabled them from your browser.'),
  7212. (192, 'enable_subtitle', '1'),
  7213. (193, 'meta_title', ''),
  7214. (194, 'category_counters', ''),
  7215. (195, 'listings_counters', ''),
  7216. (196, 'search_counters', ''),
  7217. (197, 'hide_empty_categories', ''),
  7218. (198, 'home_page_html', ''),
  7219. (200, 'mandatory_images', '1'),
  7220. (201, 'license_key', NULL);
  7221. CREATE TABLE `{%TABLE_PREFIX%}shipping_carriers` (
  7222. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7223. `name` VARCHAR(255) NOT NULL,
  7224. `desc` VARCHAR(255) NOT NULL,
  7225. `logo_path` VARCHAR(255) NOT NULL,
  7226. `enabled` TINYINT(4) NOT NULL,
  7227. PRIMARY KEY (`id`)
  7228. )
  7229. ENGINE =InnoDB
  7230. DEFAULT CHARSET =utf8;
  7231. INSERT INTO `{%TABLE_PREFIX%}shipping_carriers` (`id`, `name`, `desc`, `logo_path`, `enabled`) VALUES
  7232. (1, 'USPS', 'USPS', '/img/logos/usps.png', 0),
  7233. (2, 'UPS', 'UPS', '/img/logos/ups.png', 0),
  7234. (3, 'FedExWebServices', 'FedEx', '/img/logos/fedex.png', 0),
  7235. (4, 'AustraliaPost', 'Australia Post', '/img/logos/australia-post.png', 0);
  7236. CREATE TABLE `{%TABLE_PREFIX%}shipping_carriers_settings` (
  7237. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7238. `name` VARCHAR(255) NOT NULL,
  7239. `value` VARCHAR(255) NOT NULL,
  7240. `carrier_id` INT(11) NOT NULL,
  7241. PRIMARY KEY (`id`),
  7242. KEY `carrier_id` (`carrier_id`),
  7243. CONSTRAINT `{%TABLE_PREFIX%}shipping_carriers_settings_ibfk_1` FOREIGN KEY (`carrier_id`) REFERENCES `{%TABLE_PREFIX%}shipping_carriers` (`id`)
  7244. ON DELETE CASCADE
  7245. )
  7246. ENGINE =InnoDB
  7247. DEFAULT CHARSET =utf8;
  7248. INSERT INTO `{%TABLE_PREFIX%}shipping_carriers_settings` (`id`, `name`, `value`, `carrier_id`) VALUES
  7249. (1, 'username', '', 1),
  7250. (2, 'password', '', 1),
  7251. (3, 'account_number', '', 3),
  7252. (4, 'meter_number', '', 3),
  7253. (5, 'fedexws_key', '', 3),
  7254. (6, 'fedexws_pwd', '', 3),
  7255. (7, 'api_key', '', 4),
  7256. (8, 'production_mode', '', 4);
  7257. CREATE TABLE `{%TABLE_PREFIX%}stores_subscriptions` (
  7258. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7259. `name` VARCHAR(255) NOT NULL,
  7260. `price` DECIMAL(16, 2) NOT NULL,
  7261. `listings` INT(11) NOT NULL,
  7262. `recurring_days` INT(11) NOT NULL,
  7263. `featured_store` TINYINT(4) NOT NULL,
  7264. PRIMARY KEY (`id`)
  7265. )
  7266. ENGINE =InnoDB
  7267. DEFAULT CHARSET =utf8;
  7268. INSERT INTO `{%TABLE_PREFIX%}stores_subscriptions` (`id`, `name`, `price`, `listings`, `recurring_days`, `featured_store`)
  7269. VALUES
  7270. (1, 'Standard', 10.00, 25, 30, 0),
  7271. (2, 'Premium', 25.00, 100, 30, 0),
  7272. (3, 'Platinum', 100.00, 1000, 30, 1),
  7273. (4, 'Unlimited', 200.00, 5000, 0, 1);
  7274. CREATE TABLE `{%TABLE_PREFIX%}tax_types` (
  7275. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7276. `name` VARCHAR(255) NOT NULL,
  7277. `description` TEXT NOT NULL,
  7278. `amount` DECIMAL(16, 2) NOT NULL,
  7279. `locations_ids` TEXT NOT NULL,
  7280. PRIMARY KEY (`id`)
  7281. )
  7282. ENGINE =InnoDB
  7283. DEFAULT CHARSET =utf8;
  7284. CREATE TABLE `{%TABLE_PREFIX%}timezones` (
  7285. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7286. `value` VARCHAR(255) DEFAULT NULL,
  7287. `caption` VARCHAR(255) DEFAULT NULL,
  7288. PRIMARY KEY (`id`)
  7289. )
  7290. ENGINE =InnoDB
  7291. DEFAULT CHARSET =utf8;
  7292. INSERT INTO `{%TABLE_PREFIX%}timezones` (`id`, `value`, `caption`) VALUES
  7293. (1, 'Pacific/Midway', '(GMT-11:00) Midway Island'),
  7294. (2, 'US/Samoa', '(GMT-11:00) Samoa'),
  7295. (3, 'US/Hawaii', '(GMT-10:00) Hawaii'),
  7296. (4, 'US/Alaska', '(GMT-09:00) Alaska'),
  7297. (5, 'US/Pacific', '(GMT-08:00) Pacific Time (US &amp; Canada)'),
  7298. (6, 'America/Tijuana', '(GMT-08:00) Tijuana'),
  7299. (7, 'US/Arizona', '(GMT-07:00) Arizona'),
  7300. (8, 'US/Mountain', '(GMT-07:00) Mountain Time (US &amp; Canada)'),
  7301. (9, 'America/Chihuahua', '(GMT-07:00) Chihuahua'),
  7302. (10, 'America/Mazatlan', '(GMT-07:00) Mazatlan'),
  7303. (11, 'America/Mexico_City', '(GMT-06:00) Mexico City'),
  7304. (12, 'America/Monterrey', '(GMT-06:00) Monterrey'),
  7305. (13, 'Canada/Saskatchewan', '(GMT-06:00) Saskatchewan'),
  7306. (14, 'US/Central', '(GMT-06:00) Central Time (US &amp; Canada)'),
  7307. (15, 'US/Eastern', '(GMT-05:00) Eastern Time (US &amp; Canada)'),
  7308. (16, 'US/East-Indiana', '(GMT-05:00) Indiana (East)'),
  7309. (17, 'America/Bogota', '(GMT-05:00) Bogota'),
  7310. (18, 'America/Lima', '(GMT-05:00) Lima'),
  7311. (19, 'America/Caracas', '(GMT-04:30) Caracas'),
  7312. (20, 'Canada/Atlantic', '(GMT-04:00) Atlantic Time (Canada)'),
  7313. (21, 'America/La_Paz', '(GMT-04:00) La Paz'),
  7314. (22, 'America/Santiago', '(GMT-04:00) Santiago'),
  7315. (23, 'Canada/Newfoundland', '(GMT-03:30) Newfoundland'),
  7316. (24, 'America/Buenos_Aires', '(GMT-03:00) Buenos Aires'),
  7317. (25, 'Greenland', '(GMT-03:00) Greenland'),
  7318. (26, 'Atlantic/Stanley', '(GMT-02:00) Stanley'),
  7319. (27, 'Atlantic/Azores', '(GMT-01:00) Azores'),
  7320. (28, 'Atlantic/Cape_Verde', '(GMT-01:00) Cape Verde Is.'),
  7321. (29, 'Africa/Casablanca', '(GMT) Casablanca'),
  7322. (30, 'Europe/Dublin', '(GMT) Dublin'),
  7323. (31, 'Europe/Lisbon', '(GMT) Lisbon'),
  7324. (32, 'Europe/London', '(GMT) London'),
  7325. (33, 'Africa/Monrovia', '(GMT) Monrovia'),
  7326. (34, 'Europe/Amsterdam', '(GMT+01:00) Amsterdam'),
  7327. (35, 'Europe/Belgrade', '(GMT+01:00) Belgrade'),
  7328. (36, 'Europe/Berlin', '(GMT+01:00) Berlin'),
  7329. (37, 'Europe/Bratislava', '(GMT+01:00) Bratislava'),
  7330. (38, 'Europe/Brussels', '(GMT+01:00) Brussels'),
  7331. (39, 'Europe/Budapest', '(GMT+01:00) Budapest'),
  7332. (40, 'Europe/Copenhagen', '(GMT+01:00) Copenhagen'),
  7333. (41, 'Europe/Ljubljana', '(GMT+01:00) Ljubljana'),
  7334. (42, 'Europe/Madrid', '(GMT+01:00) Madrid'),
  7335. (43, 'Europe/Paris', '(GMT+01:00) Paris'),
  7336. (44, 'Europe/Prague', '(GMT+01:00) Prague'),
  7337. (45, 'Europe/Rome', '(GMT+01:00) Rome'),
  7338. (46, 'Europe/Sarajevo', '(GMT+01:00) Sarajevo'),
  7339. (47, 'Europe/Skopje', '(GMT+01:00) Skopje'),
  7340. (48, 'Europe/Stockholm', '(GMT+01:00) Stockholm'),
  7341. (49, 'Europe/Vienna', '(GMT+01:00) Vienna'),
  7342. (50, 'Europe/Warsaw', '(GMT+01:00) Warsaw'),
  7343. (51, 'Europe/Zagreb', '(GMT+01:00) Zagreb'),
  7344. (52, 'Europe/Athens', '(GMT+02:00) Athens'),
  7345. (53, 'Europe/Bucharest', '(GMT+02:00) Bucharest'),
  7346. (54, 'Africa/Cairo', '(GMT+02:00) Cairo'),
  7347. (55, 'Africa/Harare', '(GMT+02:00) Harare'),
  7348. (56, 'Europe/Helsinki', '(GMT+02:00) Helsinki'),
  7349. (57, 'Europe/Istanbul', '(GMT+02:00) Istanbul'),
  7350. (58, 'Asia/Jerusalem', '(GMT+02:00) Jerusalem'),
  7351. (59, 'Europe/Kiev', '(GMT+02:00) Kyiv'),
  7352. (60, 'Europe/Minsk', '(GMT+02:00) Minsk'),
  7353. (61, 'Europe/Riga', '(GMT+02:00) Riga'),
  7354. (62, 'Europe/Sofia', '(GMT+02:00) Sofia'),
  7355. (63, 'Europe/Tallinn', '(GMT+02:00) Tallinn'),
  7356. (64, 'Europe/Vilnius', '(GMT+02:00) Vilnius'),
  7357. (65, 'Asia/Baghdad', '(GMT+03:00) Baghdad'),
  7358. (66, 'Asia/Kuwait', '(GMT+03:00) Kuwait'),
  7359. (67, 'Africa/Nairobi', '(GMT+03:00) Nairobi'),
  7360. (68, 'Asia/Riyadh', '(GMT+03:00) Riyadh'),
  7361. (69, 'Asia/Tehran', '(GMT+03:30) Tehran'),
  7362. (70, 'Europe/Moscow', '(GMT+04:00) Moscow'),
  7363. (71, 'Asia/Baku', '(GMT+04:00) Baku'),
  7364. (72, 'Europe/Volgograd', '(GMT+04:00) Volgograd'),
  7365. (73, 'Asia/Muscat', '(GMT+04:00) Muscat'),
  7366. (74, 'Asia/Tbilisi', '(GMT+04:00) Tbilisi'),
  7367. (75, 'Asia/Yerevan', '(GMT+04:00) Yerevan'),
  7368. (76, 'Asia/Kabul', '(GMT+04:30) Kabul'),
  7369. (77, 'Asia/Karachi', '(GMT+05:00) Karachi'),
  7370. (78, 'Asia/Tashkent', '(GMT+05:00) Tashkent'),
  7371. (79, 'Asia/Kolkata', '(GMT+05:30) Kolkata'),
  7372. (80, 'Asia/Kathmandu', '(GMT+05:45) Kathmandu'),
  7373. (81, 'Asia/Yekaterinburg', '(GMT+06:00) Ekaterinburg'),
  7374. (82, 'Asia/Almaty', '(GMT+06:00) Almaty'),
  7375. (83, 'Asia/Dhaka', '(GMT+06:00) Dhaka'),
  7376. (84, 'Asia/Novosibirsk', '(GMT+07:00) Novosibirsk'),
  7377. (85, 'Asia/Bangkok', '(GMT+07:00) Bangkok'),
  7378. (86, 'Asia/Jakarta', '(GMT+07:00) Jakarta'),
  7379. (87, 'Asia/Krasnoyarsk', '(GMT+08:00) Krasnoyarsk'),
  7380. (88, 'Asia/Chongqing', '(GMT+08:00) Chongqing'),
  7381. (89, 'Asia/Hong_Kong', '(GMT+08:00) Hong Kong'),
  7382. (90, 'Asia/Kuala_Lumpur', '(GMT+08:00) Kuala Lumpur'),
  7383. (91, 'Australia/Perth', '(GMT+08:00) Perth'),
  7384. (92, 'Asia/Singapore', '(GMT+08:00) Singapore'),
  7385. (93, 'Asia/Taipei', '(GMT+08:00) Taipei'),
  7386. (94, 'Asia/Ulaanbaatar', '(GMT+08:00) Ulaan Bataar'),
  7387. (95, 'Asia/Urumqi', '(GMT+08:00) Urumqi'),
  7388. (96, 'Asia/Irkutsk', '(GMT+09:00) Irkutsk'),
  7389. (97, 'Asia/Seoul', '(GMT+09:00) Seoul'),
  7390. (98, 'Asia/Tokyo', '(GMT+09:00) Tokyo'),
  7391. (99, 'Australia/Adelaide', '(GMT+09:30) Adelaide'),
  7392. (100, 'Australia/Darwin', '(GMT+09:30) Darwin'),
  7393. (101, 'Asia/Yakutsk', '(GMT+10:00) Yakutsk'),
  7394. (102, 'Australia/Brisbane', '(GMT+10:00) Brisbane'),
  7395. (103, 'Australia/Canberra', '(GMT+10:00) Canberra'),
  7396. (104, 'Pacific/Guam', '(GMT+10:00) Guam'),
  7397. (105, 'Australia/Hobart', '(GMT+10:00) Hobart'),
  7398. (106, 'Australia/Melbourne', '(GMT+10:00) Melbourne'),
  7399. (107, 'Pacific/Port_Moresby', '(GMT+10:00) Port Moresby'),
  7400. (108, 'Australia/Sydney', '(GMT+10:00) Sydney'),
  7401. (109, 'Asia/Vladivostok', '(GMT+11:00) Vladivostok'),
  7402. (110, 'Asia/Magadan', '(GMT+12:00) Magadan'),
  7403. (111, 'Pacific/Auckland', '(GMT+12:00) Auckland'),
  7404. (112, 'Pacific/Fiji', '(GMT+12:00) Fiji');
  7405. CREATE TABLE `{%TABLE_PREFIX%}transactions` (
  7406. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7407. `name` VARCHAR(255) NOT NULL
  7408. COMMENT 'Transaction description as sent in the gateway payment form',
  7409. `amount` DECIMAL(16, 2) NOT NULL,
  7410. `tax_rate` DECIMAL(16, 2) DEFAULT NULL
  7411. COMMENT 'tax rate that was applied to the fee',
  7412. `currency` VARCHAR(20) NOT NULL
  7413. COMMENT 'iso code',
  7414. `user_id` INT(11) DEFAULT NULL
  7415. COMMENT 'The payer in this transaction',
  7416. `sale_id` INT(11) DEFAULT NULL
  7417. COMMENT 'The id of the sale invoice in case of a direct payment',
  7418. `gateway_id` INT(11) DEFAULT NULL
  7419. COMMENT 'Gateway (null if transaction is still pending)',
  7420. `paid` TINYINT(4) NOT NULL
  7421. COMMENT 'Paid flag (0 if unpaid, 1 if paid)',
  7422. `gateway_status` VARCHAR(100) NOT NULL
  7423. COMMENT 'Gateway payment status response',
  7424. `gateway_transaction_code` TEXT NOT NULL
  7425. COMMENT 'Gateway transaction code',
  7426. `transaction_details` TEXT NOT NULL
  7427. COMMENT 'Internal transaction details',
  7428. `created_at` DATETIME NOT NULL,
  7429. `updated_at` DATETIME DEFAULT NULL,
  7430. PRIMARY KEY (`id`),
  7431. KEY `gateway_id` (`gateway_id`),
  7432. KEY `user_id` (`user_id`),
  7433. KEY `sale_id` (`sale_id`),
  7434. CONSTRAINT `{%TABLE_PREFIX%}transactions_ibfk_3` FOREIGN KEY (`gateway_id`) REFERENCES `{%TABLE_PREFIX%}payment_gateways` (`id`),
  7435. CONSTRAINT `{%TABLE_PREFIX%}transactions_ibfk_5` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  7436. ON DELETE SET NULL,
  7437. CONSTRAINT `{%TABLE_PREFIX%}transactions_ibfk_7` FOREIGN KEY (`sale_id`) REFERENCES `{%TABLE_PREFIX%}sales` (`id`)
  7438. ON DELETE CASCADE
  7439. )
  7440. ENGINE =InnoDB
  7441. DEFAULT CHARSET =utf8;
  7442. CREATE TABLE `{%TABLE_PREFIX%}users` (
  7443. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7444. `email` VARCHAR(255) NOT NULL,
  7445. `username` VARCHAR(255) NOT NULL,
  7446. `password` VARCHAR(100) NOT NULL,
  7447. `role` VARCHAR(50) NOT NULL DEFAULT 'User',
  7448. `last_login` DATETIME NOT NULL,
  7449. `updated_at` DATETIME DEFAULT NULL,
  7450. `created_at` DATETIME DEFAULT NULL,
  7451. `salt` VARCHAR(20) NOT NULL,
  7452. `birthdate` DATE NOT NULL,
  7453. `newsletter_subscription` TINYINT(4) NOT NULL,
  7454. `active` TINYINT(4) NOT NULL,
  7455. `approved` TINYINT(4) NOT NULL,
  7456. `mail_activated` TINYINT(4) NOT NULL,
  7457. `registration_key` VARCHAR(255) NOT NULL,
  7458. `suspension_date` DATETIME NOT NULL,
  7459. `payment_status` ENUM('confirmed', 'pending', 'failed') NOT NULL DEFAULT 'pending',
  7460. `listing_approval` TINYINT(4) NOT NULL,
  7461. `user_verified` TINYINT(4) NOT NULL,
  7462. `user_verified_last_payment` DATETIME DEFAULT NULL,
  7463. `user_verified_next_payment` DATETIME DEFAULT NULL,
  7464. `user_verified_email` TINYINT(4) NOT NULL,
  7465. `business_account` TINYINT(4) NOT NULL,
  7466. `company_name` VARCHAR(255) NOT NULL,
  7467. `bank_details` TEXT NOT NULL,
  7468. `account_mode` ENUM('live', 'account') NOT NULL,
  7469. `items_sold` INT(11) NOT NULL,
  7470. `items_bought` INT(11) NOT NULL,
  7471. `balance` DECIMAL(16, 2) NOT NULL
  7472. COMMENT 'positive balance = debit, negative = credit',
  7473. `max_debit` DECIMAL(16, 2) NOT NULL,
  7474. `debit_exceeded_date` DATETIME DEFAULT NULL,
  7475. `preferred_seller` TINYINT(4) NOT NULL,
  7476. `preferred_seller_expiration` DATETIME DEFAULT NULL,
  7477. `is_seller` TINYINT(4) NOT NULL,
  7478. `store_active` TINYINT(4) NOT NULL,
  7479. `store_subscription_id` INT(11) DEFAULT NULL,
  7480. `store_name` VARCHAR(255) NOT NULL,
  7481. `store_category_id` INT(11) DEFAULT NULL,
  7482. `store_slug` VARCHAR(255) DEFAULT NULL,
  7483. `store_settings` TEXT NOT NULL,
  7484. `store_last_payment` DATETIME DEFAULT NULL,
  7485. `store_next_payment` DATETIME DEFAULT NULL,
  7486. `store_expiration_email` TINYINT(4) NOT NULL,
  7487. `limit_bids` INT(11) NOT NULL,
  7488. `reputation_data` TEXT NOT NULL,
  7489. `global_settings` TEXT NOT NULL,
  7490. `postage_settings` TEXT NOT NULL,
  7491. `prefilled_fields` TEXT NOT NULL,
  7492. PRIMARY KEY (`id`),
  7493. KEY `role` (`role`),
  7494. KEY `username` (`username`),
  7495. KEY `store_subscription_id` (`store_subscription_id`),
  7496. KEY `active_approved` (`active`, `approved`),
  7497. KEY `store_category_id` (`store_category_id`),
  7498. CONSTRAINT `{%TABLE_PREFIX%}users_ibfk_2` FOREIGN KEY (`store_subscription_id`) REFERENCES `{%TABLE_PREFIX%}stores_subscriptions` (`id`)
  7499. ON DELETE SET NULL,
  7500. CONSTRAINT `{%TABLE_PREFIX%}users_ibfk_4` FOREIGN KEY (`store_category_id`) REFERENCES `{%TABLE_PREFIX%}categories` (`id`)
  7501. ON DELETE SET NULL
  7502. )
  7503. ENGINE =InnoDB
  7504. DEFAULT CHARSET =utf8;
  7505. CREATE TABLE `{%TABLE_PREFIX%}users_address_book` (
  7506. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7507. `user_id` INT(11) NOT NULL,
  7508. `address` TEXT NOT NULL,
  7509. `is_primary` TINYINT(4) NOT NULL,
  7510. PRIMARY KEY (`id`),
  7511. KEY `user_id` (`user_id`),
  7512. CONSTRAINT `{%TABLE_PREFIX%}users_address_book_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  7513. ON DELETE CASCADE
  7514. )
  7515. ENGINE =InnoDB
  7516. DEFAULT CHARSET =utf8;
  7517. CREATE TABLE `{%TABLE_PREFIX%}vouchers` (
  7518. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7519. `name` VARCHAR(255) NOT NULL,
  7520. `code` VARCHAR(255) NOT NULL,
  7521. `user_id` INT(11) DEFAULT NULL
  7522. COMMENT 'if user != null, we have a seller voucher',
  7523. `expiration_date` DATETIME DEFAULT NULL,
  7524. `uses_remaining` INT(11) DEFAULT NULL
  7525. COMMENT 'if != null, we have a limited number of uses',
  7526. `reduction_amount` DECIMAL(16, 2) NOT NULL,
  7527. `reduction_type` ENUM('flat', 'percent') NOT NULL,
  7528. `assigned_users` TEXT NOT NULL,
  7529. `assigned_listings` TEXT NOT NULL,
  7530. `created_at` DATETIME NOT NULL,
  7531. `updated_at` DATETIME DEFAULT NULL,
  7532. PRIMARY KEY (`id`),
  7533. KEY `user_id` (`user_id`),
  7534. CONSTRAINT `{%TABLE_PREFIX%}vouchers_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `{%TABLE_PREFIX%}users` (`id`)
  7535. ON DELETE CASCADE
  7536. )
  7537. ENGINE =InnoDB
  7538. DEFAULT CHARSET =utf8;
  7539. CREATE TABLE `{%TABLE_PREFIX%}word_filter` (
  7540. `id` INT(11) NOT NULL AUTO_INCREMENT,
  7541. `word` VARCHAR(255) NOT NULL,
  7542. PRIMARY KEY (`id`)
  7543. )
  7544. ENGINE =InnoDB
  7545. DEFAULT CHARSET =utf8;
  7546. -- 2014-06-25 14:59:27