You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7-online.xml 123KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768
  1. <OpenViBE-Scenario>
  2. <FormatVersion>2</FormatVersion>
  3. <Creator>OpenViBE Designer</Creator>
  4. <CreatorVersion>3.0.0</CreatorVersion>
  5. <Settings>
  6. <Setting>
  7. <Identifier>(0x003874e6, 0x80815878)</Identifier>
  8. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  9. <Name>Scripts Path</Name>
  10. <DefaultValue>${Player_ScenarioDirectory}/scripts</DefaultValue>
  11. <Value>${Player_ScenarioDirectory}/scripts</Value>
  12. </Setting>
  13. <Setting>
  14. <Identifier>(0x00528432, 0x6820e824)</Identifier>
  15. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  16. <Name>Signals Path</Name>
  17. <DefaultValue>${Player_ScenarioDirectory}/signals</DefaultValue>
  18. <Value>${Player_ScenarioDirectory}/signals</Value>
  19. </Setting>
  20. <Setting>
  21. <Identifier>(0x3f182df9, 0x22c4c9c0)</Identifier>
  22. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  23. <Name>XP Name</Name>
  24. <DefaultValue>XP</DefaultValue>
  25. <Value>XP</Value>
  26. </Setting>
  27. <Setting>
  28. <Identifier>(0xe14caa24, 0xdc225d56)</Identifier>
  29. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  30. <Name>Subject ID</Name>
  31. <DefaultValue>C1</DefaultValue>
  32. <Value>C1</Value>
  33. </Setting>
  34. <Setting>
  35. <Identifier>(0x61bf58c5, 0x162b5621)</Identifier>
  36. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  37. <Name>Session</Name>
  38. <DefaultValue>1</DefaultValue>
  39. <Value>1</Value>
  40. </Setting>
  41. <Setting>
  42. <Identifier>(0x79b2ce5c, 0xc8b8683e)</Identifier>
  43. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  44. <Name>Run</Name>
  45. <DefaultValue>1</DefaultValue>
  46. <Value>1</Value>
  47. </Setting>
  48. <Setting>
  49. <Identifier>(0xf52b5245, 0x1cff173c)</Identifier>
  50. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  51. <Name>File Suffix</Name>
  52. <DefaultValue>$var{XP Name}_$var{Subject ID}_S$var{Session}</DefaultValue>
  53. <Value>$var{XP Name}_$var{Subject ID}_S$var{Session}</Value>
  54. </Setting>
  55. <Setting>
  56. <Identifier>(0xf4af759e, 0x556343c3)</Identifier>
  57. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  58. <Name>File Prefix</Name>
  59. <DefaultValue>$var{XP Name}_$var{Subject ID}_S$var{Session}_R$var{Run}</DefaultValue>
  60. <Value>$var{XP Name}_$var{Subject ID}_S$var{Session}_R$var{Run}</Value>
  61. </Setting>
  62. <Setting>
  63. <Identifier>(0x6baa1bbc, 0x80852e64)</Identifier>
  64. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  65. <Name>Epoch Duration</Name>
  66. <DefaultValue>4</DefaultValue>
  67. <Value>1</Value>
  68. </Setting>
  69. <Setting>
  70. <Identifier>(0xb7d4e27f, 0x5a0d2f94)</Identifier>
  71. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  72. <Name>Epoch Offset</Name>
  73. <DefaultValue>0.5</DefaultValue>
  74. <Value>0.062500</Value>
  75. </Setting>
  76. </Settings>
  77. <Inputs></Inputs>
  78. <Outputs></Outputs>
  79. <Boxes>
  80. <Box>
  81. <Identifier>(0x00000410, 0x0000196a)</Identifier>
  82. <Name>Feature ov</Name>
  83. <AlgorithmClassIdentifier>(0x09c92218, 0x7c1216f8)</AlgorithmClassIdentifier>
  84. <Inputs>
  85. <Input>
  86. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  87. <Name>Input Signal</Name>
  88. </Input>
  89. </Inputs>
  90. <Settings>
  91. <Setting>
  92. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  93. <Name>Filename</Name>
  94. <DefaultValue>record-[$core{date}-$core{time}].ov</DefaultValue>
  95. <Value>$var{Signals Path}/$var{File Prefix}_online_features-[$core{date}-$core{time}].ov</Value>
  96. <Modifiability>false</Modifiability>
  97. </Setting>
  98. <Setting>
  99. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  100. <Name>Use compression</Name>
  101. <DefaultValue>false</DefaultValue>
  102. <Value>false</Value>
  103. <Modifiability>false</Modifiability>
  104. </Setting>
  105. </Settings>
  106. <Attributes>
  107. <Attribute>
  108. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  109. <Value>528</Value>
  110. </Attribute>
  111. <Attribute>
  112. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  113. <Value>752</Value>
  114. </Attribute>
  115. <Attribute>
  116. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  117. <Value>(0x89a08108, 0xc8d1fac1)</Value>
  118. </Attribute>
  119. <Attribute>
  120. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  121. <Value></Value>
  122. </Attribute>
  123. <Attribute>
  124. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  125. <Value>2</Value>
  126. </Attribute>
  127. <Attribute>
  128. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  129. <Value>1</Value>
  130. </Attribute>
  131. <Attribute>
  132. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  133. <Value></Value>
  134. </Attribute>
  135. </Attributes>
  136. </Box>
  137. <Box>
  138. <Identifier>(0x00000f21, 0x00006f70)</Identifier>
  139. <Name>Sound Player</Name>
  140. <AlgorithmClassIdentifier>(0x7ac2396f, 0x7ee52efe)</AlgorithmClassIdentifier>
  141. <Inputs>
  142. <Input>
  143. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  144. <Name>Input triggers</Name>
  145. </Input>
  146. </Inputs>
  147. <Outputs>
  148. <Output>
  149. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  150. <Name>Resync triggers</Name>
  151. </Output>
  152. </Outputs>
  153. <Settings>
  154. <Setting>
  155. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  156. <Name>PLAY trigger</Name>
  157. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  158. <Value>OVTK_StimulationId_Beep</Value>
  159. <Modifiability>false</Modifiability>
  160. </Setting>
  161. <Setting>
  162. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  163. <Name>STOP trigger</Name>
  164. <DefaultValue>OVTK_StimulationId_Label_01</DefaultValue>
  165. <Value>OVTK_StimulationId_BaselineStop</Value>
  166. <Modifiability>false</Modifiability>
  167. </Setting>
  168. <Setting>
  169. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  170. <Name>File to play</Name>
  171. <DefaultValue>${Path_Data}/plugins/stimulation/ov_beep.wav</DefaultValue>
  172. <Value>${Path_Data}/plugins/stimulation/ov_beep.wav</Value>
  173. <Modifiability>false</Modifiability>
  174. </Setting>
  175. <Setting>
  176. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  177. <Name>Loop</Name>
  178. <DefaultValue>False</DefaultValue>
  179. <Value>false</Value>
  180. <Modifiability>false</Modifiability>
  181. </Setting>
  182. </Settings>
  183. <Attributes>
  184. <Attribute>
  185. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  186. <Value>624</Value>
  187. </Attribute>
  188. <Attribute>
  189. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  190. <Value>1088</Value>
  191. </Attribute>
  192. <Attribute>
  193. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  194. <Value>(0xd327e20a, 0xaae6b1f8)</Value>
  195. </Attribute>
  196. <Attribute>
  197. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  198. <Value>(0x00000000, 0x005adaef)</Value>
  199. </Attribute>
  200. <Attribute>
  201. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  202. <Value>false</Value>
  203. </Attribute>
  204. <Attribute>
  205. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  206. <Value>1</Value>
  207. </Attribute>
  208. <Attribute>
  209. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  210. <Value>4</Value>
  211. </Attribute>
  212. <Attribute>
  213. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  214. <Value>1</Value>
  215. </Attribute>
  216. </Attributes>
  217. </Box>
  218. <Box>
  219. <Identifier>(0x0000141c, 0x00003c43)</Identifier>
  220. <Name>Identity</Name>
  221. <AlgorithmClassIdentifier>(0x5dffe431, 0x35215c50)</AlgorithmClassIdentifier>
  222. <Inputs>
  223. <Input>
  224. <TypeIdentifier>(0x403488e7, 0x565d70b6)</TypeIdentifier>
  225. <Name>Input stream</Name>
  226. </Input>
  227. </Inputs>
  228. <Outputs>
  229. <Output>
  230. <TypeIdentifier>(0x403488e7, 0x565d70b6)</TypeIdentifier>
  231. <Name>Output stream</Name>
  232. </Output>
  233. </Outputs>
  234. <Attributes>
  235. <Attribute>
  236. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  237. <Value></Value>
  238. </Attribute>
  239. <Attribute>
  240. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  241. <Value>-368</Value>
  242. </Attribute>
  243. <Attribute>
  244. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  245. <Value>720</Value>
  246. </Attribute>
  247. <Attribute>
  248. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  249. <Value></Value>
  250. </Attribute>
  251. <Attribute>
  252. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  253. <Value>(0xa8ffe2a3, 0x27038f03)</Value>
  254. </Attribute>
  255. <Attribute>
  256. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  257. <Value></Value>
  258. </Attribute>
  259. <Attribute>
  260. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  261. <Value>1</Value>
  262. </Attribute>
  263. <Attribute>
  264. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  265. <Value>1</Value>
  266. </Attribute>
  267. <Attribute>
  268. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  269. <Value></Value>
  270. </Attribute>
  271. </Attributes>
  272. </Box>
  273. <Box>
  274. <Identifier>(0x00001881, 0x0000648e)</Identifier>
  275. <Name>Raw OV</Name>
  276. <AlgorithmClassIdentifier>(0x09c92218, 0x7c1216f8)</AlgorithmClassIdentifier>
  277. <Inputs>
  278. <Input>
  279. <TypeIdentifier>(0x403488e7, 0x565d70b6)</TypeIdentifier>
  280. <Name>Input stream 1</Name>
  281. </Input>
  282. <Input>
  283. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  284. <Name>Input stream 2</Name>
  285. </Input>
  286. <Input>
  287. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  288. <Name>Input stream 3</Name>
  289. </Input>
  290. </Inputs>
  291. <Settings>
  292. <Setting>
  293. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  294. <Name>Filename</Name>
  295. <DefaultValue></DefaultValue>
  296. <Value>$var{Signals Path}/$var{File Prefix}_raw-[$core{date}-$core{time}].ov</Value>
  297. <Modifiability>false</Modifiability>
  298. </Setting>
  299. <Setting>
  300. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  301. <Name>Use compression</Name>
  302. <DefaultValue>true</DefaultValue>
  303. <Value>false</Value>
  304. <Modifiability>false</Modifiability>
  305. </Setting>
  306. </Settings>
  307. <Attributes>
  308. <Attribute>
  309. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  310. <Value>-256</Value>
  311. </Attribute>
  312. <Attribute>
  313. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  314. <Value>656</Value>
  315. </Attribute>
  316. <Attribute>
  317. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  318. <Value>(0x89a08108, 0xc8d1fac1)</Value>
  319. </Attribute>
  320. <Attribute>
  321. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  322. <Value></Value>
  323. </Attribute>
  324. <Attribute>
  325. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  326. <Value>(0x00000000, 0x004f9ed7)</Value>
  327. </Attribute>
  328. <Attribute>
  329. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  330. <Value></Value>
  331. </Attribute>
  332. </Attributes>
  333. </Box>
  334. <Box>
  335. <Identifier>(0x00002847, 0x00000a63)</Identifier>
  336. <Name>Channel Rename</Name>
  337. <AlgorithmClassIdentifier>(0x1fe50479, 0x39040f40)</AlgorithmClassIdentifier>
  338. <Inputs>
  339. <Input>
  340. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  341. <Name>Input matrix</Name>
  342. </Input>
  343. </Inputs>
  344. <Outputs>
  345. <Output>
  346. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  347. <Name>Output matrix</Name>
  348. </Output>
  349. </Outputs>
  350. <Settings>
  351. <Setting>
  352. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  353. <Name>New channel names</Name>
  354. <DefaultValue>Channel 1;Channel 2</DefaultValue>
  355. <Value>Channel 1;Channel 2</Value>
  356. <Modifiability>false</Modifiability>
  357. </Setting>
  358. </Settings>
  359. <Attributes>
  360. <Attribute>
  361. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  362. <Value>-432</Value>
  363. </Attribute>
  364. <Attribute>
  365. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  366. <Value>976</Value>
  367. </Attribute>
  368. <Attribute>
  369. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  370. <Value></Value>
  371. </Attribute>
  372. <Attribute>
  373. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  374. <Value>(0x74d8d30c, 0xfa7bdf43)</Value>
  375. </Attribute>
  376. <Attribute>
  377. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  378. <Value></Value>
  379. </Attribute>
  380. <Attribute>
  381. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  382. <Value>$var{Scripts Path}/channel-list.xml</Value>
  383. </Attribute>
  384. <Attribute>
  385. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  386. <Value>1</Value>
  387. </Attribute>
  388. <Attribute>
  389. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  390. <Value>1</Value>
  391. </Attribute>
  392. <Attribute>
  393. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  394. <Value>1</Value>
  395. </Attribute>
  396. </Attributes>
  397. </Box>
  398. <Box>
  399. <Identifier>(0x00002a20, 0x00000cc4)</Identifier>
  400. <Name>Graz Motor Imagery BCI Stimulator</Name>
  401. <AlgorithmClassIdentifier>(0x0b5a2787, 0x02750621)</AlgorithmClassIdentifier>
  402. <Outputs>
  403. <Output>
  404. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  405. <Name>Stimulations</Name>
  406. </Output>
  407. </Outputs>
  408. <Settings>
  409. <Setting>
  410. <TypeIdentifier>(0xb0d0db45, 0x49cbc34a)</TypeIdentifier>
  411. <Name>Lua Script</Name>
  412. <DefaultValue></DefaultValue>
  413. <Value>$var{Scripts Path}/mi-bci-graz-stimulator.lua</Value>
  414. <Modifiability>false</Modifiability>
  415. </Setting>
  416. <Setting>
  417. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  418. <Name>Number of Trials for Each Class</Name>
  419. <DefaultValue>20</DefaultValue>
  420. <Value>20</Value>
  421. <Modifiability>false</Modifiability>
  422. </Setting>
  423. <Setting>
  424. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  425. <Name>First Class</Name>
  426. <DefaultValue>OVTK_GDF_Left</DefaultValue>
  427. <Value>OVTK_GDF_Left</Value>
  428. <Modifiability>false</Modifiability>
  429. </Setting>
  430. <Setting>
  431. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  432. <Name>Second Class</Name>
  433. <DefaultValue>OVTK_GDF_Right</DefaultValue>
  434. <Value>OVTK_GDF_Right</Value>
  435. <Modifiability>false</Modifiability>
  436. </Setting>
  437. <Setting>
  438. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  439. <Name>Baseline Duration (in sec)</Name>
  440. <DefaultValue>20</DefaultValue>
  441. <Value>1</Value>
  442. <Modifiability>false</Modifiability>
  443. </Setting>
  444. <Setting>
  445. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  446. <Name>Wait For Beep Duration (in sec)</Name>
  447. <DefaultValue>2</DefaultValue>
  448. <Value>2</Value>
  449. <Modifiability>false</Modifiability>
  450. </Setting>
  451. <Setting>
  452. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  453. <Name>Wait For Cue Duration (in sec)</Name>
  454. <DefaultValue>1</DefaultValue>
  455. <Value>1</Value>
  456. <Modifiability>false</Modifiability>
  457. </Setting>
  458. <Setting>
  459. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  460. <Name>Display Cue Duration (in sec)</Name>
  461. <DefaultValue>1.250</DefaultValue>
  462. <Value>1.250</Value>
  463. <Modifiability>false</Modifiability>
  464. </Setting>
  465. <Setting>
  466. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  467. <Name>Feedback Duration (in sec)</Name>
  468. <DefaultValue>3.750</DefaultValue>
  469. <Value>3.750</Value>
  470. <Modifiability>false</Modifiability>
  471. </Setting>
  472. <Setting>
  473. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  474. <Name>End of Trial Minimum Duration (in sec)</Name>
  475. <DefaultValue>1.500</DefaultValue>
  476. <Value>1.500</Value>
  477. <Modifiability>false</Modifiability>
  478. </Setting>
  479. <Setting>
  480. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  481. <Name>End of Trial Maximum Duration (in sec)</Name>
  482. <DefaultValue>3.500</DefaultValue>
  483. <Value>3.500</Value>
  484. <Modifiability>false</Modifiability>
  485. </Setting>
  486. </Settings>
  487. <Attributes>
  488. <Attribute>
  489. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  490. <Value></Value>
  491. </Attribute>
  492. <Attribute>
  493. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  494. <Value>528</Value>
  495. </Attribute>
  496. <Attribute>
  497. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  498. <Value>1152</Value>
  499. </Attribute>
  500. <Attribute>
  501. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  502. <Value>(0xd6e3f48b, 0xbee3523a)</Value>
  503. </Attribute>
  504. <Attribute>
  505. <Identifier>(0x61d11811, 0x71e65362)</Identifier>
  506. <Value></Value>
  507. </Attribute>
  508. <Attribute>
  509. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  510. <Value>(0x00000000, 0x005810d7)</Value>
  511. </Attribute>
  512. <Attribute>
  513. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  514. <Value>1</Value>
  515. </Attribute>
  516. <Attribute>
  517. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  518. <Value>1</Value>
  519. </Attribute>
  520. <Attribute>
  521. <Identifier>(0xf191c1c8, 0xa0123976)</Identifier>
  522. <Value></Value>
  523. </Attribute>
  524. <Attribute>
  525. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  526. <Value></Value>
  527. </Attribute>
  528. </Attributes>
  529. </Box>
  530. <Box>
  531. <Identifier>(0x000040a1, 0x00002f8d)</Identifier>
  532. <Name>Features Selector</Name>
  533. <AlgorithmClassIdentifier>(0xee36249f, 0x22a32e7e)</AlgorithmClassIdentifier>
  534. <Inputs>
  535. <Input>
  536. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  537. <Name>Input</Name>
  538. </Input>
  539. </Inputs>
  540. <Outputs>
  541. <Output>
  542. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  543. <Name>Output</Name>
  544. </Output>
  545. </Outputs>
  546. <Settings>
  547. <Setting>
  548. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  549. <Name>Features List</Name>
  550. <DefaultValue>:</DefaultValue>
  551. <Value>:</Value>
  552. <Modifiability>false</Modifiability>
  553. </Setting>
  554. </Settings>
  555. <Attributes>
  556. <Attribute>
  557. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  558. <Value>464</Value>
  559. </Attribute>
  560. <Attribute>
  561. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  562. <Value>976</Value>
  563. </Attribute>
  564. <Attribute>
  565. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  566. <Value>(0x72567519, 0xdbac3ad5)</Value>
  567. </Attribute>
  568. <Attribute>
  569. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  570. <Value>$var{Scripts Path}/features-selected-$var{File Suffix}.xml</Value>
  571. </Attribute>
  572. <Attribute>
  573. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  574. <Value>1</Value>
  575. </Attribute>
  576. <Attribute>
  577. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  578. <Value>1</Value>
  579. </Attribute>
  580. <Attribute>
  581. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  582. <Value>1</Value>
  583. </Attribute>
  584. </Attributes>
  585. </Box>
  586. <Box>
  587. <Identifier>(0x00004390, 0x000055c5)</Identifier>
  588. <Name>Raw GDF</Name>
  589. <AlgorithmClassIdentifier>(0x1e7b2155, 0x107289ce)</AlgorithmClassIdentifier>
  590. <Inputs>
  591. <Input>
  592. <TypeIdentifier>(0x403488e7, 0x565d70b6)</TypeIdentifier>
  593. <Name>Experiment information</Name>
  594. </Input>
  595. <Input>
  596. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  597. <Name>Signal</Name>
  598. </Input>
  599. <Input>
  600. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  601. <Name>Stimulation</Name>
  602. </Input>
  603. </Inputs>
  604. <Settings>
  605. <Setting>
  606. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  607. <Name>Filename</Name>
  608. <DefaultValue>record-[$core{date}-$core{time}].gdf</DefaultValue>
  609. <Value>$var{Signals Path}/$var{File Prefix}_raw-[$core{date}-$core{time}].gdf</Value>
  610. <Modifiability>false</Modifiability>
  611. </Setting>
  612. </Settings>
  613. <Attributes>
  614. <Attribute>
  615. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  616. <Value>-256</Value>
  617. </Attribute>
  618. <Attribute>
  619. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  620. <Value>800</Value>
  621. </Attribute>
  622. <Attribute>
  623. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  624. <Value>(0xd41e3037, 0xcc12644a)</Value>
  625. </Attribute>
  626. <Attribute>
  627. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  628. <Value>(0x00000000, 0x00c660e3)</Value>
  629. </Attribute>
  630. <Attribute>
  631. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  632. <Value>false</Value>
  633. </Attribute>
  634. <Attribute>
  635. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  636. <Value>1</Value>
  637. </Attribute>
  638. <Attribute>
  639. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  640. <Value>3</Value>
  641. </Attribute>
  642. </Attributes>
  643. </Box>
  644. <Box>
  645. <Identifier>(0x0000465a, 0x00004dbf)</Identifier>
  646. <Name>Acquisition client</Name>
  647. <AlgorithmClassIdentifier>(0x35d225cb, 0x3e6e3a5f)</AlgorithmClassIdentifier>
  648. <Outputs>
  649. <Output>
  650. <TypeIdentifier>(0x403488e7, 0x565d70b6)</TypeIdentifier>
  651. <Name>Experiment information</Name>
  652. </Output>
  653. <Output>
  654. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  655. <Name>Signal stream</Name>
  656. </Output>
  657. <Output>
  658. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  659. <Name>Stimulations</Name>
  660. </Output>
  661. <Output>
  662. <TypeIdentifier>(0x013df452, 0xa3a8879a)</TypeIdentifier>
  663. <Name>Channel localisation</Name>
  664. </Output>
  665. <Output>
  666. <TypeIdentifier>(0x6ab26b81, 0x0f8c02f3)</TypeIdentifier>
  667. <Name>Channel units</Name>
  668. </Output>
  669. </Outputs>
  670. <Settings>
  671. <Setting>
  672. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  673. <Name>Acquisition server hostname</Name>
  674. <DefaultValue>${AcquisitionServer_HostName}</DefaultValue>
  675. <Value>${AcquisitionServer_HostName}</Value>
  676. <Modifiability>false</Modifiability>
  677. </Setting>
  678. <Setting>
  679. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  680. <Name>Acquisition server port</Name>
  681. <DefaultValue>1024</DefaultValue>
  682. <Value>1024</Value>
  683. <Modifiability>false</Modifiability>
  684. </Setting>
  685. </Settings>
  686. <Attributes>
  687. <Attribute>
  688. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  689. <Value>-496</Value>
  690. </Attribute>
  691. <Attribute>
  692. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  693. <Value>976</Value>
  694. </Attribute>
  695. <Attribute>
  696. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  697. <Value>(0x0d4656c0, 0xc95b1fa8)</Value>
  698. </Attribute>
  699. <Attribute>
  700. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  701. <Value>(0x00000000, 0x0069f3f7)</Value>
  702. </Attribute>
  703. <Attribute>
  704. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  705. <Value>false</Value>
  706. </Attribute>
  707. <Attribute>
  708. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  709. <Value>5</Value>
  710. </Attribute>
  711. <Attribute>
  712. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  713. <Value>2</Value>
  714. </Attribute>
  715. </Attributes>
  716. </Box>
  717. <Box>
  718. <Identifier>(0x00004b91, 0x00002aea)</Identifier>
  719. <Name>Graz visualization</Name>
  720. <AlgorithmClassIdentifier>(0x00dd290d, 0x5f142820)</AlgorithmClassIdentifier>
  721. <Inputs>
  722. <Input>
  723. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  724. <Name>Stimulations</Name>
  725. </Input>
  726. <Input>
  727. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  728. <Name>Amplitude</Name>
  729. </Input>
  730. </Inputs>
  731. <Outputs>
  732. <Output>
  733. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  734. <Name>Confusion Matrix</Name>
  735. </Output>
  736. </Outputs>
  737. <Settings>
  738. <Setting>
  739. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  740. <Name>Show instruction</Name>
  741. <DefaultValue>true</DefaultValue>
  742. <Value>true</Value>
  743. <Modifiability>false</Modifiability>
  744. </Setting>
  745. <Setting>
  746. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  747. <Name>Show feedback</Name>
  748. <DefaultValue>false</DefaultValue>
  749. <Value>true</Value>
  750. <Modifiability>false</Modifiability>
  751. </Setting>
  752. <Setting>
  753. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  754. <Name>Delay feedback</Name>
  755. <DefaultValue>false</DefaultValue>
  756. <Value>false</Value>
  757. <Modifiability>false</Modifiability>
  758. </Setting>
  759. <Setting>
  760. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  761. <Name>Show accuracy</Name>
  762. <DefaultValue>false</DefaultValue>
  763. <Value>false</Value>
  764. <Modifiability>false</Modifiability>
  765. </Setting>
  766. <Setting>
  767. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  768. <Name>Predictions to integrate</Name>
  769. <DefaultValue>5</DefaultValue>
  770. <Value>5</Value>
  771. <Modifiability>false</Modifiability>
  772. </Setting>
  773. <Setting>
  774. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  775. <Name>Positive feedback only</Name>
  776. <DefaultValue>false</DefaultValue>
  777. <Value>true</Value>
  778. <Modifiability>false</Modifiability>
  779. </Setting>
  780. </Settings>
  781. <Attributes>
  782. <Attribute>
  783. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  784. <Value>624</Value>
  785. </Attribute>
  786. <Attribute>
  787. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  788. <Value>976</Value>
  789. </Attribute>
  790. <Attribute>
  791. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  792. <Value>(0x602ceb3f, 0xd3bc74aa)</Value>
  793. </Attribute>
  794. <Attribute>
  795. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  796. <Value>1</Value>
  797. </Attribute>
  798. <Attribute>
  799. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  800. <Value>6</Value>
  801. </Attribute>
  802. <Attribute>
  803. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  804. <Value>2</Value>
  805. </Attribute>
  806. </Attributes>
  807. </Box>
  808. <Box>
  809. <Identifier>(0x00005511, 0x00002f0c)</Identifier>
  810. <Name>Generic stream writer</Name>
  811. <AlgorithmClassIdentifier>(0x09c92218, 0x7c1216f8)</AlgorithmClassIdentifier>
  812. <Inputs>
  813. <Input>
  814. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  815. <Name>Classifier Result</Name>
  816. </Input>
  817. <Input>
  818. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  819. <Name>Distance</Name>
  820. </Input>
  821. <Input>
  822. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  823. <Name>Probability</Name>
  824. </Input>
  825. <Input>
  826. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  827. <Name>Input stream 4</Name>
  828. </Input>
  829. </Inputs>
  830. <Settings>
  831. <Setting>
  832. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  833. <Name>Filename</Name>
  834. <DefaultValue>record-[$core{date}-$core{time}].ov</DefaultValue>
  835. <Value>$var{Signals Path}/$var{File Prefix}_online_classifier_result-[$core{date}-$core{time}].ov</Value>
  836. <Modifiability>false</Modifiability>
  837. </Setting>
  838. <Setting>
  839. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  840. <Name>Use compression</Name>
  841. <DefaultValue>false</DefaultValue>
  842. <Value>false</Value>
  843. <Modifiability>false</Modifiability>
  844. </Setting>
  845. </Settings>
  846. <Attributes>
  847. <Attribute>
  848. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  849. <Value>624</Value>
  850. </Attribute>
  851. <Attribute>
  852. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  853. <Value>848</Value>
  854. </Attribute>
  855. <Attribute>
  856. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  857. <Value>(0x89a08108, 0xc8d1fac1)</Value>
  858. </Attribute>
  859. <Attribute>
  860. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  861. <Value></Value>
  862. </Attribute>
  863. <Attribute>
  864. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  865. <Value>2</Value>
  866. </Attribute>
  867. <Attribute>
  868. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  869. <Value>1</Value>
  870. </Attribute>
  871. <Attribute>
  872. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  873. <Value></Value>
  874. </Attribute>
  875. </Attributes>
  876. </Box>
  877. <Box>
  878. <Identifier>(0x00006266, 0x00000e24)</Identifier>
  879. <Name>Signal Merger</Name>
  880. <AlgorithmClassIdentifier>(0x4bf9326f, 0x75603102)</AlgorithmClassIdentifier>
  881. <Inputs>
  882. <Input>
  883. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  884. <Name>Input 1</Name>
  885. </Input>
  886. <Input>
  887. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  888. <Name>Input 2</Name>
  889. </Input>
  890. <Input>
  891. <Identifier>(0xf031835f, 0xfd499f54)</Identifier>
  892. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  893. <Name>Input 3</Name>
  894. </Input>
  895. <Input>
  896. <Identifier>(0xd872563e, 0xc482f033)</Identifier>
  897. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  898. <Name>Input 4</Name>
  899. </Input>
  900. <Input>
  901. <Identifier>(0xc48b247a, 0xbd3518e7)</Identifier>
  902. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  903. <Name>Input 5</Name>
  904. </Input>
  905. <Input>
  906. <Identifier>(0x5f7bcc3c, 0xe39a6eb0)</Identifier>
  907. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  908. <Name>Input 6</Name>
  909. </Input>
  910. <Input>
  911. <Identifier>(0xb830b8b1, 0xa74de4f5)</Identifier>
  912. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  913. <Name>Input 7</Name>
  914. </Input>
  915. <Input>
  916. <Identifier>(0xfa16eb48, 0x996f530e)</Identifier>
  917. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  918. <Name>Input 8</Name>
  919. </Input>
  920. <Input>
  921. <Identifier>(0xeb82c0f0, 0x3795f13e)</Identifier>
  922. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  923. <Name>Input 9</Name>
  924. </Input>
  925. </Inputs>
  926. <Outputs>
  927. <Output>
  928. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  929. <Name>Merged</Name>
  930. </Output>
  931. </Outputs>
  932. <Attributes>
  933. <Attribute>
  934. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  935. <Value>96</Value>
  936. </Attribute>
  937. <Attribute>
  938. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  939. <Value>976</Value>
  940. </Attribute>
  941. <Attribute>
  942. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  943. <Value>(0x990c5a68, 0x0d4024a3)</Value>
  944. </Attribute>
  945. <Attribute>
  946. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  947. <Value>1</Value>
  948. </Attribute>
  949. <Attribute>
  950. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  951. <Value>2</Value>
  952. </Attribute>
  953. <Attribute>
  954. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  955. <Value></Value>
  956. </Attribute>
  957. </Attributes>
  958. </Box>
  959. <Box>
  960. <Identifier>(0x000065a7, 0x00000786)</Identifier>
  961. <Name>!EOG1;EOG2;EOG3;EMGg;EMGd</Name>
  962. <AlgorithmClassIdentifier>(0x361722e8, 0x311574e8)</AlgorithmClassIdentifier>
  963. <Inputs>
  964. <Input>
  965. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  966. <Name>Input signal</Name>
  967. </Input>
  968. </Inputs>
  969. <Outputs>
  970. <Output>
  971. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  972. <Name>Output signal</Name>
  973. </Output>
  974. </Outputs>
  975. <Settings>
  976. <Setting>
  977. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  978. <Name>Channel List</Name>
  979. <DefaultValue>:</DefaultValue>
  980. <Value>EOG1;EOG2;EOG3;EMGg;EMGd</Value>
  981. <Modifiability>false</Modifiability>
  982. </Setting>
  983. <Setting>
  984. <TypeIdentifier>(0x3bcf9e67, 0x0c23994d)</TypeIdentifier>
  985. <Name>Action</Name>
  986. <DefaultValue>Select</DefaultValue>
  987. <Value>Reject</Value>
  988. <Modifiability>false</Modifiability>
  989. </Setting>
  990. <Setting>
  991. <TypeIdentifier>(0x666f25e9, 0x3e5738d6)</TypeIdentifier>
  992. <Name>Channel Matching Method</Name>
  993. <DefaultValue>Smart</DefaultValue>
  994. <Value>Smart</Value>
  995. <Modifiability>false</Modifiability>
  996. </Setting>
  997. </Settings>
  998. <Attributes>
  999. <Attribute>
  1000. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1001. <Value>-272</Value>
  1002. </Attribute>
  1003. <Attribute>
  1004. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1005. <Value>976</Value>
  1006. </Attribute>
  1007. <Attribute>
  1008. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1009. <Value></Value>
  1010. </Attribute>
  1011. <Attribute>
  1012. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1013. <Value>(0x277826e1, 0xa30a3bd0)</Value>
  1014. </Attribute>
  1015. <Attribute>
  1016. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1017. <Value></Value>
  1018. </Attribute>
  1019. <Attribute>
  1020. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1021. <Value>(0x00000000, 0x00128288)</Value>
  1022. </Attribute>
  1023. <Attribute>
  1024. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  1025. <Value>false</Value>
  1026. </Attribute>
  1027. <Attribute>
  1028. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1029. <Value>1</Value>
  1030. </Attribute>
  1031. <Attribute>
  1032. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1033. <Value>3</Value>
  1034. </Attribute>
  1035. <Attribute>
  1036. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1037. <Value>1</Value>
  1038. </Attribute>
  1039. </Attributes>
  1040. </Box>
  1041. <Box>
  1042. <Identifier>(0x000065a7, 0x00000787)</Identifier>
  1043. <Name>!EventChannel1;EventChannel2</Name>
  1044. <AlgorithmClassIdentifier>(0x361722e8, 0x311574e8)</AlgorithmClassIdentifier>
  1045. <Inputs>
  1046. <Input>
  1047. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1048. <Name>Input signal</Name>
  1049. </Input>
  1050. </Inputs>
  1051. <Outputs>
  1052. <Output>
  1053. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1054. <Name>Output signal</Name>
  1055. </Output>
  1056. </Outputs>
  1057. <Settings>
  1058. <Setting>
  1059. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1060. <Name>Channel List</Name>
  1061. <DefaultValue>:</DefaultValue>
  1062. <Value>EventChannel1;EventChannel2</Value>
  1063. <Modifiability>false</Modifiability>
  1064. </Setting>
  1065. <Setting>
  1066. <TypeIdentifier>(0x3bcf9e67, 0x0c23994d)</TypeIdentifier>
  1067. <Name>Action</Name>
  1068. <DefaultValue>Select</DefaultValue>
  1069. <Value>Reject</Value>
  1070. <Modifiability>false</Modifiability>
  1071. </Setting>
  1072. <Setting>
  1073. <TypeIdentifier>(0x666f25e9, 0x3e5738d6)</TypeIdentifier>
  1074. <Name>Channel Matching Method</Name>
  1075. <DefaultValue>Smart</DefaultValue>
  1076. <Value>Smart</Value>
  1077. <Modifiability>false</Modifiability>
  1078. </Setting>
  1079. </Settings>
  1080. <Attributes>
  1081. <Attribute>
  1082. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1083. <Value>-352</Value>
  1084. </Attribute>
  1085. <Attribute>
  1086. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1087. <Value>976</Value>
  1088. </Attribute>
  1089. <Attribute>
  1090. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1091. <Value></Value>
  1092. </Attribute>
  1093. <Attribute>
  1094. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1095. <Value>(0x277826e1, 0xa30a3bd0)</Value>
  1096. </Attribute>
  1097. <Attribute>
  1098. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1099. <Value></Value>
  1100. </Attribute>
  1101. <Attribute>
  1102. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1103. <Value>(0x00000000, 0x0033f7b6)</Value>
  1104. </Attribute>
  1105. <Attribute>
  1106. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  1107. <Value>false</Value>
  1108. </Attribute>
  1109. <Attribute>
  1110. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1111. <Value>1</Value>
  1112. </Attribute>
  1113. <Attribute>
  1114. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1115. <Value>3</Value>
  1116. </Attribute>
  1117. <Attribute>
  1118. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1119. <Value>1</Value>
  1120. </Attribute>
  1121. </Attributes>
  1122. </Box>
  1123. <Box>
  1124. <Identifier>(0x00007442, 0x00001fd0)</Identifier>
  1125. <Name>Feature aggregator</Name>
  1126. <AlgorithmClassIdentifier>(0x00682417, 0x453635f9)</AlgorithmClassIdentifier>
  1127. <Inputs>
  1128. <Input>
  1129. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  1130. <Name>Input stream 1</Name>
  1131. </Input>
  1132. </Inputs>
  1133. <Outputs>
  1134. <Output>
  1135. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  1136. <Name>Feature vector stream</Name>
  1137. </Output>
  1138. </Outputs>
  1139. <Attributes>
  1140. <Attribute>
  1141. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1142. <Value>416</Value>
  1143. </Attribute>
  1144. <Attribute>
  1145. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1146. <Value>976</Value>
  1147. </Attribute>
  1148. <Attribute>
  1149. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1150. <Value>(0xb5d15cc9, 0x6c8c28fb)</Value>
  1151. </Attribute>
  1152. <Attribute>
  1153. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1154. <Value>1</Value>
  1155. </Attribute>
  1156. <Attribute>
  1157. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1158. <Value>1</Value>
  1159. </Attribute>
  1160. <Attribute>
  1161. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1162. <Value></Value>
  1163. </Attribute>
  1164. </Attributes>
  1165. </Box>
  1166. <Box>
  1167. <Identifier>(0x00007b42, 0x00006959)</Identifier>
  1168. <Name>Create ShamFB</Name>
  1169. <AlgorithmClassIdentifier>(0x09c92218, 0x7c1216f8)</AlgorithmClassIdentifier>
  1170. <Inputs>
  1171. <Input>
  1172. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  1173. <Name>Input stream 1</Name>
  1174. </Input>
  1175. </Inputs>
  1176. <Settings>
  1177. <Setting>
  1178. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1179. <Name>Filename</Name>
  1180. <DefaultValue></DefaultValue>
  1181. <Value>$var{Signals Path}/$var{XP Name}_sham-[$core{date}-$core{time}].ov</Value>
  1182. <Modifiability>false</Modifiability>
  1183. </Setting>
  1184. <Setting>
  1185. <TypeIdentifier>(0x2cdb2f0b, 0x12f231ea)</TypeIdentifier>
  1186. <Name>Use compression</Name>
  1187. <DefaultValue>false</DefaultValue>
  1188. <Value>false</Value>
  1189. <Modifiability>false</Modifiability>
  1190. </Setting>
  1191. </Settings>
  1192. <Attributes>
  1193. <Attribute>
  1194. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1195. <Value>624</Value>
  1196. </Attribute>
  1197. <Attribute>
  1198. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1199. <Value>720</Value>
  1200. </Attribute>
  1201. <Attribute>
  1202. <Identifier>(0x341d3912, 0x1478de86)</Identifier>
  1203. <Value>1</Value>
  1204. </Attribute>
  1205. <Attribute>
  1206. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1207. <Value>(0x89a08108, 0xc8d1fac1)</Value>
  1208. </Attribute>
  1209. <Attribute>
  1210. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1211. <Value></Value>
  1212. </Attribute>
  1213. <Attribute>
  1214. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1215. <Value>(0x00000000, 0x00085ede)</Value>
  1216. </Attribute>
  1217. <Attribute>
  1218. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  1219. <Value></Value>
  1220. </Attribute>
  1221. </Attributes>
  1222. </Box>
  1223. <Box>
  1224. <Identifier>(0x00c4af19, 0x360e4025)</Identifier>
  1225. <Name>Signal average</Name>
  1226. <AlgorithmClassIdentifier>(0x00642c4d, 0x5df7e50a)</AlgorithmClassIdentifier>
  1227. <Inputs>
  1228. <Input>
  1229. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1230. <Name>Input signal</Name>
  1231. </Input>
  1232. </Inputs>
  1233. <Outputs>
  1234. <Output>
  1235. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1236. <Name>Filtered signal</Name>
  1237. </Output>
  1238. </Outputs>
  1239. <Attributes>
  1240. <Attribute>
  1241. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1242. <Value>288</Value>
  1243. </Attribute>
  1244. <Attribute>
  1245. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1246. <Value>976</Value>
  1247. </Attribute>
  1248. <Attribute>
  1249. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1250. <Value>(0xc5ff4187, 0xffc5f432)</Value>
  1251. </Attribute>
  1252. <Attribute>
  1253. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  1254. <Value>(0x00000000, 0x004da903)</Value>
  1255. </Attribute>
  1256. </Attributes>
  1257. </Box>
  1258. <Box>
  1259. <Identifier>(0x038cae1a, 0x03e0da64)</Identifier>
  1260. <Name>Spatial Filter</Name>
  1261. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1262. <Inputs>
  1263. <Input>
  1264. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1265. <Name>Input Signal</Name>
  1266. </Input>
  1267. </Inputs>
  1268. <Outputs>
  1269. <Output>
  1270. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1271. <Name>Output Signal</Name>
  1272. </Output>
  1273. </Outputs>
  1274. <Settings>
  1275. <Setting>
  1276. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1277. <Name>Spatial Filter Coefficients</Name>
  1278. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1279. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1280. <Modifiability>false</Modifiability>
  1281. </Setting>
  1282. <Setting>
  1283. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1284. <Name>Number of Output Channels</Name>
  1285. <DefaultValue>4</DefaultValue>
  1286. <Value>6</Value>
  1287. <Modifiability>false</Modifiability>
  1288. </Setting>
  1289. <Setting>
  1290. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1291. <Name>Number of Input Channels</Name>
  1292. <DefaultValue>4</DefaultValue>
  1293. <Value>16</Value>
  1294. <Modifiability>false</Modifiability>
  1295. </Setting>
  1296. <Setting>
  1297. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1298. <Name>Filter matrix file</Name>
  1299. <DefaultValue></DefaultValue>
  1300. <Value></Value>
  1301. <Modifiability>false</Modifiability>
  1302. </Setting>
  1303. </Settings>
  1304. <Attributes>
  1305. <Attribute>
  1306. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1307. <Value>-32</Value>
  1308. </Attribute>
  1309. <Attribute>
  1310. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1311. <Value>592</Value>
  1312. </Attribute>
  1313. <Attribute>
  1314. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1315. <Value></Value>
  1316. </Attribute>
  1317. <Attribute>
  1318. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1319. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1320. </Attribute>
  1321. <Attribute>
  1322. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1323. <Value></Value>
  1324. </Attribute>
  1325. <Attribute>
  1326. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1327. <Value>$var{Scripts Path}/fbcsp-spatial-filter-4_8-$var{File Suffix}.xml</Value>
  1328. </Attribute>
  1329. <Attribute>
  1330. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1331. <Value>1</Value>
  1332. </Attribute>
  1333. <Attribute>
  1334. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1335. <Value>3</Value>
  1336. </Attribute>
  1337. <Attribute>
  1338. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1339. <Value>1</Value>
  1340. </Attribute>
  1341. </Attributes>
  1342. </Box>
  1343. <Box>
  1344. <Identifier>(0x038cae1a, 0x03e0da65)</Identifier>
  1345. <Name>Spatial Filter</Name>
  1346. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1347. <Inputs>
  1348. <Input>
  1349. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1350. <Name>Input Signal</Name>
  1351. </Input>
  1352. </Inputs>
  1353. <Outputs>
  1354. <Output>
  1355. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1356. <Name>Output Signal</Name>
  1357. </Output>
  1358. </Outputs>
  1359. <Settings>
  1360. <Setting>
  1361. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1362. <Name>Spatial Filter Coefficients</Name>
  1363. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1364. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1365. <Modifiability>false</Modifiability>
  1366. </Setting>
  1367. <Setting>
  1368. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1369. <Name>Number of Output Channels</Name>
  1370. <DefaultValue>4</DefaultValue>
  1371. <Value>6</Value>
  1372. <Modifiability>false</Modifiability>
  1373. </Setting>
  1374. <Setting>
  1375. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1376. <Name>Number of Input Channels</Name>
  1377. <DefaultValue>4</DefaultValue>
  1378. <Value>16</Value>
  1379. <Modifiability>false</Modifiability>
  1380. </Setting>
  1381. <Setting>
  1382. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1383. <Name>Filter matrix file</Name>
  1384. <DefaultValue></DefaultValue>
  1385. <Value></Value>
  1386. <Modifiability>false</Modifiability>
  1387. </Setting>
  1388. </Settings>
  1389. <Attributes>
  1390. <Attribute>
  1391. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1392. <Value>-32</Value>
  1393. </Attribute>
  1394. <Attribute>
  1395. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1396. <Value>688</Value>
  1397. </Attribute>
  1398. <Attribute>
  1399. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1400. <Value></Value>
  1401. </Attribute>
  1402. <Attribute>
  1403. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1404. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1405. </Attribute>
  1406. <Attribute>
  1407. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1408. <Value></Value>
  1409. </Attribute>
  1410. <Attribute>
  1411. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1412. <Value>$var{Scripts Path}/fbcsp-spatial-filter-8_12-$var{File Suffix}.xml</Value>
  1413. </Attribute>
  1414. <Attribute>
  1415. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1416. <Value>1</Value>
  1417. </Attribute>
  1418. <Attribute>
  1419. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1420. <Value>3</Value>
  1421. </Attribute>
  1422. <Attribute>
  1423. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1424. <Value>1</Value>
  1425. </Attribute>
  1426. </Attributes>
  1427. </Box>
  1428. <Box>
  1429. <Identifier>(0x038cae1a, 0x03e0da66)</Identifier>
  1430. <Name>Spatial Filter</Name>
  1431. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1432. <Inputs>
  1433. <Input>
  1434. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1435. <Name>Input Signal</Name>
  1436. </Input>
  1437. </Inputs>
  1438. <Outputs>
  1439. <Output>
  1440. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1441. <Name>Output Signal</Name>
  1442. </Output>
  1443. </Outputs>
  1444. <Settings>
  1445. <Setting>
  1446. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1447. <Name>Spatial Filter Coefficients</Name>
  1448. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1449. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1450. <Modifiability>false</Modifiability>
  1451. </Setting>
  1452. <Setting>
  1453. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1454. <Name>Number of Output Channels</Name>
  1455. <DefaultValue>4</DefaultValue>
  1456. <Value>6</Value>
  1457. <Modifiability>false</Modifiability>
  1458. </Setting>
  1459. <Setting>
  1460. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1461. <Name>Number of Input Channels</Name>
  1462. <DefaultValue>4</DefaultValue>
  1463. <Value>16</Value>
  1464. <Modifiability>false</Modifiability>
  1465. </Setting>
  1466. <Setting>
  1467. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1468. <Name>Filter matrix file</Name>
  1469. <DefaultValue></DefaultValue>
  1470. <Value></Value>
  1471. <Modifiability>false</Modifiability>
  1472. </Setting>
  1473. </Settings>
  1474. <Attributes>
  1475. <Attribute>
  1476. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1477. <Value>-32</Value>
  1478. </Attribute>
  1479. <Attribute>
  1480. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1481. <Value>784</Value>
  1482. </Attribute>
  1483. <Attribute>
  1484. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1485. <Value></Value>
  1486. </Attribute>
  1487. <Attribute>
  1488. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1489. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1490. </Attribute>
  1491. <Attribute>
  1492. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1493. <Value></Value>
  1494. </Attribute>
  1495. <Attribute>
  1496. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1497. <Value>$var{Scripts Path}/fbcsp-spatial-filter-12_16-$var{File Suffix}.xml</Value>
  1498. </Attribute>
  1499. <Attribute>
  1500. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1501. <Value>1</Value>
  1502. </Attribute>
  1503. <Attribute>
  1504. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1505. <Value>3</Value>
  1506. </Attribute>
  1507. <Attribute>
  1508. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1509. <Value>1</Value>
  1510. </Attribute>
  1511. </Attributes>
  1512. </Box>
  1513. <Box>
  1514. <Identifier>(0x038cae1a, 0x03e0da67)</Identifier>
  1515. <Name>Spatial Filter</Name>
  1516. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1517. <Inputs>
  1518. <Input>
  1519. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1520. <Name>Input Signal</Name>
  1521. </Input>
  1522. </Inputs>
  1523. <Outputs>
  1524. <Output>
  1525. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1526. <Name>Output Signal</Name>
  1527. </Output>
  1528. </Outputs>
  1529. <Settings>
  1530. <Setting>
  1531. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1532. <Name>Spatial Filter Coefficients</Name>
  1533. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1534. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1535. <Modifiability>false</Modifiability>
  1536. </Setting>
  1537. <Setting>
  1538. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1539. <Name>Number of Output Channels</Name>
  1540. <DefaultValue>4</DefaultValue>
  1541. <Value>6</Value>
  1542. <Modifiability>false</Modifiability>
  1543. </Setting>
  1544. <Setting>
  1545. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1546. <Name>Number of Input Channels</Name>
  1547. <DefaultValue>4</DefaultValue>
  1548. <Value>16</Value>
  1549. <Modifiability>false</Modifiability>
  1550. </Setting>
  1551. <Setting>
  1552. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1553. <Name>Filter matrix file</Name>
  1554. <DefaultValue></DefaultValue>
  1555. <Value></Value>
  1556. <Modifiability>false</Modifiability>
  1557. </Setting>
  1558. </Settings>
  1559. <Attributes>
  1560. <Attribute>
  1561. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1562. <Value>-32</Value>
  1563. </Attribute>
  1564. <Attribute>
  1565. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1566. <Value>880</Value>
  1567. </Attribute>
  1568. <Attribute>
  1569. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1570. <Value></Value>
  1571. </Attribute>
  1572. <Attribute>
  1573. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1574. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1575. </Attribute>
  1576. <Attribute>
  1577. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1578. <Value></Value>
  1579. </Attribute>
  1580. <Attribute>
  1581. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1582. <Value>$var{Scripts Path}/fbcsp-spatial-filter-16_20-$var{File Suffix}.xml</Value>
  1583. </Attribute>
  1584. <Attribute>
  1585. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1586. <Value>1</Value>
  1587. </Attribute>
  1588. <Attribute>
  1589. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1590. <Value>3</Value>
  1591. </Attribute>
  1592. <Attribute>
  1593. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1594. <Value>1</Value>
  1595. </Attribute>
  1596. </Attributes>
  1597. </Box>
  1598. <Box>
  1599. <Identifier>(0x038cae1a, 0x03e0da68)</Identifier>
  1600. <Name>Spatial Filter</Name>
  1601. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1602. <Inputs>
  1603. <Input>
  1604. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1605. <Name>Input Signal</Name>
  1606. </Input>
  1607. </Inputs>
  1608. <Outputs>
  1609. <Output>
  1610. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1611. <Name>Output Signal</Name>
  1612. </Output>
  1613. </Outputs>
  1614. <Settings>
  1615. <Setting>
  1616. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1617. <Name>Spatial Filter Coefficients</Name>
  1618. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1619. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1620. <Modifiability>false</Modifiability>
  1621. </Setting>
  1622. <Setting>
  1623. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1624. <Name>Number of Output Channels</Name>
  1625. <DefaultValue>4</DefaultValue>
  1626. <Value>6</Value>
  1627. <Modifiability>false</Modifiability>
  1628. </Setting>
  1629. <Setting>
  1630. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1631. <Name>Number of Input Channels</Name>
  1632. <DefaultValue>4</DefaultValue>
  1633. <Value>16</Value>
  1634. <Modifiability>false</Modifiability>
  1635. </Setting>
  1636. <Setting>
  1637. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1638. <Name>Filter matrix file</Name>
  1639. <DefaultValue></DefaultValue>
  1640. <Value></Value>
  1641. <Modifiability>false</Modifiability>
  1642. </Setting>
  1643. </Settings>
  1644. <Attributes>
  1645. <Attribute>
  1646. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1647. <Value>-32</Value>
  1648. </Attribute>
  1649. <Attribute>
  1650. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1651. <Value>976</Value>
  1652. </Attribute>
  1653. <Attribute>
  1654. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1655. <Value></Value>
  1656. </Attribute>
  1657. <Attribute>
  1658. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1659. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1660. </Attribute>
  1661. <Attribute>
  1662. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1663. <Value></Value>
  1664. </Attribute>
  1665. <Attribute>
  1666. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1667. <Value>$var{Scripts Path}/fbcsp-spatial-filter-20_24-$var{File Suffix}.xml</Value>
  1668. </Attribute>
  1669. <Attribute>
  1670. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1671. <Value>1</Value>
  1672. </Attribute>
  1673. <Attribute>
  1674. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1675. <Value>3</Value>
  1676. </Attribute>
  1677. <Attribute>
  1678. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1679. <Value>1</Value>
  1680. </Attribute>
  1681. </Attributes>
  1682. </Box>
  1683. <Box>
  1684. <Identifier>(0x038cae1a, 0x03e0da69)</Identifier>
  1685. <Name>Spatial Filter</Name>
  1686. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1687. <Inputs>
  1688. <Input>
  1689. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1690. <Name>Input Signal</Name>
  1691. </Input>
  1692. </Inputs>
  1693. <Outputs>
  1694. <Output>
  1695. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1696. <Name>Output Signal</Name>
  1697. </Output>
  1698. </Outputs>
  1699. <Settings>
  1700. <Setting>
  1701. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1702. <Name>Spatial Filter Coefficients</Name>
  1703. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1704. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1705. <Modifiability>false</Modifiability>
  1706. </Setting>
  1707. <Setting>
  1708. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1709. <Name>Number of Output Channels</Name>
  1710. <DefaultValue>4</DefaultValue>
  1711. <Value>6</Value>
  1712. <Modifiability>false</Modifiability>
  1713. </Setting>
  1714. <Setting>
  1715. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1716. <Name>Number of Input Channels</Name>
  1717. <DefaultValue>4</DefaultValue>
  1718. <Value>16</Value>
  1719. <Modifiability>false</Modifiability>
  1720. </Setting>
  1721. <Setting>
  1722. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1723. <Name>Filter matrix file</Name>
  1724. <DefaultValue></DefaultValue>
  1725. <Value></Value>
  1726. <Modifiability>false</Modifiability>
  1727. </Setting>
  1728. </Settings>
  1729. <Attributes>
  1730. <Attribute>
  1731. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1732. <Value>-32</Value>
  1733. </Attribute>
  1734. <Attribute>
  1735. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1736. <Value>1072</Value>
  1737. </Attribute>
  1738. <Attribute>
  1739. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1740. <Value></Value>
  1741. </Attribute>
  1742. <Attribute>
  1743. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1744. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1745. </Attribute>
  1746. <Attribute>
  1747. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1748. <Value></Value>
  1749. </Attribute>
  1750. <Attribute>
  1751. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1752. <Value>$var{Scripts Path}/fbcsp-spatial-filter-24_28-$var{File Suffix}.xml</Value>
  1753. </Attribute>
  1754. <Attribute>
  1755. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1756. <Value>1</Value>
  1757. </Attribute>
  1758. <Attribute>
  1759. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1760. <Value>3</Value>
  1761. </Attribute>
  1762. <Attribute>
  1763. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1764. <Value>1</Value>
  1765. </Attribute>
  1766. </Attributes>
  1767. </Box>
  1768. <Box>
  1769. <Identifier>(0x038cae1a, 0x03e0da6a)</Identifier>
  1770. <Name>Spatial Filter</Name>
  1771. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1772. <Inputs>
  1773. <Input>
  1774. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1775. <Name>Input Signal</Name>
  1776. </Input>
  1777. </Inputs>
  1778. <Outputs>
  1779. <Output>
  1780. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1781. <Name>Output Signal</Name>
  1782. </Output>
  1783. </Outputs>
  1784. <Settings>
  1785. <Setting>
  1786. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1787. <Name>Spatial Filter Coefficients</Name>
  1788. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1789. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1790. <Modifiability>false</Modifiability>
  1791. </Setting>
  1792. <Setting>
  1793. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1794. <Name>Number of Output Channels</Name>
  1795. <DefaultValue>4</DefaultValue>
  1796. <Value>6</Value>
  1797. <Modifiability>false</Modifiability>
  1798. </Setting>
  1799. <Setting>
  1800. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1801. <Name>Number of Input Channels</Name>
  1802. <DefaultValue>4</DefaultValue>
  1803. <Value>16</Value>
  1804. <Modifiability>false</Modifiability>
  1805. </Setting>
  1806. <Setting>
  1807. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1808. <Name>Filter matrix file</Name>
  1809. <DefaultValue></DefaultValue>
  1810. <Value></Value>
  1811. <Modifiability>false</Modifiability>
  1812. </Setting>
  1813. </Settings>
  1814. <Attributes>
  1815. <Attribute>
  1816. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1817. <Value>-32</Value>
  1818. </Attribute>
  1819. <Attribute>
  1820. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1821. <Value>1168</Value>
  1822. </Attribute>
  1823. <Attribute>
  1824. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1825. <Value></Value>
  1826. </Attribute>
  1827. <Attribute>
  1828. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1829. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1830. </Attribute>
  1831. <Attribute>
  1832. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1833. <Value></Value>
  1834. </Attribute>
  1835. <Attribute>
  1836. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1837. <Value>$var{Scripts Path}/fbcsp-spatial-filter-28_32-$var{File Suffix}.xml</Value>
  1838. </Attribute>
  1839. <Attribute>
  1840. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1841. <Value>1</Value>
  1842. </Attribute>
  1843. <Attribute>
  1844. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1845. <Value>3</Value>
  1846. </Attribute>
  1847. <Attribute>
  1848. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1849. <Value>1</Value>
  1850. </Attribute>
  1851. </Attributes>
  1852. </Box>
  1853. <Box>
  1854. <Identifier>(0x038cae1a, 0x03e0da6b)</Identifier>
  1855. <Name>Spatial Filter</Name>
  1856. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1857. <Inputs>
  1858. <Input>
  1859. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1860. <Name>Input Signal</Name>
  1861. </Input>
  1862. </Inputs>
  1863. <Outputs>
  1864. <Output>
  1865. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1866. <Name>Output Signal</Name>
  1867. </Output>
  1868. </Outputs>
  1869. <Settings>
  1870. <Setting>
  1871. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1872. <Name>Spatial Filter Coefficients</Name>
  1873. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1874. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1875. <Modifiability>false</Modifiability>
  1876. </Setting>
  1877. <Setting>
  1878. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1879. <Name>Number of Output Channels</Name>
  1880. <DefaultValue>4</DefaultValue>
  1881. <Value>6</Value>
  1882. <Modifiability>false</Modifiability>
  1883. </Setting>
  1884. <Setting>
  1885. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1886. <Name>Number of Input Channels</Name>
  1887. <DefaultValue>4</DefaultValue>
  1888. <Value>16</Value>
  1889. <Modifiability>false</Modifiability>
  1890. </Setting>
  1891. <Setting>
  1892. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1893. <Name>Filter matrix file</Name>
  1894. <DefaultValue></DefaultValue>
  1895. <Value></Value>
  1896. <Modifiability>false</Modifiability>
  1897. </Setting>
  1898. </Settings>
  1899. <Attributes>
  1900. <Attribute>
  1901. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1902. <Value>-32</Value>
  1903. </Attribute>
  1904. <Attribute>
  1905. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1906. <Value>1264</Value>
  1907. </Attribute>
  1908. <Attribute>
  1909. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1910. <Value></Value>
  1911. </Attribute>
  1912. <Attribute>
  1913. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1914. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  1915. </Attribute>
  1916. <Attribute>
  1917. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  1918. <Value></Value>
  1919. </Attribute>
  1920. <Attribute>
  1921. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  1922. <Value>$var{Scripts Path}/fbcsp-spatial-filter-32_36-$var{File Suffix}.xml</Value>
  1923. </Attribute>
  1924. <Attribute>
  1925. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  1926. <Value>1</Value>
  1927. </Attribute>
  1928. <Attribute>
  1929. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  1930. <Value>3</Value>
  1931. </Attribute>
  1932. <Attribute>
  1933. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  1934. <Value>1</Value>
  1935. </Attribute>
  1936. </Attributes>
  1937. </Box>
  1938. <Box>
  1939. <Identifier>(0x038cae1a, 0x03e0da6c)</Identifier>
  1940. <Name>Spatial Filter</Name>
  1941. <AlgorithmClassIdentifier>(0xdd332c6c, 0x195b4fd4)</AlgorithmClassIdentifier>
  1942. <Inputs>
  1943. <Input>
  1944. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1945. <Name>Input Signal</Name>
  1946. </Input>
  1947. </Inputs>
  1948. <Outputs>
  1949. <Output>
  1950. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  1951. <Name>Output Signal</Name>
  1952. </Output>
  1953. </Outputs>
  1954. <Settings>
  1955. <Setting>
  1956. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  1957. <Name>Spatial Filter Coefficients</Name>
  1958. <DefaultValue>1;0;0;0;0;1;0;0;0;0;1;0;0;0;0;1</DefaultValue>
  1959. <Value>-1.025592e-001 -7.992702e-002 -3.380574e-002 -9.564073e-002 1.014601e-001 -1.039170e-001 8.733368e-002 -3.739840e-002 -2.037134e-001 7.071647e-001 3.741635e-001 -3.580719e-001 1.442817e-001 3.411863e-003 -1.213417e-001 -3.119889e-001 1.115873e-001 1.359580e-001 -1.116613e-001 -3.135968e-001 -1.250939e-001 -1.378700e-002 -2.625042e-001 -1.009421e-001 -2.279613e-001 6.689580e-001 -3.348420e-002 9.899176e-002 -4.863345e-002 4.481541e-001 -2.025669e-001 -9.318723e-002 5.258966e-002 2.090623e-004 -1.451749e-001 -3.856019e-001 -4.710458e-002 9.675494e-002 1.549741e-001 -7.944412e-002 -7.903602e-002 7.455923e-001 -3.815222e-001 2.166322e-001 7.102007e-002 -1.493399e-001 -5.719637e-002 -1.732339e-002 4.253947e-002 -1.286825e-001 -1.415511e-001 1.086118e-001 3.485295e-002 -2.764141e-001 8.364691e-001 -3.726375e-001 4.963272e-002 9.167431e-003 -1.381837e-002 -1.012741e-002 -1.700471e-002 -1.616294e-001 6.193112e-002 -2.344197e-002 -3.390554e-001 2.998192e-001 1.635785e-002 3.717487e-001 -8.495080e-002 8.709944e-002 -4.562827e-001 4.325673e-001 -3.228420e-001 7.993942e-003 -1.115950e-001 -1.922763e-001 2.762776e-001 2.720282e-002 1.158864e-001 -4.858494e-002 -3.275103e-001 2.691000e-001 8.273217e-002 1.568368e-001 6.632540e-002 -6.147631e-002 -4.658877e-001 5.034320e-001 -1.359116e-001 5.664146e-002 -2.065083e-001 3.221159e-001 -2.724882e-001 7.822386e-002 -2.063637e-001 1.384452e-001 </Value>
  1960. <Modifiability>false</Modifiability>
  1961. </Setting>
  1962. <Setting>
  1963. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1964. <Name>Number of Output Channels</Name>
  1965. <DefaultValue>4</DefaultValue>
  1966. <Value>6</Value>
  1967. <Modifiability>false</Modifiability>
  1968. </Setting>
  1969. <Setting>
  1970. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  1971. <Name>Number of Input Channels</Name>
  1972. <DefaultValue>4</DefaultValue>
  1973. <Value>16</Value>
  1974. <Modifiability>false</Modifiability>
  1975. </Setting>
  1976. <Setting>
  1977. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  1978. <Name>Filter matrix file</Name>
  1979. <DefaultValue></DefaultValue>
  1980. <Value></Value>
  1981. <Modifiability>false</Modifiability>
  1982. </Setting>
  1983. </Settings>
  1984. <Attributes>
  1985. <Attribute>
  1986. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  1987. <Value>-32</Value>
  1988. </Attribute>
  1989. <Attribute>
  1990. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  1991. <Value>1360</Value>
  1992. </Attribute>
  1993. <Attribute>
  1994. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  1995. <Value></Value>
  1996. </Attribute>
  1997. <Attribute>
  1998. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  1999. <Value>(0x81db9bf9, 0xf1cf4ed7)</Value>
  2000. </Attribute>
  2001. <Attribute>
  2002. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  2003. <Value></Value>
  2004. </Attribute>
  2005. <Attribute>
  2006. <Identifier>(0x8d21ff41, 0xdf6afe7e)</Identifier>
  2007. <Value>$var{Scripts Path}/fbcsp-spatial-filter-36_40-$var{File Suffix}.xml</Value>
  2008. </Attribute>
  2009. <Attribute>
  2010. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2011. <Value>1</Value>
  2012. </Attribute>
  2013. <Attribute>
  2014. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2015. <Value>3</Value>
  2016. </Attribute>
  2017. <Attribute>
  2018. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2019. <Value>1</Value>
  2020. </Attribute>
  2021. </Attributes>
  2022. </Box>
  2023. <Box>
  2024. <Identifier>(0x14e0f923, 0x0df1c5d6)</Identifier>
  2025. <Name>log(1+x)</Name>
  2026. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  2027. <Inputs>
  2028. <Input>
  2029. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2030. <Name>Input - A</Name>
  2031. </Input>
  2032. </Inputs>
  2033. <Outputs>
  2034. <Output>
  2035. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2036. <Name>Output</Name>
  2037. </Output>
  2038. </Outputs>
  2039. <Settings>
  2040. <Setting>
  2041. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  2042. <Name>Equation</Name>
  2043. <DefaultValue>x</DefaultValue>
  2044. <Value>log(1+x)</Value>
  2045. <Modifiability>false</Modifiability>
  2046. </Setting>
  2047. </Settings>
  2048. <Attributes>
  2049. <Attribute>
  2050. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2051. <Value>352</Value>
  2052. </Attribute>
  2053. <Attribute>
  2054. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2055. <Value>976</Value>
  2056. </Attribute>
  2057. <Attribute>
  2058. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  2059. <Value></Value>
  2060. </Attribute>
  2061. <Attribute>
  2062. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2063. <Value>(0x21889dc4, 0x1126497e)</Value>
  2064. </Attribute>
  2065. <Attribute>
  2066. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  2067. <Value></Value>
  2068. </Attribute>
  2069. <Attribute>
  2070. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2071. <Value>1</Value>
  2072. </Attribute>
  2073. <Attribute>
  2074. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2075. <Value>1</Value>
  2076. </Attribute>
  2077. <Attribute>
  2078. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2079. <Value>1</Value>
  2080. </Attribute>
  2081. <Attribute>
  2082. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  2083. <Value></Value>
  2084. </Attribute>
  2085. </Attributes>
  2086. </Box>
  2087. <Box>
  2088. <Identifier>(0x24757b65, 0x29027b70)</Identifier>
  2089. <Name>Player Controller</Name>
  2090. <AlgorithmClassIdentifier>(0x5f426dce, 0x08456e13)</AlgorithmClassIdentifier>
  2091. <Inputs>
  2092. <Input>
  2093. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  2094. <Name>Stimulations</Name>
  2095. </Input>
  2096. </Inputs>
  2097. <Settings>
  2098. <Setting>
  2099. <TypeIdentifier>(0x2c132d6e, 0x44ab0d97)</TypeIdentifier>
  2100. <Name>Stimulation name</Name>
  2101. <DefaultValue>OVTK_StimulationId_Label_00</DefaultValue>
  2102. <Value>OVTK_StimulationId_ExperimentStop</Value>
  2103. <Modifiability>false</Modifiability>
  2104. </Setting>
  2105. <Setting>
  2106. <TypeIdentifier>(0xcc14d8d6, 0xf27ecb73)</TypeIdentifier>
  2107. <Name>Action to perform</Name>
  2108. <DefaultValue>Pause</DefaultValue>
  2109. <Value>Stop</Value>
  2110. <Modifiability>false</Modifiability>
  2111. </Setting>
  2112. </Settings>
  2113. <Attributes>
  2114. <Attribute>
  2115. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2116. <Value>624</Value>
  2117. </Attribute>
  2118. <Attribute>
  2119. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2120. <Value>1184</Value>
  2121. </Attribute>
  2122. <Attribute>
  2123. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2124. <Value>(0x568d148e, 0x650792b3)</Value>
  2125. </Attribute>
  2126. <Attribute>
  2127. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  2128. <Value>(0x00000000, 0x002de35c)</Value>
  2129. </Attribute>
  2130. <Attribute>
  2131. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2132. <Value>2</Value>
  2133. </Attribute>
  2134. <Attribute>
  2135. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2136. <Value>1</Value>
  2137. </Attribute>
  2138. </Attributes>
  2139. </Box>
  2140. <Box>
  2141. <Identifier>(0x3840709a, 0x3442f13a)</Identifier>
  2142. <Name>Time based epoching</Name>
  2143. <AlgorithmClassIdentifier>(0x00777fa0, 0x5dc3f560)</AlgorithmClassIdentifier>
  2144. <Inputs>
  2145. <Input>
  2146. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2147. <Name>Input signal</Name>
  2148. </Input>
  2149. </Inputs>
  2150. <Outputs>
  2151. <Output>
  2152. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2153. <Name>Epoched signal 1</Name>
  2154. </Output>
  2155. </Outputs>
  2156. <Settings>
  2157. <Setting>
  2158. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2159. <Name>Epoch 1 duration (in sec)</Name>
  2160. <DefaultValue>1</DefaultValue>
  2161. <Value>$var{Epoch Duration}</Value>
  2162. <Modifiability>false</Modifiability>
  2163. </Setting>
  2164. <Setting>
  2165. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2166. <Name>Epoch 1 intervals (in sec)</Name>
  2167. <DefaultValue>0.5</DefaultValue>
  2168. <Value>$var{Epoch Offset}</Value>
  2169. <Modifiability>false</Modifiability>
  2170. </Setting>
  2171. </Settings>
  2172. <Attributes>
  2173. <Attribute>
  2174. <Identifier>(0x17ee7c08, 0x94c14893)</Identifier>
  2175. <Value></Value>
  2176. </Attribute>
  2177. <Attribute>
  2178. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2179. <Value>160</Value>
  2180. </Attribute>
  2181. <Attribute>
  2182. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2183. <Value>976</Value>
  2184. </Attribute>
  2185. <Attribute>
  2186. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2187. <Value>(0xc5ff41e9, 0xccc59a01)</Value>
  2188. </Attribute>
  2189. <Attribute>
  2190. <Identifier>(0xc46b3d00, 0x3e0454e1)</Identifier>
  2191. <Value>(0x00000000, 0x006bdf4b)</Value>
  2192. </Attribute>
  2193. </Attributes>
  2194. </Box>
  2195. <Box>
  2196. <Identifier>(0x38f7f16e, 0x716e5783)</Identifier>
  2197. <Name>4-8</Name>
  2198. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2199. <Inputs>
  2200. <Input>
  2201. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2202. <Name>Input signal</Name>
  2203. </Input>
  2204. </Inputs>
  2205. <Outputs>
  2206. <Output>
  2207. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2208. <Name>Filtered signal</Name>
  2209. </Output>
  2210. </Outputs>
  2211. <Settings>
  2212. <Setting>
  2213. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2214. <Name>Filter method</Name>
  2215. <DefaultValue>Butterworth</DefaultValue>
  2216. <Value>Butterworth</Value>
  2217. <Modifiability>false</Modifiability>
  2218. </Setting>
  2219. <Setting>
  2220. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2221. <Name>Filter type</Name>
  2222. <DefaultValue>Band pass</DefaultValue>
  2223. <Value>Band pass</Value>
  2224. <Modifiability>false</Modifiability>
  2225. </Setting>
  2226. <Setting>
  2227. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2228. <Name>Filter order</Name>
  2229. <DefaultValue>4</DefaultValue>
  2230. <Value>5</Value>
  2231. <Modifiability>false</Modifiability>
  2232. </Setting>
  2233. <Setting>
  2234. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2235. <Name>Low cut frequency (Hz)</Name>
  2236. <DefaultValue>29</DefaultValue>
  2237. <Value>4</Value>
  2238. <Modifiability>false</Modifiability>
  2239. </Setting>
  2240. <Setting>
  2241. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2242. <Name>High cut frequency (Hz)</Name>
  2243. <DefaultValue>40</DefaultValue>
  2244. <Value>8</Value>
  2245. <Modifiability>false</Modifiability>
  2246. </Setting>
  2247. <Setting>
  2248. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2249. <Name>Pass band ripple (dB)</Name>
  2250. <DefaultValue>0.5</DefaultValue>
  2251. <Value>1</Value>
  2252. <Modifiability>false</Modifiability>
  2253. </Setting>
  2254. </Settings>
  2255. <Attributes>
  2256. <Attribute>
  2257. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2258. <Value>-112</Value>
  2259. </Attribute>
  2260. <Attribute>
  2261. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2262. <Value>592</Value>
  2263. </Attribute>
  2264. <Attribute>
  2265. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2266. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2267. </Attribute>
  2268. <Attribute>
  2269. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2270. <Value>1</Value>
  2271. </Attribute>
  2272. <Attribute>
  2273. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2274. <Value>6</Value>
  2275. </Attribute>
  2276. <Attribute>
  2277. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2278. <Value>1</Value>
  2279. </Attribute>
  2280. </Attributes>
  2281. </Box>
  2282. <Box>
  2283. <Identifier>(0x38f7f16e, 0x716e5784)</Identifier>
  2284. <Name>8-12</Name>
  2285. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2286. <Inputs>
  2287. <Input>
  2288. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2289. <Name>Input signal</Name>
  2290. </Input>
  2291. </Inputs>
  2292. <Outputs>
  2293. <Output>
  2294. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2295. <Name>Filtered signal</Name>
  2296. </Output>
  2297. </Outputs>
  2298. <Settings>
  2299. <Setting>
  2300. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2301. <Name>Filter method</Name>
  2302. <DefaultValue>Butterworth</DefaultValue>
  2303. <Value>Butterworth</Value>
  2304. <Modifiability>false</Modifiability>
  2305. </Setting>
  2306. <Setting>
  2307. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2308. <Name>Filter type</Name>
  2309. <DefaultValue>Band pass</DefaultValue>
  2310. <Value>Band pass</Value>
  2311. <Modifiability>false</Modifiability>
  2312. </Setting>
  2313. <Setting>
  2314. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2315. <Name>Filter order</Name>
  2316. <DefaultValue>4</DefaultValue>
  2317. <Value>5</Value>
  2318. <Modifiability>false</Modifiability>
  2319. </Setting>
  2320. <Setting>
  2321. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2322. <Name>Low cut frequency (Hz)</Name>
  2323. <DefaultValue>29</DefaultValue>
  2324. <Value>8</Value>
  2325. <Modifiability>false</Modifiability>
  2326. </Setting>
  2327. <Setting>
  2328. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2329. <Name>High cut frequency (Hz)</Name>
  2330. <DefaultValue>40</DefaultValue>
  2331. <Value>12</Value>
  2332. <Modifiability>false</Modifiability>
  2333. </Setting>
  2334. <Setting>
  2335. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2336. <Name>Pass band ripple (dB)</Name>
  2337. <DefaultValue>0.5</DefaultValue>
  2338. <Value>1</Value>
  2339. <Modifiability>false</Modifiability>
  2340. </Setting>
  2341. </Settings>
  2342. <Attributes>
  2343. <Attribute>
  2344. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2345. <Value>-112</Value>
  2346. </Attribute>
  2347. <Attribute>
  2348. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2349. <Value>688</Value>
  2350. </Attribute>
  2351. <Attribute>
  2352. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2353. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2354. </Attribute>
  2355. <Attribute>
  2356. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2357. <Value>1</Value>
  2358. </Attribute>
  2359. <Attribute>
  2360. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2361. <Value>6</Value>
  2362. </Attribute>
  2363. <Attribute>
  2364. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2365. <Value>1</Value>
  2366. </Attribute>
  2367. </Attributes>
  2368. </Box>
  2369. <Box>
  2370. <Identifier>(0x38f7f16e, 0x716e5785)</Identifier>
  2371. <Name>12-16</Name>
  2372. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2373. <Inputs>
  2374. <Input>
  2375. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2376. <Name>Input signal</Name>
  2377. </Input>
  2378. </Inputs>
  2379. <Outputs>
  2380. <Output>
  2381. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2382. <Name>Filtered signal</Name>
  2383. </Output>
  2384. </Outputs>
  2385. <Settings>
  2386. <Setting>
  2387. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2388. <Name>Filter method</Name>
  2389. <DefaultValue>Butterworth</DefaultValue>
  2390. <Value>Butterworth</Value>
  2391. <Modifiability>false</Modifiability>
  2392. </Setting>
  2393. <Setting>
  2394. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2395. <Name>Filter type</Name>
  2396. <DefaultValue>Band pass</DefaultValue>
  2397. <Value>Band pass</Value>
  2398. <Modifiability>false</Modifiability>
  2399. </Setting>
  2400. <Setting>
  2401. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2402. <Name>Filter order</Name>
  2403. <DefaultValue>4</DefaultValue>
  2404. <Value>5</Value>
  2405. <Modifiability>false</Modifiability>
  2406. </Setting>
  2407. <Setting>
  2408. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2409. <Name>Low cut frequency (Hz)</Name>
  2410. <DefaultValue>29</DefaultValue>
  2411. <Value>12</Value>
  2412. <Modifiability>false</Modifiability>
  2413. </Setting>
  2414. <Setting>
  2415. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2416. <Name>High cut frequency (Hz)</Name>
  2417. <DefaultValue>40</DefaultValue>
  2418. <Value>16</Value>
  2419. <Modifiability>false</Modifiability>
  2420. </Setting>
  2421. <Setting>
  2422. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2423. <Name>Pass band ripple (dB)</Name>
  2424. <DefaultValue>0.5</DefaultValue>
  2425. <Value>1</Value>
  2426. <Modifiability>false</Modifiability>
  2427. </Setting>
  2428. </Settings>
  2429. <Attributes>
  2430. <Attribute>
  2431. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2432. <Value>-112</Value>
  2433. </Attribute>
  2434. <Attribute>
  2435. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2436. <Value>784</Value>
  2437. </Attribute>
  2438. <Attribute>
  2439. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2440. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2441. </Attribute>
  2442. <Attribute>
  2443. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2444. <Value>1</Value>
  2445. </Attribute>
  2446. <Attribute>
  2447. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2448. <Value>6</Value>
  2449. </Attribute>
  2450. <Attribute>
  2451. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2452. <Value>1</Value>
  2453. </Attribute>
  2454. </Attributes>
  2455. </Box>
  2456. <Box>
  2457. <Identifier>(0x38f7f16e, 0x716e5786)</Identifier>
  2458. <Name>16-20</Name>
  2459. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2460. <Inputs>
  2461. <Input>
  2462. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2463. <Name>Input signal</Name>
  2464. </Input>
  2465. </Inputs>
  2466. <Outputs>
  2467. <Output>
  2468. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2469. <Name>Filtered signal</Name>
  2470. </Output>
  2471. </Outputs>
  2472. <Settings>
  2473. <Setting>
  2474. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2475. <Name>Filter method</Name>
  2476. <DefaultValue>Butterworth</DefaultValue>
  2477. <Value>Butterworth</Value>
  2478. <Modifiability>false</Modifiability>
  2479. </Setting>
  2480. <Setting>
  2481. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2482. <Name>Filter type</Name>
  2483. <DefaultValue>Band pass</DefaultValue>
  2484. <Value>Band pass</Value>
  2485. <Modifiability>false</Modifiability>
  2486. </Setting>
  2487. <Setting>
  2488. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2489. <Name>Filter order</Name>
  2490. <DefaultValue>4</DefaultValue>
  2491. <Value>5</Value>
  2492. <Modifiability>false</Modifiability>
  2493. </Setting>
  2494. <Setting>
  2495. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2496. <Name>Low cut frequency (Hz)</Name>
  2497. <DefaultValue>29</DefaultValue>
  2498. <Value>16</Value>
  2499. <Modifiability>false</Modifiability>
  2500. </Setting>
  2501. <Setting>
  2502. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2503. <Name>High cut frequency (Hz)</Name>
  2504. <DefaultValue>40</DefaultValue>
  2505. <Value>20</Value>
  2506. <Modifiability>false</Modifiability>
  2507. </Setting>
  2508. <Setting>
  2509. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2510. <Name>Pass band ripple (dB)</Name>
  2511. <DefaultValue>0.5</DefaultValue>
  2512. <Value>1</Value>
  2513. <Modifiability>false</Modifiability>
  2514. </Setting>
  2515. </Settings>
  2516. <Attributes>
  2517. <Attribute>
  2518. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2519. <Value>-112</Value>
  2520. </Attribute>
  2521. <Attribute>
  2522. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2523. <Value>880</Value>
  2524. </Attribute>
  2525. <Attribute>
  2526. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2527. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2528. </Attribute>
  2529. <Attribute>
  2530. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2531. <Value>1</Value>
  2532. </Attribute>
  2533. <Attribute>
  2534. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2535. <Value>6</Value>
  2536. </Attribute>
  2537. <Attribute>
  2538. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2539. <Value>1</Value>
  2540. </Attribute>
  2541. </Attributes>
  2542. </Box>
  2543. <Box>
  2544. <Identifier>(0x38f7f16e, 0x716e5787)</Identifier>
  2545. <Name>20-24</Name>
  2546. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2547. <Inputs>
  2548. <Input>
  2549. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2550. <Name>Input signal</Name>
  2551. </Input>
  2552. </Inputs>
  2553. <Outputs>
  2554. <Output>
  2555. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2556. <Name>Filtered signal</Name>
  2557. </Output>
  2558. </Outputs>
  2559. <Settings>
  2560. <Setting>
  2561. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2562. <Name>Filter method</Name>
  2563. <DefaultValue>Butterworth</DefaultValue>
  2564. <Value>Butterworth</Value>
  2565. <Modifiability>false</Modifiability>
  2566. </Setting>
  2567. <Setting>
  2568. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2569. <Name>Filter type</Name>
  2570. <DefaultValue>Band pass</DefaultValue>
  2571. <Value>Band pass</Value>
  2572. <Modifiability>false</Modifiability>
  2573. </Setting>
  2574. <Setting>
  2575. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2576. <Name>Filter order</Name>
  2577. <DefaultValue>4</DefaultValue>
  2578. <Value>5</Value>
  2579. <Modifiability>false</Modifiability>
  2580. </Setting>
  2581. <Setting>
  2582. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2583. <Name>Low cut frequency (Hz)</Name>
  2584. <DefaultValue>29</DefaultValue>
  2585. <Value>20</Value>
  2586. <Modifiability>false</Modifiability>
  2587. </Setting>
  2588. <Setting>
  2589. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2590. <Name>High cut frequency (Hz)</Name>
  2591. <DefaultValue>40</DefaultValue>
  2592. <Value>24</Value>
  2593. <Modifiability>false</Modifiability>
  2594. </Setting>
  2595. <Setting>
  2596. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2597. <Name>Pass band ripple (dB)</Name>
  2598. <DefaultValue>0.5</DefaultValue>
  2599. <Value>1</Value>
  2600. <Modifiability>false</Modifiability>
  2601. </Setting>
  2602. </Settings>
  2603. <Attributes>
  2604. <Attribute>
  2605. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2606. <Value>-112</Value>
  2607. </Attribute>
  2608. <Attribute>
  2609. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2610. <Value>976</Value>
  2611. </Attribute>
  2612. <Attribute>
  2613. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2614. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2615. </Attribute>
  2616. <Attribute>
  2617. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2618. <Value>1</Value>
  2619. </Attribute>
  2620. <Attribute>
  2621. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2622. <Value>6</Value>
  2623. </Attribute>
  2624. <Attribute>
  2625. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2626. <Value>1</Value>
  2627. </Attribute>
  2628. </Attributes>
  2629. </Box>
  2630. <Box>
  2631. <Identifier>(0x38f7f16e, 0x716e5788)</Identifier>
  2632. <Name>24-28</Name>
  2633. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2634. <Inputs>
  2635. <Input>
  2636. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2637. <Name>Input signal</Name>
  2638. </Input>
  2639. </Inputs>
  2640. <Outputs>
  2641. <Output>
  2642. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2643. <Name>Filtered signal</Name>
  2644. </Output>
  2645. </Outputs>
  2646. <Settings>
  2647. <Setting>
  2648. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2649. <Name>Filter method</Name>
  2650. <DefaultValue>Butterworth</DefaultValue>
  2651. <Value>Butterworth</Value>
  2652. <Modifiability>false</Modifiability>
  2653. </Setting>
  2654. <Setting>
  2655. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2656. <Name>Filter type</Name>
  2657. <DefaultValue>Band pass</DefaultValue>
  2658. <Value>Band pass</Value>
  2659. <Modifiability>false</Modifiability>
  2660. </Setting>
  2661. <Setting>
  2662. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2663. <Name>Filter order</Name>
  2664. <DefaultValue>4</DefaultValue>
  2665. <Value>5</Value>
  2666. <Modifiability>false</Modifiability>
  2667. </Setting>
  2668. <Setting>
  2669. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2670. <Name>Low cut frequency (Hz)</Name>
  2671. <DefaultValue>29</DefaultValue>
  2672. <Value>24</Value>
  2673. <Modifiability>false</Modifiability>
  2674. </Setting>
  2675. <Setting>
  2676. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2677. <Name>High cut frequency (Hz)</Name>
  2678. <DefaultValue>40</DefaultValue>
  2679. <Value>28</Value>
  2680. <Modifiability>false</Modifiability>
  2681. </Setting>
  2682. <Setting>
  2683. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2684. <Name>Pass band ripple (dB)</Name>
  2685. <DefaultValue>0.5</DefaultValue>
  2686. <Value>1</Value>
  2687. <Modifiability>false</Modifiability>
  2688. </Setting>
  2689. </Settings>
  2690. <Attributes>
  2691. <Attribute>
  2692. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2693. <Value>-112</Value>
  2694. </Attribute>
  2695. <Attribute>
  2696. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2697. <Value>1072</Value>
  2698. </Attribute>
  2699. <Attribute>
  2700. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2701. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2702. </Attribute>
  2703. <Attribute>
  2704. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2705. <Value>1</Value>
  2706. </Attribute>
  2707. <Attribute>
  2708. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2709. <Value>6</Value>
  2710. </Attribute>
  2711. <Attribute>
  2712. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2713. <Value>1</Value>
  2714. </Attribute>
  2715. </Attributes>
  2716. </Box>
  2717. <Box>
  2718. <Identifier>(0x38f7f16e, 0x716e5789)</Identifier>
  2719. <Name>28-32</Name>
  2720. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2721. <Inputs>
  2722. <Input>
  2723. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2724. <Name>Input signal</Name>
  2725. </Input>
  2726. </Inputs>
  2727. <Outputs>
  2728. <Output>
  2729. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2730. <Name>Filtered signal</Name>
  2731. </Output>
  2732. </Outputs>
  2733. <Settings>
  2734. <Setting>
  2735. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2736. <Name>Filter method</Name>
  2737. <DefaultValue>Butterworth</DefaultValue>
  2738. <Value>Butterworth</Value>
  2739. <Modifiability>false</Modifiability>
  2740. </Setting>
  2741. <Setting>
  2742. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2743. <Name>Filter type</Name>
  2744. <DefaultValue>Band pass</DefaultValue>
  2745. <Value>Band pass</Value>
  2746. <Modifiability>false</Modifiability>
  2747. </Setting>
  2748. <Setting>
  2749. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2750. <Name>Filter order</Name>
  2751. <DefaultValue>4</DefaultValue>
  2752. <Value>5</Value>
  2753. <Modifiability>false</Modifiability>
  2754. </Setting>
  2755. <Setting>
  2756. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2757. <Name>Low cut frequency (Hz)</Name>
  2758. <DefaultValue>29</DefaultValue>
  2759. <Value>28</Value>
  2760. <Modifiability>false</Modifiability>
  2761. </Setting>
  2762. <Setting>
  2763. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2764. <Name>High cut frequency (Hz)</Name>
  2765. <DefaultValue>40</DefaultValue>
  2766. <Value>32</Value>
  2767. <Modifiability>false</Modifiability>
  2768. </Setting>
  2769. <Setting>
  2770. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2771. <Name>Pass band ripple (dB)</Name>
  2772. <DefaultValue>0.5</DefaultValue>
  2773. <Value>1</Value>
  2774. <Modifiability>false</Modifiability>
  2775. </Setting>
  2776. </Settings>
  2777. <Attributes>
  2778. <Attribute>
  2779. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2780. <Value>-112</Value>
  2781. </Attribute>
  2782. <Attribute>
  2783. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2784. <Value>1168</Value>
  2785. </Attribute>
  2786. <Attribute>
  2787. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2788. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2789. </Attribute>
  2790. <Attribute>
  2791. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2792. <Value>1</Value>
  2793. </Attribute>
  2794. <Attribute>
  2795. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2796. <Value>6</Value>
  2797. </Attribute>
  2798. <Attribute>
  2799. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2800. <Value>1</Value>
  2801. </Attribute>
  2802. </Attributes>
  2803. </Box>
  2804. <Box>
  2805. <Identifier>(0x38f7f16e, 0x716e578a)</Identifier>
  2806. <Name>32-36</Name>
  2807. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2808. <Inputs>
  2809. <Input>
  2810. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2811. <Name>Input signal</Name>
  2812. </Input>
  2813. </Inputs>
  2814. <Outputs>
  2815. <Output>
  2816. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2817. <Name>Filtered signal</Name>
  2818. </Output>
  2819. </Outputs>
  2820. <Settings>
  2821. <Setting>
  2822. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2823. <Name>Filter method</Name>
  2824. <DefaultValue>Butterworth</DefaultValue>
  2825. <Value>Butterworth</Value>
  2826. <Modifiability>false</Modifiability>
  2827. </Setting>
  2828. <Setting>
  2829. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2830. <Name>Filter type</Name>
  2831. <DefaultValue>Band pass</DefaultValue>
  2832. <Value>Band pass</Value>
  2833. <Modifiability>false</Modifiability>
  2834. </Setting>
  2835. <Setting>
  2836. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2837. <Name>Filter order</Name>
  2838. <DefaultValue>4</DefaultValue>
  2839. <Value>5</Value>
  2840. <Modifiability>false</Modifiability>
  2841. </Setting>
  2842. <Setting>
  2843. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2844. <Name>Low cut frequency (Hz)</Name>
  2845. <DefaultValue>29</DefaultValue>
  2846. <Value>32</Value>
  2847. <Modifiability>false</Modifiability>
  2848. </Setting>
  2849. <Setting>
  2850. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2851. <Name>High cut frequency (Hz)</Name>
  2852. <DefaultValue>40</DefaultValue>
  2853. <Value>36</Value>
  2854. <Modifiability>false</Modifiability>
  2855. </Setting>
  2856. <Setting>
  2857. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2858. <Name>Pass band ripple (dB)</Name>
  2859. <DefaultValue>0.5</DefaultValue>
  2860. <Value>1</Value>
  2861. <Modifiability>false</Modifiability>
  2862. </Setting>
  2863. </Settings>
  2864. <Attributes>
  2865. <Attribute>
  2866. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2867. <Value>-112</Value>
  2868. </Attribute>
  2869. <Attribute>
  2870. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2871. <Value>1264</Value>
  2872. </Attribute>
  2873. <Attribute>
  2874. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2875. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2876. </Attribute>
  2877. <Attribute>
  2878. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2879. <Value>1</Value>
  2880. </Attribute>
  2881. <Attribute>
  2882. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2883. <Value>6</Value>
  2884. </Attribute>
  2885. <Attribute>
  2886. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2887. <Value>1</Value>
  2888. </Attribute>
  2889. </Attributes>
  2890. </Box>
  2891. <Box>
  2892. <Identifier>(0x38f7f16e, 0x716e578b)</Identifier>
  2893. <Name>36-40</Name>
  2894. <AlgorithmClassIdentifier>(0xb4f9d042, 0x9d79f2e5)</AlgorithmClassIdentifier>
  2895. <Inputs>
  2896. <Input>
  2897. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2898. <Name>Input signal</Name>
  2899. </Input>
  2900. </Inputs>
  2901. <Outputs>
  2902. <Output>
  2903. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  2904. <Name>Filtered signal</Name>
  2905. </Output>
  2906. </Outputs>
  2907. <Settings>
  2908. <Setting>
  2909. <TypeIdentifier>(0x2f2c606c, 0x8512ed68)</TypeIdentifier>
  2910. <Name>Filter method</Name>
  2911. <DefaultValue>Butterworth</DefaultValue>
  2912. <Value>Butterworth</Value>
  2913. <Modifiability>false</Modifiability>
  2914. </Setting>
  2915. <Setting>
  2916. <TypeIdentifier>(0xfa20178e, 0x4cba62e9)</TypeIdentifier>
  2917. <Name>Filter type</Name>
  2918. <DefaultValue>Band pass</DefaultValue>
  2919. <Value>Band pass</Value>
  2920. <Modifiability>false</Modifiability>
  2921. </Setting>
  2922. <Setting>
  2923. <TypeIdentifier>(0x007deef9, 0x2f3e95c6)</TypeIdentifier>
  2924. <Name>Filter order</Name>
  2925. <DefaultValue>4</DefaultValue>
  2926. <Value>5</Value>
  2927. <Modifiability>false</Modifiability>
  2928. </Setting>
  2929. <Setting>
  2930. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2931. <Name>Low cut frequency (Hz)</Name>
  2932. <DefaultValue>29</DefaultValue>
  2933. <Value>36</Value>
  2934. <Modifiability>false</Modifiability>
  2935. </Setting>
  2936. <Setting>
  2937. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2938. <Name>High cut frequency (Hz)</Name>
  2939. <DefaultValue>40</DefaultValue>
  2940. <Value>40</Value>
  2941. <Modifiability>false</Modifiability>
  2942. </Setting>
  2943. <Setting>
  2944. <TypeIdentifier>(0x512a166f, 0x5c3ef83f)</TypeIdentifier>
  2945. <Name>Pass band ripple (dB)</Name>
  2946. <DefaultValue>0.5</DefaultValue>
  2947. <Value>1</Value>
  2948. <Modifiability>false</Modifiability>
  2949. </Setting>
  2950. </Settings>
  2951. <Attributes>
  2952. <Attribute>
  2953. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  2954. <Value>-112</Value>
  2955. </Attribute>
  2956. <Attribute>
  2957. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  2958. <Value>1360</Value>
  2959. </Attribute>
  2960. <Attribute>
  2961. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  2962. <Value>(0x27a4ceec, 0x876d6384)</Value>
  2963. </Attribute>
  2964. <Attribute>
  2965. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  2966. <Value>1</Value>
  2967. </Attribute>
  2968. <Attribute>
  2969. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  2970. <Value>6</Value>
  2971. </Attribute>
  2972. <Attribute>
  2973. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  2974. <Value>1</Value>
  2975. </Attribute>
  2976. </Attributes>
  2977. </Box>
  2978. <Box>
  2979. <Identifier>(0x5e704572, 0x05e86e99)</Identifier>
  2980. <Name>Classifier processor</Name>
  2981. <AlgorithmClassIdentifier>(0x5fe23d17, 0x95b0452c)</AlgorithmClassIdentifier>
  2982. <Inputs>
  2983. <Input>
  2984. <TypeIdentifier>(0x17341935, 0x152ff448)</TypeIdentifier>
  2985. <Name>Features</Name>
  2986. </Input>
  2987. <Input>
  2988. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  2989. <Name>Commands</Name>
  2990. </Input>
  2991. </Inputs>
  2992. <Outputs>
  2993. <Output>
  2994. <TypeIdentifier>(0x6f752dd0, 0x082a321e)</TypeIdentifier>
  2995. <Name>Labels</Name>
  2996. </Output>
  2997. <Output>
  2998. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  2999. <Name>Hyperplane distance</Name>
  3000. </Output>
  3001. <Output>
  3002. <TypeIdentifier>(0x544a003e, 0x6dcba5f6)</TypeIdentifier>
  3003. <Name>Probability values</Name>
  3004. </Output>
  3005. </Outputs>
  3006. <Settings>
  3007. <Setting>
  3008. <TypeIdentifier>(0x330306dd, 0x74a95f98)</TypeIdentifier>
  3009. <Name>Filename to load configuration from</Name>
  3010. <DefaultValue></DefaultValue>
  3011. <Value>$var{Scripts Path}/classifier.xml</Value>
  3012. <Modifiability>false</Modifiability>
  3013. </Setting>
  3014. </Settings>
  3015. <Attributes>
  3016. <Attribute>
  3017. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  3018. <Value>528</Value>
  3019. </Attribute>
  3020. <Attribute>
  3021. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  3022. <Value>976</Value>
  3023. </Attribute>
  3024. <Attribute>
  3025. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  3026. <Value>(0xa6c8e548, 0x9e3e405b)</Value>
  3027. </Attribute>
  3028. <Attribute>
  3029. <Identifier>(0xc73e83ec, 0xf855c5bc)</Identifier>
  3030. <Value>false</Value>
  3031. </Attribute>
  3032. <Attribute>
  3033. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  3034. <Value>3</Value>
  3035. </Attribute>
  3036. <Attribute>
  3037. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  3038. <Value>1</Value>
  3039. </Attribute>
  3040. <Attribute>
  3041. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  3042. <Value>2</Value>
  3043. </Attribute>
  3044. </Attributes>
  3045. </Box>
  3046. <Box>
  3047. <Identifier>(0x602bbc4d, 0x5f35c1a9)</Identifier>
  3048. <Name>x²</Name>
  3049. <AlgorithmClassIdentifier>(0x00e26fa1, 0x1dbab1b2)</AlgorithmClassIdentifier>
  3050. <Inputs>
  3051. <Input>
  3052. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  3053. <Name>Input - A</Name>
  3054. </Input>
  3055. </Inputs>
  3056. <Outputs>
  3057. <Output>
  3058. <TypeIdentifier>(0x5ba36127, 0x195feae1)</TypeIdentifier>
  3059. <Name>Output</Name>
  3060. </Output>
  3061. </Outputs>
  3062. <Settings>
  3063. <Setting>
  3064. <TypeIdentifier>(0x79a9edeb, 0x245d83fc)</TypeIdentifier>
  3065. <Name>Equation</Name>
  3066. <DefaultValue>x</DefaultValue>
  3067. <Value>x*x</Value>
  3068. <Modifiability>false</Modifiability>
  3069. </Setting>
  3070. </Settings>
  3071. <Attributes>
  3072. <Attribute>
  3073. <Identifier>(0x1fa7a38f, 0x54edbe0b)</Identifier>
  3074. <Value>224</Value>
  3075. </Attribute>
  3076. <Attribute>
  3077. <Identifier>(0x207c9054, 0x3c841b63)</Identifier>
  3078. <Value>976</Value>
  3079. </Attribute>
  3080. <Attribute>
  3081. <Identifier>(0x30a4e5c9, 0x83502953)</Identifier>
  3082. <Value></Value>
  3083. </Attribute>
  3084. <Attribute>
  3085. <Identifier>(0x4e7b798a, 0x183beafb)</Identifier>
  3086. <Value>(0x21889dc4, 0x1126497e)</Value>
  3087. </Attribute>
  3088. <Attribute>
  3089. <Identifier>(0x527ad68d, 0x16d746a0)</Identifier>
  3090. <Value></Value>
  3091. </Attribute>
  3092. <Attribute>
  3093. <Identifier>(0xc80ce8af, 0xf699f813)</Identifier>
  3094. <Value>1</Value>
  3095. </Attribute>
  3096. <Attribute>
  3097. <Identifier>(0xce18836a, 0x9c0eb403)</Identifier>
  3098. <Value>1</Value>
  3099. </Attribute>
  3100. <Attribute>
  3101. <Identifier>(0xcfad85b0, 0x7c6d841c)</Identifier>
  3102. <Value>1</Value>
  3103. </Attribute>
  3104. <Attribute>
  3105. <Identifier>(0xfba64161, 0x65304e21)</Identifier>
  3106. <Value></Value>
  3107. </Attribute>
  3108. </Attributes>
  3109. </Box>
  3110. </Boxes>
  3111. <Links>
  3112. <Link>
  3113. <Identifier>(0x00000904, 0x0000009a)</Identifier>
  3114. <Source>
  3115. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3116. <BoxOutputIndex>0</BoxOutputIndex>
  3117. </Source>
  3118. <Target>
  3119. <BoxIdentifier>(0x38f7f16e, 0x716e578b)</BoxIdentifier>
  3120. <BoxInputIndex>0</BoxInputIndex>
  3121. </Target>
  3122. </Link>
  3123. <Link>
  3124. <Identifier>(0x00000c70, 0x0000597e)</Identifier>
  3125. <Source>
  3126. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3127. <BoxOutputIndex>0</BoxOutputIndex>
  3128. </Source>
  3129. <Target>
  3130. <BoxIdentifier>(0x3840709a, 0x3442f13a)</BoxIdentifier>
  3131. <BoxInputIndex>0</BoxInputIndex>
  3132. </Target>
  3133. </Link>
  3134. <Link>
  3135. <Identifier>(0x00000d4c, 0x00004008)</Identifier>
  3136. <Source>
  3137. <BoxIdentifier>(0x038cae1a, 0x03e0da6a)</BoxIdentifier>
  3138. <BoxOutputIndex>0</BoxOutputIndex>
  3139. </Source>
  3140. <Target>
  3141. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3142. <BoxInputIdentifier>(0xb830b8b1, 0xa74de4f5)</BoxInputIdentifier>
  3143. </Target>
  3144. </Link>
  3145. <Link>
  3146. <Identifier>(0x000011be, 0x000045cc)</Identifier>
  3147. <Source>
  3148. <BoxIdentifier>(0x000065a7, 0x00000787)</BoxIdentifier>
  3149. <BoxOutputIndex>0</BoxOutputIndex>
  3150. </Source>
  3151. <Target>
  3152. <BoxIdentifier>(0x00004390, 0x000055c5)</BoxIdentifier>
  3153. <BoxInputIndex>1</BoxInputIndex>
  3154. </Target>
  3155. </Link>
  3156. <Link>
  3157. <Identifier>(0x000012ce, 0x00007d5c)</Identifier>
  3158. <Source>
  3159. <BoxIdentifier>(0x000040a1, 0x00002f8d)</BoxIdentifier>
  3160. <BoxOutputIndex>0</BoxOutputIndex>
  3161. </Source>
  3162. <Target>
  3163. <BoxIdentifier>(0x5e704572, 0x05e86e99)</BoxIdentifier>
  3164. <BoxInputIndex>0</BoxInputIndex>
  3165. </Target>
  3166. </Link>
  3167. <Link>
  3168. <Identifier>(0x00001f90, 0x0000448e)</Identifier>
  3169. <Source>
  3170. <BoxIdentifier>(0x000065a7, 0x00000787)</BoxIdentifier>
  3171. <BoxOutputIndex>0</BoxOutputIndex>
  3172. </Source>
  3173. <Target>
  3174. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3175. <BoxInputIndex>0</BoxInputIndex>
  3176. </Target>
  3177. </Link>
  3178. <Link>
  3179. <Identifier>(0x0000203b, 0x000026a7)</Identifier>
  3180. <Source>
  3181. <BoxIdentifier>(0x038cae1a, 0x03e0da66)</BoxIdentifier>
  3182. <BoxOutputIndex>0</BoxOutputIndex>
  3183. </Source>
  3184. <Target>
  3185. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3186. <BoxInputIdentifier>(0xf031835f, 0xfd499f54)</BoxInputIdentifier>
  3187. </Target>
  3188. </Link>
  3189. <Link>
  3190. <Identifier>(0x00002541, 0x00001634)</Identifier>
  3191. <Source>
  3192. <BoxIdentifier>(0x00007442, 0x00001fd0)</BoxIdentifier>
  3193. <BoxOutputIndex>0</BoxOutputIndex>
  3194. </Source>
  3195. <Target>
  3196. <BoxIdentifier>(0x000040a1, 0x00002f8d)</BoxIdentifier>
  3197. <BoxInputIndex>0</BoxInputIndex>
  3198. </Target>
  3199. </Link>
  3200. <Link>
  3201. <Identifier>(0x00002543, 0x0000104a)</Identifier>
  3202. <Source>
  3203. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3204. <BoxOutputIndex>0</BoxOutputIndex>
  3205. </Source>
  3206. <Target>
  3207. <BoxIdentifier>(0x38f7f16e, 0x716e5789)</BoxIdentifier>
  3208. <BoxInputIndex>0</BoxInputIndex>
  3209. </Target>
  3210. </Link>
  3211. <Link>
  3212. <Identifier>(0x00002e4f, 0x00000908)</Identifier>
  3213. <Source>
  3214. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3215. <BoxOutputIndex>0</BoxOutputIndex>
  3216. </Source>
  3217. <Target>
  3218. <BoxIdentifier>(0x38f7f16e, 0x716e578a)</BoxIdentifier>
  3219. <BoxInputIndex>0</BoxInputIndex>
  3220. </Target>
  3221. </Link>
  3222. <Link>
  3223. <Identifier>(0x00002e60, 0x00004221)</Identifier>
  3224. <Source>
  3225. <BoxIdentifier>(0x00002a20, 0x00000cc4)</BoxIdentifier>
  3226. <BoxOutputIndex>0</BoxOutputIndex>
  3227. </Source>
  3228. <Target>
  3229. <BoxIdentifier>(0x00004b91, 0x00002aea)</BoxIdentifier>
  3230. <BoxInputIndex>0</BoxInputIndex>
  3231. </Target>
  3232. </Link>
  3233. <Link>
  3234. <Identifier>(0x00002fc5, 0x00000fea)</Identifier>
  3235. <Source>
  3236. <BoxIdentifier>(0x00002a20, 0x00000cc4)</BoxIdentifier>
  3237. <BoxOutputIndex>0</BoxOutputIndex>
  3238. </Source>
  3239. <Target>
  3240. <BoxIdentifier>(0x24757b65, 0x29027b70)</BoxIdentifier>
  3241. <BoxInputIndex>0</BoxInputIndex>
  3242. </Target>
  3243. </Link>
  3244. <Link>
  3245. <Identifier>(0x000033c9, 0x00000120)</Identifier>
  3246. <Source>
  3247. <BoxIdentifier>(0x5e704572, 0x05e86e99)</BoxIdentifier>
  3248. <BoxOutputIndex>1</BoxOutputIndex>
  3249. </Source>
  3250. <Target>
  3251. <BoxIdentifier>(0x00005511, 0x00002f0c)</BoxIdentifier>
  3252. <BoxInputIndex>1</BoxInputIndex>
  3253. </Target>
  3254. </Link>
  3255. <Link>
  3256. <Identifier>(0x00003e8e, 0x000039f0)</Identifier>
  3257. <Source>
  3258. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3259. <BoxOutputIndex>0</BoxOutputIndex>
  3260. </Source>
  3261. <Target>
  3262. <BoxIdentifier>(0x38f7f16e, 0x716e5786)</BoxIdentifier>
  3263. <BoxInputIndex>0</BoxInputIndex>
  3264. </Target>
  3265. </Link>
  3266. <Link>
  3267. <Identifier>(0x00004053, 0x00002a55)</Identifier>
  3268. <Source>
  3269. <BoxIdentifier>(0x038cae1a, 0x03e0da67)</BoxIdentifier>
  3270. <BoxOutputIndex>0</BoxOutputIndex>
  3271. </Source>
  3272. <Target>
  3273. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3274. <BoxInputIdentifier>(0xd872563e, 0xc482f033)</BoxInputIdentifier>
  3275. </Target>
  3276. </Link>
  3277. <Link>
  3278. <Identifier>(0x000045bc, 0x00001b41)</Identifier>
  3279. <Source>
  3280. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3281. <BoxOutputIndex>0</BoxOutputIndex>
  3282. </Source>
  3283. <Target>
  3284. <BoxIdentifier>(0x38f7f16e, 0x716e5787)</BoxIdentifier>
  3285. <BoxInputIndex>0</BoxInputIndex>
  3286. </Target>
  3287. </Link>
  3288. <Link>
  3289. <Identifier>(0x000046d8, 0x00004027)</Identifier>
  3290. <Source>
  3291. <BoxIdentifier>(0x38f7f16e, 0x716e5783)</BoxIdentifier>
  3292. <BoxOutputIndex>0</BoxOutputIndex>
  3293. </Source>
  3294. <Target>
  3295. <BoxIdentifier>(0x038cae1a, 0x03e0da64)</BoxIdentifier>
  3296. <BoxInputIndex>0</BoxInputIndex>
  3297. </Target>
  3298. </Link>
  3299. <Link>
  3300. <Identifier>(0x000046d8, 0x00004028)</Identifier>
  3301. <Source>
  3302. <BoxIdentifier>(0x38f7f16e, 0x716e5784)</BoxIdentifier>
  3303. <BoxOutputIndex>0</BoxOutputIndex>
  3304. </Source>
  3305. <Target>
  3306. <BoxIdentifier>(0x038cae1a, 0x03e0da65)</BoxIdentifier>
  3307. <BoxInputIndex>0</BoxInputIndex>
  3308. </Target>
  3309. </Link>
  3310. <Link>
  3311. <Identifier>(0x000046d8, 0x00004029)</Identifier>
  3312. <Source>
  3313. <BoxIdentifier>(0x38f7f16e, 0x716e5785)</BoxIdentifier>
  3314. <BoxOutputIndex>0</BoxOutputIndex>
  3315. </Source>
  3316. <Target>
  3317. <BoxIdentifier>(0x038cae1a, 0x03e0da66)</BoxIdentifier>
  3318. <BoxInputIndex>0</BoxInputIndex>
  3319. </Target>
  3320. </Link>
  3321. <Link>
  3322. <Identifier>(0x000046d8, 0x0000402a)</Identifier>
  3323. <Source>
  3324. <BoxIdentifier>(0x38f7f16e, 0x716e5786)</BoxIdentifier>
  3325. <BoxOutputIndex>0</BoxOutputIndex>
  3326. </Source>
  3327. <Target>
  3328. <BoxIdentifier>(0x038cae1a, 0x03e0da67)</BoxIdentifier>
  3329. <BoxInputIndex>0</BoxInputIndex>
  3330. </Target>
  3331. </Link>
  3332. <Link>
  3333. <Identifier>(0x000046d8, 0x0000402b)</Identifier>
  3334. <Source>
  3335. <BoxIdentifier>(0x38f7f16e, 0x716e5787)</BoxIdentifier>
  3336. <BoxOutputIndex>0</BoxOutputIndex>
  3337. </Source>
  3338. <Target>
  3339. <BoxIdentifier>(0x038cae1a, 0x03e0da68)</BoxIdentifier>
  3340. <BoxInputIndex>0</BoxInputIndex>
  3341. </Target>
  3342. </Link>
  3343. <Link>
  3344. <Identifier>(0x000046d8, 0x0000402c)</Identifier>
  3345. <Source>
  3346. <BoxIdentifier>(0x38f7f16e, 0x716e5788)</BoxIdentifier>
  3347. <BoxOutputIndex>0</BoxOutputIndex>
  3348. </Source>
  3349. <Target>
  3350. <BoxIdentifier>(0x038cae1a, 0x03e0da69)</BoxIdentifier>
  3351. <BoxInputIndex>0</BoxInputIndex>
  3352. </Target>
  3353. </Link>
  3354. <Link>
  3355. <Identifier>(0x000046d8, 0x0000402d)</Identifier>
  3356. <Source>
  3357. <BoxIdentifier>(0x38f7f16e, 0x716e5789)</BoxIdentifier>
  3358. <BoxOutputIndex>0</BoxOutputIndex>
  3359. </Source>
  3360. <Target>
  3361. <BoxIdentifier>(0x038cae1a, 0x03e0da6a)</BoxIdentifier>
  3362. <BoxInputIndex>0</BoxInputIndex>
  3363. </Target>
  3364. </Link>
  3365. <Link>
  3366. <Identifier>(0x000046d8, 0x0000402e)</Identifier>
  3367. <Source>
  3368. <BoxIdentifier>(0x38f7f16e, 0x716e578a)</BoxIdentifier>
  3369. <BoxOutputIndex>0</BoxOutputIndex>
  3370. </Source>
  3371. <Target>
  3372. <BoxIdentifier>(0x038cae1a, 0x03e0da6b)</BoxIdentifier>
  3373. <BoxInputIndex>0</BoxInputIndex>
  3374. </Target>
  3375. </Link>
  3376. <Link>
  3377. <Identifier>(0x000046d8, 0x0000402f)</Identifier>
  3378. <Source>
  3379. <BoxIdentifier>(0x38f7f16e, 0x716e578b)</BoxIdentifier>
  3380. <BoxOutputIndex>0</BoxOutputIndex>
  3381. </Source>
  3382. <Target>
  3383. <BoxIdentifier>(0x038cae1a, 0x03e0da6c)</BoxIdentifier>
  3384. <BoxInputIndex>0</BoxInputIndex>
  3385. </Target>
  3386. </Link>
  3387. <Link>
  3388. <Identifier>(0x00004ad8, 0x00000d0b)</Identifier>
  3389. <Source>
  3390. <BoxIdentifier>(0x038cae1a, 0x03e0da6b)</BoxIdentifier>
  3391. <BoxOutputIndex>0</BoxOutputIndex>
  3392. </Source>
  3393. <Target>
  3394. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3395. <BoxInputIdentifier>(0xfa16eb48, 0x996f530e)</BoxInputIdentifier>
  3396. </Target>
  3397. </Link>
  3398. <Link>
  3399. <Identifier>(0x00004b1e, 0x000034b6)</Identifier>
  3400. <Source>
  3401. <BoxIdentifier>(0x0000465a, 0x00004dbf)</BoxIdentifier>
  3402. <BoxOutputIndex>0</BoxOutputIndex>
  3403. </Source>
  3404. <Target>
  3405. <BoxIdentifier>(0x0000141c, 0x00003c43)</BoxIdentifier>
  3406. <BoxInputIndex>0</BoxInputIndex>
  3407. </Target>
  3408. </Link>
  3409. <Link>
  3410. <Identifier>(0x00004fe5, 0x000074aa)</Identifier>
  3411. <Source>
  3412. <BoxIdentifier>(0x14e0f923, 0x0df1c5d6)</BoxIdentifier>
  3413. <BoxOutputIndex>0</BoxOutputIndex>
  3414. </Source>
  3415. <Target>
  3416. <BoxIdentifier>(0x00007442, 0x00001fd0)</BoxIdentifier>
  3417. <BoxInputIndex>0</BoxInputIndex>
  3418. </Target>
  3419. </Link>
  3420. <Link>
  3421. <Identifier>(0x000053ec, 0x000057b2)</Identifier>
  3422. <Source>
  3423. <BoxIdentifier>(0x00002a20, 0x00000cc4)</BoxIdentifier>
  3424. <BoxOutputIndex>0</BoxOutputIndex>
  3425. </Source>
  3426. <Target>
  3427. <BoxIdentifier>(0x00000f21, 0x00006f70)</BoxIdentifier>
  3428. <BoxInputIndex>0</BoxInputIndex>
  3429. </Target>
  3430. </Link>
  3431. <Link>
  3432. <Identifier>(0x000057c9, 0x00007f2b)</Identifier>
  3433. <Source>
  3434. <BoxIdentifier>(0x038cae1a, 0x03e0da69)</BoxIdentifier>
  3435. <BoxOutputIndex>0</BoxOutputIndex>
  3436. </Source>
  3437. <Target>
  3438. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3439. <BoxInputIdentifier>(0x5f7bcc3c, 0xe39a6eb0)</BoxInputIdentifier>
  3440. </Target>
  3441. </Link>
  3442. <Link>
  3443. <Identifier>(0x00005a27, 0x00001fad)</Identifier>
  3444. <Source>
  3445. <BoxIdentifier>(0x000040a1, 0x00002f8d)</BoxIdentifier>
  3446. <BoxOutputIndex>0</BoxOutputIndex>
  3447. </Source>
  3448. <Target>
  3449. <BoxIdentifier>(0x00000410, 0x0000196a)</BoxIdentifier>
  3450. <BoxInputIndex>0</BoxInputIndex>
  3451. </Target>
  3452. </Link>
  3453. <Link>
  3454. <Identifier>(0x00005d45, 0x000009ac)</Identifier>
  3455. <Source>
  3456. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3457. <BoxOutputIndex>0</BoxOutputIndex>
  3458. </Source>
  3459. <Target>
  3460. <BoxIdentifier>(0x38f7f16e, 0x716e5784)</BoxIdentifier>
  3461. <BoxInputIndex>0</BoxInputIndex>
  3462. </Target>
  3463. </Link>
  3464. <Link>
  3465. <Identifier>(0x00006048, 0x00007415)</Identifier>
  3466. <Source>
  3467. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3468. <BoxOutputIndex>0</BoxOutputIndex>
  3469. </Source>
  3470. <Target>
  3471. <BoxIdentifier>(0x38f7f16e, 0x716e5788)</BoxIdentifier>
  3472. <BoxInputIndex>0</BoxInputIndex>
  3473. </Target>
  3474. </Link>
  3475. <Link>
  3476. <Identifier>(0x00006343, 0x000043d4)</Identifier>
  3477. <Source>
  3478. <BoxIdentifier>(0x00002847, 0x00000a63)</BoxIdentifier>
  3479. <BoxOutputIndex>0</BoxOutputIndex>
  3480. </Source>
  3481. <Target>
  3482. <BoxIdentifier>(0x000065a7, 0x00000787)</BoxIdentifier>
  3483. <BoxInputIndex>0</BoxInputIndex>
  3484. </Target>
  3485. </Link>
  3486. <Link>
  3487. <Identifier>(0x000063b7, 0x00000ebd)</Identifier>
  3488. <Source>
  3489. <BoxIdentifier>(0x5e704572, 0x05e86e99)</BoxIdentifier>
  3490. <BoxOutputIndex>1</BoxOutputIndex>
  3491. </Source>
  3492. <Target>
  3493. <BoxIdentifier>(0x00004b91, 0x00002aea)</BoxIdentifier>
  3494. <BoxInputIndex>1</BoxInputIndex>
  3495. </Target>
  3496. </Link>
  3497. <Link>
  3498. <Identifier>(0x0000654e, 0x00003cc0)</Identifier>
  3499. <Source>
  3500. <BoxIdentifier>(0x0000465a, 0x00004dbf)</BoxIdentifier>
  3501. <BoxOutputIndex>1</BoxOutputIndex>
  3502. </Source>
  3503. <Target>
  3504. <BoxIdentifier>(0x00002847, 0x00000a63)</BoxIdentifier>
  3505. <BoxInputIndex>0</BoxInputIndex>
  3506. </Target>
  3507. </Link>
  3508. <Link>
  3509. <Identifier>(0x000065fc, 0x0000668f)</Identifier>
  3510. <Source>
  3511. <BoxIdentifier>(0x5e704572, 0x05e86e99)</BoxIdentifier>
  3512. <BoxOutputIndex>1</BoxOutputIndex>
  3513. </Source>
  3514. <Target>
  3515. <BoxIdentifier>(0x00007b42, 0x00006959)</BoxIdentifier>
  3516. <BoxInputIndex>0</BoxInputIndex>
  3517. </Target>
  3518. </Link>
  3519. <Link>
  3520. <Identifier>(0x00006ada, 0x00007a88)</Identifier>
  3521. <Source>
  3522. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3523. <BoxOutputIndex>0</BoxOutputIndex>
  3524. </Source>
  3525. <Target>
  3526. <BoxIdentifier>(0x38f7f16e, 0x716e5783)</BoxIdentifier>
  3527. <BoxInputIndex>0</BoxInputIndex>
  3528. </Target>
  3529. </Link>
  3530. <Link>
  3531. <Identifier>(0x00006d9d, 0x00000a90)</Identifier>
  3532. <Source>
  3533. <BoxIdentifier>(0x038cae1a, 0x03e0da65)</BoxIdentifier>
  3534. <BoxOutputIndex>0</BoxOutputIndex>
  3535. </Source>
  3536. <Target>
  3537. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3538. <BoxInputIndex>1</BoxInputIndex>
  3539. </Target>
  3540. </Link>
  3541. <Link>
  3542. <Identifier>(0x00006e4a, 0x00000844)</Identifier>
  3543. <Source>
  3544. <BoxIdentifier>(0x000065a7, 0x00000787)</BoxIdentifier>
  3545. <BoxOutputIndex>0</BoxOutputIndex>
  3546. </Source>
  3547. <Target>
  3548. <BoxIdentifier>(0x00001881, 0x0000648e)</BoxIdentifier>
  3549. <BoxInputIndex>1</BoxInputIndex>
  3550. </Target>
  3551. </Link>
  3552. <Link>
  3553. <Identifier>(0x00007019, 0x000013ff)</Identifier>
  3554. <Source>
  3555. <BoxIdentifier>(0x000065a7, 0x00000786)</BoxIdentifier>
  3556. <BoxOutputIndex>0</BoxOutputIndex>
  3557. </Source>
  3558. <Target>
  3559. <BoxIdentifier>(0x38f7f16e, 0x716e5785)</BoxIdentifier>
  3560. <BoxInputIndex>0</BoxInputIndex>
  3561. </Target>
  3562. </Link>
  3563. <Link>
  3564. <Identifier>(0x0000711e, 0x00003245)</Identifier>
  3565. <Source>
  3566. <BoxIdentifier>(0x5e704572, 0x05e86e99)</BoxIdentifier>
  3567. <BoxOutputIndex>0</BoxOutputIndex>
  3568. </Source>
  3569. <Target>
  3570. <BoxIdentifier>(0x00005511, 0x00002f0c)</BoxIdentifier>
  3571. <BoxInputIndex>0</BoxInputIndex>
  3572. </Target>
  3573. </Link>
  3574. <Link>
  3575. <Identifier>(0x00007161, 0x0000702d)</Identifier>
  3576. <Source>
  3577. <BoxIdentifier>(0x5e704572, 0x05e86e99)</BoxIdentifier>
  3578. <BoxOutputIndex>2</BoxOutputIndex>
  3579. </Source>
  3580. <Target>
  3581. <BoxIdentifier>(0x00005511, 0x00002f0c)</BoxIdentifier>
  3582. <BoxInputIndex>2</BoxInputIndex>
  3583. </Target>
  3584. </Link>
  3585. <Link>
  3586. <Identifier>(0x0000759a, 0x00004a1f)</Identifier>
  3587. <Source>
  3588. <BoxIdentifier>(0x038cae1a, 0x03e0da64)</BoxIdentifier>
  3589. <BoxOutputIndex>0</BoxOutputIndex>
  3590. </Source>
  3591. <Target>
  3592. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3593. <BoxInputIndex>0</BoxInputIndex>
  3594. </Target>
  3595. </Link>
  3596. <Link>
  3597. <Identifier>(0x00007818, 0x0000649d)</Identifier>
  3598. <Source>
  3599. <BoxIdentifier>(0x0000141c, 0x00003c43)</BoxIdentifier>
  3600. <BoxOutputIndex>0</BoxOutputIndex>
  3601. </Source>
  3602. <Target>
  3603. <BoxIdentifier>(0x00004390, 0x000055c5)</BoxIdentifier>
  3604. <BoxInputIndex>0</BoxInputIndex>
  3605. </Target>
  3606. </Link>
  3607. <Link>
  3608. <Identifier>(0x00007854, 0x0000729e)</Identifier>
  3609. <Source>
  3610. <BoxIdentifier>(0x0000141c, 0x00003c43)</BoxIdentifier>
  3611. <BoxOutputIndex>0</BoxOutputIndex>
  3612. </Source>
  3613. <Target>
  3614. <BoxIdentifier>(0x00001881, 0x0000648e)</BoxIdentifier>
  3615. <BoxInputIndex>0</BoxInputIndex>
  3616. </Target>
  3617. </Link>
  3618. <Link>
  3619. <Identifier>(0x000079fc, 0x000022e3)</Identifier>
  3620. <Source>
  3621. <BoxIdentifier>(0x038cae1a, 0x03e0da68)</BoxIdentifier>
  3622. <BoxOutputIndex>0</BoxOutputIndex>
  3623. </Source>
  3624. <Target>
  3625. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3626. <BoxInputIdentifier>(0xc48b247a, 0xbd3518e7)</BoxInputIdentifier>
  3627. </Target>
  3628. </Link>
  3629. <Link>
  3630. <Identifier>(0x00007d81, 0x00002749)</Identifier>
  3631. <Source>
  3632. <BoxIdentifier>(0x00002a20, 0x00000cc4)</BoxIdentifier>
  3633. <BoxOutputIndex>0</BoxOutputIndex>
  3634. </Source>
  3635. <Target>
  3636. <BoxIdentifier>(0x00005511, 0x00002f0c)</BoxIdentifier>
  3637. <BoxInputIndex>3</BoxInputIndex>
  3638. </Target>
  3639. </Link>
  3640. <Link>
  3641. <Identifier>(0x00007e8b, 0x00000170)</Identifier>
  3642. <Source>
  3643. <BoxIdentifier>(0x038cae1a, 0x03e0da6c)</BoxIdentifier>
  3644. <BoxOutputIndex>0</BoxOutputIndex>
  3645. </Source>
  3646. <Target>
  3647. <BoxIdentifier>(0x00006266, 0x00000e24)</BoxIdentifier>
  3648. <BoxInputIdentifier>(0xeb82c0f0, 0x3795f13e)</BoxInputIdentifier>
  3649. </Target>
  3650. </Link>
  3651. <Link>
  3652. <Identifier>(0x1ffeda13, 0x64e650ab)</Identifier>
  3653. <Source>
  3654. <BoxIdentifier>(0x00c4af19, 0x360e4025)</BoxIdentifier>
  3655. <BoxOutputIndex>0</BoxOutputIndex>
  3656. </Source>
  3657. <Target>
  3658. <BoxIdentifier>(0x14e0f923, 0x0df1c5d6)</BoxIdentifier>
  3659. <BoxInputIndex>0</BoxInputIndex>
  3660. </Target>
  3661. </Link>
  3662. <Link>
  3663. <Identifier>(0x25ef8382, 0x4e0eb6d4)</Identifier>
  3664. <Source>
  3665. <BoxIdentifier>(0x602bbc4d, 0x5f35c1a9)</BoxIdentifier>
  3666. <BoxOutputIndex>0</BoxOutputIndex>
  3667. </Source>
  3668. <Target>
  3669. <BoxIdentifier>(0x00c4af19, 0x360e4025)</BoxIdentifier>
  3670. <BoxInputIndex>0</BoxInputIndex>
  3671. </Target>
  3672. </Link>
  3673. <Link>
  3674. <Identifier>(0x6de2fa86, 0x52bb1938)</Identifier>
  3675. <Source>
  3676. <BoxIdentifier>(0x3840709a, 0x3442f13a)</BoxIdentifier>
  3677. <BoxOutputIndex>0</BoxOutputIndex>
  3678. </Source>
  3679. <Target>
  3680. <BoxIdentifier>(0x602bbc4d, 0x5f35c1a9)</BoxIdentifier>
  3681. <BoxInputIndex>0</BoxInputIndex>
  3682. </Target>
  3683. </Link>
  3684. </Links>
  3685. <Comments>
  3686. <Comment>
  3687. <Identifier>(0x0000494c, 0x00003563)</Identifier>
  3688. <Text>This Scenario is set for a g.tec cap with 2 amplifier g.USBamp</Text>
  3689. <Attributes>
  3690. <Attribute>
  3691. <Identifier>(0x473d9a43, 0x97fc0a97)</Identifier>
  3692. <Value>1552</Value>
  3693. </Attribute>
  3694. <Attribute>
  3695. <Identifier>(0x7234b86b, 0x2b8651a5)</Identifier>
  3696. <Value>16</Value>
  3697. </Attribute>
  3698. </Attributes>
  3699. </Comment>
  3700. <Comment>
  3701. <Identifier>(0x00006a47, 0x0000309c)</Identifier>
  3702. <Text>&lt;b&gt;OVERVIEW&lt;/b&gt;
  3703. Change Settings on Scenario Configuration tab :
  3704. Scripts/Signals path = folder to the different files (normally don't need to change that if you keep the hierarchy)
  3705. File Suffix = Suffix for script files
  3706. File Prefix = Prefix for signals files
  3707. Obvious settings = obvious....
  3708. File Format for saved signals :
  3709. {File Prefix}_online-[{date}-{time}]
  3710. {File Prefix}_online_features-[{date}-{time}]
  3711. {File Prefix}_online_classifier_result-[{date}-{time}]
  3712. {File Prefix}_sham-[date}-{time}] (you can enable/disable this save with disable/enable the box)</Text>
  3713. <Attributes>
  3714. <Attribute>
  3715. <Identifier>(0x473d9a43, 0x97fc0a97)</Identifier>
  3716. <Value>1552</Value>
  3717. </Attribute>
  3718. <Attribute>
  3719. <Identifier>(0x7234b86b, 0x2b8651a5)</Identifier>
  3720. <Value>160</Value>
  3721. </Attribute>
  3722. </Attributes>
  3723. </Comment>
  3724. <Comment>
  3725. <Identifier>(0x00006a47, 0x0000309d)</Identifier>
  3726. <Text>&lt;b&gt;PRESENTATION&lt;/b&gt;
  3727. Les options sont modifiables dnas l'onglet Scenario Configuration :
  3728. Scripts/Signals path = dossier des différents fichiers (normalement, il n'est pas nécessaire de changer cela si vous conservez la hiérarchie)
  3729. File Suffix = Suffixe des fichiers de config
  3730. File Prefix = Préfixe des fichiers de signaux
  3731. Paramètres évidents = évidents.....
  3732. Format de fichier pour les signaux enregistrés :
  3733. {File Prefix}_online-[{date}-{time}]
  3734. {File Prefix}_online_features-[{date}-{time}]
  3735. {File Prefix}_online_classifier_result-[{date}-{time}]
  3736. {File Prefix}_sham-[date}-{time}] (vous pouvez activer/désactiver l'enregistrement en activant/désactivant la boite)</Text>
  3737. <Attributes>
  3738. <Attribute>
  3739. <Identifier>(0x473d9a43, 0x97fc0a97)</Identifier>
  3740. <Value>1552</Value>
  3741. </Attribute>
  3742. <Attribute>
  3743. <Identifier>(0x7234b86b, 0x2b8651a5)</Identifier>
  3744. <Value>384</Value>
  3745. </Attribute>
  3746. </Attributes>
  3747. </Comment>
  3748. </Comments>
  3749. <Metadata>
  3750. <Entry>
  3751. <Identifier>(0x000030a2, 0x00002768)</Identifier>
  3752. <Type>(0x3bcce5d2, 0x43f2d968)</Type>
  3753. <Data>[{"boxIdentifier":"(0x00004b91, 0x00002aea)","childCount":0,"identifier":"(0x000074cb, 0x000011f0)","parentIdentifier":"(0xffffffff, 0xffffffff)","type":3}]</Data>
  3754. </Entry>
  3755. </Metadata>
  3756. <Attributes>
  3757. <Attribute>
  3758. <Identifier>(0x4c90d4ad, 0x7a2554ec)</Identifier>
  3759. <Value>400</Value>
  3760. </Attribute>
  3761. <Attribute>
  3762. <Identifier>(0x7b814cca, 0x271df6dd)</Identifier>
  3763. <Value>400</Value>
  3764. </Attribute>
  3765. </Attributes>
  3766. </OpenViBE-Scenario>