snm.xml 287 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250187" appVer="2.14" iosAppVer="2.14" central="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url=""
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60S"
  122. name="60S"
  123. series="60"
  124. latestVersion="1.2"
  125. latestVersionMesh="1.2"
  126. latestVersionVoicePrompt="1.1"
  127. show = "1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="2" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="wa"
  247. type="0" >
  248. </productMenu>
  249. <productMenu id="sip"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="led"
  253. type="0" >
  254. </productMenu>
  255. <productMenu id="illusion"
  256. type="1" >
  257. </productMenu>
  258. <productMenu id="meshIntercom"
  259. type="30" >
  260. </productMenu>
  261. <productMenu id="meshIntercom+"
  262. type="3"
  263. url="2" >
  264. <productMenuURL version="1.0.2"
  265. url="10"
  266. />
  267. </productMenu>
  268. <productMenu id="waveIntercom"
  269. type="1" >
  270. <productMenuType version="1.0.9"
  271. type="0"
  272. />
  273. </productMenu>
  274. <productMenu id="bluetoothIntercom"
  275. type="1"
  276. url="2" >
  277. </productMenu>
  278. <productMenu id="bluetoothIntercomGrouping"
  279. type="0" >
  280. </productMenu>
  281. <productMenu id="fmradio"
  282. type="1"
  283. url="1" >
  284. </productMenu>
  285. <productMenu id="phone"
  286. type="1" >
  287. </productMenu>
  288. <productMenu id="music"
  289. type="1" >
  290. </productMenu>
  291. <productMenu id="musicSharing"
  292. type="0" >
  293. </productMenu>
  294. <productMenu id="deviceSetting"
  295. type="1"
  296. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  297. <productMenuURL version="1.0.2"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  299. />
  300. <productMenuURL version="1.0"
  301. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  302. />
  303. <productMenuURL version="0.9.11"
  304. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  305. />
  306. </productMenu>
  307. <productMenu id="quickGuide"
  308. type="0"
  309. url=""
  310. size="1.12MB" >
  311. </productMenu>
  312. <productMenu id="userGuide"
  313. type="1"
  314. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.0_en_250808.pdf"
  315. size="2.0MB" >
  316. </productMenu>
  317. <productMenu id="videoGuide"
  318. type="0"
  319. url=""
  320. size="3.41MB" >
  321. </productMenu>
  322. <productMenu id="connectGuide"
  323. type="1"
  324. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  325. size="1.12MB" >
  326. </productMenu>
  327. <productMenu id="volume"
  328. type="16" >
  329. <productMenuType version="0.9.11"
  330. type="13"
  331. />
  332. </productMenu>
  333. <productMenu id="soundMode"
  334. type="1" >
  335. <productMenuType version="0.9.11"
  336. type="0"
  337. />
  338. </productMenu>
  339. <productMenu id="battery"
  340. type="1" >
  341. </productMenu>
  342. <productID id="6A02"
  343. />
  344. <productGroupable type="0"
  345. />
  346. </product>
  347. <product id="60R"
  348. name="60R"
  349. series="60"
  350. latestVersion="0.7"
  351. latestVersionMesh="0.8"
  352. latestVersionVoicePrompt="0.2"
  353. show = "-1" >
  354. <productMenu id="protocol"
  355. type="2" >
  356. </productMenu>
  357. <productMenu id="ota"
  358. type="0" >
  359. <otaLanguages>
  360. <otaLanguage
  361. id="0"
  362. name="English"
  363. package="0"
  364. />
  365. <otaLanguage
  366. id="0"
  367. name="Korean"
  368. package="1"
  369. />
  370. </otaLanguages>
  371. <otaPackages>
  372. <package
  373. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  374. size="5183988"
  375. />
  376. <package
  377. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  378. size="5183988"
  379. />
  380. </otaPackages>
  381. </productMenu>
  382. <productMenu id="wa"
  383. type="0" >
  384. </productMenu>
  385. <productMenu id="sip"
  386. type="1" >
  387. </productMenu>
  388. <productMenu id="led"
  389. type="1" >
  390. </productMenu>
  391. <productMenu id="illusion"
  392. type="1" >
  393. </productMenu>
  394. <productMenu id="meshIntercom"
  395. type="30" >
  396. </productMenu>
  397. <productMenu id="bluetoothIntercom"
  398. type="1" >
  399. </productMenu>
  400. <productMenu id="fmradio"
  401. type="1"
  402. url="1" >
  403. </productMenu>
  404. <productMenu id="phone"
  405. type="1" >
  406. </productMenu>
  407. <productMenu id="music"
  408. type="1" >
  409. </productMenu>
  410. <productMenu id="musicSharing"
  411. type="0" >
  412. </productMenu>
  413. <productMenu id="deviceSetting"
  414. type="1"
  415. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml" >
  416. </productMenu>
  417. <productMenu id="quickGuide"
  418. type="0"
  419. url=""
  420. size="1.12MB" >
  421. </productMenu>
  422. <productMenu id="userGuide"
  423. type="0"
  424. url=""
  425. size="2.0MB" >
  426. </productMenu>
  427. <productMenu id="videoGuide"
  428. type="0"
  429. url=""
  430. size="3.41MB" >
  431. </productMenu>
  432. <productMenu id="volume"
  433. type="13" >
  434. </productMenu>
  435. <productMenu id="battery"
  436. type="1" >
  437. </productMenu>
  438. <productID id="6A03"
  439. />
  440. <productGroupable type="0"
  441. />
  442. </product>
  443. <product id="COMP1"
  444. name="BMW COM P1"
  445. series="60"
  446. latestVersion="1.0.6"
  447. latestVersionMesh="0.19"
  448. latestVersionVoicePrompt="1.0"
  449. show = "-1" >
  450. <productMenu id="protocol"
  451. type="2" >
  452. </productMenu>
  453. <productMenu id="ota"
  454. type="2" >
  455. <otaLanguages>
  456. <otaLanguage
  457. id="0"
  458. name="English"
  459. package="0"
  460. />
  461. <otaLanguage
  462. id="0"
  463. name="French"
  464. package="1"
  465. />
  466. <otaLanguage
  467. id="0"
  468. name="Spanish"
  469. package="2"
  470. />
  471. <otaLanguage
  472. id="0"
  473. name="Italian"
  474. package="3"
  475. />
  476. <otaLanguage
  477. id="0"
  478. name="German"
  479. package="4"
  480. />
  481. <otaLanguage
  482. id="0"
  483. name="Dutch"
  484. package="5"
  485. />
  486. <otaLanguage
  487. id="0"
  488. name="Russian"
  489. package="6"
  490. />
  491. <otaLanguage
  492. id="0"
  493. name="Chinese"
  494. package="7"
  495. />
  496. <otaLanguage
  497. id="0"
  498. name="Korean"
  499. package="8"
  500. />
  501. <otaLanguage
  502. id="0"
  503. name="Japanese"
  504. package="9"
  505. />
  506. <otaLanguage
  507. id="0"
  508. name="Finnish"
  509. package="10"
  510. />
  511. </otaLanguages>
  512. <otaPackages>
  513. <package
  514. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  515. size="5183988"
  516. />
  517. <package
  518. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  519. size="5183988"
  520. />
  521. <package
  522. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  523. size="5183988"
  524. />
  525. <package
  526. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  527. size="5183988"
  528. />
  529. <package
  530. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  531. size="5183988"
  532. />
  533. <package
  534. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  535. size="5183988"
  536. />
  537. <package
  538. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  539. size="5183988"
  540. />
  541. <package
  542. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  543. size="5183988"
  544. />
  545. <package
  546. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  547. size="5183988"
  548. />
  549. <package
  550. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  551. size="5183988"
  552. />
  553. <package
  554. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  555. size="5183988"
  556. />
  557. </otaPackages>
  558. </productMenu>
  559. <productMenu id="wa"
  560. type="0" >
  561. </productMenu>
  562. <productMenu id="sip"
  563. type="1" >
  564. </productMenu>
  565. <productMenu id="led"
  566. type="0" >
  567. </productMenu>
  568. <productMenu id="illusion"
  569. type="0" >
  570. </productMenu>
  571. <productMenu id="meshIntercom"
  572. type="30" >
  573. </productMenu>
  574. <productMenu id="bluetoothIntercom"
  575. type="1" >
  576. </productMenu>
  577. <productMenu id="bluetoothIntercomGrouping"
  578. type="0" >
  579. </productMenu>
  580. <productMenu id="fmradio"
  581. type="0" >
  582. </productMenu>
  583. <productMenu id="phone"
  584. type="1" >
  585. </productMenu>
  586. <productMenu id="music"
  587. type="1" >
  588. </productMenu>
  589. <productMenu id="musicSharing"
  590. type="0" >
  591. </productMenu>
  592. <productMenu id="deviceSetting"
  593. type="1"
  594. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  595. </productMenu>
  596. <productMenu id="quickGuide"
  597. type="0"
  598. url=""
  599. size="1.12MB" >
  600. </productMenu>
  601. <productMenu id="userGuide"
  602. type="0"
  603. url=""
  604. size="2.0MB" >
  605. </productMenu>
  606. <productMenu id="videoGuide"
  607. type="0"
  608. url=""
  609. size="3.41MB" >
  610. </productMenu>
  611. <productMenu id="volume"
  612. type="16" >
  613. </productMenu>
  614. <productMenu id="battery"
  615. type="1" >
  616. </productMenu>
  617. <productID id="6A80"
  618. />
  619. <productGroupable type="0"
  620. />
  621. </product>
  622. <product id="50S"
  623. name="50S"
  624. series="50"
  625. latestVersion="2.7.1"
  626. show = "1" >
  627. <productMenu id="protocol"
  628. type="2" >
  629. </productMenu>
  630. <productMenu id="alexa"
  631. type="0" >
  632. </productMenu>
  633. <productMenu id="ota"
  634. type="0"
  635. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  636. size="1150234" >
  637. </productMenu>
  638. <productMenu id="wa"
  639. type="1" >
  640. </productMenu>
  641. <productMenu id="sip"
  642. type="1" >
  643. </productMenu>
  644. <productMenu id="meshIntercom"
  645. type="30" >
  646. <productMenuType version="2.1.1"
  647. type="20"
  648. />
  649. </productMenu>
  650. <productMenu id="meshIntercom+"
  651. type="3"
  652. url="2" >
  653. <productMenuType version="2.5"
  654. type="2"
  655. />
  656. <productMenuURL version="2.1.1"
  657. url="0"
  658. />
  659. </productMenu>
  660. <productMenu id="waveIntercom"
  661. type="1" >
  662. <productMenuType version="2.6"
  663. type="0"
  664. />
  665. </productMenu>
  666. <productMenu id="bluetoothIntercom"
  667. type="1" >
  668. </productMenu>
  669. <productMenu id="phone"
  670. type="1" >
  671. </productMenu>
  672. <productMenu id="music"
  673. type="1" >
  674. </productMenu>
  675. <productMenu id="fmradio"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="deviceSetting"
  679. type="1"
  680. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  681. <productMenuURL version="2.5"
  682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  683. />
  684. <productMenuURL version="2.1.1"
  685. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  686. />
  687. <productMenuURL version="2.0.3"
  688. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  689. />
  690. </productMenu>
  691. <productMenu id="quickGuide"
  692. type="0"
  693. url=""
  694. size="934KB" >
  695. </productMenu>
  696. <productMenu id="userGuide"
  697. type="1"
  698. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  699. size="1.14MB" >
  700. </productMenu>
  701. <productMenu id="videoGuide"
  702. type="1"
  703. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  704. size="3.41MB" >
  705. </productMenu>
  706. <productMenu id="connectGuide"
  707. type="1"
  708. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  709. size="1.12MB" >
  710. </productMenu>
  711. <productMenu id="volume"
  712. type="11" >
  713. </productMenu>
  714. <productMenu id="battery"
  715. type="1" >
  716. </productMenu>
  717. <productID id="3210"
  718. />
  719. <productGroupable type="0"
  720. />
  721. </product>
  722. <product id="50S"
  723. name="50S"
  724. series="50"
  725. latestVersion="1.5"
  726. show = "-1" >
  727. <productMenu id="protocol"
  728. type="2" >
  729. </productMenu>
  730. <productMenu id="alexa"
  731. type="0" >
  732. </productMenu>
  733. <productMenu id="wa"
  734. type="1" >
  735. </productMenu>
  736. <productMenu id="sip"
  737. type="1" >
  738. </productMenu>
  739. <productMenu id="meshIntercom"
  740. type="30" >
  741. <productMenuType version="1.2.2"
  742. type="20"
  743. />
  744. </productMenu>
  745. <productMenu id="meshIntercom+"
  746. type="3"
  747. url="2" >
  748. <productMenuType version="1.4.9"
  749. type="2"
  750. />
  751. <productMenuURL version="1.2.2"
  752. url="0"
  753. />
  754. </productMenu>
  755. <productMenu id="waveIntercom"
  756. type="1" >
  757. <productMenuType version="1.3.9"
  758. type="0"
  759. />
  760. </productMenu>
  761. <productMenu id="bluetoothIntercom"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="phone"
  765. type="1" >
  766. </productMenu>
  767. <productMenu id="music"
  768. type="1" >
  769. </productMenu>
  770. <productMenu id="fmradio"
  771. type="1" >
  772. </productMenu>
  773. <productMenu id="deviceSetting"
  774. type="1"
  775. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  776. <productMenuURL version="1.4.9"
  777. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  778. />
  779. <productMenuURL version="1.3.9"
  780. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  781. />
  782. <productMenuURL version="1.2.2"
  783. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  784. />
  785. <productMenuURL version="1.1.1"
  786. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  787. />
  788. </productMenu>
  789. <productMenu id="quickGuide"
  790. type="0"
  791. url=""
  792. size="934KB" >
  793. </productMenu>
  794. <productMenu id="userGuide"
  795. type="1"
  796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  797. size="1.14MB" >
  798. </productMenu>
  799. <productMenu id="videoGuide"
  800. type="1"
  801. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  802. size="3.41MB" >
  803. </productMenu>
  804. <productMenu id="volume"
  805. type="11" >
  806. </productMenu>
  807. <productMenu id="battery"
  808. type="1" >
  809. </productMenu>
  810. <productID id="3132"
  811. />
  812. <productGroupable type="0"
  813. />
  814. </product>
  815. <product id="50R"
  816. name="50R"
  817. series="50"
  818. latestVersion="2.7"
  819. show = "1" >
  820. <productMenu id="protocol"
  821. type="2" >
  822. </productMenu>
  823. <productMenu id="alexa"
  824. type="0" >
  825. </productMenu>
  826. <productMenu id="ota"
  827. type="0"
  828. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  829. size="1150234" >
  830. </productMenu>
  831. <productMenu id="wa"
  832. type="1" >
  833. </productMenu>
  834. <productMenu id="sip"
  835. type="1" >
  836. </productMenu>
  837. <productMenu id="meshIntercom"
  838. type="30" >
  839. <productMenuType version="2.1.1"
  840. type="20"
  841. />
  842. </productMenu>
  843. <productMenu id="meshIntercom+"
  844. type="3"
  845. url="2" >
  846. <productMenuType version="2.5"
  847. type="2"
  848. />
  849. <productMenuURL version="2.1.1"
  850. url="0"
  851. />
  852. </productMenu>
  853. <productMenu id="bluetoothIntercom"
  854. type="1" >
  855. </productMenu>
  856. <productMenu id="phone"
  857. type="1" >
  858. </productMenu>
  859. <productMenu id="music"
  860. type="1" >
  861. </productMenu>
  862. <productMenu id="fmradio"
  863. type="1" >
  864. </productMenu>
  865. <productMenu id="deviceSetting"
  866. type="1"
  867. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  868. <productMenuURL version="2.5"
  869. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  870. />
  871. <productMenuURL version="2.1.1"
  872. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  873. />
  874. <productMenuURL version="2.0"
  875. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  876. />
  877. </productMenu>
  878. <productMenu id="quickGuide"
  879. type="0"
  880. url=""
  881. size="344KB" >
  882. </productMenu>
  883. <productMenu id="userGuide"
  884. type="1"
  885. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  886. size="3.41MB" >
  887. </productMenu>
  888. <productMenu id="videoGuide"
  889. type="1"
  890. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  891. size="3.41MB" >
  892. </productMenu>
  893. <productMenu id="connectGuide"
  894. type="1"
  895. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  896. size="1.12MB" >
  897. </productMenu>
  898. <productMenu id="volume"
  899. type="11" >
  900. </productMenu>
  901. <productMenu id="battery"
  902. type="1" >
  903. </productMenu>
  904. <productID id="3218"
  905. />
  906. <productGroupable type="0"
  907. />
  908. </product>
  909. <product id="50R"
  910. name="50R"
  911. series="50"
  912. latestVersion="1.5"
  913. show = "-1" >
  914. <productMenu id="protocol"
  915. type="2" >
  916. </productMenu>
  917. <productMenu id="alexa"
  918. type="0" >
  919. </productMenu>
  920. <productMenu id="wa"
  921. type="1" >
  922. </productMenu>
  923. <productMenu id="sip"
  924. type="1" >
  925. </productMenu>
  926. <productMenu id="meshIntercom"
  927. type="30" >
  928. <productMenuType version="1.2.2"
  929. type="20"
  930. />
  931. </productMenu>
  932. <productMenu id="meshIntercom+"
  933. type="3"
  934. url="2" >
  935. <productMenuType version="1.4.9"
  936. type="2"
  937. />
  938. <productMenuURL version="1.2.2"
  939. url="0"
  940. />
  941. </productMenu>
  942. <productMenu id="waveIntercom"
  943. type="1" >
  944. <productMenuType version="1.3.9"
  945. type="0"
  946. />
  947. </productMenu>
  948. <productMenu id="bluetoothIntercom"
  949. type="1" >
  950. </productMenu>
  951. <productMenu id="phone"
  952. type="1" >
  953. </productMenu>
  954. <productMenu id="music"
  955. type="1" >
  956. </productMenu>
  957. <productMenu id="fmradio"
  958. type="1" >
  959. </productMenu>
  960. <productMenu id="deviceSetting"
  961. type="1"
  962. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  963. <productMenuURL version="1.4.9"
  964. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  965. />
  966. <productMenuURL version="1.3.9"
  967. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  968. />
  969. <productMenuURL version="1.2.2"
  970. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  971. />
  972. <productMenuURL version="1.1.1"
  973. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  974. />
  975. </productMenu>
  976. <productMenu id="quickGuide"
  977. type="0"
  978. url=""
  979. size="344KB" >
  980. </productMenu>
  981. <productMenu id="userGuide"
  982. type="1"
  983. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  984. size="3.41MB" >
  985. </productMenu>
  986. <productMenu id="videoGuide"
  987. type="1"
  988. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  989. size="3.41MB" >
  990. </productMenu>
  991. <productMenu id="volume"
  992. type="11" >
  993. </productMenu>
  994. <productMenu id="battery"
  995. type="1" >
  996. </productMenu>
  997. <productID id="3134"
  998. />
  999. <productGroupable type="0"
  1000. />
  1001. </product>
  1002. <product id="50C"
  1003. name="50C"
  1004. series="50"
  1005. latestVersion="1.4.2"
  1006. show = "1" >
  1007. <productMenu id="protocol"
  1008. type="2" >
  1009. </productMenu>
  1010. <productMenu id="ota"
  1011. type="0" >
  1012. </productMenu>
  1013. <productMenu id="wa"
  1014. type="1" >
  1015. </productMenu>
  1016. <productMenu id="sip"
  1017. type="1" >
  1018. </productMenu>
  1019. <productMenu id="meshIntercom"
  1020. type="30" >
  1021. <productMenuType version="1.1.1"
  1022. type="20"
  1023. />
  1024. </productMenu>
  1025. <productMenu id="meshIntercom+"
  1026. type="3"
  1027. url="2" >
  1028. <productMenuType version="1.3.9"
  1029. type="2"
  1030. />
  1031. <productMenuURL version="1.1.1"
  1032. url="0"
  1033. />
  1034. </productMenu>
  1035. <productMenu id="waveIntercom"
  1036. type="1" >
  1037. <productMenuType version="1.2.9"
  1038. type="0"
  1039. />
  1040. </productMenu>
  1041. <productMenu id="bluetoothIntercom"
  1042. type="1" >
  1043. </productMenu>
  1044. <productMenu id="phone"
  1045. type="1" >
  1046. </productMenu>
  1047. <productMenu id="music"
  1048. type="1" >
  1049. </productMenu>
  1050. <productMenu id="fmradio"
  1051. type="1" >
  1052. </productMenu>
  1053. <productMenu id="deviceSetting"
  1054. type="1"
  1055. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1056. <productMenuURL version="1.3.9"
  1057. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1058. />
  1059. <productMenuURL version="1.1.1"
  1060. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1061. />
  1062. <productMenuURL version="1.0.1"
  1063. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1064. />
  1065. </productMenu>
  1066. <productMenu id="quickGuide"
  1067. type="0"
  1068. url=""
  1069. size="344KB" >
  1070. </productMenu>
  1071. <productMenu id="userGuide"
  1072. type="1"
  1073. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1074. size="3.41MB" >
  1075. </productMenu>
  1076. <productMenu id="connectGuide"
  1077. type="1"
  1078. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1079. size="1.12MB" >
  1080. </productMenu>
  1081. <productMenu id="volume"
  1082. type="11" >
  1083. </productMenu>
  1084. <productMenu id="battery"
  1085. type="1" >
  1086. </productMenu>
  1087. <productID id="3232"
  1088. />
  1089. <productGroupable type="0"
  1090. />
  1091. </product>
  1092. <product id="PHANTOMXB"
  1093. name="PHANTOM XB"
  1094. series="Helmet"
  1095. latestVersion="0.1"
  1096. latestVersionVoicePrompt="1.0"
  1097. show = "-1" >
  1098. <productMenu id="protocol"
  1099. type="2" >
  1100. </productMenu>
  1101. <productMenu id="ota"
  1102. type="0" >
  1103. <otaLanguages>
  1104. <otaLanguage
  1105. id="0"
  1106. name="English"
  1107. package="0"
  1108. />
  1109. <otaLanguage
  1110. id="0"
  1111. name="French"
  1112. package="1"
  1113. />
  1114. <otaLanguage
  1115. id="0"
  1116. name="Spanish"
  1117. package="2"
  1118. />
  1119. <otaLanguage
  1120. id="0"
  1121. name="Italian"
  1122. package="3"
  1123. />
  1124. <otaLanguage
  1125. id="0"
  1126. name="German"
  1127. package="4"
  1128. />
  1129. <otaLanguage
  1130. id="0"
  1131. name="Dutch"
  1132. package="5"
  1133. />
  1134. <otaLanguage
  1135. id="0"
  1136. name="Russian"
  1137. package="6"
  1138. />
  1139. <otaLanguage
  1140. id="0"
  1141. name="Chinese"
  1142. package="7"
  1143. />
  1144. <otaLanguage
  1145. id="0"
  1146. name="Korean"
  1147. package="8"
  1148. />
  1149. <otaLanguage
  1150. id="0"
  1151. name="Japanese"
  1152. package="9"
  1153. />
  1154. <otaLanguage
  1155. id="0"
  1156. name="Finnish"
  1157. package="10"
  1158. />
  1159. <otaLanguage
  1160. id="0"
  1161. name="Polish"
  1162. package="11"
  1163. />
  1164. </otaLanguages>
  1165. <otaPackages>
  1166. <package
  1167. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1168. size="5183988"
  1169. />
  1170. <package
  1171. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1172. size="5183988"
  1173. />
  1174. <package
  1175. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1176. size="5183988"
  1177. />
  1178. <package
  1179. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1180. size="5183988"
  1181. />
  1182. <package
  1183. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1184. size="5183988"
  1185. />
  1186. <package
  1187. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1188. size="5183988"
  1189. />
  1190. <package
  1191. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1192. size="5183988"
  1193. />
  1194. <package
  1195. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1196. size="5183988"
  1197. />
  1198. <package
  1199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1200. size="5183988"
  1201. />
  1202. <package
  1203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1204. size="5183988"
  1205. />
  1206. <package
  1207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1208. size="5183988"
  1209. />
  1210. <package
  1211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1212. size="5183988"
  1213. />
  1214. </otaPackages>
  1215. </productMenu>
  1216. <productMenu id="wa"
  1217. type="0" >
  1218. </productMenu>
  1219. <productMenu id="led"
  1220. type="5" >
  1221. </productMenu>
  1222. <productMenu id="led+"
  1223. type="2"
  1224. url="1" >
  1225. </productMenu>
  1226. <productMenu id="meshIntercom"
  1227. type="30" >
  1228. </productMenu>
  1229. <productMenu id="meshIntercom+"
  1230. type="3"
  1231. url="2" >
  1232. </productMenu>
  1233. <productMenu id="waveIntercom"
  1234. type="1" >
  1235. </productMenu>
  1236. <productMenu id="fmradio"
  1237. type="0" >
  1238. </productMenu>
  1239. <productMenu id="phone"
  1240. type="1" >
  1241. </productMenu>
  1242. <productMenu id="music"
  1243. type="1" >
  1244. </productMenu>
  1245. <productMenu id="musicSharing"
  1246. type="0" >
  1247. </productMenu>
  1248. <productMenu id="deviceSetting"
  1249. type="1"
  1250. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1251. </productMenu>
  1252. <productMenu id="quickGuide"
  1253. type="0"
  1254. url=""
  1255. size="1.12MB" >
  1256. </productMenu>
  1257. <productMenu id="userGuide"
  1258. type="1"
  1259. url=""
  1260. size="2.0MB" >
  1261. </productMenu>
  1262. <productMenu id="videoGuide"
  1263. type="0"
  1264. url=""
  1265. size="3.41MB" >
  1266. </productMenu>
  1267. <productMenu id="volume"
  1268. type="16" >
  1269. </productMenu>
  1270. <productMenu id="battery"
  1271. type="1" >
  1272. </productMenu>
  1273. <productID id="6A0C"
  1274. />
  1275. <productGroupable type="0"
  1276. />
  1277. </product>
  1278. <product id="PHANTOM"
  1279. name="PHANTOM ANC"
  1280. series="Helmet"
  1281. latestVersion="1.1.4"
  1282. latestVersionVoicePrompt="1.0"
  1283. show = "1" >
  1284. <productMenu id="protocol"
  1285. type="2" >
  1286. </productMenu>
  1287. <productMenu id="ota"
  1288. type="2" >
  1289. <productMenuType version="0.6.9"
  1290. type="0"
  1291. />
  1292. <otaLanguages>
  1293. <otaLanguage
  1294. id="0"
  1295. name="English"
  1296. package="0"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="French"
  1301. package="1"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="Spanish"
  1306. package="2"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="Italian"
  1311. package="3"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="German"
  1316. package="4"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Dutch"
  1321. package="5"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="Russian"
  1326. package="6"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="Chinese"
  1331. package="7"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="Korean"
  1336. package="8"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="Japanese"
  1341. package="9"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="Finnish"
  1346. package="10"
  1347. />
  1348. <otaLanguage
  1349. id="0"
  1350. name="Polish"
  1351. package="11"
  1352. />
  1353. </otaLanguages>
  1354. <otaPackages>
  1355. <package
  1356. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0.img"
  1357. size="5183988"
  1358. />
  1359. <package
  1360. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fr-FR.img"
  1361. size="5183988"
  1362. />
  1363. <package
  1364. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-es-ES.img"
  1365. size="5183988"
  1366. />
  1367. <package
  1368. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-it-IT.img"
  1369. size="5183988"
  1370. />
  1371. <package
  1372. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-de-DE.img"
  1373. size="5183988"
  1374. />
  1375. <package
  1376. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-nl-NL.img"
  1377. size="5183988"
  1378. />
  1379. <package
  1380. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ru-RU.img"
  1381. size="5183988"
  1382. />
  1383. <package
  1384. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-cmn-CN.img"
  1385. size="5183988"
  1386. />
  1387. <package
  1388. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ko-KR.img"
  1389. size="5183988"
  1390. />
  1391. <package
  1392. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-ja-JP.img"
  1393. size="5183988"
  1394. />
  1395. <package
  1396. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-fi-FI.img"
  1397. size="5183988"
  1398. />
  1399. <package
  1400. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.4-build0-pl-PL.img"
  1401. size="5183988"
  1402. />
  1403. </otaPackages>
  1404. </productMenu>
  1405. <productMenu id="wa"
  1406. type="0" >
  1407. </productMenu>
  1408. <productMenu id="led"
  1409. type="5" >
  1410. </productMenu>
  1411. <productMenu id="led+"
  1412. type="2"
  1413. url="1" >
  1414. </productMenu>
  1415. <productMenu id="meshIntercom"
  1416. type="30" >
  1417. </productMenu>
  1418. <productMenu id="meshIntercom+"
  1419. type="3"
  1420. url="2" >
  1421. <productMenuURL version="1.0.4"
  1422. url="10"
  1423. />
  1424. </productMenu>
  1425. <productMenu id="waveIntercom"
  1426. type="1" >
  1427. <productMenuType version="1.0.9"
  1428. type="0"
  1429. />
  1430. </productMenu>
  1431. <productMenu id="fmradio"
  1432. type="0" >
  1433. </productMenu>
  1434. <productMenu id="phone"
  1435. type="1" >
  1436. </productMenu>
  1437. <productMenu id="music"
  1438. type="1" >
  1439. </productMenu>
  1440. <productMenu id="musicSharing"
  1441. type="0" >
  1442. </productMenu>
  1443. <productMenu id="deviceSetting"
  1444. type="1"
  1445. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1446. <productMenuURL version="1.1.2"
  1447. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  1448. />
  1449. <productMenuURL version="1.0.4"
  1450. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  1451. />
  1452. </productMenu>
  1453. <productMenu id="quickGuide"
  1454. type="0"
  1455. url=""
  1456. size="1.12MB" >
  1457. </productMenu>
  1458. <productMenu id="userGuide"
  1459. type="1"
  1460. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1461. size="2.0MB" >
  1462. </productMenu>
  1463. <productMenu id="videoGuide"
  1464. type="0"
  1465. url=""
  1466. size="3.41MB" >
  1467. </productMenu>
  1468. <productMenu id="volume"
  1469. type="16" >
  1470. </productMenu>
  1471. <productMenu id="soundMode"
  1472. type="1" >
  1473. <productMenuType version="0.9.11"
  1474. type="0"
  1475. />
  1476. </productMenu>
  1477. <productMenu id="battery"
  1478. type="1" >
  1479. </productMenu>
  1480. <productID id="6A01"
  1481. />
  1482. <productGroupable type="0"
  1483. />
  1484. </product>
  1485. <product id="PHANTOM"
  1486. name="PHANTOM"
  1487. series="Helmet"
  1488. latestVersion="1.1.4"
  1489. latestVersionVoicePrompt="1.0"
  1490. show = "1" >
  1491. <productMenu id="protocol"
  1492. type="2" >
  1493. </productMenu>
  1494. <productMenu id="ota"
  1495. type="2" >
  1496. <otaLanguages>
  1497. <otaLanguage
  1498. id="0"
  1499. name="English"
  1500. package="0"
  1501. />
  1502. <otaLanguage
  1503. id="0"
  1504. name="French"
  1505. package="1"
  1506. />
  1507. <otaLanguage
  1508. id="0"
  1509. name="Spanish"
  1510. package="2"
  1511. />
  1512. <otaLanguage
  1513. id="0"
  1514. name="Italian"
  1515. package="3"
  1516. />
  1517. <otaLanguage
  1518. id="0"
  1519. name="German"
  1520. package="4"
  1521. />
  1522. <otaLanguage
  1523. id="0"
  1524. name="Dutch"
  1525. package="5"
  1526. />
  1527. <otaLanguage
  1528. id="0"
  1529. name="Russian"
  1530. package="6"
  1531. />
  1532. <otaLanguage
  1533. id="0"
  1534. name="Chinese"
  1535. package="7"
  1536. />
  1537. <otaLanguage
  1538. id="0"
  1539. name="Korean"
  1540. package="8"
  1541. />
  1542. <otaLanguage
  1543. id="0"
  1544. name="Japanese"
  1545. package="9"
  1546. />
  1547. <otaLanguage
  1548. id="0"
  1549. name="Finnish"
  1550. package="10"
  1551. />
  1552. <otaLanguage
  1553. id="0"
  1554. name="Polish"
  1555. package="11"
  1556. />
  1557. </otaLanguages>
  1558. <otaPackages>
  1559. <package
  1560. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1561. size="5183988"
  1562. />
  1563. <package
  1564. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1565. size="5183988"
  1566. />
  1567. <package
  1568. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1569. size="5183988"
  1570. />
  1571. <package
  1572. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1605. size="5183988"
  1606. />
  1607. </otaPackages>
  1608. </productMenu>
  1609. <productMenu id="wa"
  1610. type="0" >
  1611. </productMenu>
  1612. <productMenu id="led"
  1613. type="5" >
  1614. <productMenuType version="1.0.1"
  1615. type="4"
  1616. />
  1617. </productMenu>
  1618. <productMenu id="led+"
  1619. type="2"
  1620. url="1" >
  1621. <productMenuType version="1.0.1"
  1622. type="-1"
  1623. />
  1624. </productMenu>
  1625. <productMenu id="meshIntercom"
  1626. type="30" >
  1627. </productMenu>
  1628. <productMenu id="meshIntercom+"
  1629. type="3"
  1630. url="2" >
  1631. <productMenuURL version="1.0.4"
  1632. url="10"
  1633. />
  1634. </productMenu>
  1635. <productMenu id="waveIntercom"
  1636. type="1" >
  1637. <productMenuType version="1.0.9"
  1638. type="0"
  1639. />
  1640. </productMenu>
  1641. <productMenu id="fmradio"
  1642. type="0" >
  1643. </productMenu>
  1644. <productMenu id="phone"
  1645. type="1" >
  1646. </productMenu>
  1647. <productMenu id="music"
  1648. type="1" >
  1649. </productMenu>
  1650. <productMenu id="musicSharing"
  1651. type="0" >
  1652. </productMenu>
  1653. <productMenu id="deviceSetting"
  1654. type="1"
  1655. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1656. <productMenuURL version="1.0.4"
  1657. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  1658. />
  1659. <productMenuURL version="1.0.1"
  1660. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  1661. />
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="connectGuide"
  1679. type="1"
  1680. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  1681. size="1.12MB" >
  1682. </productMenu>
  1683. <productMenu id="volume"
  1684. type="16" >
  1685. <productMenuType version="1.0"
  1686. type="13"
  1687. />
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A04"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="10R2MESH"
  1698. name="10R2 MESH"
  1699. series="10"
  1700. latestVersion="0.1.11"
  1701. latestVersionVoicePrompt="1.1"
  1702. show = "-1" >
  1703. <productMenu id="protocol"
  1704. type="2" >
  1705. </productMenu>
  1706. <productMenu id="ota"
  1707. type="0" >
  1708. <otaLanguages>
  1709. <otaLanguage
  1710. id="0"
  1711. name="English"
  1712. package="0"
  1713. />
  1714. <otaLanguage
  1715. id="0"
  1716. name="French"
  1717. package="1"
  1718. />
  1719. <otaLanguage
  1720. id="0"
  1721. name="Spanish"
  1722. package="2"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="Italian"
  1727. package="3"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="German"
  1732. package="4"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Dutch"
  1737. package="5"
  1738. />
  1739. <otaLanguage
  1740. id="0"
  1741. name="Russian"
  1742. package="6"
  1743. />
  1744. <otaLanguage
  1745. id="0"
  1746. name="Chinese"
  1747. package="7"
  1748. />
  1749. <otaLanguage
  1750. id="0"
  1751. name="Korean"
  1752. package="8"
  1753. />
  1754. <otaLanguage
  1755. id="0"
  1756. name="Japanese"
  1757. package="9"
  1758. />
  1759. <otaLanguage
  1760. id="0"
  1761. name="Finnish"
  1762. package="10"
  1763. />
  1764. <otaLanguage
  1765. id="0"
  1766. name="Polish"
  1767. package="11"
  1768. />
  1769. </otaLanguages>
  1770. <otaPackages>
  1771. <package
  1772. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1809. size="5183988"
  1810. />
  1811. <package
  1812. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1813. size="5183988"
  1814. />
  1815. <package
  1816. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1817. size="5183988"
  1818. />
  1819. </otaPackages>
  1820. </productMenu>
  1821. <productMenu id="wa"
  1822. type="0" >
  1823. </productMenu>
  1824. <productMenu id="led"
  1825. type="5" >
  1826. </productMenu>
  1827. <productMenu id="led+"
  1828. type="2"
  1829. url="1" >
  1830. </productMenu>
  1831. <productMenu id="meshIntercom"
  1832. type="30" >
  1833. </productMenu>
  1834. <productMenu id="meshIntercom+"
  1835. type="3"
  1836. url="2" >
  1837. </productMenu>
  1838. <productMenu id="waveIntercom"
  1839. type="1" >
  1840. </productMenu>
  1841. <productMenu id="fmradio"
  1842. type="0" >
  1843. </productMenu>
  1844. <productMenu id="phone"
  1845. type="1" >
  1846. </productMenu>
  1847. <productMenu id="music"
  1848. type="1" >
  1849. </productMenu>
  1850. <productMenu id="musicSharing"
  1851. type="0" >
  1852. </productMenu>
  1853. <productMenu id="deviceSetting"
  1854. type="1"
  1855. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1856. </productMenu>
  1857. <productMenu id="quickGuide"
  1858. type="0"
  1859. url=""
  1860. size="1.12MB" >
  1861. </productMenu>
  1862. <productMenu id="userGuide"
  1863. type="1"
  1864. url=""
  1865. size="2.0MB" >
  1866. </productMenu>
  1867. <productMenu id="videoGuide"
  1868. type="0"
  1869. url=""
  1870. size="3.41MB" >
  1871. </productMenu>
  1872. <productMenu id="volume"
  1873. type="16" >
  1874. </productMenu>
  1875. <productMenu id="battery"
  1876. type="1" >
  1877. </productMenu>
  1878. <productID id="6A07"
  1879. />
  1880. <productGroupable type="0"
  1881. />
  1882. </product>
  1883. <product id="Impulse"
  1884. name="Impulse"
  1885. series="Helmet"
  1886. latestVersion="1.4"
  1887. show = "1" >
  1888. <productMenu id="protocol"
  1889. type="2" >
  1890. </productMenu>
  1891. <productMenu id="alexa"
  1892. type="0" >
  1893. </productMenu>
  1894. <productMenu id="ota"
  1895. type="0" >
  1896. </productMenu>
  1897. <productMenu id="wa"
  1898. type="24" >
  1899. </productMenu>
  1900. <productMenu id="manager"
  1901. type="0" >
  1902. </productMenu>
  1903. <productMenu id="sip"
  1904. type="1" >
  1905. </productMenu>
  1906. <productMenu id="led"
  1907. type="1" >
  1908. <productMenuType version="1.0.1"
  1909. type="2"
  1910. />
  1911. <productMenuType version="1.0"
  1912. type="1"
  1913. />
  1914. </productMenu>
  1915. <productMenu id="meshIntercom"
  1916. type="30" >
  1917. <productMenuType version="1.1.1"
  1918. type="20"
  1919. />
  1920. </productMenu>
  1921. <productMenu id="meshIntercom+"
  1922. type="3"
  1923. url="2" >
  1924. <productMenuType version="1.3.9"
  1925. type="2"
  1926. />
  1927. <productMenuURL version="1.1.1"
  1928. url="0"
  1929. />
  1930. </productMenu>
  1931. <productMenu id="waveIntercom"
  1932. type="1" >
  1933. <productMenuType version="1.3.9"
  1934. type="0"
  1935. />
  1936. </productMenu>
  1937. <productMenu id="bluetoothIntercom"
  1938. type="1" >
  1939. </productMenu>
  1940. <productMenu id="phone"
  1941. type="1" >
  1942. </productMenu>
  1943. <productMenu id="music"
  1944. type="1" >
  1945. </productMenu>
  1946. <productMenu id="fmradio"
  1947. type="1" >
  1948. </productMenu>
  1949. <productMenu id="deviceSetting"
  1950. type="1"
  1951. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  1952. <productMenuURL version="1.3.9"
  1953. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  1954. />
  1955. <productMenuURL version="1.1.1"
  1956. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  1957. />
  1958. <productMenuURL version="1.0.4"
  1959. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  1960. />
  1961. </productMenu>
  1962. <productMenu id="quickGuide"
  1963. type="0"
  1964. url=""
  1965. size="344KB" >
  1966. </productMenu>
  1967. <productMenu id="userGuide"
  1968. type="1"
  1969. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  1970. size="3.41MB" >
  1971. </productMenu>
  1972. <productMenu id="volume"
  1973. type="11" >
  1974. </productMenu>
  1975. <productMenu id="battery"
  1976. type="1" >
  1977. </productMenu>
  1978. <productID id="3148"
  1979. />
  1980. <productGroupable type="0"
  1981. />
  1982. </product>
  1983. <product id="Impulse"
  1984. name="Impulse"
  1985. series="Helmet"
  1986. latestVersion="2.0"
  1987. show = "-1" >
  1988. <productMenu id="protocol"
  1989. type="2" >
  1990. </productMenu>
  1991. <productMenu id="alexa"
  1992. type="0" >
  1993. </productMenu>
  1994. <productMenu id="ota"
  1995. type="0" >
  1996. </productMenu>
  1997. <productMenu id="wa"
  1998. type="8" >
  1999. </productMenu>
  2000. <productMenu id="manager"
  2001. type="0" >
  2002. </productMenu>
  2003. <productMenu id="sip"
  2004. type="1" >
  2005. </productMenu>
  2006. <productMenu id="led"
  2007. type="3" >
  2008. </productMenu>
  2009. <productMenu id="meshIntercom"
  2010. type="20" >
  2011. </productMenu>
  2012. <productMenu id="bluetoothIntercom"
  2013. type="1" >
  2014. </productMenu>
  2015. <productMenu id="phone"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="music"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="fmradio"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="deviceSetting"
  2025. type="1"
  2026. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  2027. </productMenu>
  2028. <productMenu id="quickGuide"
  2029. type="1"
  2030. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  2031. size="344KB" >
  2032. </productMenu>
  2033. <productMenu id="userGuide"
  2034. type="1"
  2035. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  2036. size="3.41MB" >
  2037. </productMenu>
  2038. <productMenu id="volume"
  2039. type="11" >
  2040. </productMenu>
  2041. <productMenu id="battery"
  2042. type="1" >
  2043. </productMenu>
  2044. <productID id="3221"
  2045. />
  2046. <productGroupable type="0"
  2047. />
  2048. </product>
  2049. <product id="Stryker"
  2050. name="Stryker"
  2051. series="Helmet"
  2052. latestVersion="1.4"
  2053. show = "1" >
  2054. <productMenu id="protocol"
  2055. type="2" >
  2056. </productMenu>
  2057. <productMenu id="alexa"
  2058. type="0" >
  2059. </productMenu>
  2060. <productMenu id="ota"
  2061. type="0" >
  2062. </productMenu>
  2063. <productMenu id="wa"
  2064. type="40" >
  2065. </productMenu>
  2066. <productMenu id="manager"
  2067. type="0" >
  2068. </productMenu>
  2069. <productMenu id="sip"
  2070. type="1" >
  2071. </productMenu>
  2072. <productMenu id="led"
  2073. type="1" >
  2074. <productMenuType version="1.0.1"
  2075. type="2"
  2076. />
  2077. <productMenuType version="1.0"
  2078. type="1"
  2079. />
  2080. </productMenu>
  2081. <productMenu id="meshIntercom"
  2082. type="30" >
  2083. <productMenuType version="1.1.1"
  2084. type="20"
  2085. />
  2086. </productMenu>
  2087. <productMenu id="meshIntercom+"
  2088. type="3"
  2089. url="2" >
  2090. <productMenuType version="1.3.9"
  2091. type="2"
  2092. />
  2093. <productMenuURL version="1.1.1"
  2094. url="0"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="waveIntercom"
  2098. type="1" >
  2099. <productMenuType version="1.2.9"
  2100. type="0"
  2101. />
  2102. </productMenu>
  2103. <productMenu id="bluetoothIntercom"
  2104. type="1" >
  2105. </productMenu>
  2106. <productMenu id="phone"
  2107. type="1" >
  2108. </productMenu>
  2109. <productMenu id="music"
  2110. type="1" >
  2111. </productMenu>
  2112. <productMenu id="fmradio"
  2113. type="1" >
  2114. </productMenu>
  2115. <productMenu id="deviceSetting"
  2116. type="1"
  2117. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  2118. <productMenuURL version="1.3.9"
  2119. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  2120. />
  2121. <productMenuURL version="1.1.1"
  2122. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  2123. />
  2124. <productMenuURL version="1.0.4"
  2125. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  2126. />
  2127. </productMenu>
  2128. <productMenu id="quickGuide"
  2129. type="0"
  2130. url=""
  2131. size="344KB" >
  2132. </productMenu>
  2133. <productMenu id="userGuide"
  2134. type="1"
  2135. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  2136. size="3.41MB" >
  2137. </productMenu>
  2138. <productMenu id="volume"
  2139. type="11" >
  2140. </productMenu>
  2141. <productMenu id="battery"
  2142. type="1" >
  2143. </productMenu>
  2144. <productID id="3154"
  2145. />
  2146. <productGroupable type="0"
  2147. />
  2148. </product>
  2149. <product id="SRL3"
  2150. name="SRL3"
  2151. series="SRL"
  2152. latestVersion="1.4.1"
  2153. show = "1" >
  2154. <productMenu id="protocol"
  2155. type="2" >
  2156. </productMenu>
  2157. <productMenu id="alexa"
  2158. type="0" >
  2159. </productMenu>
  2160. <productMenu id="ota"
  2161. type="0" >
  2162. </productMenu>
  2163. <productMenu id="wa"
  2164. type="1" >
  2165. </productMenu>
  2166. <productMenu id="sip"
  2167. type="1" >
  2168. </productMenu>
  2169. <productMenu id="meshIntercom"
  2170. type="30" >
  2171. </productMenu>
  2172. <productMenu id="meshIntercom+"
  2173. type="3"
  2174. url="2" >
  2175. <productMenuType version="1.3.9"
  2176. type="2"
  2177. />
  2178. </productMenu>
  2179. <productMenu id="waveIntercom"
  2180. type="1" >
  2181. <productMenuType version="1.4.9"
  2182. type="0"
  2183. />
  2184. </productMenu>
  2185. <productMenu id="bluetoothIntercom"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="phone"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="music"
  2192. type="1" >
  2193. </productMenu>
  2194. <productMenu id="fmradio"
  2195. type="1" >
  2196. </productMenu>
  2197. <productMenu id="deviceSetting"
  2198. type="1"
  2199. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2200. <productMenuURL version="1.3"
  2201. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2202. />
  2203. </productMenu>
  2204. <productMenu id="quickGuide"
  2205. type="0"
  2206. url=""
  2207. size="344KB" >
  2208. </productMenu>
  2209. <productMenu id="userGuide"
  2210. type="1"
  2211. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.2.2_en_250319.pdf"
  2212. size="3.41MB" >
  2213. </productMenu>
  2214. <productMenu id="volume"
  2215. type="11" >
  2216. </productMenu>
  2217. <productMenu id="battery"
  2218. type="1" >
  2219. </productMenu>
  2220. <productID id="3219"
  2221. />
  2222. <productGroupable type="0"
  2223. />
  2224. </product>
  2225. <product id="SRL_Mesh"
  2226. name="SRL-Mesh"
  2227. series="SRL"
  2228. latestVersion="1.6.1"
  2229. show = "1" >
  2230. <productMenu id="protocol"
  2231. type="2" >
  2232. </productMenu>
  2233. <productMenu id="alexa"
  2234. type="0" >
  2235. </productMenu>
  2236. <productMenu id="ota"
  2237. type="0" >
  2238. </productMenu>
  2239. <productMenu id="wa"
  2240. type="1" >
  2241. </productMenu>
  2242. <productMenu id="sip"
  2243. type="1" >
  2244. </productMenu>
  2245. <productMenu id="meshIntercom"
  2246. type="30" >
  2247. <productMenuType version="1.1.1"
  2248. type="20"
  2249. />
  2250. </productMenu>
  2251. <productMenu id="meshIntercom+"
  2252. type="3"
  2253. url="2" >
  2254. <productMenuType version="1.5.9"
  2255. type="2"
  2256. />
  2257. <productMenuURL version="1.1.1"
  2258. url="0"
  2259. />
  2260. </productMenu>
  2261. <productMenu id="waveIntercom"
  2262. type="1" >
  2263. <productMenuType version="1.6.9"
  2264. type="0"
  2265. />
  2266. </productMenu>
  2267. <productMenu id="bluetoothIntercom"
  2268. type="1" >
  2269. </productMenu>
  2270. <productMenu id="phone"
  2271. type="1" >
  2272. </productMenu>
  2273. <productMenu id="music"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="fmradio"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="deviceSetting"
  2280. type="1"
  2281. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2282. <productMenuURL version="1.5"
  2283. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2284. />
  2285. <productMenuURL version="1.1.1"
  2286. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2287. />
  2288. <productMenuURL version="1.0.3"
  2289. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2290. />
  2291. </productMenu>
  2292. <productMenu id="quickGuide"
  2293. type="0"
  2294. url=""
  2295. size="344KB" >
  2296. </productMenu>
  2297. <productMenu id="userGuide"
  2298. type="1"
  2299. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.5.1_en_250213.pdf"
  2300. size="3.41MB" >
  2301. </productMenu>
  2302. <productMenu id="volume"
  2303. type="11" >
  2304. </productMenu>
  2305. <productMenu id="battery"
  2306. type="1" >
  2307. </productMenu>
  2308. <productID id="3216"
  2309. />
  2310. <productGroupable type="0"
  2311. />
  2312. </product>
  2313. <product id="SRL_EXT"
  2314. name="SRL-EXT"
  2315. series="SRL"
  2316. latestVersion="1.6.1"
  2317. show = "1" >
  2318. <productMenu id="protocol"
  2319. type="2" >
  2320. </productMenu>
  2321. <productMenu id="alexa"
  2322. type="0" >
  2323. </productMenu>
  2324. <productMenu id="ota"
  2325. type="0" >
  2326. </productMenu>
  2327. <productMenu id="wa"
  2328. type="0" >
  2329. </productMenu>
  2330. <productMenu id="sip"
  2331. type="1" >
  2332. </productMenu>
  2333. <productMenu id="meshIntercom"
  2334. type="30" >
  2335. <productMenuType version="1.1.1"
  2336. type="20"
  2337. />
  2338. </productMenu>
  2339. <productMenu id="meshIntercom+"
  2340. type="3"
  2341. url="2" >
  2342. <productMenuType version="1.5.9"
  2343. type="2"
  2344. />
  2345. <productMenuURL version="1.1.1"
  2346. url="0"
  2347. />
  2348. </productMenu>
  2349. <productMenu id="waveIntercom"
  2350. type="1" >
  2351. <productMenuType version="1.6.9"
  2352. type="0"
  2353. />
  2354. </productMenu>
  2355. <productMenu id="bluetoothIntercom"
  2356. type="1" >
  2357. </productMenu>
  2358. <productMenu id="phone"
  2359. type="1" >
  2360. </productMenu>
  2361. <productMenu id="music"
  2362. type="1" >
  2363. </productMenu>
  2364. <productMenu id="fmradio"
  2365. type="1" >
  2366. </productMenu>
  2367. <productMenu id="deviceSetting"
  2368. type="1"
  2369. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2370. <productMenuURL version="1.5"
  2371. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2372. />
  2373. <productMenuURL version="1.1.1"
  2374. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2375. />
  2376. <productMenuURL version="1.0.3"
  2377. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2378. />
  2379. </productMenu>
  2380. <productMenu id="quickGuide"
  2381. type="0"
  2382. url=""
  2383. size="344KB" >
  2384. </productMenu>
  2385. <productMenu id="userGuide"
  2386. type="1"
  2387. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.pdf"
  2388. size="3.41MB" >
  2389. </productMenu>
  2390. <productMenu id="volume"
  2391. type="11" >
  2392. </productMenu>
  2393. <productMenu id="battery"
  2394. type="1" >
  2395. </productMenu>
  2396. <productID id="3212"
  2397. />
  2398. <productGroupable type="0"
  2399. />
  2400. </product>
  2401. <product id="SRL2"
  2402. name="SRL2"
  2403. series="SRL"
  2404. latestVersion="1.0.9"
  2405. show = "1" >
  2406. <productMenu id="protocol"
  2407. type="0">
  2408. </productMenu>
  2409. <productMenu id="sip"
  2410. type="1" >
  2411. </productMenu>
  2412. <productMenu id="bluetoothIntercom"
  2413. type="1" >
  2414. </productMenu>
  2415. <productMenu id="intercomSetting"
  2416. type="1" >
  2417. </productMenu>
  2418. <productMenu id="phone"
  2419. type="2" >
  2420. </productMenu>
  2421. <productMenu id="fmradio"
  2422. type="3" >
  2423. </productMenu>
  2424. <productMenu id="deviceSetting"
  2425. type="1"
  2426. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2427. </productMenu>
  2428. <productMenu id="quickGuide"
  2429. type="1"
  2430. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2431. size="846KB" >
  2432. </productMenu>
  2433. <productMenu id="userGuide"
  2434. type="1"
  2435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2436. size="1.18MB" >
  2437. </productMenu>
  2438. <productID id="4530"
  2439. />
  2440. <productGroupable type="1"
  2441. />
  2442. </product>
  2443. <product id="Neotec2"
  2444. name="SRL Neotec2"
  2445. series="SRL"
  2446. latestVersion="1.1.5"
  2447. show = "1" >
  2448. <productMenu id="protocol"
  2449. type="0">
  2450. </productMenu>
  2451. <productMenu id="sip"
  2452. type="1" >
  2453. </productMenu>
  2454. <productMenu id="bluetoothIntercom"
  2455. type="1" >
  2456. </productMenu>
  2457. <productMenu id="intercomSetting"
  2458. type="1" >
  2459. </productMenu>
  2460. <productMenu id="phone"
  2461. type="2" >
  2462. </productMenu>
  2463. <productMenu id="fmradio"
  2464. type="3" >
  2465. </productMenu>
  2466. <productMenu id="deviceSetting"
  2467. type="1"
  2468. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2469. </productMenu>
  2470. <productMenu id="quickGuide"
  2471. type="0"
  2472. url=""
  2473. size="796KB" >
  2474. </productMenu>
  2475. <productMenu id="userGuide"
  2476. type="1"
  2477. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2478. size="1.90MB" >
  2479. </productMenu>
  2480. <productID id="4510"
  2481. />
  2482. <productGroupable type="1"
  2483. />
  2484. </product>
  2485. <product id="SPIDERST2ANC"
  2486. name="SPIDER ST2 ANC"
  2487. series="SPIDER"
  2488. latestVersion="0.5.1"
  2489. latestVersionVoicePrompt="0.2"
  2490. latestVersionMesh="0.8"
  2491. show = "-1" >
  2492. <productMenu id="protocol"
  2493. type="2" >
  2494. </productMenu>
  2495. <productMenu id="ota"
  2496. type="0" >
  2497. <otaPackages>
  2498. <package
  2499. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2500. size="2945812"
  2501. />
  2502. </otaPackages>
  2503. </productMenu>
  2504. <productMenu id="wa"
  2505. type="0" >
  2506. </productMenu>
  2507. <productMenu id="led"
  2508. type="1" >
  2509. </productMenu>
  2510. <productMenu id="meshIntercom"
  2511. type="30" >
  2512. </productMenu>
  2513. <productMenu id="fmradio"
  2514. type="1" >
  2515. </productMenu>
  2516. <productMenu id="phone"
  2517. type="1" >
  2518. </productMenu>
  2519. <productMenu id="music"
  2520. type="1" >
  2521. </productMenu>
  2522. <productMenu id="musicSharing"
  2523. type="0" >
  2524. </productMenu>
  2525. <productMenu id="deviceSetting"
  2526. type="1"
  2527. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2528. </productMenu>
  2529. <productMenu id="quickGuide"
  2530. type="1"
  2531. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2532. size="1.12MB" >
  2533. </productMenu>
  2534. <productMenu id="userGuide"
  2535. type="1"
  2536. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2537. size="2.0MB" >
  2538. </productMenu>
  2539. <productMenu id="videoGuide"
  2540. type="1"
  2541. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2542. size="3.41MB" >
  2543. </productMenu>
  2544. <productMenu id="volume"
  2545. type="12" >
  2546. </productMenu>
  2547. <productMenu id="battery"
  2548. type="1" >
  2549. </productMenu>
  2550. <productID id="6A00"
  2551. />
  2552. <productGroupable type="0"
  2553. />
  2554. </product>
  2555. <product id="SPIDER_ST1"
  2556. name="SPIDER ST1"
  2557. series="SPIDER"
  2558. latestVersion="2.5"
  2559. latestVersionVoicePrompt="1.1"
  2560. show = "1" >
  2561. <productMenu id="protocol"
  2562. type="2" >
  2563. </productMenu>
  2564. <productMenu id="alexa"
  2565. type="0" >
  2566. </productMenu>
  2567. <productMenu id="ota"
  2568. type="2" >
  2569. <productMenuType version="2.1.9"
  2570. type="0"
  2571. />
  2572. <otaPackages>
  2573. <package
  2574. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2575. size="2945812"
  2576. />
  2577. </otaPackages>
  2578. </productMenu>
  2579. <productMenu id="wa"
  2580. type="0" >
  2581. </productMenu>
  2582. <productMenu id="meshIntercom"
  2583. type="30" >
  2584. <productMenuType version="2.1.1"
  2585. type="20"
  2586. />
  2587. </productMenu>
  2588. <productMenu id="meshIntercom+"
  2589. type="3"
  2590. url="2" >
  2591. <productMenuType version="2.2.9"
  2592. type="2"
  2593. />
  2594. <productMenuURL version="2.1.1"
  2595. url="0"
  2596. />
  2597. </productMenu>
  2598. <productMenu id="waveIntercom"
  2599. type="1" >
  2600. <productMenuType version="2.3.9"
  2601. type="0"
  2602. />
  2603. </productMenu>
  2604. <productMenu id="phone"
  2605. type="1" >
  2606. </productMenu>
  2607. <productMenu id="music"
  2608. type="1" >
  2609. </productMenu>
  2610. <productMenu id="musicSharing"
  2611. type="0" >
  2612. </productMenu>
  2613. <productMenu id="deviceSetting"
  2614. type="1"
  2615. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2616. <productMenuURL version="2.4.9"
  2617. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2618. />
  2619. <productMenuURL version="2.2.2"
  2620. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2621. />
  2622. <productMenuURL version="2.1.1"
  2623. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2624. />
  2625. </productMenu>
  2626. <productMenu id="quickGuide"
  2627. type="0"
  2628. url=""
  2629. size="1.12MB" >
  2630. </productMenu>
  2631. <productMenu id="userGuide"
  2632. type="1"
  2633. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  2634. size="2.0MB" >
  2635. </productMenu>
  2636. <productMenu id="videoGuide"
  2637. type="1"
  2638. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2639. size="3.41MB" >
  2640. </productMenu>
  2641. <productMenu id="volume"
  2642. type="12" >
  2643. </productMenu>
  2644. <productMenu id="battery"
  2645. type="1" >
  2646. </productMenu>
  2647. <productID id="6800"
  2648. />
  2649. <productGroupable type="0"
  2650. />
  2651. </product>
  2652. <product id="SPIDER_ST1"
  2653. name="SPIDER ST1"
  2654. series="SPIDER"
  2655. latestVersion="1.2.2"
  2656. show = "-1" >
  2657. <productMenu id="protocol"
  2658. type="2" >
  2659. </productMenu>
  2660. <productMenu id="alexa"
  2661. type="0" >
  2662. </productMenu>
  2663. <productMenu id="ota"
  2664. type="0" >
  2665. </productMenu>
  2666. <productMenu id="wa"
  2667. type="0" >
  2668. </productMenu>
  2669. <productMenu id="meshIntercom"
  2670. type="20" >
  2671. </productMenu>
  2672. <productMenu id="phone"
  2673. type="1" >
  2674. </productMenu>
  2675. <productMenu id="music"
  2676. type="1" >
  2677. </productMenu>
  2678. <productMenu id="deviceSetting"
  2679. type="1"
  2680. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2681. </productMenu>
  2682. <productMenu id="quickGuide"
  2683. type="0"
  2684. url=""
  2685. size="1.12MB" >
  2686. </productMenu>
  2687. <productMenu id="userGuide"
  2688. type="1"
  2689. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  2690. size="2.0MB" >
  2691. </productMenu>
  2692. <productMenu id="videoGuide"
  2693. type="1"
  2694. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2695. size="3.41MB" >
  2696. </productMenu>
  2697. <productMenu id="volume"
  2698. type="13" >
  2699. <productMenuType version="1.1.6"
  2700. type="14"/>
  2701. </productMenu>
  2702. <productMenu id="battery"
  2703. type="1" >
  2704. </productMenu>
  2705. <productID id="6510"
  2706. />
  2707. <productGroupable type="0"
  2708. />
  2709. </product>
  2710. <product id="SPIDER_RT1"
  2711. name="SPIDER RT1"
  2712. series="SPIDER"
  2713. latestVersion="2.5"
  2714. latestVersionVoicePrompt="1.1"
  2715. show = "1" >
  2716. <productMenu id="protocol"
  2717. type="2" >
  2718. </productMenu>
  2719. <productMenu id="alexa"
  2720. type="0" >
  2721. </productMenu>
  2722. <productMenu id="ota"
  2723. type="2" >
  2724. <productMenuType version="2.1.9"
  2725. type="0"
  2726. />
  2727. <otaPackages>
  2728. <package
  2729. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  2730. size="2945812"
  2731. />
  2732. </otaPackages>
  2733. </productMenu>
  2734. <productMenu id="wa"
  2735. type="0" >
  2736. </productMenu>
  2737. <productMenu id="meshIntercom"
  2738. type="30" >
  2739. <productMenuType version="2.1.1"
  2740. type="20"
  2741. />
  2742. </productMenu>
  2743. <productMenu id="meshIntercom+"
  2744. type="3"
  2745. url="2" >
  2746. <productMenuType version="2.2.9"
  2747. type="2"
  2748. />
  2749. <productMenuURL version="2.1.1"
  2750. url="0"
  2751. />
  2752. </productMenu>
  2753. <productMenu id="waveIntercom"
  2754. type="1" >
  2755. <productMenuType version="2.3.9"
  2756. type="0"
  2757. />
  2758. </productMenu>
  2759. <productMenu id="phone"
  2760. type="1" >
  2761. </productMenu>
  2762. <productMenu id="music"
  2763. type="1" >
  2764. </productMenu>
  2765. <productMenu id="musicSharing"
  2766. type="0" >
  2767. </productMenu>
  2768. <productMenu id="deviceSetting"
  2769. type="1"
  2770. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2771. <productMenuURL version="2.4.9"
  2772. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2773. />
  2774. <productMenuURL version="2.2.2"
  2775. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2776. />
  2777. <productMenuURL version="2.1.1"
  2778. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2779. />
  2780. </productMenu>
  2781. <productMenu id="quickGuide"
  2782. type="0"
  2783. url=""
  2784. size="1.12MB" >
  2785. </productMenu>
  2786. <productMenu id="userGuide"
  2787. type="1"
  2788. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  2789. size="2.0MB" >
  2790. </productMenu>
  2791. <productMenu id="videoGuide"
  2792. type="1"
  2793. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2794. size="3.41MB" >
  2795. </productMenu>
  2796. <productMenu id="connectGuide"
  2797. type="1"
  2798. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  2799. size="1.12MB" >
  2800. </productMenu>
  2801. <productMenu id="volume"
  2802. type="12" >
  2803. </productMenu>
  2804. <productMenu id="battery"
  2805. type="1" >
  2806. </productMenu>
  2807. <productID id="6810"
  2808. />
  2809. <productGroupable type="0"
  2810. />
  2811. </product>
  2812. <product id="SPIDER_RT1"
  2813. name="SPIDER RT1"
  2814. series="SPIDER"
  2815. latestVersion="1.2.2"
  2816. show = "-1" >
  2817. <productMenu id="protocol"
  2818. type="2" >
  2819. </productMenu>
  2820. <productMenu id="alexa"
  2821. type="0" >
  2822. </productMenu>
  2823. <productMenu id="ota"
  2824. type="0" >
  2825. </productMenu>
  2826. <productMenu id="wa"
  2827. type="0" >
  2828. </productMenu>
  2829. <productMenu id="meshIntercom"
  2830. type="20" >
  2831. </productMenu>
  2832. <productMenu id="phone"
  2833. type="1" >
  2834. </productMenu>
  2835. <productMenu id="music"
  2836. type="1" >
  2837. </productMenu>
  2838. <productMenu id="deviceSetting"
  2839. type="1"
  2840. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2841. </productMenu>
  2842. <productMenu id="quickGuide"
  2843. type="0"
  2844. url=""
  2845. size="1.32MB" >
  2846. </productMenu>
  2847. <productMenu id="userGuide"
  2848. type="1"
  2849. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  2850. size="1.79MB" >
  2851. </productMenu>
  2852. <productMenu id="videoGuide"
  2853. type="1"
  2854. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2855. size="3.41MB" >
  2856. </productMenu>
  2857. <productMenu id="volume"
  2858. type="13" >
  2859. <productMenuType version="1.1.6"
  2860. type="14"/>
  2861. </productMenu>
  2862. <productMenu id="battery"
  2863. type="1" >
  2864. </productMenu>
  2865. <productID id="6500"
  2866. />
  2867. <productGroupable type="0"
  2868. />
  2869. </product>
  2870. <product id="30K"
  2871. name="30K"
  2872. series="30"
  2873. latestVersion="4.4.1"
  2874. show = "1" >
  2875. <productMenu id="protocol"
  2876. type="2" >
  2877. </productMenu>
  2878. <productMenu id="alexa"
  2879. type="0" >
  2880. </productMenu>
  2881. <productMenu id="wa"
  2882. type="1" >
  2883. </productMenu>
  2884. <productMenu id="sip"
  2885. type="1" >
  2886. </productMenu>
  2887. <productMenu id="meshIntercom"
  2888. type="30" >
  2889. <productMenuType version="4.0.4"
  2890. type="20"
  2891. />
  2892. </productMenu>
  2893. <productMenu id="meshIntercom+"
  2894. type="3"
  2895. url="2" >
  2896. <productMenuType version="4.3.9"
  2897. type="2"
  2898. />
  2899. <productMenuURL version="4.0.4"
  2900. url="0"
  2901. />
  2902. </productMenu>
  2903. <productMenu id="waveIntercom"
  2904. type="1" >
  2905. <productMenuType version="4.4.9"
  2906. type="0"
  2907. />
  2908. </productMenu>
  2909. <productMenu id="bluetoothIntercom"
  2910. type="1" >
  2911. </productMenu>
  2912. <productMenu id="phone"
  2913. type="1" >
  2914. </productMenu>
  2915. <productMenu id="music"
  2916. type="1" >
  2917. </productMenu>
  2918. <productMenu id="fmradio"
  2919. type="1" >
  2920. </productMenu>
  2921. <productMenu id="deviceSetting"
  2922. type="1"
  2923. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  2924. <productMenuURL version="4.3"
  2925. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  2926. />
  2927. <productMenuURL version="4.2"
  2928. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  2929. />
  2930. <productMenuURL version="4.0.4"
  2931. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  2932. />
  2933. </productMenu>
  2934. <productMenu id="quickGuide"
  2935. type="0"
  2936. url=""
  2937. size="934KB" >
  2938. </productMenu>
  2939. <productMenu id="userGuide"
  2940. type="1"
  2941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  2942. size="1.14MB" >
  2943. </productMenu>
  2944. <productMenu id="volume"
  2945. type="11" >
  2946. </productMenu>
  2947. <productMenu id="battery"
  2948. type="1" >
  2949. </productMenu>
  2950. <productID id="3211"
  2951. />
  2952. <productGroupable type="0"
  2953. />
  2954. </product>
  2955. <product id="30K"
  2956. name="30K"
  2957. series="30"
  2958. latestVersion="3.5"
  2959. show = "-1" >
  2960. <productMenu id="protocol"
  2961. type="1"
  2962. url="0">
  2963. </productMenu>
  2964. <productMenu id="wa"
  2965. type="7" >
  2966. </productMenu>
  2967. <productMenu id="sip"
  2968. type="1" >
  2969. </productMenu>
  2970. <productMenu id="meshIntercom"
  2971. type="20" >
  2972. <productMenuType version="2.9.9"
  2973. type="10"
  2974. />
  2975. </productMenu>
  2976. <productMenu id="meshIntercom+"
  2977. type="3"
  2978. url="2" >
  2979. <productMenuType version="3.4.9"
  2980. type="2"
  2981. />
  2982. <productMenuType version="2.9.9"
  2983. type="1"
  2984. />
  2985. <productMenuURL version="3.3.1"
  2986. url="0"
  2987. />
  2988. </productMenu>
  2989. <productMenu id="bluetoothIntercom"
  2990. type="1" >
  2991. </productMenu>
  2992. <productMenu id="phone"
  2993. type="1" >
  2994. </productMenu>
  2995. <productMenu id="music"
  2996. type="1" >
  2997. </productMenu>
  2998. <productMenu id="fmradio"
  2999. type="1" >
  3000. </productMenu>
  3001. <productMenu id="deviceSetting"
  3002. type="1"
  3003. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  3004. <productMenuURL version="3.4.9"
  3005. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  3006. />
  3007. <productMenuURL version="3.3.1"
  3008. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  3009. />
  3010. <productMenuURL version="3.0.1"
  3011. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  3012. />
  3013. <productMenuURL version="2.3.1"
  3014. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  3015. />
  3016. <productMenuURL version="2.0"
  3017. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  3018. />
  3019. <productMenuURL version="1.0.3"
  3020. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  3021. />
  3022. </productMenu>
  3023. <productMenu id="quickGuide"
  3024. type="0"
  3025. url=""
  3026. size="1.06MB" >
  3027. </productMenu>
  3028. <productMenu id="userGuide"
  3029. type="1"
  3030. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  3031. size="3.15MB" >
  3032. </productMenu>
  3033. <productMenu id="volume"
  3034. type="1" >
  3035. </productMenu>
  3036. <productID id="3110"
  3037. />
  3038. <productGroupable type="0"
  3039. />
  3040. </product>
  3041. <product id="FURY"
  3042. name="FURY"
  3043. series="Helmet"
  3044. latestVersion="1.0"
  3045. show = "-1" >
  3046. <productMenu id="protocol"
  3047. type="2" >
  3048. </productMenu>
  3049. <productMenu id="alexa"
  3050. type="0" >
  3051. </productMenu>
  3052. <productMenu id="ota"
  3053. type="0" >
  3054. </productMenu>
  3055. <productMenu id="wa"
  3056. type="0" >
  3057. </productMenu>
  3058. <productMenu id="meshIntercom"
  3059. type="20" >
  3060. </productMenu>
  3061. <productMenu id="phone"
  3062. type="1" >
  3063. </productMenu>
  3064. <productMenu id="music"
  3065. type="1" >
  3066. </productMenu>
  3067. <productMenu id="fmradio"
  3068. type="1" >
  3069. </productMenu>
  3070. <productMenu id="deviceSetting"
  3071. type="1"
  3072. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  3073. </productMenu>
  3074. <productMenu id="quickGuide"
  3075. type="1"
  3076. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3077. size="1.12MB" >
  3078. </productMenu>
  3079. <productMenu id="userGuide"
  3080. type="1"
  3081. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3082. size="2.0MB" >
  3083. </productMenu>
  3084. <productMenu id="volume"
  3085. type="13" >
  3086. </productMenu>
  3087. <productMenu id="battery"
  3088. type="1" >
  3089. </productMenu>
  3090. <productID id="5552"
  3091. />
  3092. <productGroupable type="0"
  3093. />
  3094. </product>
  3095. <product id="MomentumM"
  3096. name="Momentum EVO"
  3097. series="Helmet"
  3098. latestVersion="2.1.2"
  3099. show = "1" >
  3100. <productMenu id="protocol"
  3101. type="1"
  3102. url="0">
  3103. </productMenu>
  3104. <productMenu id="wa"
  3105. type="3" >
  3106. </productMenu>
  3107. <productMenu id="sip"
  3108. type="1" >
  3109. </productMenu>
  3110. <productMenu id="meshIntercom"
  3111. type="20" >
  3112. <productMenuType version="1.9.9"
  3113. type="10"
  3114. />
  3115. </productMenu>
  3116. <productMenu id="bluetoothIntercom"
  3117. type="1" >
  3118. </productMenu>
  3119. <productMenu id="phone"
  3120. type="1" >
  3121. </productMenu>
  3122. <productMenu id="music"
  3123. type="1" >
  3124. </productMenu>
  3125. <productMenu id="fmradio"
  3126. type="1" >
  3127. </productMenu>
  3128. <productMenu id="deviceSetting"
  3129. type="1"
  3130. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  3131. <productMenuURL version="1.0.1"
  3132. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  3133. />
  3134. </productMenu>
  3135. <productMenu id="quickGuide"
  3136. type="1"
  3137. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  3138. size="1.06MB" >
  3139. </productMenu>
  3140. <productMenu id="userGuide"
  3141. type="1"
  3142. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  3143. size="3.15MB" >
  3144. </productMenu>
  3145. <productMenu id="volume"
  3146. type="2" >
  3147. </productMenu>
  3148. <productID id="3116"
  3149. />
  3150. <productGroupable type="0"
  3151. />
  3152. </product>
  3153. <product id="Momentum"
  3154. name="Momentum"
  3155. series="Helmet"
  3156. latestVersion="1.0.9"
  3157. show = "1" >
  3158. <productMenu id="protocol"
  3159. type="0">
  3160. </productMenu>
  3161. <productMenu id="sip"
  3162. type="1" >
  3163. </productMenu>
  3164. <productMenu id="bluetoothIntercom"
  3165. type="1" >
  3166. </productMenu>
  3167. <productMenu id="intercomSetting"
  3168. type="1" >
  3169. </productMenu>
  3170. <productMenu id="phone"
  3171. type="2" >
  3172. </productMenu>
  3173. <productMenu id="fmradio"
  3174. type="3" >
  3175. </productMenu>
  3176. <productMenu id="deviceSetting"
  3177. type="1"
  3178. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3179. </productMenu>
  3180. <productMenu id="quickGuide"
  3181. type="1"
  3182. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  3183. size="796KB" >
  3184. </productMenu>
  3185. <productMenu id="userGuide"
  3186. type="1"
  3187. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  3188. size="1.90MB" >
  3189. </productMenu>
  3190. <productID id="4310"
  3191. />
  3192. <productGroupable type="1"
  3193. />
  3194. </product>
  3195. <product id="Momentum_Pro"
  3196. name="Momentum Pro"
  3197. series="Helmet"
  3198. latestVersion="1.0.6"
  3199. show = "1" >
  3200. <productMenu id="protocol"
  3201. type="0">
  3202. </productMenu>
  3203. <productMenu id="sip"
  3204. type="1" >
  3205. </productMenu>
  3206. <productMenu id="bluetoothIntercom"
  3207. type="1" >
  3208. </productMenu>
  3209. <productMenu id="intercomSetting"
  3210. type="1" >
  3211. </productMenu>
  3212. <productMenu id="phone"
  3213. type="2" >
  3214. </productMenu>
  3215. <productMenu id="fmradio"
  3216. type="3" >
  3217. </productMenu>
  3218. <productMenu id="deviceSetting"
  3219. type="1"
  3220. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3221. </productMenu>
  3222. <productMenu id="quickGuide"
  3223. type="1"
  3224. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3225. size="796KB" >
  3226. </productMenu>
  3227. <productMenu id="userGuide"
  3228. type="1"
  3229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3230. size="1.90MB" >
  3231. </productMenu>
  3232. <productID id="4330"
  3233. />
  3234. <productGroupable type="1"
  3235. />
  3236. </product>
  3237. <product id="Momentum_INC"
  3238. name="Momentum INC"
  3239. series="Helmet"
  3240. latestVersion="1.0.7"
  3241. show = "1" >
  3242. <productMenu id="protocol"
  3243. type="0">
  3244. </productMenu>
  3245. <productMenu id="sip"
  3246. type="1" >
  3247. </productMenu>
  3248. <productMenu id="bluetoothIntercom"
  3249. type="1" >
  3250. </productMenu>
  3251. <productMenu id="intercomSetting"
  3252. type="1" >
  3253. </productMenu>
  3254. <productMenu id="phone"
  3255. type="2" >
  3256. </productMenu>
  3257. <productMenu id="fmradio"
  3258. type="3" >
  3259. </productMenu>
  3260. <productMenu id="deviceSetting"
  3261. type="1"
  3262. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3263. </productMenu>
  3264. <productMenu id="quickGuide"
  3265. type="1"
  3266. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3267. size="794KB" >
  3268. </productMenu>
  3269. <productMenu id="userGuide"
  3270. type="1"
  3271. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3272. size="1.53MB" >
  3273. </productMenu>
  3274. <productID id="4410"
  3275. />
  3276. <productGroupable type="1"
  3277. />
  3278. </product>
  3279. <product id="Momentum_INCP"
  3280. name="Momentum INC Pro"
  3281. series="Helmet"
  3282. latestVersion="1.0.4"
  3283. show = "1" >
  3284. <productMenu id="protocol"
  3285. type="0">
  3286. </productMenu>
  3287. <productMenu id="sip"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="bluetoothIntercom"
  3291. type="1" >
  3292. </productMenu>
  3293. <productMenu id="intercomSetting"
  3294. type="1" >
  3295. </productMenu>
  3296. <productMenu id="phone"
  3297. type="2" >
  3298. </productMenu>
  3299. <productMenu id="fmradio"
  3300. type="3" >
  3301. </productMenu>
  3302. <productMenu id="deviceSetting"
  3303. type="1"
  3304. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3305. </productMenu>
  3306. <productMenu id="quickGuide"
  3307. type="1"
  3308. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3309. size="794KB" >
  3310. </productMenu>
  3311. <productMenu id="userGuide"
  3312. type="1"
  3313. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3314. size="1.53MB" >
  3315. </productMenu>
  3316. <productID id="4430"
  3317. />
  3318. <productGroupable type="1"
  3319. />
  3320. </product>
  3321. <product id="Momentum_Lite"
  3322. name="Momentum Lite"
  3323. series="Helmet"
  3324. latestVersion="2.0.3"
  3325. show = "1" >
  3326. <productMenu id="protocol"
  3327. type="0">
  3328. </productMenu>
  3329. <productMenu id="sip"
  3330. type="1" >
  3331. </productMenu>
  3332. <productMenu id="bluetoothIntercom"
  3333. type="1" >
  3334. </productMenu>
  3335. <productMenu id="phone"
  3336. type="2" >
  3337. </productMenu>
  3338. <productMenu id="fmradio"
  3339. type="3" >
  3340. </productMenu>
  3341. <productMenu id="deviceSetting"
  3342. type="1"
  3343. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3344. <productMenuURL version="1.1"
  3345. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3346. />
  3347. </productMenu>
  3348. <productMenu id="quickGuide"
  3349. type="1"
  3350. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3351. size="790KB" >
  3352. </productMenu>
  3353. <productMenu id="userGuide"
  3354. type="1"
  3355. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3356. size="1.42MB" >
  3357. </productMenu>
  3358. <productID id="5526"
  3359. />
  3360. <productGroupable type="0"
  3361. />
  3362. </product>
  3363. <product id="OUTRUSHM"
  3364. name="OUTRUSH M"
  3365. series="Helmet"
  3366. latestVersion="1.0"
  3367. show = "-1" >
  3368. <productMenu id="protocol"
  3369. type="2" >
  3370. </productMenu>
  3371. <productMenu id="alexa"
  3372. type="0" >
  3373. </productMenu>
  3374. <productMenu id="ota"
  3375. type="0" >
  3376. </productMenu>
  3377. <productMenu id="wa"
  3378. type="0" >
  3379. </productMenu>
  3380. <productMenu id="meshIntercom"
  3381. type="30" >
  3382. </productMenu>
  3383. <productMenu id="phone"
  3384. type="1" >
  3385. </productMenu>
  3386. <productMenu id="music"
  3387. type="1" >
  3388. </productMenu>
  3389. <productMenu id="fmradio"
  3390. type="1" >
  3391. </productMenu>
  3392. <productMenu id="deviceSetting"
  3393. type="1"
  3394. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3395. </productMenu>
  3396. <productMenu id="quickGuide"
  3397. type="1"
  3398. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3399. size="1.12MB" >
  3400. </productMenu>
  3401. <productMenu id="userGuide"
  3402. type="1"
  3403. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3404. size="2.0MB" >
  3405. </productMenu>
  3406. <productMenu id="volume"
  3407. type="13" >
  3408. </productMenu>
  3409. <productMenu id="battery"
  3410. type="1" >
  3411. </productMenu>
  3412. <productID id="5600"
  3413. />
  3414. <productGroupable type="0"
  3415. />
  3416. </product>
  3417. <product id="ProRideEVO"
  3418. name="ProRide EVO"
  3419. series="Helmet"
  3420. latestVersion="1.1.2"
  3421. show = "1" >
  3422. <productMenu id="protocol"
  3423. type="0">
  3424. </productMenu>
  3425. <productMenu id="sip"
  3426. type="1" >
  3427. </productMenu>
  3428. <productMenu id="bluetoothIntercom"
  3429. type="1" >
  3430. </productMenu>
  3431. <productMenu id="phone"
  3432. type="2" >
  3433. </productMenu>
  3434. <productMenu id="fmradio"
  3435. type="3" >
  3436. </productMenu>
  3437. <productMenu id="deviceSetting"
  3438. type="1"
  3439. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3440. </productMenu>
  3441. <productMenu id="userGuide"
  3442. type="1"
  3443. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3444. size="778KB" >
  3445. </productMenu>
  3446. <productID id="5426"
  3447. />
  3448. <productGroupable type="0"
  3449. />
  3450. </product>
  3451. <product id="OUTRUSHR"
  3452. name="OUTRUSH R"
  3453. series="Helmet"
  3454. latestVersion="2.1"
  3455. show = "1" >
  3456. <productMenu id="protocol"
  3457. type="3" >
  3458. </productMenu>
  3459. <productMenu id="sip"
  3460. type="1" >
  3461. </productMenu>
  3462. <productMenu id="bluetoothIntercom"
  3463. type="1" >
  3464. </productMenu>
  3465. <productMenu id="phone"
  3466. type="1" >
  3467. </productMenu>
  3468. <productMenu id="fmradio"
  3469. type="0" >
  3470. </productMenu>
  3471. <productMenu id="deviceSetting"
  3472. type="1"
  3473. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3474. </productMenu>
  3475. <productMenu id="userGuide"
  3476. type="1"
  3477. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3478. size="1.14MB" >
  3479. </productMenu>
  3480. <productID id="5440"
  3481. />
  3482. <productGroupable type="0"
  3483. />
  3484. </product>
  3485. <product id="OUTRUSHR"
  3486. name="OUTRUSH R"
  3487. series="Helmet"
  3488. latestVersion="1.1.3"
  3489. show = "-1" >
  3490. <productMenu id="protocol"
  3491. type="0">
  3492. </productMenu>
  3493. <productMenu id="sip"
  3494. type="1" >
  3495. </productMenu>
  3496. <productMenu id="bluetoothIntercom"
  3497. type="1" >
  3498. </productMenu>
  3499. <productMenu id="phone"
  3500. type="2" >
  3501. </productMenu>
  3502. <productMenu id="fmradio"
  3503. type="3" >
  3504. </productMenu>
  3505. <productMenu id="deviceSetting"
  3506. type="1"
  3507. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3508. </productMenu>
  3509. <productMenu id="userGuide"
  3510. type="1"
  3511. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3512. size="660KB" >
  3513. </productMenu>
  3514. <productID id="5424"
  3515. />
  3516. <productGroupable type="0"
  3517. />
  3518. </product>
  3519. <product id="OUTSTARS"
  3520. name="OUTSTAR S"
  3521. series="Helmet"
  3522. latestVersion="2.0.1"
  3523. show = "-1" >
  3524. <productMenu id="protocol"
  3525. type="3" >
  3526. </productMenu>
  3527. <productMenu id="sip"
  3528. type="1" >
  3529. </productMenu>
  3530. <productMenu id="bluetoothIntercom"
  3531. type="1" >
  3532. </productMenu>
  3533. <productMenu id="phone"
  3534. type="1" >
  3535. </productMenu>
  3536. <productMenu id="fmradio"
  3537. type="0" >
  3538. </productMenu>
  3539. <productMenu id="deviceSetting"
  3540. type="1"
  3541. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3542. </productMenu>
  3543. <productMenu id="userGuide"
  3544. type="0"
  3545. url=""
  3546. size="1.14MB" >
  3547. </productMenu>
  3548. <productID id="5443"
  3549. />
  3550. <productGroupable type="0"
  3551. />
  3552. </product>
  3553. <product id="OUTSTARS"
  3554. name="OUTSTAR S"
  3555. series="Helmet"
  3556. latestVersion="1.1.3"
  3557. show = "1" >
  3558. <productMenu id="protocol"
  3559. type="0">
  3560. </productMenu>
  3561. <productMenu id="sip"
  3562. type="1" >
  3563. </productMenu>
  3564. <productMenu id="bluetoothIntercom"
  3565. type="1" >
  3566. </productMenu>
  3567. <productMenu id="phone"
  3568. type="2" >
  3569. </productMenu>
  3570. <productMenu id="fmradio"
  3571. type="3" >
  3572. </productMenu>
  3573. <productMenu id="deviceSetting"
  3574. type="1"
  3575. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3576. </productMenu>
  3577. <productMenu id="quickGuide"
  3578. type="1"
  3579. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3580. size="643KB" >
  3581. </productMenu>
  3582. <productMenu id="userGuide"
  3583. type="1"
  3584. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3585. size="1.15MB" >
  3586. </productMenu>
  3587. <productID id="5428"
  3588. />
  3589. <productGroupable type="0"
  3590. />
  3591. </product>
  3592. <product id="OUTRIDE"
  3593. name="OUTRIDE"
  3594. series="Helmet"
  3595. latestVersion="1.0.1"
  3596. show = "1" >
  3597. <productMenu id="protocol"
  3598. type="0">
  3599. </productMenu>
  3600. <productMenu id="sip"
  3601. type="1" >
  3602. </productMenu>
  3603. <productMenu id="bluetoothIntercom"
  3604. type="1" >
  3605. </productMenu>
  3606. <productMenu id="phone"
  3607. type="2" >
  3608. </productMenu>
  3609. <productMenu id="fmradio"
  3610. type="3" >
  3611. </productMenu>
  3612. <productMenu id="deviceSetting"
  3613. type="1"
  3614. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3615. </productMenu>
  3616. <productMenu id="quickGuide"
  3617. type="1"
  3618. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3619. size="643KB" >
  3620. </productMenu>
  3621. <productMenu id="userGuide"
  3622. type="1"
  3623. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3624. size="660KB" >
  3625. </productMenu>
  3626. <productID id="5432"
  3627. />
  3628. <productGroupable type="0"
  3629. />
  3630. </product>
  3631. <product id="OUTFORCE"
  3632. name="OUTFORCE"
  3633. series="Helmet"
  3634. latestVersion="1.0.1"
  3635. show = "1" >
  3636. <productMenu id="protocol"
  3637. type="0">
  3638. </productMenu>
  3639. <productMenu id="sip"
  3640. type="1" >
  3641. </productMenu>
  3642. <productMenu id="bluetoothIntercom"
  3643. type="1" >
  3644. </productMenu>
  3645. <productMenu id="phone"
  3646. type="2" >
  3647. </productMenu>
  3648. <productMenu id="fmradio"
  3649. type="3" >
  3650. </productMenu>
  3651. <productMenu id="deviceSetting"
  3652. type="1"
  3653. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3654. </productMenu>
  3655. <productMenu id="quickGuide"
  3656. type="1"
  3657. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3658. size="643KB" >
  3659. </productMenu>
  3660. <productMenu id="userGuide"
  3661. type="1"
  3662. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3663. size="660KB" >
  3664. </productMenu>
  3665. <productID id="5430"
  3666. />
  3667. <productGroupable type="0"
  3668. />
  3669. </product>
  3670. <product id="Rumba"
  3671. name="Rumba"
  3672. series="30"
  3673. latestVersion="2.0"
  3674. show = "-1" >
  3675. <productMenu id="protocol"
  3676. type="3" >
  3677. </productMenu>
  3678. <productMenu id="sip"
  3679. type="1" >
  3680. </productMenu>
  3681. <productMenu id="bluetoothIntercom"
  3682. type="1" >
  3683. </productMenu>
  3684. <productMenu id="deviceSetting"
  3685. type="1"
  3686. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3687. </productMenu>
  3688. <productMenu id="quickGuide"
  3689. type="1"
  3690. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3691. size="344KB" >
  3692. </productMenu>
  3693. <productMenu id="userGuide"
  3694. type="1"
  3695. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3696. size="1.14MB" >
  3697. </productMenu>
  3698. <productID id="6322"
  3699. />
  3700. <productGroupable type="0"
  3701. />
  3702. </product>
  3703. <product id="Savage"
  3704. name="Savage"
  3705. series="Helmet"
  3706. latestVersion="1.2.2"
  3707. show = "1" >
  3708. <productMenu id="protocol"
  3709. type="0">
  3710. </productMenu>
  3711. <productMenu id="sip"
  3712. type="1" >
  3713. </productMenu>
  3714. <productMenu id="bluetoothIntercom"
  3715. type="1" >
  3716. </productMenu>
  3717. <productMenu id="phone"
  3718. type="2" >
  3719. </productMenu>
  3720. <productMenu id="fmradio"
  3721. type="3" >
  3722. </productMenu>
  3723. <productMenu id="deviceSetting"
  3724. type="1"
  3725. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  3726. <productMenuURL version="1.9"
  3727. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3728. />
  3729. <productMenuURL version="1.1"
  3730. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3731. />
  3732. </productMenu>
  3733. <productMenu id="quickGuide"
  3734. type="1"
  3735. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3736. size="796KB" >
  3737. </productMenu>
  3738. <productMenu id="userGuide"
  3739. type="1"
  3740. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3741. size="910KB" >
  3742. </productMenu>
  3743. <productID id="5550"
  3744. />
  3745. <productGroupable type="0"
  3746. />
  3747. </product>
  3748. <product id="SPECTOR"
  3749. name="SPECTOR"
  3750. series="Helmet"
  3751. latestVersion="1.0"
  3752. latestVersionVoicePrompt="1.0"
  3753. show = "-1" >
  3754. <productMenu id="protocol"
  3755. type="2" >
  3756. </productMenu>
  3757. <productMenu id="ota"
  3758. type="0" >
  3759. <otaLanguages>
  3760. <otaLanguage
  3761. id="0"
  3762. name="English"
  3763. package="0"
  3764. />
  3765. <otaLanguage
  3766. id="0"
  3767. name="French"
  3768. package="1"
  3769. />
  3770. <otaLanguage
  3771. id="0"
  3772. name="Spanish"
  3773. package="2"
  3774. />
  3775. <otaLanguage
  3776. id="0"
  3777. name="Italian"
  3778. package="3"
  3779. />
  3780. <otaLanguage
  3781. id="0"
  3782. name="German"
  3783. package="4"
  3784. />
  3785. <otaLanguage
  3786. id="0"
  3787. name="Dutch"
  3788. package="5"
  3789. />
  3790. <otaLanguage
  3791. id="0"
  3792. name="Russian"
  3793. package="6"
  3794. />
  3795. <otaLanguage
  3796. id="0"
  3797. name="Chinese"
  3798. package="7"
  3799. />
  3800. <otaLanguage
  3801. id="0"
  3802. name="Korean"
  3803. package="8"
  3804. />
  3805. <otaLanguage
  3806. id="0"
  3807. name="Japanese"
  3808. package="9"
  3809. />
  3810. <otaLanguage
  3811. id="0"
  3812. name="Finnish"
  3813. package="10"
  3814. />
  3815. <otaLanguage
  3816. id="0"
  3817. name="Polish"
  3818. package="11"
  3819. />
  3820. </otaLanguages>
  3821. <otaPackages>
  3822. <package
  3823. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1.img"
  3824. size="5183988"
  3825. />
  3826. <package
  3827. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fr-FR.img"
  3828. size="5183988"
  3829. />
  3830. <package
  3831. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-es-ES.img"
  3832. size="5183988"
  3833. />
  3834. <package
  3835. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-it-IT.img"
  3836. size="5183988"
  3837. />
  3838. <package
  3839. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-de-DE.img"
  3840. size="5183988"
  3841. />
  3842. <package
  3843. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-nl-NL.img"
  3844. size="5183988"
  3845. />
  3846. <package
  3847. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ru-RU.img"
  3848. size="5183988"
  3849. />
  3850. <package
  3851. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-cmn-CN.img"
  3852. size="5183988"
  3853. />
  3854. <package
  3855. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ko-KR.img"
  3856. size="5183988"
  3857. />
  3858. <package
  3859. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ja-JP.img"
  3860. size="5183988"
  3861. />
  3862. <package
  3863. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fi-FI.img"
  3864. size="5183988"
  3865. />
  3866. <package
  3867. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-pl-PL.img"
  3868. size="5183988"
  3869. />
  3870. </otaPackages>
  3871. </productMenu>
  3872. <productMenu id="wa"
  3873. type="0" >
  3874. </productMenu>
  3875. <productMenu id="led"
  3876. type="5" >
  3877. </productMenu>
  3878. <productMenu id="led+"
  3879. type="2"
  3880. url="1" >
  3881. </productMenu>
  3882. <productMenu id="meshIntercom+"
  3883. type="3"
  3884. url="2" >
  3885. </productMenu>
  3886. <productMenu id="waveIntercom"
  3887. type="1" >
  3888. </productMenu>
  3889. <productMenu id="fmradio"
  3890. type="0" >
  3891. </productMenu>
  3892. <productMenu id="phone"
  3893. type="1" >
  3894. </productMenu>
  3895. <productMenu id="music"
  3896. type="1" >
  3897. </productMenu>
  3898. <productMenu id="musicSharing"
  3899. type="0" >
  3900. </productMenu>
  3901. <productMenu id="deviceSetting"
  3902. type="1"
  3903. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  3904. </productMenu>
  3905. <productMenu id="quickGuide"
  3906. type="0"
  3907. url=""
  3908. size="1.12MB" >
  3909. </productMenu>
  3910. <productMenu id="userGuide"
  3911. type="0"
  3912. url=""
  3913. size="2.0MB" >
  3914. </productMenu>
  3915. <productMenu id="videoGuide"
  3916. type="0"
  3917. url=""
  3918. size="3.41MB" >
  3919. </productMenu>
  3920. <productMenu id="volume"
  3921. type="16" >
  3922. </productMenu>
  3923. <productMenu id="battery"
  3924. type="1" >
  3925. </productMenu>
  3926. <productID id="6A0A"
  3927. />
  3928. <productGroupable type="0"
  3929. />
  3930. </product>
  3931. <product id="OUTLANDER"
  3932. name="OUTLANDER"
  3933. series="Helmet"
  3934. latestVersion="1.0"
  3935. latestVersionVoicePrompt="1.0"
  3936. show = "-1" >
  3937. <productMenu id="protocol"
  3938. type="2" >
  3939. </productMenu>
  3940. <productMenu id="ota"
  3941. type="2" >
  3942. <otaLanguages>
  3943. <otaLanguage
  3944. id="0"
  3945. name="English"
  3946. package="0"
  3947. />
  3948. <otaLanguage
  3949. id="0"
  3950. name="French"
  3951. package="1"
  3952. />
  3953. <otaLanguage
  3954. id="0"
  3955. name="Spanish"
  3956. package="2"
  3957. />
  3958. <otaLanguage
  3959. id="0"
  3960. name="Italian"
  3961. package="3"
  3962. />
  3963. <otaLanguage
  3964. id="0"
  3965. name="German"
  3966. package="4"
  3967. />
  3968. <otaLanguage
  3969. id="0"
  3970. name="Dutch"
  3971. package="5"
  3972. />
  3973. <otaLanguage
  3974. id="0"
  3975. name="Russian"
  3976. package="6"
  3977. />
  3978. <otaLanguage
  3979. id="0"
  3980. name="Chinese"
  3981. package="7"
  3982. />
  3983. <otaLanguage
  3984. id="0"
  3985. name="Korean"
  3986. package="8"
  3987. />
  3988. <otaLanguage
  3989. id="0"
  3990. name="Japanese"
  3991. package="9"
  3992. />
  3993. <otaLanguage
  3994. id="0"
  3995. name="Finnish"
  3996. package="10"
  3997. />
  3998. <otaLanguage
  3999. id="0"
  4000. name="Polish"
  4001. package="11"
  4002. />
  4003. </otaLanguages>
  4004. <otaPackages>
  4005. <package
  4006. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1.img"
  4007. size="5183988"
  4008. />
  4009. <package
  4010. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fr-FR.img"
  4011. size="5183988"
  4012. />
  4013. <package
  4014. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-es-ES.img"
  4015. size="5183988"
  4016. />
  4017. <package
  4018. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-it-IT.img"
  4019. size="5183988"
  4020. />
  4021. <package
  4022. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-de-DE.img"
  4023. size="5183988"
  4024. />
  4025. <package
  4026. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-nl-NL.img"
  4027. size="5183988"
  4028. />
  4029. <package
  4030. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ru-RU.img"
  4031. size="5183988"
  4032. />
  4033. <package
  4034. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-cmn-CN.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ko-KR.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ja-JP.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fi-FI.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-pl-PL.img"
  4051. size="5183988"
  4052. />
  4053. </otaPackages>
  4054. </productMenu>
  4055. <productMenu id="wa"
  4056. type="0" >
  4057. </productMenu>
  4058. <productMenu id="led"
  4059. type="5" >
  4060. </productMenu>
  4061. <productMenu id="led+"
  4062. type="2"
  4063. url="1" >
  4064. </productMenu>
  4065. <productMenu id="meshIntercom+"
  4066. type="3"
  4067. url="2" >
  4068. </productMenu>
  4069. <productMenu id="waveIntercom"
  4070. type="1" >
  4071. </productMenu>
  4072. <productMenu id="fmradio"
  4073. type="0" >
  4074. </productMenu>
  4075. <productMenu id="phone"
  4076. type="1" >
  4077. </productMenu>
  4078. <productMenu id="music"
  4079. type="1" >
  4080. </productMenu>
  4081. <productMenu id="musicSharing"
  4082. type="0" >
  4083. </productMenu>
  4084. <productMenu id="deviceSetting"
  4085. type="1"
  4086. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4087. </productMenu>
  4088. <productMenu id="quickGuide"
  4089. type="0"
  4090. url=""
  4091. size="1.12MB" >
  4092. </productMenu>
  4093. <productMenu id="userGuide"
  4094. type="0"
  4095. url=""
  4096. size="2.0MB" >
  4097. </productMenu>
  4098. <productMenu id="videoGuide"
  4099. type="0"
  4100. url=""
  4101. size="3.41MB" >
  4102. </productMenu>
  4103. <productMenu id="volume"
  4104. type="16" >
  4105. </productMenu>
  4106. <productMenu id="battery"
  4107. type="1" >
  4108. </productMenu>
  4109. <productID id="6A05"
  4110. />
  4111. <productGroupable type="0"
  4112. />
  4113. </product>
  4114. <product id="OUTRUSH2"
  4115. name="OUTRUSH 2"
  4116. series="Helmet"
  4117. latestVersion="1.0.2"
  4118. latestVersionVoicePrompt="1.1"
  4119. show = "-1" >
  4120. <productMenu id="protocol"
  4121. type="2" >
  4122. </productMenu>
  4123. <productMenu id="alexa"
  4124. type="0" >
  4125. </productMenu>
  4126. <productMenu id="ota"
  4127. type="2" >
  4128. <otaPackages>
  4129. <package
  4130. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  4131. size="2945812"
  4132. />
  4133. </otaPackages>
  4134. </productMenu>
  4135. <productMenu id="meshIntercom+"
  4136. type="3"
  4137. url="2" >
  4138. </productMenu>
  4139. <productMenu id="waveIntercom"
  4140. type="1" >
  4141. </productMenu>
  4142. <productMenu id="phone"
  4143. type="1" >
  4144. </productMenu>
  4145. <productMenu id="music"
  4146. type="1" >
  4147. </productMenu>
  4148. <productMenu id="musicSharing"
  4149. type="0" >
  4150. </productMenu>
  4151. <productMenu id="deviceSetting"
  4152. type="1"
  4153. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4154. <productMenuURL version="1.0"
  4155. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.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_OUTRUSH_2_1.0.0_en_250730.pdf"
  4166. size="2.0MB" >
  4167. </productMenu>
  4168. <productMenu id="volume"
  4169. type="12" >
  4170. </productMenu>
  4171. <productMenu id="battery"
  4172. type="1" >
  4173. </productMenu>
  4174. <productID id="684A"
  4175. />
  4176. <productGroupable type="0"
  4177. />
  4178. </product>
  4179. <product id="OUTSTAR2"
  4180. name="OUTSTAR 2"
  4181. series="Helmet"
  4182. latestVersion="1.0.1"
  4183. latestVersionVoicePrompt="1.1"
  4184. show = "-1" >
  4185. <productMenu id="protocol"
  4186. type="2" >
  4187. </productMenu>
  4188. <productMenu id="alexa"
  4189. type="0" >
  4190. </productMenu>
  4191. <productMenu id="ota"
  4192. type="2" >
  4193. <otaPackages>
  4194. <package
  4195. url="https://api.sena.com/support/test/OUTSTAR_2-v1.0.1-build0.img"
  4196. size="2945812"
  4197. />
  4198. </otaPackages>
  4199. </productMenu>
  4200. <productMenu id="meshIntercom+"
  4201. type="3"
  4202. url="2" >
  4203. </productMenu>
  4204. <productMenu id="waveIntercom"
  4205. type="1" >
  4206. </productMenu>
  4207. <productMenu id="phone"
  4208. type="1" >
  4209. </productMenu>
  4210. <productMenu id="music"
  4211. type="1" >
  4212. </productMenu>
  4213. <productMenu id="musicSharing"
  4214. type="0" >
  4215. </productMenu>
  4216. <productMenu id="deviceSetting"
  4217. type="1"
  4218. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  4219. </productMenu>
  4220. <productMenu id="quickGuide"
  4221. type="0"
  4222. url=""
  4223. size="1.12MB" >
  4224. </productMenu>
  4225. <productMenu id="userGuide"
  4226. type="1"
  4227. url=""
  4228. size="2.0MB" >
  4229. </productMenu>
  4230. <productMenu id="volume"
  4231. type="12" >
  4232. </productMenu>
  4233. <productMenu id="battery"
  4234. type="1" >
  4235. </productMenu>
  4236. <productID id="684B"
  4237. />
  4238. <productGroupable type="0"
  4239. />
  4240. </product>
  4241. <product id="SURGE"
  4242. name="SURGE"
  4243. series="Helmet"
  4244. latestVersion="1.1.1"
  4245. latestVersionVoicePrompt="0.9"
  4246. show = "1" >
  4247. <productMenu id="protocol"
  4248. type="2" >
  4249. </productMenu>
  4250. <productMenu id="alexa"
  4251. type="0" >
  4252. </productMenu>
  4253. <productMenu id="ota"
  4254. type="2" >
  4255. <otaPackages>
  4256. <package
  4257. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  4258. size="2945812"
  4259. />
  4260. </otaPackages>
  4261. </productMenu>
  4262. <productMenu id="meshIntercom"
  4263. type="30" >
  4264. </productMenu>
  4265. <productMenu id="meshIntercom+"
  4266. type="3"
  4267. url="2" >
  4268. <productMenuType version="1.0.1"
  4269. type="2"
  4270. />
  4271. </productMenu>
  4272. <productMenu id="waveIntercom"
  4273. type="1" >
  4274. <productMenuType version="1.0.9"
  4275. type="0"
  4276. />
  4277. </productMenu>
  4278. <productMenu id="phone"
  4279. type="1" >
  4280. </productMenu>
  4281. <productMenu id="music"
  4282. type="1" >
  4283. </productMenu>
  4284. <productMenu id="musicSharing"
  4285. type="0" >
  4286. </productMenu>
  4287. <productMenu id="deviceSetting"
  4288. type="1"
  4289. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  4290. <productMenuURL version="1.0.1"
  4291. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  4292. />
  4293. </productMenu>
  4294. <productMenu id="quickGuide"
  4295. type="0"
  4296. url=""
  4297. size="1.12MB" >
  4298. </productMenu>
  4299. <productMenu id="userGuide"
  4300. type="1"
  4301. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  4302. size="2.0MB" >
  4303. </productMenu>
  4304. <productMenu id="volume"
  4305. type="12" >
  4306. </productMenu>
  4307. <productMenu id="battery"
  4308. type="1" >
  4309. </productMenu>
  4310. <productID id="6840"
  4311. />
  4312. <productGroupable type="0"
  4313. />
  4314. </product>
  4315. <product id="Cavalry2"
  4316. name="Cavalry 2"
  4317. series="Helmet"
  4318. latestVersion="1.1.1"
  4319. latestVersionVoicePrompt="0.9"
  4320. show = "1" >
  4321. <productMenu id="protocol"
  4322. type="2" >
  4323. </productMenu>
  4324. <productMenu id="alexa"
  4325. type="0" >
  4326. </productMenu>
  4327. <productMenu id="ota"
  4328. type="2" >
  4329. <otaPackages>
  4330. <package
  4331. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  4332. size="3144148"
  4333. />
  4334. </otaPackages>
  4335. </productMenu>
  4336. <productMenu id="wa"
  4337. type="0" >
  4338. </productMenu>
  4339. <productMenu id="meshIntercom"
  4340. type="30" >
  4341. </productMenu>
  4342. <productMenu id="meshIntercom+"
  4343. type="3"
  4344. url="2" >
  4345. <productMenuType version="1.0"
  4346. type="2"
  4347. />
  4348. </productMenu>
  4349. <productMenu id="waveIntercom"
  4350. type="1" >
  4351. <productMenuType version="1.0.9"
  4352. type="0"
  4353. />
  4354. </productMenu>
  4355. <productMenu id="phone"
  4356. type="1" >
  4357. </productMenu>
  4358. <productMenu id="music"
  4359. type="1" >
  4360. </productMenu>
  4361. <productMenu id="musicSharing"
  4362. type="0" >
  4363. </productMenu>
  4364. <productMenu id="deviceSetting"
  4365. type="1"
  4366. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  4367. <productMenuURL version="1.0"
  4368. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  4369. />
  4370. </productMenu>
  4371. <productMenu id="quickGuide"
  4372. type="0"
  4373. url=""
  4374. size="1.12MB" >
  4375. </productMenu>
  4376. <productMenu id="userGuide"
  4377. type="1"
  4378. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4379. size="2.0MB" >
  4380. </productMenu>
  4381. <productMenu id="connectGuide"
  4382. type="1"
  4383. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4384. size="1.12MB" >
  4385. </productMenu>
  4386. <productMenu id="volume"
  4387. type="12" >
  4388. </productMenu>
  4389. <productMenu id="battery"
  4390. type="1" >
  4391. </productMenu>
  4392. <productID id="6839"
  4393. />
  4394. <productGroupable type="0"
  4395. />
  4396. </product>
  4397. <product id="Cavalry"
  4398. name="Cavalry"
  4399. series="Helmet"
  4400. latestVersion="1.2.2"
  4401. show = "1" >
  4402. <productMenu id="protocol"
  4403. type="0">
  4404. </productMenu>
  4405. <productMenu id="sip"
  4406. type="1" >
  4407. </productMenu>
  4408. <productMenu id="bluetoothIntercom"
  4409. type="1" >
  4410. </productMenu>
  4411. <productMenu id="phone"
  4412. type="2" >
  4413. </productMenu>
  4414. <productMenu id="fmradio"
  4415. type="3" >
  4416. </productMenu>
  4417. <productMenu id="deviceSetting"
  4418. type="1"
  4419. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4420. <productMenuURL version="1.9"
  4421. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4422. />
  4423. <productMenuURL version="1.0.1"
  4424. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4425. />
  4426. </productMenu>
  4427. <productMenu id="quickGuide"
  4428. type="1"
  4429. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4430. size="795KB" >
  4431. </productMenu>
  4432. <productMenu id="userGuide"
  4433. type="1"
  4434. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4435. size="1.87MB" >
  4436. </productMenu>
  4437. <productID id="5524"
  4438. />
  4439. <productGroupable type="0"
  4440. />
  4441. </product>
  4442. <product id="Cavalry_Lite"
  4443. name="Cavalry Lite"
  4444. series="Helmet"
  4445. latestVersion="1.0.2"
  4446. show = "1" >
  4447. <productMenu id="protocol"
  4448. type="0">
  4449. </productMenu>
  4450. <productMenu id="sip"
  4451. type="1" >
  4452. </productMenu>
  4453. <productMenu id="bluetoothIntercom"
  4454. type="1" >
  4455. </productMenu>
  4456. <productMenu id="phone"
  4457. type="2" >
  4458. </productMenu>
  4459. <productMenu id="fmradio"
  4460. type="3" >
  4461. </productMenu>
  4462. <productMenu id="deviceSetting"
  4463. type="1"
  4464. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4465. </productMenu>
  4466. <productMenu id="userGuide"
  4467. type="1"
  4468. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4469. size="1.74MB" >
  4470. </productMenu>
  4471. <productID id="5536"
  4472. />
  4473. <productGroupable type="0"
  4474. />
  4475. </product>
  4476. <product id="SF4"
  4477. name="SF4"
  4478. series="SF"
  4479. latestVersion="1.1.5"
  4480. show = "-1" >
  4481. <productMenu id="protocol"
  4482. type="1"
  4483. url="3">
  4484. </productMenu>
  4485. <productMenu id="sip"
  4486. type="1" >
  4487. </productMenu>
  4488. <productMenu id="bluetoothIntercom"
  4489. type="1" >
  4490. </productMenu>
  4491. <productMenu id="phone"
  4492. type="1" >
  4493. </productMenu>
  4494. <productMenu id="music"
  4495. type="1" >
  4496. </productMenu>
  4497. <productMenu id="fmradio"
  4498. type="1" >
  4499. </productMenu>
  4500. <productMenu id="deviceSetting"
  4501. type="1"
  4502. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4503. <productMenuURL version="1.0.1"
  4504. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4505. />
  4506. </productMenu>
  4507. <productMenu id="quickGuide"
  4508. type="1"
  4509. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  4510. size="607KB" >
  4511. </productMenu>
  4512. <productMenu id="userGuide"
  4513. type="1"
  4514. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4515. size="1.91MB" >
  4516. </productMenu>
  4517. <productMenu id="volume"
  4518. type="4" >
  4519. </productMenu>
  4520. <productID id="5414"
  4521. />
  4522. <productGroupable type="0"
  4523. />
  4524. </product>
  4525. <product id="SF4"
  4526. name="SF4"
  4527. series="SF"
  4528. latestVersion="3.4.1"
  4529. show = "1" >
  4530. <productMenu id="protocol"
  4531. type="2" >
  4532. </productMenu>
  4533. <productMenu id="sip"
  4534. type="1" >
  4535. </productMenu>
  4536. <productMenu id="bluetoothIntercom"
  4537. type="1" >
  4538. </productMenu>
  4539. <productMenu id="phone"
  4540. type="1" >
  4541. </productMenu>
  4542. <productMenu id="music"
  4543. type="1" >
  4544. </productMenu>
  4545. <productMenu id="fmradio"
  4546. type="1" >
  4547. </productMenu>
  4548. <productMenu id="deviceSetting"
  4549. type="1"
  4550. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  4551. <productMenuURL version="3.0"
  4552. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  4553. />
  4554. </productMenu>
  4555. <productMenu id="quickGuide"
  4556. type="0"
  4557. url=""
  4558. size="934KB" >
  4559. </productMenu>
  4560. <productMenu id="userGuide"
  4561. type="1"
  4562. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4563. size="1.14MB" >
  4564. </productMenu>
  4565. <productMenu id="volume"
  4566. type="15" >
  4567. </productMenu>
  4568. <productID id="3370"
  4569. />
  4570. <productGroupable type="0"
  4571. />
  4572. </product>
  4573. <product id="SF2"
  4574. name="SF2"
  4575. series="SF"
  4576. latestVersion="1.2.1"
  4577. show = "-1" >
  4578. <productMenu id="protocol"
  4579. type="1"
  4580. url="2">
  4581. </productMenu>
  4582. <productMenu id="sip"
  4583. type="1" >
  4584. </productMenu>
  4585. <productMenu id="bluetoothIntercom"
  4586. type="1" >
  4587. </productMenu>
  4588. <productMenu id="phone"
  4589. type="1" >
  4590. </productMenu>
  4591. <productMenu id="music"
  4592. type="1" >
  4593. </productMenu>
  4594. <productMenu id="fmradio"
  4595. type="1" >
  4596. </productMenu>
  4597. <productMenu id="deviceSetting"
  4598. type="1"
  4599. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4600. <productMenuURL version="1.0.1"
  4601. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4602. />
  4603. </productMenu>
  4604. <productMenu id="quickGuide"
  4605. type="1"
  4606. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  4607. size="607KB" >
  4608. </productMenu>
  4609. <productMenu id="userGuide"
  4610. type="1"
  4611. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4612. size="1.91MB" >
  4613. </productMenu>
  4614. <productMenu id="volume"
  4615. type="4" >
  4616. </productMenu>
  4617. <productID id="5412"
  4618. />
  4619. <productGroupable type="0"
  4620. />
  4621. </product>
  4622. <product id="SF2"
  4623. name="SF2"
  4624. series="SF"
  4625. latestVersion="3.3.1"
  4626. show = "1" >
  4627. <productMenu id="protocol"
  4628. type="2" >
  4629. </productMenu>
  4630. <productMenu id="sip"
  4631. type="1" >
  4632. </productMenu>
  4633. <productMenu id="bluetoothIntercom"
  4634. type="1" >
  4635. </productMenu>
  4636. <productMenu id="phone"
  4637. type="1" >
  4638. </productMenu>
  4639. <productMenu id="music"
  4640. type="1" >
  4641. </productMenu>
  4642. <productMenu id="fmradio"
  4643. type="0" >
  4644. </productMenu>
  4645. <productMenu id="deviceSetting"
  4646. type="1"
  4647. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4648. <productMenuURL version="3.0"
  4649. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4650. />
  4651. </productMenu>
  4652. <productMenu id="quickGuide"
  4653. type="0"
  4654. url=""
  4655. size="934KB" >
  4656. </productMenu>
  4657. <productMenu id="userGuide"
  4658. type="1"
  4659. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4660. size="1.14MB" >
  4661. </productMenu>
  4662. <productMenu id="volume"
  4663. type="15" >
  4664. </productMenu>
  4665. <productID id="3360"
  4666. />
  4667. <productGroupable type="0"
  4668. />
  4669. </product>
  4670. <product id="SF1"
  4671. name="SF1"
  4672. series="SF"
  4673. latestVersion="2.0.5"
  4674. show = "-1" >
  4675. <productMenu id="protocol"
  4676. type="1"
  4677. url="1">
  4678. </productMenu>
  4679. <productMenu id="sip"
  4680. type="1" >
  4681. </productMenu>
  4682. <productMenu id="bluetoothIntercom"
  4683. type="1" >
  4684. <productMenuType version="1.1"
  4685. type="0"
  4686. />
  4687. </productMenu>
  4688. <productMenu id="phone"
  4689. type="1" >
  4690. </productMenu>
  4691. <productMenu id="music"
  4692. type="1" >
  4693. </productMenu>
  4694. <productMenu id="deviceSetting"
  4695. type="1"
  4696. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  4697. <productMenuURL version="1.1"
  4698. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  4699. />
  4700. <productMenuURL version="1.0"
  4701. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  4702. />
  4703. </productMenu>
  4704. <productMenu id="quickGuide"
  4705. type="1"
  4706. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  4707. size="401KB" >
  4708. </productMenu>
  4709. <productMenu id="userGuide"
  4710. type="1"
  4711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4712. size="1.91MB" >
  4713. </productMenu>
  4714. <productMenu id="volume"
  4715. type="3" >
  4716. </productMenu>
  4717. <productID id="5410"
  4718. />
  4719. <productGroupable type="0"
  4720. />
  4721. </product>
  4722. <product id="SF1"
  4723. name="SF1"
  4724. series="SF"
  4725. latestVersion="3.3.1"
  4726. show = "1" >
  4727. <productMenu id="protocol"
  4728. type="2" >
  4729. </productMenu>
  4730. <productMenu id="sip"
  4731. type="1" >
  4732. </productMenu>
  4733. <productMenu id="bluetoothIntercom"
  4734. type="1" >
  4735. </productMenu>
  4736. <productMenu id="phone"
  4737. type="1" >
  4738. </productMenu>
  4739. <productMenu id="music"
  4740. type="1" >
  4741. </productMenu>
  4742. <productMenu id="fmradio"
  4743. type="0" >
  4744. </productMenu>
  4745. <productMenu id="deviceSetting"
  4746. type="1"
  4747. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4748. <productMenuURL version="3.0"
  4749. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4750. />
  4751. </productMenu>
  4752. <productMenu id="quickGuide"
  4753. type="0"
  4754. url=""
  4755. size="934KB" >
  4756. </productMenu>
  4757. <productMenu id="userGuide"
  4758. type="1"
  4759. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4760. size="1.14MB" >
  4761. </productMenu>
  4762. <productMenu id="volume"
  4763. type="15" >
  4764. </productMenu>
  4765. <productID id="3350"
  4766. />
  4767. <productGroupable type="0"
  4768. />
  4769. </product>
  4770. <product id="SFR"
  4771. name="SFR"
  4772. series="SF"
  4773. latestVersion="1.1.1"
  4774. show = "1" >
  4775. <productMenu id="protocol"
  4776. type="1"
  4777. url="3">
  4778. </productMenu>
  4779. <productMenu id="sip"
  4780. type="1" >
  4781. </productMenu>
  4782. <productMenu id="bluetoothIntercom"
  4783. type="1" >
  4784. </productMenu>
  4785. <productMenu id="phone"
  4786. type="1" >
  4787. </productMenu>
  4788. <productMenu id="music"
  4789. type="1" >
  4790. </productMenu>
  4791. <productMenu id="fmradio"
  4792. type="1" >
  4793. </productMenu>
  4794. <productMenu id="deviceSetting"
  4795. type="1"
  4796. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4797. </productMenu>
  4798. <productMenu id="quickGuide"
  4799. type="1"
  4800. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  4801. size="607KB" >
  4802. </productMenu>
  4803. <productMenu id="userGuide"
  4804. type="1"
  4805. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  4806. size="1.91MB" >
  4807. </productMenu>
  4808. <productMenu id="volume"
  4809. type="4" >
  4810. </productMenu>
  4811. <productID id="5418"
  4812. />
  4813. <productGroupable type="0"
  4814. />
  4815. </product>
  4816. <product id="20S"
  4817. name="20S"
  4818. series="20"
  4819. latestVersion="2.2.3"
  4820. show = "1" >
  4821. <productMenu id="protocol"
  4822. type="0">
  4823. </productMenu>
  4824. <productMenu id="wa"
  4825. type="5" >
  4826. </productMenu>
  4827. <productMenu id="sip"
  4828. type="1" >
  4829. <productMenuType version="1.0"
  4830. type="0"
  4831. />
  4832. </productMenu>
  4833. <productMenu id="bluetoothIntercom"
  4834. type="1" >
  4835. <productMenuType version="1.0"
  4836. type="0"
  4837. />
  4838. </productMenu>
  4839. <productMenu id="intercomSetting"
  4840. type="1" >
  4841. </productMenu>
  4842. <productMenu id="phone"
  4843. type="2" >
  4844. </productMenu>
  4845. <productMenu id="fmradio"
  4846. type="3" >
  4847. </productMenu>
  4848. <productMenu id="deviceSetting"
  4849. type="1"
  4850. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4851. <productMenuURL version="2.0.2"
  4852. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4853. />
  4854. <productMenuURL version="1.5"
  4855. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4856. />
  4857. <productMenuURL version="1.4.1"
  4858. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4859. />
  4860. <productMenuURL version="1.1"
  4861. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4862. />
  4863. <productMenuURL version="1.0"
  4864. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4865. />
  4866. </productMenu>
  4867. <productMenu id="quickGuide"
  4868. type="0"
  4869. url=""
  4870. size="264KB" >
  4871. </productMenu>
  4872. <productMenu id="userGuide"
  4873. type="1"
  4874. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4875. size="3.09MB" >
  4876. </productMenu>
  4877. <productID id="4210"
  4878. />
  4879. <productGroupable type="1"
  4880. />
  4881. </product>
  4882. <product id="20S_EVO"
  4883. name="20S EVO"
  4884. series="20"
  4885. latestVersion="2.2.3"
  4886. show = "1" >
  4887. <productMenu id="protocol"
  4888. type="0">
  4889. </productMenu>
  4890. <productMenu id="wa"
  4891. type="5" >
  4892. </productMenu>
  4893. <productMenu id="sip"
  4894. type="1" >
  4895. <productMenuType version="1.0"
  4896. type="0"
  4897. />
  4898. </productMenu>
  4899. <productMenu id="bluetoothIntercom"
  4900. type="1" >
  4901. <productMenuType version="1.0"
  4902. type="0"
  4903. />
  4904. </productMenu>
  4905. <productMenu id="intercomSetting"
  4906. type="1" >
  4907. </productMenu>
  4908. <productMenu id="phone"
  4909. type="2" >
  4910. </productMenu>
  4911. <productMenu id="fmradio"
  4912. type="3" >
  4913. </productMenu>
  4914. <productMenu id="deviceSetting"
  4915. type="1"
  4916. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4917. <productMenuURL version="2.0.2"
  4918. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4919. />
  4920. <productMenuURL version="1.5"
  4921. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4922. />
  4923. <productMenuURL version="1.4.1"
  4924. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4925. />
  4926. <productMenuURL version="1.1"
  4927. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4928. />
  4929. <productMenuURL version="1.0"
  4930. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4931. />
  4932. </productMenu>
  4933. <productMenu id="quickGuide"
  4934. type="0"
  4935. url=""
  4936. size="264KB" >
  4937. </productMenu>
  4938. <productMenu id="userGuide"
  4939. type="1"
  4940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4941. size="3.09MB" >
  4942. </productMenu>
  4943. <productID id="4210"
  4944. />
  4945. <productProductKey key="16"
  4946. />
  4947. <productGroupable type="1"
  4948. />
  4949. </product>
  4950. <product id="10S"
  4951. name="10S"
  4952. series="10"
  4953. latestVersion="3.0.1"
  4954. show = "1" >
  4955. <productMenu id="protocol"
  4956. type="3" >
  4957. </productMenu>
  4958. <productMenu id="sip"
  4959. type="1" >
  4960. </productMenu>
  4961. <productMenu id="bluetoothIntercom"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="phone"
  4965. type="1" >
  4966. </productMenu>
  4967. <productMenu id="deviceSetting"
  4968. type="1"
  4969. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  4970. </productMenu>
  4971. <productMenu id="quickGuide"
  4972. type="1"
  4973. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  4974. size="934KB" >
  4975. </productMenu>
  4976. <productMenu id="userGuide"
  4977. type="1"
  4978. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  4979. size="1.14MB" >
  4980. </productMenu>
  4981. <productID id="3380"
  4982. />
  4983. <productGroupable type="0"
  4984. />
  4985. </product>
  4986. <product id="10S"
  4987. name="10S"
  4988. series="10"
  4989. latestVersion="2.1.1"
  4990. show = "-1" >
  4991. <productMenu id="protocol"
  4992. type="0">
  4993. </productMenu>
  4994. <productMenu id="sip"
  4995. type="1" >
  4996. </productMenu>
  4997. <productMenu id="bluetoothIntercom"
  4998. type="1" >
  4999. </productMenu>
  5000. <productMenu id="phone"
  5001. type="2" >
  5002. </productMenu>
  5003. <productMenu id="fmradio"
  5004. type="3" >
  5005. </productMenu>
  5006. <productMenu id="deviceSetting"
  5007. type="1"
  5008. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  5009. <productMenuURL version="1.5"
  5010. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  5011. />
  5012. <productMenuURL version="1.3.1"
  5013. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  5014. />
  5015. </productMenu>
  5016. <productMenu id="quickGuide"
  5017. type="1"
  5018. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  5019. size="310KB" >
  5020. </productMenu>
  5021. <productMenu id="userGuide"
  5022. type="1"
  5023. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  5024. size="1.57MB" >
  5025. </productMenu>
  5026. <productID id="5530"
  5027. />
  5028. <productGroupable type="0"
  5029. />
  5030. </product>
  5031. <product id="10R"
  5032. name="10R"
  5033. series="10"
  5034. latestVersion="2.1.1"
  5035. show = "1" >
  5036. <productMenu id="protocol"
  5037. type="0">
  5038. </productMenu>
  5039. <productMenu id="sip"
  5040. type="1" >
  5041. <productMenuType version="1.0.2"
  5042. type="0"
  5043. />
  5044. </productMenu>
  5045. <productMenu id="bluetoothIntercom"
  5046. type="1" >
  5047. <productMenuType version="1.0.2"
  5048. type="0"
  5049. />
  5050. </productMenu>
  5051. <productMenu id="phone"
  5052. type="2" >
  5053. </productMenu>
  5054. <productMenu id="fmradio"
  5055. type="3" >
  5056. </productMenu>
  5057. <productMenu id="deviceSetting"
  5058. type="1"
  5059. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5060. <productMenuURL version="1.4"
  5061. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  5062. />
  5063. <productMenuURL version="1.2.1"
  5064. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  5065. />
  5066. <productMenuURL version="1.0.2"
  5067. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  5068. />
  5069. <productMenuURL version="1.0"
  5070. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  5071. />
  5072. </productMenu>
  5073. <productMenu id="quickGuide"
  5074. type="1"
  5075. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  5076. size="400KB" >
  5077. </productMenu>
  5078. <productMenu id="userGuide"
  5079. type="1"
  5080. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  5081. size="2.75MB" >
  5082. </productMenu>
  5083. <productID id="5520"
  5084. />
  5085. <productGroupable type="0"
  5086. />
  5087. </product>
  5088. <product id="10C_EVO"
  5089. name="10C EVO"
  5090. series="10"
  5091. latestVersion="1.7"
  5092. show = "1" >
  5093. <productMenu id="protocol"
  5094. type="0">
  5095. </productMenu>
  5096. <productMenu id="sip"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="bluetoothIntercom"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="phone"
  5103. type="2" >
  5104. </productMenu>
  5105. <productMenu id="fmradio"
  5106. type="3" >
  5107. </productMenu>
  5108. <productMenu id="deviceSetting"
  5109. type="1"
  5110. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  5111. <productMenuURL version="1.3.1"
  5112. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5113. />
  5114. </productMenu>
  5115. <productMenu id="quickGuide"
  5116. type="1"
  5117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  5118. size="1.32MB" >
  5119. </productMenu>
  5120. <productMenu id="userGuide"
  5121. type="1"
  5122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  5123. size="1.68MB" >
  5124. </productMenu>
  5125. <productID id="5570"
  5126. />
  5127. <productGroupable type="0"
  5128. />
  5129. </product>
  5130. <product id="10C_Pro"
  5131. name="10C Pro"
  5132. series="10"
  5133. latestVersion="2.7.1"
  5134. show = "1" >
  5135. <productMenu id="protocol"
  5136. type="0">
  5137. </productMenu>
  5138. <productMenu id="sip"
  5139. type="1" >
  5140. </productMenu>
  5141. <productMenu id="bluetoothIntercom"
  5142. type="1" >
  5143. </productMenu>
  5144. <productMenu id="phone"
  5145. type="2" >
  5146. </productMenu>
  5147. <productMenu id="fmradio"
  5148. type="3" >
  5149. </productMenu>
  5150. <productMenu id="deviceSetting"
  5151. type="1"
  5152. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  5153. <productMenuURL version="2.5.1"
  5154. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  5155. />
  5156. <productMenuURL version="1.0"
  5157. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  5158. />
  5159. </productMenu>
  5160. <productMenu id="quickGuide"
  5161. type="1"
  5162. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  5163. size="651KB" >
  5164. </productMenu>
  5165. <productMenu id="userGuide"
  5166. type="1"
  5167. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  5168. size="2.34MB" >
  5169. </productMenu>
  5170. <productID id="5580"
  5171. />
  5172. <productGroupable type="0"
  5173. />
  5174. </product>
  5175. <product id="10C"
  5176. name="10C"
  5177. series="10"
  5178. latestVersion="3.0.4"
  5179. show = "1" >
  5180. <productMenu id="protocol"
  5181. type="0">
  5182. </productMenu>
  5183. <productMenu id="sip"
  5184. type="1" >
  5185. <productMenuType version="1.0.4"
  5186. type="0"
  5187. />
  5188. </productMenu>
  5189. <productMenu id="bluetoothIntercom"
  5190. type="1" >
  5191. <productMenuType version="1.0.4"
  5192. type="0"
  5193. />
  5194. </productMenu>
  5195. <productMenu id="phone"
  5196. type="2" >
  5197. </productMenu>
  5198. <productMenu id="fmradio"
  5199. type="3" >
  5200. </productMenu>
  5201. <productMenu id="deviceSetting"
  5202. type="1"
  5203. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  5204. <productMenuURL version="2.3"
  5205. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  5206. />
  5207. <productMenuURL version="2.1.1"
  5208. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  5209. />
  5210. <productMenuURL version="1.0.4"
  5211. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  5212. />
  5213. <productMenuURL version="1.0.2"
  5214. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  5215. />
  5216. </productMenu>
  5217. <productMenu id="quickGuide"
  5218. type="1"
  5219. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  5220. size="935KB" >
  5221. </productMenu>
  5222. <productMenu id="userGuide"
  5223. type="1"
  5224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  5225. size="2.82MB" >
  5226. </productMenu>
  5227. <productID id="5510"
  5228. />
  5229. <productGroupable type="0"
  5230. />
  5231. </product>
  5232. <product id="10U_GT_AIR"
  5233. name="10U GT-Air"
  5234. series="10"
  5235. latestVersion="2.0.4"
  5236. show = "1" >
  5237. <productMenu id="protocol"
  5238. type="0">
  5239. </productMenu>
  5240. <productMenu id="sip"
  5241. type="1" >
  5242. <productMenuType version="1.0.2"
  5243. type="0"
  5244. />
  5245. </productMenu>
  5246. <productMenu id="bluetoothIntercom"
  5247. type="1" >
  5248. <productMenuType version="1.0.2"
  5249. type="0"
  5250. />
  5251. </productMenu>
  5252. <productMenu id="phone"
  5253. type="2" >
  5254. </productMenu>
  5255. <productMenu id="fmradio"
  5256. type="3" >
  5257. </productMenu>
  5258. <productMenu id="deviceSetting"
  5259. type="1"
  5260. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5261. <productMenuURL version="1.3.2"
  5262. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5263. />
  5264. <productMenuURL version="1.0.2"
  5265. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5266. />
  5267. </productMenu>
  5268. <productMenu id="quickGuide"
  5269. type="1"
  5270. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  5271. size="685KB" >
  5272. </productMenu>
  5273. <productMenu id="userGuide"
  5274. type="1"
  5275. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5276. size="684KB" >
  5277. </productMenu>
  5278. <productMenu id="connectGuide"
  5279. type="1"
  5280. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5281. size="1.12MB" >
  5282. </productMenu>
  5283. <productID id="5610"
  5284. />
  5285. <productGroupable type="0"
  5286. />
  5287. </product>
  5288. <product id="10U_NEOTEC"
  5289. name="10U Neotec"
  5290. series="10"
  5291. latestVersion="2.0.4"
  5292. show = "1" >
  5293. <productMenu id="protocol"
  5294. type="0">
  5295. </productMenu>
  5296. <productMenu id="sip"
  5297. type="1" >
  5298. <productMenuType version="1.0.2"
  5299. type="0"
  5300. />
  5301. </productMenu>
  5302. <productMenu id="bluetoothIntercom"
  5303. type="1" >
  5304. <productMenuType version="1.0.2"
  5305. type="0"
  5306. />
  5307. </productMenu>
  5308. <productMenu id="phone"
  5309. type="2" >
  5310. </productMenu>
  5311. <productMenu id="fmradio"
  5312. type="3" >
  5313. </productMenu>
  5314. <productMenu id="deviceSetting"
  5315. type="1"
  5316. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5317. <productMenuURL version="1.3.2"
  5318. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5319. />
  5320. <productMenuURL version="1.0.2"
  5321. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5322. />
  5323. </productMenu>
  5324. <productMenu id="quickGuide"
  5325. type="1"
  5326. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  5327. size="689KB" >
  5328. </productMenu>
  5329. <productMenu id="userGuide"
  5330. type="1"
  5331. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5332. size="684KB" >
  5333. </productMenu>
  5334. <productMenu id="connectGuide"
  5335. type="1"
  5336. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5337. size="1.12MB" >
  5338. </productMenu>
  5339. <productID id="5611"
  5340. />
  5341. <productGroupable type="0"
  5342. />
  5343. </product>
  5344. <product id="10U_J_CRUISE"
  5345. name="10U J-Cruise"
  5346. series="10"
  5347. latestVersion="2.0.4"
  5348. show = "1" >
  5349. <productMenu id="protocol"
  5350. type="0">
  5351. </productMenu>
  5352. <productMenu id="sip"
  5353. type="1" >
  5354. <productMenuType version="1.0.2"
  5355. type="0"
  5356. />
  5357. </productMenu>
  5358. <productMenu id="bluetoothIntercom"
  5359. type="1" >
  5360. <productMenuType version="1.0.2"
  5361. type="0"
  5362. />
  5363. </productMenu>
  5364. <productMenu id="phone"
  5365. type="2" >
  5366. </productMenu>
  5367. <productMenu id="fmradio"
  5368. type="3" >
  5369. </productMenu>
  5370. <productMenu id="deviceSetting"
  5371. type="1"
  5372. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5373. <productMenuURL version="1.3.2"
  5374. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5375. />
  5376. <productMenuURL version="1.0.2"
  5377. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5378. />
  5379. </productMenu>
  5380. <productMenu id="quickGuide"
  5381. type="1"
  5382. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5383. size="686KB" >
  5384. </productMenu>
  5385. <productMenu id="userGuide"
  5386. type="1"
  5387. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5388. size="684KB" >
  5389. </productMenu>
  5390. <productMenu id="connectGuide"
  5391. type="1"
  5392. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5393. size="1.12MB" >
  5394. </productMenu>
  5395. <productID id="5612"
  5396. />
  5397. <productGroupable type="0"
  5398. />
  5399. </product>
  5400. <product id="10U_C3"
  5401. name="10U C3/C3Pro"
  5402. series="10"
  5403. latestVersion="2.0.4"
  5404. show = "1" >
  5405. <productMenu id="protocol"
  5406. type="0">
  5407. </productMenu>
  5408. <productMenu id="sip"
  5409. type="1" >
  5410. <productMenuType version="1.0.2"
  5411. type="0"
  5412. />
  5413. </productMenu>
  5414. <productMenu id="bluetoothIntercom"
  5415. type="1" >
  5416. <productMenuType version="1.0.2"
  5417. type="0"
  5418. />
  5419. </productMenu>
  5420. <productMenu id="phone"
  5421. type="2" >
  5422. </productMenu>
  5423. <productMenu id="fmradio"
  5424. type="3" >
  5425. </productMenu>
  5426. <productMenu id="deviceSetting"
  5427. type="1"
  5428. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5429. <productMenuURL version="1.3.2"
  5430. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5431. />
  5432. <productMenuURL version="1.0.2"
  5433. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5434. />
  5435. </productMenu>
  5436. <productMenu id="quickGuide"
  5437. type="1"
  5438. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5439. size="199KB" >
  5440. </productMenu>
  5441. <productMenu id="userGuide"
  5442. type="1"
  5443. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5444. size="684KB" >
  5445. </productMenu>
  5446. <productMenu id="connectGuide"
  5447. type="1"
  5448. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5449. size="1.12MB" >
  5450. </productMenu>
  5451. <productID id="5620"
  5452. />
  5453. <productGroupable type="0"
  5454. />
  5455. </product>
  5456. <product id="10U_ARAI"
  5457. name="10U Arai"
  5458. series="10"
  5459. latestVersion="2.0.4"
  5460. show = "1" >
  5461. <productMenu id="protocol"
  5462. type="0">
  5463. </productMenu>
  5464. <productMenu id="sip"
  5465. type="1" >
  5466. <productMenuType version="1.0.2"
  5467. type="0"
  5468. />
  5469. </productMenu>
  5470. <productMenu id="bluetoothIntercom"
  5471. type="1" >
  5472. <productMenuType version="1.0.2"
  5473. type="0"
  5474. />
  5475. </productMenu>
  5476. <productMenu id="phone"
  5477. type="2" >
  5478. </productMenu>
  5479. <productMenu id="fmradio"
  5480. type="3" >
  5481. </productMenu>
  5482. <productMenu id="deviceSetting"
  5483. type="1"
  5484. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5485. <productMenuURL version="1.3.2"
  5486. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5487. />
  5488. <productMenuURL version="1.0.2"
  5489. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5490. />
  5491. </productMenu>
  5492. <productMenu id="quickGuide"
  5493. type="1"
  5494. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  5495. size="689KB" >
  5496. </productMenu>
  5497. <productMenu id="userGuide"
  5498. type="1"
  5499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5500. size="684KB" >
  5501. </productMenu>
  5502. <productMenu id="connectGuide"
  5503. type="1"
  5504. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5505. size="1.12MB" >
  5506. </productMenu>
  5507. <productID id="5621"
  5508. />
  5509. <productGroupable type="0"
  5510. />
  5511. </product>
  5512. <product id="10Upad"
  5513. name="10Upad"
  5514. series="10"
  5515. latestVersion="2.0.3"
  5516. show = "1" >
  5517. <productMenu id="protocol"
  5518. type="0">
  5519. </productMenu>
  5520. <productMenu id="sip"
  5521. type="1" >
  5522. </productMenu>
  5523. <productMenu id="bluetoothIntercom"
  5524. type="1" >
  5525. </productMenu>
  5526. <productMenu id="phone"
  5527. type="2" >
  5528. </productMenu>
  5529. <productMenu id="fmradio"
  5530. type="3" >
  5531. </productMenu>
  5532. <productMenu id="deviceSetting"
  5533. type="1"
  5534. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5535. <productMenuURL version="1.0.3"
  5536. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5537. />
  5538. </productMenu>
  5539. <productMenu id="quickGuide"
  5540. type="1"
  5541. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5542. size="615KB" >
  5543. </productMenu>
  5544. <productMenu id="userGuide"
  5545. type="1"
  5546. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5547. size="0.99MB" >
  5548. </productMenu>
  5549. <productID id="6210"
  5550. />
  5551. <productGroupable type="0"
  5552. />
  5553. </product>
  5554. <product id="5S"
  5555. name="5S"
  5556. series="5"
  5557. latestVersion="2.2.1"
  5558. show = "1" >
  5559. <productMenu id="protocol"
  5560. type="3" >
  5561. </productMenu>
  5562. <productMenu id="sip"
  5563. type="1" >
  5564. </productMenu>
  5565. <productMenu id="bluetoothIntercom"
  5566. type="1" >
  5567. </productMenu>
  5568. <productMenu id="phone"
  5569. type="1" >
  5570. </productMenu>
  5571. <productMenu id="fmradio"
  5572. type="0" >
  5573. </productMenu>
  5574. <productMenu id="deviceSetting"
  5575. type="1"
  5576. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5577. </productMenu>
  5578. <productMenu id="quickGuide"
  5579. type="0"
  5580. url=""
  5581. size="934KB" >
  5582. </productMenu>
  5583. <productMenu id="userGuide"
  5584. type="1"
  5585. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  5586. size="1.14MB" >
  5587. </productMenu>
  5588. <productID id="5590"
  5589. />
  5590. <productGroupable type="0"
  5591. />
  5592. </product>
  5593. <product id="5S"
  5594. name="5S"
  5595. series="5"
  5596. latestVersion="1.2"
  5597. show = "-1" >
  5598. <productMenu id="protocol"
  5599. type="0">
  5600. </productMenu>
  5601. <productMenu id="sip"
  5602. type="1" >
  5603. </productMenu>
  5604. <productMenu id="bluetoothIntercom"
  5605. type="1" >
  5606. </productMenu>
  5607. <productMenu id="phone"
  5608. type="2" >
  5609. </productMenu>
  5610. <productMenu id="fmradio"
  5611. type="0" >
  5612. </productMenu>
  5613. <productMenu id="deviceSetting"
  5614. type="1"
  5615. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  5616. </productMenu>
  5617. <productMenu id="quickGuide"
  5618. type="0"
  5619. url=""
  5620. size="970KB" >
  5621. </productMenu>
  5622. <productMenu id="userGuide"
  5623. type="1"
  5624. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  5625. size="1.26MB" >
  5626. </productMenu>
  5627. <productID id="5534"
  5628. />
  5629. <productGroupable type="0"
  5630. />
  5631. </product>
  5632. <product id="5S"
  5633. name="5S"
  5634. series="5"
  5635. latestVersion="3.0.1"
  5636. show = "-1" >
  5637. <productMenu id="protocol"
  5638. type="0">
  5639. </productMenu>
  5640. <productMenu id="sip"
  5641. type="1" >
  5642. </productMenu>
  5643. <productMenu id="bluetoothIntercom"
  5644. type="1" >
  5645. </productMenu>
  5646. <productMenu id="phone"
  5647. type="2" >
  5648. </productMenu>
  5649. <productMenu id="fmradio"
  5650. type="0" >
  5651. </productMenu>
  5652. <productMenu id="deviceSetting"
  5653. type="1"
  5654. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  5655. </productMenu>
  5656. <productMenu id="quickGuide"
  5657. type="0"
  5658. url=""
  5659. size="970KB" >
  5660. </productMenu>
  5661. <productMenu id="userGuide"
  5662. type="1"
  5663. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  5664. size="1.26MB" >
  5665. </productMenu>
  5666. <productID id="5538"
  5667. />
  5668. <productGroupable type="0"
  5669. />
  5670. </product>
  5671. <product id="3SPLUS"
  5672. name="3S PLUS"
  5673. series="3"
  5674. latestVersion="2.2"
  5675. show = "1" >
  5676. <productMenu id="protocol"
  5677. type="3" >
  5678. </productMenu>
  5679. <productMenu id="sip"
  5680. type="1" >
  5681. </productMenu>
  5682. <productMenu id="bluetoothIntercom"
  5683. type="1" >
  5684. </productMenu>
  5685. <productMenu id="deviceSetting"
  5686. type="1"
  5687. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  5688. <productMenuURL version="2.2.1"
  5689. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  5690. />
  5691. </productMenu>
  5692. <productMenu id="quickGuide"
  5693. type="1"
  5694. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5695. size="344KB" >
  5696. </productMenu>
  5697. <productMenu id="userGuide"
  5698. type="1"
  5699. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  5700. size="1.14MB" >
  5701. </productMenu>
  5702. <productMenu id="connectGuide"
  5703. type="1"
  5704. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  5705. size="1.12MB" >
  5706. </productMenu>
  5707. <productID id="4023"
  5708. />
  5709. <productGroupable type="0"
  5710. />
  5711. </product>
  5712. <product id="3SPLUS"
  5713. name="3S PLUS"
  5714. series="3"
  5715. latestVersion="1.1"
  5716. show = "-1" >
  5717. <productMenu id="protocol"
  5718. type="0">
  5719. </productMenu>
  5720. <productMenu id="sip"
  5721. type="1" >
  5722. </productMenu>
  5723. <productMenu id="bluetoothIntercom"
  5724. type="1" >
  5725. </productMenu>
  5726. <productMenu id="deviceSetting"
  5727. type="1"
  5728. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5729. </productMenu>
  5730. <productMenu id="quickGuide"
  5731. type="1"
  5732. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5733. size="842KB" >
  5734. </productMenu>
  5735. <productMenu id="userGuide"
  5736. type="1"
  5737. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  5738. size="1.02MB" >
  5739. </productMenu>
  5740. <productID id="6320"
  5741. />
  5742. <productGroupable type="0"
  5743. />
  5744. </product>
  5745. <product id="iCon"
  5746. name="iCon"
  5747. series="50"
  5748. latestVersion="1.0.1"
  5749. show = "0" >
  5750. <productMenu id="protocol"
  5751. type="2" >
  5752. </productMenu>
  5753. <productMenu id="alexa"
  5754. type="0" >
  5755. </productMenu>
  5756. <productMenu id="wa"
  5757. type="0" >
  5758. </productMenu>
  5759. <productMenu id="sip"
  5760. type="1" >
  5761. </productMenu>
  5762. <productMenu id="led"
  5763. type="3" >
  5764. </productMenu>
  5765. <productMenu id="meshIntercom"
  5766. type="20" >
  5767. </productMenu>
  5768. <productMenu id="meshIntercom+"
  5769. type="3"
  5770. url="0" >
  5771. <productMenuType version="1.0.9"
  5772. type="2"
  5773. />
  5774. </productMenu>
  5775. <productMenu id="bluetoothIntercom"
  5776. type="1" >
  5777. </productMenu>
  5778. <productMenu id="phone"
  5779. type="1" >
  5780. </productMenu>
  5781. <productMenu id="music"
  5782. type="1" >
  5783. </productMenu>
  5784. <productMenu id="fmradio"
  5785. type="1" >
  5786. </productMenu>
  5787. <productMenu id="deviceSetting"
  5788. type="1"
  5789. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  5790. <productMenuURL version="1.0.9"
  5791. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5792. />
  5793. </productMenu>
  5794. <productMenu id="quickGuide"
  5795. type="1"
  5796. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  5797. size="344KB" >
  5798. </productMenu>
  5799. <productMenu id="userGuide"
  5800. type="1"
  5801. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  5802. size="3.41MB" >
  5803. </productMenu>
  5804. <productMenu id="volume"
  5805. type="11" >
  5806. </productMenu>
  5807. <productMenu id="battery"
  5808. type="1" >
  5809. </productMenu>
  5810. <productID id="3900"
  5811. />
  5812. <productGroupable type="0"
  5813. />
  5814. </product>
  5815. <product id="HD50S"
  5816. name="H-D Audio 50S"
  5817. series="50"
  5818. latestVersion="1.0.1"
  5819. show = "-1" >
  5820. <productMenu id="protocol"
  5821. type="2" >
  5822. </productMenu>
  5823. <productMenu id="alexa"
  5824. type="0" >
  5825. </productMenu>
  5826. <productMenu id="ota"
  5827. type="0"
  5828. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5829. size="1150234" >
  5830. </productMenu>
  5831. <productMenu id="wa"
  5832. type="1" >
  5833. </productMenu>
  5834. <productMenu id="sip"
  5835. type="1" >
  5836. </productMenu>
  5837. <productMenu id="meshIntercom"
  5838. type="20" >
  5839. </productMenu>
  5840. <productMenu id="bluetoothIntercom"
  5841. type="1" >
  5842. </productMenu>
  5843. <productMenu id="phone"
  5844. type="1" >
  5845. </productMenu>
  5846. <productMenu id="music"
  5847. type="1" >
  5848. </productMenu>
  5849. <productMenu id="fmradio"
  5850. type="1" >
  5851. </productMenu>
  5852. <productMenu id="deviceSetting"
  5853. type="1"
  5854. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5855. </productMenu>
  5856. <productMenu id="quickGuide"
  5857. type="1"
  5858. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5859. size="934KB" >
  5860. </productMenu>
  5861. <productMenu id="userGuide"
  5862. type="1"
  5863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5864. size="1.14MB" >
  5865. </productMenu>
  5866. <productMenu id="volume"
  5867. type="11" >
  5868. </productMenu>
  5869. <productMenu id="battery"
  5870. type="1" >
  5871. </productMenu>
  5872. <productID id="3156"
  5873. />
  5874. <productGroupable type="0"
  5875. />
  5876. </product>
  5877. <product id="HD50S"
  5878. name="H-D Audio 50S"
  5879. series="50"
  5880. latestVersion="2.0.2"
  5881. show = "0" >
  5882. <productMenu id="protocol"
  5883. type="2" >
  5884. </productMenu>
  5885. <productMenu id="alexa"
  5886. type="0" >
  5887. </productMenu>
  5888. <productMenu id="ota"
  5889. type="0"
  5890. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5891. size="1150234" >
  5892. </productMenu>
  5893. <productMenu id="wa"
  5894. type="1" >
  5895. </productMenu>
  5896. <productMenu id="sip"
  5897. type="1" >
  5898. </productMenu>
  5899. <productMenu id="meshIntercom"
  5900. type="20" >
  5901. </productMenu>
  5902. <productMenu id="bluetoothIntercom"
  5903. type="1" >
  5904. </productMenu>
  5905. <productMenu id="phone"
  5906. type="1" >
  5907. </productMenu>
  5908. <productMenu id="music"
  5909. type="1" >
  5910. </productMenu>
  5911. <productMenu id="fmradio"
  5912. type="1" >
  5913. </productMenu>
  5914. <productMenu id="deviceSetting"
  5915. type="1"
  5916. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5917. </productMenu>
  5918. <productMenu id="quickGuide"
  5919. type="1"
  5920. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5921. size="934KB" >
  5922. </productMenu>
  5923. <productMenu id="userGuide"
  5924. type="1"
  5925. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5926. size="1.14MB" >
  5927. </productMenu>
  5928. <productMenu id="volume"
  5929. type="11" >
  5930. </productMenu>
  5931. <productMenu id="battery"
  5932. type="1" >
  5933. </productMenu>
  5934. <productID id="3213"
  5935. />
  5936. <productGroupable type="0"
  5937. />
  5938. </product>
  5939. <product id="HD50C"
  5940. name="H-D Audio 50C"
  5941. series="50"
  5942. latestVersion="1.0.1"
  5943. show = "0" >
  5944. <productMenu id="protocol"
  5945. type="2" >
  5946. </productMenu>
  5947. <productMenu id="ota"
  5948. type="0" >
  5949. </productMenu>
  5950. <productMenu id="wa"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="sip"
  5954. type="1" >
  5955. </productMenu>
  5956. <productMenu id="meshIntercom"
  5957. type="20" >
  5958. </productMenu>
  5959. <productMenu id="bluetoothIntercom"
  5960. type="1" >
  5961. </productMenu>
  5962. <productMenu id="phone"
  5963. type="1" >
  5964. </productMenu>
  5965. <productMenu id="music"
  5966. type="1" >
  5967. </productMenu>
  5968. <productMenu id="fmradio"
  5969. type="1" >
  5970. </productMenu>
  5971. <productMenu id="deviceSetting"
  5972. type="1"
  5973. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5974. </productMenu>
  5975. <productMenu id="quickGuide"
  5976. type="1"
  5977. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5978. size="344KB" >
  5979. </productMenu>
  5980. <productMenu id="userGuide"
  5981. type="1"
  5982. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5983. size="3.41MB" >
  5984. </productMenu>
  5985. <productMenu id="volume"
  5986. type="11" >
  5987. </productMenu>
  5988. <productMenu id="battery"
  5989. type="1" >
  5990. </productMenu>
  5991. <productID id="3240"
  5992. />
  5993. <productGroupable type="0"
  5994. />
  5995. </product>
  5996. <product id="HD50S"
  5997. name="FURY N04"
  5998. series="Helmet"
  5999. latestVersion="1.0"
  6000. show = "0" >
  6001. <productMenu id="protocol"
  6002. type="2" >
  6003. </productMenu>
  6004. <productMenu id="alexa"
  6005. type="0" >
  6006. </productMenu>
  6007. <productMenu id="ota"
  6008. type="0" >
  6009. </productMenu>
  6010. <productMenu id="wa"
  6011. type="0" >
  6012. </productMenu>
  6013. <productMenu id="meshIntercom"
  6014. type="20" >
  6015. </productMenu>
  6016. <productMenu id="meshIntercom+"
  6017. type="3"
  6018. url="0" >
  6019. <productMenuType version="1.0.9"
  6020. type="2"
  6021. />
  6022. </productMenu>
  6023. <productMenu id="phone"
  6024. type="1" >
  6025. </productMenu>
  6026. <productMenu id="music"
  6027. type="1" >
  6028. </productMenu>
  6029. <productMenu id="fmradio"
  6030. type="1" >
  6031. </productMenu>
  6032. <productMenu id="deviceSetting"
  6033. type="1"
  6034. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  6035. <productMenuURL version="1.0.9"
  6036. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  6037. />
  6038. </productMenu>
  6039. <productMenu id="quickGuide"
  6040. type="1"
  6041. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  6042. size="1.12MB" >
  6043. </productMenu>
  6044. <productMenu id="userGuide"
  6045. type="1"
  6046. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  6047. size="2.0MB" >
  6048. </productMenu>
  6049. <productMenu id="volume"
  6050. type="13" >
  6051. </productMenu>
  6052. <productMenu id="battery"
  6053. type="1" >
  6054. </productMenu>
  6055. <productID id="5553"
  6056. />
  6057. <productGroupable type="0"
  6058. />
  6059. </product>
  6060. <product id="XCOM3Pro"
  6061. name="X-COM3 Pro"
  6062. series="50"
  6063. latestVersion="1.1"
  6064. show = "0" >
  6065. <productMenu id="protocol"
  6066. type="2" >
  6067. </productMenu>
  6068. <productMenu id="alexa"
  6069. type="0" >
  6070. </productMenu>
  6071. <productMenu id="ota"
  6072. type="0" >
  6073. </productMenu>
  6074. <productMenu id="wa"
  6075. type="0" >
  6076. </productMenu>
  6077. <productMenu id="sip"
  6078. type="1" >
  6079. </productMenu>
  6080. <productMenu id="meshIntercom"
  6081. type="30" >
  6082. </productMenu>
  6083. <productMenu id="meshIntercom+"
  6084. type="3"
  6085. url="2" >
  6086. <productMenuType version="1.1"
  6087. type="2"
  6088. />
  6089. </productMenu>
  6090. <productMenu id="waveIntercom"
  6091. type="1" >
  6092. <productMenuType version="1.1"
  6093. type="0"
  6094. />
  6095. </productMenu>
  6096. <productMenu id="bluetoothIntercom"
  6097. type="1" >
  6098. </productMenu>
  6099. <productMenu id="phone"
  6100. type="1" >
  6101. </productMenu>
  6102. <productMenu id="music"
  6103. type="1" >
  6104. </productMenu>
  6105. <productMenu id="fmradio"
  6106. type="1" >
  6107. </productMenu>
  6108. <productMenu id="deviceSetting"
  6109. type="1"
  6110. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  6111. <productMenuURL version="1.1"
  6112. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  6113. />
  6114. </productMenu>
  6115. <productMenu id="quickGuide"
  6116. type="0"
  6117. url=""
  6118. size="344KB" >
  6119. </productMenu>
  6120. <productMenu id="userGuide"
  6121. type="1"
  6122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  6123. size="3.41MB" >
  6124. </productMenu>
  6125. <productMenu id="volume"
  6126. type="11" >
  6127. </productMenu>
  6128. <productMenu id="battery"
  6129. type="1" >
  6130. </productMenu>
  6131. <productID id="321A"
  6132. />
  6133. <productGroupable type="0"
  6134. />
  6135. </product>
  6136. <product id="XCOM3"
  6137. name="X-COM3"
  6138. series="20"
  6139. latestVersion="1.0"
  6140. show = "0" >
  6141. <productMenu id="protocol"
  6142. type="2" >
  6143. </productMenu>
  6144. <productMenu id="sip"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="bluetoothIntercom"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="phone"
  6151. type="1" >
  6152. </productMenu>
  6153. <productMenu id="music"
  6154. type="1" >
  6155. </productMenu>
  6156. <productMenu id="fmradio"
  6157. type="1" >
  6158. </productMenu>
  6159. <productMenu id="deviceSetting"
  6160. type="1"
  6161. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  6162. </productMenu>
  6163. <productMenu id="quickGuide"
  6164. type="0"
  6165. url=""
  6166. size="934KB" >
  6167. </productMenu>
  6168. <productMenu id="userGuide"
  6169. type="1"
  6170. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  6171. size="1.14MB" >
  6172. </productMenu>
  6173. <productMenu id="volume"
  6174. type="15" >
  6175. </productMenu>
  6176. <productID id="3410"
  6177. />
  6178. <productGroupable type="0"
  6179. />
  6180. </product>
  6181. <product id="X-COM2"
  6182. name="X-COM2"
  6183. series="20"
  6184. latestVersion="1.0.5"
  6185. show = "0" >
  6186. <productMenu id="protocol"
  6187. type="0">
  6188. </productMenu>
  6189. <productMenu id="sip"
  6190. type="1" >
  6191. </productMenu>
  6192. <productMenu id="bluetoothIntercom"
  6193. type="1" >
  6194. </productMenu>
  6195. <productMenu id="intercomSetting"
  6196. type="1" >
  6197. </productMenu>
  6198. <productMenu id="phone"
  6199. type="2" >
  6200. </productMenu>
  6201. <productMenu id="fmradio"
  6202. type="3" >
  6203. </productMenu>
  6204. <productMenu id="deviceSetting"
  6205. type="1"
  6206. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6207. </productMenu>
  6208. <productMenu id="quickGuide"
  6209. type="1"
  6210. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  6211. size="796KB" >
  6212. </productMenu>
  6213. <productMenu id="userGuide"
  6214. type="1"
  6215. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  6216. size="1.90MB" >
  6217. </productMenu>
  6218. <productID id="2030"
  6219. />
  6220. <productGroupable type="1"
  6221. />
  6222. </product>
  6223. <product id="AVAABC"
  6224. name="AVA ABC"
  6225. series="SPIDER"
  6226. latestVersion="1.0"
  6227. show = "0" >
  6228. <productMenu id="protocol"
  6229. type="2" >
  6230. </productMenu>
  6231. <productMenu id="alexa"
  6232. type="0" >
  6233. </productMenu>
  6234. <productMenu id="ota"
  6235. type="0" >
  6236. </productMenu>
  6237. <productMenu id="wa"
  6238. type="0" >
  6239. </productMenu>
  6240. <productMenu id="meshIntercom"
  6241. type="20" >
  6242. </productMenu>
  6243. <productMenu id="phone"
  6244. type="1" >
  6245. </productMenu>
  6246. <productMenu id="music"
  6247. type="1" >
  6248. </productMenu>
  6249. <productMenu id="musicSharing"
  6250. type="0" >
  6251. </productMenu>
  6252. <productMenu id="deviceSetting"
  6253. type="1"
  6254. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  6255. </productMenu>
  6256. <productMenu id="quickGuide"
  6257. type="1"
  6258. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  6259. size="1.12MB" >
  6260. </productMenu>
  6261. <productMenu id="userGuide"
  6262. type="1"
  6263. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  6264. size="2.0MB" >
  6265. </productMenu>
  6266. <productMenu id="volume"
  6267. type="12" >
  6268. </productMenu>
  6269. <productMenu id="battery"
  6270. type="1" >
  6271. </productMenu>
  6272. <productID id="6808"
  6273. />
  6274. <productGroupable type="0"
  6275. />
  6276. </product>
  6277. <product id="Triumph_50S"
  6278. name="Triumph 50S"
  6279. series="50"
  6280. latestVersion="1.5"
  6281. show = "0" >
  6282. <productMenu id="protocol"
  6283. type="2" >
  6284. </productMenu>
  6285. <productMenu id="alexa"
  6286. type="0" >
  6287. </productMenu>
  6288. <productMenu id="ota"
  6289. type="0"
  6290. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6291. size="1150234" >
  6292. </productMenu>
  6293. <productMenu id="wa"
  6294. type="1" >
  6295. </productMenu>
  6296. <productMenu id="sip"
  6297. type="1" >
  6298. </productMenu>
  6299. <productMenu id="meshIntercom"
  6300. type="20" >
  6301. </productMenu>
  6302. <productMenu id="bluetoothIntercom"
  6303. type="1" >
  6304. </productMenu>
  6305. <productMenu id="meshIntercom+"
  6306. type="3"
  6307. url="2" >
  6308. <productMenuType version="1.2.9"
  6309. type="2"
  6310. />
  6311. <productMenuURL version="1.2.9"
  6312. url="0"
  6313. />
  6314. </productMenu>
  6315. <productMenu id="waveIntercom"
  6316. type="1" >
  6317. <productMenuType version="1.2.9"
  6318. type="0"
  6319. />
  6320. </productMenu>
  6321. <productMenu id="phone"
  6322. type="1" >
  6323. </productMenu>
  6324. <productMenu id="music"
  6325. type="1" >
  6326. </productMenu>
  6327. <productMenu id="fmradio"
  6328. type="1" >
  6329. </productMenu>
  6330. <productMenu id="deviceSetting"
  6331. type="1"
  6332. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6333. <productMenuURL version="1.2.9"
  6334. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  6335. />
  6336. <productMenuURL version="1.0"
  6337. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  6338. />
  6339. </productMenu>
  6340. <productMenu id="quickGuide"
  6341. type="1"
  6342. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  6343. size="934KB" >
  6344. </productMenu>
  6345. <productMenu id="userGuide"
  6346. type="1"
  6347. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  6348. size="1.14MB" >
  6349. </productMenu>
  6350. <productMenu id="volume"
  6351. type="11" >
  6352. </productMenu>
  6353. <productMenu id="battery"
  6354. type="1" >
  6355. </productMenu>
  6356. <productID id="3264"
  6357. />
  6358. <productGroupable type="0"
  6359. />
  6360. </product>
  6361. <product id="RE50S"
  6362. name="RE 50S"
  6363. series="50"
  6364. latestVersion="2.7"
  6365. show = "0" >
  6366. <productMenu id="protocol"
  6367. type="2" >
  6368. </productMenu>
  6369. <productMenu id="alexa"
  6370. type="0" >
  6371. </productMenu>
  6372. <productMenu id="ota"
  6373. type="0"
  6374. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  6375. size="1150234" >
  6376. </productMenu>
  6377. <productMenu id="wa"
  6378. type="1" >
  6379. </productMenu>
  6380. <productMenu id="sip"
  6381. type="1" >
  6382. </productMenu>
  6383. <productMenu id="meshIntercom"
  6384. type="30" >
  6385. </productMenu>
  6386. <productMenu id="meshIntercom+"
  6387. type="3"
  6388. url="2" >
  6389. <productMenuType version="2.5"
  6390. type="2"
  6391. />
  6392. </productMenu>
  6393. <productMenu id="waveIntercom"
  6394. type="1" >
  6395. <productMenuType version="2.5"
  6396. type="0"
  6397. />
  6398. </productMenu>
  6399. <productMenu id="bluetoothIntercom"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="phone"
  6403. type="1" >
  6404. </productMenu>
  6405. <productMenu id="music"
  6406. type="1" >
  6407. </productMenu>
  6408. <productMenu id="fmradio"
  6409. type="1" >
  6410. </productMenu>
  6411. <productMenu id="deviceSetting"
  6412. type="1"
  6413. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6414. <productMenuURL version="2.5"
  6415. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  6416. />
  6417. </productMenu>
  6418. <productMenu id="quickGuide"
  6419. type="1"
  6420. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  6421. size="934KB" >
  6422. </productMenu>
  6423. <productMenu id="userGuide"
  6424. type="1"
  6425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  6426. size="1.14MB" >
  6427. </productMenu>
  6428. <productMenu id="videoGuide"
  6429. type="0"
  6430. url=""
  6431. size="3.41MB" >
  6432. </productMenu>
  6433. <productMenu id="volume"
  6434. type="11" >
  6435. </productMenu>
  6436. <productMenu id="battery"
  6437. type="1" >
  6438. </productMenu>
  6439. <productID id="321C"
  6440. />
  6441. <productGroupable type="0"
  6442. />
  6443. </product>
  6444. <product id="BMW_HELMET_II_U1"
  6445. name="BMW HELMET II U1"
  6446. series="50"
  6447. latestVersion="1.0"
  6448. show = "0" >
  6449. <productMenu id="protocol"
  6450. type="2" >
  6451. </productMenu>
  6452. <productMenu id="alexa"
  6453. type="0" >
  6454. </productMenu>
  6455. <productMenu id="sip"
  6456. type="1" >
  6457. </productMenu>
  6458. <productMenu id="meshIntercom"
  6459. type="20" >
  6460. </productMenu>
  6461. <productMenu id="bluetoothIntercom"
  6462. type="1" >
  6463. </productMenu>
  6464. <productMenu id="bluetoothIntercom2"
  6465. type="1" >
  6466. </productMenu>
  6467. <productMenu id="phone"
  6468. type="1" >
  6469. </productMenu>
  6470. <productMenu id="music"
  6471. type="1" >
  6472. </productMenu>
  6473. <productMenu id="fmradio"
  6474. type="1" >
  6475. </productMenu>
  6476. <productMenu id="deviceSetting"
  6477. type="1"
  6478. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  6479. </productMenu>
  6480. <productMenu id="quickGuide"
  6481. type="1"
  6482. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  6483. size="934KB" >
  6484. </productMenu>
  6485. <productMenu id="userGuide"
  6486. type="1"
  6487. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  6488. size="1.14MB" >
  6489. </productMenu>
  6490. <productMenu id="volume"
  6491. type="11" >
  6492. </productMenu>
  6493. <productMenu id="battery"
  6494. type="1" >
  6495. </productMenu>
  6496. <productID id="3260"
  6497. />
  6498. <productGroupable type="0"
  6499. />
  6500. </product>
  6501. <product id="OUTRUSHR"
  6502. name="CX935"
  6503. series="Helmet"
  6504. latestVersion="1.1.3"
  6505. show = "-1" >
  6506. <productMenu id="protocol"
  6507. type="0">
  6508. </productMenu>
  6509. <productMenu id="sip"
  6510. type="1" >
  6511. </productMenu>
  6512. <productMenu id="bluetoothIntercom"
  6513. type="1" >
  6514. </productMenu>
  6515. <productMenu id="phone"
  6516. type="2" >
  6517. </productMenu>
  6518. <productMenu id="fmradio"
  6519. type="3" >
  6520. </productMenu>
  6521. <productMenu id="deviceSetting"
  6522. type="1"
  6523. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6524. </productMenu>
  6525. <productMenu id="userGuide"
  6526. type="1"
  6527. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6528. size="660KB" >
  6529. </productMenu>
  6530. <productID id="5436"
  6531. />
  6532. <productGroupable type="0"
  6533. />
  6534. </product>
  6535. <product id="LSE_01"
  6536. name="LSE-01"
  6537. series="SF"
  6538. latestVersion="1.2.3"
  6539. show = "0" >
  6540. <productMenu id="protocol"
  6541. type="1"
  6542. url="3">
  6543. </productMenu>
  6544. <productMenu id="sip"
  6545. type="1" >
  6546. </productMenu>
  6547. <productMenu id="bluetoothIntercom"
  6548. type="1" >
  6549. </productMenu>
  6550. <productMenu id="phone"
  6551. type="1" >
  6552. </productMenu>
  6553. <productMenu id="music"
  6554. type="1" >
  6555. </productMenu>
  6556. <productMenu id="fmradio"
  6557. type="1" >
  6558. </productMenu>
  6559. <productMenu id="deviceSetting"
  6560. type="1"
  6561. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6562. <productMenuURL version="1.1"
  6563. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6564. />
  6565. <productMenuURL version="1.0"
  6566. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  6567. />
  6568. </productMenu>
  6569. <productMenu id="quickGuide"
  6570. type="1"
  6571. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  6572. size="607KB" >
  6573. </productMenu>
  6574. <productMenu id="userGuide"
  6575. type="1"
  6576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  6577. size="1.91MB" >
  6578. </productMenu>
  6579. <productMenu id="volume"
  6580. type="4" >
  6581. </productMenu>
  6582. <productID id="5416"
  6583. />
  6584. <productGroupable type="0"
  6585. />
  6586. </product>
  6587. <product id="AGV_ARK"
  6588. name="AGV ARK"
  6589. series="SF"
  6590. latestVersion="1.0.3"
  6591. show = "0" >
  6592. <productMenu id="protocol"
  6593. type="1"
  6594. url="3">
  6595. </productMenu>
  6596. <productMenu id="sip"
  6597. type="1" >
  6598. </productMenu>
  6599. <productMenu id="bluetoothIntercom"
  6600. type="1" >
  6601. </productMenu>
  6602. <productMenu id="phone"
  6603. type="1" >
  6604. </productMenu>
  6605. <productMenu id="music"
  6606. type="1" >
  6607. </productMenu>
  6608. <productMenu id="fmradio"
  6609. type="1" >
  6610. </productMenu>
  6611. <productMenu id="deviceSetting"
  6612. type="1"
  6613. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6614. </productMenu>
  6615. <productMenu id="quickGuide"
  6616. type="1"
  6617. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  6618. size="607KB" >
  6619. </productMenu>
  6620. <productMenu id="userGuide"
  6621. type="1"
  6622. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  6623. size="1.91MB" >
  6624. </productMenu>
  6625. <productMenu id="volume"
  6626. type="4" >
  6627. </productMenu>
  6628. <productID id="5420"
  6629. />
  6630. <productGroupable type="0"
  6631. />
  6632. </product>
  6633. <product id="KLIM_KRIOS"
  6634. name="KLIM Krios"
  6635. series="10"
  6636. latestVersion="1.1.2"
  6637. show = "0" >
  6638. <productMenu id="protocol"
  6639. type="0">
  6640. </productMenu>
  6641. <productMenu id="sip"
  6642. type="1" >
  6643. </productMenu>
  6644. <productMenu id="bluetoothIntercom"
  6645. type="1" >
  6646. </productMenu>
  6647. <productMenu id="phone"
  6648. type="2" >
  6649. </productMenu>
  6650. <productMenu id="fmradio"
  6651. type="3" >
  6652. </productMenu>
  6653. <productMenu id="deviceSetting"
  6654. type="1"
  6655. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6656. <productMenuURL version="1.0"
  6657. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6658. />
  6659. </productMenu>
  6660. <productMenu id="quickGuide"
  6661. type="1"
  6662. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6663. size="649KB" >
  6664. </productMenu>
  6665. <productMenu id="userGuide"
  6666. type="1"
  6667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6668. size="1.43MB" >
  6669. </productMenu>
  6670. <productID id="5910"
  6671. />
  6672. <productGroupable type="0"
  6673. />
  6674. </product>
  6675. <product id="POLARIS_SLINGSHOT"
  6676. name="Polaris Slingshot"
  6677. series="10"
  6678. latestVersion="1.1.2"
  6679. show = "0" >
  6680. <productMenu id="protocol"
  6681. type="0">
  6682. </productMenu>
  6683. <productMenu id="sip"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="bluetoothIntercom"
  6687. type="1" >
  6688. </productMenu>
  6689. <productMenu id="phone"
  6690. type="2" >
  6691. </productMenu>
  6692. <productMenu id="fmradio"
  6693. type="3" >
  6694. </productMenu>
  6695. <productMenu id="deviceSetting"
  6696. type="1"
  6697. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6698. <productMenuURL version="1.0"
  6699. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6700. />
  6701. </productMenu>
  6702. <productMenu id="quickGuide"
  6703. type="1"
  6704. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6705. size="689KB" >
  6706. </productMenu>
  6707. <productMenu id="userGuide"
  6708. type="1"
  6709. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6710. size="1.43MB" >
  6711. </productMenu>
  6712. <productID id="5920"
  6713. />
  6714. <productGroupable type="0"
  6715. />
  6716. </product>
  6717. <product id="DWO6"
  6718. name="SEDICI DWO6-PRO"
  6719. series="10"
  6720. latestVersion="1.0.2"
  6721. show = "0" >
  6722. <productMenu id="protocol"
  6723. type="0">
  6724. </productMenu>
  6725. <productMenu id="sip"
  6726. type="1" >
  6727. </productMenu>
  6728. <productMenu id="bluetoothIntercom"
  6729. type="1" >
  6730. </productMenu>
  6731. <productMenu id="phone"
  6732. type="2" >
  6733. </productMenu>
  6734. <productMenu id="fmradio"
  6735. type="3" >
  6736. </productMenu>
  6737. <productMenu id="deviceSetting"
  6738. type="1"
  6739. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6740. </productMenu>
  6741. <productMenu id="quickGuide"
  6742. type="1"
  6743. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6744. size="529KB" >
  6745. </productMenu>
  6746. <productMenu id="userGuide"
  6747. type="1"
  6748. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6749. size="4.09MB" >
  6750. </productMenu>
  6751. <productID id="6112"
  6752. />
  6753. <productGroupable type="0"
  6754. />
  6755. </product>
  6756. <product id="DWO6A"
  6757. name="SEDICI DWO-6"
  6758. series="10"
  6759. latestVersion="1.0.2"
  6760. show = "0" >
  6761. <productMenu id="protocol"
  6762. type="0">
  6763. </productMenu>
  6764. <productMenu id="sip"
  6765. type="1" >
  6766. </productMenu>
  6767. <productMenu id="bluetoothIntercom"
  6768. type="1" >
  6769. </productMenu>
  6770. <productMenu id="phone"
  6771. type="2" >
  6772. </productMenu>
  6773. <productMenu id="fmradio"
  6774. type="3" >
  6775. </productMenu>
  6776. <productMenu id="deviceSetting"
  6777. type="1"
  6778. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6779. </productMenu>
  6780. <productMenu id="quickGuide"
  6781. type="1"
  6782. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  6783. size="522KB" >
  6784. </productMenu>
  6785. <productMenu id="userGuide"
  6786. type="1"
  6787. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  6788. size="2.71MB" >
  6789. </productMenu>
  6790. <productID id="6114"
  6791. />
  6792. <productGroupable type="0"
  6793. />
  6794. </product>
  6795. <product id="3SPLUS"
  6796. name="ZILL"
  6797. series="3"
  6798. latestVersion="1.0.4"
  6799. show = "0" >
  6800. <productMenu id="protocol"
  6801. type="0">
  6802. </productMenu>
  6803. <productMenu id="sip"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="bluetoothIntercom"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="deviceSetting"
  6810. type="1"
  6811. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6812. </productMenu>
  6813. <productMenu id="quickGuide"
  6814. type="1"
  6815. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6816. size="842KB" >
  6817. </productMenu>
  6818. <productMenu id="userGuide"
  6819. type="1"
  6820. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  6821. size="1.02MB" >
  6822. </productMenu>
  6823. <productID id="6335"
  6824. />
  6825. <productGroupable type="0"
  6826. />
  6827. </product>
  6828. <product id="HD50S"
  6829. name="Boom! Audio 30K"
  6830. series="30"
  6831. latestVersion="3.4"
  6832. show = "0" >
  6833. <productMenu id="protocol"
  6834. type="1"
  6835. url="0">
  6836. </productMenu>
  6837. <productMenu id="wa"
  6838. type="0" >
  6839. </productMenu>
  6840. <productMenu id="sip"
  6841. type="1" >
  6842. </productMenu>
  6843. <productMenu id="meshIntercom"
  6844. type="20" >
  6845. <productMenuType version="2.9.9"
  6846. type="10"
  6847. />
  6848. </productMenu>
  6849. <productMenu id="bluetoothIntercom"
  6850. type="1" >
  6851. </productMenu>
  6852. <productMenu id="phone"
  6853. type="1" >
  6854. </productMenu>
  6855. <productMenu id="music"
  6856. type="1" >
  6857. </productMenu>
  6858. <productMenu id="fmradio"
  6859. type="1" >
  6860. </productMenu>
  6861. <productMenu id="deviceSetting"
  6862. type="1"
  6863. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  6864. <productMenuURL version="3.2"
  6865. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  6866. />
  6867. <productMenuURL version="3.0"
  6868. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  6869. />
  6870. <productMenuURL version="2.2"
  6871. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6872. />
  6873. </productMenu>
  6874. <productMenu id="quickGuide"
  6875. type="1"
  6876. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6877. size="1.06MB" >
  6878. </productMenu>
  6879. <productMenu id="userGuide"
  6880. type="1"
  6881. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6882. size="3.15MB" >
  6883. </productMenu>
  6884. <productMenu id="volume"
  6885. type="1" >
  6886. </productMenu>
  6887. <productID id="3112"
  6888. />
  6889. <productGroupable type="0"
  6890. />
  6891. </product>
  6892. <product id="HD50S"
  6893. name="Boom! Audio N02"
  6894. series="30"
  6895. latestVersion="3.1"
  6896. show = "0" >
  6897. <productMenu id="protocol"
  6898. type="1"
  6899. url="0">
  6900. </productMenu>
  6901. <productMenu id="wa"
  6902. type="2" >
  6903. </productMenu>
  6904. <productMenu id="sip"
  6905. type="1" >
  6906. </productMenu>
  6907. <productMenu id="meshIntercom"
  6908. type="20" >
  6909. <productMenuType version="2.9.9"
  6910. type="10"
  6911. />
  6912. </productMenu>
  6913. <productMenu id="bluetoothIntercom"
  6914. type="1" >
  6915. </productMenu>
  6916. <productMenu id="phone"
  6917. type="1" >
  6918. </productMenu>
  6919. <productMenu id="music"
  6920. type="1" >
  6921. </productMenu>
  6922. <productMenu id="fmradio"
  6923. type="1" >
  6924. </productMenu>
  6925. <productMenu id="deviceSetting"
  6926. type="1"
  6927. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  6928. <productMenuURL version="2.2"
  6929. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6930. />
  6931. </productMenu>
  6932. <productMenu id="quickGuide"
  6933. type="1"
  6934. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  6935. size="1.06MB" >
  6936. </productMenu>
  6937. <productMenu id="userGuide"
  6938. type="1"
  6939. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  6940. size="3.15MB" >
  6941. </productMenu>
  6942. <productMenu id="volume"
  6943. type="2" >
  6944. </productMenu>
  6945. <productID id="3114"
  6946. />
  6947. <productGroupable type="0"
  6948. />
  6949. </product>
  6950. <product id="HD50S"
  6951. name="Boom Audio 20S"
  6952. series="50"
  6953. latestVersion="2.5.2"
  6954. show = "0" >
  6955. <productMenu id="protocol"
  6956. type="0">
  6957. </productMenu>
  6958. <productMenu id="sip"
  6959. type="1" >
  6960. <productMenuType version="1.0"
  6961. type="0"
  6962. />
  6963. </productMenu>
  6964. <productMenu id="bluetoothIntercom"
  6965. type="1" >
  6966. <productMenuType version="1.0"
  6967. type="0"
  6968. />
  6969. </productMenu>
  6970. <productMenu id="intercomSetting"
  6971. type="1" >
  6972. </productMenu>
  6973. <productMenu id="phone"
  6974. type="2" >
  6975. </productMenu>
  6976. <productMenu id="fmradio"
  6977. type="3" >
  6978. </productMenu>
  6979. <productMenu id="deviceSetting"
  6980. type="1"
  6981. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  6982. <productMenuURL version="2.4"
  6983. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6984. />
  6985. <productMenuURL version="1.5"
  6986. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6987. />
  6988. <productMenuURL version="1.4.1"
  6989. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6990. />
  6991. <productMenuURL version="1.1"
  6992. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6993. />
  6994. <productMenuURL version="1.0"
  6995. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6996. />
  6997. </productMenu>
  6998. <productMenu id="quickGuide"
  6999. type="1"
  7000. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7001. size="264KB" >
  7002. </productMenu>
  7003. <productMenu id="userGuide"
  7004. type="1"
  7005. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7006. size="3.09MB" >
  7007. </productMenu>
  7008. <productID id="4210"
  7009. />
  7010. <productProductKey key="11"
  7011. />
  7012. <productID id="4230"
  7013. />
  7014. <productProductKey key="11"
  7015. />
  7016. <productGroupable type="1"
  7017. />
  7018. </product>
  7019. <product id="HD50S"
  7020. name="Boom Audio 20S EVO"
  7021. series="50"
  7022. latestVersion="2.5.2"
  7023. show = "0" >
  7024. <productMenu id="protocol"
  7025. type="0">
  7026. </productMenu>
  7027. <productMenu id="sip"
  7028. type="1" >
  7029. <productMenuType version="1.0"
  7030. type="0"
  7031. />
  7032. </productMenu>
  7033. <productMenu id="bluetoothIntercom"
  7034. type="1" >
  7035. <productMenuType version="1.0"
  7036. type="0"
  7037. />
  7038. </productMenu>
  7039. <productMenu id="intercomSetting"
  7040. type="1" >
  7041. </productMenu>
  7042. <productMenu id="phone"
  7043. type="2" >
  7044. </productMenu>
  7045. <productMenu id="fmradio"
  7046. type="3" >
  7047. </productMenu>
  7048. <productMenu id="deviceSetting"
  7049. type="1"
  7050. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  7051. <productMenuURL version="2.4"
  7052. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7053. />
  7054. <productMenuURL version="1.5"
  7055. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7056. />
  7057. <productMenuURL version="1.4.1"
  7058. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7059. />
  7060. <productMenuURL version="1.1"
  7061. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7062. />
  7063. <productMenuURL version="1.0"
  7064. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7065. />
  7066. </productMenu>
  7067. <productMenu id="quickGuide"
  7068. type="1"
  7069. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  7070. size="321KB" >
  7071. </productMenu>
  7072. <productMenu id="userGuide"
  7073. type="1"
  7074. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  7075. size="2.46MB" >
  7076. </productMenu>
  7077. <productID id="4230"
  7078. />
  7079. <productProductKey key="27"
  7080. />
  7081. <productGroupable type="1"
  7082. />
  7083. </product>
  7084. <product id="HD50S"
  7085. name="Boom! Audio 10S"
  7086. series="50"
  7087. latestVersion="1.1.3"
  7088. show = "0" >
  7089. <productMenu id="protocol"
  7090. type="0">
  7091. </productMenu>
  7092. <productMenu id="sip"
  7093. type="1" >
  7094. </productMenu>
  7095. <productMenu id="bluetoothIntercom"
  7096. type="1" >
  7097. </productMenu>
  7098. <productMenu id="phone"
  7099. type="2" >
  7100. </productMenu>
  7101. <productMenu id="fmradio"
  7102. type="3" >
  7103. </productMenu>
  7104. <productMenu id="deviceSetting"
  7105. type="1"
  7106. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  7107. </productMenu>
  7108. <productMenu id="quickGuide"
  7109. type="1"
  7110. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7111. size="538KB" >
  7112. </productMenu>
  7113. <productMenu id="userGuide"
  7114. type="1"
  7115. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  7116. size="1.55MB" >
  7117. </productMenu>
  7118. <productID id="5532"
  7119. />
  7120. <productGroupable type="0"
  7121. />
  7122. </product>
  7123. <product id="HD50S"
  7124. name="Boom! Audio N01 10R"
  7125. series="50"
  7126. latestVersion="1.1.3"
  7127. show = "0" >
  7128. <productMenu id="protocol"
  7129. type="0">
  7130. </productMenu>
  7131. <productMenu id="sip"
  7132. type="1" >
  7133. </productMenu>
  7134. <productMenu id="bluetoothIntercom"
  7135. type="1" >
  7136. </productMenu>
  7137. <productMenu id="phone"
  7138. type="2" >
  7139. </productMenu>
  7140. <productMenu id="fmradio"
  7141. type="3" >
  7142. </productMenu>
  7143. <productMenu id="deviceSetting"
  7144. type="1"
  7145. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7146. </productMenu>
  7147. <productMenu id="quickGuide"
  7148. type="1"
  7149. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7150. size="766KB" >
  7151. </productMenu>
  7152. <productMenu id="userGuide"
  7153. type="1"
  7154. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  7155. size="1.45MB" >
  7156. </productMenu>
  7157. <productID id="5522"
  7158. />
  7159. <productGroupable type="0"
  7160. />
  7161. </product>
  7162. <product id="HD50S"
  7163. name="OUTRUSH-R N03"
  7164. series="50"
  7165. latestVersion="1.2.1"
  7166. show = "-1" >
  7167. <productMenu id="protocol"
  7168. type="0">
  7169. </productMenu>
  7170. <productMenu id="sip"
  7171. type="1" >
  7172. </productMenu>
  7173. <productMenu id="bluetoothIntercom"
  7174. type="1" >
  7175. </productMenu>
  7176. <productMenu id="phone"
  7177. type="2" >
  7178. </productMenu>
  7179. <productMenu id="fmradio"
  7180. type="3" >
  7181. </productMenu>
  7182. <productMenu id="deviceSetting"
  7183. type="1"
  7184. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7185. </productMenu>
  7186. <productMenu id="userGuide"
  7187. type="1"
  7188. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  7189. size="660KB" >
  7190. </productMenu>
  7191. <productID id="5434"
  7192. />
  7193. <productGroupable type="0"
  7194. />
  7195. </product>
  7196. <product id="HD50S"
  7197. name="OUTRUSH-R N03"
  7198. series="50"
  7199. latestVersion="2.0"
  7200. show = "0" >
  7201. <productMenu id="protocol"
  7202. type="3" >
  7203. </productMenu>
  7204. <productMenu id="sip"
  7205. type="1" >
  7206. </productMenu>
  7207. <productMenu id="bluetoothIntercom"
  7208. type="1" >
  7209. </productMenu>
  7210. <productMenu id="phone"
  7211. type="1" >
  7212. </productMenu>
  7213. <productMenu id="fmradio"
  7214. type="1" >
  7215. </productMenu>
  7216. <productMenu id="deviceSetting"
  7217. type="1"
  7218. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  7219. </productMenu>
  7220. <productMenu id="userGuide"
  7221. type="1"
  7222. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  7223. size="1.14MB" >
  7224. </productMenu>
  7225. <productID id="5441"
  7226. />
  7227. <productGroupable type="0"
  7228. />
  7229. </product>
  7230. <product id="5R"
  7231. name="5R"
  7232. series="5"
  7233. latestVersion="1.0.1"
  7234. show = "1" >
  7235. <productMenu id="protocol"
  7236. type="3" >
  7237. </productMenu>
  7238. <productMenu id="sip"
  7239. type="1" >
  7240. </productMenu>
  7241. <productMenu id="bluetoothIntercom"
  7242. type="1" >
  7243. </productMenu>
  7244. <productMenu id="phone"
  7245. type="1" >
  7246. </productMenu>
  7247. <productMenu id="fmradio"
  7248. type="1" >
  7249. </productMenu>
  7250. <productMenu id="deviceSetting"
  7251. type="1"
  7252. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7253. </productMenu>
  7254. <productMenu id="quickGuide"
  7255. type="0"
  7256. url=""
  7257. size="934KB" >
  7258. </productMenu>
  7259. <productMenu id="userGuide"
  7260. type="1"
  7261. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  7262. size="1.14MB" >
  7263. </productMenu>
  7264. <productMenu id="connectGuide"
  7265. type="1"
  7266. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7267. size="1.12MB" >
  7268. </productMenu>
  7269. <productID id="5591"
  7270. />
  7271. <productGroupable type="0"
  7272. />
  7273. </product>
  7274. <product id="5R"
  7275. name="5R LITE"
  7276. series="5"
  7277. latestVersion="1.0.1"
  7278. show = "1" >
  7279. <productMenu id="protocol"
  7280. type="3" >
  7281. </productMenu>
  7282. <productMenu id="sip"
  7283. type="1" >
  7284. </productMenu>
  7285. <productMenu id="bluetoothIntercom"
  7286. type="1" >
  7287. </productMenu>
  7288. <productMenu id="phone"
  7289. type="1" >
  7290. </productMenu>
  7291. <productMenu id="fmradio"
  7292. type="1" >
  7293. </productMenu>
  7294. <productMenu id="deviceSetting"
  7295. type="1"
  7296. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7297. </productMenu>
  7298. <productMenu id="quickGuide"
  7299. type="0"
  7300. url=""
  7301. size="934KB" >
  7302. </productMenu>
  7303. <productMenu id="userGuide"
  7304. type="1"
  7305. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7306. size="1.14MB" >
  7307. </productMenu>
  7308. <productMenu id="connectGuide"
  7309. type="1"
  7310. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  7311. size="1.12MB" >
  7312. </productMenu>
  7313. <productID id="5592"
  7314. />
  7315. <productGroupable type="0"
  7316. />
  7317. </product>
  7318. <product id="50RLE"
  7319. name="50R LE"
  7320. series="50"
  7321. latestVersion="1.1"
  7322. show = "0" >
  7323. <productMenu id="protocol"
  7324. type="2" >
  7325. </productMenu>
  7326. <productMenu id="alexa"
  7327. type="0" >
  7328. </productMenu>
  7329. <productMenu id="sip"
  7330. type="1" >
  7331. </productMenu>
  7332. <productMenu id="meshIntercom"
  7333. type="30" >
  7334. </productMenu>
  7335. <productMenu id="meshIntercom+"
  7336. type="3"
  7337. url="2" >
  7338. <productMenuType version="1.0.9"
  7339. type="2"
  7340. />
  7341. </productMenu>
  7342. <productMenu id="waveIntercom"
  7343. type="1" >
  7344. <productMenuType version="1.0.9"
  7345. type="0"
  7346. />
  7347. </productMenu>
  7348. <productMenu id="bluetoothIntercom"
  7349. type="1" >
  7350. </productMenu>
  7351. <productMenu id="phone"
  7352. type="1" >
  7353. </productMenu>
  7354. <productMenu id="music"
  7355. type="1" >
  7356. </productMenu>
  7357. <productMenu id="fmradio"
  7358. type="0" >
  7359. </productMenu>
  7360. <productMenu id="deviceSetting"
  7361. type="1"
  7362. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  7363. <productMenuURL version="1.0.9"
  7364. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  7365. />
  7366. </productMenu>
  7367. <productMenu id="quickGuide"
  7368. type="0"
  7369. url=""
  7370. size="344KB" >
  7371. </productMenu>
  7372. <productMenu id="userGuide"
  7373. type="0"
  7374. url=""
  7375. size="3.41MB" >
  7376. </productMenu>
  7377. <productMenu id="volume"
  7378. type="11" >
  7379. </productMenu>
  7380. <productMenu id="battery"
  7381. type="1" >
  7382. </productMenu>
  7383. <productID id="3223"
  7384. />
  7385. <productGroupable type="0"
  7386. />
  7387. </product>
  7388. <product id="5RLOUIS"
  7389. name="5R LOUIS EDITION"
  7390. series="5"
  7391. latestVersion="1.0"
  7392. show = "-1" >
  7393. <productMenu id="protocol"
  7394. type="3" >
  7395. </productMenu>
  7396. <productMenu id="sip"
  7397. type="1" >
  7398. </productMenu>
  7399. <productMenu id="bluetoothIntercom"
  7400. type="1" >
  7401. </productMenu>
  7402. <productMenu id="phone"
  7403. type="1" >
  7404. </productMenu>
  7405. <productMenu id="fmradio"
  7406. type="1" >
  7407. </productMenu>
  7408. <productMenu id="deviceSetting"
  7409. type="1"
  7410. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7411. </productMenu>
  7412. <productMenu id="quickGuide"
  7413. type="0"
  7414. url=""
  7415. size="934KB" >
  7416. </productMenu>
  7417. <productMenu id="userGuide"
  7418. type="0"
  7419. url=""
  7420. size="1.14MB" >
  7421. </productMenu>
  7422. <productID id="5597"
  7423. />
  7424. <productGroupable type="0"
  7425. />
  7426. </product>
  7427. <product id="5S"
  7428. name="Ridekont 5S"
  7429. series="5"
  7430. latestVersion="2.3"
  7431. show = "-1" >
  7432. <productMenu id="protocol"
  7433. type="3" >
  7434. </productMenu>
  7435. <productMenu id="sip"
  7436. type="1" >
  7437. </productMenu>
  7438. <productMenu id="bluetoothIntercom"
  7439. type="1" >
  7440. </productMenu>
  7441. <productMenu id="phone"
  7442. type="1" >
  7443. </productMenu>
  7444. <productMenu id="fmradio"
  7445. type="0" >
  7446. </productMenu>
  7447. <productMenu id="deviceSetting"
  7448. type="1"
  7449. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7450. </productMenu>
  7451. <productMenu id="quickGuide"
  7452. type="0"
  7453. url=""
  7454. size="934KB" >
  7455. </productMenu>
  7456. <productMenu id="userGuide"
  7457. type="1"
  7458. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  7459. size="1.14MB" >
  7460. </productMenu>
  7461. <productID id="5589"
  7462. />
  7463. <productGroupable type="0"
  7464. />
  7465. </product>
  7466. <product id="5R"
  7467. name="Ridekont 5R"
  7468. series="5"
  7469. latestVersion="1.0"
  7470. show = "0" >
  7471. <productMenu id="protocol"
  7472. type="3" >
  7473. </productMenu>
  7474. <productMenu id="sip"
  7475. type="1" >
  7476. </productMenu>
  7477. <productMenu id="bluetoothIntercom"
  7478. type="1" >
  7479. </productMenu>
  7480. <productMenu id="phone"
  7481. type="1" >
  7482. </productMenu>
  7483. <productMenu id="fmradio"
  7484. type="1" >
  7485. </productMenu>
  7486. <productMenu id="deviceSetting"
  7487. type="1"
  7488. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7489. </productMenu>
  7490. <productMenu id="quickGuide"
  7491. type="1"
  7492. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  7493. size="934KB" >
  7494. </productMenu>
  7495. <productMenu id="userGuide"
  7496. type="1"
  7497. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  7498. size="1.14MB" >
  7499. </productMenu>
  7500. <productID id="5593"
  7501. />
  7502. <productGroupable type="0"
  7503. />
  7504. </product>
  7505. <product id="5R"
  7506. name="Ridekont 5R LITE"
  7507. series="5"
  7508. latestVersion="1.0"
  7509. show = "0" >
  7510. <productMenu id="protocol"
  7511. type="3" >
  7512. </productMenu>
  7513. <productMenu id="sip"
  7514. type="1" >
  7515. </productMenu>
  7516. <productMenu id="bluetoothIntercom"
  7517. type="1" >
  7518. </productMenu>
  7519. <productMenu id="phone"
  7520. type="1" >
  7521. </productMenu>
  7522. <productMenu id="fmradio"
  7523. type="1" >
  7524. </productMenu>
  7525. <productMenu id="deviceSetting"
  7526. type="1"
  7527. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7528. </productMenu>
  7529. <productMenu id="quickGuide"
  7530. type="0"
  7531. url=""
  7532. size="934KB" >
  7533. </productMenu>
  7534. <productMenu id="userGuide"
  7535. type="1"
  7536. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7537. size="1.14MB" >
  7538. </productMenu>
  7539. <productID id="5594"
  7540. />
  7541. <productGroupable type="0"
  7542. />
  7543. </product>
  7544. <product id="C30"
  7545. name="SENA C30"
  7546. series="C"
  7547. latestVersion="1.1.3"
  7548. latestVersionVoicePrompt="0.11"
  7549. show = "1" >
  7550. <productMenu id="protocol"
  7551. type="2" >
  7552. </productMenu>
  7553. <productMenu id="alexa"
  7554. type="0" >
  7555. </productMenu>
  7556. <productMenu id="ota"
  7557. type="2" >
  7558. <otaPackages>
  7559. <package
  7560. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  7561. size="3144148"
  7562. />
  7563. </otaPackages>
  7564. </productMenu>
  7565. <productMenu id="wa"
  7566. type="0" >
  7567. </productMenu>
  7568. <productMenu id="meshIntercom"
  7569. type="30" >
  7570. </productMenu>
  7571. <productMenu id="meshIntercom+"
  7572. type="3"
  7573. url="2" >
  7574. <productMenuType version="1.0.9"
  7575. type="2"
  7576. />
  7577. </productMenu>
  7578. <productMenu id="phone"
  7579. type="1" >
  7580. </productMenu>
  7581. <productMenu id="music"
  7582. type="1" >
  7583. </productMenu>
  7584. <productMenu id="musicSharing"
  7585. type="0" >
  7586. </productMenu>
  7587. <productMenu id="deviceSetting"
  7588. type="1"
  7589. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  7590. <productMenuURL version="1.0.9"
  7591. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  7592. />
  7593. </productMenu>
  7594. <productMenu id="quickGuide"
  7595. type="1"
  7596. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  7597. size="1.12MB" >
  7598. </productMenu>
  7599. <productMenu id="userGuide"
  7600. type="0"
  7601. url=""
  7602. size="2.0MB" >
  7603. </productMenu>
  7604. <productMenu id="videoGuide"
  7605. type="0"
  7606. url=""
  7607. size="3.41MB" >
  7608. </productMenu>
  7609. <productMenu id="volume"
  7610. type="12" >
  7611. </productMenu>
  7612. <productMenu id="battery"
  7613. type="1" >
  7614. </productMenu>
  7615. <productID id="683A"
  7616. />
  7617. <productGroupable type="0"
  7618. />
  7619. </product>
  7620. <product id="C20"
  7621. name="C20"
  7622. series="5"
  7623. latestVersion="1.0"
  7624. show = "0" >
  7625. <productMenu id="protocol"
  7626. type="3" >
  7627. </productMenu>
  7628. <productMenu id="sip"
  7629. type="1" >
  7630. </productMenu>
  7631. <productMenu id="bluetoothIntercom"
  7632. type="1" >
  7633. </productMenu>
  7634. <productMenu id="phone"
  7635. type="1" >
  7636. </productMenu>
  7637. <productMenu id="deviceSetting"
  7638. type="1"
  7639. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  7640. </productMenu>
  7641. <productMenu id="quickGuide"
  7642. type="1"
  7643. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  7644. size="934KB" >
  7645. </productMenu>
  7646. <productMenu id="userGuide"
  7647. type="1"
  7648. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  7649. size="1.14MB" >
  7650. </productMenu>
  7651. <productID id="3701"
  7652. />
  7653. <productGroupable type="0"
  7654. />
  7655. </product>
  7656. <product id="C10"
  7657. name="C10"
  7658. series="5"
  7659. latestVersion="1.4.1"
  7660. show = "0" >
  7661. <productMenu id="protocol"
  7662. type="3" >
  7663. </productMenu>
  7664. <productMenu id="sip"
  7665. type="1" >
  7666. </productMenu>
  7667. <productMenu id="bluetoothIntercom"
  7668. type="1" >
  7669. </productMenu>
  7670. <productMenu id="phone"
  7671. type="1" >
  7672. </productMenu>
  7673. <productMenu id="fmradio"
  7674. type="0" >
  7675. </productMenu>
  7676. <productMenu id="deviceSetting"
  7677. type="1"
  7678. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7679. </productMenu>
  7680. <productMenu id="userGuide"
  7681. type="1"
  7682. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  7683. size="1.14MB" >
  7684. </productMenu>
  7685. <productID id="5595"
  7686. />
  7687. <productGroupable type="0"
  7688. />
  7689. </product>
  7690. <product id="J30"
  7691. name="J30"
  7692. series="J"
  7693. latestVersion="1.2"
  7694. latestVersionVoicePrompt="0.13"
  7695. show = "0" >
  7696. <productMenu id="protocol"
  7697. type="2" >
  7698. </productMenu>
  7699. <productMenu id="alexa"
  7700. type="0" >
  7701. </productMenu>
  7702. <productMenu id="ota"
  7703. type="2" >
  7704. <otaPackages>
  7705. <package
  7706. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  7707. size="3144148"
  7708. />
  7709. </otaPackages>
  7710. </productMenu>
  7711. <productMenu id="wa"
  7712. type="0" >
  7713. </productMenu>
  7714. <productMenu id="meshIntercom"
  7715. type="30" >
  7716. </productMenu>
  7717. <productMenu id="meshIntercom+"
  7718. type="3"
  7719. url="2" >
  7720. <productMenuType version="1.0.9"
  7721. type="2"
  7722. />
  7723. </productMenu>
  7724. <productMenu id="waveIntercom"
  7725. type="1" >
  7726. <productMenuType version="1.1.9"
  7727. type="0"
  7728. />
  7729. </productMenu>
  7730. <productMenu id="phone"
  7731. type="1" >
  7732. </productMenu>
  7733. <productMenu id="music"
  7734. type="1" >
  7735. </productMenu>
  7736. <productMenu id="musicSharing"
  7737. type="0" >
  7738. </productMenu>
  7739. <productMenu id="deviceSetting"
  7740. type="1"
  7741. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  7742. <productMenuURL version="1.0.9"
  7743. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  7744. />
  7745. </productMenu>
  7746. <productMenu id="quickGuide"
  7747. type="0"
  7748. url=""
  7749. size="1.12MB" >
  7750. </productMenu>
  7751. <productMenu id="userGuide"
  7752. type="1"
  7753. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  7754. size="2.0MB" >
  7755. </productMenu>
  7756. <productMenu id="videoGuide"
  7757. type="0"
  7758. url=""
  7759. size="3.41MB" >
  7760. </productMenu>
  7761. <productMenu id="volume"
  7762. type="12" >
  7763. </productMenu>
  7764. <productMenu id="battery"
  7765. type="1" >
  7766. </productMenu>
  7767. <productID id="6848"
  7768. />
  7769. <productGroupable type="0"
  7770. />
  7771. </product>
  7772. <product id="J10"
  7773. name="J10"
  7774. series="5"
  7775. latestVersion="1.1.1"
  7776. show = "0" >
  7777. <productMenu id="protocol"
  7778. type="3" >
  7779. </productMenu>
  7780. <productMenu id="sip"
  7781. type="1" >
  7782. </productMenu>
  7783. <productMenu id="bluetoothIntercom"
  7784. type="1" >
  7785. </productMenu>
  7786. <productMenu id="phone"
  7787. type="1" >
  7788. </productMenu>
  7789. <productMenu id="fmradio"
  7790. type="0" >
  7791. </productMenu>
  7792. <productMenu id="deviceSetting"
  7793. type="1"
  7794. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7795. </productMenu>
  7796. <productMenu id="userGuide"
  7797. type="1"
  7798. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  7799. size="1.14MB" >
  7800. </productMenu>
  7801. <productID id="5598"
  7802. />
  7803. <productGroupable type="0"
  7804. />
  7805. </product>
  7806. <product id="B20"
  7807. name="B20"
  7808. series="B"
  7809. latestVersion="1.1"
  7810. latestVersionVoicePrompt="0.13"
  7811. show = "0" >
  7812. <productMenu id="protocol"
  7813. type="2" >
  7814. </productMenu>
  7815. <productMenu id="alexa"
  7816. type="0" >
  7817. </productMenu>
  7818. <productMenu id="ota"
  7819. type="2" >
  7820. <otaPackages>
  7821. <package
  7822. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  7823. size="3144148"
  7824. />
  7825. </otaPackages>
  7826. </productMenu>
  7827. <productMenu id="wa"
  7828. type="0" >
  7829. </productMenu>
  7830. <productMenu id="meshIntercom"
  7831. type="30" >
  7832. </productMenu>
  7833. <productMenu id="phone"
  7834. type="1" >
  7835. </productMenu>
  7836. <productMenu id="music"
  7837. type="1" >
  7838. </productMenu>
  7839. <productMenu id="musicSharing"
  7840. type="0" >
  7841. </productMenu>
  7842. <productMenu id="deviceSetting"
  7843. type="1"
  7844. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  7845. <productMenuURL version="1.0.9"
  7846. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  7847. />
  7848. </productMenu>
  7849. <productMenu id="quickGuide"
  7850. type="0"
  7851. url=""
  7852. size="1.12MB" >
  7853. </productMenu>
  7854. <productMenu id="userGuide"
  7855. type="1"
  7856. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  7857. size="2.0MB" >
  7858. </productMenu>
  7859. <productMenu id="videoGuide"
  7860. type="0"
  7861. url=""
  7862. size="3.41MB" >
  7863. </productMenu>
  7864. <productMenu id="volume"
  7865. type="12" >
  7866. </productMenu>
  7867. <productMenu id="battery"
  7868. type="1" >
  7869. </productMenu>
  7870. <productID id="6847"
  7871. />
  7872. <productGroupable type="0"
  7873. />
  7874. </product>
  7875. <product id="B10"
  7876. name="B10"
  7877. series="5"
  7878. latestVersion="1.2.1"
  7879. show = "0" >
  7880. <productMenu id="protocol"
  7881. type="3" >
  7882. </productMenu>
  7883. <productMenu id="sip"
  7884. type="1" >
  7885. </productMenu>
  7886. <productMenu id="bluetoothIntercom"
  7887. type="1" >
  7888. </productMenu>
  7889. <productMenu id="phone"
  7890. type="1" >
  7891. </productMenu>
  7892. <productMenu id="fmradio"
  7893. type="0" >
  7894. </productMenu>
  7895. <productMenu id="deviceSetting"
  7896. type="1"
  7897. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  7898. </productMenu>
  7899. <productMenu id="userGuide"
  7900. type="1"
  7901. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  7902. size="1.14MB" >
  7903. </productMenu>
  7904. <productID id="5596"
  7905. />
  7906. <productGroupable type="0"
  7907. />
  7908. </product>
  7909. <product id="E30"
  7910. name="E30"
  7911. series="E"
  7912. latestVersion="1.0.1"
  7913. latestVersionVoicePrompt="0.12"
  7914. show = "0" >
  7915. <productMenu id="protocol"
  7916. type="2" >
  7917. </productMenu>
  7918. <productMenu id="alexa"
  7919. type="0" >
  7920. </productMenu>
  7921. <productMenu id="ota"
  7922. type="2" >
  7923. <otaPackages>
  7924. <package
  7925. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.0.1-build0.img"
  7926. size="3144148"
  7927. />
  7928. </otaPackages>
  7929. </productMenu>
  7930. <productMenu id="wa"
  7931. type="0" >
  7932. </productMenu>
  7933. <productMenu id="meshIntercom"
  7934. type="30" >
  7935. </productMenu>
  7936. <productMenu id="meshIntercom+"
  7937. type="3"
  7938. url="2" >
  7939. </productMenu>
  7940. <productMenu id="waveIntercom"
  7941. type="1" >
  7942. <productMenuType version="1.0.9"
  7943. type="0"
  7944. />
  7945. </productMenu>
  7946. <productMenu id="phone"
  7947. type="1" >
  7948. </productMenu>
  7949. <productMenu id="music"
  7950. type="1" >
  7951. </productMenu>
  7952. <productMenu id="musicSharing"
  7953. type="0" >
  7954. </productMenu>
  7955. <productMenu id="deviceSetting"
  7956. type="1"
  7957. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  7958. </productMenu>
  7959. <productMenu id="quickGuide"
  7960. type="0"
  7961. url=""
  7962. size="1.12MB" >
  7963. </productMenu>
  7964. <productMenu id="userGuide"
  7965. type="1"
  7966. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  7967. size="2.0MB" >
  7968. </productMenu>
  7969. <productMenu id="videoGuide"
  7970. type="0"
  7971. url=""
  7972. size="3.41MB" >
  7973. </productMenu>
  7974. <productMenu id="volume"
  7975. type="12" >
  7976. </productMenu>
  7977. <productMenu id="battery"
  7978. type="1" >
  7979. </productMenu>
  7980. <productID id="6846"
  7981. />
  7982. <productGroupable type="0"
  7983. />
  7984. </product>
  7985. <product id="ACSRAM"
  7986. name="ACS-RAM"
  7987. series="ACS"
  7988. latestVersion="1.0.5"
  7989. show = "1" >
  7990. <productMenu id="protocol"
  7991. type="3" >
  7992. </productMenu>
  7993. <productMenu id="sip"
  7994. type="1" >
  7995. </productMenu>
  7996. <productMenu id="bluetoothIntercom"
  7997. type="1" >
  7998. </productMenu>
  7999. <productMenu id="deviceSetting"
  8000. type="1"
  8001. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  8002. </productMenu>
  8003. <productMenu id="quickGuide"
  8004. type="1"
  8005. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  8006. size="344KB" >
  8007. </productMenu>
  8008. <productMenu id="userGuide"
  8009. type="1"
  8010. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  8011. size="1.14MB" >
  8012. </productMenu>
  8013. <productMenu id="connectGuide"
  8014. type="1"
  8015. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  8016. size="1.12MB" >
  8017. </productMenu>
  8018. <productID id="3400"
  8019. />
  8020. <productGroupable type="0"
  8021. />
  8022. </product>
  8023. <product id="ACS10"
  8024. name="ACS10"
  8025. series="ACS"
  8026. latestVersion="1.0.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="deviceSetting"
  8041. type="1"
  8042. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  8043. </productMenu>
  8044. <productMenu id="quickGuide"
  8045. type="1"
  8046. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  8047. size="970KB" >
  8048. </productMenu>
  8049. <productMenu id="userGuide"
  8050. type="1"
  8051. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  8052. size="1.26MB" >
  8053. </productMenu>
  8054. <productID id="3300"
  8055. />
  8056. <productGroupable type="0"
  8057. />
  8058. </product>
  8059. <product id="DWO7ProMesh"
  8060. name="DWO 7 Pro Mesh"
  8061. series="50"
  8062. latestVersion="1.1"
  8063. latestVersionVoicePrompt="0.9"
  8064. show = "0" >
  8065. <productMenu id="protocol"
  8066. type="2" >
  8067. </productMenu>
  8068. <productMenu id="alexa"
  8069. type="0" >
  8070. </productMenu>
  8071. <productMenu id="ota"
  8072. type="2" >
  8073. <otaPackages>
  8074. <package
  8075. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  8076. size="2945812"
  8077. />
  8078. </otaPackages>
  8079. </productMenu>
  8080. <productMenu id="wa"
  8081. type="0" >
  8082. </productMenu>
  8083. <productMenu id="meshIntercom"
  8084. type="20" >
  8085. </productMenu>
  8086. <productMenu id="meshIntercom+"
  8087. type="3"
  8088. url="2" >
  8089. <productMenuType version="1.0.9"
  8090. type="2"
  8091. />
  8092. <productMenuURL version="2.1.1"
  8093. url="0"
  8094. />
  8095. </productMenu>
  8096. <productMenu id="waveIntercom"
  8097. type="1" >
  8098. <productMenuType version="1.0.9"
  8099. type="0"
  8100. />
  8101. </productMenu>
  8102. <productMenu id="phone"
  8103. type="1" >
  8104. </productMenu>
  8105. <productMenu id="music"
  8106. type="1" >
  8107. </productMenu>
  8108. <productMenu id="fmradio"
  8109. type="1" >
  8110. </productMenu>
  8111. <productMenu id="musicSharing"
  8112. type="0" >
  8113. </productMenu>
  8114. <productMenu id="deviceSetting"
  8115. type="1"
  8116. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  8117. <productMenuURL version="1.0.9"
  8118. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  8119. />
  8120. </productMenu>
  8121. <productMenu id="quickGuide"
  8122. type="1"
  8123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8124. size="1.12MB" >
  8125. </productMenu>
  8126. <productMenu id="userGuide"
  8127. type="1"
  8128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  8129. size="2.0MB" >
  8130. </productMenu>
  8131. <productMenu id="volume"
  8132. type="12" >
  8133. </productMenu>
  8134. <productMenu id="battery"
  8135. type="1" >
  8136. </productMenu>
  8137. <productID id="6806"
  8138. />
  8139. <productGroupable type="0"
  8140. />
  8141. </product>
  8142. <product id="UCOM16R"
  8143. name="U-COM 16R"
  8144. series="UCOM"
  8145. latestVersion="1.0"
  8146. latestVersionMesh="1.0"
  8147. latestVersionVoicePrompt="1.0"
  8148. show = "-1" >
  8149. <productMenu id="protocol"
  8150. type="2" >
  8151. </productMenu>
  8152. <productMenu id="ota"
  8153. type="0" >
  8154. <otaLanguages>
  8155. <otaLanguage
  8156. id="0"
  8157. name="English"
  8158. package="0"
  8159. />
  8160. <otaLanguage
  8161. id="0"
  8162. name="French"
  8163. package="1"
  8164. />
  8165. <otaLanguage
  8166. id="0"
  8167. name="Spanish"
  8168. package="2"
  8169. />
  8170. <otaLanguage
  8171. id="0"
  8172. name="Italian"
  8173. package="3"
  8174. />
  8175. <otaLanguage
  8176. id="0"
  8177. name="German"
  8178. package="4"
  8179. />
  8180. <otaLanguage
  8181. id="0"
  8182. name="Dutch"
  8183. package="5"
  8184. />
  8185. <otaLanguage
  8186. id="0"
  8187. name="Russian"
  8188. package="6"
  8189. />
  8190. <otaLanguage
  8191. id="0"
  8192. name="Chinese"
  8193. package="7"
  8194. />
  8195. <otaLanguage
  8196. id="0"
  8197. name="Korean"
  8198. package="8"
  8199. />
  8200. <otaLanguage
  8201. id="0"
  8202. name="Japanese"
  8203. package="9"
  8204. />
  8205. <otaLanguage
  8206. id="0"
  8207. name="Finnish"
  8208. package="10"
  8209. />
  8210. </otaLanguages>
  8211. <otaPackages>
  8212. <package
  8213. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  8214. size="5183988"
  8215. />
  8216. <package
  8217. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  8218. size="5183988"
  8219. />
  8220. <package
  8221. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  8222. size="5183988"
  8223. />
  8224. <package
  8225. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  8226. size="5183988"
  8227. />
  8228. <package
  8229. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  8230. size="5183988"
  8231. />
  8232. <package
  8233. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  8234. size="5183988"
  8235. />
  8236. <package
  8237. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  8238. size="5183988"
  8239. />
  8240. <package
  8241. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  8242. size="5183988"
  8243. />
  8244. <package
  8245. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  8246. size="5183988"
  8247. />
  8248. <package
  8249. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  8250. size="5183988"
  8251. />
  8252. <package
  8253. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  8254. size="5183988"
  8255. />
  8256. </otaPackages>
  8257. </productMenu>
  8258. <productMenu id="wa"
  8259. type="0" >
  8260. </productMenu>
  8261. <productMenu id="sip"
  8262. type="1" >
  8263. </productMenu>
  8264. <productMenu id="led"
  8265. type="0" >
  8266. </productMenu>
  8267. <productMenu id="illusion"
  8268. type="1" >
  8269. </productMenu>
  8270. <productMenu id="meshIntercom"
  8271. type="30" >
  8272. </productMenu>
  8273. <productMenu id="meshIntercom+"
  8274. type="3"
  8275. url="2" >
  8276. </productMenu>
  8277. <productMenu id="waveIntercom"
  8278. type="0" >
  8279. </productMenu>
  8280. <productMenu id="bluetoothIntercom"
  8281. type="1" >
  8282. </productMenu>
  8283. <productMenu id="bluetoothIntercomGrouping"
  8284. type="0" >
  8285. </productMenu>
  8286. <productMenu id="fmradio"
  8287. type="1"
  8288. url="1" >
  8289. </productMenu>
  8290. <productMenu id="phone"
  8291. type="1" >
  8292. </productMenu>
  8293. <productMenu id="music"
  8294. type="1" >
  8295. </productMenu>
  8296. <productMenu id="musicSharing"
  8297. type="0" >
  8298. </productMenu>
  8299. <productMenu id="deviceSetting"
  8300. type="1"
  8301. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  8302. </productMenu>
  8303. <productMenu id="quickGuide"
  8304. type="0"
  8305. url=""
  8306. size="1.12MB" >
  8307. </productMenu>
  8308. <productMenu id="userGuide"
  8309. type="1"
  8310. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  8311. size="2.0MB" >
  8312. </productMenu>
  8313. <productMenu id="videoGuide"
  8314. type="0"
  8315. url=""
  8316. size="3.41MB" >
  8317. </productMenu>
  8318. <productMenu id="volume"
  8319. type="16" >
  8320. </productMenu>
  8321. <productMenu id="soundMode"
  8322. type="1" >
  8323. </productMenu>
  8324. <productMenu id="battery"
  8325. type="1" >
  8326. </productMenu>
  8327. <productID id="6A83"
  8328. />
  8329. <productGroupable type="0"
  8330. />
  8331. </product>
  8332. <product id="MeshStation"
  8333. name="Mesh Station"
  8334. series="50"
  8335. latestVersion="0.9"
  8336. show = "-1" >
  8337. <productMenu id="protocol"
  8338. type="2" >
  8339. </productMenu>
  8340. <productMenu id="meshIntercom"
  8341. type="20"
  8342. url="99" >
  8343. </productMenu>
  8344. <productID id="3161"
  8345. />
  8346. <productGroupable type="0"
  8347. />
  8348. </product>
  8349. </products>
  8350. </sna>