snm.xml 551 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260204" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="APEX"
  85. name="APEX Series"
  86. show="1"
  87. />
  88. <series id="VORTEX"
  89. name="VORTEX Series"
  90. show="1"
  91. />
  92. <series id="20"
  93. name="20 Series"
  94. show="1"
  95. />
  96. <series id="SRL"
  97. name="SRL Series"
  98. show="1"
  99. />
  100. <series id="ACS"
  101. name="ACS Series"
  102. show="1"
  103. />
  104. <series id="10"
  105. name="10 Series"
  106. show="1"
  107. />
  108. <series id="5"
  109. name="5 Series"
  110. show="1"
  111. />
  112. <series id="3"
  113. name="3 Series"
  114. show="1"
  115. />
  116. <series id="R"
  117. name="R Series"
  118. show="1"
  119. />
  120. <series id="C"
  121. name="C Series"
  122. show="1"
  123. />
  124. <series id="Other"
  125. name="Other"
  126. show="1"
  127. />
  128. <!--
  129. <series id="smh"
  130. name="SMH"
  131. />
  132. <series id="cavalry"
  133. name="CAVALRY"
  134. show="0"
  135. />
  136. -->
  137. </serieses>
  138. <products>
  139. <product id="60SPRO"
  140. name="60S PRO"
  141. series="60"
  142. latestVersion="0.1"
  143. latestVersionMesh="0.19"
  144. latestVersionVoicePrompt="1.2"
  145. show = "-1" >
  146. <productMenu id="protocol"
  147. type="2" >
  148. </productMenu>
  149. <productMenu id="warranty"
  150. type="1" >
  151. </productMenu>
  152. <productMenu id="serialNumber"
  153. type="1" >
  154. </productMenu>
  155. <productMenu id="ota"
  156. type="0" >
  157. <otaLanguages>
  158. <otaLanguage
  159. id="0"
  160. name="English"
  161. package="0"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Français"
  166. package="1"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="Español"
  171. package="2"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Italiano"
  176. package="3"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Deutsch"
  181. package="4"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Nederlands"
  186. package="5"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Русский"
  191. package="6"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="简体中文"
  196. package="7"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="한국어"
  201. package="8"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="日本語"
  206. package="9"
  207. />
  208. <otaLanguage
  209. id="0"
  210. name="Suomi"
  211. package="10"
  212. />
  213. <otaLanguage
  214. id="0"
  215. name="Polski"
  216. package="11"
  217. />
  218. </otaLanguages>
  219. <otaPackages>
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  242. size="5183988"
  243. />
  244. <package
  245. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  246. size="5183988"
  247. />
  248. <package
  249. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  250. size="5183988"
  251. />
  252. <package
  253. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  254. size="5183988"
  255. />
  256. <package
  257. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  258. size="5183988"
  259. />
  260. <package
  261. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  262. size="5183988"
  263. />
  264. <package
  265. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  266. size="5183988"
  267. />
  268. </otaPackages>
  269. </productMenu>
  270. <productMenu id="sip"
  271. type="1" >
  272. </productMenu>
  273. <productMenu id="illusion"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="meshIntercom"
  277. type="30" >
  278. </productMenu>
  279. <productMenu id="meshIntercom+"
  280. type="3"
  281. url="2" >
  282. </productMenu>
  283. <productMenu id="waveIntercom"
  284. type="1" >
  285. </productMenu>
  286. <productMenu id="bluetoothIntercom"
  287. type="1"
  288. url="2" >
  289. </productMenu>
  290. <productMenu id="bluetoothIntercomGrouping"
  291. type="0" >
  292. </productMenu>
  293. <productMenu id="fmradio"
  294. type="1"
  295. url="1" >
  296. </productMenu>
  297. <productMenu id="phone"
  298. type="1" >
  299. </productMenu>
  300. <productMenu id="music"
  301. type="1" >
  302. </productMenu>
  303. <productMenu id="musicSharing"
  304. type="0" >
  305. </productMenu>
  306. <productMenu id="deviceSetting"
  307. type="1"
  308. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  309. </productMenu>
  310. <productMenu id="quickGuide"
  311. type="0"
  312. url=""
  313. size="1.12MB" >
  314. </productMenu>
  315. <productMenu id="userGuide"
  316. type="1"
  317. url=""
  318. size="2.0MB" >
  319. </productMenu>
  320. <productMenu id="videoGuide"
  321. type="0"
  322. url=""
  323. size="3.41MB" >
  324. </productMenu>
  325. <productMenu id="connectGuide"
  326. type="0"
  327. url=""
  328. size="1.12MB" >
  329. </productMenu>
  330. <productMenu id="volume"
  331. type="16" >
  332. </productMenu>
  333. <productMenu id="soundMode"
  334. type="1" >
  335. </productMenu>
  336. <productMenu id="battery"
  337. type="1" >
  338. </productMenu>
  339. <productID id="6A1A"
  340. />
  341. <productGroupable type="0"
  342. />
  343. </product>
  344. <product id="60SEVO"
  345. name="60S EVO"
  346. series="60"
  347. latestVersion="1.0.3"
  348. latestVersionMesh="0.19"
  349. latestVersionVoicePrompt="1.8"
  350. show = "1" >
  351. <productMenu id="protocol"
  352. type="2" >
  353. </productMenu>
  354. <productMenu id="warranty"
  355. type="1" >
  356. </productMenu>
  357. <productMenu id="serialNumber"
  358. type="1" >
  359. </productMenu>
  360. <productMenu id="ota"
  361. type="2" >
  362. <otaLanguages>
  363. <otaLanguage
  364. id="0"
  365. name="English"
  366. package="0"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Français"
  371. package="1"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="Español"
  376. package="2"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Italiano"
  381. package="3"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Deutsch"
  386. package="4"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Nederlands"
  391. package="5"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Русский"
  396. package="6"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="简体中文"
  401. package="7"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="한국어"
  406. package="8"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="日本語"
  411. package="9"
  412. />
  413. <otaLanguage
  414. id="0"
  415. name="Suomi"
  416. package="10"
  417. />
  418. <otaLanguage
  419. id="0"
  420. name="Polski"
  421. package="11"
  422. />
  423. </otaLanguages>
  424. <otaPackages>
  425. <package
  426. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1.img"
  427. size="5183988"
  428. />
  429. <package
  430. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  431. size="5183988"
  432. />
  433. <package
  434. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  435. size="5183988"
  436. />
  437. <package
  438. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  439. size="5183988"
  440. />
  441. <package
  442. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  443. size="5183988"
  444. />
  445. <package
  446. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  447. size="5183988"
  448. />
  449. <package
  450. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  451. size="5183988"
  452. />
  453. <package
  454. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  455. size="5183988"
  456. />
  457. <package
  458. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  459. size="5183988"
  460. />
  461. <package
  462. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  463. size="5183988"
  464. />
  465. <package
  466. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  467. size="5183988"
  468. />
  469. <package
  470. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-pl-PL.img"
  471. size="5183988"
  472. />
  473. </otaPackages>
  474. </productMenu>
  475. <productMenu id="sip"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="illusion"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="meshIntercom"
  482. type="30" >
  483. </productMenu>
  484. <productMenu id="meshIntercom+"
  485. type="3"
  486. url="2" >
  487. </productMenu>
  488. <productMenu id="waveIntercom"
  489. type="1" >
  490. </productMenu>
  491. <productMenu id="bluetoothIntercom"
  492. type="1"
  493. url="2" >
  494. </productMenu>
  495. <productMenu id="bluetoothIntercomGrouping"
  496. type="0" >
  497. </productMenu>
  498. <productMenu id="fmradio"
  499. type="1"
  500. url="1" >
  501. </productMenu>
  502. <productMenu id="phone"
  503. type="1" >
  504. </productMenu>
  505. <productMenu id="music"
  506. type="1" >
  507. </productMenu>
  508. <productMenu id="musicSharing"
  509. type="0" >
  510. </productMenu>
  511. <productMenu id="deviceSetting"
  512. type="1"
  513. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  514. <productMenuURL version="1.0.2"
  515. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  516. />
  517. </productMenu>
  518. <productMenu id="quickGuide"
  519. type="0"
  520. url=""
  521. size="1.12MB" >
  522. </productMenu>
  523. <productMenu id="userGuide"
  524. type="1"
  525. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  526. size="2.0MB" >
  527. </productMenu>
  528. <productMenu id="videoGuide"
  529. type="0"
  530. url=""
  531. size="3.41MB" >
  532. </productMenu>
  533. <productMenu id="connectGuide"
  534. type="1"
  535. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  536. size="1.12MB" >
  537. </productMenu>
  538. <productMenu id="volume"
  539. type="16" >
  540. </productMenu>
  541. <productMenu id="volume+"
  542. type="2"
  543. url="0x6004" >
  544. </productMenu>
  545. <productMenu id="soundMode"
  546. type="1" >
  547. </productMenu>
  548. <productMenu id="appearance"
  549. type="1"
  550. url="1|white,silver,black,glossy_black" >
  551. </productMenu>
  552. <productMenu id="battery"
  553. type="1" >
  554. </productMenu>
  555. <productID id="6A15"
  556. />
  557. <productGroupable type="0"
  558. />
  559. </product>
  560. <product id="60SEVOTTEditon"
  561. name="60S EVO TT Editon"
  562. series="60"
  563. latestVersion="0.1"
  564. latestVersionMesh="0.19"
  565. latestVersionVoicePrompt="1.8"
  566. show = "-1" >
  567. <productMenu id="protocol"
  568. type="2" >
  569. </productMenu>
  570. <productMenu id="warranty"
  571. type="1" >
  572. </productMenu>
  573. <productMenu id="serialNumber"
  574. type="1" >
  575. </productMenu>
  576. <productMenu id="ota"
  577. type="0" >
  578. <otaLanguages>
  579. <otaLanguage
  580. id="0"
  581. name="English"
  582. package="0"
  583. />
  584. <otaLanguage
  585. id="0"
  586. name="Français"
  587. package="1"
  588. />
  589. <otaLanguage
  590. id="0"
  591. name="Español"
  592. package="2"
  593. />
  594. <otaLanguage
  595. id="0"
  596. name="Italiano"
  597. package="3"
  598. />
  599. <otaLanguage
  600. id="0"
  601. name="Deutsch"
  602. package="4"
  603. />
  604. <otaLanguage
  605. id="0"
  606. name="Nederlands"
  607. package="5"
  608. />
  609. <otaLanguage
  610. id="0"
  611. name="Русский"
  612. package="6"
  613. />
  614. <otaLanguage
  615. id="0"
  616. name="简体中文"
  617. package="7"
  618. />
  619. <otaLanguage
  620. id="0"
  621. name="한국어"
  622. package="8"
  623. />
  624. <otaLanguage
  625. id="0"
  626. name="日本語"
  627. package="9"
  628. />
  629. <otaLanguage
  630. id="0"
  631. name="Suomi"
  632. package="10"
  633. />
  634. <otaLanguage
  635. id="0"
  636. name="Polski"
  637. package="11"
  638. />
  639. </otaLanguages>
  640. <otaPackages>
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-fr-FR.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-es-ES.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-it-IT.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-de-DE.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-nl-NL.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-ru-RU.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-cmn-CN.img"
  671. size="5183988"
  672. />
  673. <package
  674. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-ko-KR.img"
  675. size="5183988"
  676. />
  677. <package
  678. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-ja-JP.img"
  679. size="5183988"
  680. />
  681. <package
  682. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-fi-FI.img"
  683. size="5183988"
  684. />
  685. <package
  686. url="https://api.sena.com/support/OTA/Motorcycles/60SEVOTT/60S_EVOTT-v1.0.3-build1-pl-PL.img"
  687. size="5183988"
  688. />
  689. </otaPackages>
  690. </productMenu>
  691. <productMenu id="sip"
  692. type="1" >
  693. </productMenu>
  694. <productMenu id="illusion"
  695. type="1" >
  696. </productMenu>
  697. <productMenu id="meshIntercom"
  698. type="30" >
  699. </productMenu>
  700. <productMenu id="meshIntercom+"
  701. type="3"
  702. url="2" >
  703. </productMenu>
  704. <productMenu id="waveIntercom"
  705. type="1" >
  706. </productMenu>
  707. <productMenu id="bluetoothIntercom"
  708. type="1"
  709. url="2" >
  710. </productMenu>
  711. <productMenu id="bluetoothIntercomGrouping"
  712. type="0" >
  713. </productMenu>
  714. <productMenu id="fmradio"
  715. type="1"
  716. url="1" >
  717. </productMenu>
  718. <productMenu id="phone"
  719. type="1" >
  720. </productMenu>
  721. <productMenu id="music"
  722. type="1" >
  723. </productMenu>
  724. <productMenu id="musicSharing"
  725. type="0" >
  726. </productMenu>
  727. <productMenu id="deviceSetting"
  728. type="1"
  729. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  730. </productMenu>
  731. <productMenu id="quickGuide"
  732. type="0"
  733. url=""
  734. size="1.12MB" >
  735. </productMenu>
  736. <productMenu id="userGuide"
  737. type="1"
  738. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  739. size="2.0MB" >
  740. </productMenu>
  741. <productMenu id="videoGuide"
  742. type="0"
  743. url=""
  744. size="3.41MB" >
  745. </productMenu>
  746. <productMenu id="connectGuide"
  747. type="1"
  748. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  749. size="1.12MB" >
  750. </productMenu>
  751. <productMenu id="volume"
  752. type="16" >
  753. </productMenu>
  754. <productMenu id="volume+"
  755. type="2"
  756. url="0x6004" >
  757. </productMenu>
  758. <productMenu id="soundMode"
  759. type="1" >
  760. </productMenu>
  761. <productMenu id="appearance"
  762. type="1"
  763. url="1|white,silver,black,glossy_black" >
  764. </productMenu>
  765. <productMenu id="battery"
  766. type="1" >
  767. </productMenu>
  768. <productID id="6A25"
  769. />
  770. <productGroupable type="0"
  771. />
  772. </product>
  773. <product id="60S"
  774. name="60S"
  775. series="60"
  776. latestVersion="1.2.11"
  777. latestVersionMesh="1.2"
  778. latestVersionVoicePrompt="1.8"
  779. show = "1" >
  780. <productMenu id="protocol"
  781. type="2" >
  782. </productMenu>
  783. <productMenu id="ota"
  784. type="2" >
  785. <otaLanguages>
  786. <otaLanguage
  787. id="0"
  788. name="English"
  789. package="0"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="Français"
  794. package="1"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="Español"
  799. package="2"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Italiano"
  804. package="3"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="Deutsch"
  809. package="4"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Nederlands"
  814. package="5"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Русский"
  819. package="6"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="简体中文"
  824. package="7"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="한국어"
  829. package="8"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="日本語"
  834. package="9"
  835. />
  836. <otaLanguage
  837. id="0"
  838. name="Suomi"
  839. package="10"
  840. />
  841. <otaLanguage
  842. id="0"
  843. name="Polski"
  844. package="11"
  845. />
  846. </otaLanguages>
  847. <otaPackages>
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  890. size="5183988"
  891. />
  892. <package
  893. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  894. size="5183988"
  895. />
  896. </otaPackages>
  897. </productMenu>
  898. <productMenu id="sip"
  899. type="1" >
  900. </productMenu>
  901. <productMenu id="illusion"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="meshIntercom"
  905. type="30" >
  906. </productMenu>
  907. <productMenu id="meshIntercom+"
  908. type="3"
  909. url="2" >
  910. </productMenu>
  911. <productMenu id="waveIntercom"
  912. type="1" >
  913. </productMenu>
  914. <productMenu id="bluetoothIntercom"
  915. type="1"
  916. url="2" >
  917. </productMenu>
  918. <productMenu id="bluetoothIntercomGrouping"
  919. type="0" >
  920. </productMenu>
  921. <productMenu id="fmradio"
  922. type="1"
  923. url="1" >
  924. </productMenu>
  925. <productMenu id="phone"
  926. type="1" >
  927. </productMenu>
  928. <productMenu id="music"
  929. type="1" >
  930. </productMenu>
  931. <productMenu id="musicSharing"
  932. type="0" >
  933. </productMenu>
  934. <productMenu id="deviceSetting"
  935. type="1"
  936. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  937. <productMenuURL version="1.2.10"
  938. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  939. />
  940. <productMenuURL version="1.2.6"
  941. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  942. />
  943. <productMenuURL version="1.2.3"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  945. />
  946. </productMenu>
  947. <productMenu id="quickGuide"
  948. type="0"
  949. url=""
  950. size="1.12MB" >
  951. </productMenu>
  952. <productMenu id="userGuide"
  953. type="1"
  954. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  955. size="2.0MB" >
  956. </productMenu>
  957. <productMenu id="videoGuide"
  958. type="0"
  959. url=""
  960. size="3.41MB" >
  961. </productMenu>
  962. <productMenu id="connectGuide"
  963. type="1"
  964. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  965. size="1.12MB" >
  966. </productMenu>
  967. <productMenu id="volume"
  968. type="16" >
  969. </productMenu>
  970. <productMenu id="volume+"
  971. type="2"
  972. url="0x6004" >
  973. <productMenuURL version="1.2.3"
  974. url="0x6004"
  975. />
  976. </productMenu>
  977. <productMenu id="soundMode"
  978. type="0" >
  979. </productMenu>
  980. <productMenu id="appearance"
  981. type="1"
  982. url="2|white,silver,chrome,black" >
  983. </productMenu>
  984. <productMenu id="battery"
  985. type="1" >
  986. </productMenu>
  987. <productID id="6A0D"
  988. />
  989. <productGroupable type="0"
  990. />
  991. </product>
  992. <product id="60S"
  993. name="60S"
  994. series="60"
  995. latestVersion="1.2.11"
  996. latestVersionMesh="1.2"
  997. latestVersionVoicePrompt="1.8"
  998. show = "-1" >
  999. <productMenu id="protocol"
  1000. type="2" >
  1001. </productMenu>
  1002. <productMenu id="ota"
  1003. type="2" >
  1004. <otaLanguages>
  1005. <otaLanguage
  1006. id="0"
  1007. name="English"
  1008. package="0"
  1009. />
  1010. <otaLanguage
  1011. id="0"
  1012. name="Français"
  1013. package="1"
  1014. />
  1015. <otaLanguage
  1016. id="0"
  1017. name="Español"
  1018. package="2"
  1019. />
  1020. <otaLanguage
  1021. id="0"
  1022. name="Italiano"
  1023. package="3"
  1024. />
  1025. <otaLanguage
  1026. id="0"
  1027. name="Deutsch"
  1028. package="4"
  1029. />
  1030. <otaLanguage
  1031. id="0"
  1032. name="Nederlands"
  1033. package="5"
  1034. />
  1035. <otaLanguage
  1036. id="0"
  1037. name="Русский"
  1038. package="6"
  1039. />
  1040. <otaLanguage
  1041. id="0"
  1042. name="简体中文"
  1043. package="7"
  1044. />
  1045. <otaLanguage
  1046. id="0"
  1047. name="한국어"
  1048. package="8"
  1049. />
  1050. <otaLanguage
  1051. id="0"
  1052. name="日本語"
  1053. package="9"
  1054. />
  1055. <otaLanguage
  1056. id="0"
  1057. name="Suomi"
  1058. package="10"
  1059. />
  1060. <otaLanguage
  1061. id="0"
  1062. name="Polski"
  1063. package="11"
  1064. />
  1065. </otaLanguages>
  1066. <otaPackages>
  1067. <package
  1068. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  1069. size="5183988"
  1070. />
  1071. <package
  1072. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  1073. size="5183988"
  1074. />
  1075. <package
  1076. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  1077. size="5183988"
  1078. />
  1079. <package
  1080. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  1081. size="5183988"
  1082. />
  1083. <package
  1084. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  1085. size="5183988"
  1086. />
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  1113. size="5183988"
  1114. />
  1115. </otaPackages>
  1116. </productMenu>
  1117. <productMenu id="wa"
  1118. type="0" >
  1119. </productMenu>
  1120. <productMenu id="sip"
  1121. type="1" >
  1122. </productMenu>
  1123. <productMenu id="led"
  1124. type="0" >
  1125. </productMenu>
  1126. <productMenu id="illusion"
  1127. type="1" >
  1128. </productMenu>
  1129. <productMenu id="meshIntercom"
  1130. type="30" >
  1131. </productMenu>
  1132. <productMenu id="meshIntercom+"
  1133. type="3"
  1134. url="2" >
  1135. <productMenuURL version="1.0.2"
  1136. url="10"
  1137. />
  1138. </productMenu>
  1139. <productMenu id="waveIntercom"
  1140. type="1" >
  1141. <productMenuType version="1.0.9"
  1142. type="0"
  1143. />
  1144. </productMenu>
  1145. <productMenu id="bluetoothIntercom"
  1146. type="1"
  1147. url="2" >
  1148. </productMenu>
  1149. <productMenu id="bluetoothIntercomGrouping"
  1150. type="0" >
  1151. </productMenu>
  1152. <productMenu id="fmradio"
  1153. type="1"
  1154. url="1" >
  1155. </productMenu>
  1156. <productMenu id="phone"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="music"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="musicSharing"
  1163. type="0" >
  1164. </productMenu>
  1165. <productMenu id="deviceSetting"
  1166. type="1"
  1167. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  1168. <productMenuURL version="1.2.10"
  1169. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  1170. />
  1171. <productMenuURL version="1.2.6"
  1172. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  1173. />
  1174. <productMenuURL version="1.2.3"
  1175. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  1176. />
  1177. <productMenuURL version="1.0.2"
  1178. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  1179. />
  1180. <productMenuURL version="1.0"
  1181. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  1182. />
  1183. <productMenuURL version="0.9.11"
  1184. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  1185. />
  1186. </productMenu>
  1187. <productMenu id="quickGuide"
  1188. type="0"
  1189. url=""
  1190. size="1.12MB" >
  1191. </productMenu>
  1192. <productMenu id="userGuide"
  1193. type="1"
  1194. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  1195. size="2.0MB" >
  1196. </productMenu>
  1197. <productMenu id="videoGuide"
  1198. type="0"
  1199. url=""
  1200. size="3.41MB" >
  1201. </productMenu>
  1202. <productMenu id="connectGuide"
  1203. type="1"
  1204. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  1205. size="1.12MB" >
  1206. </productMenu>
  1207. <productMenu id="volume"
  1208. type="16" >
  1209. <productMenuType version="0.9.11"
  1210. type="13"
  1211. />
  1212. </productMenu>
  1213. <productMenu id="volume+"
  1214. type="2"
  1215. url="0x6004" >
  1216. <productMenuURL version="1.2.3"
  1217. url="0x6004"
  1218. />
  1219. </productMenu>
  1220. <productMenu id="soundMode"
  1221. type="0" >
  1222. <productMenuType version="0.9.11"
  1223. type="0"
  1224. />
  1225. </productMenu>
  1226. <productMenu id="appearance"
  1227. type="1"
  1228. url="2|white,silver,chrome,black" >
  1229. </productMenu>
  1230. <productMenu id="battery"
  1231. type="1" >
  1232. </productMenu>
  1233. <productID id="6A02"
  1234. />
  1235. <productGroupable type="0"
  1236. />
  1237. </product>
  1238. <product id="60X"
  1239. name="60X"
  1240. series="60"
  1241. latestVersion="1.0.1"
  1242. latestVersionMesh="0.19"
  1243. latestVersionVoicePrompt="1.8"
  1244. show = "1" >
  1245. <productMenu id="protocol"
  1246. type="2" >
  1247. </productMenu>
  1248. <productMenu id="warranty"
  1249. type="1" >
  1250. </productMenu>
  1251. <productMenu id="serialNumber"
  1252. type="1" >
  1253. </productMenu>
  1254. <productMenu id="ota"
  1255. type="2" >
  1256. <otaLanguages>
  1257. <otaLanguage
  1258. id="0"
  1259. name="English"
  1260. package="0"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="Français"
  1265. package="1"
  1266. />
  1267. <otaLanguage
  1268. id="0"
  1269. name="Español"
  1270. package="2"
  1271. />
  1272. <otaLanguage
  1273. id="0"
  1274. name="Italiano"
  1275. package="3"
  1276. />
  1277. <otaLanguage
  1278. id="0"
  1279. name="Deutsch"
  1280. package="4"
  1281. />
  1282. <otaLanguage
  1283. id="0"
  1284. name="Nederlands"
  1285. package="5"
  1286. />
  1287. <otaLanguage
  1288. id="0"
  1289. name="Русский"
  1290. package="6"
  1291. />
  1292. <otaLanguage
  1293. id="0"
  1294. name="简体中文"
  1295. package="7"
  1296. />
  1297. <otaLanguage
  1298. id="0"
  1299. name="한국어"
  1300. package="8"
  1301. />
  1302. <otaLanguage
  1303. id="0"
  1304. name="日本語"
  1305. package="9"
  1306. />
  1307. <otaLanguage
  1308. id="0"
  1309. name="Suomi"
  1310. package="10"
  1311. />
  1312. <otaLanguage
  1313. id="0"
  1314. name="Polski"
  1315. package="11"
  1316. />
  1317. </otaLanguages>
  1318. <otaPackages>
  1319. <package
  1320. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1321. size="5183988"
  1322. />
  1323. <package
  1324. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1325. size="5183988"
  1326. />
  1327. <package
  1328. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1329. size="5183988"
  1330. />
  1331. <package
  1332. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1333. size="5183988"
  1334. />
  1335. <package
  1336. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1337. size="5183988"
  1338. />
  1339. <package
  1340. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1341. size="5183988"
  1342. />
  1343. <package
  1344. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1345. size="5183988"
  1346. />
  1347. <package
  1348. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1349. size="5183988"
  1350. />
  1351. <package
  1352. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1353. size="5183988"
  1354. />
  1355. <package
  1356. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1357. size="5183988"
  1358. />
  1359. <package
  1360. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1361. size="5183988"
  1362. />
  1363. <package
  1364. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1365. size="5183988"
  1366. />
  1367. </otaPackages>
  1368. </productMenu>
  1369. <productMenu id="wa"
  1370. type="0" >
  1371. </productMenu>
  1372. <productMenu id="sip"
  1373. type="1" >
  1374. </productMenu>
  1375. <productMenu id="led"
  1376. type="1" >
  1377. </productMenu>
  1378. <productMenu id="illusion"
  1379. type="1" >
  1380. </productMenu>
  1381. <productMenu id="meshIntercom"
  1382. type="30" >
  1383. </productMenu>
  1384. <productMenu id="meshIntercom+"
  1385. type="3"
  1386. url="2" >
  1387. </productMenu>
  1388. <productMenu id="waveIntercom"
  1389. type="1" >
  1390. </productMenu>
  1391. <productMenu id="bluetoothIntercom"
  1392. type="1" >
  1393. </productMenu>
  1394. <productMenu id="fmradio"
  1395. type="1"
  1396. url="1" >
  1397. </productMenu>
  1398. <productMenu id="mic"
  1399. type="0" >
  1400. </productMenu>
  1401. <productMenu id="phone"
  1402. type="1" >
  1403. </productMenu>
  1404. <productMenu id="music"
  1405. type="1" >
  1406. </productMenu>
  1407. <productMenu id="musicSharing"
  1408. type="0" >
  1409. </productMenu>
  1410. <productMenu id="deviceSetting"
  1411. type="1"
  1412. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1413. <productMenuURL version="1.0"
  1414. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1415. />
  1416. </productMenu>
  1417. <productMenu id="quickGuide"
  1418. type="0"
  1419. url=""
  1420. size="1.12MB" >
  1421. </productMenu>
  1422. <productMenu id="userGuide"
  1423. type="1"
  1424. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1425. size="2.0MB" >
  1426. </productMenu>
  1427. <productMenu id="videoGuide"
  1428. type="0"
  1429. url=""
  1430. size="3.41MB" >
  1431. </productMenu>
  1432. <productMenu id="connectGuide"
  1433. type="1"
  1434. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1435. size="1.12MB" >
  1436. </productMenu>
  1437. <productMenu id="keySettings"
  1438. type="1"
  1439. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1440. </productMenu>
  1441. <productMenu id="volume"
  1442. type="13" >
  1443. </productMenu>
  1444. <productMenu id="volume+"
  1445. type="2"
  1446. url="0x6004" >
  1447. </productMenu>
  1448. <productMenu id="appearance"
  1449. type="1"
  1450. url="1|white,silver,black,glossy_black" >
  1451. </productMenu>
  1452. <productMenu id="battery"
  1453. type="1" >
  1454. </productMenu>
  1455. <productID id="6A03"
  1456. />
  1457. <productGroupable type="0"
  1458. />
  1459. </product>
  1460. <product id="60XTTEdition"
  1461. name="60X TT Edition"
  1462. series="60"
  1463. latestVersion="0.1"
  1464. latestVersionMesh="0.19"
  1465. latestVersionVoicePrompt="1.8"
  1466. show = "-1" >
  1467. <productMenu id="protocol"
  1468. type="2" >
  1469. </productMenu>
  1470. <productMenu id="warranty"
  1471. type="1" >
  1472. </productMenu>
  1473. <productMenu id="serialNumber"
  1474. type="1" >
  1475. </productMenu>
  1476. <productMenu id="ota"
  1477. type="0" >
  1478. <otaLanguages>
  1479. <otaLanguage
  1480. id="0"
  1481. name="English"
  1482. package="0"
  1483. />
  1484. <otaLanguage
  1485. id="0"
  1486. name="Français"
  1487. package="1"
  1488. />
  1489. <otaLanguage
  1490. id="0"
  1491. name="Español"
  1492. package="2"
  1493. />
  1494. <otaLanguage
  1495. id="0"
  1496. name="Italiano"
  1497. package="3"
  1498. />
  1499. <otaLanguage
  1500. id="0"
  1501. name="Deutsch"
  1502. package="4"
  1503. />
  1504. <otaLanguage
  1505. id="0"
  1506. name="Nederlands"
  1507. package="5"
  1508. />
  1509. <otaLanguage
  1510. id="0"
  1511. name="Русский"
  1512. package="6"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="简体中文"
  1517. package="7"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="한국어"
  1522. package="8"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="日本語"
  1527. package="9"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="Suomi"
  1532. package="10"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Polski"
  1537. package="11"
  1538. />
  1539. </otaLanguages>
  1540. <otaPackages>
  1541. <package
  1542. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1.img"
  1543. size="5183988"
  1544. />
  1545. <package
  1546. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-fr-FR.img"
  1547. size="5183988"
  1548. />
  1549. <package
  1550. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-es-ES.img"
  1551. size="5183988"
  1552. />
  1553. <package
  1554. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-it-IT.img"
  1555. size="5183988"
  1556. />
  1557. <package
  1558. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-de-DE.img"
  1559. size="5183988"
  1560. />
  1561. <package
  1562. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-nl-NL.img"
  1563. size="5183988"
  1564. />
  1565. <package
  1566. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-ru-RU.img"
  1567. size="5183988"
  1568. />
  1569. <package
  1570. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-cmn-CN.img"
  1571. size="5183988"
  1572. />
  1573. <package
  1574. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-ko-KR.img"
  1575. size="5183988"
  1576. />
  1577. <package
  1578. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-ja-JP.img"
  1579. size="5183988"
  1580. />
  1581. <package
  1582. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-fi-FI.img"
  1583. size="5183988"
  1584. />
  1585. <package
  1586. url="https://api.sena.com/support/OTA/Motorcycles/60XTT/60XTT-v1.0.1-build1-pl-PL.img"
  1587. size="5183988"
  1588. />
  1589. </otaPackages>
  1590. </productMenu>
  1591. <productMenu id="wa"
  1592. type="0" >
  1593. </productMenu>
  1594. <productMenu id="sip"
  1595. type="1" >
  1596. </productMenu>
  1597. <productMenu id="led"
  1598. type="1" >
  1599. </productMenu>
  1600. <productMenu id="illusion"
  1601. type="1" >
  1602. </productMenu>
  1603. <productMenu id="meshIntercom"
  1604. type="30" >
  1605. </productMenu>
  1606. <productMenu id="meshIntercom+"
  1607. type="3"
  1608. url="2" >
  1609. </productMenu>
  1610. <productMenu id="waveIntercom"
  1611. type="1" >
  1612. </productMenu>
  1613. <productMenu id="bluetoothIntercom"
  1614. type="1" >
  1615. </productMenu>
  1616. <productMenu id="fmradio"
  1617. type="1"
  1618. url="1" >
  1619. </productMenu>
  1620. <productMenu id="mic"
  1621. type="0" >
  1622. </productMenu>
  1623. <productMenu id="phone"
  1624. type="1" >
  1625. </productMenu>
  1626. <productMenu id="music"
  1627. type="1" >
  1628. </productMenu>
  1629. <productMenu id="musicSharing"
  1630. type="0" >
  1631. </productMenu>
  1632. <productMenu id="deviceSetting"
  1633. type="1"
  1634. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1635. </productMenu>
  1636. <productMenu id="quickGuide"
  1637. type="0"
  1638. url=""
  1639. size="1.12MB" >
  1640. </productMenu>
  1641. <productMenu id="userGuide"
  1642. type="1"
  1643. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1644. size="2.0MB" >
  1645. </productMenu>
  1646. <productMenu id="videoGuide"
  1647. type="0"
  1648. url=""
  1649. size="3.41MB" >
  1650. </productMenu>
  1651. <productMenu id="connectGuide"
  1652. type="1"
  1653. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1654. size="1.12MB" >
  1655. </productMenu>
  1656. <productMenu id="keySettings"
  1657. type="1"
  1658. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1659. </productMenu>
  1660. <productMenu id="volume"
  1661. type="13" >
  1662. </productMenu>
  1663. <productMenu id="volume+"
  1664. type="2"
  1665. url="0x6004" >
  1666. </productMenu>
  1667. <productMenu id="appearance"
  1668. type="1"
  1669. url="1|white,silver,black,glossy_black" >
  1670. </productMenu>
  1671. <productMenu id="battery"
  1672. type="1" >
  1673. </productMenu>
  1674. <productID id="6A26"
  1675. />
  1676. <productGroupable type="0"
  1677. />
  1678. </product>
  1679. <product id="R35"
  1680. name="R35"
  1681. series="R"
  1682. latestVersion="1.1.2"
  1683. latestVersionVoicePrompt="1.5"
  1684. show = "1" >
  1685. <productMenu id="protocol"
  1686. type="2" >
  1687. </productMenu>
  1688. <productMenu id="ota"
  1689. type="2" >
  1690. <otaLanguages>
  1691. <otaLanguage
  1692. id="0"
  1693. name="English"
  1694. package="0"
  1695. />
  1696. <otaLanguage
  1697. id="0"
  1698. name="简体中文"
  1699. package="1"
  1700. />
  1701. <otaLanguage
  1702. id="0"
  1703. name="Chinese Singapore"
  1704. package="2"
  1705. />
  1706. <otaLanguage
  1707. id="0"
  1708. name="Filipino"
  1709. package="3"
  1710. />
  1711. <otaLanguage
  1712. id="0"
  1713. name="Hebrew"
  1714. package="4"
  1715. />
  1716. <otaLanguage
  1717. id="0"
  1718. name="Hindi"
  1719. package="5"
  1720. />
  1721. <otaLanguage
  1722. id="0"
  1723. name="Indonesian"
  1724. package="6"
  1725. />
  1726. <otaLanguage
  1727. id="0"
  1728. name="日本語"
  1729. package="7"
  1730. />
  1731. <otaLanguage
  1732. id="0"
  1733. name="한국어"
  1734. package="8"
  1735. />
  1736. <otaLanguage
  1737. id="0"
  1738. name="Malay"
  1739. package="9"
  1740. />
  1741. <otaLanguage
  1742. id="0"
  1743. name="Modern Standard Arabic"
  1744. package="10"
  1745. />
  1746. <otaLanguage
  1747. id="0"
  1748. name="Taiwanese"
  1749. package="11"
  1750. />
  1751. <otaLanguage
  1752. id="0"
  1753. name="Tamil"
  1754. package="12"
  1755. />
  1756. <otaLanguage
  1757. id="0"
  1758. name="Thai"
  1759. package="13"
  1760. />
  1761. <otaLanguage
  1762. id="0"
  1763. name="东北话"
  1764. package="14"
  1765. />
  1766. <otaLanguage
  1767. id="0"
  1768. name="广东话"
  1769. package="15"
  1770. />
  1771. <otaLanguage
  1772. id="0"
  1773. name="江浙沪"
  1774. package="16"
  1775. />
  1776. <otaLanguage
  1777. id="0"
  1778. name="四川话"
  1779. package="17"
  1780. />
  1781. <otaLanguage
  1782. id="0"
  1783. name="陕西话"
  1784. package="18"
  1785. />
  1786. </otaLanguages>
  1787. <otaPackages>
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-CN.img"
  1794. size="5183988"
  1795. />
  1796. <package
  1797. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-SG.img"
  1798. size="5183988"
  1799. />
  1800. <package
  1801. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-tl-PH.img"
  1802. size="5183988"
  1803. />
  1804. <package
  1805. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-he-IL.img"
  1806. size="5183988"
  1807. />
  1808. <package
  1809. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-hi-IN.img"
  1810. size="5183988"
  1811. />
  1812. <package
  1813. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-id-ID.img"
  1814. size="5183988"
  1815. />
  1816. <package
  1817. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ja-JP.img"
  1818. size="5183988"
  1819. />
  1820. <package
  1821. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ko-KR.img"
  1822. size="5183988"
  1823. />
  1824. <package
  1825. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ms-MY.img"
  1826. size="5183988"
  1827. />
  1828. <package
  1829. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ar-XA.img"
  1830. size="5183988"
  1831. />
  1832. <package
  1833. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-nan-TW.img"
  1834. size="5183988"
  1835. />
  1836. <package
  1837. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ta-IN.img"
  1838. size="5183988"
  1839. />
  1840. <package
  1841. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-th-TH.img"
  1842. size="5183988"
  1843. />
  1844. <package
  1845. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zdb-CN.img"
  1846. size="5183988"
  1847. />
  1848. <package
  1849. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-yue-CN.img"
  1850. size="5183988"
  1851. />
  1852. <package
  1853. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-wuu-CN.img"
  1854. size="5183988"
  1855. />
  1856. <package
  1857. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsc-CN.img"
  1858. size="5183988"
  1859. />
  1860. <package
  1861. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsn-CN.img"
  1862. size="5183988"
  1863. />
  1864. </otaPackages>
  1865. </productMenu>
  1866. <productMenu id="sip"
  1867. type="1" >
  1868. </productMenu>
  1869. <productMenu id="illusion"
  1870. type="1" >
  1871. </productMenu>
  1872. <productMenu id="meshIntercom"
  1873. type="30" >
  1874. </productMenu>
  1875. <productMenu id="meshIntercom+"
  1876. type="3"
  1877. url="2" >
  1878. </productMenu>
  1879. <productMenu id="waveIntercom"
  1880. type="1" >
  1881. </productMenu>
  1882. <productMenu id="phone"
  1883. type="1" >
  1884. </productMenu>
  1885. <productMenu id="music"
  1886. type="1" >
  1887. </productMenu>
  1888. <productMenu id="musicSharing"
  1889. type="0" >
  1890. </productMenu>
  1891. <productMenu id="deviceSetting"
  1892. type="1"
  1893. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1894. <productMenuURL version="1.1.1"
  1895. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1896. />
  1897. <productMenuURL version="1.0.3"
  1898. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1899. />
  1900. </productMenu>
  1901. <productMenu id="quickGuide"
  1902. type="0"
  1903. url=""
  1904. size="1.12MB" >
  1905. </productMenu>
  1906. <productMenu id="userGuide"
  1907. type="1"
  1908. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1909. size="2.0MB" >
  1910. </productMenu>
  1911. <productMenu id="videoGuide"
  1912. type="0"
  1913. url=""
  1914. size="3.41MB" >
  1915. </productMenu>
  1916. <productMenu id="connectGuide"
  1917. type="1"
  1918. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1919. size="1.12MB" >
  1920. </productMenu>
  1921. <productMenu id="volume"
  1922. type="16" >
  1923. </productMenu>
  1924. <productMenu id="volume+"
  1925. type="2"
  1926. url="0x6004" >
  1927. </productMenu>
  1928. <productMenu id="soundMode"
  1929. type="0" >
  1930. </productMenu>
  1931. <productMenu id="appearance"
  1932. type="1"
  1933. url="1|white,silver,chrome,black" >
  1934. </productMenu>
  1935. <productMenu id="battery"
  1936. type="1" >
  1937. </productMenu>
  1938. <productID id="6A06"
  1939. />
  1940. <productGroupable type="0"
  1941. />
  1942. </product>
  1943. <product id="COM60X"
  1944. name="BMW MOTORRAD COM 60X"
  1945. series="60"
  1946. latestVersion="0.1.1"
  1947. latestVersionMesh="0.19"
  1948. latestVersionVoicePrompt="1.8"
  1949. show = "-1" >
  1950. <productMenu id="protocol"
  1951. type="2" >
  1952. </productMenu>
  1953. <productMenu id="ota"
  1954. type="2" >
  1955. <otaLanguages>
  1956. <otaLanguage
  1957. id="0"
  1958. name="English"
  1959. package="0"
  1960. />
  1961. <otaLanguage
  1962. id="0"
  1963. name="Français"
  1964. package="1"
  1965. />
  1966. <otaLanguage
  1967. id="0"
  1968. name="Español"
  1969. package="2"
  1970. />
  1971. <otaLanguage
  1972. id="0"
  1973. name="Italiano"
  1974. package="3"
  1975. />
  1976. <otaLanguage
  1977. id="0"
  1978. name="Deutsch"
  1979. package="4"
  1980. />
  1981. <otaLanguage
  1982. id="0"
  1983. name="Nederlands"
  1984. package="5"
  1985. />
  1986. <otaLanguage
  1987. id="0"
  1988. name="Русский"
  1989. package="6"
  1990. />
  1991. <otaLanguage
  1992. id="0"
  1993. name="简体中文"
  1994. package="7"
  1995. />
  1996. <otaLanguage
  1997. id="0"
  1998. name="한국어"
  1999. package="8"
  2000. />
  2001. <otaLanguage
  2002. id="0"
  2003. name="日本語"
  2004. package="9"
  2005. />
  2006. <otaLanguage
  2007. id="0"
  2008. name="Suomi"
  2009. package="10"
  2010. />
  2011. <otaLanguage
  2012. id="0"
  2013. name="Polski"
  2014. package="11"
  2015. />
  2016. </otaLanguages>
  2017. <otaPackages>
  2018. <package
  2019. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0.img"
  2020. size="5183988"
  2021. />
  2022. <package
  2023. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fr-FR.img"
  2024. size="5183988"
  2025. />
  2026. <package
  2027. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-es-ES.img"
  2028. size="5183988"
  2029. />
  2030. <package
  2031. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-it-IT.img"
  2032. size="5183988"
  2033. />
  2034. <package
  2035. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-de-DE.img"
  2036. size="5183988"
  2037. />
  2038. <package
  2039. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-nl-NL.img"
  2040. size="5183988"
  2041. />
  2042. <package
  2043. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ru-RU.img"
  2044. size="5183988"
  2045. />
  2046. <package
  2047. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-cmn-CN.img"
  2048. size="5183988"
  2049. />
  2050. <package
  2051. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ko-KR.img"
  2052. size="5183988"
  2053. />
  2054. <package
  2055. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ja-JP.img"
  2056. size="5183988"
  2057. />
  2058. <package
  2059. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fi-FI.img"
  2060. size="5183988"
  2061. />
  2062. <package
  2063. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-pl-PL.img"
  2064. size="5183988"
  2065. />
  2066. </otaPackages>
  2067. </productMenu>
  2068. <productMenu id="wa"
  2069. type="0" >
  2070. </productMenu>
  2071. <productMenu id="sip"
  2072. type="1" >
  2073. </productMenu>
  2074. <productMenu id="led"
  2075. type="1" >
  2076. </productMenu>
  2077. <productMenu id="illusion"
  2078. type="1" >
  2079. </productMenu>
  2080. <productMenu id="meshIntercom"
  2081. type="30" >
  2082. </productMenu>
  2083. <productMenu id="meshIntercom+"
  2084. type="3"
  2085. url="2" >
  2086. </productMenu>
  2087. <productMenu id="bluetoothIntercom"
  2088. type="1" >
  2089. </productMenu>
  2090. <productMenu id="fmradio"
  2091. type="1"
  2092. url="1" >
  2093. </productMenu>
  2094. <productMenu id="mic"
  2095. type="0" >
  2096. </productMenu>
  2097. <productMenu id="phone"
  2098. type="1" >
  2099. </productMenu>
  2100. <productMenu id="music"
  2101. type="1" >
  2102. </productMenu>
  2103. <productMenu id="musicSharing"
  2104. type="0" >
  2105. </productMenu>
  2106. <productMenu id="deviceSetting"
  2107. type="1"
  2108. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  2109. </productMenu>
  2110. <productMenu id="quickGuide"
  2111. type="0"
  2112. url=""
  2113. size="1.12MB" >
  2114. </productMenu>
  2115. <productMenu id="userGuide"
  2116. type="1"
  2117. url=""
  2118. size="2.0MB" >
  2119. </productMenu>
  2120. <productMenu id="videoGuide"
  2121. type="0"
  2122. url=""
  2123. size="3.41MB" >
  2124. </productMenu>
  2125. <productMenu id="keySettings"
  2126. type="1"
  2127. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  2128. </productMenu>
  2129. <productMenu id="volume"
  2130. type="13" >
  2131. </productMenu>
  2132. <productMenu id="volume+"
  2133. type="2"
  2134. url="0x6004" >
  2135. </productMenu>
  2136. <productMenu id="battery"
  2137. type="1" >
  2138. </productMenu>
  2139. <productID id="6A1B"
  2140. />
  2141. <productGroupable type="0"
  2142. />
  2143. </product>
  2144. <product id="COMP1"
  2145. name="BMW COM P1"
  2146. series="60"
  2147. latestVersion="1.2"
  2148. latestVersionMesh="0.19"
  2149. latestVersionVoicePrompt="1.0"
  2150. show = "-1" >
  2151. <productMenu id="protocol"
  2152. type="2" >
  2153. </productMenu>
  2154. <productMenu id="ota"
  2155. type="2" >
  2156. <otaLanguages>
  2157. <otaLanguage
  2158. id="0"
  2159. name="English"
  2160. package="0"
  2161. />
  2162. <otaLanguage
  2163. id="0"
  2164. name="Français"
  2165. package="1"
  2166. />
  2167. <otaLanguage
  2168. id="0"
  2169. name="Español"
  2170. package="2"
  2171. />
  2172. <otaLanguage
  2173. id="0"
  2174. name="Italiano"
  2175. package="3"
  2176. />
  2177. <otaLanguage
  2178. id="0"
  2179. name="Deutsch"
  2180. package="4"
  2181. />
  2182. <otaLanguage
  2183. id="0"
  2184. name="Nederlands"
  2185. package="5"
  2186. />
  2187. <otaLanguage
  2188. id="0"
  2189. name="Русский"
  2190. package="6"
  2191. />
  2192. <otaLanguage
  2193. id="0"
  2194. name="简体中文"
  2195. package="7"
  2196. />
  2197. <otaLanguage
  2198. id="0"
  2199. name="한국어"
  2200. package="8"
  2201. />
  2202. <otaLanguage
  2203. id="0"
  2204. name="日本語"
  2205. package="9"
  2206. />
  2207. <otaLanguage
  2208. id="0"
  2209. name="Suomi"
  2210. package="10"
  2211. />
  2212. </otaLanguages>
  2213. <otaPackages>
  2214. <package
  2215. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  2216. size="5183988"
  2217. />
  2218. <package
  2219. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  2220. size="5183988"
  2221. />
  2222. <package
  2223. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  2224. size="5183988"
  2225. />
  2226. <package
  2227. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  2228. size="5183988"
  2229. />
  2230. <package
  2231. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  2232. size="5183988"
  2233. />
  2234. <package
  2235. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  2236. size="5183988"
  2237. />
  2238. <package
  2239. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  2240. size="5183988"
  2241. />
  2242. <package
  2243. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  2244. size="5183988"
  2245. />
  2246. <package
  2247. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  2248. size="5183988"
  2249. />
  2250. <package
  2251. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  2252. size="5183988"
  2253. />
  2254. <package
  2255. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  2256. size="5183988"
  2257. />
  2258. </otaPackages>
  2259. </productMenu>
  2260. <productMenu id="wa"
  2261. type="0" >
  2262. </productMenu>
  2263. <productMenu id="sip"
  2264. type="1" >
  2265. </productMenu>
  2266. <productMenu id="led"
  2267. type="0" >
  2268. </productMenu>
  2269. <productMenu id="illusion"
  2270. type="0" >
  2271. </productMenu>
  2272. <productMenu id="meshIntercom"
  2273. type="30" >
  2274. </productMenu>
  2275. <productMenu id="bluetoothIntercom"
  2276. type="1" >
  2277. </productMenu>
  2278. <productMenu id="bluetoothIntercomGrouping"
  2279. type="0" >
  2280. </productMenu>
  2281. <productMenu id="fmradio"
  2282. type="0" >
  2283. </productMenu>
  2284. <productMenu id="phone"
  2285. type="1" >
  2286. </productMenu>
  2287. <productMenu id="music"
  2288. type="1" >
  2289. </productMenu>
  2290. <productMenu id="musicSharing"
  2291. type="0" >
  2292. </productMenu>
  2293. <productMenu id="deviceSetting"
  2294. type="1"
  2295. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  2296. </productMenu>
  2297. <productMenu id="quickGuide"
  2298. type="0"
  2299. url=""
  2300. size="1.12MB" >
  2301. </productMenu>
  2302. <productMenu id="userGuide"
  2303. type="0"
  2304. url=""
  2305. size="2.0MB" >
  2306. </productMenu>
  2307. <productMenu id="videoGuide"
  2308. type="0"
  2309. url=""
  2310. size="3.41MB" >
  2311. </productMenu>
  2312. <productMenu id="volume"
  2313. type="16" >
  2314. </productMenu>
  2315. <productMenu id="battery"
  2316. type="1" >
  2317. </productMenu>
  2318. <productID id="6A80"
  2319. />
  2320. <productGroupable type="0"
  2321. />
  2322. </product>
  2323. <product id="50S"
  2324. name="50S"
  2325. series="50"
  2326. latestVersion="2.7.2"
  2327. show = "1" >
  2328. <productMenu id="protocol"
  2329. type="2" >
  2330. </productMenu>
  2331. <productMenu id="alexa"
  2332. type="0" >
  2333. </productMenu>
  2334. <productMenu id="ota"
  2335. type="0"
  2336. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2337. size="1150234" >
  2338. </productMenu>
  2339. <productMenu id="wa"
  2340. type="1" >
  2341. </productMenu>
  2342. <productMenu id="sip"
  2343. type="1" >
  2344. </productMenu>
  2345. <productMenu id="meshIntercom"
  2346. type="30" >
  2347. <productMenuType version="2.1.1"
  2348. type="20"
  2349. />
  2350. </productMenu>
  2351. <productMenu id="meshIntercom+"
  2352. type="3"
  2353. url="2" >
  2354. <productMenuType version="2.5.9"
  2355. type="2"
  2356. />
  2357. <productMenuURL version="2.1.1"
  2358. url="0"
  2359. />
  2360. </productMenu>
  2361. <productMenu id="waveIntercom"
  2362. type="1" >
  2363. <productMenuType version="2.6"
  2364. type="0"
  2365. />
  2366. </productMenu>
  2367. <productMenu id="bluetoothIntercom"
  2368. type="1" >
  2369. </productMenu>
  2370. <productMenu id="phone"
  2371. type="1" >
  2372. </productMenu>
  2373. <productMenu id="music"
  2374. type="1" >
  2375. </productMenu>
  2376. <productMenu id="fmradio"
  2377. type="1" >
  2378. </productMenu>
  2379. <productMenu id="deviceSetting"
  2380. type="1"
  2381. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2382. <productMenuURL version="2.5.9"
  2383. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2384. />
  2385. <productMenuURL version="2.1.1"
  2386. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2387. />
  2388. <productMenuURL version="2.0.3"
  2389. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2390. />
  2391. </productMenu>
  2392. <productMenu id="quickGuide"
  2393. type="0"
  2394. url=""
  2395. size="934KB" >
  2396. </productMenu>
  2397. <productMenu id="userGuide"
  2398. type="1"
  2399. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  2400. size="1.14MB" >
  2401. </productMenu>
  2402. <productMenu id="videoGuide"
  2403. type="1"
  2404. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2405. size="3.41MB" >
  2406. </productMenu>
  2407. <productMenu id="connectGuide"
  2408. type="1"
  2409. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  2410. size="1.12MB" >
  2411. </productMenu>
  2412. <productMenu id="volume"
  2413. type="11" >
  2414. </productMenu>
  2415. <productMenu id="battery"
  2416. type="1" >
  2417. </productMenu>
  2418. <productID id="3210"
  2419. />
  2420. <productGroupable type="0"
  2421. />
  2422. </product>
  2423. <product id="50S"
  2424. name="50S"
  2425. series="50"
  2426. latestVersion="1.5.1"
  2427. show = "-1" >
  2428. <productMenu id="protocol"
  2429. type="2" >
  2430. </productMenu>
  2431. <productMenu id="alexa"
  2432. type="0" >
  2433. </productMenu>
  2434. <productMenu id="wa"
  2435. type="1" >
  2436. </productMenu>
  2437. <productMenu id="sip"
  2438. type="1" >
  2439. </productMenu>
  2440. <productMenu id="meshIntercom"
  2441. type="30" >
  2442. <productMenuType version="1.2.2"
  2443. type="20"
  2444. />
  2445. </productMenu>
  2446. <productMenu id="meshIntercom+"
  2447. type="3"
  2448. url="2" >
  2449. <productMenuType version="1.4.9"
  2450. type="2"
  2451. />
  2452. <productMenuURL version="1.2.2"
  2453. url="0"
  2454. />
  2455. </productMenu>
  2456. <productMenu id="waveIntercom"
  2457. type="1" >
  2458. <productMenuType version="1.3.9"
  2459. type="0"
  2460. />
  2461. </productMenu>
  2462. <productMenu id="bluetoothIntercom"
  2463. type="1" >
  2464. </productMenu>
  2465. <productMenu id="phone"
  2466. type="1" >
  2467. </productMenu>
  2468. <productMenu id="music"
  2469. type="1" >
  2470. </productMenu>
  2471. <productMenu id="fmradio"
  2472. type="1" >
  2473. </productMenu>
  2474. <productMenu id="deviceSetting"
  2475. type="1"
  2476. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2477. <productMenuURL version="1.4.9"
  2478. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2479. />
  2480. <productMenuURL version="1.3.9"
  2481. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2482. />
  2483. <productMenuURL version="1.2.2"
  2484. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2485. />
  2486. <productMenuURL version="1.1.1"
  2487. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2488. />
  2489. </productMenu>
  2490. <productMenu id="quickGuide"
  2491. type="0"
  2492. url=""
  2493. size="934KB" >
  2494. </productMenu>
  2495. <productMenu id="userGuide"
  2496. type="1"
  2497. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2498. size="1.14MB" >
  2499. </productMenu>
  2500. <productMenu id="videoGuide"
  2501. type="1"
  2502. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2503. size="3.41MB" >
  2504. </productMenu>
  2505. <productMenu id="volume"
  2506. type="11" >
  2507. </productMenu>
  2508. <productMenu id="battery"
  2509. type="1" >
  2510. </productMenu>
  2511. <productID id="3132"
  2512. />
  2513. <productGroupable type="0"
  2514. />
  2515. </product>
  2516. <product id="50R"
  2517. name="50R"
  2518. series="50"
  2519. latestVersion="2.7.1"
  2520. show = "1" >
  2521. <productMenu id="protocol"
  2522. type="2" >
  2523. </productMenu>
  2524. <productMenu id="alexa"
  2525. type="0" >
  2526. </productMenu>
  2527. <productMenu id="ota"
  2528. type="0"
  2529. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2530. size="1150234" >
  2531. </productMenu>
  2532. <productMenu id="wa"
  2533. type="1" >
  2534. </productMenu>
  2535. <productMenu id="sip"
  2536. type="1" >
  2537. </productMenu>
  2538. <productMenu id="meshIntercom"
  2539. type="30" >
  2540. <productMenuType version="2.1.1"
  2541. type="20"
  2542. />
  2543. </productMenu>
  2544. <productMenu id="meshIntercom+"
  2545. type="3"
  2546. url="2" >
  2547. <productMenuType version="2.5.9"
  2548. type="2"
  2549. />
  2550. <productMenuURL version="2.1.1"
  2551. url="0"
  2552. />
  2553. </productMenu>
  2554. <productMenu id="waveIntercom"
  2555. type="1" >
  2556. <productMenuType version="2.6"
  2557. type="0"
  2558. />
  2559. </productMenu>
  2560. <productMenu id="bluetoothIntercom"
  2561. type="1" >
  2562. </productMenu>
  2563. <productMenu id="phone"
  2564. type="1" >
  2565. </productMenu>
  2566. <productMenu id="music"
  2567. type="1" >
  2568. </productMenu>
  2569. <productMenu id="fmradio"
  2570. type="1" >
  2571. </productMenu>
  2572. <productMenu id="deviceSetting"
  2573. type="1"
  2574. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2575. <productMenuURL version="2.5.9"
  2576. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2577. />
  2578. <productMenuURL version="2.1.1"
  2579. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2580. />
  2581. <productMenuURL version="2.0"
  2582. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2583. />
  2584. </productMenu>
  2585. <productMenu id="quickGuide"
  2586. type="0"
  2587. url=""
  2588. size="344KB" >
  2589. </productMenu>
  2590. <productMenu id="userGuide"
  2591. type="1"
  2592. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2593. size="3.41MB" >
  2594. </productMenu>
  2595. <productMenu id="videoGuide"
  2596. type="1"
  2597. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2598. size="3.41MB" >
  2599. </productMenu>
  2600. <productMenu id="connectGuide"
  2601. type="1"
  2602. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2603. size="1.12MB" >
  2604. </productMenu>
  2605. <productMenu id="volume"
  2606. type="11" >
  2607. </productMenu>
  2608. <productMenu id="battery"
  2609. type="1" >
  2610. </productMenu>
  2611. <productID id="3218"
  2612. />
  2613. <productGroupable type="0"
  2614. />
  2615. </product>
  2616. <product id="50R"
  2617. name="50R"
  2618. series="50"
  2619. latestVersion="1.5.1"
  2620. show = "-1" >
  2621. <productMenu id="protocol"
  2622. type="2" >
  2623. </productMenu>
  2624. <productMenu id="alexa"
  2625. type="0" >
  2626. </productMenu>
  2627. <productMenu id="wa"
  2628. type="1" >
  2629. </productMenu>
  2630. <productMenu id="sip"
  2631. type="1" >
  2632. </productMenu>
  2633. <productMenu id="meshIntercom"
  2634. type="30" >
  2635. <productMenuType version="1.2.2"
  2636. type="20"
  2637. />
  2638. </productMenu>
  2639. <productMenu id="meshIntercom+"
  2640. type="3"
  2641. url="2" >
  2642. <productMenuType version="1.4.9"
  2643. type="2"
  2644. />
  2645. <productMenuURL version="1.2.2"
  2646. url="0"
  2647. />
  2648. </productMenu>
  2649. <productMenu id="waveIntercom"
  2650. type="1" >
  2651. <productMenuType version="1.3.9"
  2652. type="0"
  2653. />
  2654. </productMenu>
  2655. <productMenu id="bluetoothIntercom"
  2656. type="1" >
  2657. </productMenu>
  2658. <productMenu id="phone"
  2659. type="1" >
  2660. </productMenu>
  2661. <productMenu id="music"
  2662. type="1" >
  2663. </productMenu>
  2664. <productMenu id="fmradio"
  2665. type="1" >
  2666. </productMenu>
  2667. <productMenu id="deviceSetting"
  2668. type="1"
  2669. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2670. <productMenuURL version="1.4.9"
  2671. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2672. />
  2673. <productMenuURL version="1.3.9"
  2674. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2675. />
  2676. <productMenuURL version="1.2.2"
  2677. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2678. />
  2679. <productMenuURL version="1.1.1"
  2680. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2681. />
  2682. </productMenu>
  2683. <productMenu id="quickGuide"
  2684. type="0"
  2685. url=""
  2686. size="344KB" >
  2687. </productMenu>
  2688. <productMenu id="userGuide"
  2689. type="1"
  2690. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2691. size="3.41MB" >
  2692. </productMenu>
  2693. <productMenu id="videoGuide"
  2694. type="1"
  2695. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2696. size="3.41MB" >
  2697. </productMenu>
  2698. <productMenu id="volume"
  2699. type="11" >
  2700. </productMenu>
  2701. <productMenu id="battery"
  2702. type="1" >
  2703. </productMenu>
  2704. <productID id="3134"
  2705. />
  2706. <productGroupable type="0"
  2707. />
  2708. </product>
  2709. <product id="50C"
  2710. name="50C"
  2711. series="50"
  2712. latestVersion="1.4.3"
  2713. show = "1" >
  2714. <productMenu id="protocol"
  2715. type="2" >
  2716. </productMenu>
  2717. <productMenu id="ota"
  2718. type="0" >
  2719. </productMenu>
  2720. <productMenu id="wa"
  2721. type="1" >
  2722. </productMenu>
  2723. <productMenu id="sip"
  2724. type="1" >
  2725. </productMenu>
  2726. <productMenu id="meshIntercom"
  2727. type="30" >
  2728. <productMenuType version="1.1.1"
  2729. type="20"
  2730. />
  2731. </productMenu>
  2732. <productMenu id="meshIntercom+"
  2733. type="3"
  2734. url="2" >
  2735. <productMenuType version="1.3.9"
  2736. type="2"
  2737. />
  2738. <productMenuURL version="1.1.1"
  2739. url="0"
  2740. />
  2741. </productMenu>
  2742. <productMenu id="waveIntercom"
  2743. type="1" >
  2744. <productMenuType version="1.2.9"
  2745. type="0"
  2746. />
  2747. </productMenu>
  2748. <productMenu id="bluetoothIntercom"
  2749. type="1" >
  2750. </productMenu>
  2751. <productMenu id="phone"
  2752. type="1" >
  2753. </productMenu>
  2754. <productMenu id="music"
  2755. type="1" >
  2756. </productMenu>
  2757. <productMenu id="fmradio"
  2758. type="1" >
  2759. </productMenu>
  2760. <productMenu id="deviceSetting"
  2761. type="1"
  2762. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2763. <productMenuURL version="1.3.9"
  2764. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2765. />
  2766. <productMenuURL version="1.1.1"
  2767. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2768. />
  2769. <productMenuURL version="1.0.1"
  2770. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2771. />
  2772. </productMenu>
  2773. <productMenu id="quickGuide"
  2774. type="0"
  2775. url=""
  2776. size="344KB" >
  2777. </productMenu>
  2778. <productMenu id="userGuide"
  2779. type="1"
  2780. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2781. size="3.41MB" >
  2782. </productMenu>
  2783. <productMenu id="connectGuide"
  2784. type="1"
  2785. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2786. size="1.12MB" >
  2787. </productMenu>
  2788. <productMenu id="volume"
  2789. type="11" >
  2790. </productMenu>
  2791. <productMenu id="battery"
  2792. type="1" >
  2793. </productMenu>
  2794. <productID id="3232"
  2795. />
  2796. <productGroupable type="0"
  2797. />
  2798. </product>
  2799. <product id="PHANTOMXB"
  2800. name="PHANTOM XB"
  2801. series="Helmet"
  2802. latestVersion="1.2.11"
  2803. latestVersionVoicePrompt="1.8"
  2804. show = "-1" >
  2805. <productMenu id="protocol"
  2806. type="2" >
  2807. </productMenu>
  2808. <productMenu id="ota"
  2809. type="2" >
  2810. <otaLanguages>
  2811. <otaLanguage
  2812. id="0"
  2813. name="English"
  2814. package="0"
  2815. />
  2816. <otaLanguage
  2817. id="0"
  2818. name="Français"
  2819. package="1"
  2820. />
  2821. <otaLanguage
  2822. id="0"
  2823. name="Español"
  2824. package="2"
  2825. />
  2826. <otaLanguage
  2827. id="0"
  2828. name="Italiano"
  2829. package="3"
  2830. />
  2831. <otaLanguage
  2832. id="0"
  2833. name="Deutsch"
  2834. package="4"
  2835. />
  2836. <otaLanguage
  2837. id="0"
  2838. name="Nederlands"
  2839. package="5"
  2840. />
  2841. <otaLanguage
  2842. id="0"
  2843. name="Русский"
  2844. package="6"
  2845. />
  2846. <otaLanguage
  2847. id="0"
  2848. name="简体中文"
  2849. package="7"
  2850. />
  2851. <otaLanguage
  2852. id="0"
  2853. name="한국어"
  2854. package="8"
  2855. />
  2856. <otaLanguage
  2857. id="0"
  2858. name="日本語"
  2859. package="9"
  2860. />
  2861. <otaLanguage
  2862. id="0"
  2863. name="Suomi"
  2864. package="10"
  2865. />
  2866. <otaLanguage
  2867. id="0"
  2868. name="Polski"
  2869. package="11"
  2870. />
  2871. </otaLanguages>
  2872. <otaPackages>
  2873. <package
  2874. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0.img"
  2875. size="5183988"
  2876. />
  2877. <package
  2878. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-fr-FR.img"
  2879. size="5183988"
  2880. />
  2881. <package
  2882. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-es-ES.img"
  2883. size="5183988"
  2884. />
  2885. <package
  2886. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-it-IT.img"
  2887. size="5183988"
  2888. />
  2889. <package
  2890. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-de-DE.img"
  2891. size="5183988"
  2892. />
  2893. <package
  2894. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-nl-NL.img"
  2895. size="5183988"
  2896. />
  2897. <package
  2898. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ru-RU.img"
  2899. size="5183988"
  2900. />
  2901. <package
  2902. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-cmn-CN.img"
  2903. size="5183988"
  2904. />
  2905. <package
  2906. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ko-KR.img"
  2907. size="5183988"
  2908. />
  2909. <package
  2910. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-ja-JP.img"
  2911. size="5183988"
  2912. />
  2913. <package
  2914. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-fi-FI.img"
  2915. size="5183988"
  2916. />
  2917. <package
  2918. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.11-build0-pl-PL.img"
  2919. size="5183988"
  2920. />
  2921. </otaPackages>
  2922. </productMenu>
  2923. <productMenu id="wa"
  2924. type="0" >
  2925. </productMenu>
  2926. <productMenu id="led"
  2927. type="5" >
  2928. </productMenu>
  2929. <productMenu id="led+"
  2930. type="2"
  2931. url="1" >
  2932. </productMenu>
  2933. <productMenu id="meshIntercom"
  2934. type="30" >
  2935. </productMenu>
  2936. <productMenu id="meshIntercom+"
  2937. type="3"
  2938. url="2" >
  2939. </productMenu>
  2940. <productMenu id="waveIntercom"
  2941. type="1" >
  2942. </productMenu>
  2943. <productMenu id="fmradio"
  2944. type="0" >
  2945. </productMenu>
  2946. <productMenu id="phone"
  2947. type="1" >
  2948. </productMenu>
  2949. <productMenu id="music"
  2950. type="1" >
  2951. </productMenu>
  2952. <productMenu id="musicSharing"
  2953. type="0" >
  2954. </productMenu>
  2955. <productMenu id="deviceSetting"
  2956. type="1"
  2957. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2958. <productMenuURL version="1.2.10"
  2959. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2960. />
  2961. <productMenuURL version="1.2.4"
  2962. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2963. />
  2964. </productMenu>
  2965. <productMenu id="quickGuide"
  2966. type="0"
  2967. url=""
  2968. size="1.12MB" >
  2969. </productMenu>
  2970. <productMenu id="userGuide"
  2971. type="1"
  2972. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2973. size="2.0MB" >
  2974. </productMenu>
  2975. <productMenu id="videoGuide"
  2976. type="0"
  2977. url=""
  2978. size="3.41MB" >
  2979. </productMenu>
  2980. <productMenu id="volume"
  2981. type="16" >
  2982. </productMenu>
  2983. <productMenu id="volume+"
  2984. type="2"
  2985. url="0x6004" >
  2986. </productMenu>
  2987. <productMenu id="battery"
  2988. type="1" >
  2989. </productMenu>
  2990. <productID id="6A0F"
  2991. />
  2992. <productGroupable type="0"
  2993. />
  2994. </product>
  2995. <product id="PHANTOMXB"
  2996. name="PHANTOM XB"
  2997. series="Helmet"
  2998. latestVersion="1.2.11"
  2999. latestVersionVoicePrompt="1.8"
  3000. show = "-1" >
  3001. <productMenu id="protocol"
  3002. type="2" >
  3003. </productMenu>
  3004. <productMenu id="ota"
  3005. type="2" >
  3006. <otaLanguages>
  3007. <otaLanguage
  3008. id="0"
  3009. name="English"
  3010. package="0"
  3011. />
  3012. <otaLanguage
  3013. id="0"
  3014. name="Français"
  3015. package="1"
  3016. />
  3017. <otaLanguage
  3018. id="0"
  3019. name="Español"
  3020. package="2"
  3021. />
  3022. <otaLanguage
  3023. id="0"
  3024. name="Italiano"
  3025. package="3"
  3026. />
  3027. <otaLanguage
  3028. id="0"
  3029. name="Deutsch"
  3030. package="4"
  3031. />
  3032. <otaLanguage
  3033. id="0"
  3034. name="Nederlands"
  3035. package="5"
  3036. />
  3037. <otaLanguage
  3038. id="0"
  3039. name="Русский"
  3040. package="6"
  3041. />
  3042. <otaLanguage
  3043. id="0"
  3044. name="简体中文"
  3045. package="7"
  3046. />
  3047. <otaLanguage
  3048. id="0"
  3049. name="한국어"
  3050. package="8"
  3051. />
  3052. <otaLanguage
  3053. id="0"
  3054. name="日本語"
  3055. package="9"
  3056. />
  3057. <otaLanguage
  3058. id="0"
  3059. name="Suomi"
  3060. package="10"
  3061. />
  3062. <otaLanguage
  3063. id="0"
  3064. name="Polski"
  3065. package="11"
  3066. />
  3067. </otaLanguages>
  3068. <otaPackages>
  3069. <package
  3070. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0.img"
  3071. size="5183988"
  3072. />
  3073. <package
  3074. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-fr-FR.img"
  3075. size="5183988"
  3076. />
  3077. <package
  3078. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-es-ES.img"
  3079. size="5183988"
  3080. />
  3081. <package
  3082. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-it-IT.img"
  3083. size="5183988"
  3084. />
  3085. <package
  3086. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-de-DE.img"
  3087. size="5183988"
  3088. />
  3089. <package
  3090. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-nl-NL.img"
  3091. size="5183988"
  3092. />
  3093. <package
  3094. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ru-RU.img"
  3095. size="5183988"
  3096. />
  3097. <package
  3098. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-cmn-CN.img"
  3099. size="5183988"
  3100. />
  3101. <package
  3102. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ko-KR.img"
  3103. size="5183988"
  3104. />
  3105. <package
  3106. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-ja-JP.img"
  3107. size="5183988"
  3108. />
  3109. <package
  3110. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-fi-FI.img"
  3111. size="5183988"
  3112. />
  3113. <package
  3114. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.11-build0-pl-PL.img"
  3115. size="5183988"
  3116. />
  3117. </otaPackages>
  3118. </productMenu>
  3119. <productMenu id="wa"
  3120. type="0" >
  3121. </productMenu>
  3122. <productMenu id="led"
  3123. type="5" >
  3124. </productMenu>
  3125. <productMenu id="led+"
  3126. type="2"
  3127. url="1" >
  3128. </productMenu>
  3129. <productMenu id="meshIntercom"
  3130. type="30" >
  3131. </productMenu>
  3132. <productMenu id="meshIntercom+"
  3133. type="3"
  3134. url="2" >
  3135. </productMenu>
  3136. <productMenu id="waveIntercom"
  3137. type="1" >
  3138. </productMenu>
  3139. <productMenu id="fmradio"
  3140. type="0" >
  3141. </productMenu>
  3142. <productMenu id="phone"
  3143. type="1" >
  3144. </productMenu>
  3145. <productMenu id="music"
  3146. type="1" >
  3147. </productMenu>
  3148. <productMenu id="musicSharing"
  3149. type="0" >
  3150. </productMenu>
  3151. <productMenu id="deviceSetting"
  3152. type="1"
  3153. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3154. <productMenuURL version="1.2.10"
  3155. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3156. />
  3157. <productMenuURL version="1.2.4"
  3158. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3159. />
  3160. <productMenuURL version="1.2.1"
  3161. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3162. />
  3163. </productMenu>
  3164. <productMenu id="quickGuide"
  3165. type="0"
  3166. url=""
  3167. size="1.12MB" >
  3168. </productMenu>
  3169. <productMenu id="userGuide"
  3170. type="1"
  3171. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3172. size="2.0MB" >
  3173. </productMenu>
  3174. <productMenu id="videoGuide"
  3175. type="0"
  3176. url=""
  3177. size="3.41MB" >
  3178. </productMenu>
  3179. <productMenu id="volume"
  3180. type="16" >
  3181. </productMenu>
  3182. <productMenu id="volume+"
  3183. type="2"
  3184. url="0x6004" >
  3185. </productMenu>
  3186. <productMenu id="battery"
  3187. type="1" >
  3188. </productMenu>
  3189. <productID id="6A0C"
  3190. />
  3191. <productGroupable type="0"
  3192. />
  3193. </product>
  3194. <product id="PHANTOMKV"
  3195. name="PHANTOM KV"
  3196. series="Helmet"
  3197. latestVersion="1.2.11"
  3198. latestVersionVoicePrompt="1.8"
  3199. show = "1" >
  3200. <productMenu id="protocol"
  3201. type="2" >
  3202. </productMenu>
  3203. <productMenu id="ota"
  3204. type="2" >
  3205. <otaLanguages>
  3206. <otaLanguage
  3207. id="0"
  3208. name="English"
  3209. package="0"
  3210. />
  3211. <otaLanguage
  3212. id="0"
  3213. name="Français"
  3214. package="1"
  3215. />
  3216. <otaLanguage
  3217. id="0"
  3218. name="Español"
  3219. package="2"
  3220. />
  3221. <otaLanguage
  3222. id="0"
  3223. name="Italiano"
  3224. package="3"
  3225. />
  3226. <otaLanguage
  3227. id="0"
  3228. name="Deutsch"
  3229. package="4"
  3230. />
  3231. <otaLanguage
  3232. id="0"
  3233. name="Nederlands"
  3234. package="5"
  3235. />
  3236. <otaLanguage
  3237. id="0"
  3238. name="Русский"
  3239. package="6"
  3240. />
  3241. <otaLanguage
  3242. id="0"
  3243. name="简体中文"
  3244. package="7"
  3245. />
  3246. <otaLanguage
  3247. id="0"
  3248. name="한국어"
  3249. package="8"
  3250. />
  3251. <otaLanguage
  3252. id="0"
  3253. name="日本語"
  3254. package="9"
  3255. />
  3256. <otaLanguage
  3257. id="0"
  3258. name="Suomi"
  3259. package="10"
  3260. />
  3261. <otaLanguage
  3262. id="0"
  3263. name="Polski"
  3264. package="11"
  3265. />
  3266. </otaLanguages>
  3267. <otaPackages>
  3268. <package
  3269. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0.img"
  3270. size="5183988"
  3271. />
  3272. <package
  3273. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-fr-FR.img"
  3274. size="5183988"
  3275. />
  3276. <package
  3277. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-es-ES.img"
  3278. size="5183988"
  3279. />
  3280. <package
  3281. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-it-IT.img"
  3282. size="5183988"
  3283. />
  3284. <package
  3285. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-de-DE.img"
  3286. size="5183988"
  3287. />
  3288. <package
  3289. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-nl-NL.img"
  3290. size="5183988"
  3291. />
  3292. <package
  3293. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ru-RU.img"
  3294. size="5183988"
  3295. />
  3296. <package
  3297. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-cmn-CN.img"
  3298. size="5183988"
  3299. />
  3300. <package
  3301. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ko-KR.img"
  3302. size="5183988"
  3303. />
  3304. <package
  3305. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-ja-JP.img"
  3306. size="5183988"
  3307. />
  3308. <package
  3309. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-fi-FI.img"
  3310. size="5183988"
  3311. />
  3312. <package
  3313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.11-build0-pl-PL.img"
  3314. size="5183988"
  3315. />
  3316. </otaPackages>
  3317. </productMenu>
  3318. <productMenu id="wa"
  3319. type="0" >
  3320. </productMenu>
  3321. <productMenu id="led"
  3322. type="5" >
  3323. </productMenu>
  3324. <productMenu id="led+"
  3325. type="2"
  3326. url="1" >
  3327. </productMenu>
  3328. <productMenu id="meshIntercom"
  3329. type="30" >
  3330. </productMenu>
  3331. <productMenu id="meshIntercom+"
  3332. type="3"
  3333. url="2" >
  3334. </productMenu>
  3335. <productMenu id="waveIntercom"
  3336. type="1" >
  3337. </productMenu>
  3338. <productMenu id="fmradio"
  3339. type="0" >
  3340. </productMenu>
  3341. <productMenu id="phone"
  3342. type="1" >
  3343. </productMenu>
  3344. <productMenu id="music"
  3345. type="1" >
  3346. </productMenu>
  3347. <productMenu id="musicSharing"
  3348. type="0" >
  3349. </productMenu>
  3350. <productMenu id="deviceSetting"
  3351. type="1"
  3352. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3353. <productMenuURL version="1.2.10"
  3354. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3355. />
  3356. <productMenuURL version="1.2.4"
  3357. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3358. />
  3359. </productMenu>
  3360. <productMenu id="quickGuide"
  3361. type="0"
  3362. url=""
  3363. size="1.12MB" >
  3364. </productMenu>
  3365. <productMenu id="userGuide"
  3366. type="1"
  3367. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3368. size="2.0MB" >
  3369. </productMenu>
  3370. <productMenu id="videoGuide"
  3371. type="0"
  3372. url=""
  3373. size="3.41MB" >
  3374. </productMenu>
  3375. <productMenu id="connectGuide"
  3376. type="1"
  3377. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3378. size="1.1MB" >
  3379. </productMenu>
  3380. <productMenu id="volume"
  3381. type="16" >
  3382. </productMenu>
  3383. <productMenu id="volume+"
  3384. type="2"
  3385. url="0x6004" >
  3386. </productMenu>
  3387. <productMenu id="soundMode"
  3388. type="1" >
  3389. </productMenu>
  3390. <productMenu id="battery"
  3391. type="1" >
  3392. </productMenu>
  3393. <productID id="6A13"
  3394. />
  3395. <productGroupable type="0"
  3396. />
  3397. </product>
  3398. <product id="PHANTOMCamera"
  3399. name="PHANTOM Camera"
  3400. series="Helmet"
  3401. latestVersion="1.2.10"
  3402. latestVersionVoicePrompt="1.7"
  3403. show = "1" >
  3404. <productMenu id="protocol"
  3405. type="2" >
  3406. </productMenu>
  3407. <productMenu id="ota"
  3408. type="3" >
  3409. <otaLanguages>
  3410. <otaLanguage
  3411. id="0"
  3412. name="English"
  3413. package="0"
  3414. />
  3415. <otaLanguage
  3416. id="0"
  3417. name="Français"
  3418. package="1"
  3419. />
  3420. <otaLanguage
  3421. id="0"
  3422. name="Español"
  3423. package="2"
  3424. />
  3425. <otaLanguage
  3426. id="0"
  3427. name="Italiano"
  3428. package="3"
  3429. />
  3430. <otaLanguage
  3431. id="0"
  3432. name="Deutsch"
  3433. package="4"
  3434. />
  3435. <otaLanguage
  3436. id="0"
  3437. name="Nederlands"
  3438. package="5"
  3439. />
  3440. <otaLanguage
  3441. id="0"
  3442. name="Русский"
  3443. package="6"
  3444. />
  3445. <otaLanguage
  3446. id="0"
  3447. name="简体中文"
  3448. package="7"
  3449. />
  3450. <otaLanguage
  3451. id="0"
  3452. name="한국어"
  3453. package="8"
  3454. />
  3455. <otaLanguage
  3456. id="0"
  3457. name="日本語"
  3458. package="9"
  3459. />
  3460. <otaLanguage
  3461. id="0"
  3462. name="Suomi"
  3463. package="10"
  3464. />
  3465. <otaLanguage
  3466. id="0"
  3467. name="Polski"
  3468. package="11"
  3469. />
  3470. </otaLanguages>
  3471. <otaPackages>
  3472. <package
  3473. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3474. size="5183988"
  3475. />
  3476. <package
  3477. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3478. size="5183988"
  3479. />
  3480. <package
  3481. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3482. size="5183988"
  3483. />
  3484. <package
  3485. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3486. size="5183988"
  3487. />
  3488. <package
  3489. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3490. size="5183988"
  3491. />
  3492. <package
  3493. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3494. size="5183988"
  3495. />
  3496. <package
  3497. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3498. size="5183988"
  3499. />
  3500. <package
  3501. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3502. size="5183988"
  3503. />
  3504. <package
  3505. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3506. size="5183988"
  3507. />
  3508. <package
  3509. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3510. size="5183988"
  3511. />
  3512. <package
  3513. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3514. size="5183988"
  3515. />
  3516. <package
  3517. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3518. size="5183988"
  3519. />
  3520. </otaPackages>
  3521. </productMenu>
  3522. <productMenu id="wa"
  3523. type="0" >
  3524. </productMenu>
  3525. <productMenu id="led"
  3526. type="5" >
  3527. </productMenu>
  3528. <productMenu id="led+"
  3529. type="2"
  3530. url="1" >
  3531. </productMenu>
  3532. <productMenu id="meshIntercom"
  3533. type="30" >
  3534. </productMenu>
  3535. <productMenu id="meshIntercom+"
  3536. type="3"
  3537. url="2" >
  3538. </productMenu>
  3539. <productMenu id="waveIntercom"
  3540. type="1" >
  3541. </productMenu>
  3542. <productMenu id="fmradio"
  3543. type="0" >
  3544. </productMenu>
  3545. <productMenu id="phone"
  3546. type="1" >
  3547. </productMenu>
  3548. <productMenu id="music"
  3549. type="1" >
  3550. </productMenu>
  3551. <productMenu id="musicSharing"
  3552. type="0" >
  3553. </productMenu>
  3554. <productMenu id="deviceSetting"
  3555. type="1"
  3556. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3557. </productMenu>
  3558. <productMenu id="quickGuide"
  3559. type="0"
  3560. url=""
  3561. size="1.12MB" >
  3562. </productMenu>
  3563. <productMenu id="userGuide"
  3564. type="1"
  3565. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3566. size="2.0MB" >
  3567. </productMenu>
  3568. <productMenu id="videoGuide"
  3569. type="0"
  3570. url=""
  3571. size="3.41MB" >
  3572. </productMenu>
  3573. <productMenu id="volume"
  3574. type="16" >
  3575. </productMenu>
  3576. <productMenu id="battery"
  3577. type="1" >
  3578. </productMenu>
  3579. <productID id="6A10"
  3580. />
  3581. <productGroupable type="0"
  3582. />
  3583. </product>
  3584. <product id="PHANTOMCamera"
  3585. name="PHANTOM Camera"
  3586. series="Helmet"
  3587. latestVersion="1.2.10"
  3588. latestVersionVoicePrompt="1.7"
  3589. show = "-1" >
  3590. <productMenu id="protocol"
  3591. type="2" >
  3592. </productMenu>
  3593. <productMenu id="ota"
  3594. type="3" >
  3595. <otaLanguages>
  3596. <otaLanguage
  3597. id="0"
  3598. name="English"
  3599. package="0"
  3600. />
  3601. <otaLanguage
  3602. id="0"
  3603. name="Français"
  3604. package="1"
  3605. />
  3606. <otaLanguage
  3607. id="0"
  3608. name="Español"
  3609. package="2"
  3610. />
  3611. <otaLanguage
  3612. id="0"
  3613. name="Italiano"
  3614. package="3"
  3615. />
  3616. <otaLanguage
  3617. id="0"
  3618. name="Deutsch"
  3619. package="4"
  3620. />
  3621. <otaLanguage
  3622. id="0"
  3623. name="Nederlands"
  3624. package="5"
  3625. />
  3626. <otaLanguage
  3627. id="0"
  3628. name="Русский"
  3629. package="6"
  3630. />
  3631. <otaLanguage
  3632. id="0"
  3633. name="简体中文"
  3634. package="7"
  3635. />
  3636. <otaLanguage
  3637. id="0"
  3638. name="한국어"
  3639. package="8"
  3640. />
  3641. <otaLanguage
  3642. id="0"
  3643. name="日本語"
  3644. package="9"
  3645. />
  3646. <otaLanguage
  3647. id="0"
  3648. name="Suomi"
  3649. package="10"
  3650. />
  3651. <otaLanguage
  3652. id="0"
  3653. name="Polski"
  3654. package="11"
  3655. />
  3656. </otaLanguages>
  3657. <otaPackages>
  3658. <package
  3659. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3660. size="5183988"
  3661. />
  3662. <package
  3663. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3664. size="5183988"
  3665. />
  3666. <package
  3667. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3668. size="5183988"
  3669. />
  3670. <package
  3671. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3672. size="5183988"
  3673. />
  3674. <package
  3675. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3676. size="5183988"
  3677. />
  3678. <package
  3679. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3680. size="5183988"
  3681. />
  3682. <package
  3683. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3684. size="5183988"
  3685. />
  3686. <package
  3687. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3688. size="5183988"
  3689. />
  3690. <package
  3691. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3692. size="5183988"
  3693. />
  3694. <package
  3695. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3696. size="5183988"
  3697. />
  3698. <package
  3699. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3700. size="5183988"
  3701. />
  3702. <package
  3703. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3704. size="5183988"
  3705. />
  3706. </otaPackages>
  3707. </productMenu>
  3708. <productMenu id="wa"
  3709. type="0" >
  3710. </productMenu>
  3711. <productMenu id="led"
  3712. type="5" >
  3713. </productMenu>
  3714. <productMenu id="led+"
  3715. type="2"
  3716. url="1" >
  3717. </productMenu>
  3718. <productMenu id="meshIntercom"
  3719. type="30" >
  3720. </productMenu>
  3721. <productMenu id="meshIntercom+"
  3722. type="3"
  3723. url="2" >
  3724. </productMenu>
  3725. <productMenu id="waveIntercom"
  3726. type="1" >
  3727. </productMenu>
  3728. <productMenu id="fmradio"
  3729. type="0" >
  3730. </productMenu>
  3731. <productMenu id="phone"
  3732. type="1" >
  3733. </productMenu>
  3734. <productMenu id="music"
  3735. type="1" >
  3736. </productMenu>
  3737. <productMenu id="musicSharing"
  3738. type="0" >
  3739. </productMenu>
  3740. <productMenu id="deviceSetting"
  3741. type="1"
  3742. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3743. </productMenu>
  3744. <productMenu id="quickGuide"
  3745. type="0"
  3746. url=""
  3747. size="1.12MB" >
  3748. </productMenu>
  3749. <productMenu id="userGuide"
  3750. type="1"
  3751. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3752. size="2.0MB" >
  3753. </productMenu>
  3754. <productMenu id="videoGuide"
  3755. type="0"
  3756. url=""
  3757. size="3.41MB" >
  3758. </productMenu>
  3759. <productMenu id="volume"
  3760. type="16" >
  3761. </productMenu>
  3762. <productMenu id="battery"
  3763. type="1" >
  3764. </productMenu>
  3765. <productID id="6A09"
  3766. />
  3767. <productGroupable type="0"
  3768. />
  3769. </product>
  3770. <product id="PHANTOM"
  3771. name="PHANTOM ANC"
  3772. series="Helmet"
  3773. latestVersion="1.2.11"
  3774. latestVersionVoicePrompt="1.8"
  3775. show = "1" >
  3776. <productMenu id="protocol"
  3777. type="2" >
  3778. </productMenu>
  3779. <productMenu id="ota"
  3780. type="2" >
  3781. <productMenuType version="0.6.9"
  3782. type="0"
  3783. />
  3784. <otaLanguages>
  3785. <otaLanguage
  3786. id="0"
  3787. name="English"
  3788. package="0"
  3789. />
  3790. <otaLanguage
  3791. id="0"
  3792. name="Français"
  3793. package="1"
  3794. />
  3795. <otaLanguage
  3796. id="0"
  3797. name="Español"
  3798. package="2"
  3799. />
  3800. <otaLanguage
  3801. id="0"
  3802. name="Italiano"
  3803. package="3"
  3804. />
  3805. <otaLanguage
  3806. id="0"
  3807. name="Deutsch"
  3808. package="4"
  3809. />
  3810. <otaLanguage
  3811. id="0"
  3812. name="Nederlands"
  3813. package="5"
  3814. />
  3815. <otaLanguage
  3816. id="0"
  3817. name="Русский"
  3818. package="6"
  3819. />
  3820. <otaLanguage
  3821. id="0"
  3822. name="简体中文"
  3823. package="7"
  3824. />
  3825. <otaLanguage
  3826. id="0"
  3827. name="한국어"
  3828. package="8"
  3829. />
  3830. <otaLanguage
  3831. id="0"
  3832. name="日本語"
  3833. package="9"
  3834. />
  3835. <otaLanguage
  3836. id="0"
  3837. name="Suomi"
  3838. package="10"
  3839. />
  3840. <otaLanguage
  3841. id="0"
  3842. name="Polski"
  3843. package="11"
  3844. />
  3845. </otaLanguages>
  3846. <otaPackages>
  3847. <package
  3848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0.img"
  3849. size="5183988"
  3850. />
  3851. <package
  3852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-fr-FR.img"
  3853. size="5183988"
  3854. />
  3855. <package
  3856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-es-ES.img"
  3857. size="5183988"
  3858. />
  3859. <package
  3860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-it-IT.img"
  3861. size="5183988"
  3862. />
  3863. <package
  3864. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-de-DE.img"
  3865. size="5183988"
  3866. />
  3867. <package
  3868. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-nl-NL.img"
  3869. size="5183988"
  3870. />
  3871. <package
  3872. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ru-RU.img"
  3873. size="5183988"
  3874. />
  3875. <package
  3876. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-cmn-CN.img"
  3877. size="5183988"
  3878. />
  3879. <package
  3880. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ko-KR.img"
  3881. size="5183988"
  3882. />
  3883. <package
  3884. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-ja-JP.img"
  3885. size="5183988"
  3886. />
  3887. <package
  3888. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-fi-FI.img"
  3889. size="5183988"
  3890. />
  3891. <package
  3892. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.11-build0-pl-PL.img"
  3893. size="5183988"
  3894. />
  3895. </otaPackages>
  3896. </productMenu>
  3897. <productMenu id="wa"
  3898. type="0" >
  3899. </productMenu>
  3900. <productMenu id="led"
  3901. type="5" >
  3902. </productMenu>
  3903. <productMenu id="led+"
  3904. type="2"
  3905. url="1" >
  3906. </productMenu>
  3907. <productMenu id="meshIntercom"
  3908. type="30" >
  3909. </productMenu>
  3910. <productMenu id="meshIntercom+"
  3911. type="3"
  3912. url="2" >
  3913. <productMenuURL version="1.0.4"
  3914. url="10"
  3915. />
  3916. </productMenu>
  3917. <productMenu id="waveIntercom"
  3918. type="1" >
  3919. <productMenuType version="1.0.9"
  3920. type="0"
  3921. />
  3922. </productMenu>
  3923. <productMenu id="fmradio"
  3924. type="0" >
  3925. </productMenu>
  3926. <productMenu id="phone"
  3927. type="1" >
  3928. </productMenu>
  3929. <productMenu id="music"
  3930. type="1" >
  3931. </productMenu>
  3932. <productMenu id="musicSharing"
  3933. type="0" >
  3934. </productMenu>
  3935. <productMenu id="deviceSetting"
  3936. type="1"
  3937. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3938. <productMenuURL version="1.2.10"
  3939. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3940. />
  3941. <productMenuURL version="1.2.4"
  3942. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3943. />
  3944. <productMenuURL version="1.2.1"
  3945. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3946. />
  3947. <productMenuURL version="1.1.2"
  3948. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3949. />
  3950. <productMenuURL version="1.0.4"
  3951. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3952. />
  3953. </productMenu>
  3954. <productMenu id="quickGuide"
  3955. type="0"
  3956. url=""
  3957. size="1.12MB" >
  3958. </productMenu>
  3959. <productMenu id="userGuide"
  3960. type="1"
  3961. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3962. size="2.0MB" >
  3963. </productMenu>
  3964. <productMenu id="videoGuide"
  3965. type="0"
  3966. url=""
  3967. size="3.41MB" >
  3968. </productMenu>
  3969. <productMenu id="connectGuide"
  3970. type="1"
  3971. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3972. size="1.1MB" >
  3973. </productMenu>
  3974. <productMenu id="volume"
  3975. type="16" >
  3976. </productMenu>
  3977. <productMenu id="volume+"
  3978. type="2"
  3979. url="0x6004" >
  3980. </productMenu>
  3981. <productMenu id="soundMode"
  3982. type="1" >
  3983. <productMenuType version="0.9.11"
  3984. type="0"
  3985. />
  3986. </productMenu>
  3987. <productMenu id="battery"
  3988. type="1" >
  3989. </productMenu>
  3990. <productID id="6A01"
  3991. />
  3992. <productGroupable type="0"
  3993. />
  3994. </product>
  3995. <product id="PHANTOM"
  3996. name="PHANTOM ANC"
  3997. series="Helmet"
  3998. latestVersion="1.2.11"
  3999. latestVersionVoicePrompt="1.8"
  4000. show = "-1" >
  4001. <productMenu id="protocol"
  4002. type="2" >
  4003. </productMenu>
  4004. <productMenu id="ota"
  4005. type="2" >
  4006. <otaLanguages>
  4007. <otaLanguage
  4008. id="0"
  4009. name="English"
  4010. package="0"
  4011. />
  4012. <otaLanguage
  4013. id="0"
  4014. name="Français"
  4015. package="1"
  4016. />
  4017. <otaLanguage
  4018. id="0"
  4019. name="Español"
  4020. package="2"
  4021. />
  4022. <otaLanguage
  4023. id="0"
  4024. name="Italiano"
  4025. package="3"
  4026. />
  4027. <otaLanguage
  4028. id="0"
  4029. name="Deutsch"
  4030. package="4"
  4031. />
  4032. <otaLanguage
  4033. id="0"
  4034. name="Nederlands"
  4035. package="5"
  4036. />
  4037. <otaLanguage
  4038. id="0"
  4039. name="Русский"
  4040. package="6"
  4041. />
  4042. <otaLanguage
  4043. id="0"
  4044. name="简体中文"
  4045. package="7"
  4046. />
  4047. <otaLanguage
  4048. id="0"
  4049. name="한국어"
  4050. package="8"
  4051. />
  4052. <otaLanguage
  4053. id="0"
  4054. name="日本語"
  4055. package="9"
  4056. />
  4057. <otaLanguage
  4058. id="0"
  4059. name="Suomi"
  4060. package="10"
  4061. />
  4062. <otaLanguage
  4063. id="0"
  4064. name="Polski"
  4065. package="11"
  4066. />
  4067. </otaLanguages>
  4068. <otaPackages>
  4069. <package
  4070. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-fr-FR.img"
  4075. size="5183988"
  4076. />
  4077. <package
  4078. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-es-ES.img"
  4079. size="5183988"
  4080. />
  4081. <package
  4082. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-it-IT.img"
  4083. size="5183988"
  4084. />
  4085. <package
  4086. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-de-DE.img"
  4087. size="5183988"
  4088. />
  4089. <package
  4090. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-nl-NL.img"
  4091. size="5183988"
  4092. />
  4093. <package
  4094. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ru-RU.img"
  4095. size="5183988"
  4096. />
  4097. <package
  4098. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-cmn-CN.img"
  4099. size="5183988"
  4100. />
  4101. <package
  4102. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ko-KR.img"
  4103. size="5183988"
  4104. />
  4105. <package
  4106. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-ja-JP.img"
  4107. size="5183988"
  4108. />
  4109. <package
  4110. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-fi-FI.img"
  4111. size="5183988"
  4112. />
  4113. <package
  4114. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.11-build0-pl-PL.img"
  4115. size="5183988"
  4116. />
  4117. </otaPackages>
  4118. </productMenu>
  4119. <productMenu id="led"
  4120. type="5" >
  4121. </productMenu>
  4122. <productMenu id="led+"
  4123. type="2"
  4124. url="1" >
  4125. </productMenu>
  4126. <productMenu id="meshIntercom"
  4127. type="30" >
  4128. </productMenu>
  4129. <productMenu id="meshIntercom+"
  4130. type="3"
  4131. url="2" >
  4132. </productMenu>
  4133. <productMenu id="waveIntercom"
  4134. type="1" >
  4135. </productMenu>
  4136. <productMenu id="fmradio"
  4137. type="0" >
  4138. </productMenu>
  4139. <productMenu id="phone"
  4140. type="1" >
  4141. </productMenu>
  4142. <productMenu id="music"
  4143. type="1" >
  4144. </productMenu>
  4145. <productMenu id="musicSharing"
  4146. type="0" >
  4147. </productMenu>
  4148. <productMenu id="deviceSetting"
  4149. type="1"
  4150. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4151. <productMenuURL version="1.2.10"
  4152. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4153. />
  4154. <productMenuURL version="1.2.4"
  4155. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4156. />
  4157. </productMenu>
  4158. <productMenu id="quickGuide"
  4159. type="0"
  4160. url=""
  4161. size="1.12MB" >
  4162. </productMenu>
  4163. <productMenu id="userGuide"
  4164. type="1"
  4165. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4166. size="2.0MB" >
  4167. </productMenu>
  4168. <productMenu id="videoGuide"
  4169. type="0"
  4170. url=""
  4171. size="3.41MB" >
  4172. </productMenu>
  4173. <productMenu id="connectGuide"
  4174. type="1"
  4175. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4176. size="1.1MB" >
  4177. </productMenu>
  4178. <productMenu id="volume"
  4179. type="16" >
  4180. </productMenu>
  4181. <productMenu id="volume+"
  4182. type="2"
  4183. url="0x6004" >
  4184. </productMenu>
  4185. <productMenu id="soundMode"
  4186. type="1" >
  4187. </productMenu>
  4188. <productMenu id="battery"
  4189. type="1" >
  4190. </productMenu>
  4191. <productID id="6A19"
  4192. />
  4193. <productGroupable type="0"
  4194. />
  4195. </product>
  4196. <product id="PHANTOM"
  4197. name="PHANTOM"
  4198. series="Helmet"
  4199. latestVersion="1.2.11"
  4200. latestVersionVoicePrompt="1.8"
  4201. show = "-1" >
  4202. <productMenu id="protocol"
  4203. type="2" >
  4204. </productMenu>
  4205. <productMenu id="ota"
  4206. type="2" >
  4207. <otaLanguages>
  4208. <otaLanguage
  4209. id="0"
  4210. name="English"
  4211. package="0"
  4212. />
  4213. <otaLanguage
  4214. id="0"
  4215. name="Français"
  4216. package="1"
  4217. />
  4218. <otaLanguage
  4219. id="0"
  4220. name="Español"
  4221. package="2"
  4222. />
  4223. <otaLanguage
  4224. id="0"
  4225. name="Italiano"
  4226. package="3"
  4227. />
  4228. <otaLanguage
  4229. id="0"
  4230. name="Deutsch"
  4231. package="4"
  4232. />
  4233. <otaLanguage
  4234. id="0"
  4235. name="Nederlands"
  4236. package="5"
  4237. />
  4238. <otaLanguage
  4239. id="0"
  4240. name="Русский"
  4241. package="6"
  4242. />
  4243. <otaLanguage
  4244. id="0"
  4245. name="简体中文"
  4246. package="7"
  4247. />
  4248. <otaLanguage
  4249. id="0"
  4250. name="한국어"
  4251. package="8"
  4252. />
  4253. <otaLanguage
  4254. id="0"
  4255. name="日本語"
  4256. package="9"
  4257. />
  4258. <otaLanguage
  4259. id="0"
  4260. name="Suomi"
  4261. package="10"
  4262. />
  4263. <otaLanguage
  4264. id="0"
  4265. name="Polski"
  4266. package="11"
  4267. />
  4268. </otaLanguages>
  4269. <otaPackages>
  4270. <package
  4271. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0.img"
  4272. size="5183988"
  4273. />
  4274. <package
  4275. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-fr-FR.img"
  4276. size="5183988"
  4277. />
  4278. <package
  4279. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-es-ES.img"
  4280. size="5183988"
  4281. />
  4282. <package
  4283. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-it-IT.img"
  4284. size="5183988"
  4285. />
  4286. <package
  4287. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-de-DE.img"
  4288. size="5183988"
  4289. />
  4290. <package
  4291. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-nl-NL.img"
  4292. size="5183988"
  4293. />
  4294. <package
  4295. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ru-RU.img"
  4296. size="5183988"
  4297. />
  4298. <package
  4299. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-cmn-CN.img"
  4300. size="5183988"
  4301. />
  4302. <package
  4303. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ko-KR.img"
  4304. size="5183988"
  4305. />
  4306. <package
  4307. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-ja-JP.img"
  4308. size="5183988"
  4309. />
  4310. <package
  4311. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-fi-FI.img"
  4312. size="5183988"
  4313. />
  4314. <package
  4315. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.11-build0-pl-PL.img"
  4316. size="5183988"
  4317. />
  4318. </otaPackages>
  4319. </productMenu>
  4320. <productMenu id="wa"
  4321. type="0" >
  4322. </productMenu>
  4323. <productMenu id="led"
  4324. type="5" >
  4325. </productMenu>
  4326. <productMenu id="led+"
  4327. type="2"
  4328. url="1" >
  4329. </productMenu>
  4330. <productMenu id="meshIntercom"
  4331. type="30" >
  4332. </productMenu>
  4333. <productMenu id="meshIntercom+"
  4334. type="3"
  4335. url="2" >
  4336. </productMenu>
  4337. <productMenu id="waveIntercom"
  4338. type="1" >
  4339. </productMenu>
  4340. <productMenu id="fmradio"
  4341. type="0" >
  4342. </productMenu>
  4343. <productMenu id="phone"
  4344. type="1" >
  4345. </productMenu>
  4346. <productMenu id="music"
  4347. type="1" >
  4348. </productMenu>
  4349. <productMenu id="musicSharing"
  4350. type="0" >
  4351. </productMenu>
  4352. <productMenu id="deviceSetting"
  4353. type="1"
  4354. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4355. <productMenuURL version="1.2.10"
  4356. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4357. />
  4358. <productMenuURL version="1.2.4"
  4359. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4360. />
  4361. </productMenu>
  4362. <productMenu id="quickGuide"
  4363. type="0"
  4364. url=""
  4365. size="1.52MB" >
  4366. </productMenu>
  4367. <productMenu id="userGuide"
  4368. type="1"
  4369. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4370. size="2.01MB" >
  4371. </productMenu>
  4372. <productMenu id="videoGuide"
  4373. type="0"
  4374. url=""
  4375. size="3.46MB" >
  4376. </productMenu>
  4377. <productMenu id="connectGuide"
  4378. type="1"
  4379. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4380. size="1.1MB" >
  4381. </productMenu>
  4382. <productMenu id="volume"
  4383. type="16" >
  4384. </productMenu>
  4385. <productMenu id="volume+"
  4386. type="2"
  4387. url="0x6004" >
  4388. </productMenu>
  4389. <productMenu id="battery"
  4390. type="1" >
  4391. </productMenu>
  4392. <productID id="6A0E"
  4393. />
  4394. <productGroupable type="0"
  4395. />
  4396. </product>
  4397. <product id="PHANTOM"
  4398. name="PHANTOM"
  4399. series="Helmet"
  4400. latestVersion="1.2.11"
  4401. latestVersionVoicePrompt="1.8"
  4402. show = "1" >
  4403. <productMenu id="protocol"
  4404. type="2" >
  4405. </productMenu>
  4406. <productMenu id="ota"
  4407. type="2" >
  4408. <otaLanguages>
  4409. <otaLanguage
  4410. id="0"
  4411. name="English"
  4412. package="0"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Français"
  4417. package="1"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="Español"
  4422. package="2"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="Italiano"
  4427. package="3"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="Deutsch"
  4432. package="4"
  4433. />
  4434. <otaLanguage
  4435. id="0"
  4436. name="Nederlands"
  4437. package="5"
  4438. />
  4439. <otaLanguage
  4440. id="0"
  4441. name="Русский"
  4442. package="6"
  4443. />
  4444. <otaLanguage
  4445. id="0"
  4446. name="简体中文"
  4447. package="7"
  4448. />
  4449. <otaLanguage
  4450. id="0"
  4451. name="한국어"
  4452. package="8"
  4453. />
  4454. <otaLanguage
  4455. id="0"
  4456. name="日本語"
  4457. package="9"
  4458. />
  4459. <otaLanguage
  4460. id="0"
  4461. name="Suomi"
  4462. package="10"
  4463. />
  4464. <otaLanguage
  4465. id="0"
  4466. name="Polski"
  4467. package="11"
  4468. />
  4469. </otaLanguages>
  4470. <otaPackages>
  4471. <package
  4472. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0.img"
  4473. size="5183988"
  4474. />
  4475. <package
  4476. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-fr-FR.img"
  4477. size="5183988"
  4478. />
  4479. <package
  4480. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-es-ES.img"
  4481. size="5183988"
  4482. />
  4483. <package
  4484. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-it-IT.img"
  4485. size="5183988"
  4486. />
  4487. <package
  4488. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-de-DE.img"
  4489. size="5183988"
  4490. />
  4491. <package
  4492. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-nl-NL.img"
  4493. size="5183988"
  4494. />
  4495. <package
  4496. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ru-RU.img"
  4497. size="5183988"
  4498. />
  4499. <package
  4500. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-cmn-CN.img"
  4501. size="5183988"
  4502. />
  4503. <package
  4504. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ko-KR.img"
  4505. size="5183988"
  4506. />
  4507. <package
  4508. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-ja-JP.img"
  4509. size="5183988"
  4510. />
  4511. <package
  4512. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-fi-FI.img"
  4513. size="5183988"
  4514. />
  4515. <package
  4516. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.11-build0-pl-PL.img"
  4517. size="5183988"
  4518. />
  4519. </otaPackages>
  4520. </productMenu>
  4521. <productMenu id="wa"
  4522. type="0" >
  4523. </productMenu>
  4524. <productMenu id="led"
  4525. type="5" >
  4526. <productMenuType version="1.0.1"
  4527. type="4"
  4528. />
  4529. </productMenu>
  4530. <productMenu id="led+"
  4531. type="2"
  4532. url="1" >
  4533. <productMenuType version="1.0.1"
  4534. type="-1"
  4535. />
  4536. </productMenu>
  4537. <productMenu id="meshIntercom"
  4538. type="30" >
  4539. </productMenu>
  4540. <productMenu id="meshIntercom+"
  4541. type="3"
  4542. url="2" >
  4543. <productMenuURL version="1.0.4"
  4544. url="10"
  4545. />
  4546. </productMenu>
  4547. <productMenu id="waveIntercom"
  4548. type="1" >
  4549. <productMenuType version="1.0.9"
  4550. type="0"
  4551. />
  4552. </productMenu>
  4553. <productMenu id="fmradio"
  4554. type="0" >
  4555. </productMenu>
  4556. <productMenu id="phone"
  4557. type="1" >
  4558. </productMenu>
  4559. <productMenu id="music"
  4560. type="1" >
  4561. </productMenu>
  4562. <productMenu id="musicSharing"
  4563. type="0" >
  4564. </productMenu>
  4565. <productMenu id="deviceSetting"
  4566. type="1"
  4567. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4568. <productMenuURL version="1.2.10"
  4569. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4570. />
  4571. <productMenuURL version="1.2.4"
  4572. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4573. />
  4574. <productMenuURL version="1.2.1"
  4575. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4576. />
  4577. <productMenuURL version="1.0.4"
  4578. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4579. />
  4580. <productMenuURL version="1.0.1"
  4581. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4582. />
  4583. </productMenu>
  4584. <productMenu id="quickGuide"
  4585. type="0"
  4586. url=""
  4587. size="1.12MB" >
  4588. </productMenu>
  4589. <productMenu id="userGuide"
  4590. type="1"
  4591. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4592. size="2.0MB" >
  4593. </productMenu>
  4594. <productMenu id="videoGuide"
  4595. type="0"
  4596. url=""
  4597. size="3.41MB" >
  4598. </productMenu>
  4599. <productMenu id="connectGuide"
  4600. type="1"
  4601. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4602. size="1.12MB" >
  4603. </productMenu>
  4604. <productMenu id="volume"
  4605. type="16" >
  4606. <productMenuType version="1.0"
  4607. type="13"
  4608. />
  4609. </productMenu>
  4610. <productMenu id="volume+"
  4611. type="2"
  4612. url="0x6004" >
  4613. </productMenu>
  4614. <productMenu id="battery"
  4615. type="1" >
  4616. </productMenu>
  4617. <productID id="6A04"
  4618. />
  4619. <productGroupable type="0"
  4620. />
  4621. </product>
  4622. <product id="PHANTOMEasyLink"
  4623. name="PHANTOM EasyLink"
  4624. series="Helmet"
  4625. latestVersion="0.1"
  4626. latestVersionVoicePrompt="1.2"
  4627. show = "-1" >
  4628. <productMenu id="protocol"
  4629. type="2" >
  4630. </productMenu>
  4631. <productMenu id="ota"
  4632. type="0" >
  4633. <otaLanguages>
  4634. <otaLanguage
  4635. id="0"
  4636. name="English"
  4637. package="0"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Français"
  4642. package="1"
  4643. />
  4644. <otaLanguage
  4645. id="0"
  4646. name="Español"
  4647. package="2"
  4648. />
  4649. <otaLanguage
  4650. id="0"
  4651. name="Italiano"
  4652. package="3"
  4653. />
  4654. <otaLanguage
  4655. id="0"
  4656. name="Deutsch"
  4657. package="4"
  4658. />
  4659. <otaLanguage
  4660. id="0"
  4661. name="Nederlands"
  4662. package="5"
  4663. />
  4664. <otaLanguage
  4665. id="0"
  4666. name="Русский"
  4667. package="6"
  4668. />
  4669. <otaLanguage
  4670. id="0"
  4671. name="简体中文"
  4672. package="7"
  4673. />
  4674. <otaLanguage
  4675. id="0"
  4676. name="한국어"
  4677. package="8"
  4678. />
  4679. <otaLanguage
  4680. id="0"
  4681. name="日本語"
  4682. package="9"
  4683. />
  4684. <otaLanguage
  4685. id="0"
  4686. name="Suomi"
  4687. package="10"
  4688. />
  4689. <otaLanguage
  4690. id="0"
  4691. name="Polski"
  4692. package="11"
  4693. />
  4694. </otaLanguages>
  4695. <otaPackages>
  4696. <package
  4697. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4698. size="5183988"
  4699. />
  4700. <package
  4701. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4702. size="5183988"
  4703. />
  4704. <package
  4705. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4706. size="5183988"
  4707. />
  4708. <package
  4709. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4710. size="5183988"
  4711. />
  4712. <package
  4713. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4714. size="5183988"
  4715. />
  4716. <package
  4717. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4718. size="5183988"
  4719. />
  4720. <package
  4721. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4722. size="5183988"
  4723. />
  4724. <package
  4725. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4726. size="5183988"
  4727. />
  4728. <package
  4729. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4730. size="5183988"
  4731. />
  4732. <package
  4733. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4734. size="5183988"
  4735. />
  4736. <package
  4737. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4738. size="5183988"
  4739. />
  4740. <package
  4741. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4742. size="5183988"
  4743. />
  4744. </otaPackages>
  4745. </productMenu>
  4746. <productMenu id="meshIntercom"
  4747. type="30" >
  4748. </productMenu>
  4749. <productMenu id="meshIntercom+"
  4750. type="3"
  4751. url="2" >
  4752. </productMenu>
  4753. <productMenu id="waveIntercom"
  4754. type="1" >
  4755. </productMenu>
  4756. <productMenu id="fmradio"
  4757. type="0" >
  4758. </productMenu>
  4759. <productMenu id="phone"
  4760. type="1" >
  4761. </productMenu>
  4762. <productMenu id="music"
  4763. type="1" >
  4764. </productMenu>
  4765. <productMenu id="musicSharing"
  4766. type="0" >
  4767. </productMenu>
  4768. <productMenu id="deviceSetting"
  4769. type="1"
  4770. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4771. </productMenu>
  4772. <productMenu id="quickGuide"
  4773. type="0"
  4774. url=""
  4775. size="1.12MB" >
  4776. </productMenu>
  4777. <productMenu id="userGuide"
  4778. type="1"
  4779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4780. size="2.0MB" >
  4781. </productMenu>
  4782. <productMenu id="videoGuide"
  4783. type="0"
  4784. url=""
  4785. size="3.41MB" >
  4786. </productMenu>
  4787. <productMenu id="connectGuide"
  4788. type="0"
  4789. url=""
  4790. size="1.12MB" >
  4791. </productMenu>
  4792. <productMenu id="volume"
  4793. type="16" >
  4794. </productMenu>
  4795. <productMenu id="battery"
  4796. type="1" >
  4797. </productMenu>
  4798. <productID id="6A18"
  4799. />
  4800. <productGroupable type="0"
  4801. />
  4802. </product>
  4803. <product id="SPIDERX"
  4804. name="SPIDER X"
  4805. series="SPIDER"
  4806. latestVersion="1.0.1"
  4807. latestVersionMesh="0.19"
  4808. latestVersionVoicePrompt="1.8"
  4809. show="-1" >
  4810. <productMenu id="protocol"
  4811. type="2" >
  4812. </productMenu>
  4813. <productMenu id="warranty"
  4814. type="1" >
  4815. </productMenu>
  4816. <productMenu id="serialNumber"
  4817. type="1" >
  4818. </productMenu>
  4819. <productMenu id="ota"
  4820. type="0" >
  4821. <otaLanguages>
  4822. <otaLanguage
  4823. id="0"
  4824. name="English"
  4825. package="0"
  4826. />
  4827. <otaLanguage
  4828. id="0"
  4829. name="Français"
  4830. package="1"
  4831. />
  4832. <otaLanguage
  4833. id="0"
  4834. name="Español"
  4835. package="2"
  4836. />
  4837. <otaLanguage
  4838. id="0"
  4839. name="Italiano"
  4840. package="3"
  4841. />
  4842. <otaLanguage
  4843. id="0"
  4844. name="Deutsch"
  4845. package="4"
  4846. />
  4847. <otaLanguage
  4848. id="0"
  4849. name="Nederlands"
  4850. package="5"
  4851. />
  4852. <otaLanguage
  4853. id="0"
  4854. name="Русский"
  4855. package="6"
  4856. />
  4857. <otaLanguage
  4858. id="0"
  4859. name="简体中文"
  4860. package="7"
  4861. />
  4862. <otaLanguage
  4863. id="0"
  4864. name="한국어"
  4865. package="8"
  4866. />
  4867. <otaLanguage
  4868. id="0"
  4869. name="日本語"
  4870. package="9"
  4871. />
  4872. <otaLanguage
  4873. id="0"
  4874. name="Suomi"
  4875. package="10"
  4876. />
  4877. <otaLanguage
  4878. id="0"
  4879. name="Polski"
  4880. package="11"
  4881. />
  4882. </otaLanguages>
  4883. <otaPackages>
  4884. <package
  4885. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0.img"
  4886. size="5183988"
  4887. />
  4888. <package
  4889. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fr-FR.img"
  4890. size="5183988"
  4891. />
  4892. <package
  4893. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-es-ES.img"
  4894. size="5183988"
  4895. />
  4896. <package
  4897. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-it-IT.img"
  4898. size="5183988"
  4899. />
  4900. <package
  4901. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-de-DE.img"
  4902. size="5183988"
  4903. />
  4904. <package
  4905. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-nl-NL.img"
  4906. size="5183988"
  4907. />
  4908. <package
  4909. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ru-RU.img"
  4910. size="5183988"
  4911. />
  4912. <package
  4913. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-cmn-CN.img"
  4914. size="5183988"
  4915. />
  4916. <package
  4917. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ko-KR.img"
  4918. size="5183988"
  4919. />
  4920. <package
  4921. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ja-JP.img"
  4922. size="5183988"
  4923. />
  4924. <package
  4925. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fi-FI.img"
  4926. size="5183988"
  4927. />
  4928. <package
  4929. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-pl-PL.img"
  4930. size="5183988"
  4931. />
  4932. </otaPackages>
  4933. </productMenu>
  4934. <productMenu id="meshIntercom+"
  4935. type="3"
  4936. url="2" >
  4937. </productMenu>
  4938. <productMenu id="waveIntercom"
  4939. type="1" >
  4940. </productMenu>
  4941. <productMenu id="fmradio"
  4942. type="1"
  4943. url="1" >
  4944. </productMenu>
  4945. <productMenu id="mic"
  4946. type="0" >
  4947. </productMenu>
  4948. <productMenu id="phone"
  4949. type="1" >
  4950. </productMenu>
  4951. <productMenu id="music"
  4952. type="1" >
  4953. </productMenu>
  4954. <productMenu id="musicSharing"
  4955. type="0" >
  4956. </productMenu>
  4957. <productMenu id="deviceSetting"
  4958. type="1"
  4959. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  4960. </productMenu>
  4961. <productMenu id="quickGuide"
  4962. type="0"
  4963. url=""
  4964. size="1.12MB" >
  4965. </productMenu>
  4966. <productMenu id="userGuide"
  4967. type="1"
  4968. url=""
  4969. size="2.0MB" >
  4970. </productMenu>
  4971. <productMenu id="videoGuide"
  4972. type="0"
  4973. url=""
  4974. size="3.41MB" >
  4975. </productMenu>
  4976. <productMenu id="connectGuide"
  4977. type="1"
  4978. url=""
  4979. size="1.12MB" >
  4980. </productMenu>
  4981. <productMenu id="keySettings"
  4982. type="0"
  4983. url="" >
  4984. </productMenu>
  4985. <productMenu id="volume"
  4986. type="13" >
  4987. </productMenu>
  4988. <productMenu id="volume+"
  4989. type="2"
  4990. url="0x6004" >
  4991. </productMenu>
  4992. <productMenu id="appearance"
  4993. type="0"
  4994. url="" >
  4995. </productMenu>
  4996. <productMenu id="battery"
  4997. type="1" >
  4998. </productMenu>
  4999. <productID id="6A20"
  5000. />
  5001. <productGroupable type="0"
  5002. />
  5003. </product>
  5004. <product id="SPIDERXSlim"
  5005. name="SPIDER X Slim"
  5006. series="SPIDER"
  5007. latestVersion="1.0.1"
  5008. latestVersionVoicePrompt="1.8"
  5009. show = "1" >
  5010. <productMenu id="protocol"
  5011. type="2" >
  5012. </productMenu>
  5013. <productMenu id="warranty"
  5014. type="1" >
  5015. </productMenu>
  5016. <productMenu id="serialNumber"
  5017. type="1" >
  5018. </productMenu>
  5019. <productMenu id="ota"
  5020. type="2" >
  5021. <otaLanguages>
  5022. <otaLanguage
  5023. id="0"
  5024. name="English"
  5025. package="0"
  5026. />
  5027. <otaLanguage
  5028. id="0"
  5029. name="Français"
  5030. package="1"
  5031. />
  5032. <otaLanguage
  5033. id="0"
  5034. name="Español"
  5035. package="2"
  5036. />
  5037. <otaLanguage
  5038. id="0"
  5039. name="Italiano"
  5040. package="3"
  5041. />
  5042. <otaLanguage
  5043. id="0"
  5044. name="Deutsch"
  5045. package="4"
  5046. />
  5047. <otaLanguage
  5048. id="0"
  5049. name="Nederlands"
  5050. package="5"
  5051. />
  5052. <otaLanguage
  5053. id="0"
  5054. name="Русский"
  5055. package="6"
  5056. />
  5057. <otaLanguage
  5058. id="0"
  5059. name="简体中文"
  5060. package="7"
  5061. />
  5062. <otaLanguage
  5063. id="0"
  5064. name="한국어"
  5065. package="8"
  5066. />
  5067. <otaLanguage
  5068. id="0"
  5069. name="日本語"
  5070. package="9"
  5071. />
  5072. <otaLanguage
  5073. id="0"
  5074. name="Suomi"
  5075. package="10"
  5076. />
  5077. <otaLanguage
  5078. id="0"
  5079. name="Polski"
  5080. package="11"
  5081. />
  5082. </otaLanguages>
  5083. <otaPackages>
  5084. <package
  5085. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  5086. size="5183988"
  5087. />
  5088. <package
  5089. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  5090. size="5183988"
  5091. />
  5092. <package
  5093. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  5094. size="5183988"
  5095. />
  5096. <package
  5097. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  5098. size="5183988"
  5099. />
  5100. <package
  5101. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  5102. size="5183988"
  5103. />
  5104. <package
  5105. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  5106. size="5183988"
  5107. />
  5108. <package
  5109. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  5110. size="5183988"
  5111. />
  5112. <package
  5113. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  5114. size="5183988"
  5115. />
  5116. <package
  5117. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  5118. size="5183988"
  5119. />
  5120. <package
  5121. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  5122. size="5183988"
  5123. />
  5124. <package
  5125. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  5126. size="5183988"
  5127. />
  5128. <package
  5129. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  5130. size="5183988"
  5131. />
  5132. </otaPackages>
  5133. </productMenu>
  5134. <productMenu id="meshIntercom"
  5135. type="30" >
  5136. </productMenu>
  5137. <productMenu id="meshIntercom+"
  5138. type="3"
  5139. url="2" >
  5140. </productMenu>
  5141. <productMenu id="waveIntercom"
  5142. type="1" >
  5143. </productMenu>
  5144. <productMenu id="fmradio"
  5145. type="1"
  5146. url="1" >
  5147. </productMenu>
  5148. <productMenu id="phone"
  5149. type="1" >
  5150. </productMenu>
  5151. <productMenu id="music"
  5152. type="1" >
  5153. </productMenu>
  5154. <productMenu id="musicSharing"
  5155. type="0" >
  5156. </productMenu>
  5157. <productMenu id="deviceSetting"
  5158. type="1"
  5159. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  5160. <productMenuURL version="1.0"
  5161. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  5162. />
  5163. </productMenu>
  5164. <productMenu id="quickGuide"
  5165. type="0"
  5166. url=""
  5167. size="1.12MB" >
  5168. </productMenu>
  5169. <productMenu id="userGuide"
  5170. type="1"
  5171. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  5172. size="2.0MB" >
  5173. </productMenu>
  5174. <productMenu id="videoGuide"
  5175. type="0"
  5176. url=""
  5177. size="3.41MB" >
  5178. </productMenu>
  5179. <productMenu id="connectGuide"
  5180. type="1"
  5181. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  5182. size="1.12MB" >
  5183. </productMenu>
  5184. <productMenu id="volume"
  5185. type="16" >
  5186. </productMenu>
  5187. <productMenu id="volume+"
  5188. type="2"
  5189. url="0x6004" >
  5190. </productMenu>
  5191. <productMenu id="appearance"
  5192. type="1"
  5193. url="2|white,silver,chrome,black" >
  5194. </productMenu>
  5195. <productMenu id="battery"
  5196. type="1" >
  5197. </productMenu>
  5198. <productID id="6A07"
  5199. />
  5200. <productGroupable type="0"
  5201. />
  5202. </product>
  5203. <product id="LS2SPECTRUMPRO"
  5204. name="LS2 SPECTRUM PRO"
  5205. series="SPIDER"
  5206. latestVersion="1.0.1"
  5207. latestVersionVoicePrompt="1.8"
  5208. show = "-1" >
  5209. <productMenu id="protocol"
  5210. type="2" >
  5211. </productMenu>
  5212. <productMenu id="warranty"
  5213. type="0" >
  5214. </productMenu>
  5215. <productMenu id="serialNumber"
  5216. type="0" >
  5217. </productMenu>
  5218. <productMenu id="ota"
  5219. type="0" >
  5220. <otaLanguages>
  5221. <otaLanguage
  5222. id="0"
  5223. name="English"
  5224. package="0"
  5225. />
  5226. <otaLanguage
  5227. id="0"
  5228. name="Français"
  5229. package="1"
  5230. />
  5231. <otaLanguage
  5232. id="0"
  5233. name="Español"
  5234. package="2"
  5235. />
  5236. <otaLanguage
  5237. id="0"
  5238. name="Italiano"
  5239. package="3"
  5240. />
  5241. <otaLanguage
  5242. id="0"
  5243. name="Deutsch"
  5244. package="4"
  5245. />
  5246. <otaLanguage
  5247. id="0"
  5248. name="Nederlands"
  5249. package="5"
  5250. />
  5251. <otaLanguage
  5252. id="0"
  5253. name="Русский"
  5254. package="6"
  5255. />
  5256. <otaLanguage
  5257. id="0"
  5258. name="简体中文"
  5259. package="7"
  5260. />
  5261. <otaLanguage
  5262. id="0"
  5263. name="한국어"
  5264. package="8"
  5265. />
  5266. <otaLanguage
  5267. id="0"
  5268. name="日本語"
  5269. package="9"
  5270. />
  5271. <otaLanguage
  5272. id="0"
  5273. name="Suomi"
  5274. package="10"
  5275. />
  5276. <otaLanguage
  5277. id="0"
  5278. name="Polski"
  5279. package="11"
  5280. />
  5281. </otaLanguages>
  5282. <otaPackages>
  5283. <package
  5284. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1.img"
  5285. size="5183988"
  5286. />
  5287. <package
  5288. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fr-FR.img"
  5289. size="5183988"
  5290. />
  5291. <package
  5292. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-es-ES.img"
  5293. size="5183988"
  5294. />
  5295. <package
  5296. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-it-IT.img"
  5297. size="5183988"
  5298. />
  5299. <package
  5300. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-de-DE.img"
  5301. size="5183988"
  5302. />
  5303. <package
  5304. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-nl-NL.img"
  5305. size="5183988"
  5306. />
  5307. <package
  5308. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ru-RU.img"
  5309. size="5183988"
  5310. />
  5311. <package
  5312. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-cmn-CN.img"
  5313. size="5183988"
  5314. />
  5315. <package
  5316. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ko-KR.img"
  5317. size="5183988"
  5318. />
  5319. <package
  5320. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-ja-JP.img"
  5321. size="5183988"
  5322. />
  5323. <package
  5324. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-fi-FI.img"
  5325. size="5183988"
  5326. />
  5327. <package
  5328. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/LS2SPECTRUMPRO-v1.0.1-build1-pl-PL.img"
  5329. size="5183988"
  5330. />
  5331. </otaPackages>
  5332. </productMenu>
  5333. <productMenu id="meshIntercom"
  5334. type="30" >
  5335. </productMenu>
  5336. <productMenu id="meshIntercom+"
  5337. type="3"
  5338. url="2" >
  5339. </productMenu>
  5340. <productMenu id="waveIntercom"
  5341. type="1" >
  5342. </productMenu>
  5343. <productMenu id="fmradio"
  5344. type="1"
  5345. url="1" >
  5346. </productMenu>
  5347. <productMenu id="phone"
  5348. type="1" >
  5349. </productMenu>
  5350. <productMenu id="music"
  5351. type="1" >
  5352. </productMenu>
  5353. <productMenu id="musicSharing"
  5354. type="0" >
  5355. </productMenu>
  5356. <productMenu id="deviceSetting"
  5357. type="1"
  5358. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  5359. </productMenu>
  5360. <productMenu id="quickGuide"
  5361. type="0"
  5362. url=""
  5363. size="1.12MB" >
  5364. </productMenu>
  5365. <productMenu id="userGuide"
  5366. type="1"
  5367. url=""
  5368. size="2.0MB" >
  5369. </productMenu>
  5370. <productMenu id="videoGuide"
  5371. type="0"
  5372. url=""
  5373. size="3.41MB" >
  5374. </productMenu>
  5375. <productMenu id="connectGuide"
  5376. type="1"
  5377. url=""
  5378. size="1.12MB" >
  5379. </productMenu>
  5380. <productMenu id="volume"
  5381. type="16" >
  5382. </productMenu>
  5383. <productMenu id="volume+"
  5384. type="2"
  5385. url="0x6004" >
  5386. </productMenu>
  5387. <productMenu id="appearance"
  5388. type="0"
  5389. url="2|white,silver,chrome,black" >
  5390. </productMenu>
  5391. <productMenu id="battery"
  5392. type="1" >
  5393. </productMenu>
  5394. <productID id="6A22"
  5395. />
  5396. <productGroupable type="0"
  5397. />
  5398. </product>
  5399. <product id="XFITM"
  5400. name="X-FIT M"
  5401. series="SPIDER"
  5402. latestVersion="0.1.11"
  5403. latestVersionVoicePrompt="1.1"
  5404. show = "-1" >
  5405. <productMenu id="protocol"
  5406. type="2" >
  5407. </productMenu>
  5408. <productMenu id="ota"
  5409. type="0" >
  5410. <otaLanguages>
  5411. <otaLanguage
  5412. id="0"
  5413. name="English"
  5414. package="0"
  5415. />
  5416. <otaLanguage
  5417. id="0"
  5418. name="Français"
  5419. package="1"
  5420. />
  5421. <otaLanguage
  5422. id="0"
  5423. name="Español"
  5424. package="2"
  5425. />
  5426. <otaLanguage
  5427. id="0"
  5428. name="Italiano"
  5429. package="3"
  5430. />
  5431. <otaLanguage
  5432. id="0"
  5433. name="Deutsch"
  5434. package="4"
  5435. />
  5436. <otaLanguage
  5437. id="0"
  5438. name="Nederlands"
  5439. package="5"
  5440. />
  5441. <otaLanguage
  5442. id="0"
  5443. name="Русский"
  5444. package="6"
  5445. />
  5446. <otaLanguage
  5447. id="0"
  5448. name="简体中文"
  5449. package="7"
  5450. />
  5451. <otaLanguage
  5452. id="0"
  5453. name="한국어"
  5454. package="8"
  5455. />
  5456. <otaLanguage
  5457. id="0"
  5458. name="日本語"
  5459. package="9"
  5460. />
  5461. <otaLanguage
  5462. id="0"
  5463. name="Suomi"
  5464. package="10"
  5465. />
  5466. <otaLanguage
  5467. id="0"
  5468. name="Polski"
  5469. package="11"
  5470. />
  5471. </otaLanguages>
  5472. <otaPackages>
  5473. <package
  5474. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  5475. size="5183988"
  5476. />
  5477. <package
  5478. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  5479. size="5183988"
  5480. />
  5481. <package
  5482. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  5483. size="5183988"
  5484. />
  5485. <package
  5486. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  5487. size="5183988"
  5488. />
  5489. <package
  5490. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  5491. size="5183988"
  5492. />
  5493. <package
  5494. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  5495. size="5183988"
  5496. />
  5497. <package
  5498. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  5499. size="5183988"
  5500. />
  5501. <package
  5502. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  5503. size="5183988"
  5504. />
  5505. <package
  5506. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  5507. size="5183988"
  5508. />
  5509. <package
  5510. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  5511. size="5183988"
  5512. />
  5513. <package
  5514. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  5515. size="5183988"
  5516. />
  5517. <package
  5518. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  5519. size="5183988"
  5520. />
  5521. </otaPackages>
  5522. </productMenu>
  5523. <productMenu id="meshIntercom"
  5524. type="30" >
  5525. </productMenu>
  5526. <productMenu id="meshIntercom+"
  5527. type="3"
  5528. url="2" >
  5529. </productMenu>
  5530. <productMenu id="waveIntercom"
  5531. type="1" >
  5532. </productMenu>
  5533. <productMenu id="fmradio"
  5534. type="1"
  5535. url="1" >
  5536. </productMenu>
  5537. <productMenu id="phone"
  5538. type="1" >
  5539. </productMenu>
  5540. <productMenu id="music"
  5541. type="1" >
  5542. </productMenu>
  5543. <productMenu id="musicSharing"
  5544. type="0" >
  5545. </productMenu>
  5546. <productMenu id="deviceSetting"
  5547. type="1"
  5548. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  5549. </productMenu>
  5550. <productMenu id="quickGuide"
  5551. type="0"
  5552. url=""
  5553. size="1.12MB" >
  5554. </productMenu>
  5555. <productMenu id="userGuide"
  5556. type="1"
  5557. url=""
  5558. size="2.0MB" >
  5559. </productMenu>
  5560. <productMenu id="videoGuide"
  5561. type="0"
  5562. url=""
  5563. size="3.41MB" >
  5564. </productMenu>
  5565. <productMenu id="volume"
  5566. type="16" >
  5567. </productMenu>
  5568. <productMenu id="volume+"
  5569. type="2"
  5570. url="0x6004" >
  5571. </productMenu>
  5572. <productMenu id="battery"
  5573. type="1" >
  5574. </productMenu>
  5575. <productID id="6A17"
  5576. />
  5577. <productGroupable type="0"
  5578. />
  5579. </product>
  5580. <product id="VORTEXMESH"
  5581. name="VORTEX MESH"
  5582. series="Helmet"
  5583. latestVersion="0.1.11"
  5584. latestVersionVoicePrompt="1.1"
  5585. show = "-1" >
  5586. <productMenu id="protocol"
  5587. type="2" >
  5588. </productMenu>
  5589. <productMenu id="ota"
  5590. type="0" >
  5591. <otaLanguages>
  5592. <otaLanguage
  5593. id="0"
  5594. name="English"
  5595. package="0"
  5596. />
  5597. <otaLanguage
  5598. id="0"
  5599. name="Français"
  5600. package="1"
  5601. />
  5602. <otaLanguage
  5603. id="0"
  5604. name="Español"
  5605. package="2"
  5606. />
  5607. <otaLanguage
  5608. id="0"
  5609. name="Italiano"
  5610. package="3"
  5611. />
  5612. <otaLanguage
  5613. id="0"
  5614. name="Deutsch"
  5615. package="4"
  5616. />
  5617. <otaLanguage
  5618. id="0"
  5619. name="Nederlands"
  5620. package="5"
  5621. />
  5622. <otaLanguage
  5623. id="0"
  5624. name="Русский"
  5625. package="6"
  5626. />
  5627. <otaLanguage
  5628. id="0"
  5629. name="简体中文"
  5630. package="7"
  5631. />
  5632. <otaLanguage
  5633. id="0"
  5634. name="한국어"
  5635. package="8"
  5636. />
  5637. <otaLanguage
  5638. id="0"
  5639. name="日本語"
  5640. package="9"
  5641. />
  5642. <otaLanguage
  5643. id="0"
  5644. name="Suomi"
  5645. package="10"
  5646. />
  5647. <otaLanguage
  5648. id="0"
  5649. name="Polski"
  5650. package="11"
  5651. />
  5652. </otaLanguages>
  5653. <otaPackages>
  5654. <package
  5655. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  5656. size="5183988"
  5657. />
  5658. <package
  5659. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  5660. size="5183988"
  5661. />
  5662. <package
  5663. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  5664. size="5183988"
  5665. />
  5666. <package
  5667. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  5668. size="5183988"
  5669. />
  5670. <package
  5671. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  5672. size="5183988"
  5673. />
  5674. <package
  5675. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  5676. size="5183988"
  5677. />
  5678. <package
  5679. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  5680. size="5183988"
  5681. />
  5682. <package
  5683. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  5684. size="5183988"
  5685. />
  5686. <package
  5687. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  5688. size="5183988"
  5689. />
  5690. <package
  5691. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  5692. size="5183988"
  5693. />
  5694. <package
  5695. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  5696. size="5183988"
  5697. />
  5698. <package
  5699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  5700. size="5183988"
  5701. />
  5702. </otaPackages>
  5703. </productMenu>
  5704. <productMenu id="wa"
  5705. type="0" >
  5706. </productMenu>
  5707. <productMenu id="led"
  5708. type="5" >
  5709. </productMenu>
  5710. <productMenu id="led+"
  5711. type="2"
  5712. url="1" >
  5713. </productMenu>
  5714. <productMenu id="meshIntercom"
  5715. type="30" >
  5716. </productMenu>
  5717. <productMenu id="meshIntercom+"
  5718. type="3"
  5719. url="2" >
  5720. </productMenu>
  5721. <productMenu id="waveIntercom"
  5722. type="1" >
  5723. </productMenu>
  5724. <productMenu id="fmradio"
  5725. type="0" >
  5726. </productMenu>
  5727. <productMenu id="phone"
  5728. type="1" >
  5729. </productMenu>
  5730. <productMenu id="music"
  5731. type="1" >
  5732. </productMenu>
  5733. <productMenu id="musicSharing"
  5734. type="0" >
  5735. </productMenu>
  5736. <productMenu id="deviceSetting"
  5737. type="1"
  5738. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5739. </productMenu>
  5740. <productMenu id="quickGuide"
  5741. type="0"
  5742. url=""
  5743. size="1.12MB" >
  5744. </productMenu>
  5745. <productMenu id="userGuide"
  5746. type="1"
  5747. url=""
  5748. size="2.0MB" >
  5749. </productMenu>
  5750. <productMenu id="videoGuide"
  5751. type="0"
  5752. url=""
  5753. size="3.41MB" >
  5754. </productMenu>
  5755. <productMenu id="volume"
  5756. type="16" >
  5757. </productMenu>
  5758. <productMenu id="battery"
  5759. type="1" >
  5760. </productMenu>
  5761. <productID id="6A12"
  5762. />
  5763. <productGroupable type="0"
  5764. />
  5765. </product>
  5766. <product id="MeshOn"
  5767. name="MeshON"
  5768. series="Other"
  5769. latestVersion="1.0.1"
  5770. latestVersionVoicePrompt="0.7"
  5771. show = "1" >
  5772. <productMenu id="protocol"
  5773. type="2" >
  5774. </productMenu>
  5775. <productMenu id="ota"
  5776. type="2" >
  5777. <otaPackages>
  5778. <package
  5779. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  5780. size="2945812"
  5781. />
  5782. </otaPackages>
  5783. </productMenu>
  5784. <productMenu id="meshIntercom+"
  5785. type="3"
  5786. url="4" >
  5787. </productMenu>
  5788. <productMenu id="waveIntercom"
  5789. type="0" >
  5790. </productMenu>
  5791. <productMenu id="phone"
  5792. type="0" >
  5793. </productMenu>
  5794. <productMenu id="music"
  5795. type="0" >
  5796. </productMenu>
  5797. <productMenu id="musicSharing"
  5798. type="0" >
  5799. </productMenu>
  5800. <productMenu id="deviceSetting"
  5801. type="1"
  5802. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_02.xml" >
  5803. </productMenu>
  5804. <productMenu id="userGuide"
  5805. type="1"
  5806. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.1_en_260908.pdf"
  5807. size="2.0MB" >
  5808. </productMenu>
  5809. <productMenu id="connectGuide"
  5810. type="1"
  5811. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  5812. size="1.12MB" >
  5813. </productMenu>
  5814. <productMenu id="bluetoothHeadset"
  5815. type="1"
  5816. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  5817. </productMenu>
  5818. <productMenu id="volume"
  5819. type="0" >
  5820. </productMenu>
  5821. <productMenu id="battery"
  5822. type="1" >
  5823. </productMenu>
  5824. <productID id="684E"
  5825. />
  5826. <productGroupable type="0"
  5827. />
  5828. </product>
  5829. <product id="Impulse"
  5830. name="Impulse"
  5831. series="Helmet"
  5832. latestVersion="1.4.1"
  5833. show = "1" >
  5834. <productMenu id="protocol"
  5835. type="2" >
  5836. </productMenu>
  5837. <productMenu id="alexa"
  5838. type="0" >
  5839. </productMenu>
  5840. <productMenu id="ota"
  5841. type="0" >
  5842. </productMenu>
  5843. <productMenu id="wa"
  5844. type="24" >
  5845. </productMenu>
  5846. <productMenu id="manager"
  5847. type="0" >
  5848. </productMenu>
  5849. <productMenu id="sip"
  5850. type="1" >
  5851. </productMenu>
  5852. <productMenu id="led"
  5853. type="1" >
  5854. <productMenuType version="1.0.1"
  5855. type="2"
  5856. />
  5857. <productMenuType version="1.0"
  5858. type="1"
  5859. />
  5860. </productMenu>
  5861. <productMenu id="meshIntercom"
  5862. type="30" >
  5863. <productMenuType version="1.1.1"
  5864. type="20"
  5865. />
  5866. </productMenu>
  5867. <productMenu id="meshIntercom+"
  5868. type="3"
  5869. url="2" >
  5870. <productMenuType version="1.3.9"
  5871. type="2"
  5872. />
  5873. <productMenuURL version="1.1.1"
  5874. url="0"
  5875. />
  5876. </productMenu>
  5877. <productMenu id="waveIntercom"
  5878. type="1" >
  5879. <productMenuType version="1.3.9"
  5880. type="0"
  5881. />
  5882. </productMenu>
  5883. <productMenu id="bluetoothIntercom"
  5884. type="1" >
  5885. </productMenu>
  5886. <productMenu id="phone"
  5887. type="1" >
  5888. </productMenu>
  5889. <productMenu id="music"
  5890. type="1" >
  5891. </productMenu>
  5892. <productMenu id="fmradio"
  5893. type="1" >
  5894. </productMenu>
  5895. <productMenu id="deviceSetting"
  5896. type="1"
  5897. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5898. <productMenuURL version="1.3.9"
  5899. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5900. />
  5901. <productMenuURL version="1.1.1"
  5902. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5903. />
  5904. <productMenuURL version="1.0.4"
  5905. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5906. />
  5907. </productMenu>
  5908. <productMenu id="quickGuide"
  5909. type="0"
  5910. url=""
  5911. size="344KB" >
  5912. </productMenu>
  5913. <productMenu id="userGuide"
  5914. type="1"
  5915. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5916. size="3.41MB" >
  5917. </productMenu>
  5918. <productMenu id="connectGuide"
  5919. type="1"
  5920. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5921. size="1.12MB" >
  5922. </productMenu>
  5923. <productMenu id="volume"
  5924. type="11" >
  5925. </productMenu>
  5926. <productMenu id="battery"
  5927. type="1" >
  5928. </productMenu>
  5929. <productID id="3148"
  5930. />
  5931. <productGroupable type="0"
  5932. />
  5933. </product>
  5934. <product id="Impulse"
  5935. name="Impulse"
  5936. series="Helmet"
  5937. latestVersion="2.0"
  5938. show = "-1" >
  5939. <productMenu id="protocol"
  5940. type="2" >
  5941. </productMenu>
  5942. <productMenu id="alexa"
  5943. type="0" >
  5944. </productMenu>
  5945. <productMenu id="ota"
  5946. type="0" >
  5947. </productMenu>
  5948. <productMenu id="wa"
  5949. type="8" >
  5950. </productMenu>
  5951. <productMenu id="manager"
  5952. type="0" >
  5953. </productMenu>
  5954. <productMenu id="sip"
  5955. type="1" >
  5956. </productMenu>
  5957. <productMenu id="led"
  5958. type="3" >
  5959. </productMenu>
  5960. <productMenu id="meshIntercom"
  5961. type="20" >
  5962. </productMenu>
  5963. <productMenu id="bluetoothIntercom"
  5964. type="1" >
  5965. </productMenu>
  5966. <productMenu id="phone"
  5967. type="1" >
  5968. </productMenu>
  5969. <productMenu id="music"
  5970. type="1" >
  5971. </productMenu>
  5972. <productMenu id="fmradio"
  5973. type="1" >
  5974. </productMenu>
  5975. <productMenu id="deviceSetting"
  5976. type="1"
  5977. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5978. </productMenu>
  5979. <productMenu id="quickGuide"
  5980. type="1"
  5981. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5982. size="344KB" >
  5983. </productMenu>
  5984. <productMenu id="userGuide"
  5985. type="1"
  5986. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5987. size="3.41MB" >
  5988. </productMenu>
  5989. <productMenu id="volume"
  5990. type="11" >
  5991. </productMenu>
  5992. <productMenu id="battery"
  5993. type="1" >
  5994. </productMenu>
  5995. <productID id="3221"
  5996. />
  5997. <productGroupable type="0"
  5998. />
  5999. </product>
  6000. <product id="Stryker"
  6001. name="Stryker"
  6002. series="Helmet"
  6003. latestVersion="1.4.1"
  6004. show = "1" >
  6005. <productMenu id="protocol"
  6006. type="2" >
  6007. </productMenu>
  6008. <productMenu id="alexa"
  6009. type="0" >
  6010. </productMenu>
  6011. <productMenu id="ota"
  6012. type="0" >
  6013. </productMenu>
  6014. <productMenu id="wa"
  6015. type="40" >
  6016. </productMenu>
  6017. <productMenu id="manager"
  6018. type="0" >
  6019. </productMenu>
  6020. <productMenu id="sip"
  6021. type="1" >
  6022. </productMenu>
  6023. <productMenu id="led"
  6024. type="1" >
  6025. <productMenuType version="1.0.1"
  6026. type="2"
  6027. />
  6028. <productMenuType version="1.0"
  6029. type="1"
  6030. />
  6031. </productMenu>
  6032. <productMenu id="meshIntercom"
  6033. type="30" >
  6034. <productMenuType version="1.1.1"
  6035. type="20"
  6036. />
  6037. </productMenu>
  6038. <productMenu id="meshIntercom+"
  6039. type="3"
  6040. url="2" >
  6041. <productMenuType version="1.3.9"
  6042. type="2"
  6043. />
  6044. <productMenuURL version="1.1.1"
  6045. url="0"
  6046. />
  6047. </productMenu>
  6048. <productMenu id="waveIntercom"
  6049. type="1" >
  6050. <productMenuType version="1.2.9"
  6051. type="0"
  6052. />
  6053. </productMenu>
  6054. <productMenu id="bluetoothIntercom"
  6055. type="1" >
  6056. </productMenu>
  6057. <productMenu id="phone"
  6058. type="1" >
  6059. </productMenu>
  6060. <productMenu id="music"
  6061. type="1" >
  6062. </productMenu>
  6063. <productMenu id="fmradio"
  6064. type="1" >
  6065. </productMenu>
  6066. <productMenu id="deviceSetting"
  6067. type="1"
  6068. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  6069. <productMenuURL version="1.3.9"
  6070. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  6071. />
  6072. <productMenuURL version="1.1.1"
  6073. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  6074. />
  6075. <productMenuURL version="1.0.4"
  6076. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  6077. />
  6078. </productMenu>
  6079. <productMenu id="quickGuide"
  6080. type="0"
  6081. url=""
  6082. size="344KB" >
  6083. </productMenu>
  6084. <productMenu id="userGuide"
  6085. type="1"
  6086. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  6087. size="3.41MB" >
  6088. </productMenu>
  6089. <productMenu id="connectGuide"
  6090. type="1"
  6091. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6092. size="1.12MB" >
  6093. </productMenu>
  6094. <productMenu id="volume"
  6095. type="11" >
  6096. </productMenu>
  6097. <productMenu id="battery"
  6098. type="1" >
  6099. </productMenu>
  6100. <productID id="3154"
  6101. />
  6102. <productGroupable type="0"
  6103. />
  6104. </product>
  6105. <product id="SRL3Plus"
  6106. name="SRL3 Plus"
  6107. series="60"
  6108. latestVersion="0.9.14"
  6109. latestVersionMesh="0.19"
  6110. latestVersionVoicePrompt="1.8"
  6111. show = "-1" >
  6112. <productMenu id="protocol"
  6113. type="2" >
  6114. </productMenu>
  6115. <productMenu id="ota"
  6116. type="0" >
  6117. <otaLanguages>
  6118. <otaLanguage
  6119. id="0"
  6120. name="English"
  6121. package="0"
  6122. />
  6123. <otaLanguage
  6124. id="0"
  6125. name="Français"
  6126. package="1"
  6127. />
  6128. <otaLanguage
  6129. id="0"
  6130. name="Español"
  6131. package="2"
  6132. />
  6133. <otaLanguage
  6134. id="0"
  6135. name="Italiano"
  6136. package="3"
  6137. />
  6138. <otaLanguage
  6139. id="0"
  6140. name="Deutsch"
  6141. package="4"
  6142. />
  6143. <otaLanguage
  6144. id="0"
  6145. name="Nederlands"
  6146. package="5"
  6147. />
  6148. <otaLanguage
  6149. id="0"
  6150. name="Русский"
  6151. package="6"
  6152. />
  6153. <otaLanguage
  6154. id="0"
  6155. name="简体中文"
  6156. package="7"
  6157. />
  6158. <otaLanguage
  6159. id="0"
  6160. name="한국어"
  6161. package="8"
  6162. />
  6163. <otaLanguage
  6164. id="0"
  6165. name="日本語"
  6166. package="9"
  6167. />
  6168. <otaLanguage
  6169. id="0"
  6170. name="Suomi"
  6171. package="10"
  6172. />
  6173. <otaLanguage
  6174. id="0"
  6175. name="Polski"
  6176. package="11"
  6177. />
  6178. </otaLanguages>
  6179. <otaPackages>
  6180. <package
  6181. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  6182. size="5183988"
  6183. />
  6184. <package
  6185. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  6186. size="5183988"
  6187. />
  6188. <package
  6189. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  6190. size="5183988"
  6191. />
  6192. <package
  6193. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  6194. size="5183988"
  6195. />
  6196. <package
  6197. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  6198. size="5183988"
  6199. />
  6200. <package
  6201. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  6202. size="5183988"
  6203. />
  6204. <package
  6205. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  6206. size="5183988"
  6207. />
  6208. <package
  6209. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  6210. size="5183988"
  6211. />
  6212. <package
  6213. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  6214. size="5183988"
  6215. />
  6216. <package
  6217. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  6218. size="5183988"
  6219. />
  6220. <package
  6221. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  6222. size="5183988"
  6223. />
  6224. <package
  6225. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  6226. size="5183988"
  6227. />
  6228. </otaPackages>
  6229. </productMenu>
  6230. <productMenu id="sip"
  6231. type="1" >
  6232. </productMenu>
  6233. <productMenu id="meshIntercom+"
  6234. type="3"
  6235. url="2" >
  6236. </productMenu>
  6237. <productMenu id="waveIntercom"
  6238. type="1" >
  6239. </productMenu>
  6240. <productMenu id="bluetoothIntercom"
  6241. type="1"
  6242. url="2" >
  6243. </productMenu>
  6244. <productMenu id="bluetoothIntercomGrouping"
  6245. type="0" >
  6246. </productMenu>
  6247. <productMenu id="fmradio"
  6248. type="1"
  6249. url="1" >
  6250. </productMenu>
  6251. <productMenu id="phone"
  6252. type="1" >
  6253. </productMenu>
  6254. <productMenu id="music"
  6255. type="1" >
  6256. </productMenu>
  6257. <productMenu id="musicSharing"
  6258. type="0" >
  6259. </productMenu>
  6260. <productMenu id="deviceSetting"
  6261. type="1"
  6262. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  6263. </productMenu>
  6264. <productMenu id="quickGuide"
  6265. type="0"
  6266. url=""
  6267. size="1.12MB" >
  6268. </productMenu>
  6269. <productMenu id="userGuide"
  6270. type="0"
  6271. url=""
  6272. size="2.0MB" >
  6273. </productMenu>
  6274. <productMenu id="videoGuide"
  6275. type="0"
  6276. url=""
  6277. size="3.41MB" >
  6278. </productMenu>
  6279. <productMenu id="volume"
  6280. type="16" >
  6281. </productMenu>
  6282. <productMenu id="soundMode"
  6283. type="0" >
  6284. </productMenu>
  6285. <productMenu id="battery"
  6286. type="1" >
  6287. </productMenu>
  6288. <productID id="6A08"
  6289. />
  6290. <productGroupable type="0"
  6291. />
  6292. </product>
  6293. <product id="SRL3"
  6294. name="SRL3"
  6295. series="SRL"
  6296. latestVersion="1.5"
  6297. show = "1" >
  6298. <productMenu id="protocol"
  6299. type="2" >
  6300. </productMenu>
  6301. <productMenu id="alexa"
  6302. type="0" >
  6303. </productMenu>
  6304. <productMenu id="ota"
  6305. type="0" >
  6306. </productMenu>
  6307. <productMenu id="wa"
  6308. type="1" >
  6309. </productMenu>
  6310. <productMenu id="sip"
  6311. type="1" >
  6312. </productMenu>
  6313. <productMenu id="meshIntercom"
  6314. type="30" >
  6315. </productMenu>
  6316. <productMenu id="meshIntercom+"
  6317. type="3"
  6318. url="2" >
  6319. <productMenuType version="1.3.9"
  6320. type="2"
  6321. />
  6322. </productMenu>
  6323. <productMenu id="waveIntercom"
  6324. type="1" >
  6325. <productMenuType version="1.4.9"
  6326. type="0"
  6327. />
  6328. </productMenu>
  6329. <productMenu id="bluetoothIntercom"
  6330. type="1" >
  6331. </productMenu>
  6332. <productMenu id="phone"
  6333. type="1" >
  6334. </productMenu>
  6335. <productMenu id="music"
  6336. type="1" >
  6337. </productMenu>
  6338. <productMenu id="fmradio"
  6339. type="1" >
  6340. </productMenu>
  6341. <productMenu id="deviceSetting"
  6342. type="1"
  6343. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6344. <productMenuURL version="1.3"
  6345. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6346. />
  6347. </productMenu>
  6348. <productMenu id="quickGuide"
  6349. type="0"
  6350. url=""
  6351. size="344KB" >
  6352. </productMenu>
  6353. <productMenu id="userGuide"
  6354. type="1"
  6355. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.4.2_en_260911.pdf"
  6356. size="3.41MB" >
  6357. </productMenu>
  6358. <productMenu id="connectGuide"
  6359. type="1"
  6360. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6361. size="1.12MB" >
  6362. </productMenu>
  6363. <productMenu id="volume"
  6364. type="11" >
  6365. </productMenu>
  6366. <productMenu id="battery"
  6367. type="1" >
  6368. </productMenu>
  6369. <productID id="3219"
  6370. />
  6371. <productGroupable type="0"
  6372. />
  6373. </product>
  6374. <product id="SRL_Mesh"
  6375. name="SRL-Mesh"
  6376. series="SRL"
  6377. latestVersion="1.7.1"
  6378. show = "1" >
  6379. <productMenu id="protocol"
  6380. type="2" >
  6381. </productMenu>
  6382. <productMenu id="alexa"
  6383. type="0" >
  6384. </productMenu>
  6385. <productMenu id="ota"
  6386. type="0" >
  6387. </productMenu>
  6388. <productMenu id="wa"
  6389. type="1" >
  6390. </productMenu>
  6391. <productMenu id="sip"
  6392. type="1" >
  6393. </productMenu>
  6394. <productMenu id="meshIntercom"
  6395. type="30" >
  6396. <productMenuType version="1.1.1"
  6397. type="20"
  6398. />
  6399. </productMenu>
  6400. <productMenu id="meshIntercom+"
  6401. type="3"
  6402. url="2" >
  6403. <productMenuType version="1.5.9"
  6404. type="2"
  6405. />
  6406. <productMenuURL version="1.1.1"
  6407. url="0"
  6408. />
  6409. </productMenu>
  6410. <productMenu id="waveIntercom"
  6411. type="1" >
  6412. <productMenuType version="1.6.9"
  6413. type="0"
  6414. />
  6415. </productMenu>
  6416. <productMenu id="bluetoothIntercom"
  6417. type="1" >
  6418. </productMenu>
  6419. <productMenu id="phone"
  6420. type="1" >
  6421. </productMenu>
  6422. <productMenu id="music"
  6423. type="1" >
  6424. </productMenu>
  6425. <productMenu id="fmradio"
  6426. type="1" >
  6427. </productMenu>
  6428. <productMenu id="deviceSetting"
  6429. type="1"
  6430. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6431. <productMenuURL version="1.5"
  6432. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6433. />
  6434. <productMenuURL version="1.1.1"
  6435. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6436. />
  6437. <productMenuURL version="1.0.3"
  6438. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6439. />
  6440. </productMenu>
  6441. <productMenu id="quickGuide"
  6442. type="0"
  6443. url=""
  6444. size="344KB" >
  6445. </productMenu>
  6446. <productMenu id="userGuide"
  6447. type="1"
  6448. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  6449. size="3.41MB" >
  6450. </productMenu>
  6451. <productMenu id="connectGuide"
  6452. type="1"
  6453. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6454. size="1.12MB" >
  6455. </productMenu>
  6456. <productMenu id="volume"
  6457. type="11" >
  6458. </productMenu>
  6459. <productMenu id="battery"
  6460. type="1" >
  6461. </productMenu>
  6462. <productID id="3216"
  6463. />
  6464. <productGroupable type="0"
  6465. />
  6466. </product>
  6467. <product id="SRL_EXT"
  6468. name="SRL-EXT"
  6469. series="SRL"
  6470. latestVersion="1.7.1"
  6471. show = "1" >
  6472. <productMenu id="protocol"
  6473. type="2" >
  6474. </productMenu>
  6475. <productMenu id="alexa"
  6476. type="0" >
  6477. </productMenu>
  6478. <productMenu id="ota"
  6479. type="0" >
  6480. </productMenu>
  6481. <productMenu id="wa"
  6482. type="0" >
  6483. </productMenu>
  6484. <productMenu id="sip"
  6485. type="1" >
  6486. </productMenu>
  6487. <productMenu id="meshIntercom"
  6488. type="30" >
  6489. <productMenuType version="1.1.1"
  6490. type="20"
  6491. />
  6492. </productMenu>
  6493. <productMenu id="meshIntercom+"
  6494. type="3"
  6495. url="2" >
  6496. <productMenuType version="1.5.9"
  6497. type="2"
  6498. />
  6499. <productMenuURL version="1.1.1"
  6500. url="0"
  6501. />
  6502. </productMenu>
  6503. <productMenu id="waveIntercom"
  6504. type="1" >
  6505. <productMenuType version="1.6.9"
  6506. type="0"
  6507. />
  6508. </productMenu>
  6509. <productMenu id="bluetoothIntercom"
  6510. type="1" >
  6511. </productMenu>
  6512. <productMenu id="phone"
  6513. type="1" >
  6514. </productMenu>
  6515. <productMenu id="music"
  6516. type="1" >
  6517. </productMenu>
  6518. <productMenu id="fmradio"
  6519. type="1" >
  6520. </productMenu>
  6521. <productMenu id="deviceSetting"
  6522. type="1"
  6523. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6524. <productMenuURL version="1.5"
  6525. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  6526. />
  6527. <productMenuURL version="1.1.1"
  6528. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6529. />
  6530. <productMenuURL version="1.0.3"
  6531. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6532. />
  6533. </productMenu>
  6534. <productMenu id="quickGuide"
  6535. type="0"
  6536. url=""
  6537. size="344KB" >
  6538. </productMenu>
  6539. <productMenu id="userGuide"
  6540. type="1"
  6541. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  6542. size="3.41MB" >
  6543. </productMenu>
  6544. <productMenu id="connectGuide"
  6545. type="1"
  6546. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  6547. size="1.12MB" >
  6548. </productMenu>
  6549. <productMenu id="volume"
  6550. type="11" >
  6551. </productMenu>
  6552. <productMenu id="battery"
  6553. type="1" >
  6554. </productMenu>
  6555. <productID id="3212"
  6556. />
  6557. <productGroupable type="0"
  6558. />
  6559. </product>
  6560. <product id="SRL2"
  6561. name="SRL2"
  6562. series="SRL"
  6563. latestVersion="1.0.9"
  6564. show = "1" >
  6565. <productMenu id="protocol"
  6566. type="0">
  6567. </productMenu>
  6568. <productMenu id="sip"
  6569. type="1" >
  6570. </productMenu>
  6571. <productMenu id="bluetoothIntercom"
  6572. type="1" >
  6573. </productMenu>
  6574. <productMenu id="intercomSetting"
  6575. type="1" >
  6576. </productMenu>
  6577. <productMenu id="phone"
  6578. type="2" >
  6579. </productMenu>
  6580. <productMenu id="fmradio"
  6581. type="3" >
  6582. </productMenu>
  6583. <productMenu id="deviceSetting"
  6584. type="1"
  6585. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6586. </productMenu>
  6587. <productMenu id="quickGuide"
  6588. type="1"
  6589. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  6590. size="846KB" >
  6591. </productMenu>
  6592. <productMenu id="userGuide"
  6593. type="1"
  6594. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  6595. size="1.18MB" >
  6596. </productMenu>
  6597. <productMenu id="connectGuide"
  6598. type="1"
  6599. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6600. size="1.12MB" >
  6601. </productMenu>
  6602. <productID id="4530"
  6603. />
  6604. <productGroupable type="1"
  6605. />
  6606. </product>
  6607. <product id="Neotec2"
  6608. name="SRL Neotec2"
  6609. series="SRL"
  6610. latestVersion="1.1.5"
  6611. show = "1" >
  6612. <productMenu id="protocol"
  6613. type="0">
  6614. </productMenu>
  6615. <productMenu id="sip"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="bluetoothIntercom"
  6619. type="1" >
  6620. </productMenu>
  6621. <productMenu id="intercomSetting"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="phone"
  6625. type="2" >
  6626. </productMenu>
  6627. <productMenu id="fmradio"
  6628. type="3" >
  6629. </productMenu>
  6630. <productMenu id="deviceSetting"
  6631. type="1"
  6632. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6633. </productMenu>
  6634. <productMenu id="quickGuide"
  6635. type="0"
  6636. url=""
  6637. size="796KB" >
  6638. </productMenu>
  6639. <productMenu id="userGuide"
  6640. type="1"
  6641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  6642. size="1.90MB" >
  6643. </productMenu>
  6644. <productMenu id="connectGuide"
  6645. type="1"
  6646. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6647. size="1.12MB" >
  6648. </productMenu>
  6649. <productID id="4510"
  6650. />
  6651. <productGroupable type="1"
  6652. />
  6653. </product>
  6654. <product id="MultiComNeo"
  6655. name="MultiCom Neo"
  6656. series="MultiCom"
  6657. latestVersion="1.0"
  6658. latestVersionVoicePrompt="1.6"
  6659. show = "-1" >
  6660. <productMenu id="protocol"
  6661. type="2" >
  6662. </productMenu>
  6663. <productMenu id="ota"
  6664. type="0" >
  6665. <otaPackages>
  6666. <package
  6667. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  6668. size="2945812"
  6669. />
  6670. </otaPackages>
  6671. </productMenu>
  6672. <productMenu id="meshIntercom+"
  6673. type="3"
  6674. url="2" >
  6675. </productMenu>
  6676. <productMenu id="waveIntercom"
  6677. type="1" >
  6678. </productMenu>
  6679. <productMenu id="phone"
  6680. type="1" >
  6681. </productMenu>
  6682. <productMenu id="music"
  6683. type="1" >
  6684. </productMenu>
  6685. <productMenu id="musicSharing"
  6686. type="0" >
  6687. </productMenu>
  6688. <productMenu id="deviceSetting"
  6689. type="1"
  6690. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  6691. </productMenu>
  6692. <productMenu id="quickGuide"
  6693. type="0"
  6694. url=""
  6695. size="1.12MB" >
  6696. </productMenu>
  6697. <productMenu id="userGuide"
  6698. type="1"
  6699. url=""
  6700. size="2.0MB" >
  6701. </productMenu>
  6702. <productMenu id="videoGuide"
  6703. type="0"
  6704. url=""
  6705. size="3.41MB" >
  6706. </productMenu>
  6707. <productMenu id="connectGuide"
  6708. type="0"
  6709. url=""
  6710. size="1.12MB" >
  6711. </productMenu>
  6712. <productMenu id="volume"
  6713. type="12" >
  6714. </productMenu>
  6715. <productMenu id="volume+"
  6716. type="2"
  6717. url="0x2000" >
  6718. </productMenu>
  6719. <productMenu id="battery"
  6720. type="1" >
  6721. </productMenu>
  6722. <productID id="685F"
  6723. />
  6724. <productGroupable type="0"
  6725. />
  6726. </product>
  6727. <product id="SPIDERST2ANC"
  6728. name="SPIDER ST2 ANC"
  6729. series="SPIDER"
  6730. latestVersion="0.5.1"
  6731. latestVersionVoicePrompt="0.2"
  6732. latestVersionMesh="0.8"
  6733. show = "-1" >
  6734. <productMenu id="protocol"
  6735. type="2" >
  6736. </productMenu>
  6737. <productMenu id="ota"
  6738. type="0" >
  6739. <otaPackages>
  6740. <package
  6741. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  6742. size="2945812"
  6743. />
  6744. </otaPackages>
  6745. </productMenu>
  6746. <productMenu id="wa"
  6747. type="0" >
  6748. </productMenu>
  6749. <productMenu id="led"
  6750. type="1" >
  6751. </productMenu>
  6752. <productMenu id="meshIntercom"
  6753. type="30" >
  6754. </productMenu>
  6755. <productMenu id="fmradio"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="phone"
  6759. type="1" >
  6760. </productMenu>
  6761. <productMenu id="music"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="musicSharing"
  6765. type="0" >
  6766. </productMenu>
  6767. <productMenu id="deviceSetting"
  6768. type="1"
  6769. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  6770. </productMenu>
  6771. <productMenu id="quickGuide"
  6772. type="1"
  6773. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  6774. size="1.12MB" >
  6775. </productMenu>
  6776. <productMenu id="userGuide"
  6777. type="1"
  6778. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  6779. size="2.0MB" >
  6780. </productMenu>
  6781. <productMenu id="videoGuide"
  6782. type="1"
  6783. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6784. size="3.41MB" >
  6785. </productMenu>
  6786. <productMenu id="volume"
  6787. type="12" >
  6788. </productMenu>
  6789. <productMenu id="battery"
  6790. type="1" >
  6791. </productMenu>
  6792. <productID id="6A00"
  6793. />
  6794. <productGroupable type="0"
  6795. />
  6796. </product>
  6797. <product id="SPIDER_ST1"
  6798. name="SPIDER ST1"
  6799. series="SPIDER"
  6800. latestVersion="2.5.3"
  6801. latestVersionVoicePrompt="1.6"
  6802. show = "1" >
  6803. <productMenu id="protocol"
  6804. type="2" >
  6805. </productMenu>
  6806. <productMenu id="alexa"
  6807. type="0" >
  6808. </productMenu>
  6809. <productMenu id="ota"
  6810. type="2" >
  6811. <productMenuType version="2.1.9"
  6812. type="0"
  6813. />
  6814. <otaPackages>
  6815. <package
  6816. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  6817. size="2945812"
  6818. />
  6819. </otaPackages>
  6820. </productMenu>
  6821. <productMenu id="wa"
  6822. type="0" >
  6823. </productMenu>
  6824. <productMenu id="meshIntercom"
  6825. type="30" >
  6826. <productMenuType version="2.1.1"
  6827. type="20"
  6828. />
  6829. </productMenu>
  6830. <productMenu id="meshIntercom+"
  6831. type="3"
  6832. url="2" >
  6833. <productMenuType version="2.2.9"
  6834. type="2"
  6835. />
  6836. <productMenuURL version="2.1.1"
  6837. url="0"
  6838. />
  6839. </productMenu>
  6840. <productMenu id="waveIntercom"
  6841. type="1" >
  6842. <productMenuType version="2.3.9"
  6843. type="0"
  6844. />
  6845. </productMenu>
  6846. <productMenu id="phone"
  6847. type="1" >
  6848. </productMenu>
  6849. <productMenu id="music"
  6850. type="1" >
  6851. </productMenu>
  6852. <productMenu id="musicSharing"
  6853. type="0" >
  6854. </productMenu>
  6855. <productMenu id="deviceSetting"
  6856. type="1"
  6857. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  6858. <productMenuURL version="2.4.9"
  6859. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6860. />
  6861. <productMenuURL version="2.2.2"
  6862. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6863. />
  6864. <productMenuURL version="2.1.1"
  6865. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6866. />
  6867. </productMenu>
  6868. <productMenu id="quickGuide"
  6869. type="0"
  6870. url=""
  6871. size="1.12MB" >
  6872. </productMenu>
  6873. <productMenu id="userGuide"
  6874. type="1"
  6875. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6876. size="2.0MB" >
  6877. </productMenu>
  6878. <productMenu id="videoGuide"
  6879. type="1"
  6880. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6881. size="3.41MB" >
  6882. </productMenu>
  6883. <productMenu id="connectGuide"
  6884. type="1"
  6885. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6886. size="1.12MB" >
  6887. </productMenu>
  6888. <productMenu id="volume"
  6889. type="12" >
  6890. </productMenu>
  6891. <productMenu id="volume+"
  6892. type="2"
  6893. url="0x2000" >
  6894. </productMenu>
  6895. <productMenu id="battery"
  6896. type="1" >
  6897. </productMenu>
  6898. <productID id="6800"
  6899. />
  6900. <productGroupable type="0"
  6901. />
  6902. </product>
  6903. <product id="SPIDER_ST1"
  6904. name="SPIDER ST1"
  6905. series="SPIDER"
  6906. latestVersion="1.2.2"
  6907. show = "-1" >
  6908. <productMenu id="protocol"
  6909. type="2" >
  6910. </productMenu>
  6911. <productMenu id="alexa"
  6912. type="0" >
  6913. </productMenu>
  6914. <productMenu id="ota"
  6915. type="0" >
  6916. </productMenu>
  6917. <productMenu id="wa"
  6918. type="0" >
  6919. </productMenu>
  6920. <productMenu id="meshIntercom"
  6921. type="20" >
  6922. </productMenu>
  6923. <productMenu id="phone"
  6924. type="1" >
  6925. </productMenu>
  6926. <productMenu id="music"
  6927. type="1" >
  6928. </productMenu>
  6929. <productMenu id="deviceSetting"
  6930. type="1"
  6931. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6932. </productMenu>
  6933. <productMenu id="quickGuide"
  6934. type="0"
  6935. url=""
  6936. size="1.12MB" >
  6937. </productMenu>
  6938. <productMenu id="userGuide"
  6939. type="1"
  6940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6941. size="2.0MB" >
  6942. </productMenu>
  6943. <productMenu id="videoGuide"
  6944. type="1"
  6945. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6946. size="3.41MB" >
  6947. </productMenu>
  6948. <productMenu id="volume"
  6949. type="13" >
  6950. <productMenuType version="1.1.6"
  6951. type="14"/>
  6952. </productMenu>
  6953. <productMenu id="battery"
  6954. type="1" >
  6955. </productMenu>
  6956. <productID id="6510"
  6957. />
  6958. <productGroupable type="0"
  6959. />
  6960. </product>
  6961. <product id="SPIDER_RT1"
  6962. name="SPIDER RT1"
  6963. series="SPIDER"
  6964. latestVersion="2.5.3"
  6965. latestVersionVoicePrompt="1.6"
  6966. show = "1" >
  6967. <productMenu id="protocol"
  6968. type="2" >
  6969. </productMenu>
  6970. <productMenu id="alexa"
  6971. type="0" >
  6972. </productMenu>
  6973. <productMenu id="ota"
  6974. type="2" >
  6975. <productMenuType version="2.1.9"
  6976. type="0"
  6977. />
  6978. <otaPackages>
  6979. <package
  6980. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6981. size="2945812"
  6982. />
  6983. </otaPackages>
  6984. </productMenu>
  6985. <productMenu id="wa"
  6986. type="0" >
  6987. </productMenu>
  6988. <productMenu id="meshIntercom"
  6989. type="30" >
  6990. <productMenuType version="2.1.1"
  6991. type="20"
  6992. />
  6993. </productMenu>
  6994. <productMenu id="meshIntercom+"
  6995. type="3"
  6996. url="2" >
  6997. <productMenuType version="2.2.9"
  6998. type="2"
  6999. />
  7000. <productMenuURL version="2.1.1"
  7001. url="0"
  7002. />
  7003. </productMenu>
  7004. <productMenu id="waveIntercom"
  7005. type="1" >
  7006. <productMenuType version="2.3.9"
  7007. type="0"
  7008. />
  7009. </productMenu>
  7010. <productMenu id="phone"
  7011. type="1" >
  7012. </productMenu>
  7013. <productMenu id="music"
  7014. type="1" >
  7015. </productMenu>
  7016. <productMenu id="musicSharing"
  7017. type="0" >
  7018. </productMenu>
  7019. <productMenu id="deviceSetting"
  7020. type="1"
  7021. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_06.xml" >
  7022. <productMenuURL version="2.4.9"
  7023. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  7024. />
  7025. <productMenuURL version="2.2.2"
  7026. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7027. />
  7028. <productMenuURL version="2.1.1"
  7029. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  7030. />
  7031. </productMenu>
  7032. <productMenu id="quickGuide"
  7033. type="0"
  7034. url=""
  7035. size="1.12MB" >
  7036. </productMenu>
  7037. <productMenu id="userGuide"
  7038. type="1"
  7039. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  7040. size="2.0MB" >
  7041. </productMenu>
  7042. <productMenu id="videoGuide"
  7043. type="1"
  7044. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  7045. size="3.41MB" >
  7046. </productMenu>
  7047. <productMenu id="connectGuide"
  7048. type="1"
  7049. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7050. size="1.12MB" >
  7051. </productMenu>
  7052. <productMenu id="volume"
  7053. type="12" >
  7054. </productMenu>
  7055. <productMenu id="volume+"
  7056. type="2"
  7057. url="0x2000" >
  7058. </productMenu>
  7059. <productMenu id="battery"
  7060. type="1" >
  7061. </productMenu>
  7062. <productID id="6810"
  7063. />
  7064. <productGroupable type="0"
  7065. />
  7066. </product>
  7067. <product id="SPIDER_RT1"
  7068. name="SPIDER RT1"
  7069. series="SPIDER"
  7070. latestVersion="1.2.2"
  7071. show = "-1" >
  7072. <productMenu id="protocol"
  7073. type="2" >
  7074. </productMenu>
  7075. <productMenu id="alexa"
  7076. type="0" >
  7077. </productMenu>
  7078. <productMenu id="ota"
  7079. type="0" >
  7080. </productMenu>
  7081. <productMenu id="wa"
  7082. type="0" >
  7083. </productMenu>
  7084. <productMenu id="meshIntercom"
  7085. type="20" >
  7086. </productMenu>
  7087. <productMenu id="phone"
  7088. type="1" >
  7089. </productMenu>
  7090. <productMenu id="music"
  7091. type="1" >
  7092. </productMenu>
  7093. <productMenu id="deviceSetting"
  7094. type="1"
  7095. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  7096. </productMenu>
  7097. <productMenu id="quickGuide"
  7098. type="0"
  7099. url=""
  7100. size="1.32MB" >
  7101. </productMenu>
  7102. <productMenu id="userGuide"
  7103. type="1"
  7104. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  7105. size="1.79MB" >
  7106. </productMenu>
  7107. <productMenu id="videoGuide"
  7108. type="1"
  7109. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  7110. size="3.41MB" >
  7111. </productMenu>
  7112. <productMenu id="volume"
  7113. type="13" >
  7114. <productMenuType version="1.1.6"
  7115. type="14"/>
  7116. </productMenu>
  7117. <productMenu id="battery"
  7118. type="1" >
  7119. </productMenu>
  7120. <productID id="6500"
  7121. />
  7122. <productGroupable type="0"
  7123. />
  7124. </product>
  7125. <product id="30K"
  7126. name="30K"
  7127. series="30"
  7128. latestVersion="4.5.1"
  7129. show = "1" >
  7130. <productMenu id="protocol"
  7131. type="2" >
  7132. </productMenu>
  7133. <productMenu id="alexa"
  7134. type="0" >
  7135. </productMenu>
  7136. <productMenu id="wa"
  7137. type="1" >
  7138. </productMenu>
  7139. <productMenu id="sip"
  7140. type="1" >
  7141. </productMenu>
  7142. <productMenu id="meshIntercom"
  7143. type="30" >
  7144. <productMenuType version="4.0.4"
  7145. type="20"
  7146. />
  7147. </productMenu>
  7148. <productMenu id="meshIntercom+"
  7149. type="3"
  7150. url="2" >
  7151. <productMenuType version="4.3.9"
  7152. type="2"
  7153. />
  7154. <productMenuURL version="4.0.4"
  7155. url="0"
  7156. />
  7157. </productMenu>
  7158. <productMenu id="waveIntercom"
  7159. type="1" >
  7160. <productMenuType version="4.4.9"
  7161. type="0"
  7162. />
  7163. </productMenu>
  7164. <productMenu id="bluetoothIntercom"
  7165. type="1" >
  7166. </productMenu>
  7167. <productMenu id="phone"
  7168. type="1" >
  7169. </productMenu>
  7170. <productMenu id="music"
  7171. type="1" >
  7172. </productMenu>
  7173. <productMenu id="fmradio"
  7174. type="1" >
  7175. </productMenu>
  7176. <productMenu id="deviceSetting"
  7177. type="1"
  7178. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  7179. <productMenuURL version="4.3"
  7180. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  7181. />
  7182. <productMenuURL version="4.2"
  7183. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  7184. />
  7185. <productMenuURL version="4.0.4"
  7186. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  7187. />
  7188. </productMenu>
  7189. <productMenu id="quickGuide"
  7190. type="0"
  7191. url=""
  7192. size="934KB" >
  7193. </productMenu>
  7194. <productMenu id="userGuide"
  7195. type="1"
  7196. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  7197. size="1.14MB" >
  7198. </productMenu>
  7199. <productMenu id="connectGuide"
  7200. type="1"
  7201. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  7202. size="1.12MB" >
  7203. </productMenu>
  7204. <productMenu id="volume"
  7205. type="11" >
  7206. </productMenu>
  7207. <productMenu id="battery"
  7208. type="1" >
  7209. </productMenu>
  7210. <productID id="3211"
  7211. />
  7212. <productGroupable type="0"
  7213. />
  7214. </product>
  7215. <product id="30K"
  7216. name="30K"
  7217. series="30"
  7218. latestVersion="3.5"
  7219. show = "-1" >
  7220. <productMenu id="protocol"
  7221. type="1"
  7222. url="0">
  7223. </productMenu>
  7224. <productMenu id="wa"
  7225. type="7" >
  7226. </productMenu>
  7227. <productMenu id="sip"
  7228. type="1" >
  7229. </productMenu>
  7230. <productMenu id="meshIntercom"
  7231. type="20" >
  7232. <productMenuType version="2.9.9"
  7233. type="10"
  7234. />
  7235. </productMenu>
  7236. <productMenu id="meshIntercom+"
  7237. type="3"
  7238. url="2" >
  7239. <productMenuType version="3.4.9"
  7240. type="2"
  7241. />
  7242. <productMenuType version="2.9.9"
  7243. type="1"
  7244. />
  7245. <productMenuURL version="3.3.1"
  7246. url="0"
  7247. />
  7248. </productMenu>
  7249. <productMenu id="bluetoothIntercom"
  7250. type="1" >
  7251. </productMenu>
  7252. <productMenu id="phone"
  7253. type="1" >
  7254. </productMenu>
  7255. <productMenu id="music"
  7256. type="1" >
  7257. </productMenu>
  7258. <productMenu id="fmradio"
  7259. type="1" >
  7260. </productMenu>
  7261. <productMenu id="deviceSetting"
  7262. type="1"
  7263. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  7264. <productMenuURL version="3.4.9"
  7265. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  7266. />
  7267. <productMenuURL version="3.3.1"
  7268. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  7269. />
  7270. <productMenuURL version="3.0.1"
  7271. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  7272. />
  7273. <productMenuURL version="2.3.1"
  7274. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  7275. />
  7276. <productMenuURL version="2.0"
  7277. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  7278. />
  7279. <productMenuURL version="1.0.3"
  7280. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  7281. />
  7282. </productMenu>
  7283. <productMenu id="quickGuide"
  7284. type="0"
  7285. url=""
  7286. size="1.06MB" >
  7287. </productMenu>
  7288. <productMenu id="userGuide"
  7289. type="1"
  7290. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  7291. size="3.15MB" >
  7292. </productMenu>
  7293. <productMenu id="volume"
  7294. type="1" >
  7295. </productMenu>
  7296. <productID id="3110"
  7297. />
  7298. <productGroupable type="0"
  7299. />
  7300. </product>
  7301. <product id="FURY"
  7302. name="FURY"
  7303. series="Helmet"
  7304. latestVersion="1.0"
  7305. show = "-1" >
  7306. <productMenu id="protocol"
  7307. type="2" >
  7308. </productMenu>
  7309. <productMenu id="alexa"
  7310. type="0" >
  7311. </productMenu>
  7312. <productMenu id="ota"
  7313. type="0" >
  7314. </productMenu>
  7315. <productMenu id="wa"
  7316. type="0" >
  7317. </productMenu>
  7318. <productMenu id="meshIntercom"
  7319. type="20" >
  7320. </productMenu>
  7321. <productMenu id="phone"
  7322. type="1" >
  7323. </productMenu>
  7324. <productMenu id="music"
  7325. type="1" >
  7326. </productMenu>
  7327. <productMenu id="fmradio"
  7328. type="1" >
  7329. </productMenu>
  7330. <productMenu id="deviceSetting"
  7331. type="1"
  7332. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  7333. </productMenu>
  7334. <productMenu id="quickGuide"
  7335. type="1"
  7336. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7337. size="1.12MB" >
  7338. </productMenu>
  7339. <productMenu id="userGuide"
  7340. type="1"
  7341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7342. size="2.0MB" >
  7343. </productMenu>
  7344. <productMenu id="volume"
  7345. type="13" >
  7346. </productMenu>
  7347. <productMenu id="battery"
  7348. type="1" >
  7349. </productMenu>
  7350. <productID id="5552"
  7351. />
  7352. <productGroupable type="0"
  7353. />
  7354. </product>
  7355. <product id="MomentumM"
  7356. name="Momentum EVO"
  7357. series="Helmet"
  7358. latestVersion="2.1.2"
  7359. show = "1" >
  7360. <productMenu id="protocol"
  7361. type="1"
  7362. url="0">
  7363. </productMenu>
  7364. <productMenu id="wa"
  7365. type="3" >
  7366. </productMenu>
  7367. <productMenu id="sip"
  7368. type="1" >
  7369. </productMenu>
  7370. <productMenu id="meshIntercom"
  7371. type="20" >
  7372. <productMenuType version="1.9.9"
  7373. type="10"
  7374. />
  7375. </productMenu>
  7376. <productMenu id="bluetoothIntercom"
  7377. type="1" >
  7378. </productMenu>
  7379. <productMenu id="phone"
  7380. type="1" >
  7381. </productMenu>
  7382. <productMenu id="music"
  7383. type="1" >
  7384. </productMenu>
  7385. <productMenu id="fmradio"
  7386. type="1" >
  7387. </productMenu>
  7388. <productMenu id="deviceSetting"
  7389. type="1"
  7390. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  7391. <productMenuURL version="1.0.1"
  7392. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  7393. />
  7394. </productMenu>
  7395. <productMenu id="quickGuide"
  7396. type="1"
  7397. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  7398. size="1.06MB" >
  7399. </productMenu>
  7400. <productMenu id="userGuide"
  7401. type="1"
  7402. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  7403. size="3.15MB" >
  7404. </productMenu>
  7405. <productMenu id="connectGuide"
  7406. type="1"
  7407. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  7408. size="1.12MB" >
  7409. </productMenu>
  7410. <productMenu id="volume"
  7411. type="2" >
  7412. </productMenu>
  7413. <productID id="3116"
  7414. />
  7415. <productGroupable type="0"
  7416. />
  7417. </product>
  7418. <product id="Momentum"
  7419. name="Momentum"
  7420. series="Helmet"
  7421. latestVersion="1.0.9"
  7422. show = "1" >
  7423. <productMenu id="protocol"
  7424. type="0">
  7425. </productMenu>
  7426. <productMenu id="sip"
  7427. type="1" >
  7428. </productMenu>
  7429. <productMenu id="bluetoothIntercom"
  7430. type="1" >
  7431. </productMenu>
  7432. <productMenu id="intercomSetting"
  7433. type="1" >
  7434. </productMenu>
  7435. <productMenu id="phone"
  7436. type="2" >
  7437. </productMenu>
  7438. <productMenu id="fmradio"
  7439. type="3" >
  7440. </productMenu>
  7441. <productMenu id="deviceSetting"
  7442. type="1"
  7443. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7444. </productMenu>
  7445. <productMenu id="quickGuide"
  7446. type="1"
  7447. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  7448. size="796KB" >
  7449. </productMenu>
  7450. <productMenu id="userGuide"
  7451. type="1"
  7452. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  7453. size="1.90MB" >
  7454. </productMenu>
  7455. <productMenu id="connectGuide"
  7456. type="1"
  7457. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7458. size="1.12MB" >
  7459. </productMenu>
  7460. <productID id="4310"
  7461. />
  7462. <productGroupable type="1"
  7463. />
  7464. </product>
  7465. <product id="Momentum_Pro"
  7466. name="Momentum Pro"
  7467. series="Helmet"
  7468. latestVersion="1.0.6"
  7469. show = "1" >
  7470. <productMenu id="protocol"
  7471. type="0">
  7472. </productMenu>
  7473. <productMenu id="sip"
  7474. type="1" >
  7475. </productMenu>
  7476. <productMenu id="bluetoothIntercom"
  7477. type="1" >
  7478. </productMenu>
  7479. <productMenu id="intercomSetting"
  7480. type="1" >
  7481. </productMenu>
  7482. <productMenu id="phone"
  7483. type="2" >
  7484. </productMenu>
  7485. <productMenu id="fmradio"
  7486. type="3" >
  7487. </productMenu>
  7488. <productMenu id="deviceSetting"
  7489. type="1"
  7490. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  7491. </productMenu>
  7492. <productMenu id="quickGuide"
  7493. type="1"
  7494. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  7495. size="796KB" >
  7496. </productMenu>
  7497. <productMenu id="userGuide"
  7498. type="1"
  7499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  7500. size="1.90MB" >
  7501. </productMenu>
  7502. <productMenu id="connectGuide"
  7503. type="1"
  7504. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7505. size="1.12MB" >
  7506. </productMenu>
  7507. <productID id="4330"
  7508. />
  7509. <productGroupable type="1"
  7510. />
  7511. </product>
  7512. <product id="Momentum_INC"
  7513. name="Momentum INC"
  7514. series="Helmet"
  7515. latestVersion="1.0.7"
  7516. show = "1" >
  7517. <productMenu id="protocol"
  7518. type="0">
  7519. </productMenu>
  7520. <productMenu id="sip"
  7521. type="1" >
  7522. </productMenu>
  7523. <productMenu id="bluetoothIntercom"
  7524. type="1" >
  7525. </productMenu>
  7526. <productMenu id="intercomSetting"
  7527. type="1" >
  7528. </productMenu>
  7529. <productMenu id="phone"
  7530. type="2" >
  7531. </productMenu>
  7532. <productMenu id="fmradio"
  7533. type="3" >
  7534. </productMenu>
  7535. <productMenu id="deviceSetting"
  7536. type="1"
  7537. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7538. </productMenu>
  7539. <productMenu id="quickGuide"
  7540. type="1"
  7541. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  7542. size="794KB" >
  7543. </productMenu>
  7544. <productMenu id="userGuide"
  7545. type="1"
  7546. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  7547. size="1.53MB" >
  7548. </productMenu>
  7549. <productMenu id="connectGuide"
  7550. type="1"
  7551. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7552. size="1.12MB" >
  7553. </productMenu>
  7554. <productID id="4410"
  7555. />
  7556. <productGroupable type="1"
  7557. />
  7558. </product>
  7559. <product id="Momentum_INCP"
  7560. name="Momentum INC Pro"
  7561. series="Helmet"
  7562. latestVersion="1.0.4"
  7563. show = "1" >
  7564. <productMenu id="protocol"
  7565. type="0">
  7566. </productMenu>
  7567. <productMenu id="sip"
  7568. type="1" >
  7569. </productMenu>
  7570. <productMenu id="bluetoothIntercom"
  7571. type="1" >
  7572. </productMenu>
  7573. <productMenu id="intercomSetting"
  7574. type="1" >
  7575. </productMenu>
  7576. <productMenu id="phone"
  7577. type="2" >
  7578. </productMenu>
  7579. <productMenu id="fmradio"
  7580. type="3" >
  7581. </productMenu>
  7582. <productMenu id="deviceSetting"
  7583. type="1"
  7584. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  7585. </productMenu>
  7586. <productMenu id="quickGuide"
  7587. type="1"
  7588. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  7589. size="794KB" >
  7590. </productMenu>
  7591. <productMenu id="userGuide"
  7592. type="1"
  7593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  7594. size="1.53MB" >
  7595. </productMenu>
  7596. <productMenu id="connectGuide"
  7597. type="1"
  7598. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  7599. size="1.12MB" >
  7600. </productMenu>
  7601. <productID id="4430"
  7602. />
  7603. <productGroupable type="1"
  7604. />
  7605. </product>
  7606. <product id="Momentum_Lite"
  7607. name="Momentum Lite"
  7608. series="Helmet"
  7609. latestVersion="2.0.3"
  7610. show = "1" >
  7611. <productMenu id="protocol"
  7612. type="0">
  7613. </productMenu>
  7614. <productMenu id="sip"
  7615. type="1" >
  7616. </productMenu>
  7617. <productMenu id="bluetoothIntercom"
  7618. type="1" >
  7619. </productMenu>
  7620. <productMenu id="phone"
  7621. type="2" >
  7622. </productMenu>
  7623. <productMenu id="fmradio"
  7624. type="3" >
  7625. </productMenu>
  7626. <productMenu id="deviceSetting"
  7627. type="1"
  7628. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7629. <productMenuURL version="1.1"
  7630. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  7631. />
  7632. </productMenu>
  7633. <productMenu id="quickGuide"
  7634. type="1"
  7635. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  7636. size="790KB" >
  7637. </productMenu>
  7638. <productMenu id="userGuide"
  7639. type="1"
  7640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  7641. size="1.42MB" >
  7642. </productMenu>
  7643. <productMenu id="connectGuide"
  7644. type="1"
  7645. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7646. size="1.12MB" >
  7647. </productMenu>
  7648. <productID id="5526"
  7649. />
  7650. <productGroupable type="0"
  7651. />
  7652. </product>
  7653. <product id="OUTRUSHM"
  7654. name="OUTRUSH M"
  7655. series="Helmet"
  7656. latestVersion="1.0"
  7657. show = "-1" >
  7658. <productMenu id="protocol"
  7659. type="2" >
  7660. </productMenu>
  7661. <productMenu id="alexa"
  7662. type="0" >
  7663. </productMenu>
  7664. <productMenu id="ota"
  7665. type="0" >
  7666. </productMenu>
  7667. <productMenu id="wa"
  7668. type="0" >
  7669. </productMenu>
  7670. <productMenu id="meshIntercom"
  7671. type="30" >
  7672. </productMenu>
  7673. <productMenu id="phone"
  7674. type="1" >
  7675. </productMenu>
  7676. <productMenu id="music"
  7677. type="1" >
  7678. </productMenu>
  7679. <productMenu id="fmradio"
  7680. type="1" >
  7681. </productMenu>
  7682. <productMenu id="deviceSetting"
  7683. type="1"
  7684. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  7685. </productMenu>
  7686. <productMenu id="quickGuide"
  7687. type="1"
  7688. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7689. size="1.12MB" >
  7690. </productMenu>
  7691. <productMenu id="userGuide"
  7692. type="1"
  7693. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7694. size="2.0MB" >
  7695. </productMenu>
  7696. <productMenu id="volume"
  7697. type="13" >
  7698. </productMenu>
  7699. <productMenu id="battery"
  7700. type="1" >
  7701. </productMenu>
  7702. <productID id="5600"
  7703. />
  7704. <productGroupable type="0"
  7705. />
  7706. </product>
  7707. <product id="ProRideEVO"
  7708. name="ProRide EVO"
  7709. series="Helmet"
  7710. latestVersion="1.1.2"
  7711. show = "1" >
  7712. <productMenu id="protocol"
  7713. type="0">
  7714. </productMenu>
  7715. <productMenu id="sip"
  7716. type="1" >
  7717. </productMenu>
  7718. <productMenu id="bluetoothIntercom"
  7719. type="1" >
  7720. </productMenu>
  7721. <productMenu id="phone"
  7722. type="2" >
  7723. </productMenu>
  7724. <productMenu id="fmradio"
  7725. type="3" >
  7726. </productMenu>
  7727. <productMenu id="deviceSetting"
  7728. type="1"
  7729. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  7730. </productMenu>
  7731. <productMenu id="userGuide"
  7732. type="1"
  7733. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  7734. size="778KB" >
  7735. </productMenu>
  7736. <productMenu id="connectGuide"
  7737. type="1"
  7738. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7739. size="1.12MB" >
  7740. </productMenu>
  7741. <productID id="5426"
  7742. />
  7743. <productGroupable type="0"
  7744. />
  7745. </product>
  7746. <product id="OUTRUSHR"
  7747. name="OUTRUSH R"
  7748. series="Helmet"
  7749. latestVersion="2.1"
  7750. show = "1" >
  7751. <productMenu id="protocol"
  7752. type="3" >
  7753. </productMenu>
  7754. <productMenu id="sip"
  7755. type="1" >
  7756. </productMenu>
  7757. <productMenu id="bluetoothIntercom"
  7758. type="1" >
  7759. </productMenu>
  7760. <productMenu id="phone"
  7761. type="1" >
  7762. </productMenu>
  7763. <productMenu id="fmradio"
  7764. type="0" >
  7765. </productMenu>
  7766. <productMenu id="deviceSetting"
  7767. type="1"
  7768. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7769. </productMenu>
  7770. <productMenu id="userGuide"
  7771. type="1"
  7772. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  7773. size="1.14MB" >
  7774. </productMenu>
  7775. <productMenu id="connectGuide"
  7776. type="1"
  7777. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7778. size="1.12MB" >
  7779. </productMenu>
  7780. <productID id="5440"
  7781. />
  7782. <productGroupable type="0"
  7783. />
  7784. </product>
  7785. <product id="OUTRUSHR"
  7786. name="OUTRUSH R"
  7787. series="Helmet"
  7788. latestVersion="1.1.4"
  7789. show = "-1" >
  7790. <productMenu id="protocol"
  7791. type="0">
  7792. </productMenu>
  7793. <productMenu id="sip"
  7794. type="1" >
  7795. </productMenu>
  7796. <productMenu id="bluetoothIntercom"
  7797. type="1" >
  7798. </productMenu>
  7799. <productMenu id="phone"
  7800. type="2" >
  7801. </productMenu>
  7802. <productMenu id="fmradio"
  7803. type="3" >
  7804. </productMenu>
  7805. <productMenu id="deviceSetting"
  7806. type="1"
  7807. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7808. </productMenu>
  7809. <productMenu id="userGuide"
  7810. type="1"
  7811. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7812. size="660KB" >
  7813. </productMenu>
  7814. <productMenu id="connectGuide"
  7815. type="1"
  7816. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7817. size="1.12MB" >
  7818. </productMenu>
  7819. <productID id="5424"
  7820. />
  7821. <productGroupable type="0"
  7822. />
  7823. </product>
  7824. <product id="OUTSTARS"
  7825. name="OUTSTAR S"
  7826. series="Helmet"
  7827. latestVersion="2.0.1"
  7828. show = "-1" >
  7829. <productMenu id="protocol"
  7830. type="3" >
  7831. </productMenu>
  7832. <productMenu id="sip"
  7833. type="1" >
  7834. </productMenu>
  7835. <productMenu id="bluetoothIntercom"
  7836. type="1" >
  7837. </productMenu>
  7838. <productMenu id="phone"
  7839. type="1" >
  7840. </productMenu>
  7841. <productMenu id="fmradio"
  7842. type="0" >
  7843. </productMenu>
  7844. <productMenu id="deviceSetting"
  7845. type="1"
  7846. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7847. </productMenu>
  7848. <productMenu id="userGuide"
  7849. type="0"
  7850. url=""
  7851. size="1.14MB" >
  7852. </productMenu>
  7853. <productID id="5443"
  7854. />
  7855. <productGroupable type="0"
  7856. />
  7857. </product>
  7858. <product id="OUTSTARS"
  7859. name="OUTSTAR S"
  7860. series="Helmet"
  7861. latestVersion="1.1.4"
  7862. show = "1" >
  7863. <productMenu id="protocol"
  7864. type="0">
  7865. </productMenu>
  7866. <productMenu id="sip"
  7867. type="1" >
  7868. </productMenu>
  7869. <productMenu id="bluetoothIntercom"
  7870. type="1" >
  7871. </productMenu>
  7872. <productMenu id="phone"
  7873. type="2" >
  7874. </productMenu>
  7875. <productMenu id="fmradio"
  7876. type="3" >
  7877. </productMenu>
  7878. <productMenu id="deviceSetting"
  7879. type="1"
  7880. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7881. </productMenu>
  7882. <productMenu id="quickGuide"
  7883. type="1"
  7884. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7885. size="643KB" >
  7886. </productMenu>
  7887. <productMenu id="userGuide"
  7888. type="1"
  7889. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7890. size="1.15MB" >
  7891. </productMenu>
  7892. <productMenu id="connectGuide"
  7893. type="1"
  7894. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7895. size="1.12MB" >
  7896. </productMenu>
  7897. <productID id="5428"
  7898. />
  7899. <productGroupable type="0"
  7900. />
  7901. </product>
  7902. <product id="OUTRIDE"
  7903. name="OUTRIDE"
  7904. series="Helmet"
  7905. latestVersion="1.0.1"
  7906. show = "1" >
  7907. <productMenu id="protocol"
  7908. type="0">
  7909. </productMenu>
  7910. <productMenu id="sip"
  7911. type="1" >
  7912. </productMenu>
  7913. <productMenu id="bluetoothIntercom"
  7914. type="1" >
  7915. </productMenu>
  7916. <productMenu id="phone"
  7917. type="2" >
  7918. </productMenu>
  7919. <productMenu id="fmradio"
  7920. type="3" >
  7921. </productMenu>
  7922. <productMenu id="deviceSetting"
  7923. type="1"
  7924. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7925. </productMenu>
  7926. <productMenu id="quickGuide"
  7927. type="1"
  7928. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7929. size="643KB" >
  7930. </productMenu>
  7931. <productMenu id="userGuide"
  7932. type="1"
  7933. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7934. size="660KB" >
  7935. </productMenu>
  7936. <productMenu id="connectGuide"
  7937. type="1"
  7938. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7939. size="1.12MB" >
  7940. </productMenu>
  7941. <productID id="5432"
  7942. />
  7943. <productGroupable type="0"
  7944. />
  7945. </product>
  7946. <product id="OUTFORCE"
  7947. name="OUTFORCE"
  7948. series="Helmet"
  7949. latestVersion="1.0.1"
  7950. show = "1" >
  7951. <productMenu id="protocol"
  7952. type="0">
  7953. </productMenu>
  7954. <productMenu id="sip"
  7955. type="1" >
  7956. </productMenu>
  7957. <productMenu id="bluetoothIntercom"
  7958. type="1" >
  7959. </productMenu>
  7960. <productMenu id="phone"
  7961. type="2" >
  7962. </productMenu>
  7963. <productMenu id="fmradio"
  7964. type="3" >
  7965. </productMenu>
  7966. <productMenu id="deviceSetting"
  7967. type="1"
  7968. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7969. </productMenu>
  7970. <productMenu id="quickGuide"
  7971. type="1"
  7972. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7973. size="643KB" >
  7974. </productMenu>
  7975. <productMenu id="userGuide"
  7976. type="1"
  7977. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7978. size="660KB" >
  7979. </productMenu>
  7980. <productMenu id="connectGuide"
  7981. type="1"
  7982. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7983. size="1.12MB" >
  7984. </productMenu>
  7985. <productID id="5430"
  7986. />
  7987. <productGroupable type="0"
  7988. />
  7989. </product>
  7990. <product id="Rumba"
  7991. name="Rumba"
  7992. series="30"
  7993. latestVersion="2.0"
  7994. show = "-1" >
  7995. <productMenu id="protocol"
  7996. type="3" >
  7997. </productMenu>
  7998. <productMenu id="sip"
  7999. type="1" >
  8000. </productMenu>
  8001. <productMenu id="bluetoothIntercom"
  8002. type="1" >
  8003. </productMenu>
  8004. <productMenu id="deviceSetting"
  8005. type="1"
  8006. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  8007. </productMenu>
  8008. <productMenu id="quickGuide"
  8009. type="1"
  8010. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  8011. size="344KB" >
  8012. </productMenu>
  8013. <productMenu id="userGuide"
  8014. type="1"
  8015. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  8016. size="1.14MB" >
  8017. </productMenu>
  8018. <productID id="6322"
  8019. />
  8020. <productGroupable type="0"
  8021. />
  8022. </product>
  8023. <product id="Savage"
  8024. name="Savage"
  8025. series="Helmet"
  8026. latestVersion="1.2.2"
  8027. show = "1" >
  8028. <productMenu id="protocol"
  8029. type="0">
  8030. </productMenu>
  8031. <productMenu id="sip"
  8032. type="1" >
  8033. </productMenu>
  8034. <productMenu id="bluetoothIntercom"
  8035. type="1" >
  8036. </productMenu>
  8037. <productMenu id="phone"
  8038. type="2" >
  8039. </productMenu>
  8040. <productMenu id="fmradio"
  8041. type="3" >
  8042. </productMenu>
  8043. <productMenu id="deviceSetting"
  8044. type="1"
  8045. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  8046. <productMenuURL version="1.9"
  8047. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  8048. />
  8049. <productMenuURL version="1.1"
  8050. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  8051. />
  8052. </productMenu>
  8053. <productMenu id="quickGuide"
  8054. type="1"
  8055. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  8056. size="796KB" >
  8057. </productMenu>
  8058. <productMenu id="userGuide"
  8059. type="1"
  8060. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  8061. size="910KB" >
  8062. </productMenu>
  8063. <productMenu id="connectGuide"
  8064. type="1"
  8065. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8066. size="1.12MB" >
  8067. </productMenu>
  8068. <productID id="5550"
  8069. />
  8070. <productGroupable type="0"
  8071. />
  8072. </product>
  8073. <product id="RECON"
  8074. name="RECON"
  8075. series="Helmet"
  8076. latestVersion="1.0"
  8077. latestVersionVoicePrompt="1.8"
  8078. show = "-1" >
  8079. <productMenu id="protocol"
  8080. type="2" >
  8081. </productMenu>
  8082. <productMenu id="ota"
  8083. type="2" >
  8084. <otaLanguages>
  8085. <otaLanguage
  8086. id="0"
  8087. name="English"
  8088. package="0"
  8089. />
  8090. <otaLanguage
  8091. id="0"
  8092. name="Français"
  8093. package="1"
  8094. />
  8095. <otaLanguage
  8096. id="0"
  8097. name="Español"
  8098. package="2"
  8099. />
  8100. <otaLanguage
  8101. id="0"
  8102. name="Italiano"
  8103. package="3"
  8104. />
  8105. <otaLanguage
  8106. id="0"
  8107. name="Deutsch"
  8108. package="4"
  8109. />
  8110. <otaLanguage
  8111. id="0"
  8112. name="Nederlands"
  8113. package="5"
  8114. />
  8115. <otaLanguage
  8116. id="0"
  8117. name="Русский"
  8118. package="6"
  8119. />
  8120. <otaLanguage
  8121. id="0"
  8122. name="简体中文"
  8123. package="7"
  8124. />
  8125. <otaLanguage
  8126. id="0"
  8127. name="한국어"
  8128. package="8"
  8129. />
  8130. <otaLanguage
  8131. id="0"
  8132. name="日本語"
  8133. package="9"
  8134. />
  8135. <otaLanguage
  8136. id="0"
  8137. name="Suomi"
  8138. package="10"
  8139. />
  8140. <otaLanguage
  8141. id="0"
  8142. name="Polski"
  8143. package="11"
  8144. />
  8145. </otaLanguages>
  8146. <otaPackages>
  8147. <package
  8148. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  8149. size="5183988"
  8150. />
  8151. <package
  8152. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  8153. size="5183988"
  8154. />
  8155. <package
  8156. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  8157. size="5183988"
  8158. />
  8159. <package
  8160. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  8161. size="5183988"
  8162. />
  8163. <package
  8164. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  8165. size="5183988"
  8166. />
  8167. <package
  8168. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  8169. size="5183988"
  8170. />
  8171. <package
  8172. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  8173. size="5183988"
  8174. />
  8175. <package
  8176. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  8177. size="5183988"
  8178. />
  8179. <package
  8180. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  8181. size="5183988"
  8182. />
  8183. <package
  8184. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  8185. size="5183988"
  8186. />
  8187. <package
  8188. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  8189. size="5183988"
  8190. />
  8191. <package
  8192. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  8193. size="5183988"
  8194. />
  8195. </otaPackages>
  8196. </productMenu>
  8197. <productMenu id="wa"
  8198. type="0" >
  8199. </productMenu>
  8200. <productMenu id="led"
  8201. type="5" >
  8202. </productMenu>
  8203. <productMenu id="led+"
  8204. type="2"
  8205. url="1" >
  8206. </productMenu>
  8207. <productMenu id="meshIntercom+"
  8208. type="3"
  8209. url="2" >
  8210. </productMenu>
  8211. <productMenu id="waveIntercom"
  8212. type="1" >
  8213. </productMenu>
  8214. <productMenu id="fmradio"
  8215. type="0" >
  8216. </productMenu>
  8217. <productMenu id="phone"
  8218. type="1" >
  8219. </productMenu>
  8220. <productMenu id="music"
  8221. type="1" >
  8222. </productMenu>
  8223. <productMenu id="musicSharing"
  8224. type="0" >
  8225. </productMenu>
  8226. <productMenu id="deviceSetting"
  8227. type="1"
  8228. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  8229. </productMenu>
  8230. <productMenu id="quickGuide"
  8231. type="0"
  8232. url=""
  8233. size="1.12MB" >
  8234. </productMenu>
  8235. <productMenu id="userGuide"
  8236. type="1"
  8237. url=""
  8238. size="2.28MB" >
  8239. </productMenu>
  8240. <productMenu id="videoGuide"
  8241. type="0"
  8242. url=""
  8243. size="3.41MB" >
  8244. </productMenu>
  8245. <productMenu id="volume"
  8246. type="16" >
  8247. </productMenu>
  8248. <productMenu id="volume+"
  8249. type="2"
  8250. url="0x6004" >
  8251. </productMenu>
  8252. <productMenu id="battery"
  8253. type="1" >
  8254. </productMenu>
  8255. <productID id="6A1D"
  8256. />
  8257. <productGroupable type="0"
  8258. />
  8259. </product>
  8260. <product id="SPECTER"
  8261. name="SPECTER"
  8262. series="Helmet"
  8263. latestVersion="1.0.11"
  8264. latestVersionVoicePrompt="1.8"
  8265. show = "1" >
  8266. <productMenu id="protocol"
  8267. type="2" >
  8268. </productMenu>
  8269. <productMenu id="ota"
  8270. type="2" >
  8271. <otaLanguages>
  8272. <otaLanguage
  8273. id="0"
  8274. name="English"
  8275. package="0"
  8276. />
  8277. <otaLanguage
  8278. id="0"
  8279. name="Français"
  8280. package="1"
  8281. />
  8282. <otaLanguage
  8283. id="0"
  8284. name="Español"
  8285. package="2"
  8286. />
  8287. <otaLanguage
  8288. id="0"
  8289. name="Italiano"
  8290. package="3"
  8291. />
  8292. <otaLanguage
  8293. id="0"
  8294. name="Deutsch"
  8295. package="4"
  8296. />
  8297. <otaLanguage
  8298. id="0"
  8299. name="Nederlands"
  8300. package="5"
  8301. />
  8302. <otaLanguage
  8303. id="0"
  8304. name="Русский"
  8305. package="6"
  8306. />
  8307. <otaLanguage
  8308. id="0"
  8309. name="简体中文"
  8310. package="7"
  8311. />
  8312. <otaLanguage
  8313. id="0"
  8314. name="한국어"
  8315. package="8"
  8316. />
  8317. <otaLanguage
  8318. id="0"
  8319. name="日本語"
  8320. package="9"
  8321. />
  8322. <otaLanguage
  8323. id="0"
  8324. name="Suomi"
  8325. package="10"
  8326. />
  8327. <otaLanguage
  8328. id="0"
  8329. name="Polski"
  8330. package="11"
  8331. />
  8332. </otaLanguages>
  8333. <otaPackages>
  8334. <package
  8335. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0.img"
  8336. size="5183988"
  8337. />
  8338. <package
  8339. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-fr-FR.img"
  8340. size="5183988"
  8341. />
  8342. <package
  8343. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-es-ES.img"
  8344. size="5183988"
  8345. />
  8346. <package
  8347. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-it-IT.img"
  8348. size="5183988"
  8349. />
  8350. <package
  8351. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-de-DE.img"
  8352. size="5183988"
  8353. />
  8354. <package
  8355. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-nl-NL.img"
  8356. size="5183988"
  8357. />
  8358. <package
  8359. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ru-RU.img"
  8360. size="5183988"
  8361. />
  8362. <package
  8363. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-cmn-CN.img"
  8364. size="5183988"
  8365. />
  8366. <package
  8367. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ko-KR.img"
  8368. size="5183988"
  8369. />
  8370. <package
  8371. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-ja-JP.img"
  8372. size="5183988"
  8373. />
  8374. <package
  8375. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-fi-FI.img"
  8376. size="5183988"
  8377. />
  8378. <package
  8379. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.11-build0-pl-PL.img"
  8380. size="5183988"
  8381. />
  8382. </otaPackages>
  8383. </productMenu>
  8384. <productMenu id="wa"
  8385. type="0" >
  8386. </productMenu>
  8387. <productMenu id="led"
  8388. type="5" >
  8389. </productMenu>
  8390. <productMenu id="led+"
  8391. type="2"
  8392. url="1" >
  8393. </productMenu>
  8394. <productMenu id="meshIntercom+"
  8395. type="3"
  8396. url="2" >
  8397. </productMenu>
  8398. <productMenu id="waveIntercom"
  8399. type="1" >
  8400. </productMenu>
  8401. <productMenu id="fmradio"
  8402. type="0" >
  8403. </productMenu>
  8404. <productMenu id="phone"
  8405. type="1" >
  8406. </productMenu>
  8407. <productMenu id="music"
  8408. type="1" >
  8409. </productMenu>
  8410. <productMenu id="musicSharing"
  8411. type="0" >
  8412. </productMenu>
  8413. <productMenu id="deviceSetting"
  8414. type="1"
  8415. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  8416. <productMenuURL version="1.0.10"
  8417. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  8418. />
  8419. <productMenuURL version="1.0.4"
  8420. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  8421. />
  8422. </productMenu>
  8423. <productMenu id="quickGuide"
  8424. type="0"
  8425. url=""
  8426. size="1.12MB" >
  8427. </productMenu>
  8428. <productMenu id="userGuide"
  8429. type="1"
  8430. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  8431. size="2.0MB" >
  8432. </productMenu>
  8433. <productMenu id="videoGuide"
  8434. type="0"
  8435. url=""
  8436. size="3.41MB" >
  8437. </productMenu>
  8438. <productMenu id="connectGuide"
  8439. type="1"
  8440. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8441. size="1.12MB" >
  8442. </productMenu>
  8443. <productMenu id="volume"
  8444. type="16" >
  8445. </productMenu>
  8446. <productMenu id="volume+"
  8447. type="2"
  8448. url="0x6004" >
  8449. </productMenu>
  8450. <productMenu id="battery"
  8451. type="1" >
  8452. </productMenu>
  8453. <productID id="6A11"
  8454. />
  8455. <productGroupable type="0"
  8456. />
  8457. </product>
  8458. <product id="SPECTER"
  8459. name="SPECTER"
  8460. series="Helmet"
  8461. latestVersion="1.0.11"
  8462. latestVersionVoicePrompt="1.8"
  8463. show = "-1" >
  8464. <productMenu id="protocol"
  8465. type="2" >
  8466. </productMenu>
  8467. <productMenu id="ota"
  8468. type="2" >
  8469. <otaLanguages>
  8470. <otaLanguage
  8471. id="0"
  8472. name="English"
  8473. package="0"
  8474. />
  8475. <otaLanguage
  8476. id="0"
  8477. name="Français"
  8478. package="1"
  8479. />
  8480. <otaLanguage
  8481. id="0"
  8482. name="Español"
  8483. package="2"
  8484. />
  8485. <otaLanguage
  8486. id="0"
  8487. name="Italiano"
  8488. package="3"
  8489. />
  8490. <otaLanguage
  8491. id="0"
  8492. name="Deutsch"
  8493. package="4"
  8494. />
  8495. <otaLanguage
  8496. id="0"
  8497. name="Nederlands"
  8498. package="5"
  8499. />
  8500. <otaLanguage
  8501. id="0"
  8502. name="Русский"
  8503. package="6"
  8504. />
  8505. <otaLanguage
  8506. id="0"
  8507. name="简体中文"
  8508. package="7"
  8509. />
  8510. <otaLanguage
  8511. id="0"
  8512. name="한국어"
  8513. package="8"
  8514. />
  8515. <otaLanguage
  8516. id="0"
  8517. name="日本語"
  8518. package="9"
  8519. />
  8520. <otaLanguage
  8521. id="0"
  8522. name="Suomi"
  8523. package="10"
  8524. />
  8525. <otaLanguage
  8526. id="0"
  8527. name="Polski"
  8528. package="11"
  8529. />
  8530. </otaLanguages>
  8531. <otaPackages>
  8532. <package
  8533. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0.img"
  8534. size="5183988"
  8535. />
  8536. <package
  8537. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-fr-FR.img"
  8538. size="5183988"
  8539. />
  8540. <package
  8541. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-es-ES.img"
  8542. size="5183988"
  8543. />
  8544. <package
  8545. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-it-IT.img"
  8546. size="5183988"
  8547. />
  8548. <package
  8549. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-de-DE.img"
  8550. size="5183988"
  8551. />
  8552. <package
  8553. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-nl-NL.img"
  8554. size="5183988"
  8555. />
  8556. <package
  8557. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ru-RU.img"
  8558. size="5183988"
  8559. />
  8560. <package
  8561. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-cmn-CN.img"
  8562. size="5183988"
  8563. />
  8564. <package
  8565. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ko-KR.img"
  8566. size="5183988"
  8567. />
  8568. <package
  8569. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-ja-JP.img"
  8570. size="5183988"
  8571. />
  8572. <package
  8573. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-fi-FI.img"
  8574. size="5183988"
  8575. />
  8576. <package
  8577. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.11-build0-pl-PL.img"
  8578. size="5183988"
  8579. />
  8580. </otaPackages>
  8581. </productMenu>
  8582. <productMenu id="wa"
  8583. type="0" >
  8584. </productMenu>
  8585. <productMenu id="led"
  8586. type="5" >
  8587. </productMenu>
  8588. <productMenu id="led+"
  8589. type="2"
  8590. url="1" >
  8591. </productMenu>
  8592. <productMenu id="meshIntercom+"
  8593. type="3"
  8594. url="2" >
  8595. </productMenu>
  8596. <productMenu id="waveIntercom"
  8597. type="1" >
  8598. </productMenu>
  8599. <productMenu id="fmradio"
  8600. type="0" >
  8601. </productMenu>
  8602. <productMenu id="phone"
  8603. type="1" >
  8604. </productMenu>
  8605. <productMenu id="music"
  8606. type="1" >
  8607. </productMenu>
  8608. <productMenu id="musicSharing"
  8609. type="0" >
  8610. </productMenu>
  8611. <productMenu id="deviceSetting"
  8612. type="1"
  8613. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  8614. <productMenuURL version="1.0.10"
  8615. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  8616. />
  8617. <productMenuURL version="1.0.4"
  8618. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  8619. />
  8620. <productMenuURL version="1.0"
  8621. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  8622. />
  8623. </productMenu>
  8624. <productMenu id="quickGuide"
  8625. type="0"
  8626. url=""
  8627. size="1.12MB" >
  8628. </productMenu>
  8629. <productMenu id="userGuide"
  8630. type="1"
  8631. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  8632. size="2.0MB" >
  8633. </productMenu>
  8634. <productMenu id="videoGuide"
  8635. type="0"
  8636. url=""
  8637. size="3.41MB" >
  8638. </productMenu>
  8639. <productMenu id="connectGuide"
  8640. type="1"
  8641. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8642. size="1.12MB" >
  8643. </productMenu>
  8644. <productMenu id="volume"
  8645. type="16" >
  8646. </productMenu>
  8647. <productMenu id="volume+"
  8648. type="2"
  8649. url="0x6004" >
  8650. </productMenu>
  8651. <productMenu id="battery"
  8652. type="1" >
  8653. </productMenu>
  8654. <productID id="6A0A"
  8655. />
  8656. <productGroupable type="0"
  8657. />
  8658. </product>
  8659. <product id="OUTLANDER"
  8660. name="OUTLANDER"
  8661. series="Helmet"
  8662. latestVersion="1.0.11"
  8663. latestVersionVoicePrompt="1.8"
  8664. show = "1" >
  8665. <productMenu id="protocol"
  8666. type="2" >
  8667. </productMenu>
  8668. <productMenu id="ota"
  8669. type="2" >
  8670. <otaLanguages>
  8671. <otaLanguage
  8672. id="0"
  8673. name="English"
  8674. package="0"
  8675. />
  8676. <otaLanguage
  8677. id="0"
  8678. name="Français"
  8679. package="1"
  8680. />
  8681. <otaLanguage
  8682. id="0"
  8683. name="Español"
  8684. package="2"
  8685. />
  8686. <otaLanguage
  8687. id="0"
  8688. name="Italiano"
  8689. package="3"
  8690. />
  8691. <otaLanguage
  8692. id="0"
  8693. name="Deutsch"
  8694. package="4"
  8695. />
  8696. <otaLanguage
  8697. id="0"
  8698. name="Nederlands"
  8699. package="5"
  8700. />
  8701. <otaLanguage
  8702. id="0"
  8703. name="Русский"
  8704. package="6"
  8705. />
  8706. <otaLanguage
  8707. id="0"
  8708. name="简体中文"
  8709. package="7"
  8710. />
  8711. <otaLanguage
  8712. id="0"
  8713. name="한국어"
  8714. package="8"
  8715. />
  8716. <otaLanguage
  8717. id="0"
  8718. name="日本語"
  8719. package="9"
  8720. />
  8721. <otaLanguage
  8722. id="0"
  8723. name="Suomi"
  8724. package="10"
  8725. />
  8726. <otaLanguage
  8727. id="0"
  8728. name="Polski"
  8729. package="11"
  8730. />
  8731. </otaLanguages>
  8732. <otaPackages>
  8733. <package
  8734. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0.img"
  8735. size="5183988"
  8736. />
  8737. <package
  8738. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-fr-FR.img"
  8739. size="5183988"
  8740. />
  8741. <package
  8742. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-es-ES.img"
  8743. size="5183988"
  8744. />
  8745. <package
  8746. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-it-IT.img"
  8747. size="5183988"
  8748. />
  8749. <package
  8750. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-de-DE.img"
  8751. size="5183988"
  8752. />
  8753. <package
  8754. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-nl-NL.img"
  8755. size="5183988"
  8756. />
  8757. <package
  8758. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ru-RU.img"
  8759. size="5183988"
  8760. />
  8761. <package
  8762. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-cmn-CN.img"
  8763. size="5183988"
  8764. />
  8765. <package
  8766. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ko-KR.img"
  8767. size="5183988"
  8768. />
  8769. <package
  8770. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-ja-JP.img"
  8771. size="5183988"
  8772. />
  8773. <package
  8774. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-fi-FI.img"
  8775. size="5183988"
  8776. />
  8777. <package
  8778. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.11-build0-pl-PL.img"
  8779. size="5183988"
  8780. />
  8781. </otaPackages>
  8782. </productMenu>
  8783. <productMenu id="wa"
  8784. type="0" >
  8785. </productMenu>
  8786. <productMenu id="led"
  8787. type="5" >
  8788. </productMenu>
  8789. <productMenu id="led+"
  8790. type="2"
  8791. url="1" >
  8792. </productMenu>
  8793. <productMenu id="meshIntercom+"
  8794. type="3"
  8795. url="2" >
  8796. </productMenu>
  8797. <productMenu id="waveIntercom"
  8798. type="1" >
  8799. </productMenu>
  8800. <productMenu id="fmradio"
  8801. type="0" >
  8802. </productMenu>
  8803. <productMenu id="phone"
  8804. type="1" >
  8805. </productMenu>
  8806. <productMenu id="music"
  8807. type="1" >
  8808. </productMenu>
  8809. <productMenu id="musicSharing"
  8810. type="0" >
  8811. </productMenu>
  8812. <productMenu id="deviceSetting"
  8813. type="1"
  8814. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  8815. <productMenuURL version="1.0.10"
  8816. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  8817. />
  8818. <productMenuURL version="1.0.4"
  8819. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  8820. />
  8821. </productMenu>
  8822. <productMenu id="quickGuide"
  8823. type="0"
  8824. url=""
  8825. size="1.12MB" >
  8826. </productMenu>
  8827. <productMenu id="userGuide"
  8828. type="1"
  8829. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  8830. size="2.0MB" >
  8831. </productMenu>
  8832. <productMenu id="connectGuide"
  8833. type="1"
  8834. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  8835. size="1.12MB" >
  8836. </productMenu>
  8837. <productMenu id="videoGuide"
  8838. type="0"
  8839. url=""
  8840. size="3.41MB" >
  8841. </productMenu>
  8842. <productMenu id="volume"
  8843. type="16" >
  8844. </productMenu>
  8845. <productMenu id="volume+"
  8846. type="2"
  8847. url="0x6004" >
  8848. </productMenu>
  8849. <productMenu id="battery"
  8850. type="1" >
  8851. </productMenu>
  8852. <productID id="6A05"
  8853. />
  8854. <productGroupable type="0"
  8855. />
  8856. </product>
  8857. <product id="OUTRUSH2"
  8858. name="OUTRUSH 2"
  8859. series="Helmet"
  8860. latestVersion="1.0.3"
  8861. latestVersionVoicePrompt="1.6"
  8862. show = "1" >
  8863. <productMenu id="protocol"
  8864. type="2" >
  8865. </productMenu>
  8866. <productMenu id="alexa"
  8867. type="0" >
  8868. </productMenu>
  8869. <productMenu id="ota"
  8870. type="2" >
  8871. <otaPackages>
  8872. <package
  8873. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8874. size="2945812"
  8875. />
  8876. </otaPackages>
  8877. </productMenu>
  8878. <productMenu id="meshIntercom+"
  8879. type="3"
  8880. url="2" >
  8881. </productMenu>
  8882. <productMenu id="waveIntercom"
  8883. type="1" >
  8884. </productMenu>
  8885. <productMenu id="phone"
  8886. type="1" >
  8887. </productMenu>
  8888. <productMenu id="music"
  8889. type="1" >
  8890. </productMenu>
  8891. <productMenu id="musicSharing"
  8892. type="0" >
  8893. </productMenu>
  8894. <productMenu id="deviceSetting"
  8895. type="1"
  8896. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8897. <productMenuURL version="1.0"
  8898. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8899. />
  8900. </productMenu>
  8901. <productMenu id="quickGuide"
  8902. type="0"
  8903. url=""
  8904. size="1.12MB" >
  8905. </productMenu>
  8906. <productMenu id="userGuide"
  8907. type="1"
  8908. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8909. size="2.0MB" >
  8910. </productMenu>
  8911. <productMenu id="connectGuide"
  8912. type="1"
  8913. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8914. size="1.12MB" >
  8915. </productMenu>
  8916. <productMenu id="volume"
  8917. type="12" >
  8918. </productMenu>
  8919. <productMenu id="battery"
  8920. type="1" >
  8921. </productMenu>
  8922. <productID id="684A"
  8923. />
  8924. <productGroupable type="0"
  8925. />
  8926. </product>
  8927. <product id="OUTSTAR2"
  8928. name="OUTSTAR 2"
  8929. series="Helmet"
  8930. latestVersion="1.0.2"
  8931. latestVersionVoicePrompt="1.6"
  8932. show = "1" >
  8933. <productMenu id="protocol"
  8934. type="2" >
  8935. </productMenu>
  8936. <productMenu id="alexa"
  8937. type="0" >
  8938. </productMenu>
  8939. <productMenu id="ota"
  8940. type="2" >
  8941. <otaPackages>
  8942. <package
  8943. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8944. size="2945812"
  8945. />
  8946. </otaPackages>
  8947. </productMenu>
  8948. <productMenu id="meshIntercom+"
  8949. type="3"
  8950. url="2" >
  8951. </productMenu>
  8952. <productMenu id="waveIntercom"
  8953. type="1" >
  8954. </productMenu>
  8955. <productMenu id="phone"
  8956. type="1" >
  8957. </productMenu>
  8958. <productMenu id="music"
  8959. type="1" >
  8960. </productMenu>
  8961. <productMenu id="musicSharing"
  8962. type="0" >
  8963. </productMenu>
  8964. <productMenu id="deviceSetting"
  8965. type="1"
  8966. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8967. </productMenu>
  8968. <productMenu id="quickGuide"
  8969. type="0"
  8970. url=""
  8971. size="1.12MB" >
  8972. </productMenu>
  8973. <productMenu id="userGuide"
  8974. type="1"
  8975. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8976. size="2.0MB" >
  8977. </productMenu>
  8978. <productMenu id="connectGuide"
  8979. type="1"
  8980. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8981. size="1.12MB" >
  8982. </productMenu>
  8983. <productMenu id="volume"
  8984. type="12" >
  8985. </productMenu>
  8986. <productMenu id="battery"
  8987. type="1" >
  8988. </productMenu>
  8989. <productID id="684B"
  8990. />
  8991. <productGroupable type="0"
  8992. />
  8993. </product>
  8994. <product id="SURGE"
  8995. name="SURGE"
  8996. series="Helmet"
  8997. latestVersion="1.2"
  8998. latestVersionVoicePrompt="1.3"
  8999. show = "1" >
  9000. <productMenu id="protocol"
  9001. type="2" >
  9002. </productMenu>
  9003. <productMenu id="alexa"
  9004. type="0" >
  9005. </productMenu>
  9006. <productMenu id="ota"
  9007. type="2" >
  9008. <otaPackages>
  9009. <package
  9010. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  9011. size="2945812"
  9012. />
  9013. </otaPackages>
  9014. </productMenu>
  9015. <productMenu id="meshIntercom"
  9016. type="30" >
  9017. </productMenu>
  9018. <productMenu id="meshIntercom+"
  9019. type="3"
  9020. url="2" >
  9021. <productMenuType version="1.0.1"
  9022. type="2"
  9023. />
  9024. </productMenu>
  9025. <productMenu id="waveIntercom"
  9026. type="1" >
  9027. <productMenuType version="1.0.9"
  9028. type="0"
  9029. />
  9030. </productMenu>
  9031. <productMenu id="phone"
  9032. type="1" >
  9033. </productMenu>
  9034. <productMenu id="music"
  9035. type="1" >
  9036. </productMenu>
  9037. <productMenu id="musicSharing"
  9038. type="0" >
  9039. </productMenu>
  9040. <productMenu id="deviceSetting"
  9041. type="1"
  9042. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  9043. <productMenuURL version="1.1.9"
  9044. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  9045. />
  9046. <productMenuURL version="1.0.1"
  9047. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  9048. />
  9049. </productMenu>
  9050. <productMenu id="quickGuide"
  9051. type="0"
  9052. url=""
  9053. size="1.12MB" >
  9054. </productMenu>
  9055. <productMenu id="userGuide"
  9056. type="1"
  9057. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  9058. size="2.0MB" >
  9059. </productMenu>
  9060. <productMenu id="volume"
  9061. type="12" >
  9062. </productMenu>
  9063. <productMenu id="battery"
  9064. type="1" >
  9065. </productMenu>
  9066. <productID id="6840"
  9067. />
  9068. <productGroupable type="0"
  9069. />
  9070. </product>
  9071. <product id="Cavalry2"
  9072. name="Cavalry 2"
  9073. series="Helmet"
  9074. latestVersion="1.2"
  9075. latestVersionVoicePrompt="1.3"
  9076. show = "1" >
  9077. <productMenu id="protocol"
  9078. type="2" >
  9079. </productMenu>
  9080. <productMenu id="alexa"
  9081. type="0" >
  9082. </productMenu>
  9083. <productMenu id="ota"
  9084. type="2" >
  9085. <otaPackages>
  9086. <package
  9087. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  9088. size="3144148"
  9089. />
  9090. </otaPackages>
  9091. </productMenu>
  9092. <productMenu id="wa"
  9093. type="0" >
  9094. </productMenu>
  9095. <productMenu id="meshIntercom"
  9096. type="30" >
  9097. </productMenu>
  9098. <productMenu id="meshIntercom+"
  9099. type="3"
  9100. url="2" >
  9101. <productMenuType version="1.0"
  9102. type="2"
  9103. />
  9104. </productMenu>
  9105. <productMenu id="waveIntercom"
  9106. type="1" >
  9107. <productMenuType version="1.0.9"
  9108. type="0"
  9109. />
  9110. </productMenu>
  9111. <productMenu id="phone"
  9112. type="1" >
  9113. </productMenu>
  9114. <productMenu id="music"
  9115. type="1" >
  9116. </productMenu>
  9117. <productMenu id="musicSharing"
  9118. type="0" >
  9119. </productMenu>
  9120. <productMenu id="deviceSetting"
  9121. type="1"
  9122. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_05.xml" >
  9123. <productMenuURL version="1.1.9"
  9124. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  9125. />
  9126. <productMenuURL version="1.0"
  9127. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  9128. />
  9129. </productMenu>
  9130. <productMenu id="quickGuide"
  9131. type="0"
  9132. url=""
  9133. size="1.12MB" >
  9134. </productMenu>
  9135. <productMenu id="userGuide"
  9136. type="1"
  9137. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  9138. size="2.0MB" >
  9139. </productMenu>
  9140. <productMenu id="connectGuide"
  9141. type="1"
  9142. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  9143. size="1.12MB" >
  9144. </productMenu>
  9145. <productMenu id="volume"
  9146. type="12" >
  9147. </productMenu>
  9148. <productMenu id="battery"
  9149. type="1" >
  9150. </productMenu>
  9151. <productID id="6839"
  9152. />
  9153. <productGroupable type="0"
  9154. />
  9155. </product>
  9156. <product id="Cavalry"
  9157. name="Cavalry"
  9158. series="Helmet"
  9159. latestVersion="1.2.2"
  9160. show = "1" >
  9161. <productMenu id="protocol"
  9162. type="0">
  9163. </productMenu>
  9164. <productMenu id="sip"
  9165. type="1" >
  9166. </productMenu>
  9167. <productMenu id="bluetoothIntercom"
  9168. type="1" >
  9169. </productMenu>
  9170. <productMenu id="phone"
  9171. type="2" >
  9172. </productMenu>
  9173. <productMenu id="fmradio"
  9174. type="3" >
  9175. </productMenu>
  9176. <productMenu id="deviceSetting"
  9177. type="1"
  9178. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  9179. <productMenuURL version="1.9"
  9180. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  9181. />
  9182. <productMenuURL version="1.0.1"
  9183. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  9184. />
  9185. </productMenu>
  9186. <productMenu id="quickGuide"
  9187. type="1"
  9188. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  9189. size="795KB" >
  9190. </productMenu>
  9191. <productMenu id="userGuide"
  9192. type="1"
  9193. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  9194. size="1.87MB" >
  9195. </productMenu>
  9196. <productMenu id="connectGuide"
  9197. type="1"
  9198. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9199. size="1.12MB" >
  9200. </productMenu>
  9201. <productID id="5524"
  9202. />
  9203. <productGroupable type="0"
  9204. />
  9205. </product>
  9206. <product id="Cavalry_Lite"
  9207. name="Cavalry Lite"
  9208. series="Helmet"
  9209. latestVersion="1.0.2"
  9210. show = "1" >
  9211. <productMenu id="protocol"
  9212. type="0">
  9213. </productMenu>
  9214. <productMenu id="sip"
  9215. type="1" >
  9216. </productMenu>
  9217. <productMenu id="bluetoothIntercom"
  9218. type="1" >
  9219. </productMenu>
  9220. <productMenu id="phone"
  9221. type="2" >
  9222. </productMenu>
  9223. <productMenu id="fmradio"
  9224. type="3" >
  9225. </productMenu>
  9226. <productMenu id="deviceSetting"
  9227. type="1"
  9228. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  9229. </productMenu>
  9230. <productMenu id="userGuide"
  9231. type="1"
  9232. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  9233. size="1.74MB" >
  9234. </productMenu>
  9235. <productMenu id="connectGuide"
  9236. type="1"
  9237. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9238. size="1.12MB" >
  9239. </productMenu>
  9240. <productID id="5536"
  9241. />
  9242. <productGroupable type="0"
  9243. />
  9244. </product>
  9245. <product id="VORTEX"
  9246. name="VORTEX"
  9247. series="VORTEX"
  9248. latestVersion="1.0.2"
  9249. latestVersionVoicePrompt="1.0"
  9250. show = "1" >
  9251. <productMenu id="protocol"
  9252. type="2" >
  9253. </productMenu>
  9254. <productMenu id="warranty"
  9255. type="1" >
  9256. </productMenu>
  9257. <productMenu id="serialNumber"
  9258. type="1" >
  9259. </productMenu>
  9260. <productMenu id="ota"
  9261. type="2" >
  9262. <otaLanguages>
  9263. <otaLanguage
  9264. id="0"
  9265. name="English"
  9266. package="0"
  9267. />
  9268. <otaLanguage
  9269. id="0"
  9270. name="Français"
  9271. package="1"
  9272. />
  9273. <otaLanguage
  9274. id="0"
  9275. name="Español"
  9276. package="2"
  9277. />
  9278. <otaLanguage
  9279. id="0"
  9280. name="Italiano"
  9281. package="3"
  9282. />
  9283. <otaLanguage
  9284. id="0"
  9285. name="Deutsch"
  9286. package="4"
  9287. />
  9288. <otaLanguage
  9289. id="0"
  9290. name="Nederlands"
  9291. package="5"
  9292. />
  9293. <otaLanguage
  9294. id="0"
  9295. name="Русский"
  9296. package="6"
  9297. />
  9298. <otaLanguage
  9299. id="0"
  9300. name="简体中文"
  9301. package="7"
  9302. />
  9303. <otaLanguage
  9304. id="0"
  9305. name="한국어"
  9306. package="8"
  9307. />
  9308. <otaLanguage
  9309. id="0"
  9310. name="日本語"
  9311. package="9"
  9312. />
  9313. <otaLanguage
  9314. id="0"
  9315. name="Suomi"
  9316. package="10"
  9317. />
  9318. <otaLanguage
  9319. id="0"
  9320. name="Polski"
  9321. package="11"
  9322. />
  9323. </otaLanguages>
  9324. <otaPackages>
  9325. <package
  9326. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  9327. size="5183988"
  9328. />
  9329. <package
  9330. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  9331. size="5183988"
  9332. />
  9333. <package
  9334. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  9335. size="5183988"
  9336. />
  9337. <package
  9338. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  9339. size="5183988"
  9340. />
  9341. <package
  9342. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  9343. size="5183988"
  9344. />
  9345. <package
  9346. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  9347. size="5183988"
  9348. />
  9349. <package
  9350. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  9351. size="5183988"
  9352. />
  9353. <package
  9354. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  9355. size="5183988"
  9356. />
  9357. <package
  9358. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  9359. size="5183988"
  9360. />
  9361. <package
  9362. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  9363. size="5183988"
  9364. />
  9365. <package
  9366. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  9367. size="5183988"
  9368. />
  9369. <package
  9370. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  9371. size="5183988"
  9372. />
  9373. </otaPackages>
  9374. </productMenu>
  9375. <productMenu id="sip"
  9376. type="1" >
  9377. </productMenu>
  9378. <productMenu id="bluetoothIntercom"
  9379. type="1" >
  9380. </productMenu>
  9381. <productMenu id="phone"
  9382. type="1" >
  9383. </productMenu>
  9384. <productMenu id="music"
  9385. type="1" >
  9386. </productMenu>
  9387. <productMenu id="fmradio"
  9388. type="1"
  9389. url="1" >
  9390. </productMenu>
  9391. <productMenu id="deviceSetting"
  9392. type="1"
  9393. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  9394. </productMenu>
  9395. <productMenu id="quickGuide"
  9396. type="0"
  9397. url=""
  9398. size="934KB" >
  9399. </productMenu>
  9400. <productMenu id="userGuide"
  9401. type="1"
  9402. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.2_en_260915.pdf"
  9403. size="1.14MB" >
  9404. </productMenu>
  9405. <productMenu id="connectGuide"
  9406. type="1"
  9407. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  9408. size="1.12MB" >
  9409. </productMenu>
  9410. <productMenu id="volume"
  9411. type="15" >
  9412. </productMenu>
  9413. <productMenu id="volume+"
  9414. type="2"
  9415. url="0x0018" >
  9416. </productMenu>
  9417. <productMenu id="appearance"
  9418. type="1"
  9419. url="1|white,silver,black" >
  9420. </productMenu>
  9421. <productID id="3451"
  9422. />
  9423. <productGroupable type="0"
  9424. />
  9425. </product>
  9426. <product id="SF4"
  9427. name="SF4"
  9428. series="SF"
  9429. latestVersion="1.1.5"
  9430. show = "-1" >
  9431. <productMenu id="protocol"
  9432. type="1"
  9433. url="3">
  9434. </productMenu>
  9435. <productMenu id="sip"
  9436. type="1" >
  9437. </productMenu>
  9438. <productMenu id="bluetoothIntercom"
  9439. type="1" >
  9440. </productMenu>
  9441. <productMenu id="phone"
  9442. type="1" >
  9443. </productMenu>
  9444. <productMenu id="music"
  9445. type="1" >
  9446. </productMenu>
  9447. <productMenu id="fmradio"
  9448. type="1" >
  9449. </productMenu>
  9450. <productMenu id="deviceSetting"
  9451. type="1"
  9452. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9453. <productMenuURL version="1.0.1"
  9454. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9455. />
  9456. </productMenu>
  9457. <productMenu id="quickGuide"
  9458. type="1"
  9459. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  9460. size="607KB" >
  9461. </productMenu>
  9462. <productMenu id="userGuide"
  9463. type="1"
  9464. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9465. size="1.91MB" >
  9466. </productMenu>
  9467. <productMenu id="volume"
  9468. type="4" >
  9469. </productMenu>
  9470. <productID id="5414"
  9471. />
  9472. <productGroupable type="0"
  9473. />
  9474. </product>
  9475. <product id="SF4"
  9476. name="SF4"
  9477. series="SF"
  9478. latestVersion="3.4.4"
  9479. show = "1" >
  9480. <productMenu id="protocol"
  9481. type="2" >
  9482. </productMenu>
  9483. <productMenu id="sip"
  9484. type="1" >
  9485. </productMenu>
  9486. <productMenu id="bluetoothIntercom"
  9487. type="1" >
  9488. </productMenu>
  9489. <productMenu id="phone"
  9490. type="1" >
  9491. </productMenu>
  9492. <productMenu id="music"
  9493. type="1" >
  9494. </productMenu>
  9495. <productMenu id="fmradio"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="deviceSetting"
  9499. type="1"
  9500. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  9501. <productMenuURL version="3.0"
  9502. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  9503. />
  9504. </productMenu>
  9505. <productMenu id="quickGuide"
  9506. type="0"
  9507. url=""
  9508. size="934KB" >
  9509. </productMenu>
  9510. <productMenu id="userGuide"
  9511. type="1"
  9512. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9513. size="1.14MB" >
  9514. </productMenu>
  9515. <productMenu id="connectGuide"
  9516. type="1"
  9517. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9518. size="1.12MB" >
  9519. </productMenu>
  9520. <productMenu id="volume"
  9521. type="15" >
  9522. </productMenu>
  9523. <productID id="3370"
  9524. />
  9525. <productGroupable type="0"
  9526. />
  9527. </product>
  9528. <product id="SF2"
  9529. name="SF2"
  9530. series="SF"
  9531. latestVersion="1.2.1"
  9532. show = "-1" >
  9533. <productMenu id="protocol"
  9534. type="1"
  9535. url="2">
  9536. </productMenu>
  9537. <productMenu id="sip"
  9538. type="1" >
  9539. </productMenu>
  9540. <productMenu id="bluetoothIntercom"
  9541. type="1" >
  9542. </productMenu>
  9543. <productMenu id="phone"
  9544. type="1" >
  9545. </productMenu>
  9546. <productMenu id="music"
  9547. type="1" >
  9548. </productMenu>
  9549. <productMenu id="fmradio"
  9550. type="1" >
  9551. </productMenu>
  9552. <productMenu id="deviceSetting"
  9553. type="1"
  9554. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9555. <productMenuURL version="1.0.1"
  9556. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9557. />
  9558. </productMenu>
  9559. <productMenu id="quickGuide"
  9560. type="1"
  9561. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  9562. size="607KB" >
  9563. </productMenu>
  9564. <productMenu id="userGuide"
  9565. type="1"
  9566. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9567. size="1.91MB" >
  9568. </productMenu>
  9569. <productMenu id="volume"
  9570. type="4" >
  9571. </productMenu>
  9572. <productID id="5412"
  9573. />
  9574. <productGroupable type="0"
  9575. />
  9576. </product>
  9577. <product id="SF2"
  9578. name="SF2"
  9579. series="SF"
  9580. latestVersion="3.3.4"
  9581. show = "1" >
  9582. <productMenu id="protocol"
  9583. type="2" >
  9584. </productMenu>
  9585. <productMenu id="sip"
  9586. type="1" >
  9587. </productMenu>
  9588. <productMenu id="bluetoothIntercom"
  9589. type="1" >
  9590. </productMenu>
  9591. <productMenu id="phone"
  9592. type="1" >
  9593. </productMenu>
  9594. <productMenu id="music"
  9595. type="1" >
  9596. </productMenu>
  9597. <productMenu id="fmradio"
  9598. type="0" >
  9599. </productMenu>
  9600. <productMenu id="deviceSetting"
  9601. type="1"
  9602. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9603. <productMenuURL version="3.0"
  9604. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9605. />
  9606. </productMenu>
  9607. <productMenu id="quickGuide"
  9608. type="0"
  9609. url=""
  9610. size="934KB" >
  9611. </productMenu>
  9612. <productMenu id="userGuide"
  9613. type="1"
  9614. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9615. size="1.14MB" >
  9616. </productMenu>
  9617. <productMenu id="connectGuide"
  9618. type="1"
  9619. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9620. size="1.12MB" >
  9621. </productMenu>
  9622. <productMenu id="volume"
  9623. type="15" >
  9624. </productMenu>
  9625. <productID id="3360"
  9626. />
  9627. <productGroupable type="0"
  9628. />
  9629. </product>
  9630. <product id="SF1"
  9631. name="SF1"
  9632. series="SF"
  9633. latestVersion="2.0.5"
  9634. show = "-1" >
  9635. <productMenu id="protocol"
  9636. type="1"
  9637. url="1">
  9638. </productMenu>
  9639. <productMenu id="sip"
  9640. type="1" >
  9641. </productMenu>
  9642. <productMenu id="bluetoothIntercom"
  9643. type="1" >
  9644. <productMenuType version="1.1"
  9645. type="0"
  9646. />
  9647. </productMenu>
  9648. <productMenu id="phone"
  9649. type="1" >
  9650. </productMenu>
  9651. <productMenu id="music"
  9652. type="1" >
  9653. </productMenu>
  9654. <productMenu id="deviceSetting"
  9655. type="1"
  9656. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  9657. <productMenuURL version="1.1"
  9658. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  9659. />
  9660. <productMenuURL version="1.0"
  9661. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  9662. />
  9663. </productMenu>
  9664. <productMenu id="quickGuide"
  9665. type="1"
  9666. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  9667. size="401KB" >
  9668. </productMenu>
  9669. <productMenu id="userGuide"
  9670. type="1"
  9671. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9672. size="1.91MB" >
  9673. </productMenu>
  9674. <productMenu id="volume"
  9675. type="3" >
  9676. </productMenu>
  9677. <productID id="5410"
  9678. />
  9679. <productGroupable type="0"
  9680. />
  9681. </product>
  9682. <product id="SF1"
  9683. name="SF1"
  9684. series="SF"
  9685. latestVersion="3.3.4"
  9686. show = "1" >
  9687. <productMenu id="protocol"
  9688. type="2" >
  9689. </productMenu>
  9690. <productMenu id="sip"
  9691. type="1" >
  9692. </productMenu>
  9693. <productMenu id="bluetoothIntercom"
  9694. type="1" >
  9695. </productMenu>
  9696. <productMenu id="phone"
  9697. type="1" >
  9698. </productMenu>
  9699. <productMenu id="music"
  9700. type="1" >
  9701. </productMenu>
  9702. <productMenu id="fmradio"
  9703. type="0" >
  9704. </productMenu>
  9705. <productMenu id="deviceSetting"
  9706. type="1"
  9707. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9708. <productMenuURL version="3.0"
  9709. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9710. />
  9711. </productMenu>
  9712. <productMenu id="quickGuide"
  9713. type="0"
  9714. url=""
  9715. size="934KB" >
  9716. </productMenu>
  9717. <productMenu id="userGuide"
  9718. type="1"
  9719. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9720. size="1.14MB" >
  9721. </productMenu>
  9722. <productMenu id="connectGuide"
  9723. type="1"
  9724. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9725. size="1.12MB" >
  9726. </productMenu>
  9727. <productMenu id="volume"
  9728. type="15" >
  9729. </productMenu>
  9730. <productID id="3350"
  9731. />
  9732. <productGroupable type="0"
  9733. />
  9734. </product>
  9735. <product id="SFR"
  9736. name="SFR"
  9737. series="SF"
  9738. latestVersion="1.1.1"
  9739. show = "1" >
  9740. <productMenu id="protocol"
  9741. type="1"
  9742. url="3">
  9743. </productMenu>
  9744. <productMenu id="sip"
  9745. type="1" >
  9746. </productMenu>
  9747. <productMenu id="bluetoothIntercom"
  9748. type="1" >
  9749. </productMenu>
  9750. <productMenu id="phone"
  9751. type="1" >
  9752. </productMenu>
  9753. <productMenu id="music"
  9754. type="1" >
  9755. </productMenu>
  9756. <productMenu id="fmradio"
  9757. type="1" >
  9758. </productMenu>
  9759. <productMenu id="deviceSetting"
  9760. type="1"
  9761. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9762. </productMenu>
  9763. <productMenu id="quickGuide"
  9764. type="1"
  9765. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  9766. size="607KB" >
  9767. </productMenu>
  9768. <productMenu id="userGuide"
  9769. type="1"
  9770. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  9771. size="1.91MB" >
  9772. </productMenu>
  9773. <productMenu id="volume"
  9774. type="4" >
  9775. </productMenu>
  9776. <productID id="5418"
  9777. />
  9778. <productGroupable type="0"
  9779. />
  9780. </product>
  9781. <product id="20S"
  9782. name="20S"
  9783. series="20"
  9784. latestVersion="2.2.3"
  9785. show = "1" >
  9786. <productMenu id="protocol"
  9787. type="0">
  9788. </productMenu>
  9789. <productMenu id="wa"
  9790. type="5" >
  9791. </productMenu>
  9792. <productMenu id="sip"
  9793. type="1" >
  9794. <productMenuType version="1.0"
  9795. type="0"
  9796. />
  9797. </productMenu>
  9798. <productMenu id="bluetoothIntercom"
  9799. type="1" >
  9800. <productMenuType version="1.0"
  9801. type="0"
  9802. />
  9803. </productMenu>
  9804. <productMenu id="intercomSetting"
  9805. type="1" >
  9806. </productMenu>
  9807. <productMenu id="phone"
  9808. type="2" >
  9809. </productMenu>
  9810. <productMenu id="fmradio"
  9811. type="3" >
  9812. </productMenu>
  9813. <productMenu id="deviceSetting"
  9814. type="1"
  9815. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9816. <productMenuURL version="2.0.2"
  9817. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9818. />
  9819. <productMenuURL version="1.5"
  9820. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9821. />
  9822. <productMenuURL version="1.4.1"
  9823. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9824. />
  9825. <productMenuURL version="1.1"
  9826. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9827. />
  9828. <productMenuURL version="1.0"
  9829. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9830. />
  9831. </productMenu>
  9832. <productMenu id="quickGuide"
  9833. type="0"
  9834. url=""
  9835. size="264KB" >
  9836. </productMenu>
  9837. <productMenu id="userGuide"
  9838. type="1"
  9839. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9840. size="3.09MB" >
  9841. </productMenu>
  9842. <productMenu id="connectGuide"
  9843. type="1"
  9844. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9845. size="1.12MB" >
  9846. </productMenu>
  9847. <productID id="4210"
  9848. />
  9849. <productGroupable type="1"
  9850. />
  9851. </product>
  9852. <product id="20S_EVO"
  9853. name="20S EVO"
  9854. series="20"
  9855. latestVersion="2.2.3"
  9856. show = "1" >
  9857. <productMenu id="protocol"
  9858. type="0">
  9859. </productMenu>
  9860. <productMenu id="wa"
  9861. type="5" >
  9862. </productMenu>
  9863. <productMenu id="sip"
  9864. type="1" >
  9865. <productMenuType version="1.0"
  9866. type="0"
  9867. />
  9868. </productMenu>
  9869. <productMenu id="bluetoothIntercom"
  9870. type="1" >
  9871. <productMenuType version="1.0"
  9872. type="0"
  9873. />
  9874. </productMenu>
  9875. <productMenu id="intercomSetting"
  9876. type="1" >
  9877. </productMenu>
  9878. <productMenu id="phone"
  9879. type="2" >
  9880. </productMenu>
  9881. <productMenu id="fmradio"
  9882. type="3" >
  9883. </productMenu>
  9884. <productMenu id="deviceSetting"
  9885. type="1"
  9886. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9887. <productMenuURL version="2.0.2"
  9888. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9889. />
  9890. <productMenuURL version="1.5"
  9891. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9892. />
  9893. <productMenuURL version="1.4.1"
  9894. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9895. />
  9896. <productMenuURL version="1.1"
  9897. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9898. />
  9899. <productMenuURL version="1.0"
  9900. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9901. />
  9902. </productMenu>
  9903. <productMenu id="quickGuide"
  9904. type="0"
  9905. url=""
  9906. size="264KB" >
  9907. </productMenu>
  9908. <productMenu id="userGuide"
  9909. type="1"
  9910. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9911. size="3.09MB" >
  9912. </productMenu>
  9913. <productMenu id="connectGuide"
  9914. type="1"
  9915. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9916. size="1.12MB" >
  9917. </productMenu>
  9918. <productID id="4210"
  9919. />
  9920. <productProductKey key="16"
  9921. />
  9922. <productGroupable type="1"
  9923. />
  9924. </product>
  9925. <product id="10S"
  9926. name="10S"
  9927. series="10"
  9928. latestVersion="3.0.2"
  9929. show = "1" >
  9930. <productMenu id="protocol"
  9931. type="3" >
  9932. </productMenu>
  9933. <productMenu id="sip"
  9934. type="1" >
  9935. </productMenu>
  9936. <productMenu id="bluetoothIntercom"
  9937. type="1" >
  9938. </productMenu>
  9939. <productMenu id="phone"
  9940. type="1" >
  9941. </productMenu>
  9942. <productMenu id="deviceSetting"
  9943. type="1"
  9944. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9945. </productMenu>
  9946. <productMenu id="quickGuide"
  9947. type="1"
  9948. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9949. size="934KB" >
  9950. </productMenu>
  9951. <productMenu id="userGuide"
  9952. type="1"
  9953. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9954. size="1.14MB" >
  9955. </productMenu>
  9956. <productMenu id="connectGuide"
  9957. type="1"
  9958. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9959. size="1.12MB" >
  9960. </productMenu>
  9961. <productID id="3380"
  9962. />
  9963. <productGroupable type="0"
  9964. />
  9965. </product>
  9966. <product id="10S"
  9967. name="10S"
  9968. series="10"
  9969. latestVersion="2.1.1"
  9970. show = "-1" >
  9971. <productMenu id="protocol"
  9972. type="0">
  9973. </productMenu>
  9974. <productMenu id="sip"
  9975. type="1" >
  9976. </productMenu>
  9977. <productMenu id="bluetoothIntercom"
  9978. type="1" >
  9979. </productMenu>
  9980. <productMenu id="phone"
  9981. type="2" >
  9982. </productMenu>
  9983. <productMenu id="fmradio"
  9984. type="3" >
  9985. </productMenu>
  9986. <productMenu id="deviceSetting"
  9987. type="1"
  9988. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9989. <productMenuURL version="1.5"
  9990. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9991. />
  9992. <productMenuURL version="1.3.1"
  9993. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9994. />
  9995. </productMenu>
  9996. <productMenu id="quickGuide"
  9997. type="1"
  9998. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9999. size="310KB" >
  10000. </productMenu>
  10001. <productMenu id="userGuide"
  10002. type="1"
  10003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  10004. size="1.57MB" >
  10005. </productMenu>
  10006. <productID id="5530"
  10007. />
  10008. <productGroupable type="0"
  10009. />
  10010. </product>
  10011. <product id="Apex"
  10012. name="Apex"
  10013. series="APEX"
  10014. latestVersion="1.0.1"
  10015. latestVersionVoicePrompt="0.2"
  10016. show = "1" >
  10017. <productMenu id="protocol"
  10018. type="2" >
  10019. </productMenu>
  10020. <productMenu id="warranty"
  10021. type="1" >
  10022. </productMenu>
  10023. <productMenu id="serialNumber"
  10024. type="1" >
  10025. </productMenu>
  10026. <productMenu id="ota"
  10027. type="2" >
  10028. <otaLanguages>
  10029. <otaLanguage
  10030. id="0"
  10031. name="English"
  10032. package="0"
  10033. />
  10034. <otaLanguage
  10035. id="0"
  10036. name="Français"
  10037. package="1"
  10038. />
  10039. <otaLanguage
  10040. id="0"
  10041. name="Español"
  10042. package="2"
  10043. />
  10044. <otaLanguage
  10045. id="0"
  10046. name="Italiano"
  10047. package="3"
  10048. />
  10049. <otaLanguage
  10050. id="0"
  10051. name="Deutsch"
  10052. package="4"
  10053. />
  10054. <otaLanguage
  10055. id="0"
  10056. name="Nederlands"
  10057. package="5"
  10058. />
  10059. <otaLanguage
  10060. id="0"
  10061. name="Русский"
  10062. package="6"
  10063. />
  10064. <otaLanguage
  10065. id="0"
  10066. name="简体中文"
  10067. package="7"
  10068. />
  10069. <otaLanguage
  10070. id="0"
  10071. name="한국어"
  10072. package="8"
  10073. />
  10074. <otaLanguage
  10075. id="0"
  10076. name="日本語"
  10077. package="9"
  10078. />
  10079. <otaLanguage
  10080. id="0"
  10081. name="Suomi"
  10082. package="10"
  10083. />
  10084. <otaLanguage
  10085. id="0"
  10086. name="Polski"
  10087. package="11"
  10088. />
  10089. </otaLanguages>
  10090. <otaPackages>
  10091. <package
  10092. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3.img"
  10093. size="5183988"
  10094. />
  10095. <package
  10096. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fr-FR.img"
  10097. size="5183988"
  10098. />
  10099. <package
  10100. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-es-ES.img"
  10101. size="5183988"
  10102. />
  10103. <package
  10104. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-it-IT.img"
  10105. size="5183988"
  10106. />
  10107. <package
  10108. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-de-DE.img"
  10109. size="5183988"
  10110. />
  10111. <package
  10112. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-nl-NL.img"
  10113. size="5183988"
  10114. />
  10115. <package
  10116. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ru-RU.img"
  10117. size="5183988"
  10118. />
  10119. <package
  10120. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-cmn-CN.img"
  10121. size="5183988"
  10122. />
  10123. <package
  10124. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ko-KR.img"
  10125. size="5183988"
  10126. />
  10127. <package
  10128. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ja-JP.img"
  10129. size="5183988"
  10130. />
  10131. <package
  10132. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fi-FI.img"
  10133. size="5183988"
  10134. />
  10135. <package
  10136. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-pl-PL.img"
  10137. size="5183988"
  10138. />
  10139. </otaPackages>
  10140. </productMenu>
  10141. <productMenu id="sip"
  10142. type="1" >
  10143. </productMenu>
  10144. <productMenu id="bluetoothIntercom"
  10145. type="1" >
  10146. </productMenu>
  10147. <productMenu id="phone"
  10148. type="1" >
  10149. </productMenu>
  10150. <productMenu id="music"
  10151. type="1" >
  10152. </productMenu>
  10153. <productMenu id="fmradio"
  10154. type="1"
  10155. url="1" >
  10156. </productMenu>
  10157. <productMenu id="deviceSetting"
  10158. type="1"
  10159. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  10160. <productMenuURL version="1.0"
  10161. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  10162. />
  10163. </productMenu>
  10164. <productMenu id="quickGuide"
  10165. type="0"
  10166. url=""
  10167. size="934KB" >
  10168. </productMenu>
  10169. <productMenu id="userGuide"
  10170. type="1"
  10171. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  10172. size="1.14MB" >
  10173. </productMenu>
  10174. <productMenu id="connectGuide"
  10175. type="1"
  10176. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  10177. size="1.12MB" >
  10178. </productMenu>
  10179. <productMenu id="volume+"
  10180. type="2"
  10181. url="0x0004" >
  10182. </productMenu>
  10183. <productMenu id="appearance"
  10184. type="1"
  10185. url="1|white,silver,black" >
  10186. </productMenu>
  10187. <productMenu id="battery"
  10188. type="1" >
  10189. </productMenu>
  10190. <productID id="3452"
  10191. />
  10192. <productGroupable type="0"
  10193. />
  10194. </product>
  10195. <product id="ApexPlus"
  10196. name="Apex Plus"
  10197. series="APEX"
  10198. latestVersion="1.0.1"
  10199. latestVersionVoicePrompt="0.2"
  10200. show = "1" >
  10201. <productMenu id="protocol"
  10202. type="2" >
  10203. </productMenu>
  10204. <productMenu id="warranty"
  10205. type="1" >
  10206. </productMenu>
  10207. <productMenu id="serialNumber"
  10208. type="1" >
  10209. </productMenu>
  10210. <productMenu id="ota"
  10211. type="2" >
  10212. <otaLanguages>
  10213. <otaLanguage
  10214. id="0"
  10215. name="English"
  10216. package="0"
  10217. />
  10218. <otaLanguage
  10219. id="0"
  10220. name="Français"
  10221. package="1"
  10222. />
  10223. <otaLanguage
  10224. id="0"
  10225. name="Español"
  10226. package="2"
  10227. />
  10228. <otaLanguage
  10229. id="0"
  10230. name="Italiano"
  10231. package="3"
  10232. />
  10233. <otaLanguage
  10234. id="0"
  10235. name="Deutsch"
  10236. package="4"
  10237. />
  10238. <otaLanguage
  10239. id="0"
  10240. name="Nederlands"
  10241. package="5"
  10242. />
  10243. <otaLanguage
  10244. id="0"
  10245. name="Русский"
  10246. package="6"
  10247. />
  10248. <otaLanguage
  10249. id="0"
  10250. name="简体中文"
  10251. package="7"
  10252. />
  10253. <otaLanguage
  10254. id="0"
  10255. name="한국어"
  10256. package="8"
  10257. />
  10258. <otaLanguage
  10259. id="0"
  10260. name="日本語"
  10261. package="9"
  10262. />
  10263. <otaLanguage
  10264. id="0"
  10265. name="Suomi"
  10266. package="10"
  10267. />
  10268. <otaLanguage
  10269. id="0"
  10270. name="Polski"
  10271. package="11"
  10272. />
  10273. </otaLanguages>
  10274. <otaPackages>
  10275. <package
  10276. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3.img"
  10277. size="5183988"
  10278. />
  10279. <package
  10280. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fr-FR.img"
  10281. size="5183988"
  10282. />
  10283. <package
  10284. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-es-ES.img"
  10285. size="5183988"
  10286. />
  10287. <package
  10288. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-it-IT.img"
  10289. size="5183988"
  10290. />
  10291. <package
  10292. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-de-DE.img"
  10293. size="5183988"
  10294. />
  10295. <package
  10296. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-nl-NL.img"
  10297. size="5183988"
  10298. />
  10299. <package
  10300. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ru-RU.img"
  10301. size="5183988"
  10302. />
  10303. <package
  10304. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-cmn-CN.img"
  10305. size="5183988"
  10306. />
  10307. <package
  10308. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ko-KR.img"
  10309. size="5183988"
  10310. />
  10311. <package
  10312. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ja-JP.img"
  10313. size="5183988"
  10314. />
  10315. <package
  10316. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fi-FI.img"
  10317. size="5183988"
  10318. />
  10319. <package
  10320. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-pl-PL.img"
  10321. size="5183988"
  10322. />
  10323. </otaPackages>
  10324. </productMenu>
  10325. <productMenu id="sip"
  10326. type="1" >
  10327. </productMenu>
  10328. <productMenu id="bluetoothIntercom"
  10329. type="1" >
  10330. </productMenu>
  10331. <productMenu id="phone"
  10332. type="1" >
  10333. </productMenu>
  10334. <productMenu id="music"
  10335. type="1" >
  10336. </productMenu>
  10337. <productMenu id="fmradio"
  10338. type="1"
  10339. url="1" >
  10340. </productMenu>
  10341. <productMenu id="deviceSetting"
  10342. type="1"
  10343. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  10344. <productMenuURL version="1.0"
  10345. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  10346. />
  10347. </productMenu>
  10348. <productMenu id="quickGuide"
  10349. type="0"
  10350. url=""
  10351. size="934KB" >
  10352. </productMenu>
  10353. <productMenu id="userGuide"
  10354. type="1"
  10355. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  10356. size="1.14MB" >
  10357. </productMenu>
  10358. <productMenu id="connectGuide"
  10359. type="1"
  10360. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  10361. size="1.12MB" >
  10362. </productMenu>
  10363. <productMenu id="volume+"
  10364. type="2"
  10365. url="0x0004" >
  10366. </productMenu>
  10367. <productMenu id="appearance"
  10368. type="1"
  10369. url="1|white,silver,black" >
  10370. </productMenu>
  10371. <productMenu id="battery"
  10372. type="1" >
  10373. </productMenu>
  10374. <productID id="3453"
  10375. />
  10376. <productGroupable type="0"
  10377. />
  10378. </product>
  10379. <product id="10R2"
  10380. name="10R 2"
  10381. series="10"
  10382. latestVersion="0.9"
  10383. latestVersionVoicePrompt="1.1"
  10384. show = "-1" >
  10385. <productMenu id="protocol"
  10386. type="2" >
  10387. </productMenu>
  10388. <productMenu id="ota"
  10389. type="2" >
  10390. <otaPackages>
  10391. <package
  10392. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  10393. size="2945812"
  10394. />
  10395. </otaPackages>
  10396. </productMenu>
  10397. <productMenu id="sip"
  10398. type="1" >
  10399. </productMenu>
  10400. <productMenu id="bluetoothIntercom"
  10401. type="1" >
  10402. </productMenu>
  10403. <productMenu id="phone"
  10404. type="1" >
  10405. </productMenu>
  10406. <productMenu id="music"
  10407. type="1" >
  10408. </productMenu>
  10409. <productMenu id="fmradio"
  10410. type="1"
  10411. url="1" >
  10412. </productMenu>
  10413. <productMenu id="deviceSetting"
  10414. type="1"
  10415. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  10416. </productMenu>
  10417. <productMenu id="quickGuide"
  10418. type="1"
  10419. url=""
  10420. size="934KB" >
  10421. </productMenu>
  10422. <productMenu id="userGuide"
  10423. type="0"
  10424. url=""
  10425. size="1.14MB" >
  10426. </productMenu>
  10427. <productMenu id="volume"
  10428. type="15" >
  10429. </productMenu>
  10430. <productID id="4000"
  10431. />
  10432. <productGroupable type="0"
  10433. />
  10434. </product>
  10435. <product id="10R"
  10436. name="10R"
  10437. series="10"
  10438. latestVersion="2.1.1"
  10439. show = "1" >
  10440. <productMenu id="protocol"
  10441. type="0">
  10442. </productMenu>
  10443. <productMenu id="sip"
  10444. type="1" >
  10445. <productMenuType version="1.0.2"
  10446. type="0"
  10447. />
  10448. </productMenu>
  10449. <productMenu id="bluetoothIntercom"
  10450. type="1" >
  10451. <productMenuType version="1.0.2"
  10452. type="0"
  10453. />
  10454. </productMenu>
  10455. <productMenu id="phone"
  10456. type="2" >
  10457. </productMenu>
  10458. <productMenu id="fmradio"
  10459. type="3" >
  10460. </productMenu>
  10461. <productMenu id="deviceSetting"
  10462. type="1"
  10463. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10464. <productMenuURL version="1.4"
  10465. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  10466. />
  10467. <productMenuURL version="1.2.1"
  10468. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  10469. />
  10470. <productMenuURL version="1.0.2"
  10471. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  10472. />
  10473. <productMenuURL version="1.0"
  10474. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  10475. />
  10476. </productMenu>
  10477. <productMenu id="quickGuide"
  10478. type="1"
  10479. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  10480. size="400KB" >
  10481. </productMenu>
  10482. <productMenu id="userGuide"
  10483. type="1"
  10484. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  10485. size="2.75MB" >
  10486. </productMenu>
  10487. <productMenu id="connectGuide"
  10488. type="1"
  10489. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10490. size="1.12MB" >
  10491. </productMenu>
  10492. <productID id="5520"
  10493. />
  10494. <productGroupable type="0"
  10495. />
  10496. </product>
  10497. <product id="10C_EVO"
  10498. name="10C EVO"
  10499. series="10"
  10500. latestVersion="1.7"
  10501. show = "1" >
  10502. <productMenu id="protocol"
  10503. type="0">
  10504. </productMenu>
  10505. <productMenu id="sip"
  10506. type="1" >
  10507. </productMenu>
  10508. <productMenu id="bluetoothIntercom"
  10509. type="1" >
  10510. </productMenu>
  10511. <productMenu id="phone"
  10512. type="2" >
  10513. </productMenu>
  10514. <productMenu id="fmradio"
  10515. type="3" >
  10516. </productMenu>
  10517. <productMenu id="deviceSetting"
  10518. type="1"
  10519. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  10520. <productMenuURL version="1.3.1"
  10521. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10522. />
  10523. </productMenu>
  10524. <productMenu id="quickGuide"
  10525. type="1"
  10526. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  10527. size="1.32MB" >
  10528. </productMenu>
  10529. <productMenu id="userGuide"
  10530. type="1"
  10531. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  10532. size="1.68MB" >
  10533. </productMenu>
  10534. <productMenu id="connectGuide"
  10535. type="1"
  10536. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10537. size="1.12MB" >
  10538. </productMenu>
  10539. <productID id="5570"
  10540. />
  10541. <productGroupable type="0"
  10542. />
  10543. </product>
  10544. <product id="10C_Pro"
  10545. name="10C Pro"
  10546. series="10"
  10547. latestVersion="2.7.1"
  10548. show = "1" >
  10549. <productMenu id="protocol"
  10550. type="0">
  10551. </productMenu>
  10552. <productMenu id="sip"
  10553. type="1" >
  10554. </productMenu>
  10555. <productMenu id="bluetoothIntercom"
  10556. type="1" >
  10557. </productMenu>
  10558. <productMenu id="phone"
  10559. type="2" >
  10560. </productMenu>
  10561. <productMenu id="fmradio"
  10562. type="3" >
  10563. </productMenu>
  10564. <productMenu id="deviceSetting"
  10565. type="1"
  10566. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  10567. <productMenuURL version="2.5.1"
  10568. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  10569. />
  10570. <productMenuURL version="1.0"
  10571. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  10572. />
  10573. </productMenu>
  10574. <productMenu id="quickGuide"
  10575. type="1"
  10576. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  10577. size="651KB" >
  10578. </productMenu>
  10579. <productMenu id="userGuide"
  10580. type="1"
  10581. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  10582. size="2.34MB" >
  10583. </productMenu>
  10584. <productMenu id="connectGuide"
  10585. type="1"
  10586. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10587. size="1.12MB" >
  10588. </productMenu>
  10589. <productID id="5580"
  10590. />
  10591. <productGroupable type="0"
  10592. />
  10593. </product>
  10594. <product id="10C"
  10595. name="10C"
  10596. series="10"
  10597. latestVersion="3.0.4"
  10598. show = "1" >
  10599. <productMenu id="protocol"
  10600. type="0">
  10601. </productMenu>
  10602. <productMenu id="sip"
  10603. type="1" >
  10604. <productMenuType version="1.0.4"
  10605. type="0"
  10606. />
  10607. </productMenu>
  10608. <productMenu id="bluetoothIntercom"
  10609. type="1" >
  10610. <productMenuType version="1.0.4"
  10611. type="0"
  10612. />
  10613. </productMenu>
  10614. <productMenu id="phone"
  10615. type="2" >
  10616. </productMenu>
  10617. <productMenu id="fmradio"
  10618. type="3" >
  10619. </productMenu>
  10620. <productMenu id="deviceSetting"
  10621. type="1"
  10622. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  10623. <productMenuURL version="2.3"
  10624. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  10625. />
  10626. <productMenuURL version="2.1.1"
  10627. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  10628. />
  10629. <productMenuURL version="1.0.4"
  10630. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  10631. />
  10632. <productMenuURL version="1.0.2"
  10633. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  10634. />
  10635. </productMenu>
  10636. <productMenu id="quickGuide"
  10637. type="1"
  10638. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  10639. size="935KB" >
  10640. </productMenu>
  10641. <productMenu id="userGuide"
  10642. type="1"
  10643. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  10644. size="2.82MB" >
  10645. </productMenu>
  10646. <productMenu id="connectGuide"
  10647. type="1"
  10648. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10649. size="1.12MB" >
  10650. </productMenu>
  10651. <productID id="5510"
  10652. />
  10653. <productGroupable type="0"
  10654. />
  10655. </product>
  10656. <product id="10U_GT_AIR"
  10657. name="10U GT-Air"
  10658. series="10"
  10659. latestVersion="2.0.4"
  10660. show = "1" >
  10661. <productMenu id="protocol"
  10662. type="0">
  10663. </productMenu>
  10664. <productMenu id="sip"
  10665. type="1" >
  10666. <productMenuType version="1.0.2"
  10667. type="0"
  10668. />
  10669. </productMenu>
  10670. <productMenu id="bluetoothIntercom"
  10671. type="1" >
  10672. <productMenuType version="1.0.2"
  10673. type="0"
  10674. />
  10675. </productMenu>
  10676. <productMenu id="phone"
  10677. type="2" >
  10678. </productMenu>
  10679. <productMenu id="fmradio"
  10680. type="3" >
  10681. </productMenu>
  10682. <productMenu id="deviceSetting"
  10683. type="1"
  10684. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10685. <productMenuURL version="1.3.2"
  10686. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10687. />
  10688. <productMenuURL version="1.0.2"
  10689. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10690. />
  10691. </productMenu>
  10692. <productMenu id="quickGuide"
  10693. type="1"
  10694. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  10695. size="685KB" >
  10696. </productMenu>
  10697. <productMenu id="userGuide"
  10698. type="1"
  10699. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10700. size="684KB" >
  10701. </productMenu>
  10702. <productMenu id="connectGuide"
  10703. type="1"
  10704. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10705. size="1.12MB" >
  10706. </productMenu>
  10707. <productID id="5610"
  10708. />
  10709. <productGroupable type="0"
  10710. />
  10711. </product>
  10712. <product id="10U_NEOTEC"
  10713. name="10U Neotec"
  10714. series="10"
  10715. latestVersion="2.0.4"
  10716. show = "1" >
  10717. <productMenu id="protocol"
  10718. type="0">
  10719. </productMenu>
  10720. <productMenu id="sip"
  10721. type="1" >
  10722. <productMenuType version="1.0.2"
  10723. type="0"
  10724. />
  10725. </productMenu>
  10726. <productMenu id="bluetoothIntercom"
  10727. type="1" >
  10728. <productMenuType version="1.0.2"
  10729. type="0"
  10730. />
  10731. </productMenu>
  10732. <productMenu id="phone"
  10733. type="2" >
  10734. </productMenu>
  10735. <productMenu id="fmradio"
  10736. type="3" >
  10737. </productMenu>
  10738. <productMenu id="deviceSetting"
  10739. type="1"
  10740. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10741. <productMenuURL version="1.3.2"
  10742. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10743. />
  10744. <productMenuURL version="1.0.2"
  10745. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10746. />
  10747. </productMenu>
  10748. <productMenu id="quickGuide"
  10749. type="1"
  10750. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  10751. size="689KB" >
  10752. </productMenu>
  10753. <productMenu id="userGuide"
  10754. type="1"
  10755. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10756. size="684KB" >
  10757. </productMenu>
  10758. <productMenu id="connectGuide"
  10759. type="1"
  10760. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10761. size="1.12MB" >
  10762. </productMenu>
  10763. <productID id="5611"
  10764. />
  10765. <productGroupable type="0"
  10766. />
  10767. </product>
  10768. <product id="10U_J_CRUISE"
  10769. name="10U J-Cruise"
  10770. series="10"
  10771. latestVersion="2.0.4"
  10772. show = "1" >
  10773. <productMenu id="protocol"
  10774. type="0">
  10775. </productMenu>
  10776. <productMenu id="sip"
  10777. type="1" >
  10778. <productMenuType version="1.0.2"
  10779. type="0"
  10780. />
  10781. </productMenu>
  10782. <productMenu id="bluetoothIntercom"
  10783. type="1" >
  10784. <productMenuType version="1.0.2"
  10785. type="0"
  10786. />
  10787. </productMenu>
  10788. <productMenu id="phone"
  10789. type="2" >
  10790. </productMenu>
  10791. <productMenu id="fmradio"
  10792. type="3" >
  10793. </productMenu>
  10794. <productMenu id="deviceSetting"
  10795. type="1"
  10796. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10797. <productMenuURL version="1.3.2"
  10798. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10799. />
  10800. <productMenuURL version="1.0.2"
  10801. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10802. />
  10803. </productMenu>
  10804. <productMenu id="quickGuide"
  10805. type="1"
  10806. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  10807. size="686KB" >
  10808. </productMenu>
  10809. <productMenu id="userGuide"
  10810. type="1"
  10811. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10812. size="684KB" >
  10813. </productMenu>
  10814. <productMenu id="connectGuide"
  10815. type="1"
  10816. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10817. size="1.12MB" >
  10818. </productMenu>
  10819. <productID id="5612"
  10820. />
  10821. <productGroupable type="0"
  10822. />
  10823. </product>
  10824. <product id="10U_C3"
  10825. name="10U C3/C3Pro"
  10826. series="10"
  10827. latestVersion="2.0.4"
  10828. show = "1" >
  10829. <productMenu id="protocol"
  10830. type="0">
  10831. </productMenu>
  10832. <productMenu id="sip"
  10833. type="1" >
  10834. <productMenuType version="1.0.2"
  10835. type="0"
  10836. />
  10837. </productMenu>
  10838. <productMenu id="bluetoothIntercom"
  10839. type="1" >
  10840. <productMenuType version="1.0.2"
  10841. type="0"
  10842. />
  10843. </productMenu>
  10844. <productMenu id="phone"
  10845. type="2" >
  10846. </productMenu>
  10847. <productMenu id="fmradio"
  10848. type="3" >
  10849. </productMenu>
  10850. <productMenu id="deviceSetting"
  10851. type="1"
  10852. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10853. <productMenuURL version="1.3.2"
  10854. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10855. />
  10856. <productMenuURL version="1.0.2"
  10857. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10858. />
  10859. </productMenu>
  10860. <productMenu id="quickGuide"
  10861. type="1"
  10862. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10863. size="199KB" >
  10864. </productMenu>
  10865. <productMenu id="userGuide"
  10866. type="1"
  10867. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10868. size="684KB" >
  10869. </productMenu>
  10870. <productMenu id="connectGuide"
  10871. type="1"
  10872. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10873. size="1.12MB" >
  10874. </productMenu>
  10875. <productID id="5620"
  10876. />
  10877. <productGroupable type="0"
  10878. />
  10879. </product>
  10880. <product id="10U_ARAI"
  10881. name="10U Arai"
  10882. series="10"
  10883. latestVersion="2.0.4"
  10884. show = "1" >
  10885. <productMenu id="protocol"
  10886. type="0">
  10887. </productMenu>
  10888. <productMenu id="sip"
  10889. type="1" >
  10890. <productMenuType version="1.0.2"
  10891. type="0"
  10892. />
  10893. </productMenu>
  10894. <productMenu id="bluetoothIntercom"
  10895. type="1" >
  10896. <productMenuType version="1.0.2"
  10897. type="0"
  10898. />
  10899. </productMenu>
  10900. <productMenu id="phone"
  10901. type="2" >
  10902. </productMenu>
  10903. <productMenu id="fmradio"
  10904. type="3" >
  10905. </productMenu>
  10906. <productMenu id="deviceSetting"
  10907. type="1"
  10908. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10909. <productMenuURL version="1.3.2"
  10910. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10911. />
  10912. <productMenuURL version="1.0.2"
  10913. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10914. />
  10915. </productMenu>
  10916. <productMenu id="quickGuide"
  10917. type="1"
  10918. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10919. size="689KB" >
  10920. </productMenu>
  10921. <productMenu id="userGuide"
  10922. type="1"
  10923. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10924. size="684KB" >
  10925. </productMenu>
  10926. <productMenu id="connectGuide"
  10927. type="1"
  10928. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10929. size="1.12MB" >
  10930. </productMenu>
  10931. <productID id="5621"
  10932. />
  10933. <productGroupable type="0"
  10934. />
  10935. </product>
  10936. <product id="10Upad"
  10937. name="10Upad"
  10938. series="10"
  10939. latestVersion="2.0.3"
  10940. show = "1" >
  10941. <productMenu id="protocol"
  10942. type="0">
  10943. </productMenu>
  10944. <productMenu id="sip"
  10945. type="1" >
  10946. </productMenu>
  10947. <productMenu id="bluetoothIntercom"
  10948. type="1" >
  10949. </productMenu>
  10950. <productMenu id="phone"
  10951. type="2" >
  10952. </productMenu>
  10953. <productMenu id="fmradio"
  10954. type="3" >
  10955. </productMenu>
  10956. <productMenu id="deviceSetting"
  10957. type="1"
  10958. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10959. <productMenuURL version="1.0.3"
  10960. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10961. />
  10962. </productMenu>
  10963. <productMenu id="quickGuide"
  10964. type="1"
  10965. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10966. size="615KB" >
  10967. </productMenu>
  10968. <productMenu id="userGuide"
  10969. type="1"
  10970. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10971. size="0.99MB" >
  10972. </productMenu>
  10973. <productMenu id="connectGuide"
  10974. type="1"
  10975. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10976. size="1.12MB" >
  10977. </productMenu>
  10978. <productID id="6210"
  10979. />
  10980. <productGroupable type="0"
  10981. />
  10982. </product>
  10983. <product id="5S"
  10984. name="5S"
  10985. series="5"
  10986. latestVersion="2.3.1"
  10987. show = "1" >
  10988. <productMenu id="protocol"
  10989. type="3" >
  10990. </productMenu>
  10991. <productMenu id="sip"
  10992. type="1" >
  10993. </productMenu>
  10994. <productMenu id="bluetoothIntercom"
  10995. type="1" >
  10996. </productMenu>
  10997. <productMenu id="phone"
  10998. type="1" >
  10999. </productMenu>
  11000. <productMenu id="fmradio"
  11001. type="0" >
  11002. </productMenu>
  11003. <productMenu id="deviceSetting"
  11004. type="1"
  11005. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11006. </productMenu>
  11007. <productMenu id="quickGuide"
  11008. type="0"
  11009. url=""
  11010. size="934KB" >
  11011. </productMenu>
  11012. <productMenu id="userGuide"
  11013. type="1"
  11014. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11015. size="1.14MB" >
  11016. </productMenu>
  11017. <productMenu id="connectGuide"
  11018. type="1"
  11019. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  11020. size="1.12MB" >
  11021. </productMenu>
  11022. <productID id="5590"
  11023. />
  11024. <productGroupable type="0"
  11025. />
  11026. </product>
  11027. <product id="5S"
  11028. name="5S"
  11029. series="5"
  11030. latestVersion="1.2"
  11031. show = "-1" >
  11032. <productMenu id="protocol"
  11033. type="0">
  11034. </productMenu>
  11035. <productMenu id="sip"
  11036. type="1" >
  11037. </productMenu>
  11038. <productMenu id="bluetoothIntercom"
  11039. type="1" >
  11040. </productMenu>
  11041. <productMenu id="phone"
  11042. type="2" >
  11043. </productMenu>
  11044. <productMenu id="fmradio"
  11045. type="3" >
  11046. </productMenu>
  11047. <productMenu id="deviceSetting"
  11048. type="1"
  11049. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  11050. </productMenu>
  11051. <productMenu id="quickGuide"
  11052. type="0"
  11053. url=""
  11054. size="970KB" >
  11055. </productMenu>
  11056. <productMenu id="userGuide"
  11057. type="1"
  11058. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  11059. size="1.26MB" >
  11060. </productMenu>
  11061. <productID id="5534"
  11062. />
  11063. <productGroupable type="0"
  11064. />
  11065. </product>
  11066. <product id="5S"
  11067. name="5S"
  11068. series="5"
  11069. latestVersion="3.0.1"
  11070. show = "-1" >
  11071. <productMenu id="protocol"
  11072. type="0">
  11073. </productMenu>
  11074. <productMenu id="sip"
  11075. type="1" >
  11076. </productMenu>
  11077. <productMenu id="bluetoothIntercom"
  11078. type="1" >
  11079. </productMenu>
  11080. <productMenu id="phone"
  11081. type="2" >
  11082. </productMenu>
  11083. <productMenu id="fmradio"
  11084. type="0" >
  11085. </productMenu>
  11086. <productMenu id="deviceSetting"
  11087. type="1"
  11088. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  11089. </productMenu>
  11090. <productMenu id="quickGuide"
  11091. type="0"
  11092. url=""
  11093. size="970KB" >
  11094. </productMenu>
  11095. <productMenu id="userGuide"
  11096. type="1"
  11097. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  11098. size="1.26MB" >
  11099. </productMenu>
  11100. <productID id="5538"
  11101. />
  11102. <productGroupable type="0"
  11103. />
  11104. </product>
  11105. <product id="3SPLUS"
  11106. name="3S PLUS"
  11107. series="3"
  11108. latestVersion="2.2"
  11109. show = "1" >
  11110. <productMenu id="protocol"
  11111. type="3" >
  11112. </productMenu>
  11113. <productMenu id="sip"
  11114. type="1" >
  11115. </productMenu>
  11116. <productMenu id="bluetoothIntercom"
  11117. type="1" >
  11118. </productMenu>
  11119. <productMenu id="deviceSetting"
  11120. type="1"
  11121. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  11122. <productMenuURL version="2.2.1"
  11123. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  11124. />
  11125. </productMenu>
  11126. <productMenu id="quickGuide"
  11127. type="1"
  11128. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11129. size="344KB" >
  11130. </productMenu>
  11131. <productMenu id="userGuide"
  11132. type="1"
  11133. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  11134. size="1.14MB" >
  11135. </productMenu>
  11136. <productMenu id="connectGuide"
  11137. type="1"
  11138. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  11139. size="1.12MB" >
  11140. </productMenu>
  11141. <productID id="4023"
  11142. />
  11143. <productGroupable type="0"
  11144. />
  11145. </product>
  11146. <product id="3SPLUS"
  11147. name="3S PLUS"
  11148. series="3"
  11149. latestVersion="1.1"
  11150. show = "-1" >
  11151. <productMenu id="protocol"
  11152. type="0">
  11153. </productMenu>
  11154. <productMenu id="sip"
  11155. type="1" >
  11156. </productMenu>
  11157. <productMenu id="bluetoothIntercom"
  11158. type="1" >
  11159. </productMenu>
  11160. <productMenu id="deviceSetting"
  11161. type="1"
  11162. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11163. </productMenu>
  11164. <productMenu id="quickGuide"
  11165. type="1"
  11166. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11167. size="842KB" >
  11168. </productMenu>
  11169. <productMenu id="userGuide"
  11170. type="1"
  11171. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  11172. size="1.02MB" >
  11173. </productMenu>
  11174. <productID id="6320"
  11175. />
  11176. <productGroupable type="0"
  11177. />
  11178. </product>
  11179. <product id="AConnect"
  11180. name="Alpinestars A-Connect"
  11181. series="60"
  11182. latestVersion="1.0.2"
  11183. latestVersionMesh="0.19"
  11184. latestVersionVoicePrompt="1.6"
  11185. show = "-1" >
  11186. <productMenu id="protocol"
  11187. type="2" >
  11188. </productMenu>
  11189. <productMenu id="ota"
  11190. type="2" >
  11191. <otaLanguages>
  11192. <otaLanguage
  11193. id="0"
  11194. name="English"
  11195. package="0"
  11196. />
  11197. <otaLanguage
  11198. id="0"
  11199. name="Français"
  11200. package="1"
  11201. />
  11202. <otaLanguage
  11203. id="0"
  11204. name="Español"
  11205. package="2"
  11206. />
  11207. <otaLanguage
  11208. id="0"
  11209. name="Italiano"
  11210. package="3"
  11211. />
  11212. <otaLanguage
  11213. id="0"
  11214. name="Deutsch"
  11215. package="4"
  11216. />
  11217. <otaLanguage
  11218. id="0"
  11219. name="Nederlands"
  11220. package="5"
  11221. />
  11222. <otaLanguage
  11223. id="0"
  11224. name="Русский"
  11225. package="6"
  11226. />
  11227. <otaLanguage
  11228. id="0"
  11229. name="简体中文"
  11230. package="7"
  11231. />
  11232. <otaLanguage
  11233. id="0"
  11234. name="한국어"
  11235. package="8"
  11236. />
  11237. <otaLanguage
  11238. id="0"
  11239. name="日本語"
  11240. package="9"
  11241. />
  11242. <otaLanguage
  11243. id="0"
  11244. name="Suomi"
  11245. package="10"
  11246. />
  11247. <otaLanguage
  11248. id="0"
  11249. name="Polski"
  11250. package="11"
  11251. />
  11252. </otaLanguages>
  11253. <otaPackages>
  11254. <package
  11255. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  11256. size="5183988"
  11257. />
  11258. <package
  11259. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  11260. size="5183988"
  11261. />
  11262. <package
  11263. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  11264. size="5183988"
  11265. />
  11266. <package
  11267. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  11268. size="5183988"
  11269. />
  11270. <package
  11271. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  11272. size="5183988"
  11273. />
  11274. <package
  11275. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  11276. size="5183988"
  11277. />
  11278. <package
  11279. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  11280. size="5183988"
  11281. />
  11282. <package
  11283. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  11284. size="5183988"
  11285. />
  11286. <package
  11287. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  11288. size="5183988"
  11289. />
  11290. <package
  11291. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  11292. size="5183988"
  11293. />
  11294. <package
  11295. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  11296. size="5183988"
  11297. />
  11298. <package
  11299. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  11300. size="5183988"
  11301. />
  11302. </otaPackages>
  11303. </productMenu>
  11304. <productMenu id="sip"
  11305. type="1" >
  11306. </productMenu>
  11307. <productMenu id="illusion"
  11308. type="0" >
  11309. </productMenu>
  11310. <productMenu id="meshIntercom+"
  11311. type="3"
  11312. url="2" >
  11313. </productMenu>
  11314. <productMenu id="waveIntercom"
  11315. type="1" >
  11316. </productMenu>
  11317. <productMenu id="bluetoothIntercom"
  11318. type="1"
  11319. url="2" >
  11320. </productMenu>
  11321. <productMenu id="bluetoothIntercomGrouping"
  11322. type="0" >
  11323. </productMenu>
  11324. <productMenu id="fmradio"
  11325. type="1"
  11326. url="1" >
  11327. </productMenu>
  11328. <productMenu id="phone"
  11329. type="1" >
  11330. </productMenu>
  11331. <productMenu id="music"
  11332. type="1" >
  11333. </productMenu>
  11334. <productMenu id="musicSharing"
  11335. type="0" >
  11336. </productMenu>
  11337. <productMenu id="deviceSetting"
  11338. type="1"
  11339. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  11340. <productMenuURL version="1.0.3"
  11341. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  11342. />
  11343. </productMenu>
  11344. <productMenu id="quickGuide"
  11345. type="0"
  11346. url=""
  11347. size="1.12MB" >
  11348. </productMenu>
  11349. <productMenu id="userGuide"
  11350. type="1"
  11351. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  11352. size="2.0MB" >
  11353. </productMenu>
  11354. <productMenu id="videoGuide"
  11355. type="0"
  11356. url=""
  11357. size="3.41MB" >
  11358. </productMenu>
  11359. <productMenu id="volume"
  11360. type="16" >
  11361. </productMenu>
  11362. <productMenu id="volume+"
  11363. type="2"
  11364. url="0x6004" >
  11365. </productMenu>
  11366. <productMenu id="soundMode"
  11367. type="0" >
  11368. </productMenu>
  11369. <productMenu id="battery"
  11370. type="1" >
  11371. </productMenu>
  11372. <productID id="6A82"
  11373. />
  11374. <productGroupable type="0"
  11375. />
  11376. </product>
  11377. <product id="iCon"
  11378. name="iCon"
  11379. series="50"
  11380. latestVersion="1.2"
  11381. show = "0" >
  11382. <productMenu id="protocol"
  11383. type="2" >
  11384. </productMenu>
  11385. <productMenu id="alexa"
  11386. type="0" >
  11387. </productMenu>
  11388. <productMenu id="wa"
  11389. type="0" >
  11390. </productMenu>
  11391. <productMenu id="sip"
  11392. type="1" >
  11393. </productMenu>
  11394. <productMenu id="led"
  11395. type="3" >
  11396. </productMenu>
  11397. <productMenu id="meshIntercom"
  11398. type="20" >
  11399. </productMenu>
  11400. <productMenu id="meshIntercom+"
  11401. type="3"
  11402. url="0" >
  11403. <productMenuType version="1.0.9"
  11404. type="2"
  11405. />
  11406. </productMenu>
  11407. <productMenu id="bluetoothIntercom"
  11408. type="1" >
  11409. </productMenu>
  11410. <productMenu id="phone"
  11411. type="1" >
  11412. </productMenu>
  11413. <productMenu id="music"
  11414. type="1" >
  11415. </productMenu>
  11416. <productMenu id="fmradio"
  11417. type="1" >
  11418. </productMenu>
  11419. <productMenu id="deviceSetting"
  11420. type="1"
  11421. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  11422. <productMenuURL version="1.0.9"
  11423. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11424. />
  11425. </productMenu>
  11426. <productMenu id="quickGuide"
  11427. type="1"
  11428. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  11429. size="344KB" >
  11430. </productMenu>
  11431. <productMenu id="userGuide"
  11432. type="1"
  11433. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  11434. size="3.41MB" >
  11435. </productMenu>
  11436. <productMenu id="volume"
  11437. type="11" >
  11438. </productMenu>
  11439. <productMenu id="battery"
  11440. type="1" >
  11441. </productMenu>
  11442. <productID id="3900"
  11443. />
  11444. <productGroupable type="0"
  11445. />
  11446. </product>
  11447. <product id="ICONHelmLinkSL"
  11448. name="ICON HelmLink SL"
  11449. series="50"
  11450. latestVersion="1.0"
  11451. latestVersionVoicePrompt="1.6"
  11452. show = "-1" >
  11453. <productMenu id="protocol"
  11454. type="2" >
  11455. </productMenu>
  11456. <productMenu id="alexa"
  11457. type="0" >
  11458. </productMenu>
  11459. <productMenu id="ota"
  11460. type="2" >
  11461. <otaPackages>
  11462. <package
  11463. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  11464. size="2945812"
  11465. />
  11466. </otaPackages>
  11467. </productMenu>
  11468. <productMenu id="wa"
  11469. type="0" >
  11470. </productMenu>
  11471. <productMenu id="meshIntercom"
  11472. type="30" >
  11473. </productMenu>
  11474. <productMenu id="meshIntercom+"
  11475. type="3"
  11476. url="2" >
  11477. </productMenu>
  11478. <productMenu id="waveIntercom"
  11479. type="1" >
  11480. </productMenu>
  11481. <productMenu id="phone"
  11482. type="1" >
  11483. </productMenu>
  11484. <productMenu id="music"
  11485. type="1" >
  11486. </productMenu>
  11487. <productMenu id="musicSharing"
  11488. type="0" >
  11489. </productMenu>
  11490. <productMenu id="deviceSetting"
  11491. type="1"
  11492. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_02.xml" >
  11493. </productMenu>
  11494. <productMenu id="quickGuide"
  11495. type="0"
  11496. url=""
  11497. size="1.12MB" >
  11498. </productMenu>
  11499. <productMenu id="userGuide"
  11500. type="1"
  11501. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  11502. size="2.0MB" >
  11503. </productMenu>
  11504. <productMenu id="volume"
  11505. type="12" >
  11506. </productMenu>
  11507. <productMenu id="battery"
  11508. type="1" >
  11509. </productMenu>
  11510. <productID id="6842"
  11511. />
  11512. <productGroupable type="0"
  11513. />
  11514. </product>
  11515. <product id="SC2"
  11516. name="SC2"
  11517. series="50"
  11518. latestVersion="2.4"
  11519. show = "0" >
  11520. <productMenu id="protocol"
  11521. type="2" >
  11522. </productMenu>
  11523. <productMenu id="alexa"
  11524. type="0" >
  11525. </productMenu>
  11526. <productMenu id="wa"
  11527. type="0" >
  11528. </productMenu>
  11529. <productMenu id="sip"
  11530. type="1" >
  11531. </productMenu>
  11532. <productMenu id="meshIntercom"
  11533. type="30" >
  11534. <productMenuType version="2.0.3"
  11535. type="20"
  11536. />
  11537. </productMenu>
  11538. <productMenu id="meshIntercom+"
  11539. type="3"
  11540. url="2" >
  11541. <productMenuType version="2.2.9"
  11542. type="2"
  11543. />
  11544. <productMenuURL version="2.0.3"
  11545. url="0"
  11546. />
  11547. </productMenu>
  11548. <productMenu id="waveIntercom"
  11549. type="1" >
  11550. <productMenuType version="2.2.9"
  11551. type="0"
  11552. />
  11553. </productMenu>
  11554. <productMenu id="bluetoothIntercom"
  11555. type="1" >
  11556. </productMenu>
  11557. <productMenu id="phone"
  11558. type="1" >
  11559. </productMenu>
  11560. <productMenu id="music"
  11561. type="1" >
  11562. </productMenu>
  11563. <productMenu id="fmradio"
  11564. type="1" >
  11565. </productMenu>
  11566. <productMenu id="deviceSetting"
  11567. type="1"
  11568. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_06.xml" >
  11569. <productMenuURL version="2.3.9"
  11570. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_05.xml"
  11571. />
  11572. <productMenuURL version="2.2.9"
  11573. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_04.xml"
  11574. />
  11575. <productMenuURL version="2.1"
  11576. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_02.xml"
  11577. />
  11578. <productMenuURL version="2.0.3"
  11579. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_01.xml"
  11580. />
  11581. </productMenu>
  11582. <productMenu id="quickGuide"
  11583. type="1"
  11584. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SC2_1.4.0_en_250520.pdf"
  11585. size="934KB" >
  11586. </productMenu>
  11587. <productMenu id="userGuide"
  11588. type="1"
  11589. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SC2_1.5.0_en_250528.pdf"
  11590. size="1.14MB" >
  11591. </productMenu>
  11592. <productMenu id="volume"
  11593. type="11" >
  11594. </productMenu>
  11595. <productMenu id="battery"
  11596. type="1" >
  11597. </productMenu>
  11598. <productID id="3217"
  11599. />
  11600. <productGroupable type="0"
  11601. />
  11602. </product>
  11603. <product id="SC2"
  11604. name="SC2"
  11605. series="50"
  11606. latestVersion="1.5"
  11607. show = "0" >
  11608. <productMenu id="protocol"
  11609. type="2" >
  11610. </productMenu>
  11611. <productMenu id="alexa"
  11612. type="0" >
  11613. </productMenu>
  11614. <productMenu id="wa"
  11615. type="0" >
  11616. </productMenu>
  11617. <productMenu id="sip"
  11618. type="1" >
  11619. </productMenu>
  11620. <productMenu id="meshIntercom"
  11621. type="30" >
  11622. <productMenuType version="1.1.4"
  11623. type="20"
  11624. />
  11625. </productMenu>
  11626. <productMenu id="meshIntercom+"
  11627. type="3"
  11628. url="2" >
  11629. <productMenuType version="1.3.9"
  11630. type="2"
  11631. />
  11632. <productMenuURL version="1.1.4"
  11633. url="0"
  11634. />
  11635. </productMenu>
  11636. <productMenu id="waveIntercom"
  11637. type="1" >
  11638. <productMenuType version="1.3.9"
  11639. type="0"
  11640. />
  11641. </productMenu>
  11642. <productMenu id="bluetoothIntercom"
  11643. type="1" >
  11644. </productMenu>
  11645. <productMenu id="phone"
  11646. type="1" >
  11647. </productMenu>
  11648. <productMenu id="music"
  11649. type="1" >
  11650. </productMenu>
  11651. <productMenu id="fmradio"
  11652. type="1" >
  11653. </productMenu>
  11654. <productMenu id="deviceSetting"
  11655. type="1"
  11656. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_06.xml" >
  11657. <productMenuURL version="1.4.9"
  11658. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_05.xml"
  11659. />
  11660. <productMenuURL version="1.3.9"
  11661. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_04.xml"
  11662. />
  11663. <productMenuURL version="1.2"
  11664. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_02.xml"
  11665. />
  11666. <productMenuURL version="1.1.4"
  11667. url="https://api.sena.com/support/Schuberth/SC2/NS_SC2_01.xml"
  11668. />
  11669. </productMenu>
  11670. <productMenu id="quickGuide"
  11671. type="1"
  11672. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SC2_1.4.0_en_250520.pdf"
  11673. size="934KB" >
  11674. </productMenu>
  11675. <productMenu id="userGuide"
  11676. type="1"
  11677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SC2_1.5.0_en_250528.pdf"
  11678. size="1.14MB" >
  11679. </productMenu>
  11680. <productMenu id="volume"
  11681. type="11" >
  11682. </productMenu>
  11683. <productMenu id="battery"
  11684. type="1" >
  11685. </productMenu>
  11686. <productID id="3170"
  11687. />
  11688. <productGroupable type="0"
  11689. />
  11690. </product>
  11691. <product id="HD50S"
  11692. name="H-D Audio 50S"
  11693. series="50"
  11694. latestVersion="1.0.1"
  11695. show = "-1" >
  11696. <productMenu id="protocol"
  11697. type="2" >
  11698. </productMenu>
  11699. <productMenu id="alexa"
  11700. type="0" >
  11701. </productMenu>
  11702. <productMenu id="ota"
  11703. type="0"
  11704. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11705. size="1150234" >
  11706. </productMenu>
  11707. <productMenu id="wa"
  11708. type="1" >
  11709. </productMenu>
  11710. <productMenu id="sip"
  11711. type="1" >
  11712. </productMenu>
  11713. <productMenu id="meshIntercom"
  11714. type="20" >
  11715. </productMenu>
  11716. <productMenu id="meshIntercom+"
  11717. type="3"
  11718. url="0" >
  11719. <productMenuType version="1.0.9"
  11720. type="2"
  11721. />
  11722. </productMenu>
  11723. <productMenu id="bluetoothIntercom"
  11724. type="1" >
  11725. </productMenu>
  11726. <productMenu id="phone"
  11727. type="1" >
  11728. </productMenu>
  11729. <productMenu id="music"
  11730. type="1" >
  11731. </productMenu>
  11732. <productMenu id="fmradio"
  11733. type="1" >
  11734. </productMenu>
  11735. <productMenu id="deviceSetting"
  11736. type="1"
  11737. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11738. <productMenuURL version="1.0.9"
  11739. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11740. />
  11741. </productMenu>
  11742. <productMenu id="quickGuide"
  11743. type="1"
  11744. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11745. size="934KB" >
  11746. </productMenu>
  11747. <productMenu id="userGuide"
  11748. type="1"
  11749. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  11750. size="1.14MB" >
  11751. </productMenu>
  11752. <productMenu id="volume"
  11753. type="11" >
  11754. </productMenu>
  11755. <productMenu id="battery"
  11756. type="1" >
  11757. </productMenu>
  11758. <productID id="3156"
  11759. />
  11760. <productGroupable type="0"
  11761. />
  11762. </product>
  11763. <product id="HD50S"
  11764. name="H-D Audio 50S"
  11765. series="50"
  11766. latestVersion="2.0.2"
  11767. show = "0" >
  11768. <productMenu id="protocol"
  11769. type="2" >
  11770. </productMenu>
  11771. <productMenu id="alexa"
  11772. type="0" >
  11773. </productMenu>
  11774. <productMenu id="ota"
  11775. type="0"
  11776. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11777. size="1150234" >
  11778. </productMenu>
  11779. <productMenu id="wa"
  11780. type="1" >
  11781. </productMenu>
  11782. <productMenu id="sip"
  11783. type="1" >
  11784. </productMenu>
  11785. <productMenu id="meshIntercom"
  11786. type="20" >
  11787. </productMenu>
  11788. <productMenu id="meshIntercom+"
  11789. type="3"
  11790. url="0" >
  11791. <productMenuType version="2.0.9"
  11792. type="2"
  11793. />
  11794. </productMenu>
  11795. <productMenu id="bluetoothIntercom"
  11796. type="1" >
  11797. </productMenu>
  11798. <productMenu id="phone"
  11799. type="1" >
  11800. </productMenu>
  11801. <productMenu id="music"
  11802. type="1" >
  11803. </productMenu>
  11804. <productMenu id="fmradio"
  11805. type="1" >
  11806. </productMenu>
  11807. <productMenu id="deviceSetting"
  11808. type="1"
  11809. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11810. <productMenuURL version="2.0.9"
  11811. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11812. />
  11813. </productMenu>
  11814. <productMenu id="quickGuide"
  11815. type="1"
  11816. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11817. size="934KB" >
  11818. </productMenu>
  11819. <productMenu id="userGuide"
  11820. type="1"
  11821. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11822. size="1.14MB" >
  11823. </productMenu>
  11824. <productMenu id="volume"
  11825. type="11" >
  11826. </productMenu>
  11827. <productMenu id="battery"
  11828. type="1" >
  11829. </productMenu>
  11830. <productID id="3213"
  11831. />
  11832. <productGroupable type="0"
  11833. />
  11834. </product>
  11835. <product id="HD50C"
  11836. name="H-D Audio 50C"
  11837. series="50"
  11838. latestVersion="1.0.1"
  11839. show = "0" >
  11840. <productMenu id="protocol"
  11841. type="2" >
  11842. </productMenu>
  11843. <productMenu id="ota"
  11844. type="0" >
  11845. </productMenu>
  11846. <productMenu id="wa"
  11847. type="1" >
  11848. </productMenu>
  11849. <productMenu id="sip"
  11850. type="1" >
  11851. </productMenu>
  11852. <productMenu id="meshIntercom"
  11853. type="20" >
  11854. </productMenu>
  11855. <productMenu id="meshIntercom+"
  11856. type="3"
  11857. url="0" >
  11858. <productMenuType version="1.0.9"
  11859. type="2"
  11860. />
  11861. </productMenu>
  11862. <productMenu id="bluetoothIntercom"
  11863. type="1" >
  11864. </productMenu>
  11865. <productMenu id="phone"
  11866. type="1" >
  11867. </productMenu>
  11868. <productMenu id="music"
  11869. type="1" >
  11870. </productMenu>
  11871. <productMenu id="fmradio"
  11872. type="1" >
  11873. </productMenu>
  11874. <productMenu id="deviceSetting"
  11875. type="1"
  11876. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11877. <productMenuURL version="1.0.9"
  11878. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11879. />
  11880. </productMenu>
  11881. <productMenu id="quickGuide"
  11882. type="1"
  11883. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11884. size="344KB" >
  11885. </productMenu>
  11886. <productMenu id="userGuide"
  11887. type="1"
  11888. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11889. size="3.41MB" >
  11890. </productMenu>
  11891. <productMenu id="volume"
  11892. type="11" >
  11893. </productMenu>
  11894. <productMenu id="battery"
  11895. type="1" >
  11896. </productMenu>
  11897. <productID id="3240"
  11898. />
  11899. <productGroupable type="0"
  11900. />
  11901. </product>
  11902. <product id="HD50S"
  11903. name="FURY N04"
  11904. series="Helmet"
  11905. latestVersion="1.0"
  11906. show = "0" >
  11907. <productMenu id="protocol"
  11908. type="2" >
  11909. </productMenu>
  11910. <productMenu id="alexa"
  11911. type="0" >
  11912. </productMenu>
  11913. <productMenu id="ota"
  11914. type="0" >
  11915. </productMenu>
  11916. <productMenu id="wa"
  11917. type="0" >
  11918. </productMenu>
  11919. <productMenu id="meshIntercom"
  11920. type="20" >
  11921. </productMenu>
  11922. <productMenu id="meshIntercom+"
  11923. type="3"
  11924. url="0" >
  11925. <productMenuType version="1.0.9"
  11926. type="2"
  11927. />
  11928. </productMenu>
  11929. <productMenu id="phone"
  11930. type="1" >
  11931. </productMenu>
  11932. <productMenu id="music"
  11933. type="1" >
  11934. </productMenu>
  11935. <productMenu id="fmradio"
  11936. type="1" >
  11937. </productMenu>
  11938. <productMenu id="deviceSetting"
  11939. type="1"
  11940. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  11941. <productMenuURL version="1.0.9"
  11942. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  11943. />
  11944. </productMenu>
  11945. <productMenu id="quickGuide"
  11946. type="1"
  11947. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  11948. size="1.12MB" >
  11949. </productMenu>
  11950. <productMenu id="userGuide"
  11951. type="1"
  11952. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  11953. size="2.0MB" >
  11954. </productMenu>
  11955. <productMenu id="volume"
  11956. type="13" >
  11957. </productMenu>
  11958. <productMenu id="battery"
  11959. type="1" >
  11960. </productMenu>
  11961. <productID id="5553"
  11962. />
  11963. <productGroupable type="0"
  11964. />
  11965. </product>
  11966. <product id="XCOM3Pro"
  11967. name="X-COM3 Pro"
  11968. series="50"
  11969. latestVersion="1.1"
  11970. show = "0" >
  11971. <productMenu id="protocol"
  11972. type="2" >
  11973. </productMenu>
  11974. <productMenu id="alexa"
  11975. type="0" >
  11976. </productMenu>
  11977. <productMenu id="ota"
  11978. type="0" >
  11979. </productMenu>
  11980. <productMenu id="wa"
  11981. type="0" >
  11982. </productMenu>
  11983. <productMenu id="sip"
  11984. type="1" >
  11985. </productMenu>
  11986. <productMenu id="meshIntercom"
  11987. type="30" >
  11988. </productMenu>
  11989. <productMenu id="meshIntercom+"
  11990. type="3"
  11991. url="2" >
  11992. <productMenuType version="1.1"
  11993. type="2"
  11994. />
  11995. </productMenu>
  11996. <productMenu id="waveIntercom"
  11997. type="1" >
  11998. <productMenuType version="1.1"
  11999. type="0"
  12000. />
  12001. </productMenu>
  12002. <productMenu id="bluetoothIntercom"
  12003. type="1" >
  12004. </productMenu>
  12005. <productMenu id="phone"
  12006. type="1" >
  12007. </productMenu>
  12008. <productMenu id="music"
  12009. type="1" >
  12010. </productMenu>
  12011. <productMenu id="fmradio"
  12012. type="1" >
  12013. </productMenu>
  12014. <productMenu id="deviceSetting"
  12015. type="1"
  12016. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  12017. <productMenuURL version="1.1"
  12018. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  12019. />
  12020. </productMenu>
  12021. <productMenu id="quickGuide"
  12022. type="0"
  12023. url=""
  12024. size="344KB" >
  12025. </productMenu>
  12026. <productMenu id="userGuide"
  12027. type="1"
  12028. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  12029. size="3.41MB" >
  12030. </productMenu>
  12031. <productMenu id="volume"
  12032. type="11" >
  12033. </productMenu>
  12034. <productMenu id="battery"
  12035. type="1" >
  12036. </productMenu>
  12037. <productID id="321A"
  12038. />
  12039. <productGroupable type="0"
  12040. />
  12041. </product>
  12042. <product id="XCOM3"
  12043. name="X-COM3"
  12044. series="20"
  12045. latestVersion="1.0"
  12046. show = "0" >
  12047. <productMenu id="protocol"
  12048. type="2" >
  12049. </productMenu>
  12050. <productMenu id="sip"
  12051. type="1" >
  12052. </productMenu>
  12053. <productMenu id="bluetoothIntercom"
  12054. type="1" >
  12055. </productMenu>
  12056. <productMenu id="phone"
  12057. type="1" >
  12058. </productMenu>
  12059. <productMenu id="music"
  12060. type="1" >
  12061. </productMenu>
  12062. <productMenu id="fmradio"
  12063. type="1" >
  12064. </productMenu>
  12065. <productMenu id="deviceSetting"
  12066. type="1"
  12067. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  12068. </productMenu>
  12069. <productMenu id="quickGuide"
  12070. type="0"
  12071. url=""
  12072. size="934KB" >
  12073. </productMenu>
  12074. <productMenu id="userGuide"
  12075. type="1"
  12076. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  12077. size="1.14MB" >
  12078. </productMenu>
  12079. <productMenu id="volume"
  12080. type="15" >
  12081. </productMenu>
  12082. <productID id="3410"
  12083. />
  12084. <productGroupable type="0"
  12085. />
  12086. </product>
  12087. <product id="X-COM2"
  12088. name="X-COM2"
  12089. series="20"
  12090. latestVersion="1.0.5"
  12091. show = "0" >
  12092. <productMenu id="protocol"
  12093. type="0">
  12094. </productMenu>
  12095. <productMenu id="sip"
  12096. type="1" >
  12097. </productMenu>
  12098. <productMenu id="bluetoothIntercom"
  12099. type="1" >
  12100. </productMenu>
  12101. <productMenu id="intercomSetting"
  12102. type="1" >
  12103. </productMenu>
  12104. <productMenu id="phone"
  12105. type="2" >
  12106. </productMenu>
  12107. <productMenu id="fmradio"
  12108. type="3" >
  12109. </productMenu>
  12110. <productMenu id="deviceSetting"
  12111. type="1"
  12112. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  12113. </productMenu>
  12114. <productMenu id="quickGuide"
  12115. type="1"
  12116. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  12117. size="796KB" >
  12118. </productMenu>
  12119. <productMenu id="userGuide"
  12120. type="1"
  12121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  12122. size="1.90MB" >
  12123. </productMenu>
  12124. <productID id="2030"
  12125. />
  12126. <productGroupable type="1"
  12127. />
  12128. </product>
  12129. <product id="AVAABC"
  12130. name="AVA ABC"
  12131. series="SPIDER"
  12132. latestVersion="1.1"
  12133. show = "0" >
  12134. <productMenu id="protocol"
  12135. type="2" >
  12136. </productMenu>
  12137. <productMenu id="alexa"
  12138. type="0" >
  12139. </productMenu>
  12140. <productMenu id="ota"
  12141. type="0" >
  12142. <productMenuType version="1.0"
  12143. type="0"
  12144. />
  12145. <otaPackages>
  12146. <package
  12147. url="https://api.sena.com/support/OTA/"
  12148. size="2945812"
  12149. />
  12150. </otaPackages>
  12151. </productMenu>
  12152. <productMenu id="wa"
  12153. type="0" >
  12154. </productMenu>
  12155. <productMenu id="meshIntercom"
  12156. type="30" >
  12157. <productMenuType version="1.0"
  12158. type="20"
  12159. />
  12160. </productMenu>
  12161. <productMenu id="meshIntercom+"
  12162. type="3"
  12163. url="2" >
  12164. <productMenuType version="1.0"
  12165. type="2"
  12166. />
  12167. <productMenuURL version="1.0"
  12168. url="0"
  12169. />
  12170. </productMenu>
  12171. <productMenu id="waveIntercom"
  12172. type="1" >
  12173. <productMenuType version="1.0"
  12174. type="0"
  12175. />
  12176. </productMenu>
  12177. <productMenu id="phone"
  12178. type="1" >
  12179. </productMenu>
  12180. <productMenu id="music"
  12181. type="1" >
  12182. </productMenu>
  12183. <productMenu id="musicSharing"
  12184. type="0" >
  12185. </productMenu>
  12186. <productMenu id="deviceSetting"
  12187. type="1"
  12188. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  12189. <productMenuURL version="1.0"
  12190. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  12191. />
  12192. </productMenu>
  12193. <productMenu id="quickGuide"
  12194. type="1"
  12195. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  12196. size="1.12MB" >
  12197. </productMenu>
  12198. <productMenu id="userGuide"
  12199. type="1"
  12200. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  12201. size="2.0MB" >
  12202. </productMenu>
  12203. <productMenu id="volume"
  12204. type="12" >
  12205. </productMenu>
  12206. <productMenu id="battery"
  12207. type="1" >
  12208. </productMenu>
  12209. <productID id="6808"
  12210. />
  12211. <productGroupable type="0"
  12212. />
  12213. </product>
  12214. <product id="ADVANCEProCOM2"
  12215. name="ADVANCE ProCOM 2"
  12216. series="Helmet"
  12217. latestVersion="0.5"
  12218. latestVersionVoicePrompt="0.3"
  12219. show = "-1" >
  12220. <productMenu id="protocol"
  12221. type="2" >
  12222. </productMenu>
  12223. <productMenu id="ota"
  12224. type="2" >
  12225. <otaLanguages>
  12226. <otaLanguage
  12227. id="0"
  12228. name="English"
  12229. package="0"
  12230. />
  12231. <otaLanguage
  12232. id="0"
  12233. name="Français"
  12234. package="1"
  12235. />
  12236. <otaLanguage
  12237. id="0"
  12238. name="Español"
  12239. package="2"
  12240. />
  12241. <otaLanguage
  12242. id="0"
  12243. name="Italiano"
  12244. package="3"
  12245. />
  12246. <otaLanguage
  12247. id="0"
  12248. name="Deutsch"
  12249. package="4"
  12250. />
  12251. <otaLanguage
  12252. id="0"
  12253. name="Nederlands"
  12254. package="5"
  12255. />
  12256. <otaLanguage
  12257. id="0"
  12258. name="Русский"
  12259. package="6"
  12260. />
  12261. <otaLanguage
  12262. id="0"
  12263. name="简体中文"
  12264. package="7"
  12265. />
  12266. <otaLanguage
  12267. id="0"
  12268. name="한국어"
  12269. package="8"
  12270. />
  12271. <otaLanguage
  12272. id="0"
  12273. name="日本語"
  12274. package="9"
  12275. />
  12276. <otaLanguage
  12277. id="0"
  12278. name="Suomi"
  12279. package="10"
  12280. />
  12281. <otaLanguage
  12282. id="0"
  12283. name="Polski"
  12284. package="11"
  12285. />
  12286. </otaLanguages>
  12287. <otaPackages>
  12288. <package
  12289. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  12290. size="5183988"
  12291. />
  12292. <package
  12293. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  12294. size="5183988"
  12295. />
  12296. <package
  12297. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  12298. size="5183988"
  12299. />
  12300. <package
  12301. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  12302. size="5183988"
  12303. />
  12304. <package
  12305. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  12306. size="5183988"
  12307. />
  12308. <package
  12309. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  12310. size="5183988"
  12311. />
  12312. <package
  12313. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  12314. size="5183988"
  12315. />
  12316. <package
  12317. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  12318. size="5183988"
  12319. />
  12320. <package
  12321. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  12322. size="5183988"
  12323. />
  12324. <package
  12325. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  12326. size="5183988"
  12327. />
  12328. <package
  12329. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  12330. size="5183988"
  12331. />
  12332. <package
  12333. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  12334. size="5183988"
  12335. />
  12336. </otaPackages>
  12337. </productMenu>
  12338. <productMenu id="wa"
  12339. type="0" >
  12340. </productMenu>
  12341. <productMenu id="meshIntercom"
  12342. type="30" >
  12343. </productMenu>
  12344. <productMenu id="meshIntercom+"
  12345. type="3"
  12346. url="2" >
  12347. </productMenu>
  12348. <productMenu id="waveIntercom"
  12349. type="1" >
  12350. </productMenu>
  12351. <productMenu id="fmradio"
  12352. type="1" >
  12353. </productMenu>
  12354. <productMenu id="phone"
  12355. type="0" >
  12356. </productMenu>
  12357. <productMenu id="music"
  12358. type="1" >
  12359. </productMenu>
  12360. <productMenu id="musicSharing"
  12361. type="0" >
  12362. </productMenu>
  12363. <productMenu id="deviceSetting"
  12364. type="1"
  12365. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  12366. </productMenu>
  12367. <productMenu id="quickGuide"
  12368. type="0"
  12369. url=""
  12370. size="1.12MB" >
  12371. </productMenu>
  12372. <productMenu id="userGuide"
  12373. type="1"
  12374. url=""
  12375. size="2.0MB" >
  12376. </productMenu>
  12377. <productMenu id="videoGuide"
  12378. type="0"
  12379. url=""
  12380. size="3.41MB" >
  12381. </productMenu>
  12382. <productMenu id="connectGuide"
  12383. type="1"
  12384. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  12385. size="1.12MB" >
  12386. </productMenu>
  12387. <productMenu id="volume"
  12388. type="16" >
  12389. </productMenu>
  12390. <productMenu id="battery"
  12391. type="1" >
  12392. </productMenu>
  12393. <productID id="6A85"
  12394. />
  12395. <productGroupable type="0"
  12396. />
  12397. </product>
  12398. <product id="TRIUMPH60X"
  12399. name="TRIUMPH 60X"
  12400. series="60"
  12401. latestVersion="0.3"
  12402. latestVersionMesh="0.19"
  12403. latestVersionVoicePrompt="1.8"
  12404. show = "-1" >
  12405. <productMenu id="protocol"
  12406. type="2" >
  12407. </productMenu>
  12408. <productMenu id="ota"
  12409. type="2" >
  12410. <otaLanguages>
  12411. <otaLanguage
  12412. id="0"
  12413. name="English"
  12414. package="0"
  12415. />
  12416. <otaLanguage
  12417. id="0"
  12418. name="Français"
  12419. package="1"
  12420. />
  12421. <otaLanguage
  12422. id="0"
  12423. name="Español"
  12424. package="2"
  12425. />
  12426. <otaLanguage
  12427. id="0"
  12428. name="Italiano"
  12429. package="3"
  12430. />
  12431. <otaLanguage
  12432. id="0"
  12433. name="Deutsch"
  12434. package="4"
  12435. />
  12436. <otaLanguage
  12437. id="0"
  12438. name="Nederlands"
  12439. package="5"
  12440. />
  12441. <otaLanguage
  12442. id="0"
  12443. name="Русский"
  12444. package="6"
  12445. />
  12446. <otaLanguage
  12447. id="0"
  12448. name="简体中文"
  12449. package="7"
  12450. />
  12451. <otaLanguage
  12452. id="0"
  12453. name="한국어"
  12454. package="8"
  12455. />
  12456. <otaLanguage
  12457. id="0"
  12458. name="日本語"
  12459. package="9"
  12460. />
  12461. <otaLanguage
  12462. id="0"
  12463. name="Suomi"
  12464. package="10"
  12465. />
  12466. <otaLanguage
  12467. id="0"
  12468. name="Polski"
  12469. package="11"
  12470. />
  12471. </otaLanguages>
  12472. <otaPackages>
  12473. <package
  12474. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0.img"
  12475. size="5183988"
  12476. />
  12477. <package
  12478. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-fr-FR.img"
  12479. size="5183988"
  12480. />
  12481. <package
  12482. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-es-ES.img"
  12483. size="5183988"
  12484. />
  12485. <package
  12486. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-it-IT.img"
  12487. size="5183988"
  12488. />
  12489. <package
  12490. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-de-DE.img"
  12491. size="5183988"
  12492. />
  12493. <package
  12494. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-nl-NL.img"
  12495. size="5183988"
  12496. />
  12497. <package
  12498. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ru-RU.img"
  12499. size="5183988"
  12500. />
  12501. <package
  12502. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-cmn-CN.img"
  12503. size="5183988"
  12504. />
  12505. <package
  12506. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ko-KR.img"
  12507. size="5183988"
  12508. />
  12509. <package
  12510. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-ja-JP.img"
  12511. size="5183988"
  12512. />
  12513. <package
  12514. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-fi-FI.img"
  12515. size="5183988"
  12516. />
  12517. <package
  12518. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/TRIUMPH60X/TRIUMPH_60X-v0.3-build0-pl-PL.img"
  12519. size="5183988"
  12520. />
  12521. </otaPackages>
  12522. </productMenu>
  12523. <productMenu id="wa"
  12524. type="0" >
  12525. </productMenu>
  12526. <productMenu id="sip"
  12527. type="1" >
  12528. </productMenu>
  12529. <productMenu id="led"
  12530. type="1" >
  12531. </productMenu>
  12532. <productMenu id="illusion"
  12533. type="1" >
  12534. </productMenu>
  12535. <productMenu id="meshIntercom"
  12536. type="30" >
  12537. </productMenu>
  12538. <productMenu id="meshIntercom+"
  12539. type="3"
  12540. url="2" >
  12541. </productMenu>
  12542. <productMenu id="bluetoothIntercom"
  12543. type="1" >
  12544. </productMenu>
  12545. <productMenu id="fmradio"
  12546. type="1"
  12547. url="1" >
  12548. </productMenu>
  12549. <productMenu id="mic"
  12550. type="0" >
  12551. </productMenu>
  12552. <productMenu id="phone"
  12553. type="1" >
  12554. </productMenu>
  12555. <productMenu id="music"
  12556. type="1" >
  12557. </productMenu>
  12558. <productMenu id="musicSharing"
  12559. type="0" >
  12560. </productMenu>
  12561. <productMenu id="deviceSetting"
  12562. type="1"
  12563. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  12564. </productMenu>
  12565. <productMenu id="quickGuide"
  12566. type="0"
  12567. url=""
  12568. size="1.12MB" >
  12569. </productMenu>
  12570. <productMenu id="userGuide"
  12571. type="1"
  12572. url=""
  12573. size="2.0MB" >
  12574. </productMenu>
  12575. <productMenu id="videoGuide"
  12576. type="0"
  12577. url=""
  12578. size="3.41MB" >
  12579. </productMenu>
  12580. <productMenu id="keySettings"
  12581. type="1"
  12582. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  12583. </productMenu>
  12584. <productMenu id="volume"
  12585. type="13" >
  12586. </productMenu>
  12587. <productMenu id="volume+"
  12588. type="2"
  12589. url="0x6004" >
  12590. </productMenu>
  12591. <productMenu id="battery"
  12592. type="1" >
  12593. </productMenu>
  12594. <productID id="6A1C"
  12595. />
  12596. <productGroupable type="0"
  12597. />
  12598. </product>
  12599. <product id="Triumph_50S"
  12600. name="Triumph 50S"
  12601. series="50"
  12602. latestVersion="1.5"
  12603. show = "0" >
  12604. <productMenu id="protocol"
  12605. type="2" >
  12606. </productMenu>
  12607. <productMenu id="alexa"
  12608. type="0" >
  12609. </productMenu>
  12610. <productMenu id="ota"
  12611. type="0"
  12612. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12613. size="1150234" >
  12614. </productMenu>
  12615. <productMenu id="wa"
  12616. type="1" >
  12617. </productMenu>
  12618. <productMenu id="sip"
  12619. type="1" >
  12620. </productMenu>
  12621. <productMenu id="meshIntercom"
  12622. type="20" >
  12623. </productMenu>
  12624. <productMenu id="bluetoothIntercom"
  12625. type="1" >
  12626. </productMenu>
  12627. <productMenu id="meshIntercom+"
  12628. type="3"
  12629. url="2" >
  12630. <productMenuType version="1.2.9"
  12631. type="2"
  12632. />
  12633. <productMenuURL version="1.2.9"
  12634. url="0"
  12635. />
  12636. </productMenu>
  12637. <productMenu id="waveIntercom"
  12638. type="1" >
  12639. <productMenuType version="1.2.9"
  12640. type="0"
  12641. />
  12642. </productMenu>
  12643. <productMenu id="phone"
  12644. type="1" >
  12645. </productMenu>
  12646. <productMenu id="music"
  12647. type="1" >
  12648. </productMenu>
  12649. <productMenu id="fmradio"
  12650. type="1" >
  12651. </productMenu>
  12652. <productMenu id="deviceSetting"
  12653. type="1"
  12654. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12655. <productMenuURL version="1.2.9"
  12656. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  12657. />
  12658. <productMenuURL version="1.0"
  12659. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  12660. />
  12661. </productMenu>
  12662. <productMenu id="quickGuide"
  12663. type="1"
  12664. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  12665. size="934KB" >
  12666. </productMenu>
  12667. <productMenu id="userGuide"
  12668. type="1"
  12669. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  12670. size="1.14MB" >
  12671. </productMenu>
  12672. <productMenu id="volume"
  12673. type="11" >
  12674. </productMenu>
  12675. <productMenu id="battery"
  12676. type="1" >
  12677. </productMenu>
  12678. <productID id="3264"
  12679. />
  12680. <productGroupable type="0"
  12681. />
  12682. </product>
  12683. <product id="RE50S"
  12684. name="RE 50S"
  12685. series="50"
  12686. latestVersion="2.7"
  12687. show = "0" >
  12688. <productMenu id="protocol"
  12689. type="2" >
  12690. </productMenu>
  12691. <productMenu id="alexa"
  12692. type="0" >
  12693. </productMenu>
  12694. <productMenu id="ota"
  12695. type="0"
  12696. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  12697. size="1150234" >
  12698. </productMenu>
  12699. <productMenu id="wa"
  12700. type="1" >
  12701. </productMenu>
  12702. <productMenu id="sip"
  12703. type="1" >
  12704. </productMenu>
  12705. <productMenu id="meshIntercom"
  12706. type="30" >
  12707. </productMenu>
  12708. <productMenu id="meshIntercom+"
  12709. type="3"
  12710. url="2" >
  12711. <productMenuType version="2.5"
  12712. type="2"
  12713. />
  12714. </productMenu>
  12715. <productMenu id="waveIntercom"
  12716. type="1" >
  12717. <productMenuType version="2.5"
  12718. type="0"
  12719. />
  12720. </productMenu>
  12721. <productMenu id="bluetoothIntercom"
  12722. type="1" >
  12723. </productMenu>
  12724. <productMenu id="phone"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="music"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="fmradio"
  12731. type="1" >
  12732. </productMenu>
  12733. <productMenu id="deviceSetting"
  12734. type="1"
  12735. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  12736. <productMenuURL version="2.5.9"
  12737. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  12738. />
  12739. </productMenu>
  12740. <productMenu id="quickGuide"
  12741. type="1"
  12742. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  12743. size="934KB" >
  12744. </productMenu>
  12745. <productMenu id="userGuide"
  12746. type="1"
  12747. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  12748. size="1.14MB" >
  12749. </productMenu>
  12750. <productMenu id="videoGuide"
  12751. type="0"
  12752. url=""
  12753. size="3.41MB" >
  12754. </productMenu>
  12755. <productMenu id="volume"
  12756. type="11" >
  12757. </productMenu>
  12758. <productMenu id="battery"
  12759. type="1" >
  12760. </productMenu>
  12761. <productID id="321C"
  12762. />
  12763. <productGroupable type="0"
  12764. />
  12765. </product>
  12766. <product id="BMW_HELMET_II_U1"
  12767. name="BMW HELMET II U1"
  12768. series="50"
  12769. latestVersion="1.0"
  12770. show = "0" >
  12771. <productMenu id="protocol"
  12772. type="2" >
  12773. </productMenu>
  12774. <productMenu id="alexa"
  12775. type="0" >
  12776. </productMenu>
  12777. <productMenu id="sip"
  12778. type="1" >
  12779. </productMenu>
  12780. <productMenu id="meshIntercom"
  12781. type="20" >
  12782. </productMenu>
  12783. <productMenu id="bluetoothIntercom"
  12784. type="1" >
  12785. </productMenu>
  12786. <productMenu id="bluetoothIntercom2"
  12787. type="1" >
  12788. </productMenu>
  12789. <productMenu id="phone"
  12790. type="1" >
  12791. </productMenu>
  12792. <productMenu id="music"
  12793. type="1" >
  12794. </productMenu>
  12795. <productMenu id="fmradio"
  12796. type="1" >
  12797. </productMenu>
  12798. <productMenu id="deviceSetting"
  12799. type="1"
  12800. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  12801. </productMenu>
  12802. <productMenu id="quickGuide"
  12803. type="1"
  12804. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  12805. size="934KB" >
  12806. </productMenu>
  12807. <productMenu id="userGuide"
  12808. type="1"
  12809. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  12810. size="1.14MB" >
  12811. </productMenu>
  12812. <productMenu id="volume"
  12813. type="11" >
  12814. </productMenu>
  12815. <productMenu id="battery"
  12816. type="1" >
  12817. </productMenu>
  12818. <productID id="3260"
  12819. />
  12820. <productGroupable type="0"
  12821. />
  12822. </product>
  12823. <product id="OUTRUSHR"
  12824. name="CX935"
  12825. series="Helmet"
  12826. latestVersion="2.1"
  12827. show = "-1" >
  12828. <productMenu id="protocol"
  12829. type="3">
  12830. </productMenu>
  12831. <productMenu id="sip"
  12832. type="1" >
  12833. </productMenu>
  12834. <productMenu id="bluetoothIntercom"
  12835. type="1" >
  12836. </productMenu>
  12837. <productMenu id="phone"
  12838. type="1" >
  12839. </productMenu>
  12840. <productMenu id="fmradio"
  12841. type="0" >
  12842. </productMenu>
  12843. <productMenu id="deviceSetting"
  12844. type="1"
  12845. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  12846. </productMenu>
  12847. <productMenu id="userGuide"
  12848. type="1"
  12849. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  12850. size="660KB" >
  12851. </productMenu>
  12852. <productID id="5446"
  12853. />
  12854. <productGroupable type="0"
  12855. />
  12856. </product>
  12857. <product id="LSE_01"
  12858. name="LSE-01"
  12859. series="SF"
  12860. latestVersion="1.2.3"
  12861. show = "0" >
  12862. <productMenu id="protocol"
  12863. type="1"
  12864. url="3">
  12865. </productMenu>
  12866. <productMenu id="sip"
  12867. type="1" >
  12868. </productMenu>
  12869. <productMenu id="bluetoothIntercom"
  12870. type="1" >
  12871. </productMenu>
  12872. <productMenu id="phone"
  12873. type="1" >
  12874. </productMenu>
  12875. <productMenu id="music"
  12876. type="1" >
  12877. </productMenu>
  12878. <productMenu id="fmradio"
  12879. type="1" >
  12880. </productMenu>
  12881. <productMenu id="deviceSetting"
  12882. type="1"
  12883. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12884. <productMenuURL version="1.1"
  12885. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  12886. />
  12887. <productMenuURL version="1.0"
  12888. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  12889. />
  12890. </productMenu>
  12891. <productMenu id="quickGuide"
  12892. type="1"
  12893. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  12894. size="607KB" >
  12895. </productMenu>
  12896. <productMenu id="userGuide"
  12897. type="1"
  12898. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  12899. size="1.91MB" >
  12900. </productMenu>
  12901. <productMenu id="volume"
  12902. type="4" >
  12903. </productMenu>
  12904. <productID id="5416"
  12905. />
  12906. <productGroupable type="0"
  12907. />
  12908. </product>
  12909. <product id="AGV_ARK"
  12910. name="AGV ARK"
  12911. series="SF"
  12912. latestVersion="1.0.3"
  12913. show = "0" >
  12914. <productMenu id="protocol"
  12915. type="1"
  12916. url="3">
  12917. </productMenu>
  12918. <productMenu id="sip"
  12919. type="1" >
  12920. </productMenu>
  12921. <productMenu id="bluetoothIntercom"
  12922. type="1" >
  12923. </productMenu>
  12924. <productMenu id="phone"
  12925. type="1" >
  12926. </productMenu>
  12927. <productMenu id="music"
  12928. type="1" >
  12929. </productMenu>
  12930. <productMenu id="fmradio"
  12931. type="1" >
  12932. </productMenu>
  12933. <productMenu id="deviceSetting"
  12934. type="1"
  12935. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12936. </productMenu>
  12937. <productMenu id="quickGuide"
  12938. type="1"
  12939. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  12940. size="607KB" >
  12941. </productMenu>
  12942. <productMenu id="userGuide"
  12943. type="1"
  12944. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  12945. size="1.91MB" >
  12946. </productMenu>
  12947. <productMenu id="volume"
  12948. type="4" >
  12949. </productMenu>
  12950. <productID id="5420"
  12951. />
  12952. <productGroupable type="0"
  12953. />
  12954. </product>
  12955. <product id="KLIM_KRIOS"
  12956. name="KLIM Krios"
  12957. series="10"
  12958. latestVersion="1.1.2"
  12959. show = "0" >
  12960. <productMenu id="protocol"
  12961. type="0">
  12962. </productMenu>
  12963. <productMenu id="sip"
  12964. type="1" >
  12965. </productMenu>
  12966. <productMenu id="bluetoothIntercom"
  12967. type="1" >
  12968. </productMenu>
  12969. <productMenu id="phone"
  12970. type="2" >
  12971. </productMenu>
  12972. <productMenu id="fmradio"
  12973. type="3" >
  12974. </productMenu>
  12975. <productMenu id="deviceSetting"
  12976. type="1"
  12977. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  12978. <productMenuURL version="1.0"
  12979. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  12980. />
  12981. </productMenu>
  12982. <productMenu id="quickGuide"
  12983. type="1"
  12984. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  12985. size="649KB" >
  12986. </productMenu>
  12987. <productMenu id="userGuide"
  12988. type="1"
  12989. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  12990. size="1.43MB" >
  12991. </productMenu>
  12992. <productID id="5910"
  12993. />
  12994. <productGroupable type="0"
  12995. />
  12996. </product>
  12997. <product id="POLARIS_SLINGSHOT"
  12998. name="Polaris Slingshot"
  12999. series="10"
  13000. latestVersion="1.1.2"
  13001. show = "0" >
  13002. <productMenu id="protocol"
  13003. type="0">
  13004. </productMenu>
  13005. <productMenu id="sip"
  13006. type="1" >
  13007. </productMenu>
  13008. <productMenu id="bluetoothIntercom"
  13009. type="1" >
  13010. </productMenu>
  13011. <productMenu id="phone"
  13012. type="2" >
  13013. </productMenu>
  13014. <productMenu id="fmradio"
  13015. type="3" >
  13016. </productMenu>
  13017. <productMenu id="deviceSetting"
  13018. type="1"
  13019. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  13020. <productMenuURL version="1.0"
  13021. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  13022. />
  13023. </productMenu>
  13024. <productMenu id="quickGuide"
  13025. type="1"
  13026. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  13027. size="689KB" >
  13028. </productMenu>
  13029. <productMenu id="userGuide"
  13030. type="1"
  13031. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  13032. size="1.43MB" >
  13033. </productMenu>
  13034. <productID id="5920"
  13035. />
  13036. <productGroupable type="0"
  13037. />
  13038. </product>
  13039. <product id="DWO6"
  13040. name="SEDICI DWO6-PRO"
  13041. series="10"
  13042. latestVersion="1.0.2"
  13043. show = "0" >
  13044. <productMenu id="protocol"
  13045. type="0">
  13046. </productMenu>
  13047. <productMenu id="sip"
  13048. type="1" >
  13049. </productMenu>
  13050. <productMenu id="bluetoothIntercom"
  13051. type="1" >
  13052. </productMenu>
  13053. <productMenu id="phone"
  13054. type="2" >
  13055. </productMenu>
  13056. <productMenu id="fmradio"
  13057. type="3" >
  13058. </productMenu>
  13059. <productMenu id="deviceSetting"
  13060. type="1"
  13061. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  13062. </productMenu>
  13063. <productMenu id="quickGuide"
  13064. type="1"
  13065. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  13066. size="529KB" >
  13067. </productMenu>
  13068. <productMenu id="userGuide"
  13069. type="1"
  13070. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  13071. size="4.09MB" >
  13072. </productMenu>
  13073. <productID id="6112"
  13074. />
  13075. <productGroupable type="0"
  13076. />
  13077. </product>
  13078. <product id="DWO6A"
  13079. name="SEDICI DWO-6"
  13080. series="10"
  13081. latestVersion="1.0.2"
  13082. show = "0" >
  13083. <productMenu id="protocol"
  13084. type="0">
  13085. </productMenu>
  13086. <productMenu id="sip"
  13087. type="1" >
  13088. </productMenu>
  13089. <productMenu id="bluetoothIntercom"
  13090. type="1" >
  13091. </productMenu>
  13092. <productMenu id="phone"
  13093. type="2" >
  13094. </productMenu>
  13095. <productMenu id="fmradio"
  13096. type="3" >
  13097. </productMenu>
  13098. <productMenu id="deviceSetting"
  13099. type="1"
  13100. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  13101. </productMenu>
  13102. <productMenu id="quickGuide"
  13103. type="1"
  13104. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  13105. size="522KB" >
  13106. </productMenu>
  13107. <productMenu id="userGuide"
  13108. type="1"
  13109. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  13110. size="2.71MB" >
  13111. </productMenu>
  13112. <productID id="6114"
  13113. />
  13114. <productGroupable type="0"
  13115. />
  13116. </product>
  13117. <product id="3SPLUS"
  13118. name="ZILL"
  13119. series="3"
  13120. latestVersion="1.0.4"
  13121. show = "0" >
  13122. <productMenu id="protocol"
  13123. type="0">
  13124. </productMenu>
  13125. <productMenu id="sip"
  13126. type="1" >
  13127. </productMenu>
  13128. <productMenu id="bluetoothIntercom"
  13129. type="1" >
  13130. </productMenu>
  13131. <productMenu id="deviceSetting"
  13132. type="1"
  13133. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  13134. </productMenu>
  13135. <productMenu id="quickGuide"
  13136. type="1"
  13137. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  13138. size="842KB" >
  13139. </productMenu>
  13140. <productMenu id="userGuide"
  13141. type="1"
  13142. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  13143. size="1.02MB" >
  13144. </productMenu>
  13145. <productID id="6335"
  13146. />
  13147. <productGroupable type="0"
  13148. />
  13149. </product>
  13150. <product id="HD50S"
  13151. name="Boom! Audio 30K"
  13152. series="30"
  13153. latestVersion="3.4"
  13154. show = "0" >
  13155. <productMenu id="protocol"
  13156. type="1"
  13157. url="0">
  13158. </productMenu>
  13159. <productMenu id="wa"
  13160. type="0" >
  13161. </productMenu>
  13162. <productMenu id="sip"
  13163. type="1" >
  13164. </productMenu>
  13165. <productMenu id="meshIntercom"
  13166. type="20" >
  13167. <productMenuType version="2.9.9"
  13168. type="10"
  13169. />
  13170. </productMenu>
  13171. <productMenu id="bluetoothIntercom"
  13172. type="1" >
  13173. </productMenu>
  13174. <productMenu id="phone"
  13175. type="1" >
  13176. </productMenu>
  13177. <productMenu id="music"
  13178. type="1" >
  13179. </productMenu>
  13180. <productMenu id="fmradio"
  13181. type="1" >
  13182. </productMenu>
  13183. <productMenu id="deviceSetting"
  13184. type="1"
  13185. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  13186. <productMenuURL version="3.2"
  13187. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  13188. />
  13189. <productMenuURL version="3.0"
  13190. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  13191. />
  13192. <productMenuURL version="2.2"
  13193. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  13194. />
  13195. </productMenu>
  13196. <productMenu id="quickGuide"
  13197. type="1"
  13198. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  13199. size="1.06MB" >
  13200. </productMenu>
  13201. <productMenu id="userGuide"
  13202. type="1"
  13203. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  13204. size="3.15MB" >
  13205. </productMenu>
  13206. <productMenu id="volume"
  13207. type="1" >
  13208. </productMenu>
  13209. <productID id="3112"
  13210. />
  13211. <productGroupable type="0"
  13212. />
  13213. </product>
  13214. <product id="HD50S"
  13215. name="Boom! Audio N02"
  13216. series="30"
  13217. latestVersion="3.1"
  13218. show = "0" >
  13219. <productMenu id="protocol"
  13220. type="1"
  13221. url="0">
  13222. </productMenu>
  13223. <productMenu id="wa"
  13224. type="2" >
  13225. </productMenu>
  13226. <productMenu id="sip"
  13227. type="1" >
  13228. </productMenu>
  13229. <productMenu id="meshIntercom"
  13230. type="20" >
  13231. <productMenuType version="2.9.9"
  13232. type="10"
  13233. />
  13234. </productMenu>
  13235. <productMenu id="bluetoothIntercom"
  13236. type="1" >
  13237. </productMenu>
  13238. <productMenu id="phone"
  13239. type="1" >
  13240. </productMenu>
  13241. <productMenu id="music"
  13242. type="1" >
  13243. </productMenu>
  13244. <productMenu id="fmradio"
  13245. type="1" >
  13246. </productMenu>
  13247. <productMenu id="deviceSetting"
  13248. type="1"
  13249. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  13250. <productMenuURL version="2.2"
  13251. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  13252. />
  13253. </productMenu>
  13254. <productMenu id="quickGuide"
  13255. type="1"
  13256. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  13257. size="1.06MB" >
  13258. </productMenu>
  13259. <productMenu id="userGuide"
  13260. type="1"
  13261. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  13262. size="3.15MB" >
  13263. </productMenu>
  13264. <productMenu id="volume"
  13265. type="2" >
  13266. </productMenu>
  13267. <productID id="3114"
  13268. />
  13269. <productGroupable type="0"
  13270. />
  13271. </product>
  13272. <product id="HD50S"
  13273. name="Boom Audio 20S"
  13274. series="50"
  13275. latestVersion="2.5.2"
  13276. show = "0" >
  13277. <productMenu id="protocol"
  13278. type="0">
  13279. </productMenu>
  13280. <productMenu id="sip"
  13281. type="1" >
  13282. <productMenuType version="1.0"
  13283. type="0"
  13284. />
  13285. </productMenu>
  13286. <productMenu id="bluetoothIntercom"
  13287. type="1" >
  13288. <productMenuType version="1.0"
  13289. type="0"
  13290. />
  13291. </productMenu>
  13292. <productMenu id="intercomSetting"
  13293. type="1" >
  13294. </productMenu>
  13295. <productMenu id="phone"
  13296. type="2" >
  13297. </productMenu>
  13298. <productMenu id="fmradio"
  13299. type="3" >
  13300. </productMenu>
  13301. <productMenu id="deviceSetting"
  13302. type="1"
  13303. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  13304. <productMenuURL version="2.4"
  13305. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  13306. />
  13307. <productMenuURL version="1.5"
  13308. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  13309. />
  13310. <productMenuURL version="1.4.1"
  13311. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  13312. />
  13313. <productMenuURL version="1.1"
  13314. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  13315. />
  13316. <productMenuURL version="1.0"
  13317. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  13318. />
  13319. </productMenu>
  13320. <productMenu id="quickGuide"
  13321. type="1"
  13322. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  13323. size="264KB" >
  13324. </productMenu>
  13325. <productMenu id="userGuide"
  13326. type="1"
  13327. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  13328. size="3.09MB" >
  13329. </productMenu>
  13330. <productMenu id="connectGuide"
  13331. type="1"
  13332. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  13333. size="1.12MB" >
  13334. </productMenu>
  13335. <productID id="4210"
  13336. />
  13337. <productProductKey key="11"
  13338. />
  13339. <productID id="4230"
  13340. />
  13341. <productProductKey key="11"
  13342. />
  13343. <productGroupable type="1"
  13344. />
  13345. </product>
  13346. <product id="HD50S"
  13347. name="Boom Audio 20S EVO"
  13348. series="50"
  13349. latestVersion="2.5.2"
  13350. show = "0" >
  13351. <productMenu id="protocol"
  13352. type="0">
  13353. </productMenu>
  13354. <productMenu id="sip"
  13355. type="1" >
  13356. <productMenuType version="1.0"
  13357. type="0"
  13358. />
  13359. </productMenu>
  13360. <productMenu id="bluetoothIntercom"
  13361. type="1" >
  13362. <productMenuType version="1.0"
  13363. type="0"
  13364. />
  13365. </productMenu>
  13366. <productMenu id="intercomSetting"
  13367. type="1" >
  13368. </productMenu>
  13369. <productMenu id="phone"
  13370. type="2" >
  13371. </productMenu>
  13372. <productMenu id="fmradio"
  13373. type="3" >
  13374. </productMenu>
  13375. <productMenu id="deviceSetting"
  13376. type="1"
  13377. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  13378. <productMenuURL version="2.4"
  13379. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  13380. />
  13381. <productMenuURL version="1.5"
  13382. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  13383. />
  13384. <productMenuURL version="1.4.1"
  13385. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  13386. />
  13387. <productMenuURL version="1.1"
  13388. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  13389. />
  13390. <productMenuURL version="1.0"
  13391. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  13392. />
  13393. </productMenu>
  13394. <productMenu id="quickGuide"
  13395. type="1"
  13396. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  13397. size="321KB" >
  13398. </productMenu>
  13399. <productMenu id="userGuide"
  13400. type="1"
  13401. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  13402. size="2.46MB" >
  13403. </productMenu>
  13404. <productID id="4230"
  13405. />
  13406. <productProductKey key="27"
  13407. />
  13408. <productGroupable type="1"
  13409. />
  13410. </product>
  13411. <product id="HD50S"
  13412. name="Boom! Audio 10S"
  13413. series="50"
  13414. latestVersion="1.1.3"
  13415. show = "0" >
  13416. <productMenu id="protocol"
  13417. type="0">
  13418. </productMenu>
  13419. <productMenu id="sip"
  13420. type="1" >
  13421. </productMenu>
  13422. <productMenu id="bluetoothIntercom"
  13423. type="1" >
  13424. </productMenu>
  13425. <productMenu id="phone"
  13426. type="2" >
  13427. </productMenu>
  13428. <productMenu id="fmradio"
  13429. type="3" >
  13430. </productMenu>
  13431. <productMenu id="deviceSetting"
  13432. type="1"
  13433. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  13434. </productMenu>
  13435. <productMenu id="quickGuide"
  13436. type="1"
  13437. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  13438. size="538KB" >
  13439. </productMenu>
  13440. <productMenu id="userGuide"
  13441. type="1"
  13442. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  13443. size="1.55MB" >
  13444. </productMenu>
  13445. <productID id="5532"
  13446. />
  13447. <productGroupable type="0"
  13448. />
  13449. </product>
  13450. <product id="HD50S"
  13451. name="Boom! Audio N01 10R"
  13452. series="50"
  13453. latestVersion="1.1.3"
  13454. show = "0" >
  13455. <productMenu id="protocol"
  13456. type="0">
  13457. </productMenu>
  13458. <productMenu id="sip"
  13459. type="1" >
  13460. </productMenu>
  13461. <productMenu id="bluetoothIntercom"
  13462. type="1" >
  13463. </productMenu>
  13464. <productMenu id="phone"
  13465. type="2" >
  13466. </productMenu>
  13467. <productMenu id="fmradio"
  13468. type="3" >
  13469. </productMenu>
  13470. <productMenu id="deviceSetting"
  13471. type="1"
  13472. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  13473. </productMenu>
  13474. <productMenu id="quickGuide"
  13475. type="1"
  13476. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  13477. size="766KB" >
  13478. </productMenu>
  13479. <productMenu id="userGuide"
  13480. type="1"
  13481. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  13482. size="1.45MB" >
  13483. </productMenu>
  13484. <productID id="5522"
  13485. />
  13486. <productGroupable type="0"
  13487. />
  13488. </product>
  13489. <product id="HD50S"
  13490. name="OUTRUSH-R N03"
  13491. series="50"
  13492. latestVersion="1.2.1"
  13493. show = "-1" >
  13494. <productMenu id="protocol"
  13495. type="0">
  13496. </productMenu>
  13497. <productMenu id="sip"
  13498. type="1" >
  13499. </productMenu>
  13500. <productMenu id="bluetoothIntercom"
  13501. type="1" >
  13502. </productMenu>
  13503. <productMenu id="phone"
  13504. type="2" >
  13505. </productMenu>
  13506. <productMenu id="fmradio"
  13507. type="3" >
  13508. </productMenu>
  13509. <productMenu id="deviceSetting"
  13510. type="1"
  13511. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  13512. </productMenu>
  13513. <productMenu id="userGuide"
  13514. type="1"
  13515. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  13516. size="660KB" >
  13517. </productMenu>
  13518. <productID id="5434"
  13519. />
  13520. <productGroupable type="0"
  13521. />
  13522. </product>
  13523. <product id="HD50S"
  13524. name="OUTRUSH-R N03"
  13525. series="50"
  13526. latestVersion="2.0"
  13527. show = "0" >
  13528. <productMenu id="protocol"
  13529. type="3" >
  13530. </productMenu>
  13531. <productMenu id="sip"
  13532. type="1" >
  13533. </productMenu>
  13534. <productMenu id="bluetoothIntercom"
  13535. type="1" >
  13536. </productMenu>
  13537. <productMenu id="phone"
  13538. type="1" >
  13539. </productMenu>
  13540. <productMenu id="fmradio"
  13541. type="1" >
  13542. </productMenu>
  13543. <productMenu id="deviceSetting"
  13544. type="1"
  13545. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  13546. </productMenu>
  13547. <productMenu id="userGuide"
  13548. type="1"
  13549. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  13550. size="1.14MB" >
  13551. </productMenu>
  13552. <productID id="5441"
  13553. />
  13554. <productGroupable type="0"
  13555. />
  13556. </product>
  13557. <product id="5R"
  13558. name="5R"
  13559. series="5"
  13560. latestVersion="1.0.1"
  13561. show = "1" >
  13562. <productMenu id="protocol"
  13563. type="3" >
  13564. </productMenu>
  13565. <productMenu id="sip"
  13566. type="1" >
  13567. </productMenu>
  13568. <productMenu id="bluetoothIntercom"
  13569. type="1" >
  13570. </productMenu>
  13571. <productMenu id="phone"
  13572. type="1" >
  13573. </productMenu>
  13574. <productMenu id="fmradio"
  13575. type="1" >
  13576. </productMenu>
  13577. <productMenu id="deviceSetting"
  13578. type="1"
  13579. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13580. </productMenu>
  13581. <productMenu id="quickGuide"
  13582. type="0"
  13583. url=""
  13584. size="934KB" >
  13585. </productMenu>
  13586. <productMenu id="userGuide"
  13587. type="1"
  13588. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  13589. size="1.14MB" >
  13590. </productMenu>
  13591. <productMenu id="connectGuide"
  13592. type="1"
  13593. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13594. size="1.12MB" >
  13595. </productMenu>
  13596. <productID id="5591"
  13597. />
  13598. <productGroupable type="0"
  13599. />
  13600. </product>
  13601. <product id="5R"
  13602. name="5R LITE"
  13603. series="5"
  13604. latestVersion="1.0.1"
  13605. show = "1" >
  13606. <productMenu id="protocol"
  13607. type="3" >
  13608. </productMenu>
  13609. <productMenu id="sip"
  13610. type="1" >
  13611. </productMenu>
  13612. <productMenu id="bluetoothIntercom"
  13613. type="1" >
  13614. </productMenu>
  13615. <productMenu id="phone"
  13616. type="1" >
  13617. </productMenu>
  13618. <productMenu id="fmradio"
  13619. type="1" >
  13620. </productMenu>
  13621. <productMenu id="deviceSetting"
  13622. type="1"
  13623. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13624. </productMenu>
  13625. <productMenu id="quickGuide"
  13626. type="0"
  13627. url=""
  13628. size="934KB" >
  13629. </productMenu>
  13630. <productMenu id="userGuide"
  13631. type="1"
  13632. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13633. size="1.14MB" >
  13634. </productMenu>
  13635. <productMenu id="connectGuide"
  13636. type="1"
  13637. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  13638. size="1.12MB" >
  13639. </productMenu>
  13640. <productID id="5592"
  13641. />
  13642. <productGroupable type="0"
  13643. />
  13644. </product>
  13645. <product id="50RLE"
  13646. name="50R LE"
  13647. series="50"
  13648. latestVersion="1.1"
  13649. show = "0" >
  13650. <productMenu id="protocol"
  13651. type="2" >
  13652. </productMenu>
  13653. <productMenu id="alexa"
  13654. type="0" >
  13655. </productMenu>
  13656. <productMenu id="sip"
  13657. type="1" >
  13658. </productMenu>
  13659. <productMenu id="meshIntercom"
  13660. type="30" >
  13661. </productMenu>
  13662. <productMenu id="meshIntercom+"
  13663. type="3"
  13664. url="2" >
  13665. <productMenuType version="1.0.9"
  13666. type="2"
  13667. />
  13668. </productMenu>
  13669. <productMenu id="waveIntercom"
  13670. type="1" >
  13671. <productMenuType version="1.0.9"
  13672. type="0"
  13673. />
  13674. </productMenu>
  13675. <productMenu id="bluetoothIntercom"
  13676. type="1" >
  13677. </productMenu>
  13678. <productMenu id="phone"
  13679. type="1" >
  13680. </productMenu>
  13681. <productMenu id="music"
  13682. type="1" >
  13683. </productMenu>
  13684. <productMenu id="fmradio"
  13685. type="0" >
  13686. </productMenu>
  13687. <productMenu id="deviceSetting"
  13688. type="1"
  13689. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  13690. <productMenuURL version="1.0.9"
  13691. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  13692. />
  13693. </productMenu>
  13694. <productMenu id="quickGuide"
  13695. type="0"
  13696. url=""
  13697. size="344KB" >
  13698. </productMenu>
  13699. <productMenu id="userGuide"
  13700. type="0"
  13701. url=""
  13702. size="3.41MB" >
  13703. </productMenu>
  13704. <productMenu id="volume"
  13705. type="11" >
  13706. </productMenu>
  13707. <productMenu id="battery"
  13708. type="1" >
  13709. </productMenu>
  13710. <productID id="3223"
  13711. />
  13712. <productGroupable type="0"
  13713. />
  13714. </product>
  13715. <product id="5RLOUIS"
  13716. name="5R LOUIS EDITION"
  13717. series="5"
  13718. latestVersion="1.0"
  13719. show = "-1" >
  13720. <productMenu id="protocol"
  13721. type="3" >
  13722. </productMenu>
  13723. <productMenu id="sip"
  13724. type="1" >
  13725. </productMenu>
  13726. <productMenu id="bluetoothIntercom"
  13727. type="1" >
  13728. </productMenu>
  13729. <productMenu id="phone"
  13730. type="1" >
  13731. </productMenu>
  13732. <productMenu id="fmradio"
  13733. type="1" >
  13734. </productMenu>
  13735. <productMenu id="deviceSetting"
  13736. type="1"
  13737. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13738. </productMenu>
  13739. <productMenu id="quickGuide"
  13740. type="0"
  13741. url=""
  13742. size="934KB" >
  13743. </productMenu>
  13744. <productMenu id="userGuide"
  13745. type="0"
  13746. url=""
  13747. size="1.14MB" >
  13748. </productMenu>
  13749. <productID id="5597"
  13750. />
  13751. <productGroupable type="0"
  13752. />
  13753. </product>
  13754. <product id="5S"
  13755. name="Ridekont 5S"
  13756. series="5"
  13757. latestVersion="2.3"
  13758. show = "-1" >
  13759. <productMenu id="protocol"
  13760. type="3" >
  13761. </productMenu>
  13762. <productMenu id="sip"
  13763. type="1" >
  13764. </productMenu>
  13765. <productMenu id="bluetoothIntercom"
  13766. type="1" >
  13767. </productMenu>
  13768. <productMenu id="phone"
  13769. type="1" >
  13770. </productMenu>
  13771. <productMenu id="fmradio"
  13772. type="0" >
  13773. </productMenu>
  13774. <productMenu id="deviceSetting"
  13775. type="1"
  13776. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13777. </productMenu>
  13778. <productMenu id="quickGuide"
  13779. type="0"
  13780. url=""
  13781. size="934KB" >
  13782. </productMenu>
  13783. <productMenu id="userGuide"
  13784. type="1"
  13785. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  13786. size="1.14MB" >
  13787. </productMenu>
  13788. <productID id="5589"
  13789. />
  13790. <productGroupable type="0"
  13791. />
  13792. </product>
  13793. <product id="5R"
  13794. name="Ridekont 5R"
  13795. series="5"
  13796. latestVersion="1.0"
  13797. show = "0" >
  13798. <productMenu id="protocol"
  13799. type="3" >
  13800. </productMenu>
  13801. <productMenu id="sip"
  13802. type="1" >
  13803. </productMenu>
  13804. <productMenu id="bluetoothIntercom"
  13805. type="1" >
  13806. </productMenu>
  13807. <productMenu id="phone"
  13808. type="1" >
  13809. </productMenu>
  13810. <productMenu id="fmradio"
  13811. type="1" >
  13812. </productMenu>
  13813. <productMenu id="deviceSetting"
  13814. type="1"
  13815. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13816. </productMenu>
  13817. <productMenu id="quickGuide"
  13818. type="1"
  13819. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  13820. size="934KB" >
  13821. </productMenu>
  13822. <productMenu id="userGuide"
  13823. type="1"
  13824. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  13825. size="1.14MB" >
  13826. </productMenu>
  13827. <productID id="5593"
  13828. />
  13829. <productGroupable type="0"
  13830. />
  13831. </product>
  13832. <product id="5R"
  13833. name="Ridekont 5R LITE"
  13834. series="5"
  13835. latestVersion="1.0"
  13836. show = "0" >
  13837. <productMenu id="protocol"
  13838. type="3" >
  13839. </productMenu>
  13840. <productMenu id="sip"
  13841. type="1" >
  13842. </productMenu>
  13843. <productMenu id="bluetoothIntercom"
  13844. type="1" >
  13845. </productMenu>
  13846. <productMenu id="phone"
  13847. type="1" >
  13848. </productMenu>
  13849. <productMenu id="fmradio"
  13850. type="1" >
  13851. </productMenu>
  13852. <productMenu id="deviceSetting"
  13853. type="1"
  13854. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13855. </productMenu>
  13856. <productMenu id="quickGuide"
  13857. type="0"
  13858. url=""
  13859. size="934KB" >
  13860. </productMenu>
  13861. <productMenu id="userGuide"
  13862. type="1"
  13863. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13864. size="1.14MB" >
  13865. </productMenu>
  13866. <productID id="5594"
  13867. />
  13868. <productGroupable type="0"
  13869. />
  13870. </product>
  13871. <product id="SA30"
  13872. name="SA30"
  13873. series="SA"
  13874. latestVersion="1.0.3"
  13875. latestVersionVoicePrompt="0.15"
  13876. show = "-1" >
  13877. <productMenu id="protocol"
  13878. type="2" >
  13879. </productMenu>
  13880. <productMenu id="ota"
  13881. type="2" >
  13882. <otaPackages>
  13883. <package
  13884. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  13885. size="3144148"
  13886. />
  13887. </otaPackages>
  13888. </productMenu>
  13889. <productMenu id="meshIntercom"
  13890. type="30" >
  13891. </productMenu>
  13892. <productMenu id="meshIntercom+"
  13893. type="3"
  13894. url="2" >
  13895. </productMenu>
  13896. <productMenu id="phone"
  13897. type="1" >
  13898. </productMenu>
  13899. <productMenu id="music"
  13900. type="1" >
  13901. </productMenu>
  13902. <productMenu id="musicSharing"
  13903. type="0" >
  13904. </productMenu>
  13905. <productMenu id="deviceSetting"
  13906. type="1"
  13907. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  13908. </productMenu>
  13909. <productMenu id="quickGuide"
  13910. type="0"
  13911. url=""
  13912. size="1.12MB" >
  13913. </productMenu>
  13914. <productMenu id="userGuide"
  13915. type="1"
  13916. url=""
  13917. size="2.0MB" >
  13918. </productMenu>
  13919. <productMenu id="videoGuide"
  13920. type="0"
  13921. url=""
  13922. size="3.41MB" >
  13923. </productMenu>
  13924. <productMenu id="volume"
  13925. type="12" >
  13926. </productMenu>
  13927. <productMenu id="battery"
  13928. type="1" >
  13929. </productMenu>
  13930. <productID id="6852"
  13931. />
  13932. <productGroupable type="0"
  13933. />
  13934. </product>
  13935. <product id="I30"
  13936. name="I30"
  13937. series="I"
  13938. latestVersion="1.0.3"
  13939. latestVersionVoicePrompt="0.2"
  13940. show = "-1" >
  13941. <productMenu id="protocol"
  13942. type="2" >
  13943. </productMenu>
  13944. <productMenu id="ota"
  13945. type="2" >
  13946. <otaPackages>
  13947. <package
  13948. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  13949. size="3144148"
  13950. />
  13951. </otaPackages>
  13952. </productMenu>
  13953. <productMenu id="meshIntercom"
  13954. type="30" >
  13955. </productMenu>
  13956. <productMenu id="meshIntercom+"
  13957. type="3"
  13958. url="2" >
  13959. </productMenu>
  13960. <productMenu id="phone"
  13961. type="1" >
  13962. </productMenu>
  13963. <productMenu id="music"
  13964. type="1" >
  13965. </productMenu>
  13966. <productMenu id="musicSharing"
  13967. type="0" >
  13968. </productMenu>
  13969. <productMenu id="deviceSetting"
  13970. type="1"
  13971. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  13972. </productMenu>
  13973. <productMenu id="quickGuide"
  13974. type="0"
  13975. url=""
  13976. size="1.12MB" >
  13977. </productMenu>
  13978. <productMenu id="userGuide"
  13979. type="1"
  13980. url=""
  13981. size="2.10MB" >
  13982. </productMenu>
  13983. <productMenu id="videoGuide"
  13984. type="0"
  13985. url=""
  13986. size="3.11MB" >
  13987. </productMenu>
  13988. <productMenu id="volume"
  13989. type="12" >
  13990. </productMenu>
  13991. <productMenu id="battery"
  13992. type="1" >
  13993. </productMenu>
  13994. <productID id="6853"
  13995. />
  13996. <productGroupable type="0"
  13997. />
  13998. </product>
  13999. <product id="LS2C30"
  14000. name="LS2-C30"
  14001. series="C"
  14002. latestVersion="1.0"
  14003. latestVersionVoicePrompt="0.13"
  14004. show = "-1" >
  14005. <productMenu id="protocol"
  14006. type="2" >
  14007. </productMenu>
  14008. <productMenu id="ota"
  14009. type="2" >
  14010. <otaPackages>
  14011. <package
  14012. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2-C30-v1.0-build0.img"
  14013. size="3144148"
  14014. />
  14015. </otaPackages>
  14016. </productMenu>
  14017. <productMenu id="meshIntercom+"
  14018. type="3"
  14019. url="2" >
  14020. </productMenu>
  14021. <productMenu id="waveIntercom"
  14022. type="1" >
  14023. </productMenu>
  14024. <productMenu id="phone"
  14025. type="1" >
  14026. </productMenu>
  14027. <productMenu id="music"
  14028. type="1" >
  14029. </productMenu>
  14030. <productMenu id="musicSharing"
  14031. type="0" >
  14032. </productMenu>
  14033. <productMenu id="deviceSetting"
  14034. type="1"
  14035. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  14036. </productMenu>
  14037. <productMenu id="quickGuide"
  14038. type="0"
  14039. url=""
  14040. size="1.17MB" >
  14041. </productMenu>
  14042. <productMenu id="userGuide"
  14043. type="1"
  14044. url=""
  14045. size="2.0MB" >
  14046. </productMenu>
  14047. <productMenu id="videoGuide"
  14048. type="0"
  14049. url=""
  14050. size="3.41MB" >
  14051. </productMenu>
  14052. <productMenu id="volume"
  14053. type="12" >
  14054. </productMenu>
  14055. <productMenu id="battery"
  14056. type="1" >
  14057. </productMenu>
  14058. <productID id="685E"
  14059. />
  14060. <productGroupable type="0"
  14061. />
  14062. </product>
  14063. <product id="C30EVO"
  14064. name="C30 EVO"
  14065. series="C"
  14066. latestVersion="1.0"
  14067. latestVersionVoicePrompt="0.13"
  14068. show = "-1" >
  14069. <productMenu id="protocol"
  14070. type="2" >
  14071. </productMenu>
  14072. <productMenu id="ota"
  14073. type="0" >
  14074. <otaPackages>
  14075. <package
  14076. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  14077. size="3144148"
  14078. />
  14079. </otaPackages>
  14080. </productMenu>
  14081. <productMenu id="meshIntercom+"
  14082. type="3"
  14083. url="2" >
  14084. </productMenu>
  14085. <productMenu id="waveIntercom"
  14086. type="1" >
  14087. </productMenu>
  14088. <productMenu id="phone"
  14089. type="1" >
  14090. </productMenu>
  14091. <productMenu id="music"
  14092. type="1" >
  14093. </productMenu>
  14094. <productMenu id="musicSharing"
  14095. type="0" >
  14096. </productMenu>
  14097. <productMenu id="deviceSetting"
  14098. type="1"
  14099. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  14100. </productMenu>
  14101. <productMenu id="quickGuide"
  14102. type="0"
  14103. url=""
  14104. size="1.17MB" >
  14105. </productMenu>
  14106. <productMenu id="userGuide"
  14107. type="1"
  14108. url=""
  14109. size="2.0MB" >
  14110. </productMenu>
  14111. <productMenu id="videoGuide"
  14112. type="0"
  14113. url=""
  14114. size="3.41MB" >
  14115. </productMenu>
  14116. <productMenu id="volume"
  14117. type="12" >
  14118. </productMenu>
  14119. <productMenu id="battery"
  14120. type="1" >
  14121. </productMenu>
  14122. <productID id="685B"
  14123. />
  14124. <productGroupable type="0"
  14125. />
  14126. </product>
  14127. <product id="C30"
  14128. name="SENA C30"
  14129. series="C"
  14130. latestVersion="1.2.4"
  14131. latestVersionVoicePrompt="0.13"
  14132. show = "1" >
  14133. <productMenu id="protocol"
  14134. type="2" >
  14135. </productMenu>
  14136. <productMenu id="alexa"
  14137. type="0" >
  14138. </productMenu>
  14139. <productMenu id="ota"
  14140. type="2" >
  14141. <otaPackages>
  14142. <package
  14143. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  14144. size="3144148"
  14145. />
  14146. </otaPackages>
  14147. </productMenu>
  14148. <productMenu id="wa"
  14149. type="0" >
  14150. </productMenu>
  14151. <productMenu id="meshIntercom"
  14152. type="30" >
  14153. </productMenu>
  14154. <productMenu id="meshIntercom+"
  14155. type="3"
  14156. url="2" >
  14157. <productMenuType version="1.0.9"
  14158. type="2"
  14159. />
  14160. </productMenu>
  14161. <productMenu id="waveIntercom"
  14162. type="1" >
  14163. <productMenuType version="1.1.9"
  14164. type="0"
  14165. />
  14166. </productMenu>
  14167. <productMenu id="phone"
  14168. type="1" >
  14169. </productMenu>
  14170. <productMenu id="music"
  14171. type="1" >
  14172. </productMenu>
  14173. <productMenu id="musicSharing"
  14174. type="0" >
  14175. </productMenu>
  14176. <productMenu id="deviceSetting"
  14177. type="1"
  14178. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  14179. <productMenuURL version="1.1.3"
  14180. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  14181. />
  14182. <productMenuURL version="1.0.9"
  14183. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  14184. />
  14185. </productMenu>
  14186. <productMenu id="quickGuide"
  14187. type="1"
  14188. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  14189. size="1.12MB" >
  14190. </productMenu>
  14191. <productMenu id="userGuide"
  14192. type="0"
  14193. url=""
  14194. size="2.0MB" >
  14195. </productMenu>
  14196. <productMenu id="videoGuide"
  14197. type="0"
  14198. url=""
  14199. size="3.41MB" >
  14200. </productMenu>
  14201. <productMenu id="volume"
  14202. type="12" >
  14203. </productMenu>
  14204. <productMenu id="battery"
  14205. type="1" >
  14206. </productMenu>
  14207. <productID id="683A"
  14208. />
  14209. <productGroupable type="0"
  14210. />
  14211. </product>
  14212. <product id="C20"
  14213. name="C20"
  14214. series="C"
  14215. latestVersion="1.0"
  14216. show = "1" >
  14217. <productMenu id="protocol"
  14218. type="3" >
  14219. </productMenu>
  14220. <productMenu id="sip"
  14221. type="1" >
  14222. </productMenu>
  14223. <productMenu id="bluetoothIntercom"
  14224. type="1" >
  14225. </productMenu>
  14226. <productMenu id="phone"
  14227. type="1" >
  14228. </productMenu>
  14229. <productMenu id="deviceSetting"
  14230. type="1"
  14231. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  14232. </productMenu>
  14233. <productMenu id="quickGuide"
  14234. type="1"
  14235. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  14236. size="934KB" >
  14237. </productMenu>
  14238. <productMenu id="userGuide"
  14239. type="1"
  14240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  14241. size="1.14MB" >
  14242. </productMenu>
  14243. <productID id="3701"
  14244. />
  14245. <productGroupable type="0"
  14246. />
  14247. </product>
  14248. <product id="C10"
  14249. name="C10"
  14250. series="C"
  14251. latestVersion="1.4.4"
  14252. show = "1" >
  14253. <productMenu id="protocol"
  14254. type="3" >
  14255. </productMenu>
  14256. <productMenu id="sip"
  14257. type="1" >
  14258. </productMenu>
  14259. <productMenu id="bluetoothIntercom"
  14260. type="1" >
  14261. </productMenu>
  14262. <productMenu id="phone"
  14263. type="1" >
  14264. </productMenu>
  14265. <productMenu id="fmradio"
  14266. type="0" >
  14267. </productMenu>
  14268. <productMenu id="deviceSetting"
  14269. type="1"
  14270. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  14271. </productMenu>
  14272. <productMenu id="userGuide"
  14273. type="1"
  14274. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  14275. size="1.14MB" >
  14276. </productMenu>
  14277. <productID id="5595"
  14278. />
  14279. <productGroupable type="0"
  14280. />
  14281. </product>
  14282. <product id="CA1"
  14283. name="CA1"
  14284. series="C"
  14285. latestVersion="0.2"
  14286. show = "-1" >
  14287. <productMenu id="protocol"
  14288. type="2" >
  14289. </productMenu>
  14290. <productMenu id="ota"
  14291. type="2" >
  14292. <otaPackages>
  14293. <package
  14294. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  14295. size="3144148"
  14296. />
  14297. </otaPackages>
  14298. </productMenu>
  14299. <productMenu id="phone"
  14300. type="1" >
  14301. </productMenu>
  14302. <productMenu id="music"
  14303. type="1" >
  14304. </productMenu>
  14305. <productMenu id="musicSharing"
  14306. type="0" >
  14307. </productMenu>
  14308. <productMenu id="deviceSetting"
  14309. type="1"
  14310. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  14311. </productMenu>
  14312. <productMenu id="quickGuide"
  14313. type="1"
  14314. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  14315. size="1.12MB" >
  14316. </productMenu>
  14317. <productMenu id="userGuide"
  14318. type="0"
  14319. url=""
  14320. size="2.0MB" >
  14321. </productMenu>
  14322. <productMenu id="videoGuide"
  14323. type="1"
  14324. url=""
  14325. size="3.41MB" >
  14326. </productMenu>
  14327. <productMenu id="volume"
  14328. type="12" >
  14329. </productMenu>
  14330. <productMenu id="battery"
  14331. type="1" >
  14332. </productMenu>
  14333. <productID id="5F01"
  14334. />
  14335. <productGroupable type="0"
  14336. />
  14337. </product>
  14338. <product id="J30"
  14339. name="J30"
  14340. series="J"
  14341. latestVersion="1.2.4"
  14342. latestVersionVoicePrompt="0.14"
  14343. show = "0" >
  14344. <productMenu id="protocol"
  14345. type="2" >
  14346. </productMenu>
  14347. <productMenu id="alexa"
  14348. type="0" >
  14349. </productMenu>
  14350. <productMenu id="ota"
  14351. type="2" >
  14352. <otaPackages>
  14353. <package
  14354. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  14355. size="3144148"
  14356. />
  14357. </otaPackages>
  14358. </productMenu>
  14359. <productMenu id="wa"
  14360. type="0" >
  14361. </productMenu>
  14362. <productMenu id="meshIntercom"
  14363. type="30" >
  14364. </productMenu>
  14365. <productMenu id="meshIntercom+"
  14366. type="3"
  14367. url="2" >
  14368. <productMenuType version="1.0.9"
  14369. type="2"
  14370. />
  14371. </productMenu>
  14372. <productMenu id="waveIntercom"
  14373. type="1" >
  14374. <productMenuType version="1.1.9"
  14375. type="0"
  14376. />
  14377. </productMenu>
  14378. <productMenu id="phone"
  14379. type="1" >
  14380. </productMenu>
  14381. <productMenu id="music"
  14382. type="1" >
  14383. </productMenu>
  14384. <productMenu id="musicSharing"
  14385. type="0" >
  14386. </productMenu>
  14387. <productMenu id="deviceSetting"
  14388. type="1"
  14389. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  14390. <productMenuURL version="1.0.9"
  14391. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  14392. />
  14393. </productMenu>
  14394. <productMenu id="quickGuide"
  14395. type="0"
  14396. url=""
  14397. size="1.12MB" >
  14398. </productMenu>
  14399. <productMenu id="userGuide"
  14400. type="1"
  14401. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  14402. size="2.0MB" >
  14403. </productMenu>
  14404. <productMenu id="videoGuide"
  14405. type="0"
  14406. url=""
  14407. size="3.41MB" >
  14408. </productMenu>
  14409. <productMenu id="volume"
  14410. type="12" >
  14411. </productMenu>
  14412. <productMenu id="battery"
  14413. type="1" >
  14414. </productMenu>
  14415. <productID id="6848"
  14416. />
  14417. <productGroupable type="0"
  14418. />
  14419. </product>
  14420. <product id="J10"
  14421. name="J10"
  14422. series="5"
  14423. latestVersion="1.1.4"
  14424. show = "0" >
  14425. <productMenu id="protocol"
  14426. type="3" >
  14427. </productMenu>
  14428. <productMenu id="sip"
  14429. type="1" >
  14430. </productMenu>
  14431. <productMenu id="bluetoothIntercom"
  14432. type="1" >
  14433. </productMenu>
  14434. <productMenu id="phone"
  14435. type="1" >
  14436. </productMenu>
  14437. <productMenu id="fmradio"
  14438. type="0" >
  14439. </productMenu>
  14440. <productMenu id="deviceSetting"
  14441. type="1"
  14442. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  14443. </productMenu>
  14444. <productMenu id="userGuide"
  14445. type="1"
  14446. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.1_jp_260910.pdf"
  14447. size="1.14MB" >
  14448. </productMenu>
  14449. <productID id="5598"
  14450. />
  14451. <productGroupable type="0"
  14452. />
  14453. </product>
  14454. <product id="B20"
  14455. name="B20"
  14456. series="B"
  14457. latestVersion="1.1.4"
  14458. latestVersionVoicePrompt="0.14"
  14459. show = "0" >
  14460. <productMenu id="protocol"
  14461. type="2" >
  14462. </productMenu>
  14463. <productMenu id="alexa"
  14464. type="0" >
  14465. </productMenu>
  14466. <productMenu id="ota"
  14467. type="2" >
  14468. <otaPackages>
  14469. <package
  14470. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  14471. size="3144148"
  14472. />
  14473. </otaPackages>
  14474. </productMenu>
  14475. <productMenu id="wa"
  14476. type="0" >
  14477. </productMenu>
  14478. <productMenu id="meshIntercom"
  14479. type="30" >
  14480. </productMenu>
  14481. <productMenu id="phone"
  14482. type="1" >
  14483. </productMenu>
  14484. <productMenu id="music"
  14485. type="1" >
  14486. </productMenu>
  14487. <productMenu id="musicSharing"
  14488. type="0" >
  14489. </productMenu>
  14490. <productMenu id="deviceSetting"
  14491. type="1"
  14492. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  14493. <productMenuURL version="1.0.9"
  14494. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  14495. />
  14496. </productMenu>
  14497. <productMenu id="quickGuide"
  14498. type="0"
  14499. url=""
  14500. size="1.12MB" >
  14501. </productMenu>
  14502. <productMenu id="userGuide"
  14503. type="1"
  14504. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  14505. size="2.0MB" >
  14506. </productMenu>
  14507. <productMenu id="videoGuide"
  14508. type="0"
  14509. url=""
  14510. size="3.41MB" >
  14511. </productMenu>
  14512. <productMenu id="volume"
  14513. type="12" >
  14514. </productMenu>
  14515. <productMenu id="battery"
  14516. type="1" >
  14517. </productMenu>
  14518. <productID id="6847"
  14519. />
  14520. <productGroupable type="0"
  14521. />
  14522. </product>
  14523. <product id="B10"
  14524. name="B10"
  14525. series="5"
  14526. latestVersion="1.2.4"
  14527. show = "0" >
  14528. <productMenu id="protocol"
  14529. type="3" >
  14530. </productMenu>
  14531. <productMenu id="sip"
  14532. type="1" >
  14533. </productMenu>
  14534. <productMenu id="bluetoothIntercom"
  14535. type="1" >
  14536. </productMenu>
  14537. <productMenu id="phone"
  14538. type="1" >
  14539. </productMenu>
  14540. <productMenu id="fmradio"
  14541. type="0" >
  14542. </productMenu>
  14543. <productMenu id="deviceSetting"
  14544. type="1"
  14545. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  14546. </productMenu>
  14547. <productMenu id="userGuide"
  14548. type="1"
  14549. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  14550. size="1.14MB" >
  14551. </productMenu>
  14552. <productID id="5596"
  14553. />
  14554. <productGroupable type="0"
  14555. />
  14556. </product>
  14557. <product id="E30"
  14558. name="E30"
  14559. series="E"
  14560. latestVersion="1.1.4"
  14561. latestVersionVoicePrompt="0.14"
  14562. show = "0" >
  14563. <productMenu id="protocol"
  14564. type="2" >
  14565. </productMenu>
  14566. <productMenu id="alexa"
  14567. type="0" >
  14568. </productMenu>
  14569. <productMenu id="ota"
  14570. type="2" >
  14571. <otaPackages>
  14572. <package
  14573. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  14574. size="3144148"
  14575. />
  14576. </otaPackages>
  14577. </productMenu>
  14578. <productMenu id="wa"
  14579. type="0" >
  14580. </productMenu>
  14581. <productMenu id="meshIntercom"
  14582. type="30" >
  14583. </productMenu>
  14584. <productMenu id="meshIntercom+"
  14585. type="3"
  14586. url="2" >
  14587. </productMenu>
  14588. <productMenu id="waveIntercom"
  14589. type="1" >
  14590. <productMenuType version="1.0.9"
  14591. type="0"
  14592. />
  14593. </productMenu>
  14594. <productMenu id="phone"
  14595. type="1" >
  14596. </productMenu>
  14597. <productMenu id="music"
  14598. type="1" >
  14599. </productMenu>
  14600. <productMenu id="musicSharing"
  14601. type="0" >
  14602. </productMenu>
  14603. <productMenu id="deviceSetting"
  14604. type="1"
  14605. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  14606. </productMenu>
  14607. <productMenu id="quickGuide"
  14608. type="0"
  14609. url=""
  14610. size="1.12MB" >
  14611. </productMenu>
  14612. <productMenu id="userGuide"
  14613. type="1"
  14614. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  14615. size="2.0MB" >
  14616. </productMenu>
  14617. <productMenu id="videoGuide"
  14618. type="0"
  14619. url=""
  14620. size="3.41MB" >
  14621. </productMenu>
  14622. <productMenu id="volume"
  14623. type="12" >
  14624. </productMenu>
  14625. <productMenu id="battery"
  14626. type="1" >
  14627. </productMenu>
  14628. <productID id="6846"
  14629. />
  14630. <productGroupable type="0"
  14631. />
  14632. </product>
  14633. <product id="ACSRAM"
  14634. name="ACS-RAM"
  14635. series="ACS"
  14636. latestVersion="1.0.5"
  14637. show = "1" >
  14638. <productMenu id="protocol"
  14639. type="3" >
  14640. </productMenu>
  14641. <productMenu id="sip"
  14642. type="1" >
  14643. </productMenu>
  14644. <productMenu id="bluetoothIntercom"
  14645. type="1" >
  14646. </productMenu>
  14647. <productMenu id="deviceSetting"
  14648. type="1"
  14649. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  14650. <productMenuURL version="1.0.9"
  14651. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  14652. />
  14653. </productMenu>
  14654. <productMenu id="quickGuide"
  14655. type="1"
  14656. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  14657. size="344KB" >
  14658. </productMenu>
  14659. <productMenu id="userGuide"
  14660. type="1"
  14661. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  14662. size="1.14MB" >
  14663. </productMenu>
  14664. <productMenu id="connectGuide"
  14665. type="1"
  14666. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  14667. size="1.12MB" >
  14668. </productMenu>
  14669. <productID id="3400"
  14670. />
  14671. <productGroupable type="0"
  14672. />
  14673. </product>
  14674. <product id="ACS10"
  14675. name="ACS10"
  14676. series="ACS"
  14677. latestVersion="1.0.2"
  14678. show = "1" >
  14679. <productMenu id="protocol"
  14680. type="0">
  14681. </productMenu>
  14682. <productMenu id="sip"
  14683. type="1" >
  14684. </productMenu>
  14685. <productMenu id="bluetoothIntercom"
  14686. type="1" >
  14687. </productMenu>
  14688. <productMenu id="phone"
  14689. type="2" >
  14690. </productMenu>
  14691. <productMenu id="deviceSetting"
  14692. type="1"
  14693. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  14694. </productMenu>
  14695. <productMenu id="quickGuide"
  14696. type="1"
  14697. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  14698. size="970KB" >
  14699. </productMenu>
  14700. <productMenu id="userGuide"
  14701. type="1"
  14702. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  14703. size="1.26MB" >
  14704. </productMenu>
  14705. <productMenu id="connectGuide"
  14706. type="1"
  14707. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  14708. size="1.12MB" >
  14709. </productMenu>
  14710. <productID id="3300"
  14711. />
  14712. <productGroupable type="0"
  14713. />
  14714. </product>
  14715. <product id="DWO7ProMesh"
  14716. name="DWO 7 Pro Mesh"
  14717. series="50"
  14718. latestVersion="1.1"
  14719. latestVersionVoicePrompt="0.9"
  14720. show = "0" >
  14721. <productMenu id="protocol"
  14722. type="2" >
  14723. </productMenu>
  14724. <productMenu id="alexa"
  14725. type="0" >
  14726. </productMenu>
  14727. <productMenu id="ota"
  14728. type="2" >
  14729. <otaPackages>
  14730. <package
  14731. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  14732. size="2945812"
  14733. />
  14734. </otaPackages>
  14735. </productMenu>
  14736. <productMenu id="wa"
  14737. type="0" >
  14738. </productMenu>
  14739. <productMenu id="meshIntercom"
  14740. type="20" >
  14741. </productMenu>
  14742. <productMenu id="meshIntercom+"
  14743. type="3"
  14744. url="2" >
  14745. <productMenuType version="1.0.9"
  14746. type="2"
  14747. />
  14748. <productMenuURL version="2.1.1"
  14749. url="0"
  14750. />
  14751. </productMenu>
  14752. <productMenu id="waveIntercom"
  14753. type="1" >
  14754. <productMenuType version="1.0.9"
  14755. type="0"
  14756. />
  14757. </productMenu>
  14758. <productMenu id="phone"
  14759. type="1" >
  14760. </productMenu>
  14761. <productMenu id="music"
  14762. type="1" >
  14763. </productMenu>
  14764. <productMenu id="fmradio"
  14765. type="1" >
  14766. </productMenu>
  14767. <productMenu id="musicSharing"
  14768. type="0" >
  14769. </productMenu>
  14770. <productMenu id="deviceSetting"
  14771. type="1"
  14772. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  14773. <productMenuURL version="1.0.9"
  14774. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  14775. />
  14776. </productMenu>
  14777. <productMenu id="quickGuide"
  14778. type="1"
  14779. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14780. size="1.12MB" >
  14781. </productMenu>
  14782. <productMenu id="userGuide"
  14783. type="1"
  14784. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  14785. size="2.0MB" >
  14786. </productMenu>
  14787. <productMenu id="volume"
  14788. type="12" >
  14789. </productMenu>
  14790. <productMenu id="battery"
  14791. type="1" >
  14792. </productMenu>
  14793. <productID id="6806"
  14794. />
  14795. <productGroupable type="0"
  14796. />
  14797. </product>
  14798. <product id="ERA1X"
  14799. name="ERA 1 X"
  14800. series="UCOM"
  14801. latestVersion="0.2.1"
  14802. latestVersionMesh="0.19"
  14803. latestVersionVoicePrompt="1.2"
  14804. show = "-1" >
  14805. <productMenu id="protocol"
  14806. type="2" >
  14807. </productMenu>
  14808. <productMenu id="ota"
  14809. type="2" >
  14810. <otaLanguages>
  14811. <otaLanguage
  14812. id="0"
  14813. name="English"
  14814. package="0"
  14815. />
  14816. <otaLanguage
  14817. id="0"
  14818. name="French"
  14819. package="1"
  14820. />
  14821. <otaLanguage
  14822. id="0"
  14823. name="Spanish"
  14824. package="2"
  14825. />
  14826. <otaLanguage
  14827. id="0"
  14828. name="Italian"
  14829. package="3"
  14830. />
  14831. <otaLanguage
  14832. id="0"
  14833. name="German"
  14834. package="4"
  14835. />
  14836. <otaLanguage
  14837. id="0"
  14838. name="Dutch"
  14839. package="5"
  14840. />
  14841. <otaLanguage
  14842. id="0"
  14843. name="Russian"
  14844. package="6"
  14845. />
  14846. <otaLanguage
  14847. id="0"
  14848. name="Chinese"
  14849. package="7"
  14850. />
  14851. <otaLanguage
  14852. id="0"
  14853. name="Korean"
  14854. package="8"
  14855. />
  14856. <otaLanguage
  14857. id="0"
  14858. name="Japanese"
  14859. package="9"
  14860. />
  14861. <otaLanguage
  14862. id="0"
  14863. name="Finnish"
  14864. package="10"
  14865. />
  14866. <otaLanguage
  14867. id="0"
  14868. name="Polish"
  14869. package="11"
  14870. />
  14871. <otaLanguage
  14872. id="0"
  14873. name="Czech"
  14874. package="12"
  14875. />
  14876. <otaLanguage
  14877. id="0"
  14878. name="Danish"
  14879. package="13"
  14880. />
  14881. <otaLanguage
  14882. id="0"
  14883. name="Norwegian"
  14884. package="14"
  14885. />
  14886. <otaLanguage
  14887. id="0"
  14888. name="Swedish"
  14889. package="15"
  14890. />
  14891. <otaLanguage
  14892. id="0"
  14893. name="Turkish"
  14894. package="16"
  14895. />
  14896. <otaLanguage
  14897. id="0"
  14898. name="Hungarian"
  14899. package="17"
  14900. />
  14901. <otaLanguage
  14902. id="0"
  14903. name="Portuguese"
  14904. package="18"
  14905. />
  14906. <otaLanguage
  14907. id="0"
  14908. name="Hebrew"
  14909. package="19"
  14910. />
  14911. <otaLanguage
  14912. id="0"
  14913. name="Greek"
  14914. package="20"
  14915. />
  14916. </otaLanguages>
  14917. <otaPackages>
  14918. <package
  14919. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  14920. size="5183988"
  14921. />
  14922. <package
  14923. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  14924. size="5183988"
  14925. />
  14926. <package
  14927. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  14928. size="5183988"
  14929. />
  14930. <package
  14931. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  14932. size="5183988"
  14933. />
  14934. <package
  14935. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  14936. size="5183988"
  14937. />
  14938. <package
  14939. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  14940. size="5183988"
  14941. />
  14942. <package
  14943. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  14944. size="5183988"
  14945. />
  14946. <package
  14947. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  14948. size="5183988"
  14949. />
  14950. <package
  14951. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  14952. size="5183988"
  14953. />
  14954. <package
  14955. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  14956. size="5183988"
  14957. />
  14958. <package
  14959. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  14960. size="5183988"
  14961. />
  14962. <package
  14963. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  14964. size="5183988"
  14965. />
  14966. <package
  14967. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  14968. size="5183988"
  14969. />
  14970. <package
  14971. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  14972. size="5183988"
  14973. />
  14974. <package
  14975. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  14976. size="5183988"
  14977. />
  14978. <package
  14979. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  14980. size="5183988"
  14981. />
  14982. <package
  14983. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  14984. size="5183988"
  14985. />
  14986. <package
  14987. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  14988. size="5183988"
  14989. />
  14990. <package
  14991. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  14992. size="5183988"
  14993. />
  14994. <package
  14995. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  14996. size="5183988"
  14997. />
  14998. <package
  14999. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  15000. size="5183988"
  15001. />
  15002. </otaPackages>
  15003. </productMenu>
  15004. <productMenu id="wa"
  15005. type="0" >
  15006. </productMenu>
  15007. <productMenu id="sip"
  15008. type="1" >
  15009. </productMenu>
  15010. <productMenu id="led"
  15011. type="0" >
  15012. </productMenu>
  15013. <productMenu id="illusion"
  15014. type="1" >
  15015. </productMenu>
  15016. <productMenu id="meshIntercom"
  15017. type="30" >
  15018. </productMenu>
  15019. <productMenu id="meshIntercom+"
  15020. type="3"
  15021. url="2" >
  15022. </productMenu>
  15023. <productMenu id="waveIntercom"
  15024. type="0" >
  15025. </productMenu>
  15026. <productMenu id="bluetoothIntercom"
  15027. type="1" >
  15028. </productMenu>
  15029. <productMenu id="bluetoothIntercomGrouping"
  15030. type="0" >
  15031. </productMenu>
  15032. <productMenu id="fmradio"
  15033. type="1"
  15034. url="1" >
  15035. </productMenu>
  15036. <productMenu id="phone"
  15037. type="1" >
  15038. </productMenu>
  15039. <productMenu id="music"
  15040. type="1" >
  15041. </productMenu>
  15042. <productMenu id="musicSharing"
  15043. type="0" >
  15044. </productMenu>
  15045. <productMenu id="deviceSetting"
  15046. type="1"
  15047. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  15048. </productMenu>
  15049. <productMenu id="quickGuide"
  15050. type="0"
  15051. url=""
  15052. size="1.12MB" >
  15053. </productMenu>
  15054. <productMenu id="userGuide"
  15055. type="1"
  15056. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  15057. size="2.0MB" >
  15058. </productMenu>
  15059. <productMenu id="videoGuide"
  15060. type="0"
  15061. url=""
  15062. size="3.41MB" >
  15063. </productMenu>
  15064. <productMenu id="volume"
  15065. type="16" >
  15066. </productMenu>
  15067. <productMenu id="soundMode"
  15068. type="1" >
  15069. </productMenu>
  15070. <productMenu id="battery"
  15071. type="1" >
  15072. </productMenu>
  15073. <productID id="6A83"
  15074. />
  15075. <productGroupable type="0"
  15076. />
  15077. </product>
  15078. <product id="MeshStation"
  15079. name="Mesh Station"
  15080. series="50"
  15081. latestVersion="0.9"
  15082. show = "-1" >
  15083. <productMenu id="protocol"
  15084. type="2" >
  15085. </productMenu>
  15086. <productMenu id="meshIntercom"
  15087. type="20"
  15088. url="99" >
  15089. </productMenu>
  15090. <productID id="3161"
  15091. />
  15092. <productGroupable type="0"
  15093. />
  15094. </product>
  15095. </products>
  15096. </sna>